/export/starexec/sandbox2/solver/bin/starexec_run_standard /export/starexec/sandbox2/benchmark/theBenchmark.hs /export/starexec/sandbox2/output/output_files -------------------------------------------------------------------------------- YES proof of /export/starexec/sandbox2/benchmark/theBenchmark.hs # AProVE Commit ID: 48fb2092695e11cc9f56e44b17a92a5f88ffb256 marcel 20180622 unpublished dirty H-Termination with start terms of the given HASKELL could be proven: (0) HASKELL (1) LR [EQUIVALENT, 0 ms] (2) HASKELL (3) CR [EQUIVALENT, 0 ms] (4) HASKELL (5) IFR [EQUIVALENT, 0 ms] (6) HASKELL (7) BR [EQUIVALENT, 15 ms] (8) HASKELL (9) COR [EQUIVALENT, 0 ms] (10) HASKELL (11) LetRed [EQUIVALENT, 0 ms] (12) HASKELL (13) NumRed [SOUND, 3 ms] (14) HASKELL (15) Narrow [SOUND, 0 ms] (16) AND (17) QDP (18) QDPSizeChangeProof [EQUIVALENT, 0 ms] (19) YES (20) QDP (21) QDPSizeChangeProof [EQUIVALENT, 0 ms] (22) YES (23) QDP (24) QDPSizeChangeProof [EQUIVALENT, 0 ms] (25) YES (26) QDP (27) QDPSizeChangeProof [EQUIVALENT, 0 ms] (28) YES (29) QDP (30) QDPSizeChangeProof [EQUIVALENT, 103 ms] (31) YES (32) QDP (33) QDPSizeChangeProof [EQUIVALENT, 0 ms] (34) YES (35) QDP (36) QDPSizeChangeProof [EQUIVALENT, 0 ms] (37) YES ---------------------------------------- (0) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; instance (Eq a, Eq b) => Eq FiniteMap a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } elemFM :: Ord a => a -> FiniteMap a b -> Bool; elemFM key fm = case lookupFM fm key of { Nothing-> False; Just elt-> True; } ; fmToList :: FiniteMap b a -> [(b,a)]; fmToList fm = foldFM (\key elt rest ->(key,elt) : rest) [] fm; foldFM :: (a -> c -> b -> b) -> b -> FiniteMap a c -> b; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; lookupFM :: Ord b => FiniteMap b a -> b -> Maybe a; lookupFM EmptyFM key = Nothing; lookupFM (Branch key elt _ fm_l fm_r) key_to_find | key_to_find < key = lookupFM fm_l key_to_find | key_to_find > key = lookupFM fm_r key_to_find | otherwise = Just elt; sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = size; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (1) LR (EQUIVALENT) Lambda Reductions: The following Lambda expression "\keyeltrest->(key,elt) : rest" is transformed to "fmToList0 key elt rest = (key,elt) : rest; " ---------------------------------------- (2) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; instance (Eq a, Eq b) => Eq FiniteMap a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } elemFM :: Ord a => a -> FiniteMap a b -> Bool; elemFM key fm = case lookupFM fm key of { Nothing-> False; Just elt-> True; } ; fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (b -> a -> c -> c) -> c -> FiniteMap b a -> c; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; lookupFM :: Ord b => FiniteMap b a -> b -> Maybe a; lookupFM EmptyFM key = Nothing; lookupFM (Branch key elt _ fm_l fm_r) key_to_find | key_to_find < key = lookupFM fm_l key_to_find | key_to_find > key = lookupFM fm_r key_to_find | otherwise = Just elt; sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = size; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (3) CR (EQUIVALENT) Case Reductions: The following Case expression "case compare x y of { EQ -> o; LT -> LT; GT -> GT} " is transformed to "primCompAux0 o EQ = o; primCompAux0 o LT = LT; primCompAux0 o GT = GT; " The following Case expression "case lookupFM fm key of { Nothing -> False; Just elt -> True} " is transformed to "elemFM0 Nothing = False; elemFM0 (Just elt) = True; " ---------------------------------------- (4) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; instance (Eq a, Eq b) => Eq FiniteMap b a where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } elemFM :: Ord b => b -> FiniteMap b a -> Bool; elemFM key fm = elemFM0 (lookupFM fm key); elemFM0 Nothing = False; elemFM0 (Just elt) = True; fmToList :: FiniteMap b a -> [(b,a)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (c -> b -> a -> a) -> a -> FiniteMap c b -> a; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; lookupFM :: Ord a => FiniteMap a b -> a -> Maybe b; lookupFM EmptyFM key = Nothing; lookupFM (Branch key elt _ fm_l fm_r) key_to_find | key_to_find < key = lookupFM fm_l key_to_find | key_to_find > key = lookupFM fm_r key_to_find | otherwise = Just elt; sizeFM :: FiniteMap b a -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = size; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (5) IFR (EQUIVALENT) If Reductions: The following If expression "if primGEqNatS x y then Succ (primDivNatS (primMinusNatS x y) (Succ y)) else Zero" is transformed to "primDivNatS0 x y True = Succ (primDivNatS (primMinusNatS x y) (Succ y)); primDivNatS0 x y False = Zero; " The following If expression "if primGEqNatS x y then primModNatS (primMinusNatS x y) (Succ y) else Succ x" is transformed to "primModNatS0 x y True = primModNatS (primMinusNatS x y) (Succ y); primModNatS0 x y False = Succ x; " ---------------------------------------- (6) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; instance (Eq a, Eq b) => Eq FiniteMap b a where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } elemFM :: Ord a => a -> FiniteMap a b -> Bool; elemFM key fm = elemFM0 (lookupFM fm key); elemFM0 Nothing = False; elemFM0 (Just elt) = True; fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (c -> b -> a -> a) -> a -> FiniteMap c b -> a; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; lookupFM :: Ord b => FiniteMap b a -> b -> Maybe a; lookupFM EmptyFM key = Nothing; lookupFM (Branch key elt _ fm_l fm_r) key_to_find | key_to_find < key = lookupFM fm_l key_to_find | key_to_find > key = lookupFM fm_r key_to_find | otherwise = Just elt; sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = size; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (7) BR (EQUIVALENT) Replaced joker patterns by fresh variables and removed binding patterns. ---------------------------------------- (8) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; instance (Eq a, Eq b) => Eq FiniteMap a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } elemFM :: Ord a => a -> FiniteMap a b -> Bool; elemFM key fm = elemFM0 (lookupFM fm key); elemFM0 Nothing = False; elemFM0 (Just elt) = True; fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (a -> b -> c -> c) -> c -> FiniteMap a b -> c; foldFM k z EmptyFM = z; foldFM k z (Branch key elt zy fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; lookupFM :: Ord a => FiniteMap a b -> a -> Maybe b; lookupFM EmptyFM key = Nothing; lookupFM (Branch key elt vux fm_l fm_r) key_to_find | key_to_find < key = lookupFM fm_l key_to_find | key_to_find > key = lookupFM fm_r key_to_find | otherwise = Just elt; sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = 0; sizeFM (Branch zz vuu size vuv vuw) = size; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (9) COR (EQUIVALENT) Cond Reductions: The following Function with conditions "compare x y|x == yEQ|x <= yLT|otherwiseGT; " is transformed to "compare x y = compare3 x y; " "compare1 x y True = LT; compare1 x y False = compare0 x y otherwise; " "compare2 x y True = EQ; compare2 x y False = compare1 x y (x <= y); " "compare0 x y True = GT; " "compare3 x y = compare2 x y (x == y); " The following Function with conditions "absReal x|x >= 0x|otherwise`negate` x; " is transformed to "absReal x = absReal2 x; " "absReal0 x True = `negate` x; " "absReal1 x True = x; absReal1 x False = absReal0 x otherwise; " "absReal2 x = absReal1 x (x >= 0); " The following Function with conditions "gcd' x 0 = x; gcd' x y = gcd' y (x `rem` y); " is transformed to "gcd' x vuy = gcd'2 x vuy; gcd' x y = gcd'0 x y; " "gcd'0 x y = gcd' y (x `rem` y); " "gcd'1 True x vuy = x; gcd'1 vuz vvu vvv = gcd'0 vvu vvv; " "gcd'2 x vuy = gcd'1 (vuy == 0) x vuy; gcd'2 vvw vvx = gcd'0 vvw vvx; " The following Function with conditions "gcd 0 0 = error []; gcd x y = gcd' (abs x) (abs y) where { gcd' x 0 = x; gcd' x y = gcd' y (x `rem` y); } ; " is transformed to "gcd vvy vvz = gcd3 vvy vvz; gcd x y = gcd0 x y; " "gcd0 x y = gcd' (abs x) (abs y) where { gcd' x vuy = gcd'2 x vuy; gcd' x y = gcd'0 x y; ; gcd'0 x y = gcd' y (x `rem` y); ; gcd'1 True x vuy = x; gcd'1 vuz vvu vvv = gcd'0 vvu vvv; ; gcd'2 x vuy = gcd'1 (vuy == 0) x vuy; gcd'2 vvw vvx = gcd'0 vvw vvx; } ; " "gcd1 True vvy vvz = error []; gcd1 vwu vwv vww = gcd0 vwv vww; " "gcd2 True vvy vvz = gcd1 (vvz == 0) vvy vvz; gcd2 vwx vwy vwz = gcd0 vwy vwz; " "gcd3 vvy vvz = gcd2 (vvy == 0) vvy vvz; gcd3 vxu vxv = gcd0 vxu vxv; " The following Function with conditions "undefined |Falseundefined; " is transformed to "undefined = undefined1; " "undefined0 True = undefined; " "undefined1 = undefined0 False; " The following Function with conditions "reduce x y|y == 0error []|otherwisex `quot` d :% (y `quot` d) where { d = gcd x y; } ; " is transformed to "reduce x y = reduce2 x y; " "reduce2 x y = reduce1 x y (y == 0) where { d = gcd x y; ; reduce0 x y True = x `quot` d :% (y `quot` d); ; reduce1 x y True = error []; reduce1 x y False = reduce0 x y otherwise; } ; " The following Function with conditions "lookupFM EmptyFM key = Nothing; lookupFM (Branch key elt vux fm_l fm_r) key_to_find|key_to_find < keylookupFM fm_l key_to_find|key_to_find > keylookupFM fm_r key_to_find|otherwiseJust elt; " is transformed to "lookupFM EmptyFM key = lookupFM4 EmptyFM key; lookupFM (Branch key elt vux fm_l fm_r) key_to_find = lookupFM3 (Branch key elt vux fm_l fm_r) key_to_find; " "lookupFM2 key elt vux fm_l fm_r key_to_find True = lookupFM fm_l key_to_find; lookupFM2 key elt vux fm_l fm_r key_to_find False = lookupFM1 key elt vux fm_l fm_r key_to_find (key_to_find > key); " "lookupFM1 key elt vux fm_l fm_r key_to_find True = lookupFM fm_r key_to_find; lookupFM1 key elt vux fm_l fm_r key_to_find False = lookupFM0 key elt vux fm_l fm_r key_to_find otherwise; " "lookupFM0 key elt vux fm_l fm_r key_to_find True = Just elt; " "lookupFM3 (Branch key elt vux fm_l fm_r) key_to_find = lookupFM2 key elt vux fm_l fm_r key_to_find (key_to_find < key); " "lookupFM4 EmptyFM key = Nothing; lookupFM4 vxy vxz = lookupFM3 vxy vxz; " ---------------------------------------- (10) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; instance (Eq a, Eq b) => Eq FiniteMap a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } elemFM :: Ord b => b -> FiniteMap b a -> Bool; elemFM key fm = elemFM0 (lookupFM fm key); elemFM0 Nothing = False; elemFM0 (Just elt) = True; fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (c -> a -> b -> b) -> b -> FiniteMap c a -> b; foldFM k z EmptyFM = z; foldFM k z (Branch key elt zy fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; lookupFM :: Ord b => FiniteMap b a -> b -> Maybe a; lookupFM EmptyFM key = lookupFM4 EmptyFM key; lookupFM (Branch key elt vux fm_l fm_r) key_to_find = lookupFM3 (Branch key elt vux fm_l fm_r) key_to_find; lookupFM0 key elt vux fm_l fm_r key_to_find True = Just elt; lookupFM1 key elt vux fm_l fm_r key_to_find True = lookupFM fm_r key_to_find; lookupFM1 key elt vux fm_l fm_r key_to_find False = lookupFM0 key elt vux fm_l fm_r key_to_find otherwise; lookupFM2 key elt vux fm_l fm_r key_to_find True = lookupFM fm_l key_to_find; lookupFM2 key elt vux fm_l fm_r key_to_find False = lookupFM1 key elt vux fm_l fm_r key_to_find (key_to_find > key); lookupFM3 (Branch key elt vux fm_l fm_r) key_to_find = lookupFM2 key elt vux fm_l fm_r key_to_find (key_to_find < key); lookupFM4 EmptyFM key = Nothing; lookupFM4 vxy vxz = lookupFM3 vxy vxz; sizeFM :: FiniteMap b a -> Int; sizeFM EmptyFM = 0; sizeFM (Branch zz vuu size vuv vuw) = size; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (11) LetRed (EQUIVALENT) Let/Where Reductions: The bindings of the following Let/Where expression "gcd' (abs x) (abs y) where { gcd' x vuy = gcd'2 x vuy; gcd' x y = gcd'0 x y; ; gcd'0 x y = gcd' y (x `rem` y); ; gcd'1 True x vuy = x; gcd'1 vuz vvu vvv = gcd'0 vvu vvv; ; gcd'2 x vuy = gcd'1 (vuy == 0) x vuy; gcd'2 vvw vvx = gcd'0 vvw vvx; } " are unpacked to the following functions on top level "gcd0Gcd'1 True x vuy = x; gcd0Gcd'1 vuz vvu vvv = gcd0Gcd'0 vvu vvv; " "gcd0Gcd'0 x y = gcd0Gcd' y (x `rem` y); " "gcd0Gcd'2 x vuy = gcd0Gcd'1 (vuy == 0) x vuy; gcd0Gcd'2 vvw vvx = gcd0Gcd'0 vvw vvx; " "gcd0Gcd' x vuy = gcd0Gcd'2 x vuy; gcd0Gcd' x y = gcd0Gcd'0 x y; " The bindings of the following Let/Where expression "reduce1 x y (y == 0) where { d = gcd x y; ; reduce0 x y True = x `quot` d :% (y `quot` d); ; reduce1 x y True = error []; reduce1 x y False = reduce0 x y otherwise; } " are unpacked to the following functions on top level "reduce2D vyu vyv = gcd vyu vyv; " "reduce2Reduce1 vyu vyv x y True = error []; reduce2Reduce1 vyu vyv x y False = reduce2Reduce0 vyu vyv x y otherwise; " "reduce2Reduce0 vyu vyv x y True = x `quot` reduce2D vyu vyv :% (y `quot` reduce2D vyu vyv); " ---------------------------------------- (12) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; instance (Eq a, Eq b) => Eq FiniteMap b a where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } elemFM :: Ord b => b -> FiniteMap b a -> Bool; elemFM key fm = elemFM0 (lookupFM fm key); elemFM0 Nothing = False; elemFM0 (Just elt) = True; fmToList :: FiniteMap b a -> [(b,a)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (c -> b -> a -> a) -> a -> FiniteMap c b -> a; foldFM k z EmptyFM = z; foldFM k z (Branch key elt zy fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; lookupFM :: Ord a => FiniteMap a b -> a -> Maybe b; lookupFM EmptyFM key = lookupFM4 EmptyFM key; lookupFM (Branch key elt vux fm_l fm_r) key_to_find = lookupFM3 (Branch key elt vux fm_l fm_r) key_to_find; lookupFM0 key elt vux fm_l fm_r key_to_find True = Just elt; lookupFM1 key elt vux fm_l fm_r key_to_find True = lookupFM fm_r key_to_find; lookupFM1 key elt vux fm_l fm_r key_to_find False = lookupFM0 key elt vux fm_l fm_r key_to_find otherwise; lookupFM2 key elt vux fm_l fm_r key_to_find True = lookupFM fm_l key_to_find; lookupFM2 key elt vux fm_l fm_r key_to_find False = lookupFM1 key elt vux fm_l fm_r key_to_find (key_to_find > key); lookupFM3 (Branch key elt vux fm_l fm_r) key_to_find = lookupFM2 key elt vux fm_l fm_r key_to_find (key_to_find < key); lookupFM4 EmptyFM key = Nothing; lookupFM4 vxy vxz = lookupFM3 vxy vxz; sizeFM :: FiniteMap b a -> Int; sizeFM EmptyFM = 0; sizeFM (Branch zz vuu size vuv vuw) = size; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (13) NumRed (SOUND) Num Reduction:All numbers are transformed to their corresponding representation with Succ, Pred and Zero. ---------------------------------------- (14) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; instance (Eq a, Eq b) => Eq FiniteMap a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } elemFM :: Ord a => a -> FiniteMap a b -> Bool; elemFM key fm = elemFM0 (lookupFM fm key); elemFM0 Nothing = False; elemFM0 (Just elt) = True; fmToList :: FiniteMap b a -> [(b,a)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (a -> b -> c -> c) -> c -> FiniteMap a b -> c; foldFM k z EmptyFM = z; foldFM k z (Branch key elt zy fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; lookupFM :: Ord a => FiniteMap a b -> a -> Maybe b; lookupFM EmptyFM key = lookupFM4 EmptyFM key; lookupFM (Branch key elt vux fm_l fm_r) key_to_find = lookupFM3 (Branch key elt vux fm_l fm_r) key_to_find; lookupFM0 key elt vux fm_l fm_r key_to_find True = Just elt; lookupFM1 key elt vux fm_l fm_r key_to_find True = lookupFM fm_r key_to_find; lookupFM1 key elt vux fm_l fm_r key_to_find False = lookupFM0 key elt vux fm_l fm_r key_to_find otherwise; lookupFM2 key elt vux fm_l fm_r key_to_find True = lookupFM fm_l key_to_find; lookupFM2 key elt vux fm_l fm_r key_to_find False = lookupFM1 key elt vux fm_l fm_r key_to_find (key_to_find > key); lookupFM3 (Branch key elt vux fm_l fm_r) key_to_find = lookupFM2 key elt vux fm_l fm_r key_to_find (key_to_find < key); lookupFM4 EmptyFM key = Nothing; lookupFM4 vxy vxz = lookupFM3 vxy vxz; sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = Pos Zero; sizeFM (Branch zz vuu size vuv vuw) = size; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (15) Narrow (SOUND) Haskell To QDPs digraph dp_graph { node [outthreshold=100, inthreshold=100];1[label="FiniteMap.elemFM",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 3[label="FiniteMap.elemFM vyw3",fontsize=16,color="grey",shape="box"];3 -> 4[label="",style="dashed", color="grey", weight=3]; 4[label="FiniteMap.elemFM vyw3 vyw4",fontsize=16,color="black",shape="triangle"];4 -> 5[label="",style="solid", color="black", weight=3]; 5[label="FiniteMap.elemFM0 (FiniteMap.lookupFM vyw4 vyw3)",fontsize=16,color="burlywood",shape="triangle"];2930[label="vyw4/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];5 -> 2930[label="",style="solid", color="burlywood", weight=9]; 2930 -> 6[label="",style="solid", color="burlywood", weight=3]; 2931[label="vyw4/FiniteMap.Branch vyw40 vyw41 vyw42 vyw43 vyw44",fontsize=10,color="white",style="solid",shape="box"];5 -> 2931[label="",style="solid", color="burlywood", weight=9]; 2931 -> 7[label="",style="solid", color="burlywood", weight=3]; 6[label="FiniteMap.elemFM0 (FiniteMap.lookupFM FiniteMap.EmptyFM vyw3)",fontsize=16,color="black",shape="box"];6 -> 8[label="",style="solid", color="black", weight=3]; 7[label="FiniteMap.elemFM0 (FiniteMap.lookupFM (FiniteMap.Branch vyw40 vyw41 vyw42 vyw43 vyw44) vyw3)",fontsize=16,color="black",shape="box"];7 -> 9[label="",style="solid", color="black", weight=3]; 8[label="FiniteMap.elemFM0 (FiniteMap.lookupFM4 FiniteMap.EmptyFM vyw3)",fontsize=16,color="black",shape="box"];8 -> 10[label="",style="solid", color="black", weight=3]; 9[label="FiniteMap.elemFM0 (FiniteMap.lookupFM3 (FiniteMap.Branch vyw40 vyw41 vyw42 vyw43 vyw44) vyw3)",fontsize=16,color="black",shape="box"];9 -> 11[label="",style="solid", color="black", weight=3]; 10[label="FiniteMap.elemFM0 Nothing",fontsize=16,color="black",shape="box"];10 -> 12[label="",style="solid", color="black", weight=3]; 11 -> 13[label="",style="dashed", color="red", weight=0]; 11[label="FiniteMap.elemFM0 (FiniteMap.lookupFM2 vyw40 vyw41 vyw42 vyw43 vyw44 vyw3 (vyw3 < vyw40))",fontsize=16,color="magenta"];11 -> 14[label="",style="dashed", color="magenta", weight=3]; 11 -> 15[label="",style="dashed", color="magenta", weight=3]; 11 -> 16[label="",style="dashed", color="magenta", weight=3]; 11 -> 17[label="",style="dashed", color="magenta", weight=3]; 11 -> 18[label="",style="dashed", color="magenta", weight=3]; 11 -> 19[label="",style="dashed", color="magenta", weight=3]; 11 -> 20[label="",style="dashed", color="magenta", weight=3]; 12[label="False",fontsize=16,color="green",shape="box"];14[label="vyw44",fontsize=16,color="green",shape="box"];15[label="vyw40",fontsize=16,color="green",shape="box"];16[label="vyw3 < vyw40",fontsize=16,color="blue",shape="box"];2932[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];16 -> 2932[label="",style="solid", color="blue", weight=9]; 2932 -> 21[label="",style="solid", color="blue", weight=3]; 2933[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];16 -> 2933[label="",style="solid", color="blue", weight=9]; 2933 -> 22[label="",style="solid", color="blue", weight=3]; 2934[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];16 -> 2934[label="",style="solid", color="blue", weight=9]; 2934 -> 23[label="",style="solid", color="blue", weight=3]; 2935[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];16 -> 2935[label="",style="solid", color="blue", weight=9]; 2935 -> 24[label="",style="solid", color="blue", weight=3]; 2936[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];16 -> 2936[label="",style="solid", color="blue", weight=9]; 2936 -> 25[label="",style="solid", color="blue", weight=3]; 2937[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];16 -> 2937[label="",style="solid", color="blue", weight=9]; 2937 -> 26[label="",style="solid", color="blue", weight=3]; 2938[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];16 -> 2938[label="",style="solid", color="blue", weight=9]; 2938 -> 27[label="",style="solid", color="blue", weight=3]; 2939[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];16 -> 2939[label="",style="solid", color="blue", weight=9]; 2939 -> 28[label="",style="solid", color="blue", weight=3]; 2940[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];16 -> 2940[label="",style="solid", color="blue", weight=9]; 2940 -> 29[label="",style="solid", color="blue", weight=3]; 2941[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];16 -> 2941[label="",style="solid", color="blue", weight=9]; 2941 -> 30[label="",style="solid", color="blue", weight=3]; 2942[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];16 -> 2942[label="",style="solid", color="blue", weight=9]; 2942 -> 31[label="",style="solid", color="blue", weight=3]; 2943[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];16 -> 2943[label="",style="solid", color="blue", weight=9]; 2943 -> 32[label="",style="solid", color="blue", weight=3]; 2944[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];16 -> 2944[label="",style="solid", color="blue", weight=9]; 2944 -> 33[label="",style="solid", color="blue", weight=3]; 2945[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];16 -> 2945[label="",style="solid", color="blue", weight=9]; 2945 -> 34[label="",style="solid", color="blue", weight=3]; 17[label="vyw41",fontsize=16,color="green",shape="box"];18[label="vyw42",fontsize=16,color="green",shape="box"];19[label="vyw43",fontsize=16,color="green",shape="box"];20[label="vyw3",fontsize=16,color="green",shape="box"];13[label="FiniteMap.elemFM0 (FiniteMap.lookupFM2 vyw13 vyw14 vyw15 vyw16 vyw17 vyw18 vyw19)",fontsize=16,color="burlywood",shape="triangle"];2946[label="vyw19/False",fontsize=10,color="white",style="solid",shape="box"];13 -> 2946[label="",style="solid", color="burlywood", weight=9]; 2946 -> 35[label="",style="solid", color="burlywood", weight=3]; 2947[label="vyw19/True",fontsize=10,color="white",style="solid",shape="box"];13 -> 2947[label="",style="solid", color="burlywood", weight=9]; 2947 -> 36[label="",style="solid", color="burlywood", weight=3]; 21[label="vyw3 < vyw40",fontsize=16,color="black",shape="triangle"];21 -> 37[label="",style="solid", color="black", weight=3]; 22[label="vyw3 < vyw40",fontsize=16,color="black",shape="triangle"];22 -> 38[label="",style="solid", color="black", weight=3]; 23[label="vyw3 < vyw40",fontsize=16,color="black",shape="triangle"];23 -> 39[label="",style="solid", color="black", weight=3]; 24[label="vyw3 < vyw40",fontsize=16,color="black",shape="triangle"];24 -> 40[label="",style="solid", color="black", weight=3]; 25[label="vyw3 < vyw40",fontsize=16,color="black",shape="triangle"];25 -> 41[label="",style="solid", color="black", weight=3]; 26[label="vyw3 < vyw40",fontsize=16,color="black",shape="triangle"];26 -> 42[label="",style="solid", color="black", weight=3]; 27[label="vyw3 < vyw40",fontsize=16,color="black",shape="triangle"];27 -> 43[label="",style="solid", color="black", weight=3]; 28[label="vyw3 < vyw40",fontsize=16,color="black",shape="triangle"];28 -> 44[label="",style="solid", color="black", weight=3]; 29[label="vyw3 < vyw40",fontsize=16,color="black",shape="triangle"];29 -> 45[label="",style="solid", color="black", weight=3]; 30[label="vyw3 < vyw40",fontsize=16,color="black",shape="triangle"];30 -> 46[label="",style="solid", color="black", weight=3]; 31[label="vyw3 < vyw40",fontsize=16,color="black",shape="triangle"];31 -> 47[label="",style="solid", color="black", weight=3]; 32[label="vyw3 < vyw40",fontsize=16,color="black",shape="triangle"];32 -> 48[label="",style="solid", color="black", weight=3]; 33[label="vyw3 < vyw40",fontsize=16,color="black",shape="triangle"];33 -> 49[label="",style="solid", color="black", weight=3]; 34[label="vyw3 < vyw40",fontsize=16,color="black",shape="triangle"];34 -> 50[label="",style="solid", color="black", weight=3]; 35[label="FiniteMap.elemFM0 (FiniteMap.lookupFM2 vyw13 vyw14 vyw15 vyw16 vyw17 vyw18 False)",fontsize=16,color="black",shape="box"];35 -> 51[label="",style="solid", color="black", weight=3]; 36[label="FiniteMap.elemFM0 (FiniteMap.lookupFM2 vyw13 vyw14 vyw15 vyw16 vyw17 vyw18 True)",fontsize=16,color="black",shape="box"];36 -> 52[label="",style="solid", color="black", weight=3]; 37 -> 184[label="",style="dashed", color="red", weight=0]; 37[label="compare vyw3 vyw40 == LT",fontsize=16,color="magenta"];37 -> 185[label="",style="dashed", color="magenta", weight=3]; 38 -> 184[label="",style="dashed", color="red", weight=0]; 38[label="compare vyw3 vyw40 == LT",fontsize=16,color="magenta"];38 -> 186[label="",style="dashed", color="magenta", weight=3]; 39 -> 184[label="",style="dashed", color="red", weight=0]; 39[label="compare vyw3 vyw40 == LT",fontsize=16,color="magenta"];39 -> 187[label="",style="dashed", color="magenta", weight=3]; 40 -> 184[label="",style="dashed", color="red", weight=0]; 40[label="compare vyw3 vyw40 == LT",fontsize=16,color="magenta"];40 -> 188[label="",style="dashed", color="magenta", weight=3]; 41 -> 184[label="",style="dashed", color="red", weight=0]; 41[label="compare vyw3 vyw40 == LT",fontsize=16,color="magenta"];41 -> 189[label="",style="dashed", color="magenta", weight=3]; 42 -> 184[label="",style="dashed", color="red", weight=0]; 42[label="compare vyw3 vyw40 == LT",fontsize=16,color="magenta"];42 -> 190[label="",style="dashed", color="magenta", weight=3]; 43 -> 184[label="",style="dashed", color="red", weight=0]; 43[label="compare vyw3 vyw40 == LT",fontsize=16,color="magenta"];43 -> 191[label="",style="dashed", color="magenta", weight=3]; 44 -> 184[label="",style="dashed", color="red", weight=0]; 44[label="compare vyw3 vyw40 == LT",fontsize=16,color="magenta"];44 -> 192[label="",style="dashed", color="magenta", weight=3]; 45 -> 184[label="",style="dashed", color="red", weight=0]; 45[label="compare vyw3 vyw40 == LT",fontsize=16,color="magenta"];45 -> 193[label="",style="dashed", color="magenta", weight=3]; 46 -> 184[label="",style="dashed", color="red", weight=0]; 46[label="compare vyw3 vyw40 == LT",fontsize=16,color="magenta"];46 -> 194[label="",style="dashed", color="magenta", weight=3]; 47 -> 184[label="",style="dashed", color="red", weight=0]; 47[label="compare vyw3 vyw40 == LT",fontsize=16,color="magenta"];47 -> 195[label="",style="dashed", color="magenta", weight=3]; 48 -> 184[label="",style="dashed", color="red", weight=0]; 48[label="compare vyw3 vyw40 == LT",fontsize=16,color="magenta"];48 -> 196[label="",style="dashed", color="magenta", weight=3]; 49 -> 184[label="",style="dashed", color="red", weight=0]; 49[label="compare vyw3 vyw40 == LT",fontsize=16,color="magenta"];49 -> 197[label="",style="dashed", color="magenta", weight=3]; 50 -> 184[label="",style="dashed", color="red", weight=0]; 50[label="compare vyw3 vyw40 == LT",fontsize=16,color="magenta"];50 -> 198[label="",style="dashed", color="magenta", weight=3]; 51 -> 68[label="",style="dashed", color="red", weight=0]; 51[label="FiniteMap.elemFM0 (FiniteMap.lookupFM1 vyw13 vyw14 vyw15 vyw16 vyw17 vyw18 (vyw18 > vyw13))",fontsize=16,color="magenta"];51 -> 69[label="",style="dashed", color="magenta", weight=3]; 51 -> 70[label="",style="dashed", color="magenta", weight=3]; 51 -> 71[label="",style="dashed", color="magenta", weight=3]; 51 -> 72[label="",style="dashed", color="magenta", weight=3]; 51 -> 73[label="",style="dashed", color="magenta", weight=3]; 51 -> 74[label="",style="dashed", color="magenta", weight=3]; 51 -> 75[label="",style="dashed", color="magenta", weight=3]; 52 -> 5[label="",style="dashed", color="red", weight=0]; 52[label="FiniteMap.elemFM0 (FiniteMap.lookupFM vyw16 vyw18)",fontsize=16,color="magenta"];52 -> 76[label="",style="dashed", color="magenta", weight=3]; 52 -> 77[label="",style="dashed", color="magenta", weight=3]; 185[label="compare vyw3 vyw40",fontsize=16,color="black",shape="triangle"];185 -> 223[label="",style="solid", color="black", weight=3]; 184[label="vyw37 == LT",fontsize=16,color="burlywood",shape="triangle"];2948[label="vyw37/LT",fontsize=10,color="white",style="solid",shape="box"];184 -> 2948[label="",style="solid", color="burlywood", weight=9]; 2948 -> 224[label="",style="solid", color="burlywood", weight=3]; 2949[label="vyw37/EQ",fontsize=10,color="white",style="solid",shape="box"];184 -> 2949[label="",style="solid", color="burlywood", weight=9]; 2949 -> 225[label="",style="solid", color="burlywood", weight=3]; 2950[label="vyw37/GT",fontsize=10,color="white",style="solid",shape="box"];184 -> 2950[label="",style="solid", color="burlywood", weight=9]; 2950 -> 226[label="",style="solid", color="burlywood", weight=3]; 186[label="compare vyw3 vyw40",fontsize=16,color="black",shape="triangle"];186 -> 227[label="",style="solid", color="black", weight=3]; 187[label="compare vyw3 vyw40",fontsize=16,color="black",shape="triangle"];187 -> 228[label="",style="solid", color="black", weight=3]; 188[label="compare vyw3 vyw40",fontsize=16,color="burlywood",shape="triangle"];2951[label="vyw3/vyw30 : vyw31",fontsize=10,color="white",style="solid",shape="box"];188 -> 2951[label="",style="solid", color="burlywood", weight=9]; 2951 -> 229[label="",style="solid", color="burlywood", weight=3]; 2952[label="vyw3/[]",fontsize=10,color="white",style="solid",shape="box"];188 -> 2952[label="",style="solid", color="burlywood", weight=9]; 2952 -> 230[label="",style="solid", color="burlywood", weight=3]; 189[label="compare vyw3 vyw40",fontsize=16,color="black",shape="triangle"];189 -> 231[label="",style="solid", color="black", weight=3]; 190[label="compare vyw3 vyw40",fontsize=16,color="black",shape="triangle"];190 -> 232[label="",style="solid", color="black", weight=3]; 191[label="compare vyw3 vyw40",fontsize=16,color="black",shape="triangle"];191 -> 233[label="",style="solid", color="black", weight=3]; 192[label="compare vyw3 vyw40",fontsize=16,color="black",shape="triangle"];192 -> 234[label="",style="solid", color="black", weight=3]; 193[label="compare vyw3 vyw40",fontsize=16,color="burlywood",shape="triangle"];2953[label="vyw3/vyw30 :% vyw31",fontsize=10,color="white",style="solid",shape="box"];193 -> 2953[label="",style="solid", color="burlywood", weight=9]; 2953 -> 235[label="",style="solid", color="burlywood", weight=3]; 194[label="compare vyw3 vyw40",fontsize=16,color="black",shape="triangle"];194 -> 236[label="",style="solid", color="black", weight=3]; 195[label="compare vyw3 vyw40",fontsize=16,color="black",shape="triangle"];195 -> 237[label="",style="solid", color="black", weight=3]; 196[label="compare vyw3 vyw40",fontsize=16,color="burlywood",shape="triangle"];2954[label="vyw3/Integer vyw30",fontsize=10,color="white",style="solid",shape="box"];196 -> 2954[label="",style="solid", color="burlywood", weight=9]; 2954 -> 238[label="",style="solid", color="burlywood", weight=3]; 197[label="compare vyw3 vyw40",fontsize=16,color="black",shape="triangle"];197 -> 239[label="",style="solid", color="black", weight=3]; 198[label="compare vyw3 vyw40",fontsize=16,color="burlywood",shape="triangle"];2955[label="vyw3/()",fontsize=10,color="white",style="solid",shape="box"];198 -> 2955[label="",style="solid", color="burlywood", weight=9]; 2955 -> 240[label="",style="solid", color="burlywood", weight=3]; 69[label="vyw13",fontsize=16,color="green",shape="box"];70[label="vyw15",fontsize=16,color="green",shape="box"];71[label="vyw16",fontsize=16,color="green",shape="box"];72[label="vyw18",fontsize=16,color="green",shape="box"];73[label="vyw14",fontsize=16,color="green",shape="box"];74[label="vyw18 > vyw13",fontsize=16,color="blue",shape="box"];2956[label="> :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];74 -> 2956[label="",style="solid", color="blue", weight=9]; 2956 -> 96[label="",style="solid", color="blue", weight=3]; 2957[label="> :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];74 -> 2957[label="",style="solid", color="blue", weight=9]; 2957 -> 97[label="",style="solid", color="blue", weight=3]; 2958[label="> :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];74 -> 2958[label="",style="solid", color="blue", weight=9]; 2958 -> 98[label="",style="solid", color="blue", weight=3]; 2959[label="> :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];74 -> 2959[label="",style="solid", color="blue", weight=9]; 2959 -> 99[label="",style="solid", color="blue", weight=3]; 2960[label="> :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];74 -> 2960[label="",style="solid", color="blue", weight=9]; 2960 -> 100[label="",style="solid", color="blue", weight=3]; 2961[label="> :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];74 -> 2961[label="",style="solid", color="blue", weight=9]; 2961 -> 101[label="",style="solid", color="blue", weight=3]; 2962[label="> :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];74 -> 2962[label="",style="solid", color="blue", weight=9]; 2962 -> 102[label="",style="solid", color="blue", weight=3]; 2963[label="> :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];74 -> 2963[label="",style="solid", color="blue", weight=9]; 2963 -> 103[label="",style="solid", color="blue", weight=3]; 2964[label="> :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];74 -> 2964[label="",style="solid", color="blue", weight=9]; 2964 -> 104[label="",style="solid", color="blue", weight=3]; 2965[label="> :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];74 -> 2965[label="",style="solid", color="blue", weight=9]; 2965 -> 105[label="",style="solid", color="blue", weight=3]; 2966[label="> :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];74 -> 2966[label="",style="solid", color="blue", weight=9]; 2966 -> 106[label="",style="solid", color="blue", weight=3]; 2967[label="> :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];74 -> 2967[label="",style="solid", color="blue", weight=9]; 2967 -> 107[label="",style="solid", color="blue", weight=3]; 2968[label="> :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];74 -> 2968[label="",style="solid", color="blue", weight=9]; 2968 -> 108[label="",style="solid", color="blue", weight=3]; 2969[label="> :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];74 -> 2969[label="",style="solid", color="blue", weight=9]; 2969 -> 109[label="",style="solid", color="blue", weight=3]; 75[label="vyw17",fontsize=16,color="green",shape="box"];68[label="FiniteMap.elemFM0 (FiniteMap.lookupFM1 vyw28 vyw29 vyw30 vyw31 vyw32 vyw33 vyw34)",fontsize=16,color="burlywood",shape="triangle"];2970[label="vyw34/False",fontsize=10,color="white",style="solid",shape="box"];68 -> 2970[label="",style="solid", color="burlywood", weight=9]; 2970 -> 110[label="",style="solid", color="burlywood", weight=3]; 2971[label="vyw34/True",fontsize=10,color="white",style="solid",shape="box"];68 -> 2971[label="",style="solid", color="burlywood", weight=9]; 2971 -> 111[label="",style="solid", color="burlywood", weight=3]; 76[label="vyw16",fontsize=16,color="green",shape="box"];77[label="vyw18",fontsize=16,color="green",shape="box"];223[label="compare3 vyw3 vyw40",fontsize=16,color="black",shape="box"];223 -> 256[label="",style="solid", color="black", weight=3]; 224[label="LT == LT",fontsize=16,color="black",shape="box"];224 -> 257[label="",style="solid", color="black", weight=3]; 225[label="EQ == LT",fontsize=16,color="black",shape="box"];225 -> 258[label="",style="solid", color="black", weight=3]; 226[label="GT == LT",fontsize=16,color="black",shape="box"];226 -> 259[label="",style="solid", color="black", weight=3]; 227[label="primCmpDouble vyw3 vyw40",fontsize=16,color="burlywood",shape="box"];2972[label="vyw3/Double vyw30 vyw31",fontsize=10,color="white",style="solid",shape="box"];227 -> 2972[label="",style="solid", color="burlywood", weight=9]; 2972 -> 260[label="",style="solid", color="burlywood", weight=3]; 228[label="compare3 vyw3 vyw40",fontsize=16,color="black",shape="box"];228 -> 261[label="",style="solid", color="black", weight=3]; 229[label="compare (vyw30 : vyw31) vyw40",fontsize=16,color="burlywood",shape="box"];2973[label="vyw40/vyw400 : vyw401",fontsize=10,color="white",style="solid",shape="box"];229 -> 2973[label="",style="solid", color="burlywood", weight=9]; 2973 -> 262[label="",style="solid", color="burlywood", weight=3]; 2974[label="vyw40/[]",fontsize=10,color="white",style="solid",shape="box"];229 -> 2974[label="",style="solid", color="burlywood", weight=9]; 2974 -> 263[label="",style="solid", color="burlywood", weight=3]; 230[label="compare [] vyw40",fontsize=16,color="burlywood",shape="box"];2975[label="vyw40/vyw400 : vyw401",fontsize=10,color="white",style="solid",shape="box"];230 -> 2975[label="",style="solid", color="burlywood", weight=9]; 2975 -> 264[label="",style="solid", color="burlywood", weight=3]; 2976[label="vyw40/[]",fontsize=10,color="white",style="solid",shape="box"];230 -> 2976[label="",style="solid", color="burlywood", weight=9]; 2976 -> 265[label="",style="solid", color="burlywood", weight=3]; 231[label="compare3 vyw3 vyw40",fontsize=16,color="black",shape="box"];231 -> 266[label="",style="solid", color="black", weight=3]; 232[label="compare3 vyw3 vyw40",fontsize=16,color="black",shape="box"];232 -> 267[label="",style="solid", color="black", weight=3]; 233[label="compare3 vyw3 vyw40",fontsize=16,color="black",shape="box"];233 -> 268[label="",style="solid", color="black", weight=3]; 234[label="compare3 vyw3 vyw40",fontsize=16,color="black",shape="box"];234 -> 269[label="",style="solid", color="black", weight=3]; 235[label="compare (vyw30 :% vyw31) vyw40",fontsize=16,color="burlywood",shape="box"];2977[label="vyw40/vyw400 :% vyw401",fontsize=10,color="white",style="solid",shape="box"];235 -> 2977[label="",style="solid", color="burlywood", weight=9]; 2977 -> 270[label="",style="solid", color="burlywood", weight=3]; 236[label="primCmpFloat vyw3 vyw40",fontsize=16,color="burlywood",shape="box"];2978[label="vyw3/Float vyw30 vyw31",fontsize=10,color="white",style="solid",shape="box"];236 -> 2978[label="",style="solid", color="burlywood", weight=9]; 2978 -> 271[label="",style="solid", color="burlywood", weight=3]; 237[label="primCmpChar vyw3 vyw40",fontsize=16,color="burlywood",shape="box"];2979[label="vyw3/Char vyw30",fontsize=10,color="white",style="solid",shape="box"];237 -> 2979[label="",style="solid", color="burlywood", weight=9]; 2979 -> 272[label="",style="solid", color="burlywood", weight=3]; 238[label="compare (Integer vyw30) vyw40",fontsize=16,color="burlywood",shape="box"];2980[label="vyw40/Integer vyw400",fontsize=10,color="white",style="solid",shape="box"];238 -> 2980[label="",style="solid", color="burlywood", weight=9]; 2980 -> 273[label="",style="solid", color="burlywood", weight=3]; 239[label="primCmpInt vyw3 vyw40",fontsize=16,color="burlywood",shape="triangle"];2981[label="vyw3/Pos vyw30",fontsize=10,color="white",style="solid",shape="box"];239 -> 2981[label="",style="solid", color="burlywood", weight=9]; 2981 -> 274[label="",style="solid", color="burlywood", weight=3]; 2982[label="vyw3/Neg vyw30",fontsize=10,color="white",style="solid",shape="box"];239 -> 2982[label="",style="solid", color="burlywood", weight=9]; 2982 -> 275[label="",style="solid", color="burlywood", weight=3]; 240[label="compare () vyw40",fontsize=16,color="burlywood",shape="box"];2983[label="vyw40/()",fontsize=10,color="white",style="solid",shape="box"];240 -> 2983[label="",style="solid", color="burlywood", weight=9]; 2983 -> 276[label="",style="solid", color="burlywood", weight=3]; 96[label="vyw18 > vyw13",fontsize=16,color="black",shape="box"];96 -> 139[label="",style="solid", color="black", weight=3]; 97[label="vyw18 > vyw13",fontsize=16,color="black",shape="box"];97 -> 140[label="",style="solid", color="black", weight=3]; 98[label="vyw18 > vyw13",fontsize=16,color="black",shape="box"];98 -> 141[label="",style="solid", color="black", weight=3]; 99[label="vyw18 > vyw13",fontsize=16,color="black",shape="box"];99 -> 142[label="",style="solid", color="black", weight=3]; 100[label="vyw18 > vyw13",fontsize=16,color="black",shape="box"];100 -> 143[label="",style="solid", color="black", weight=3]; 101[label="vyw18 > vyw13",fontsize=16,color="black",shape="box"];101 -> 144[label="",style="solid", color="black", weight=3]; 102[label="vyw18 > vyw13",fontsize=16,color="black",shape="box"];102 -> 145[label="",style="solid", color="black", weight=3]; 103[label="vyw18 > vyw13",fontsize=16,color="black",shape="box"];103 -> 146[label="",style="solid", color="black", weight=3]; 104[label="vyw18 > vyw13",fontsize=16,color="black",shape="box"];104 -> 147[label="",style="solid", color="black", weight=3]; 105[label="vyw18 > vyw13",fontsize=16,color="black",shape="box"];105 -> 148[label="",style="solid", color="black", weight=3]; 106[label="vyw18 > vyw13",fontsize=16,color="black",shape="box"];106 -> 149[label="",style="solid", color="black", weight=3]; 107[label="vyw18 > vyw13",fontsize=16,color="black",shape="box"];107 -> 150[label="",style="solid", color="black", weight=3]; 108[label="vyw18 > vyw13",fontsize=16,color="black",shape="box"];108 -> 151[label="",style="solid", color="black", weight=3]; 109[label="vyw18 > vyw13",fontsize=16,color="black",shape="box"];109 -> 152[label="",style="solid", color="black", weight=3]; 110[label="FiniteMap.elemFM0 (FiniteMap.lookupFM1 vyw28 vyw29 vyw30 vyw31 vyw32 vyw33 False)",fontsize=16,color="black",shape="box"];110 -> 153[label="",style="solid", color="black", weight=3]; 111[label="FiniteMap.elemFM0 (FiniteMap.lookupFM1 vyw28 vyw29 vyw30 vyw31 vyw32 vyw33 True)",fontsize=16,color="black",shape="box"];111 -> 154[label="",style="solid", color="black", weight=3]; 256[label="compare2 vyw3 vyw40 (vyw3 == vyw40)",fontsize=16,color="burlywood",shape="box"];2984[label="vyw3/(vyw30,vyw31,vyw32)",fontsize=10,color="white",style="solid",shape="box"];256 -> 2984[label="",style="solid", color="burlywood", weight=9]; 2984 -> 311[label="",style="solid", color="burlywood", weight=3]; 257[label="True",fontsize=16,color="green",shape="box"];258[label="False",fontsize=16,color="green",shape="box"];259[label="False",fontsize=16,color="green",shape="box"];260[label="primCmpDouble (Double vyw30 vyw31) vyw40",fontsize=16,color="burlywood",shape="box"];2985[label="vyw31/Pos vyw310",fontsize=10,color="white",style="solid",shape="box"];260 -> 2985[label="",style="solid", color="burlywood", weight=9]; 2985 -> 312[label="",style="solid", color="burlywood", weight=3]; 2986[label="vyw31/Neg vyw310",fontsize=10,color="white",style="solid",shape="box"];260 -> 2986[label="",style="solid", color="burlywood", weight=9]; 2986 -> 313[label="",style="solid", color="burlywood", weight=3]; 261[label="compare2 vyw3 vyw40 (vyw3 == vyw40)",fontsize=16,color="burlywood",shape="box"];2987[label="vyw3/Left vyw30",fontsize=10,color="white",style="solid",shape="box"];261 -> 2987[label="",style="solid", color="burlywood", weight=9]; 2987 -> 314[label="",style="solid", color="burlywood", weight=3]; 2988[label="vyw3/Right vyw30",fontsize=10,color="white",style="solid",shape="box"];261 -> 2988[label="",style="solid", color="burlywood", weight=9]; 2988 -> 315[label="",style="solid", color="burlywood", weight=3]; 262[label="compare (vyw30 : vyw31) (vyw400 : vyw401)",fontsize=16,color="black",shape="box"];262 -> 316[label="",style="solid", color="black", weight=3]; 263[label="compare (vyw30 : vyw31) []",fontsize=16,color="black",shape="box"];263 -> 317[label="",style="solid", color="black", weight=3]; 264[label="compare [] (vyw400 : vyw401)",fontsize=16,color="black",shape="box"];264 -> 318[label="",style="solid", color="black", weight=3]; 265[label="compare [] []",fontsize=16,color="black",shape="box"];265 -> 319[label="",style="solid", color="black", weight=3]; 266[label="compare2 vyw3 vyw40 (vyw3 == vyw40)",fontsize=16,color="burlywood",shape="box"];2989[label="vyw3/False",fontsize=10,color="white",style="solid",shape="box"];266 -> 2989[label="",style="solid", color="burlywood", weight=9]; 2989 -> 320[label="",style="solid", color="burlywood", weight=3]; 2990[label="vyw3/True",fontsize=10,color="white",style="solid",shape="box"];266 -> 2990[label="",style="solid", color="burlywood", weight=9]; 2990 -> 321[label="",style="solid", color="burlywood", weight=3]; 267[label="compare2 vyw3 vyw40 (vyw3 == vyw40)",fontsize=16,color="burlywood",shape="box"];2991[label="vyw3/(vyw30,vyw31)",fontsize=10,color="white",style="solid",shape="box"];267 -> 2991[label="",style="solid", color="burlywood", weight=9]; 2991 -> 322[label="",style="solid", color="burlywood", weight=3]; 268[label="compare2 vyw3 vyw40 (vyw3 == vyw40)",fontsize=16,color="burlywood",shape="box"];2992[label="vyw3/LT",fontsize=10,color="white",style="solid",shape="box"];268 -> 2992[label="",style="solid", color="burlywood", weight=9]; 2992 -> 323[label="",style="solid", color="burlywood", weight=3]; 2993[label="vyw3/EQ",fontsize=10,color="white",style="solid",shape="box"];268 -> 2993[label="",style="solid", color="burlywood", weight=9]; 2993 -> 324[label="",style="solid", color="burlywood", weight=3]; 2994[label="vyw3/GT",fontsize=10,color="white",style="solid",shape="box"];268 -> 2994[label="",style="solid", color="burlywood", weight=9]; 2994 -> 325[label="",style="solid", color="burlywood", weight=3]; 269[label="compare2 vyw3 vyw40 (vyw3 == vyw40)",fontsize=16,color="burlywood",shape="box"];2995[label="vyw3/Nothing",fontsize=10,color="white",style="solid",shape="box"];269 -> 2995[label="",style="solid", color="burlywood", weight=9]; 2995 -> 326[label="",style="solid", color="burlywood", weight=3]; 2996[label="vyw3/Just vyw30",fontsize=10,color="white",style="solid",shape="box"];269 -> 2996[label="",style="solid", color="burlywood", weight=9]; 2996 -> 327[label="",style="solid", color="burlywood", weight=3]; 270[label="compare (vyw30 :% vyw31) (vyw400 :% vyw401)",fontsize=16,color="black",shape="box"];270 -> 328[label="",style="solid", color="black", weight=3]; 271[label="primCmpFloat (Float vyw30 vyw31) vyw40",fontsize=16,color="burlywood",shape="box"];2997[label="vyw31/Pos vyw310",fontsize=10,color="white",style="solid",shape="box"];271 -> 2997[label="",style="solid", color="burlywood", weight=9]; 2997 -> 329[label="",style="solid", color="burlywood", weight=3]; 2998[label="vyw31/Neg vyw310",fontsize=10,color="white",style="solid",shape="box"];271 -> 2998[label="",style="solid", color="burlywood", weight=9]; 2998 -> 330[label="",style="solid", color="burlywood", weight=3]; 272[label="primCmpChar (Char vyw30) vyw40",fontsize=16,color="burlywood",shape="box"];2999[label="vyw40/Char vyw400",fontsize=10,color="white",style="solid",shape="box"];272 -> 2999[label="",style="solid", color="burlywood", weight=9]; 2999 -> 331[label="",style="solid", color="burlywood", weight=3]; 273[label="compare (Integer vyw30) (Integer vyw400)",fontsize=16,color="black",shape="box"];273 -> 332[label="",style="solid", color="black", weight=3]; 274[label="primCmpInt (Pos vyw30) vyw40",fontsize=16,color="burlywood",shape="box"];3000[label="vyw30/Succ vyw300",fontsize=10,color="white",style="solid",shape="box"];274 -> 3000[label="",style="solid", color="burlywood", weight=9]; 3000 -> 333[label="",style="solid", color="burlywood", weight=3]; 3001[label="vyw30/Zero",fontsize=10,color="white",style="solid",shape="box"];274 -> 3001[label="",style="solid", color="burlywood", weight=9]; 3001 -> 334[label="",style="solid", color="burlywood", weight=3]; 275[label="primCmpInt (Neg vyw30) vyw40",fontsize=16,color="burlywood",shape="box"];3002[label="vyw30/Succ vyw300",fontsize=10,color="white",style="solid",shape="box"];275 -> 3002[label="",style="solid", color="burlywood", weight=9]; 3002 -> 335[label="",style="solid", color="burlywood", weight=3]; 3003[label="vyw30/Zero",fontsize=10,color="white",style="solid",shape="box"];275 -> 3003[label="",style="solid", color="burlywood", weight=9]; 3003 -> 336[label="",style="solid", color="burlywood", weight=3]; 276[label="compare () ()",fontsize=16,color="black",shape="box"];276 -> 337[label="",style="solid", color="black", weight=3]; 139 -> 241[label="",style="dashed", color="red", weight=0]; 139[label="compare vyw18 vyw13 == GT",fontsize=16,color="magenta"];139 -> 242[label="",style="dashed", color="magenta", weight=3]; 140 -> 241[label="",style="dashed", color="red", weight=0]; 140[label="compare vyw18 vyw13 == GT",fontsize=16,color="magenta"];140 -> 243[label="",style="dashed", color="magenta", weight=3]; 141 -> 241[label="",style="dashed", color="red", weight=0]; 141[label="compare vyw18 vyw13 == GT",fontsize=16,color="magenta"];141 -> 244[label="",style="dashed", color="magenta", weight=3]; 142 -> 241[label="",style="dashed", color="red", weight=0]; 142[label="compare vyw18 vyw13 == GT",fontsize=16,color="magenta"];142 -> 245[label="",style="dashed", color="magenta", weight=3]; 143 -> 241[label="",style="dashed", color="red", weight=0]; 143[label="compare vyw18 vyw13 == GT",fontsize=16,color="magenta"];143 -> 246[label="",style="dashed", color="magenta", weight=3]; 144 -> 241[label="",style="dashed", color="red", weight=0]; 144[label="compare vyw18 vyw13 == GT",fontsize=16,color="magenta"];144 -> 247[label="",style="dashed", color="magenta", weight=3]; 145 -> 241[label="",style="dashed", color="red", weight=0]; 145[label="compare vyw18 vyw13 == GT",fontsize=16,color="magenta"];145 -> 248[label="",style="dashed", color="magenta", weight=3]; 146 -> 241[label="",style="dashed", color="red", weight=0]; 146[label="compare vyw18 vyw13 == GT",fontsize=16,color="magenta"];146 -> 249[label="",style="dashed", color="magenta", weight=3]; 147 -> 241[label="",style="dashed", color="red", weight=0]; 147[label="compare vyw18 vyw13 == GT",fontsize=16,color="magenta"];147 -> 250[label="",style="dashed", color="magenta", weight=3]; 148 -> 241[label="",style="dashed", color="red", weight=0]; 148[label="compare vyw18 vyw13 == GT",fontsize=16,color="magenta"];148 -> 251[label="",style="dashed", color="magenta", weight=3]; 149 -> 241[label="",style="dashed", color="red", weight=0]; 149[label="compare vyw18 vyw13 == GT",fontsize=16,color="magenta"];149 -> 252[label="",style="dashed", color="magenta", weight=3]; 150 -> 241[label="",style="dashed", color="red", weight=0]; 150[label="compare vyw18 vyw13 == GT",fontsize=16,color="magenta"];150 -> 253[label="",style="dashed", color="magenta", weight=3]; 151 -> 241[label="",style="dashed", color="red", weight=0]; 151[label="compare vyw18 vyw13 == GT",fontsize=16,color="magenta"];151 -> 254[label="",style="dashed", color="magenta", weight=3]; 152 -> 241[label="",style="dashed", color="red", weight=0]; 152[label="compare vyw18 vyw13 == GT",fontsize=16,color="magenta"];152 -> 255[label="",style="dashed", color="magenta", weight=3]; 153[label="FiniteMap.elemFM0 (FiniteMap.lookupFM0 vyw28 vyw29 vyw30 vyw31 vyw32 vyw33 otherwise)",fontsize=16,color="black",shape="box"];153 -> 277[label="",style="solid", color="black", weight=3]; 154 -> 5[label="",style="dashed", color="red", weight=0]; 154[label="FiniteMap.elemFM0 (FiniteMap.lookupFM vyw32 vyw33)",fontsize=16,color="magenta"];154 -> 278[label="",style="dashed", color="magenta", weight=3]; 154 -> 279[label="",style="dashed", color="magenta", weight=3]; 311[label="compare2 (vyw30,vyw31,vyw32) vyw40 ((vyw30,vyw31,vyw32) == vyw40)",fontsize=16,color="burlywood",shape="box"];3004[label="vyw40/(vyw400,vyw401,vyw402)",fontsize=10,color="white",style="solid",shape="box"];311 -> 3004[label="",style="solid", color="burlywood", weight=9]; 3004 -> 342[label="",style="solid", color="burlywood", weight=3]; 312[label="primCmpDouble (Double vyw30 (Pos vyw310)) vyw40",fontsize=16,color="burlywood",shape="box"];3005[label="vyw40/Double vyw400 vyw401",fontsize=10,color="white",style="solid",shape="box"];312 -> 3005[label="",style="solid", color="burlywood", weight=9]; 3005 -> 343[label="",style="solid", color="burlywood", weight=3]; 313[label="primCmpDouble (Double vyw30 (Neg vyw310)) vyw40",fontsize=16,color="burlywood",shape="box"];3006[label="vyw40/Double vyw400 vyw401",fontsize=10,color="white",style="solid",shape="box"];313 -> 3006[label="",style="solid", color="burlywood", weight=9]; 3006 -> 344[label="",style="solid", color="burlywood", weight=3]; 314[label="compare2 (Left vyw30) vyw40 (Left vyw30 == vyw40)",fontsize=16,color="burlywood",shape="box"];3007[label="vyw40/Left vyw400",fontsize=10,color="white",style="solid",shape="box"];314 -> 3007[label="",style="solid", color="burlywood", weight=9]; 3007 -> 345[label="",style="solid", color="burlywood", weight=3]; 3008[label="vyw40/Right vyw400",fontsize=10,color="white",style="solid",shape="box"];314 -> 3008[label="",style="solid", color="burlywood", weight=9]; 3008 -> 346[label="",style="solid", color="burlywood", weight=3]; 315[label="compare2 (Right vyw30) vyw40 (Right vyw30 == vyw40)",fontsize=16,color="burlywood",shape="box"];3009[label="vyw40/Left vyw400",fontsize=10,color="white",style="solid",shape="box"];315 -> 3009[label="",style="solid", color="burlywood", weight=9]; 3009 -> 347[label="",style="solid", color="burlywood", weight=3]; 3010[label="vyw40/Right vyw400",fontsize=10,color="white",style="solid",shape="box"];315 -> 3010[label="",style="solid", color="burlywood", weight=9]; 3010 -> 348[label="",style="solid", color="burlywood", weight=3]; 316 -> 349[label="",style="dashed", color="red", weight=0]; 316[label="primCompAux vyw30 vyw400 (compare vyw31 vyw401)",fontsize=16,color="magenta"];316 -> 350[label="",style="dashed", color="magenta", weight=3]; 317[label="GT",fontsize=16,color="green",shape="box"];318[label="LT",fontsize=16,color="green",shape="box"];319[label="EQ",fontsize=16,color="green",shape="box"];320[label="compare2 False vyw40 (False == vyw40)",fontsize=16,color="burlywood",shape="box"];3011[label="vyw40/False",fontsize=10,color="white",style="solid",shape="box"];320 -> 3011[label="",style="solid", color="burlywood", weight=9]; 3011 -> 351[label="",style="solid", color="burlywood", weight=3]; 3012[label="vyw40/True",fontsize=10,color="white",style="solid",shape="box"];320 -> 3012[label="",style="solid", color="burlywood", weight=9]; 3012 -> 352[label="",style="solid", color="burlywood", weight=3]; 321[label="compare2 True vyw40 (True == vyw40)",fontsize=16,color="burlywood",shape="box"];3013[label="vyw40/False",fontsize=10,color="white",style="solid",shape="box"];321 -> 3013[label="",style="solid", color="burlywood", weight=9]; 3013 -> 353[label="",style="solid", color="burlywood", weight=3]; 3014[label="vyw40/True",fontsize=10,color="white",style="solid",shape="box"];321 -> 3014[label="",style="solid", color="burlywood", weight=9]; 3014 -> 354[label="",style="solid", color="burlywood", weight=3]; 322[label="compare2 (vyw30,vyw31) vyw40 ((vyw30,vyw31) == vyw40)",fontsize=16,color="burlywood",shape="box"];3015[label="vyw40/(vyw400,vyw401)",fontsize=10,color="white",style="solid",shape="box"];322 -> 3015[label="",style="solid", color="burlywood", weight=9]; 3015 -> 355[label="",style="solid", color="burlywood", weight=3]; 323[label="compare2 LT vyw40 (LT == vyw40)",fontsize=16,color="burlywood",shape="box"];3016[label="vyw40/LT",fontsize=10,color="white",style="solid",shape="box"];323 -> 3016[label="",style="solid", color="burlywood", weight=9]; 3016 -> 356[label="",style="solid", color="burlywood", weight=3]; 3017[label="vyw40/EQ",fontsize=10,color="white",style="solid",shape="box"];323 -> 3017[label="",style="solid", color="burlywood", weight=9]; 3017 -> 357[label="",style="solid", color="burlywood", weight=3]; 3018[label="vyw40/GT",fontsize=10,color="white",style="solid",shape="box"];323 -> 3018[label="",style="solid", color="burlywood", weight=9]; 3018 -> 358[label="",style="solid", color="burlywood", weight=3]; 324[label="compare2 EQ vyw40 (EQ == vyw40)",fontsize=16,color="burlywood",shape="box"];3019[label="vyw40/LT",fontsize=10,color="white",style="solid",shape="box"];324 -> 3019[label="",style="solid", color="burlywood", weight=9]; 3019 -> 359[label="",style="solid", color="burlywood", weight=3]; 3020[label="vyw40/EQ",fontsize=10,color="white",style="solid",shape="box"];324 -> 3020[label="",style="solid", color="burlywood", weight=9]; 3020 -> 360[label="",style="solid", color="burlywood", weight=3]; 3021[label="vyw40/GT",fontsize=10,color="white",style="solid",shape="box"];324 -> 3021[label="",style="solid", color="burlywood", weight=9]; 3021 -> 361[label="",style="solid", color="burlywood", weight=3]; 325[label="compare2 GT vyw40 (GT == vyw40)",fontsize=16,color="burlywood",shape="box"];3022[label="vyw40/LT",fontsize=10,color="white",style="solid",shape="box"];325 -> 3022[label="",style="solid", color="burlywood", weight=9]; 3022 -> 362[label="",style="solid", color="burlywood", weight=3]; 3023[label="vyw40/EQ",fontsize=10,color="white",style="solid",shape="box"];325 -> 3023[label="",style="solid", color="burlywood", weight=9]; 3023 -> 363[label="",style="solid", color="burlywood", weight=3]; 3024[label="vyw40/GT",fontsize=10,color="white",style="solid",shape="box"];325 -> 3024[label="",style="solid", color="burlywood", weight=9]; 3024 -> 364[label="",style="solid", color="burlywood", weight=3]; 326[label="compare2 Nothing vyw40 (Nothing == vyw40)",fontsize=16,color="burlywood",shape="box"];3025[label="vyw40/Nothing",fontsize=10,color="white",style="solid",shape="box"];326 -> 3025[label="",style="solid", color="burlywood", weight=9]; 3025 -> 365[label="",style="solid", color="burlywood", weight=3]; 3026[label="vyw40/Just vyw400",fontsize=10,color="white",style="solid",shape="box"];326 -> 3026[label="",style="solid", color="burlywood", weight=9]; 3026 -> 366[label="",style="solid", color="burlywood", weight=3]; 327[label="compare2 (Just vyw30) vyw40 (Just vyw30 == vyw40)",fontsize=16,color="burlywood",shape="box"];3027[label="vyw40/Nothing",fontsize=10,color="white",style="solid",shape="box"];327 -> 3027[label="",style="solid", color="burlywood", weight=9]; 3027 -> 367[label="",style="solid", color="burlywood", weight=3]; 3028[label="vyw40/Just vyw400",fontsize=10,color="white",style="solid",shape="box"];327 -> 3028[label="",style="solid", color="burlywood", weight=9]; 3028 -> 368[label="",style="solid", color="burlywood", weight=3]; 328[label="compare (vyw30 * vyw401) (vyw400 * vyw31)",fontsize=16,color="blue",shape="box"];3029[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];328 -> 3029[label="",style="solid", color="blue", weight=9]; 3029 -> 369[label="",style="solid", color="blue", weight=3]; 3030[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];328 -> 3030[label="",style="solid", color="blue", weight=9]; 3030 -> 370[label="",style="solid", color="blue", weight=3]; 329[label="primCmpFloat (Float vyw30 (Pos vyw310)) vyw40",fontsize=16,color="burlywood",shape="box"];3031[label="vyw40/Float vyw400 vyw401",fontsize=10,color="white",style="solid",shape="box"];329 -> 3031[label="",style="solid", color="burlywood", weight=9]; 3031 -> 371[label="",style="solid", color="burlywood", weight=3]; 330[label="primCmpFloat (Float vyw30 (Neg vyw310)) vyw40",fontsize=16,color="burlywood",shape="box"];3032[label="vyw40/Float vyw400 vyw401",fontsize=10,color="white",style="solid",shape="box"];330 -> 3032[label="",style="solid", color="burlywood", weight=9]; 3032 -> 372[label="",style="solid", color="burlywood", weight=3]; 331[label="primCmpChar (Char vyw30) (Char vyw400)",fontsize=16,color="black",shape="box"];331 -> 373[label="",style="solid", color="black", weight=3]; 332 -> 239[label="",style="dashed", color="red", weight=0]; 332[label="primCmpInt vyw30 vyw400",fontsize=16,color="magenta"];332 -> 374[label="",style="dashed", color="magenta", weight=3]; 332 -> 375[label="",style="dashed", color="magenta", weight=3]; 333[label="primCmpInt (Pos (Succ vyw300)) vyw40",fontsize=16,color="burlywood",shape="box"];3033[label="vyw40/Pos vyw400",fontsize=10,color="white",style="solid",shape="box"];333 -> 3033[label="",style="solid", color="burlywood", weight=9]; 3033 -> 376[label="",style="solid", color="burlywood", weight=3]; 3034[label="vyw40/Neg vyw400",fontsize=10,color="white",style="solid",shape="box"];333 -> 3034[label="",style="solid", color="burlywood", weight=9]; 3034 -> 377[label="",style="solid", color="burlywood", weight=3]; 334[label="primCmpInt (Pos Zero) vyw40",fontsize=16,color="burlywood",shape="box"];3035[label="vyw40/Pos vyw400",fontsize=10,color="white",style="solid",shape="box"];334 -> 3035[label="",style="solid", color="burlywood", weight=9]; 3035 -> 378[label="",style="solid", color="burlywood", weight=3]; 3036[label="vyw40/Neg vyw400",fontsize=10,color="white",style="solid",shape="box"];334 -> 3036[label="",style="solid", color="burlywood", weight=9]; 3036 -> 379[label="",style="solid", color="burlywood", weight=3]; 335[label="primCmpInt (Neg (Succ vyw300)) vyw40",fontsize=16,color="burlywood",shape="box"];3037[label="vyw40/Pos vyw400",fontsize=10,color="white",style="solid",shape="box"];335 -> 3037[label="",style="solid", color="burlywood", weight=9]; 3037 -> 380[label="",style="solid", color="burlywood", weight=3]; 3038[label="vyw40/Neg vyw400",fontsize=10,color="white",style="solid",shape="box"];335 -> 3038[label="",style="solid", color="burlywood", weight=9]; 3038 -> 381[label="",style="solid", color="burlywood", weight=3]; 336[label="primCmpInt (Neg Zero) vyw40",fontsize=16,color="burlywood",shape="box"];3039[label="vyw40/Pos vyw400",fontsize=10,color="white",style="solid",shape="box"];336 -> 3039[label="",style="solid", color="burlywood", weight=9]; 3039 -> 382[label="",style="solid", color="burlywood", weight=3]; 3040[label="vyw40/Neg vyw400",fontsize=10,color="white",style="solid",shape="box"];336 -> 3040[label="",style="solid", color="burlywood", weight=9]; 3040 -> 383[label="",style="solid", color="burlywood", weight=3]; 337[label="EQ",fontsize=16,color="green",shape="box"];242 -> 185[label="",style="dashed", color="red", weight=0]; 242[label="compare vyw18 vyw13",fontsize=16,color="magenta"];242 -> 280[label="",style="dashed", color="magenta", weight=3]; 242 -> 281[label="",style="dashed", color="magenta", weight=3]; 241[label="vyw38 == GT",fontsize=16,color="burlywood",shape="triangle"];3041[label="vyw38/LT",fontsize=10,color="white",style="solid",shape="box"];241 -> 3041[label="",style="solid", color="burlywood", weight=9]; 3041 -> 282[label="",style="solid", color="burlywood", weight=3]; 3042[label="vyw38/EQ",fontsize=10,color="white",style="solid",shape="box"];241 -> 3042[label="",style="solid", color="burlywood", weight=9]; 3042 -> 283[label="",style="solid", color="burlywood", weight=3]; 3043[label="vyw38/GT",fontsize=10,color="white",style="solid",shape="box"];241 -> 3043[label="",style="solid", color="burlywood", weight=9]; 3043 -> 284[label="",style="solid", color="burlywood", weight=3]; 243 -> 186[label="",style="dashed", color="red", weight=0]; 243[label="compare vyw18 vyw13",fontsize=16,color="magenta"];243 -> 285[label="",style="dashed", color="magenta", weight=3]; 243 -> 286[label="",style="dashed", color="magenta", weight=3]; 244 -> 187[label="",style="dashed", color="red", weight=0]; 244[label="compare vyw18 vyw13",fontsize=16,color="magenta"];244 -> 287[label="",style="dashed", color="magenta", weight=3]; 244 -> 288[label="",style="dashed", color="magenta", weight=3]; 245 -> 188[label="",style="dashed", color="red", weight=0]; 245[label="compare vyw18 vyw13",fontsize=16,color="magenta"];245 -> 289[label="",style="dashed", color="magenta", weight=3]; 245 -> 290[label="",style="dashed", color="magenta", weight=3]; 246 -> 189[label="",style="dashed", color="red", weight=0]; 246[label="compare vyw18 vyw13",fontsize=16,color="magenta"];246 -> 291[label="",style="dashed", color="magenta", weight=3]; 246 -> 292[label="",style="dashed", color="magenta", weight=3]; 247 -> 190[label="",style="dashed", color="red", weight=0]; 247[label="compare vyw18 vyw13",fontsize=16,color="magenta"];247 -> 293[label="",style="dashed", color="magenta", weight=3]; 247 -> 294[label="",style="dashed", color="magenta", weight=3]; 248 -> 191[label="",style="dashed", color="red", weight=0]; 248[label="compare vyw18 vyw13",fontsize=16,color="magenta"];248 -> 295[label="",style="dashed", color="magenta", weight=3]; 248 -> 296[label="",style="dashed", color="magenta", weight=3]; 249 -> 192[label="",style="dashed", color="red", weight=0]; 249[label="compare vyw18 vyw13",fontsize=16,color="magenta"];249 -> 297[label="",style="dashed", color="magenta", weight=3]; 249 -> 298[label="",style="dashed", color="magenta", weight=3]; 250 -> 193[label="",style="dashed", color="red", weight=0]; 250[label="compare vyw18 vyw13",fontsize=16,color="magenta"];250 -> 299[label="",style="dashed", color="magenta", weight=3]; 250 -> 300[label="",style="dashed", color="magenta", weight=3]; 251 -> 194[label="",style="dashed", color="red", weight=0]; 251[label="compare vyw18 vyw13",fontsize=16,color="magenta"];251 -> 301[label="",style="dashed", color="magenta", weight=3]; 251 -> 302[label="",style="dashed", color="magenta", weight=3]; 252 -> 195[label="",style="dashed", color="red", weight=0]; 252[label="compare vyw18 vyw13",fontsize=16,color="magenta"];252 -> 303[label="",style="dashed", color="magenta", weight=3]; 252 -> 304[label="",style="dashed", color="magenta", weight=3]; 253 -> 196[label="",style="dashed", color="red", weight=0]; 253[label="compare vyw18 vyw13",fontsize=16,color="magenta"];253 -> 305[label="",style="dashed", color="magenta", weight=3]; 253 -> 306[label="",style="dashed", color="magenta", weight=3]; 254 -> 197[label="",style="dashed", color="red", weight=0]; 254[label="compare vyw18 vyw13",fontsize=16,color="magenta"];254 -> 307[label="",style="dashed", color="magenta", weight=3]; 254 -> 308[label="",style="dashed", color="magenta", weight=3]; 255 -> 198[label="",style="dashed", color="red", weight=0]; 255[label="compare vyw18 vyw13",fontsize=16,color="magenta"];255 -> 309[label="",style="dashed", color="magenta", weight=3]; 255 -> 310[label="",style="dashed", color="magenta", weight=3]; 277[label="FiniteMap.elemFM0 (FiniteMap.lookupFM0 vyw28 vyw29 vyw30 vyw31 vyw32 vyw33 True)",fontsize=16,color="black",shape="box"];277 -> 338[label="",style="solid", color="black", weight=3]; 278[label="vyw32",fontsize=16,color="green",shape="box"];279[label="vyw33",fontsize=16,color="green",shape="box"];342[label="compare2 (vyw30,vyw31,vyw32) (vyw400,vyw401,vyw402) ((vyw30,vyw31,vyw32) == (vyw400,vyw401,vyw402))",fontsize=16,color="black",shape="box"];342 -> 384[label="",style="solid", color="black", weight=3]; 343[label="primCmpDouble (Double vyw30 (Pos vyw310)) (Double vyw400 vyw401)",fontsize=16,color="burlywood",shape="box"];3044[label="vyw401/Pos vyw4010",fontsize=10,color="white",style="solid",shape="box"];343 -> 3044[label="",style="solid", color="burlywood", weight=9]; 3044 -> 385[label="",style="solid", color="burlywood", weight=3]; 3045[label="vyw401/Neg vyw4010",fontsize=10,color="white",style="solid",shape="box"];343 -> 3045[label="",style="solid", color="burlywood", weight=9]; 3045 -> 386[label="",style="solid", color="burlywood", weight=3]; 344[label="primCmpDouble (Double vyw30 (Neg vyw310)) (Double vyw400 vyw401)",fontsize=16,color="burlywood",shape="box"];3046[label="vyw401/Pos vyw4010",fontsize=10,color="white",style="solid",shape="box"];344 -> 3046[label="",style="solid", color="burlywood", weight=9]; 3046 -> 387[label="",style="solid", color="burlywood", weight=3]; 3047[label="vyw401/Neg vyw4010",fontsize=10,color="white",style="solid",shape="box"];344 -> 3047[label="",style="solid", color="burlywood", weight=9]; 3047 -> 388[label="",style="solid", color="burlywood", weight=3]; 345[label="compare2 (Left vyw30) (Left vyw400) (Left vyw30 == Left vyw400)",fontsize=16,color="black",shape="box"];345 -> 389[label="",style="solid", color="black", weight=3]; 346[label="compare2 (Left vyw30) (Right vyw400) (Left vyw30 == Right vyw400)",fontsize=16,color="black",shape="box"];346 -> 390[label="",style="solid", color="black", weight=3]; 347[label="compare2 (Right vyw30) (Left vyw400) (Right vyw30 == Left vyw400)",fontsize=16,color="black",shape="box"];347 -> 391[label="",style="solid", color="black", weight=3]; 348[label="compare2 (Right vyw30) (Right vyw400) (Right vyw30 == Right vyw400)",fontsize=16,color="black",shape="box"];348 -> 392[label="",style="solid", color="black", weight=3]; 350 -> 188[label="",style="dashed", color="red", weight=0]; 350[label="compare vyw31 vyw401",fontsize=16,color="magenta"];350 -> 393[label="",style="dashed", color="magenta", weight=3]; 350 -> 394[label="",style="dashed", color="magenta", weight=3]; 349[label="primCompAux vyw30 vyw400 vyw39",fontsize=16,color="black",shape="triangle"];349 -> 395[label="",style="solid", color="black", weight=3]; 351[label="compare2 False False (False == False)",fontsize=16,color="black",shape="box"];351 -> 397[label="",style="solid", color="black", weight=3]; 352[label="compare2 False True (False == True)",fontsize=16,color="black",shape="box"];352 -> 398[label="",style="solid", color="black", weight=3]; 353[label="compare2 True False (True == False)",fontsize=16,color="black",shape="box"];353 -> 399[label="",style="solid", color="black", weight=3]; 354[label="compare2 True True (True == True)",fontsize=16,color="black",shape="box"];354 -> 400[label="",style="solid", color="black", weight=3]; 355[label="compare2 (vyw30,vyw31) (vyw400,vyw401) ((vyw30,vyw31) == (vyw400,vyw401))",fontsize=16,color="black",shape="box"];355 -> 401[label="",style="solid", color="black", weight=3]; 356[label="compare2 LT LT (LT == LT)",fontsize=16,color="black",shape="box"];356 -> 402[label="",style="solid", color="black", weight=3]; 357[label="compare2 LT EQ (LT == EQ)",fontsize=16,color="black",shape="box"];357 -> 403[label="",style="solid", color="black", weight=3]; 358[label="compare2 LT GT (LT == GT)",fontsize=16,color="black",shape="box"];358 -> 404[label="",style="solid", color="black", weight=3]; 359[label="compare2 EQ LT (EQ == LT)",fontsize=16,color="black",shape="box"];359 -> 405[label="",style="solid", color="black", weight=3]; 360[label="compare2 EQ EQ (EQ == EQ)",fontsize=16,color="black",shape="box"];360 -> 406[label="",style="solid", color="black", weight=3]; 361[label="compare2 EQ GT (EQ == GT)",fontsize=16,color="black",shape="box"];361 -> 407[label="",style="solid", color="black", weight=3]; 362[label="compare2 GT LT (GT == LT)",fontsize=16,color="black",shape="box"];362 -> 408[label="",style="solid", color="black", weight=3]; 363[label="compare2 GT EQ (GT == EQ)",fontsize=16,color="black",shape="box"];363 -> 409[label="",style="solid", color="black", weight=3]; 364[label="compare2 GT GT (GT == GT)",fontsize=16,color="black",shape="box"];364 -> 410[label="",style="solid", color="black", weight=3]; 365[label="compare2 Nothing Nothing (Nothing == Nothing)",fontsize=16,color="black",shape="box"];365 -> 411[label="",style="solid", color="black", weight=3]; 366[label="compare2 Nothing (Just vyw400) (Nothing == Just vyw400)",fontsize=16,color="black",shape="box"];366 -> 412[label="",style="solid", color="black", weight=3]; 367[label="compare2 (Just vyw30) Nothing (Just vyw30 == Nothing)",fontsize=16,color="black",shape="box"];367 -> 413[label="",style="solid", color="black", weight=3]; 368[label="compare2 (Just vyw30) (Just vyw400) (Just vyw30 == Just vyw400)",fontsize=16,color="black",shape="box"];368 -> 414[label="",style="solid", color="black", weight=3]; 369 -> 196[label="",style="dashed", color="red", weight=0]; 369[label="compare (vyw30 * vyw401) (vyw400 * vyw31)",fontsize=16,color="magenta"];369 -> 415[label="",style="dashed", color="magenta", weight=3]; 369 -> 416[label="",style="dashed", color="magenta", weight=3]; 370 -> 197[label="",style="dashed", color="red", weight=0]; 370[label="compare (vyw30 * vyw401) (vyw400 * vyw31)",fontsize=16,color="magenta"];370 -> 417[label="",style="dashed", color="magenta", weight=3]; 370 -> 418[label="",style="dashed", color="magenta", weight=3]; 371[label="primCmpFloat (Float vyw30 (Pos vyw310)) (Float vyw400 vyw401)",fontsize=16,color="burlywood",shape="box"];3048[label="vyw401/Pos vyw4010",fontsize=10,color="white",style="solid",shape="box"];371 -> 3048[label="",style="solid", color="burlywood", weight=9]; 3048 -> 419[label="",style="solid", color="burlywood", weight=3]; 3049[label="vyw401/Neg vyw4010",fontsize=10,color="white",style="solid",shape="box"];371 -> 3049[label="",style="solid", color="burlywood", weight=9]; 3049 -> 420[label="",style="solid", color="burlywood", weight=3]; 372[label="primCmpFloat (Float vyw30 (Neg vyw310)) (Float vyw400 vyw401)",fontsize=16,color="burlywood",shape="box"];3050[label="vyw401/Pos vyw4010",fontsize=10,color="white",style="solid",shape="box"];372 -> 3050[label="",style="solid", color="burlywood", weight=9]; 3050 -> 421[label="",style="solid", color="burlywood", weight=3]; 3051[label="vyw401/Neg vyw4010",fontsize=10,color="white",style="solid",shape="box"];372 -> 3051[label="",style="solid", color="burlywood", weight=9]; 3051 -> 422[label="",style="solid", color="burlywood", weight=3]; 373[label="primCmpNat vyw30 vyw400",fontsize=16,color="burlywood",shape="triangle"];3052[label="vyw30/Succ vyw300",fontsize=10,color="white",style="solid",shape="box"];373 -> 3052[label="",style="solid", color="burlywood", weight=9]; 3052 -> 423[label="",style="solid", color="burlywood", weight=3]; 3053[label="vyw30/Zero",fontsize=10,color="white",style="solid",shape="box"];373 -> 3053[label="",style="solid", color="burlywood", weight=9]; 3053 -> 424[label="",style="solid", color="burlywood", weight=3]; 374[label="vyw400",fontsize=16,color="green",shape="box"];375[label="vyw30",fontsize=16,color="green",shape="box"];376[label="primCmpInt (Pos (Succ vyw300)) (Pos vyw400)",fontsize=16,color="black",shape="box"];376 -> 425[label="",style="solid", color="black", weight=3]; 377[label="primCmpInt (Pos (Succ vyw300)) (Neg vyw400)",fontsize=16,color="black",shape="box"];377 -> 426[label="",style="solid", color="black", weight=3]; 378[label="primCmpInt (Pos Zero) (Pos vyw400)",fontsize=16,color="burlywood",shape="box"];3054[label="vyw400/Succ vyw4000",fontsize=10,color="white",style="solid",shape="box"];378 -> 3054[label="",style="solid", color="burlywood", weight=9]; 3054 -> 427[label="",style="solid", color="burlywood", weight=3]; 3055[label="vyw400/Zero",fontsize=10,color="white",style="solid",shape="box"];378 -> 3055[label="",style="solid", color="burlywood", weight=9]; 3055 -> 428[label="",style="solid", color="burlywood", weight=3]; 379[label="primCmpInt (Pos Zero) (Neg vyw400)",fontsize=16,color="burlywood",shape="box"];3056[label="vyw400/Succ vyw4000",fontsize=10,color="white",style="solid",shape="box"];379 -> 3056[label="",style="solid", color="burlywood", weight=9]; 3056 -> 429[label="",style="solid", color="burlywood", weight=3]; 3057[label="vyw400/Zero",fontsize=10,color="white",style="solid",shape="box"];379 -> 3057[label="",style="solid", color="burlywood", weight=9]; 3057 -> 430[label="",style="solid", color="burlywood", weight=3]; 380[label="primCmpInt (Neg (Succ vyw300)) (Pos vyw400)",fontsize=16,color="black",shape="box"];380 -> 431[label="",style="solid", color="black", weight=3]; 381[label="primCmpInt (Neg (Succ vyw300)) (Neg vyw400)",fontsize=16,color="black",shape="box"];381 -> 432[label="",style="solid", color="black", weight=3]; 382[label="primCmpInt (Neg Zero) (Pos vyw400)",fontsize=16,color="burlywood",shape="box"];3058[label="vyw400/Succ vyw4000",fontsize=10,color="white",style="solid",shape="box"];382 -> 3058[label="",style="solid", color="burlywood", weight=9]; 3058 -> 433[label="",style="solid", color="burlywood", weight=3]; 3059[label="vyw400/Zero",fontsize=10,color="white",style="solid",shape="box"];382 -> 3059[label="",style="solid", color="burlywood", weight=9]; 3059 -> 434[label="",style="solid", color="burlywood", weight=3]; 383[label="primCmpInt (Neg Zero) (Neg vyw400)",fontsize=16,color="burlywood",shape="box"];3060[label="vyw400/Succ vyw4000",fontsize=10,color="white",style="solid",shape="box"];383 -> 3060[label="",style="solid", color="burlywood", weight=9]; 3060 -> 435[label="",style="solid", color="burlywood", weight=3]; 3061[label="vyw400/Zero",fontsize=10,color="white",style="solid",shape="box"];383 -> 3061[label="",style="solid", color="burlywood", weight=9]; 3061 -> 436[label="",style="solid", color="burlywood", weight=3]; 280[label="vyw13",fontsize=16,color="green",shape="box"];281[label="vyw18",fontsize=16,color="green",shape="box"];282[label="LT == GT",fontsize=16,color="black",shape="box"];282 -> 339[label="",style="solid", color="black", weight=3]; 283[label="EQ == GT",fontsize=16,color="black",shape="box"];283 -> 340[label="",style="solid", color="black", weight=3]; 284[label="GT == GT",fontsize=16,color="black",shape="box"];284 -> 341[label="",style="solid", color="black", weight=3]; 285[label="vyw13",fontsize=16,color="green",shape="box"];286[label="vyw18",fontsize=16,color="green",shape="box"];287[label="vyw13",fontsize=16,color="green",shape="box"];288[label="vyw18",fontsize=16,color="green",shape="box"];289[label="vyw13",fontsize=16,color="green",shape="box"];290[label="vyw18",fontsize=16,color="green",shape="box"];291[label="vyw13",fontsize=16,color="green",shape="box"];292[label="vyw18",fontsize=16,color="green",shape="box"];293[label="vyw13",fontsize=16,color="green",shape="box"];294[label="vyw18",fontsize=16,color="green",shape="box"];295[label="vyw13",fontsize=16,color="green",shape="box"];296[label="vyw18",fontsize=16,color="green",shape="box"];297[label="vyw13",fontsize=16,color="green",shape="box"];298[label="vyw18",fontsize=16,color="green",shape="box"];299[label="vyw13",fontsize=16,color="green",shape="box"];300[label="vyw18",fontsize=16,color="green",shape="box"];301[label="vyw13",fontsize=16,color="green",shape="box"];302[label="vyw18",fontsize=16,color="green",shape="box"];303[label="vyw13",fontsize=16,color="green",shape="box"];304[label="vyw18",fontsize=16,color="green",shape="box"];305[label="vyw13",fontsize=16,color="green",shape="box"];306[label="vyw18",fontsize=16,color="green",shape="box"];307[label="vyw13",fontsize=16,color="green",shape="box"];308[label="vyw18",fontsize=16,color="green",shape="box"];309[label="vyw13",fontsize=16,color="green",shape="box"];310[label="vyw18",fontsize=16,color="green",shape="box"];338[label="FiniteMap.elemFM0 (Just vyw29)",fontsize=16,color="black",shape="box"];338 -> 396[label="",style="solid", color="black", weight=3]; 384 -> 1028[label="",style="dashed", color="red", weight=0]; 384[label="compare2 (vyw30,vyw31,vyw32) (vyw400,vyw401,vyw402) (vyw30 == vyw400 && vyw31 == vyw401 && vyw32 == vyw402)",fontsize=16,color="magenta"];384 -> 1029[label="",style="dashed", color="magenta", weight=3]; 384 -> 1030[label="",style="dashed", color="magenta", weight=3]; 384 -> 1031[label="",style="dashed", color="magenta", weight=3]; 384 -> 1032[label="",style="dashed", color="magenta", weight=3]; 384 -> 1033[label="",style="dashed", color="magenta", weight=3]; 384 -> 1034[label="",style="dashed", color="magenta", weight=3]; 384 -> 1035[label="",style="dashed", color="magenta", weight=3]; 385[label="primCmpDouble (Double vyw30 (Pos vyw310)) (Double vyw400 (Pos vyw4010))",fontsize=16,color="black",shape="box"];385 -> 445[label="",style="solid", color="black", weight=3]; 386[label="primCmpDouble (Double vyw30 (Pos vyw310)) (Double vyw400 (Neg vyw4010))",fontsize=16,color="black",shape="box"];386 -> 446[label="",style="solid", color="black", weight=3]; 387[label="primCmpDouble (Double vyw30 (Neg vyw310)) (Double vyw400 (Pos vyw4010))",fontsize=16,color="black",shape="box"];387 -> 447[label="",style="solid", color="black", weight=3]; 388[label="primCmpDouble (Double vyw30 (Neg vyw310)) (Double vyw400 (Neg vyw4010))",fontsize=16,color="black",shape="box"];388 -> 448[label="",style="solid", color="black", weight=3]; 389 -> 449[label="",style="dashed", color="red", weight=0]; 389[label="compare2 (Left vyw30) (Left vyw400) (vyw30 == vyw400)",fontsize=16,color="magenta"];389 -> 450[label="",style="dashed", color="magenta", weight=3]; 389 -> 451[label="",style="dashed", color="magenta", weight=3]; 389 -> 452[label="",style="dashed", color="magenta", weight=3]; 390[label="compare2 (Left vyw30) (Right vyw400) False",fontsize=16,color="black",shape="box"];390 -> 453[label="",style="solid", color="black", weight=3]; 391[label="compare2 (Right vyw30) (Left vyw400) False",fontsize=16,color="black",shape="box"];391 -> 454[label="",style="solid", color="black", weight=3]; 392 -> 455[label="",style="dashed", color="red", weight=0]; 392[label="compare2 (Right vyw30) (Right vyw400) (vyw30 == vyw400)",fontsize=16,color="magenta"];392 -> 456[label="",style="dashed", color="magenta", weight=3]; 392 -> 457[label="",style="dashed", color="magenta", weight=3]; 392 -> 458[label="",style="dashed", color="magenta", weight=3]; 393[label="vyw401",fontsize=16,color="green",shape="box"];394[label="vyw31",fontsize=16,color="green",shape="box"];395 -> 459[label="",style="dashed", color="red", weight=0]; 395[label="primCompAux0 vyw39 (compare vyw30 vyw400)",fontsize=16,color="magenta"];395 -> 460[label="",style="dashed", color="magenta", weight=3]; 395 -> 461[label="",style="dashed", color="magenta", weight=3]; 397[label="compare2 False False True",fontsize=16,color="black",shape="box"];397 -> 462[label="",style="solid", color="black", weight=3]; 398[label="compare2 False True False",fontsize=16,color="black",shape="box"];398 -> 463[label="",style="solid", color="black", weight=3]; 399[label="compare2 True False False",fontsize=16,color="black",shape="box"];399 -> 464[label="",style="solid", color="black", weight=3]; 400[label="compare2 True True True",fontsize=16,color="black",shape="box"];400 -> 465[label="",style="solid", color="black", weight=3]; 401 -> 923[label="",style="dashed", color="red", weight=0]; 401[label="compare2 (vyw30,vyw31) (vyw400,vyw401) (vyw30 == vyw400 && vyw31 == vyw401)",fontsize=16,color="magenta"];401 -> 924[label="",style="dashed", color="magenta", weight=3]; 401 -> 925[label="",style="dashed", color="magenta", weight=3]; 401 -> 926[label="",style="dashed", color="magenta", weight=3]; 401 -> 927[label="",style="dashed", color="magenta", weight=3]; 401 -> 928[label="",style="dashed", color="magenta", weight=3]; 402[label="compare2 LT LT True",fontsize=16,color="black",shape="box"];402 -> 472[label="",style="solid", color="black", weight=3]; 403[label="compare2 LT EQ False",fontsize=16,color="black",shape="box"];403 -> 473[label="",style="solid", color="black", weight=3]; 404[label="compare2 LT GT False",fontsize=16,color="black",shape="box"];404 -> 474[label="",style="solid", color="black", weight=3]; 405[label="compare2 EQ LT False",fontsize=16,color="black",shape="box"];405 -> 475[label="",style="solid", color="black", weight=3]; 406[label="compare2 EQ EQ True",fontsize=16,color="black",shape="box"];406 -> 476[label="",style="solid", color="black", weight=3]; 407[label="compare2 EQ GT False",fontsize=16,color="black",shape="box"];407 -> 477[label="",style="solid", color="black", weight=3]; 408[label="compare2 GT LT False",fontsize=16,color="black",shape="box"];408 -> 478[label="",style="solid", color="black", weight=3]; 409[label="compare2 GT EQ False",fontsize=16,color="black",shape="box"];409 -> 479[label="",style="solid", color="black", weight=3]; 410[label="compare2 GT GT True",fontsize=16,color="black",shape="box"];410 -> 480[label="",style="solid", color="black", weight=3]; 411[label="compare2 Nothing Nothing True",fontsize=16,color="black",shape="box"];411 -> 481[label="",style="solid", color="black", weight=3]; 412[label="compare2 Nothing (Just vyw400) False",fontsize=16,color="black",shape="box"];412 -> 482[label="",style="solid", color="black", weight=3]; 413[label="compare2 (Just vyw30) Nothing False",fontsize=16,color="black",shape="box"];413 -> 483[label="",style="solid", color="black", weight=3]; 414 -> 484[label="",style="dashed", color="red", weight=0]; 414[label="compare2 (Just vyw30) (Just vyw400) (vyw30 == vyw400)",fontsize=16,color="magenta"];414 -> 485[label="",style="dashed", color="magenta", weight=3]; 414 -> 486[label="",style="dashed", color="magenta", weight=3]; 414 -> 487[label="",style="dashed", color="magenta", weight=3]; 415[label="vyw400 * vyw31",fontsize=16,color="burlywood",shape="triangle"];3062[label="vyw400/Integer vyw4000",fontsize=10,color="white",style="solid",shape="box"];415 -> 3062[label="",style="solid", color="burlywood", weight=9]; 3062 -> 488[label="",style="solid", color="burlywood", weight=3]; 416 -> 415[label="",style="dashed", color="red", weight=0]; 416[label="vyw30 * vyw401",fontsize=16,color="magenta"];416 -> 489[label="",style="dashed", color="magenta", weight=3]; 416 -> 490[label="",style="dashed", color="magenta", weight=3]; 417[label="vyw400 * vyw31",fontsize=16,color="black",shape="triangle"];417 -> 491[label="",style="solid", color="black", weight=3]; 418 -> 417[label="",style="dashed", color="red", weight=0]; 418[label="vyw30 * vyw401",fontsize=16,color="magenta"];418 -> 492[label="",style="dashed", color="magenta", weight=3]; 418 -> 493[label="",style="dashed", color="magenta", weight=3]; 419[label="primCmpFloat (Float vyw30 (Pos vyw310)) (Float vyw400 (Pos vyw4010))",fontsize=16,color="black",shape="box"];419 -> 494[label="",style="solid", color="black", weight=3]; 420[label="primCmpFloat (Float vyw30 (Pos vyw310)) (Float vyw400 (Neg vyw4010))",fontsize=16,color="black",shape="box"];420 -> 495[label="",style="solid", color="black", weight=3]; 421[label="primCmpFloat (Float vyw30 (Neg vyw310)) (Float vyw400 (Pos vyw4010))",fontsize=16,color="black",shape="box"];421 -> 496[label="",style="solid", color="black", weight=3]; 422[label="primCmpFloat (Float vyw30 (Neg vyw310)) (Float vyw400 (Neg vyw4010))",fontsize=16,color="black",shape="box"];422 -> 497[label="",style="solid", color="black", weight=3]; 423[label="primCmpNat (Succ vyw300) vyw400",fontsize=16,color="burlywood",shape="box"];3063[label="vyw400/Succ vyw4000",fontsize=10,color="white",style="solid",shape="box"];423 -> 3063[label="",style="solid", color="burlywood", weight=9]; 3063 -> 498[label="",style="solid", color="burlywood", weight=3]; 3064[label="vyw400/Zero",fontsize=10,color="white",style="solid",shape="box"];423 -> 3064[label="",style="solid", color="burlywood", weight=9]; 3064 -> 499[label="",style="solid", color="burlywood", weight=3]; 424[label="primCmpNat Zero vyw400",fontsize=16,color="burlywood",shape="box"];3065[label="vyw400/Succ vyw4000",fontsize=10,color="white",style="solid",shape="box"];424 -> 3065[label="",style="solid", color="burlywood", weight=9]; 3065 -> 500[label="",style="solid", color="burlywood", weight=3]; 3066[label="vyw400/Zero",fontsize=10,color="white",style="solid",shape="box"];424 -> 3066[label="",style="solid", color="burlywood", weight=9]; 3066 -> 501[label="",style="solid", color="burlywood", weight=3]; 425 -> 373[label="",style="dashed", color="red", weight=0]; 425[label="primCmpNat (Succ vyw300) vyw400",fontsize=16,color="magenta"];425 -> 502[label="",style="dashed", color="magenta", weight=3]; 425 -> 503[label="",style="dashed", color="magenta", weight=3]; 426[label="GT",fontsize=16,color="green",shape="box"];427[label="primCmpInt (Pos Zero) (Pos (Succ vyw4000))",fontsize=16,color="black",shape="box"];427 -> 504[label="",style="solid", color="black", weight=3]; 428[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];428 -> 505[label="",style="solid", color="black", weight=3]; 429[label="primCmpInt (Pos Zero) (Neg (Succ vyw4000))",fontsize=16,color="black",shape="box"];429 -> 506[label="",style="solid", color="black", weight=3]; 430[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];430 -> 507[label="",style="solid", color="black", weight=3]; 431[label="LT",fontsize=16,color="green",shape="box"];432 -> 373[label="",style="dashed", color="red", weight=0]; 432[label="primCmpNat vyw400 (Succ vyw300)",fontsize=16,color="magenta"];432 -> 508[label="",style="dashed", color="magenta", weight=3]; 432 -> 509[label="",style="dashed", color="magenta", weight=3]; 433[label="primCmpInt (Neg Zero) (Pos (Succ vyw4000))",fontsize=16,color="black",shape="box"];433 -> 510[label="",style="solid", color="black", weight=3]; 434[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];434 -> 511[label="",style="solid", color="black", weight=3]; 435[label="primCmpInt (Neg Zero) (Neg (Succ vyw4000))",fontsize=16,color="black",shape="box"];435 -> 512[label="",style="solid", color="black", weight=3]; 436[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];436 -> 513[label="",style="solid", color="black", weight=3]; 339[label="False",fontsize=16,color="green",shape="box"];340[label="False",fontsize=16,color="green",shape="box"];341[label="True",fontsize=16,color="green",shape="box"];396[label="True",fontsize=16,color="green",shape="box"];1029[label="vyw32",fontsize=16,color="green",shape="box"];1030 -> 1080[label="",style="dashed", color="red", weight=0]; 1030[label="vyw30 == vyw400 && vyw31 == vyw401 && vyw32 == vyw402",fontsize=16,color="magenta"];1030 -> 1081[label="",style="dashed", color="magenta", weight=3]; 1030 -> 1082[label="",style="dashed", color="magenta", weight=3]; 1031[label="vyw31",fontsize=16,color="green",shape="box"];1032[label="vyw400",fontsize=16,color="green",shape="box"];1033[label="vyw402",fontsize=16,color="green",shape="box"];1034[label="vyw30",fontsize=16,color="green",shape="box"];1035[label="vyw401",fontsize=16,color="green",shape="box"];1028[label="compare2 (vyw100,vyw101,vyw102) (vyw103,vyw104,vyw105) vyw125",fontsize=16,color="burlywood",shape="triangle"];3067[label="vyw125/False",fontsize=10,color="white",style="solid",shape="box"];1028 -> 3067[label="",style="solid", color="burlywood", weight=9]; 3067 -> 1075[label="",style="solid", color="burlywood", weight=3]; 3068[label="vyw125/True",fontsize=10,color="white",style="solid",shape="box"];1028 -> 3068[label="",style="solid", color="burlywood", weight=9]; 3068 -> 1076[label="",style="solid", color="burlywood", weight=3]; 445 -> 197[label="",style="dashed", color="red", weight=0]; 445[label="compare (vyw30 * Pos vyw4010) (Pos vyw310 * vyw400)",fontsize=16,color="magenta"];445 -> 530[label="",style="dashed", color="magenta", weight=3]; 445 -> 531[label="",style="dashed", color="magenta", weight=3]; 446 -> 197[label="",style="dashed", color="red", weight=0]; 446[label="compare (vyw30 * Pos vyw4010) (Neg vyw310 * vyw400)",fontsize=16,color="magenta"];446 -> 532[label="",style="dashed", color="magenta", weight=3]; 446 -> 533[label="",style="dashed", color="magenta", weight=3]; 447 -> 197[label="",style="dashed", color="red", weight=0]; 447[label="compare (vyw30 * Neg vyw4010) (Pos vyw310 * vyw400)",fontsize=16,color="magenta"];447 -> 534[label="",style="dashed", color="magenta", weight=3]; 447 -> 535[label="",style="dashed", color="magenta", weight=3]; 448 -> 197[label="",style="dashed", color="red", weight=0]; 448[label="compare (vyw30 * Neg vyw4010) (Neg vyw310 * vyw400)",fontsize=16,color="magenta"];448 -> 536[label="",style="dashed", color="magenta", weight=3]; 448 -> 537[label="",style="dashed", color="magenta", weight=3]; 450[label="vyw30 == vyw400",fontsize=16,color="blue",shape="box"];3069[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];450 -> 3069[label="",style="solid", color="blue", weight=9]; 3069 -> 538[label="",style="solid", color="blue", weight=3]; 3070[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];450 -> 3070[label="",style="solid", color="blue", weight=9]; 3070 -> 539[label="",style="solid", color="blue", weight=3]; 3071[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];450 -> 3071[label="",style="solid", color="blue", weight=9]; 3071 -> 540[label="",style="solid", color="blue", weight=3]; 3072[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];450 -> 3072[label="",style="solid", color="blue", weight=9]; 3072 -> 541[label="",style="solid", color="blue", weight=3]; 3073[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];450 -> 3073[label="",style="solid", color="blue", weight=9]; 3073 -> 542[label="",style="solid", color="blue", weight=3]; 3074[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];450 -> 3074[label="",style="solid", color="blue", weight=9]; 3074 -> 543[label="",style="solid", color="blue", weight=3]; 3075[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];450 -> 3075[label="",style="solid", color="blue", weight=9]; 3075 -> 544[label="",style="solid", color="blue", weight=3]; 3076[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];450 -> 3076[label="",style="solid", color="blue", weight=9]; 3076 -> 545[label="",style="solid", color="blue", weight=3]; 3077[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];450 -> 3077[label="",style="solid", color="blue", weight=9]; 3077 -> 546[label="",style="solid", color="blue", weight=3]; 3078[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];450 -> 3078[label="",style="solid", color="blue", weight=9]; 3078 -> 547[label="",style="solid", color="blue", weight=3]; 3079[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];450 -> 3079[label="",style="solid", color="blue", weight=9]; 3079 -> 548[label="",style="solid", color="blue", weight=3]; 3080[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];450 -> 3080[label="",style="solid", color="blue", weight=9]; 3080 -> 549[label="",style="solid", color="blue", weight=3]; 3081[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];450 -> 3081[label="",style="solid", color="blue", weight=9]; 3081 -> 550[label="",style="solid", color="blue", weight=3]; 3082[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];450 -> 3082[label="",style="solid", color="blue", weight=9]; 3082 -> 551[label="",style="solid", color="blue", weight=3]; 451[label="vyw400",fontsize=16,color="green",shape="box"];452[label="vyw30",fontsize=16,color="green",shape="box"];449[label="compare2 (Left vyw59) (Left vyw60) vyw61",fontsize=16,color="burlywood",shape="triangle"];3083[label="vyw61/False",fontsize=10,color="white",style="solid",shape="box"];449 -> 3083[label="",style="solid", color="burlywood", weight=9]; 3083 -> 552[label="",style="solid", color="burlywood", weight=3]; 3084[label="vyw61/True",fontsize=10,color="white",style="solid",shape="box"];449 -> 3084[label="",style="solid", color="burlywood", weight=9]; 3084 -> 553[label="",style="solid", color="burlywood", weight=3]; 453[label="compare1 (Left vyw30) (Right vyw400) (Left vyw30 <= Right vyw400)",fontsize=16,color="black",shape="box"];453 -> 554[label="",style="solid", color="black", weight=3]; 454[label="compare1 (Right vyw30) (Left vyw400) (Right vyw30 <= Left vyw400)",fontsize=16,color="black",shape="box"];454 -> 555[label="",style="solid", color="black", weight=3]; 456[label="vyw400",fontsize=16,color="green",shape="box"];457[label="vyw30",fontsize=16,color="green",shape="box"];458[label="vyw30 == vyw400",fontsize=16,color="blue",shape="box"];3085[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];458 -> 3085[label="",style="solid", color="blue", weight=9]; 3085 -> 556[label="",style="solid", color="blue", weight=3]; 3086[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];458 -> 3086[label="",style="solid", color="blue", weight=9]; 3086 -> 557[label="",style="solid", color="blue", weight=3]; 3087[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];458 -> 3087[label="",style="solid", color="blue", weight=9]; 3087 -> 558[label="",style="solid", color="blue", weight=3]; 3088[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];458 -> 3088[label="",style="solid", color="blue", weight=9]; 3088 -> 559[label="",style="solid", color="blue", weight=3]; 3089[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];458 -> 3089[label="",style="solid", color="blue", weight=9]; 3089 -> 560[label="",style="solid", color="blue", weight=3]; 3090[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];458 -> 3090[label="",style="solid", color="blue", weight=9]; 3090 -> 561[label="",style="solid", color="blue", weight=3]; 3091[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];458 -> 3091[label="",style="solid", color="blue", weight=9]; 3091 -> 562[label="",style="solid", color="blue", weight=3]; 3092[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];458 -> 3092[label="",style="solid", color="blue", weight=9]; 3092 -> 563[label="",style="solid", color="blue", weight=3]; 3093[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];458 -> 3093[label="",style="solid", color="blue", weight=9]; 3093 -> 564[label="",style="solid", color="blue", weight=3]; 3094[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];458 -> 3094[label="",style="solid", color="blue", weight=9]; 3094 -> 565[label="",style="solid", color="blue", weight=3]; 3095[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];458 -> 3095[label="",style="solid", color="blue", weight=9]; 3095 -> 566[label="",style="solid", color="blue", weight=3]; 3096[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];458 -> 3096[label="",style="solid", color="blue", weight=9]; 3096 -> 567[label="",style="solid", color="blue", weight=3]; 3097[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];458 -> 3097[label="",style="solid", color="blue", weight=9]; 3097 -> 568[label="",style="solid", color="blue", weight=3]; 3098[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];458 -> 3098[label="",style="solid", color="blue", weight=9]; 3098 -> 569[label="",style="solid", color="blue", weight=3]; 455[label="compare2 (Right vyw66) (Right vyw67) vyw68",fontsize=16,color="burlywood",shape="triangle"];3099[label="vyw68/False",fontsize=10,color="white",style="solid",shape="box"];455 -> 3099[label="",style="solid", color="burlywood", weight=9]; 3099 -> 570[label="",style="solid", color="burlywood", weight=3]; 3100[label="vyw68/True",fontsize=10,color="white",style="solid",shape="box"];455 -> 3100[label="",style="solid", color="burlywood", weight=9]; 3100 -> 571[label="",style="solid", color="burlywood", weight=3]; 460[label="vyw39",fontsize=16,color="green",shape="box"];461[label="compare vyw30 vyw400",fontsize=16,color="blue",shape="box"];3101[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];461 -> 3101[label="",style="solid", color="blue", weight=9]; 3101 -> 572[label="",style="solid", color="blue", weight=3]; 3102[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];461 -> 3102[label="",style="solid", color="blue", weight=9]; 3102 -> 573[label="",style="solid", color="blue", weight=3]; 3103[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];461 -> 3103[label="",style="solid", color="blue", weight=9]; 3103 -> 574[label="",style="solid", color="blue", weight=3]; 3104[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];461 -> 3104[label="",style="solid", color="blue", weight=9]; 3104 -> 575[label="",style="solid", color="blue", weight=3]; 3105[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];461 -> 3105[label="",style="solid", color="blue", weight=9]; 3105 -> 576[label="",style="solid", color="blue", weight=3]; 3106[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];461 -> 3106[label="",style="solid", color="blue", weight=9]; 3106 -> 577[label="",style="solid", color="blue", weight=3]; 3107[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];461 -> 3107[label="",style="solid", color="blue", weight=9]; 3107 -> 578[label="",style="solid", color="blue", weight=3]; 3108[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];461 -> 3108[label="",style="solid", color="blue", weight=9]; 3108 -> 579[label="",style="solid", color="blue", weight=3]; 3109[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];461 -> 3109[label="",style="solid", color="blue", weight=9]; 3109 -> 580[label="",style="solid", color="blue", weight=3]; 3110[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];461 -> 3110[label="",style="solid", color="blue", weight=9]; 3110 -> 581[label="",style="solid", color="blue", weight=3]; 3111[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];461 -> 3111[label="",style="solid", color="blue", weight=9]; 3111 -> 582[label="",style="solid", color="blue", weight=3]; 3112[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];461 -> 3112[label="",style="solid", color="blue", weight=9]; 3112 -> 583[label="",style="solid", color="blue", weight=3]; 3113[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];461 -> 3113[label="",style="solid", color="blue", weight=9]; 3113 -> 584[label="",style="solid", color="blue", weight=3]; 3114[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];461 -> 3114[label="",style="solid", color="blue", weight=9]; 3114 -> 585[label="",style="solid", color="blue", weight=3]; 459[label="primCompAux0 vyw72 vyw73",fontsize=16,color="burlywood",shape="triangle"];3115[label="vyw73/LT",fontsize=10,color="white",style="solid",shape="box"];459 -> 3115[label="",style="solid", color="burlywood", weight=9]; 3115 -> 586[label="",style="solid", color="burlywood", weight=3]; 3116[label="vyw73/EQ",fontsize=10,color="white",style="solid",shape="box"];459 -> 3116[label="",style="solid", color="burlywood", weight=9]; 3116 -> 587[label="",style="solid", color="burlywood", weight=3]; 3117[label="vyw73/GT",fontsize=10,color="white",style="solid",shape="box"];459 -> 3117[label="",style="solid", color="burlywood", weight=9]; 3117 -> 588[label="",style="solid", color="burlywood", weight=3]; 462[label="EQ",fontsize=16,color="green",shape="box"];463[label="compare1 False True (False <= True)",fontsize=16,color="black",shape="box"];463 -> 589[label="",style="solid", color="black", weight=3]; 464[label="compare1 True False (True <= False)",fontsize=16,color="black",shape="box"];464 -> 590[label="",style="solid", color="black", weight=3]; 465[label="EQ",fontsize=16,color="green",shape="box"];924 -> 1080[label="",style="dashed", color="red", weight=0]; 924[label="vyw30 == vyw400 && vyw31 == vyw401",fontsize=16,color="magenta"];924 -> 1083[label="",style="dashed", color="magenta", weight=3]; 924 -> 1084[label="",style="dashed", color="magenta", weight=3]; 925[label="vyw400",fontsize=16,color="green",shape="box"];926[label="vyw30",fontsize=16,color="green",shape="box"];927[label="vyw401",fontsize=16,color="green",shape="box"];928[label="vyw31",fontsize=16,color="green",shape="box"];923[label="compare2 (vyw113,vyw114) (vyw115,vyw116) vyw117",fontsize=16,color="burlywood",shape="triangle"];3118[label="vyw117/False",fontsize=10,color="white",style="solid",shape="box"];923 -> 3118[label="",style="solid", color="burlywood", weight=9]; 3118 -> 948[label="",style="solid", color="burlywood", weight=3]; 3119[label="vyw117/True",fontsize=10,color="white",style="solid",shape="box"];923 -> 3119[label="",style="solid", color="burlywood", weight=9]; 3119 -> 949[label="",style="solid", color="burlywood", weight=3]; 472[label="EQ",fontsize=16,color="green",shape="box"];473[label="compare1 LT EQ (LT <= EQ)",fontsize=16,color="black",shape="box"];473 -> 607[label="",style="solid", color="black", weight=3]; 474[label="compare1 LT GT (LT <= GT)",fontsize=16,color="black",shape="box"];474 -> 608[label="",style="solid", color="black", weight=3]; 475[label="compare1 EQ LT (EQ <= LT)",fontsize=16,color="black",shape="box"];475 -> 609[label="",style="solid", color="black", weight=3]; 476[label="EQ",fontsize=16,color="green",shape="box"];477[label="compare1 EQ GT (EQ <= GT)",fontsize=16,color="black",shape="box"];477 -> 610[label="",style="solid", color="black", weight=3]; 478[label="compare1 GT LT (GT <= LT)",fontsize=16,color="black",shape="box"];478 -> 611[label="",style="solid", color="black", weight=3]; 479[label="compare1 GT EQ (GT <= EQ)",fontsize=16,color="black",shape="box"];479 -> 612[label="",style="solid", color="black", weight=3]; 480[label="EQ",fontsize=16,color="green",shape="box"];481[label="EQ",fontsize=16,color="green",shape="box"];482[label="compare1 Nothing (Just vyw400) (Nothing <= Just vyw400)",fontsize=16,color="black",shape="box"];482 -> 613[label="",style="solid", color="black", weight=3]; 483[label="compare1 (Just vyw30) Nothing (Just vyw30 <= Nothing)",fontsize=16,color="black",shape="box"];483 -> 614[label="",style="solid", color="black", weight=3]; 485[label="vyw400",fontsize=16,color="green",shape="box"];486[label="vyw30",fontsize=16,color="green",shape="box"];487[label="vyw30 == vyw400",fontsize=16,color="blue",shape="box"];3120[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];487 -> 3120[label="",style="solid", color="blue", weight=9]; 3120 -> 615[label="",style="solid", color="blue", weight=3]; 3121[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];487 -> 3121[label="",style="solid", color="blue", weight=9]; 3121 -> 616[label="",style="solid", color="blue", weight=3]; 3122[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];487 -> 3122[label="",style="solid", color="blue", weight=9]; 3122 -> 617[label="",style="solid", color="blue", weight=3]; 3123[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];487 -> 3123[label="",style="solid", color="blue", weight=9]; 3123 -> 618[label="",style="solid", color="blue", weight=3]; 3124[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];487 -> 3124[label="",style="solid", color="blue", weight=9]; 3124 -> 619[label="",style="solid", color="blue", weight=3]; 3125[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];487 -> 3125[label="",style="solid", color="blue", weight=9]; 3125 -> 620[label="",style="solid", color="blue", weight=3]; 3126[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];487 -> 3126[label="",style="solid", color="blue", weight=9]; 3126 -> 621[label="",style="solid", color="blue", weight=3]; 3127[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];487 -> 3127[label="",style="solid", color="blue", weight=9]; 3127 -> 622[label="",style="solid", color="blue", weight=3]; 3128[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];487 -> 3128[label="",style="solid", color="blue", weight=9]; 3128 -> 623[label="",style="solid", color="blue", weight=3]; 3129[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];487 -> 3129[label="",style="solid", color="blue", weight=9]; 3129 -> 624[label="",style="solid", color="blue", weight=3]; 3130[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];487 -> 3130[label="",style="solid", color="blue", weight=9]; 3130 -> 625[label="",style="solid", color="blue", weight=3]; 3131[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];487 -> 3131[label="",style="solid", color="blue", weight=9]; 3131 -> 626[label="",style="solid", color="blue", weight=3]; 3132[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];487 -> 3132[label="",style="solid", color="blue", weight=9]; 3132 -> 627[label="",style="solid", color="blue", weight=3]; 3133[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];487 -> 3133[label="",style="solid", color="blue", weight=9]; 3133 -> 628[label="",style="solid", color="blue", weight=3]; 484[label="compare2 (Just vyw89) (Just vyw90) vyw91",fontsize=16,color="burlywood",shape="triangle"];3134[label="vyw91/False",fontsize=10,color="white",style="solid",shape="box"];484 -> 3134[label="",style="solid", color="burlywood", weight=9]; 3134 -> 629[label="",style="solid", color="burlywood", weight=3]; 3135[label="vyw91/True",fontsize=10,color="white",style="solid",shape="box"];484 -> 3135[label="",style="solid", color="burlywood", weight=9]; 3135 -> 630[label="",style="solid", color="burlywood", weight=3]; 488[label="Integer vyw4000 * vyw31",fontsize=16,color="burlywood",shape="box"];3136[label="vyw31/Integer vyw310",fontsize=10,color="white",style="solid",shape="box"];488 -> 3136[label="",style="solid", color="burlywood", weight=9]; 3136 -> 631[label="",style="solid", color="burlywood", weight=3]; 489[label="vyw401",fontsize=16,color="green",shape="box"];490[label="vyw30",fontsize=16,color="green",shape="box"];491[label="primMulInt vyw400 vyw31",fontsize=16,color="burlywood",shape="triangle"];3137[label="vyw400/Pos vyw4000",fontsize=10,color="white",style="solid",shape="box"];491 -> 3137[label="",style="solid", color="burlywood", weight=9]; 3137 -> 632[label="",style="solid", color="burlywood", weight=3]; 3138[label="vyw400/Neg vyw4000",fontsize=10,color="white",style="solid",shape="box"];491 -> 3138[label="",style="solid", color="burlywood", weight=9]; 3138 -> 633[label="",style="solid", color="burlywood", weight=3]; 492[label="vyw401",fontsize=16,color="green",shape="box"];493[label="vyw30",fontsize=16,color="green",shape="box"];494 -> 197[label="",style="dashed", color="red", weight=0]; 494[label="compare (vyw30 * Pos vyw4010) (Pos vyw310 * vyw400)",fontsize=16,color="magenta"];494 -> 634[label="",style="dashed", color="magenta", weight=3]; 494 -> 635[label="",style="dashed", color="magenta", weight=3]; 495 -> 197[label="",style="dashed", color="red", weight=0]; 495[label="compare (vyw30 * Pos vyw4010) (Neg vyw310 * vyw400)",fontsize=16,color="magenta"];495 -> 636[label="",style="dashed", color="magenta", weight=3]; 495 -> 637[label="",style="dashed", color="magenta", weight=3]; 496 -> 197[label="",style="dashed", color="red", weight=0]; 496[label="compare (vyw30 * Neg vyw4010) (Pos vyw310 * vyw400)",fontsize=16,color="magenta"];496 -> 638[label="",style="dashed", color="magenta", weight=3]; 496 -> 639[label="",style="dashed", color="magenta", weight=3]; 497 -> 197[label="",style="dashed", color="red", weight=0]; 497[label="compare (vyw30 * Neg vyw4010) (Neg vyw310 * vyw400)",fontsize=16,color="magenta"];497 -> 640[label="",style="dashed", color="magenta", weight=3]; 497 -> 641[label="",style="dashed", color="magenta", weight=3]; 498[label="primCmpNat (Succ vyw300) (Succ vyw4000)",fontsize=16,color="black",shape="box"];498 -> 642[label="",style="solid", color="black", weight=3]; 499[label="primCmpNat (Succ vyw300) Zero",fontsize=16,color="black",shape="box"];499 -> 643[label="",style="solid", color="black", weight=3]; 500[label="primCmpNat Zero (Succ vyw4000)",fontsize=16,color="black",shape="box"];500 -> 644[label="",style="solid", color="black", weight=3]; 501[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];501 -> 645[label="",style="solid", color="black", weight=3]; 502[label="Succ vyw300",fontsize=16,color="green",shape="box"];503[label="vyw400",fontsize=16,color="green",shape="box"];504 -> 373[label="",style="dashed", color="red", weight=0]; 504[label="primCmpNat Zero (Succ vyw4000)",fontsize=16,color="magenta"];504 -> 646[label="",style="dashed", color="magenta", weight=3]; 504 -> 647[label="",style="dashed", color="magenta", weight=3]; 505[label="EQ",fontsize=16,color="green",shape="box"];506[label="GT",fontsize=16,color="green",shape="box"];507[label="EQ",fontsize=16,color="green",shape="box"];508[label="vyw400",fontsize=16,color="green",shape="box"];509[label="Succ vyw300",fontsize=16,color="green",shape="box"];510[label="LT",fontsize=16,color="green",shape="box"];511[label="EQ",fontsize=16,color="green",shape="box"];512 -> 373[label="",style="dashed", color="red", weight=0]; 512[label="primCmpNat (Succ vyw4000) Zero",fontsize=16,color="magenta"];512 -> 648[label="",style="dashed", color="magenta", weight=3]; 512 -> 649[label="",style="dashed", color="magenta", weight=3]; 513[label="EQ",fontsize=16,color="green",shape="box"];1081 -> 1080[label="",style="dashed", color="red", weight=0]; 1081[label="vyw31 == vyw401 && vyw32 == vyw402",fontsize=16,color="magenta"];1081 -> 1099[label="",style="dashed", color="magenta", weight=3]; 1081 -> 1100[label="",style="dashed", color="magenta", weight=3]; 1082[label="vyw30 == vyw400",fontsize=16,color="blue",shape="box"];3139[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1082 -> 3139[label="",style="solid", color="blue", weight=9]; 3139 -> 1101[label="",style="solid", color="blue", weight=3]; 3140[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1082 -> 3140[label="",style="solid", color="blue", weight=9]; 3140 -> 1102[label="",style="solid", color="blue", weight=3]; 3141[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1082 -> 3141[label="",style="solid", color="blue", weight=9]; 3141 -> 1103[label="",style="solid", color="blue", weight=3]; 3142[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1082 -> 3142[label="",style="solid", color="blue", weight=9]; 3142 -> 1104[label="",style="solid", color="blue", weight=3]; 3143[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1082 -> 3143[label="",style="solid", color="blue", weight=9]; 3143 -> 1105[label="",style="solid", color="blue", weight=3]; 3144[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1082 -> 3144[label="",style="solid", color="blue", weight=9]; 3144 -> 1106[label="",style="solid", color="blue", weight=3]; 3145[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1082 -> 3145[label="",style="solid", color="blue", weight=9]; 3145 -> 1107[label="",style="solid", color="blue", weight=3]; 3146[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1082 -> 3146[label="",style="solid", color="blue", weight=9]; 3146 -> 1108[label="",style="solid", color="blue", weight=3]; 3147[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1082 -> 3147[label="",style="solid", color="blue", weight=9]; 3147 -> 1109[label="",style="solid", color="blue", weight=3]; 3148[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1082 -> 3148[label="",style="solid", color="blue", weight=9]; 3148 -> 1110[label="",style="solid", color="blue", weight=3]; 3149[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1082 -> 3149[label="",style="solid", color="blue", weight=9]; 3149 -> 1111[label="",style="solid", color="blue", weight=3]; 3150[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1082 -> 3150[label="",style="solid", color="blue", weight=9]; 3150 -> 1112[label="",style="solid", color="blue", weight=3]; 3151[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1082 -> 3151[label="",style="solid", color="blue", weight=9]; 3151 -> 1113[label="",style="solid", color="blue", weight=3]; 3152[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1082 -> 3152[label="",style="solid", color="blue", weight=9]; 3152 -> 1114[label="",style="solid", color="blue", weight=3]; 1080[label="vyw130 && vyw131",fontsize=16,color="burlywood",shape="triangle"];3153[label="vyw130/False",fontsize=10,color="white",style="solid",shape="box"];1080 -> 3153[label="",style="solid", color="burlywood", weight=9]; 3153 -> 1115[label="",style="solid", color="burlywood", weight=3]; 3154[label="vyw130/True",fontsize=10,color="white",style="solid",shape="box"];1080 -> 3154[label="",style="solid", color="burlywood", weight=9]; 3154 -> 1116[label="",style="solid", color="burlywood", weight=3]; 1075[label="compare2 (vyw100,vyw101,vyw102) (vyw103,vyw104,vyw105) False",fontsize=16,color="black",shape="box"];1075 -> 1117[label="",style="solid", color="black", weight=3]; 1076[label="compare2 (vyw100,vyw101,vyw102) (vyw103,vyw104,vyw105) True",fontsize=16,color="black",shape="box"];1076 -> 1118[label="",style="solid", color="black", weight=3]; 530 -> 417[label="",style="dashed", color="red", weight=0]; 530[label="Pos vyw310 * vyw400",fontsize=16,color="magenta"];530 -> 672[label="",style="dashed", color="magenta", weight=3]; 530 -> 673[label="",style="dashed", color="magenta", weight=3]; 531 -> 417[label="",style="dashed", color="red", weight=0]; 531[label="vyw30 * Pos vyw4010",fontsize=16,color="magenta"];531 -> 674[label="",style="dashed", color="magenta", weight=3]; 531 -> 675[label="",style="dashed", color="magenta", weight=3]; 532 -> 417[label="",style="dashed", color="red", weight=0]; 532[label="Neg vyw310 * vyw400",fontsize=16,color="magenta"];532 -> 676[label="",style="dashed", color="magenta", weight=3]; 532 -> 677[label="",style="dashed", color="magenta", weight=3]; 533 -> 417[label="",style="dashed", color="red", weight=0]; 533[label="vyw30 * Pos vyw4010",fontsize=16,color="magenta"];533 -> 678[label="",style="dashed", color="magenta", weight=3]; 533 -> 679[label="",style="dashed", color="magenta", weight=3]; 534 -> 417[label="",style="dashed", color="red", weight=0]; 534[label="Pos vyw310 * vyw400",fontsize=16,color="magenta"];534 -> 680[label="",style="dashed", color="magenta", weight=3]; 534 -> 681[label="",style="dashed", color="magenta", weight=3]; 535 -> 417[label="",style="dashed", color="red", weight=0]; 535[label="vyw30 * Neg vyw4010",fontsize=16,color="magenta"];535 -> 682[label="",style="dashed", color="magenta", weight=3]; 535 -> 683[label="",style="dashed", color="magenta", weight=3]; 536 -> 417[label="",style="dashed", color="red", weight=0]; 536[label="Neg vyw310 * vyw400",fontsize=16,color="magenta"];536 -> 684[label="",style="dashed", color="magenta", weight=3]; 536 -> 685[label="",style="dashed", color="magenta", weight=3]; 537 -> 417[label="",style="dashed", color="red", weight=0]; 537[label="vyw30 * Neg vyw4010",fontsize=16,color="magenta"];537 -> 686[label="",style="dashed", color="magenta", weight=3]; 537 -> 687[label="",style="dashed", color="magenta", weight=3]; 538 -> 514[label="",style="dashed", color="red", weight=0]; 538[label="vyw30 == vyw400",fontsize=16,color="magenta"];538 -> 688[label="",style="dashed", color="magenta", weight=3]; 538 -> 689[label="",style="dashed", color="magenta", weight=3]; 539 -> 515[label="",style="dashed", color="red", weight=0]; 539[label="vyw30 == vyw400",fontsize=16,color="magenta"];539 -> 690[label="",style="dashed", color="magenta", weight=3]; 539 -> 691[label="",style="dashed", color="magenta", weight=3]; 540 -> 516[label="",style="dashed", color="red", weight=0]; 540[label="vyw30 == vyw400",fontsize=16,color="magenta"];540 -> 692[label="",style="dashed", color="magenta", weight=3]; 540 -> 693[label="",style="dashed", color="magenta", weight=3]; 541 -> 517[label="",style="dashed", color="red", weight=0]; 541[label="vyw30 == vyw400",fontsize=16,color="magenta"];541 -> 694[label="",style="dashed", color="magenta", weight=3]; 541 -> 695[label="",style="dashed", color="magenta", weight=3]; 542 -> 518[label="",style="dashed", color="red", weight=0]; 542[label="vyw30 == vyw400",fontsize=16,color="magenta"];542 -> 696[label="",style="dashed", color="magenta", weight=3]; 542 -> 697[label="",style="dashed", color="magenta", weight=3]; 543 -> 519[label="",style="dashed", color="red", weight=0]; 543[label="vyw30 == vyw400",fontsize=16,color="magenta"];543 -> 698[label="",style="dashed", color="magenta", weight=3]; 543 -> 699[label="",style="dashed", color="magenta", weight=3]; 544 -> 520[label="",style="dashed", color="red", weight=0]; 544[label="vyw30 == vyw400",fontsize=16,color="magenta"];544 -> 700[label="",style="dashed", color="magenta", weight=3]; 544 -> 701[label="",style="dashed", color="magenta", weight=3]; 545 -> 521[label="",style="dashed", color="red", weight=0]; 545[label="vyw30 == vyw400",fontsize=16,color="magenta"];545 -> 702[label="",style="dashed", color="magenta", weight=3]; 545 -> 703[label="",style="dashed", color="magenta", weight=3]; 546 -> 522[label="",style="dashed", color="red", weight=0]; 546[label="vyw30 == vyw400",fontsize=16,color="magenta"];546 -> 704[label="",style="dashed", color="magenta", weight=3]; 546 -> 705[label="",style="dashed", color="magenta", weight=3]; 547 -> 523[label="",style="dashed", color="red", weight=0]; 547[label="vyw30 == vyw400",fontsize=16,color="magenta"];547 -> 706[label="",style="dashed", color="magenta", weight=3]; 547 -> 707[label="",style="dashed", color="magenta", weight=3]; 548 -> 524[label="",style="dashed", color="red", weight=0]; 548[label="vyw30 == vyw400",fontsize=16,color="magenta"];548 -> 708[label="",style="dashed", color="magenta", weight=3]; 548 -> 709[label="",style="dashed", color="magenta", weight=3]; 549 -> 525[label="",style="dashed", color="red", weight=0]; 549[label="vyw30 == vyw400",fontsize=16,color="magenta"];549 -> 710[label="",style="dashed", color="magenta", weight=3]; 549 -> 711[label="",style="dashed", color="magenta", weight=3]; 550 -> 526[label="",style="dashed", color="red", weight=0]; 550[label="vyw30 == vyw400",fontsize=16,color="magenta"];550 -> 712[label="",style="dashed", color="magenta", weight=3]; 550 -> 713[label="",style="dashed", color="magenta", weight=3]; 551 -> 527[label="",style="dashed", color="red", weight=0]; 551[label="vyw30 == vyw400",fontsize=16,color="magenta"];551 -> 714[label="",style="dashed", color="magenta", weight=3]; 551 -> 715[label="",style="dashed", color="magenta", weight=3]; 552[label="compare2 (Left vyw59) (Left vyw60) False",fontsize=16,color="black",shape="box"];552 -> 716[label="",style="solid", color="black", weight=3]; 553[label="compare2 (Left vyw59) (Left vyw60) True",fontsize=16,color="black",shape="box"];553 -> 717[label="",style="solid", color="black", weight=3]; 554[label="compare1 (Left vyw30) (Right vyw400) True",fontsize=16,color="black",shape="box"];554 -> 718[label="",style="solid", color="black", weight=3]; 555[label="compare1 (Right vyw30) (Left vyw400) False",fontsize=16,color="black",shape="box"];555 -> 719[label="",style="solid", color="black", weight=3]; 556 -> 514[label="",style="dashed", color="red", weight=0]; 556[label="vyw30 == vyw400",fontsize=16,color="magenta"];556 -> 720[label="",style="dashed", color="magenta", weight=3]; 556 -> 721[label="",style="dashed", color="magenta", weight=3]; 557 -> 515[label="",style="dashed", color="red", weight=0]; 557[label="vyw30 == vyw400",fontsize=16,color="magenta"];557 -> 722[label="",style="dashed", color="magenta", weight=3]; 557 -> 723[label="",style="dashed", color="magenta", weight=3]; 558 -> 516[label="",style="dashed", color="red", weight=0]; 558[label="vyw30 == vyw400",fontsize=16,color="magenta"];558 -> 724[label="",style="dashed", color="magenta", weight=3]; 558 -> 725[label="",style="dashed", color="magenta", weight=3]; 559 -> 517[label="",style="dashed", color="red", weight=0]; 559[label="vyw30 == vyw400",fontsize=16,color="magenta"];559 -> 726[label="",style="dashed", color="magenta", weight=3]; 559 -> 727[label="",style="dashed", color="magenta", weight=3]; 560 -> 518[label="",style="dashed", color="red", weight=0]; 560[label="vyw30 == vyw400",fontsize=16,color="magenta"];560 -> 728[label="",style="dashed", color="magenta", weight=3]; 560 -> 729[label="",style="dashed", color="magenta", weight=3]; 561 -> 519[label="",style="dashed", color="red", weight=0]; 561[label="vyw30 == vyw400",fontsize=16,color="magenta"];561 -> 730[label="",style="dashed", color="magenta", weight=3]; 561 -> 731[label="",style="dashed", color="magenta", weight=3]; 562 -> 520[label="",style="dashed", color="red", weight=0]; 562[label="vyw30 == vyw400",fontsize=16,color="magenta"];562 -> 732[label="",style="dashed", color="magenta", weight=3]; 562 -> 733[label="",style="dashed", color="magenta", weight=3]; 563 -> 521[label="",style="dashed", color="red", weight=0]; 563[label="vyw30 == vyw400",fontsize=16,color="magenta"];563 -> 734[label="",style="dashed", color="magenta", weight=3]; 563 -> 735[label="",style="dashed", color="magenta", weight=3]; 564 -> 522[label="",style="dashed", color="red", weight=0]; 564[label="vyw30 == vyw400",fontsize=16,color="magenta"];564 -> 736[label="",style="dashed", color="magenta", weight=3]; 564 -> 737[label="",style="dashed", color="magenta", weight=3]; 565 -> 523[label="",style="dashed", color="red", weight=0]; 565[label="vyw30 == vyw400",fontsize=16,color="magenta"];565 -> 738[label="",style="dashed", color="magenta", weight=3]; 565 -> 739[label="",style="dashed", color="magenta", weight=3]; 566 -> 524[label="",style="dashed", color="red", weight=0]; 566[label="vyw30 == vyw400",fontsize=16,color="magenta"];566 -> 740[label="",style="dashed", color="magenta", weight=3]; 566 -> 741[label="",style="dashed", color="magenta", weight=3]; 567 -> 525[label="",style="dashed", color="red", weight=0]; 567[label="vyw30 == vyw400",fontsize=16,color="magenta"];567 -> 742[label="",style="dashed", color="magenta", weight=3]; 567 -> 743[label="",style="dashed", color="magenta", weight=3]; 568 -> 526[label="",style="dashed", color="red", weight=0]; 568[label="vyw30 == vyw400",fontsize=16,color="magenta"];568 -> 744[label="",style="dashed", color="magenta", weight=3]; 568 -> 745[label="",style="dashed", color="magenta", weight=3]; 569 -> 527[label="",style="dashed", color="red", weight=0]; 569[label="vyw30 == vyw400",fontsize=16,color="magenta"];569 -> 746[label="",style="dashed", color="magenta", weight=3]; 569 -> 747[label="",style="dashed", color="magenta", weight=3]; 570[label="compare2 (Right vyw66) (Right vyw67) False",fontsize=16,color="black",shape="box"];570 -> 748[label="",style="solid", color="black", weight=3]; 571[label="compare2 (Right vyw66) (Right vyw67) True",fontsize=16,color="black",shape="box"];571 -> 749[label="",style="solid", color="black", weight=3]; 572 -> 185[label="",style="dashed", color="red", weight=0]; 572[label="compare vyw30 vyw400",fontsize=16,color="magenta"];572 -> 750[label="",style="dashed", color="magenta", weight=3]; 572 -> 751[label="",style="dashed", color="magenta", weight=3]; 573 -> 186[label="",style="dashed", color="red", weight=0]; 573[label="compare vyw30 vyw400",fontsize=16,color="magenta"];573 -> 752[label="",style="dashed", color="magenta", weight=3]; 573 -> 753[label="",style="dashed", color="magenta", weight=3]; 574 -> 187[label="",style="dashed", color="red", weight=0]; 574[label="compare vyw30 vyw400",fontsize=16,color="magenta"];574 -> 754[label="",style="dashed", color="magenta", weight=3]; 574 -> 755[label="",style="dashed", color="magenta", weight=3]; 575 -> 188[label="",style="dashed", color="red", weight=0]; 575[label="compare vyw30 vyw400",fontsize=16,color="magenta"];575 -> 756[label="",style="dashed", color="magenta", weight=3]; 575 -> 757[label="",style="dashed", color="magenta", weight=3]; 576 -> 189[label="",style="dashed", color="red", weight=0]; 576[label="compare vyw30 vyw400",fontsize=16,color="magenta"];576 -> 758[label="",style="dashed", color="magenta", weight=3]; 576 -> 759[label="",style="dashed", color="magenta", weight=3]; 577 -> 190[label="",style="dashed", color="red", weight=0]; 577[label="compare vyw30 vyw400",fontsize=16,color="magenta"];577 -> 760[label="",style="dashed", color="magenta", weight=3]; 577 -> 761[label="",style="dashed", color="magenta", weight=3]; 578 -> 191[label="",style="dashed", color="red", weight=0]; 578[label="compare vyw30 vyw400",fontsize=16,color="magenta"];578 -> 762[label="",style="dashed", color="magenta", weight=3]; 578 -> 763[label="",style="dashed", color="magenta", weight=3]; 579 -> 192[label="",style="dashed", color="red", weight=0]; 579[label="compare vyw30 vyw400",fontsize=16,color="magenta"];579 -> 764[label="",style="dashed", color="magenta", weight=3]; 579 -> 765[label="",style="dashed", color="magenta", weight=3]; 580 -> 193[label="",style="dashed", color="red", weight=0]; 580[label="compare vyw30 vyw400",fontsize=16,color="magenta"];580 -> 766[label="",style="dashed", color="magenta", weight=3]; 580 -> 767[label="",style="dashed", color="magenta", weight=3]; 581 -> 194[label="",style="dashed", color="red", weight=0]; 581[label="compare vyw30 vyw400",fontsize=16,color="magenta"];581 -> 768[label="",style="dashed", color="magenta", weight=3]; 581 -> 769[label="",style="dashed", color="magenta", weight=3]; 582 -> 195[label="",style="dashed", color="red", weight=0]; 582[label="compare vyw30 vyw400",fontsize=16,color="magenta"];582 -> 770[label="",style="dashed", color="magenta", weight=3]; 582 -> 771[label="",style="dashed", color="magenta", weight=3]; 583 -> 196[label="",style="dashed", color="red", weight=0]; 583[label="compare vyw30 vyw400",fontsize=16,color="magenta"];583 -> 772[label="",style="dashed", color="magenta", weight=3]; 583 -> 773[label="",style="dashed", color="magenta", weight=3]; 584 -> 197[label="",style="dashed", color="red", weight=0]; 584[label="compare vyw30 vyw400",fontsize=16,color="magenta"];584 -> 774[label="",style="dashed", color="magenta", weight=3]; 584 -> 775[label="",style="dashed", color="magenta", weight=3]; 585 -> 198[label="",style="dashed", color="red", weight=0]; 585[label="compare vyw30 vyw400",fontsize=16,color="magenta"];585 -> 776[label="",style="dashed", color="magenta", weight=3]; 585 -> 777[label="",style="dashed", color="magenta", weight=3]; 586[label="primCompAux0 vyw72 LT",fontsize=16,color="black",shape="box"];586 -> 778[label="",style="solid", color="black", weight=3]; 587[label="primCompAux0 vyw72 EQ",fontsize=16,color="black",shape="box"];587 -> 779[label="",style="solid", color="black", weight=3]; 588[label="primCompAux0 vyw72 GT",fontsize=16,color="black",shape="box"];588 -> 780[label="",style="solid", color="black", weight=3]; 589[label="compare1 False True True",fontsize=16,color="black",shape="box"];589 -> 781[label="",style="solid", color="black", weight=3]; 590[label="compare1 True False False",fontsize=16,color="black",shape="box"];590 -> 782[label="",style="solid", color="black", weight=3]; 1083[label="vyw31 == vyw401",fontsize=16,color="blue",shape="box"];3155[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1083 -> 3155[label="",style="solid", color="blue", weight=9]; 3155 -> 1119[label="",style="solid", color="blue", weight=3]; 3156[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1083 -> 3156[label="",style="solid", color="blue", weight=9]; 3156 -> 1120[label="",style="solid", color="blue", weight=3]; 3157[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1083 -> 3157[label="",style="solid", color="blue", weight=9]; 3157 -> 1121[label="",style="solid", color="blue", weight=3]; 3158[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1083 -> 3158[label="",style="solid", color="blue", weight=9]; 3158 -> 1122[label="",style="solid", color="blue", weight=3]; 3159[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1083 -> 3159[label="",style="solid", color="blue", weight=9]; 3159 -> 1123[label="",style="solid", color="blue", weight=3]; 3160[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1083 -> 3160[label="",style="solid", color="blue", weight=9]; 3160 -> 1124[label="",style="solid", color="blue", weight=3]; 3161[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1083 -> 3161[label="",style="solid", color="blue", weight=9]; 3161 -> 1125[label="",style="solid", color="blue", weight=3]; 3162[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1083 -> 3162[label="",style="solid", color="blue", weight=9]; 3162 -> 1126[label="",style="solid", color="blue", weight=3]; 3163[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1083 -> 3163[label="",style="solid", color="blue", weight=9]; 3163 -> 1127[label="",style="solid", color="blue", weight=3]; 3164[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1083 -> 3164[label="",style="solid", color="blue", weight=9]; 3164 -> 1128[label="",style="solid", color="blue", weight=3]; 3165[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1083 -> 3165[label="",style="solid", color="blue", weight=9]; 3165 -> 1129[label="",style="solid", color="blue", weight=3]; 3166[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1083 -> 3166[label="",style="solid", color="blue", weight=9]; 3166 -> 1130[label="",style="solid", color="blue", weight=3]; 3167[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1083 -> 3167[label="",style="solid", color="blue", weight=9]; 3167 -> 1131[label="",style="solid", color="blue", weight=3]; 3168[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1083 -> 3168[label="",style="solid", color="blue", weight=9]; 3168 -> 1132[label="",style="solid", color="blue", weight=3]; 1084[label="vyw30 == vyw400",fontsize=16,color="blue",shape="box"];3169[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1084 -> 3169[label="",style="solid", color="blue", weight=9]; 3169 -> 1133[label="",style="solid", color="blue", weight=3]; 3170[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1084 -> 3170[label="",style="solid", color="blue", weight=9]; 3170 -> 1134[label="",style="solid", color="blue", weight=3]; 3171[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1084 -> 3171[label="",style="solid", color="blue", weight=9]; 3171 -> 1135[label="",style="solid", color="blue", weight=3]; 3172[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1084 -> 3172[label="",style="solid", color="blue", weight=9]; 3172 -> 1136[label="",style="solid", color="blue", weight=3]; 3173[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1084 -> 3173[label="",style="solid", color="blue", weight=9]; 3173 -> 1137[label="",style="solid", color="blue", weight=3]; 3174[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1084 -> 3174[label="",style="solid", color="blue", weight=9]; 3174 -> 1138[label="",style="solid", color="blue", weight=3]; 3175[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1084 -> 3175[label="",style="solid", color="blue", weight=9]; 3175 -> 1139[label="",style="solid", color="blue", weight=3]; 3176[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1084 -> 3176[label="",style="solid", color="blue", weight=9]; 3176 -> 1140[label="",style="solid", color="blue", weight=3]; 3177[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1084 -> 3177[label="",style="solid", color="blue", weight=9]; 3177 -> 1141[label="",style="solid", color="blue", weight=3]; 3178[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1084 -> 3178[label="",style="solid", color="blue", weight=9]; 3178 -> 1142[label="",style="solid", color="blue", weight=3]; 3179[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1084 -> 3179[label="",style="solid", color="blue", weight=9]; 3179 -> 1143[label="",style="solid", color="blue", weight=3]; 3180[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1084 -> 3180[label="",style="solid", color="blue", weight=9]; 3180 -> 1144[label="",style="solid", color="blue", weight=3]; 3181[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1084 -> 3181[label="",style="solid", color="blue", weight=9]; 3181 -> 1145[label="",style="solid", color="blue", weight=3]; 3182[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1084 -> 3182[label="",style="solid", color="blue", weight=9]; 3182 -> 1146[label="",style="solid", color="blue", weight=3]; 948[label="compare2 (vyw113,vyw114) (vyw115,vyw116) False",fontsize=16,color="black",shape="box"];948 -> 1147[label="",style="solid", color="black", weight=3]; 949[label="compare2 (vyw113,vyw114) (vyw115,vyw116) True",fontsize=16,color="black",shape="box"];949 -> 1148[label="",style="solid", color="black", weight=3]; 607[label="compare1 LT EQ True",fontsize=16,color="black",shape="box"];607 -> 813[label="",style="solid", color="black", weight=3]; 608[label="compare1 LT GT True",fontsize=16,color="black",shape="box"];608 -> 814[label="",style="solid", color="black", weight=3]; 609[label="compare1 EQ LT False",fontsize=16,color="black",shape="box"];609 -> 815[label="",style="solid", color="black", weight=3]; 610[label="compare1 EQ GT True",fontsize=16,color="black",shape="box"];610 -> 816[label="",style="solid", color="black", weight=3]; 611[label="compare1 GT LT False",fontsize=16,color="black",shape="box"];611 -> 817[label="",style="solid", color="black", weight=3]; 612[label="compare1 GT EQ False",fontsize=16,color="black",shape="box"];612 -> 818[label="",style="solid", color="black", weight=3]; 613[label="compare1 Nothing (Just vyw400) True",fontsize=16,color="black",shape="box"];613 -> 819[label="",style="solid", color="black", weight=3]; 614[label="compare1 (Just vyw30) Nothing False",fontsize=16,color="black",shape="box"];614 -> 820[label="",style="solid", color="black", weight=3]; 615 -> 514[label="",style="dashed", color="red", weight=0]; 615[label="vyw30 == vyw400",fontsize=16,color="magenta"];615 -> 821[label="",style="dashed", color="magenta", weight=3]; 615 -> 822[label="",style="dashed", color="magenta", weight=3]; 616 -> 515[label="",style="dashed", color="red", weight=0]; 616[label="vyw30 == vyw400",fontsize=16,color="magenta"];616 -> 823[label="",style="dashed", color="magenta", weight=3]; 616 -> 824[label="",style="dashed", color="magenta", weight=3]; 617 -> 516[label="",style="dashed", color="red", weight=0]; 617[label="vyw30 == vyw400",fontsize=16,color="magenta"];617 -> 825[label="",style="dashed", color="magenta", weight=3]; 617 -> 826[label="",style="dashed", color="magenta", weight=3]; 618 -> 517[label="",style="dashed", color="red", weight=0]; 618[label="vyw30 == vyw400",fontsize=16,color="magenta"];618 -> 827[label="",style="dashed", color="magenta", weight=3]; 618 -> 828[label="",style="dashed", color="magenta", weight=3]; 619 -> 518[label="",style="dashed", color="red", weight=0]; 619[label="vyw30 == vyw400",fontsize=16,color="magenta"];619 -> 829[label="",style="dashed", color="magenta", weight=3]; 619 -> 830[label="",style="dashed", color="magenta", weight=3]; 620 -> 519[label="",style="dashed", color="red", weight=0]; 620[label="vyw30 == vyw400",fontsize=16,color="magenta"];620 -> 831[label="",style="dashed", color="magenta", weight=3]; 620 -> 832[label="",style="dashed", color="magenta", weight=3]; 621 -> 520[label="",style="dashed", color="red", weight=0]; 621[label="vyw30 == vyw400",fontsize=16,color="magenta"];621 -> 833[label="",style="dashed", color="magenta", weight=3]; 621 -> 834[label="",style="dashed", color="magenta", weight=3]; 622 -> 521[label="",style="dashed", color="red", weight=0]; 622[label="vyw30 == vyw400",fontsize=16,color="magenta"];622 -> 835[label="",style="dashed", color="magenta", weight=3]; 622 -> 836[label="",style="dashed", color="magenta", weight=3]; 623 -> 522[label="",style="dashed", color="red", weight=0]; 623[label="vyw30 == vyw400",fontsize=16,color="magenta"];623 -> 837[label="",style="dashed", color="magenta", weight=3]; 623 -> 838[label="",style="dashed", color="magenta", weight=3]; 624 -> 523[label="",style="dashed", color="red", weight=0]; 624[label="vyw30 == vyw400",fontsize=16,color="magenta"];624 -> 839[label="",style="dashed", color="magenta", weight=3]; 624 -> 840[label="",style="dashed", color="magenta", weight=3]; 625 -> 524[label="",style="dashed", color="red", weight=0]; 625[label="vyw30 == vyw400",fontsize=16,color="magenta"];625 -> 841[label="",style="dashed", color="magenta", weight=3]; 625 -> 842[label="",style="dashed", color="magenta", weight=3]; 626 -> 525[label="",style="dashed", color="red", weight=0]; 626[label="vyw30 == vyw400",fontsize=16,color="magenta"];626 -> 843[label="",style="dashed", color="magenta", weight=3]; 626 -> 844[label="",style="dashed", color="magenta", weight=3]; 627 -> 526[label="",style="dashed", color="red", weight=0]; 627[label="vyw30 == vyw400",fontsize=16,color="magenta"];627 -> 845[label="",style="dashed", color="magenta", weight=3]; 627 -> 846[label="",style="dashed", color="magenta", weight=3]; 628 -> 527[label="",style="dashed", color="red", weight=0]; 628[label="vyw30 == vyw400",fontsize=16,color="magenta"];628 -> 847[label="",style="dashed", color="magenta", weight=3]; 628 -> 848[label="",style="dashed", color="magenta", weight=3]; 629[label="compare2 (Just vyw89) (Just vyw90) False",fontsize=16,color="black",shape="box"];629 -> 849[label="",style="solid", color="black", weight=3]; 630[label="compare2 (Just vyw89) (Just vyw90) True",fontsize=16,color="black",shape="box"];630 -> 850[label="",style="solid", color="black", weight=3]; 631[label="Integer vyw4000 * Integer vyw310",fontsize=16,color="black",shape="box"];631 -> 851[label="",style="solid", color="black", weight=3]; 632[label="primMulInt (Pos vyw4000) vyw31",fontsize=16,color="burlywood",shape="box"];3183[label="vyw31/Pos vyw310",fontsize=10,color="white",style="solid",shape="box"];632 -> 3183[label="",style="solid", color="burlywood", weight=9]; 3183 -> 852[label="",style="solid", color="burlywood", weight=3]; 3184[label="vyw31/Neg vyw310",fontsize=10,color="white",style="solid",shape="box"];632 -> 3184[label="",style="solid", color="burlywood", weight=9]; 3184 -> 853[label="",style="solid", color="burlywood", weight=3]; 633[label="primMulInt (Neg vyw4000) vyw31",fontsize=16,color="burlywood",shape="box"];3185[label="vyw31/Pos vyw310",fontsize=10,color="white",style="solid",shape="box"];633 -> 3185[label="",style="solid", color="burlywood", weight=9]; 3185 -> 854[label="",style="solid", color="burlywood", weight=3]; 3186[label="vyw31/Neg vyw310",fontsize=10,color="white",style="solid",shape="box"];633 -> 3186[label="",style="solid", color="burlywood", weight=9]; 3186 -> 855[label="",style="solid", color="burlywood", weight=3]; 634 -> 417[label="",style="dashed", color="red", weight=0]; 634[label="Pos vyw310 * vyw400",fontsize=16,color="magenta"];634 -> 856[label="",style="dashed", color="magenta", weight=3]; 634 -> 857[label="",style="dashed", color="magenta", weight=3]; 635 -> 417[label="",style="dashed", color="red", weight=0]; 635[label="vyw30 * Pos vyw4010",fontsize=16,color="magenta"];635 -> 858[label="",style="dashed", color="magenta", weight=3]; 635 -> 859[label="",style="dashed", color="magenta", weight=3]; 636 -> 417[label="",style="dashed", color="red", weight=0]; 636[label="Neg vyw310 * vyw400",fontsize=16,color="magenta"];636 -> 860[label="",style="dashed", color="magenta", weight=3]; 636 -> 861[label="",style="dashed", color="magenta", weight=3]; 637 -> 417[label="",style="dashed", color="red", weight=0]; 637[label="vyw30 * Pos vyw4010",fontsize=16,color="magenta"];637 -> 862[label="",style="dashed", color="magenta", weight=3]; 637 -> 863[label="",style="dashed", color="magenta", weight=3]; 638 -> 417[label="",style="dashed", color="red", weight=0]; 638[label="Pos vyw310 * vyw400",fontsize=16,color="magenta"];638 -> 864[label="",style="dashed", color="magenta", weight=3]; 638 -> 865[label="",style="dashed", color="magenta", weight=3]; 639 -> 417[label="",style="dashed", color="red", weight=0]; 639[label="vyw30 * Neg vyw4010",fontsize=16,color="magenta"];639 -> 866[label="",style="dashed", color="magenta", weight=3]; 639 -> 867[label="",style="dashed", color="magenta", weight=3]; 640 -> 417[label="",style="dashed", color="red", weight=0]; 640[label="Neg vyw310 * vyw400",fontsize=16,color="magenta"];640 -> 868[label="",style="dashed", color="magenta", weight=3]; 640 -> 869[label="",style="dashed", color="magenta", weight=3]; 641 -> 417[label="",style="dashed", color="red", weight=0]; 641[label="vyw30 * Neg vyw4010",fontsize=16,color="magenta"];641 -> 870[label="",style="dashed", color="magenta", weight=3]; 641 -> 871[label="",style="dashed", color="magenta", weight=3]; 642 -> 373[label="",style="dashed", color="red", weight=0]; 642[label="primCmpNat vyw300 vyw4000",fontsize=16,color="magenta"];642 -> 872[label="",style="dashed", color="magenta", weight=3]; 642 -> 873[label="",style="dashed", color="magenta", weight=3]; 643[label="GT",fontsize=16,color="green",shape="box"];644[label="LT",fontsize=16,color="green",shape="box"];645[label="EQ",fontsize=16,color="green",shape="box"];646[label="Zero",fontsize=16,color="green",shape="box"];647[label="Succ vyw4000",fontsize=16,color="green",shape="box"];648[label="Succ vyw4000",fontsize=16,color="green",shape="box"];649[label="Zero",fontsize=16,color="green",shape="box"];1099[label="vyw32 == vyw402",fontsize=16,color="blue",shape="box"];3187[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1099 -> 3187[label="",style="solid", color="blue", weight=9]; 3187 -> 1156[label="",style="solid", color="blue", weight=3]; 3188[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1099 -> 3188[label="",style="solid", color="blue", weight=9]; 3188 -> 1157[label="",style="solid", color="blue", weight=3]; 3189[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1099 -> 3189[label="",style="solid", color="blue", weight=9]; 3189 -> 1158[label="",style="solid", color="blue", weight=3]; 3190[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1099 -> 3190[label="",style="solid", color="blue", weight=9]; 3190 -> 1159[label="",style="solid", color="blue", weight=3]; 3191[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1099 -> 3191[label="",style="solid", color="blue", weight=9]; 3191 -> 1160[label="",style="solid", color="blue", weight=3]; 3192[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1099 -> 3192[label="",style="solid", color="blue", weight=9]; 3192 -> 1161[label="",style="solid", color="blue", weight=3]; 3193[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1099 -> 3193[label="",style="solid", color="blue", weight=9]; 3193 -> 1162[label="",style="solid", color="blue", weight=3]; 3194[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1099 -> 3194[label="",style="solid", color="blue", weight=9]; 3194 -> 1163[label="",style="solid", color="blue", weight=3]; 3195[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1099 -> 3195[label="",style="solid", color="blue", weight=9]; 3195 -> 1164[label="",style="solid", color="blue", weight=3]; 3196[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1099 -> 3196[label="",style="solid", color="blue", weight=9]; 3196 -> 1165[label="",style="solid", color="blue", weight=3]; 3197[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1099 -> 3197[label="",style="solid", color="blue", weight=9]; 3197 -> 1166[label="",style="solid", color="blue", weight=3]; 3198[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1099 -> 3198[label="",style="solid", color="blue", weight=9]; 3198 -> 1167[label="",style="solid", color="blue", weight=3]; 3199[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1099 -> 3199[label="",style="solid", color="blue", weight=9]; 3199 -> 1168[label="",style="solid", color="blue", weight=3]; 3200[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1099 -> 3200[label="",style="solid", color="blue", weight=9]; 3200 -> 1169[label="",style="solid", color="blue", weight=3]; 1100[label="vyw31 == vyw401",fontsize=16,color="blue",shape="box"];3201[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1100 -> 3201[label="",style="solid", color="blue", weight=9]; 3201 -> 1170[label="",style="solid", color="blue", weight=3]; 3202[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1100 -> 3202[label="",style="solid", color="blue", weight=9]; 3202 -> 1171[label="",style="solid", color="blue", weight=3]; 3203[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1100 -> 3203[label="",style="solid", color="blue", weight=9]; 3203 -> 1172[label="",style="solid", color="blue", weight=3]; 3204[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1100 -> 3204[label="",style="solid", color="blue", weight=9]; 3204 -> 1173[label="",style="solid", color="blue", weight=3]; 3205[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1100 -> 3205[label="",style="solid", color="blue", weight=9]; 3205 -> 1174[label="",style="solid", color="blue", weight=3]; 3206[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1100 -> 3206[label="",style="solid", color="blue", weight=9]; 3206 -> 1175[label="",style="solid", color="blue", weight=3]; 3207[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1100 -> 3207[label="",style="solid", color="blue", weight=9]; 3207 -> 1176[label="",style="solid", color="blue", weight=3]; 3208[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1100 -> 3208[label="",style="solid", color="blue", weight=9]; 3208 -> 1177[label="",style="solid", color="blue", weight=3]; 3209[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1100 -> 3209[label="",style="solid", color="blue", weight=9]; 3209 -> 1178[label="",style="solid", color="blue", weight=3]; 3210[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1100 -> 3210[label="",style="solid", color="blue", weight=9]; 3210 -> 1179[label="",style="solid", color="blue", weight=3]; 3211[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1100 -> 3211[label="",style="solid", color="blue", weight=9]; 3211 -> 1180[label="",style="solid", color="blue", weight=3]; 3212[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1100 -> 3212[label="",style="solid", color="blue", weight=9]; 3212 -> 1181[label="",style="solid", color="blue", weight=3]; 3213[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1100 -> 3213[label="",style="solid", color="blue", weight=9]; 3213 -> 1182[label="",style="solid", color="blue", weight=3]; 3214[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1100 -> 3214[label="",style="solid", color="blue", weight=9]; 3214 -> 1183[label="",style="solid", color="blue", weight=3]; 1101 -> 514[label="",style="dashed", color="red", weight=0]; 1101[label="vyw30 == vyw400",fontsize=16,color="magenta"];1102 -> 515[label="",style="dashed", color="red", weight=0]; 1102[label="vyw30 == vyw400",fontsize=16,color="magenta"];1103 -> 516[label="",style="dashed", color="red", weight=0]; 1103[label="vyw30 == vyw400",fontsize=16,color="magenta"];1104 -> 517[label="",style="dashed", color="red", weight=0]; 1104[label="vyw30 == vyw400",fontsize=16,color="magenta"];1105 -> 518[label="",style="dashed", color="red", weight=0]; 1105[label="vyw30 == vyw400",fontsize=16,color="magenta"];1106 -> 519[label="",style="dashed", color="red", weight=0]; 1106[label="vyw30 == vyw400",fontsize=16,color="magenta"];1107 -> 520[label="",style="dashed", color="red", weight=0]; 1107[label="vyw30 == vyw400",fontsize=16,color="magenta"];1108 -> 521[label="",style="dashed", color="red", weight=0]; 1108[label="vyw30 == vyw400",fontsize=16,color="magenta"];1109 -> 522[label="",style="dashed", color="red", weight=0]; 1109[label="vyw30 == vyw400",fontsize=16,color="magenta"];1110 -> 523[label="",style="dashed", color="red", weight=0]; 1110[label="vyw30 == vyw400",fontsize=16,color="magenta"];1111 -> 524[label="",style="dashed", color="red", weight=0]; 1111[label="vyw30 == vyw400",fontsize=16,color="magenta"];1112 -> 525[label="",style="dashed", color="red", weight=0]; 1112[label="vyw30 == vyw400",fontsize=16,color="magenta"];1113 -> 526[label="",style="dashed", color="red", weight=0]; 1113[label="vyw30 == vyw400",fontsize=16,color="magenta"];1114 -> 527[label="",style="dashed", color="red", weight=0]; 1114[label="vyw30 == vyw400",fontsize=16,color="magenta"];1115[label="False && vyw131",fontsize=16,color="black",shape="box"];1115 -> 1184[label="",style="solid", color="black", weight=3]; 1116[label="True && vyw131",fontsize=16,color="black",shape="box"];1116 -> 1185[label="",style="solid", color="black", weight=3]; 1117[label="compare1 (vyw100,vyw101,vyw102) (vyw103,vyw104,vyw105) ((vyw100,vyw101,vyw102) <= (vyw103,vyw104,vyw105))",fontsize=16,color="black",shape="box"];1117 -> 1186[label="",style="solid", color="black", weight=3]; 1118[label="EQ",fontsize=16,color="green",shape="box"];672[label="vyw400",fontsize=16,color="green",shape="box"];673[label="Pos vyw310",fontsize=16,color="green",shape="box"];674[label="Pos vyw4010",fontsize=16,color="green",shape="box"];675[label="vyw30",fontsize=16,color="green",shape="box"];676[label="vyw400",fontsize=16,color="green",shape="box"];677[label="Neg vyw310",fontsize=16,color="green",shape="box"];678[label="Pos vyw4010",fontsize=16,color="green",shape="box"];679[label="vyw30",fontsize=16,color="green",shape="box"];680[label="vyw400",fontsize=16,color="green",shape="box"];681[label="Pos vyw310",fontsize=16,color="green",shape="box"];682[label="Neg vyw4010",fontsize=16,color="green",shape="box"];683[label="vyw30",fontsize=16,color="green",shape="box"];684[label="vyw400",fontsize=16,color="green",shape="box"];685[label="Neg vyw310",fontsize=16,color="green",shape="box"];686[label="Neg vyw4010",fontsize=16,color="green",shape="box"];687[label="vyw30",fontsize=16,color="green",shape="box"];688[label="vyw400",fontsize=16,color="green",shape="box"];689[label="vyw30",fontsize=16,color="green",shape="box"];514[label="vyw30 == vyw400",fontsize=16,color="burlywood",shape="triangle"];3215[label="vyw30/False",fontsize=10,color="white",style="solid",shape="box"];514 -> 3215[label="",style="solid", color="burlywood", weight=9]; 3215 -> 650[label="",style="solid", color="burlywood", weight=3]; 3216[label="vyw30/True",fontsize=10,color="white",style="solid",shape="box"];514 -> 3216[label="",style="solid", color="burlywood", weight=9]; 3216 -> 651[label="",style="solid", color="burlywood", weight=3]; 690[label="vyw400",fontsize=16,color="green",shape="box"];691[label="vyw30",fontsize=16,color="green",shape="box"];515[label="vyw30 == vyw400",fontsize=16,color="black",shape="triangle"];515 -> 652[label="",style="solid", color="black", weight=3]; 692[label="vyw400",fontsize=16,color="green",shape="box"];693[label="vyw30",fontsize=16,color="green",shape="box"];516[label="vyw30 == vyw400",fontsize=16,color="burlywood",shape="triangle"];3217[label="vyw30/vyw300 : vyw301",fontsize=10,color="white",style="solid",shape="box"];516 -> 3217[label="",style="solid", color="burlywood", weight=9]; 3217 -> 653[label="",style="solid", color="burlywood", weight=3]; 3218[label="vyw30/[]",fontsize=10,color="white",style="solid",shape="box"];516 -> 3218[label="",style="solid", color="burlywood", weight=9]; 3218 -> 654[label="",style="solid", color="burlywood", weight=3]; 694[label="vyw400",fontsize=16,color="green",shape="box"];695[label="vyw30",fontsize=16,color="green",shape="box"];517[label="vyw30 == vyw400",fontsize=16,color="burlywood",shape="triangle"];3219[label="vyw30/(vyw300,vyw301,vyw302)",fontsize=10,color="white",style="solid",shape="box"];517 -> 3219[label="",style="solid", color="burlywood", weight=9]; 3219 -> 655[label="",style="solid", color="burlywood", weight=3]; 696[label="vyw400",fontsize=16,color="green",shape="box"];697[label="vyw30",fontsize=16,color="green",shape="box"];518[label="vyw30 == vyw400",fontsize=16,color="burlywood",shape="triangle"];3220[label="vyw30/Integer vyw300",fontsize=10,color="white",style="solid",shape="box"];518 -> 3220[label="",style="solid", color="burlywood", weight=9]; 3220 -> 656[label="",style="solid", color="burlywood", weight=3]; 698[label="vyw400",fontsize=16,color="green",shape="box"];699[label="vyw30",fontsize=16,color="green",shape="box"];519[label="vyw30 == vyw400",fontsize=16,color="burlywood",shape="triangle"];3221[label="vyw30/Left vyw300",fontsize=10,color="white",style="solid",shape="box"];519 -> 3221[label="",style="solid", color="burlywood", weight=9]; 3221 -> 657[label="",style="solid", color="burlywood", weight=3]; 3222[label="vyw30/Right vyw300",fontsize=10,color="white",style="solid",shape="box"];519 -> 3222[label="",style="solid", color="burlywood", weight=9]; 3222 -> 658[label="",style="solid", color="burlywood", weight=3]; 700[label="vyw400",fontsize=16,color="green",shape="box"];701[label="vyw30",fontsize=16,color="green",shape="box"];520[label="vyw30 == vyw400",fontsize=16,color="black",shape="triangle"];520 -> 659[label="",style="solid", color="black", weight=3]; 702[label="vyw400",fontsize=16,color="green",shape="box"];703[label="vyw30",fontsize=16,color="green",shape="box"];521[label="vyw30 == vyw400",fontsize=16,color="black",shape="triangle"];521 -> 660[label="",style="solid", color="black", weight=3]; 704[label="vyw400",fontsize=16,color="green",shape="box"];705[label="vyw30",fontsize=16,color="green",shape="box"];522[label="vyw30 == vyw400",fontsize=16,color="burlywood",shape="triangle"];3223[label="vyw30/(vyw300,vyw301)",fontsize=10,color="white",style="solid",shape="box"];522 -> 3223[label="",style="solid", color="burlywood", weight=9]; 3223 -> 661[label="",style="solid", color="burlywood", weight=3]; 706[label="vyw400",fontsize=16,color="green",shape="box"];707[label="vyw30",fontsize=16,color="green",shape="box"];523[label="vyw30 == vyw400",fontsize=16,color="burlywood",shape="triangle"];3224[label="vyw30/()",fontsize=10,color="white",style="solid",shape="box"];523 -> 3224[label="",style="solid", color="burlywood", weight=9]; 3224 -> 662[label="",style="solid", color="burlywood", weight=3]; 708[label="vyw400",fontsize=16,color="green",shape="box"];709[label="vyw30",fontsize=16,color="green",shape="box"];524[label="vyw30 == vyw400",fontsize=16,color="burlywood",shape="triangle"];3225[label="vyw30/vyw300 :% vyw301",fontsize=10,color="white",style="solid",shape="box"];524 -> 3225[label="",style="solid", color="burlywood", weight=9]; 3225 -> 663[label="",style="solid", color="burlywood", weight=3]; 710[label="vyw400",fontsize=16,color="green",shape="box"];711[label="vyw30",fontsize=16,color="green",shape="box"];525[label="vyw30 == vyw400",fontsize=16,color="burlywood",shape="triangle"];3226[label="vyw30/Nothing",fontsize=10,color="white",style="solid",shape="box"];525 -> 3226[label="",style="solid", color="burlywood", weight=9]; 3226 -> 664[label="",style="solid", color="burlywood", weight=3]; 3227[label="vyw30/Just vyw300",fontsize=10,color="white",style="solid",shape="box"];525 -> 3227[label="",style="solid", color="burlywood", weight=9]; 3227 -> 665[label="",style="solid", color="burlywood", weight=3]; 712[label="vyw400",fontsize=16,color="green",shape="box"];713[label="vyw30",fontsize=16,color="green",shape="box"];526[label="vyw30 == vyw400",fontsize=16,color="black",shape="triangle"];526 -> 666[label="",style="solid", color="black", weight=3]; 714[label="vyw400",fontsize=16,color="green",shape="box"];715[label="vyw30",fontsize=16,color="green",shape="box"];527[label="vyw30 == vyw400",fontsize=16,color="burlywood",shape="triangle"];3228[label="vyw30/LT",fontsize=10,color="white",style="solid",shape="box"];527 -> 3228[label="",style="solid", color="burlywood", weight=9]; 3228 -> 667[label="",style="solid", color="burlywood", weight=3]; 3229[label="vyw30/EQ",fontsize=10,color="white",style="solid",shape="box"];527 -> 3229[label="",style="solid", color="burlywood", weight=9]; 3229 -> 668[label="",style="solid", color="burlywood", weight=3]; 3230[label="vyw30/GT",fontsize=10,color="white",style="solid",shape="box"];527 -> 3230[label="",style="solid", color="burlywood", weight=9]; 3230 -> 669[label="",style="solid", color="burlywood", weight=3]; 716 -> 1149[label="",style="dashed", color="red", weight=0]; 716[label="compare1 (Left vyw59) (Left vyw60) (Left vyw59 <= Left vyw60)",fontsize=16,color="magenta"];716 -> 1150[label="",style="dashed", color="magenta", weight=3]; 716 -> 1151[label="",style="dashed", color="magenta", weight=3]; 716 -> 1152[label="",style="dashed", color="magenta", weight=3]; 717[label="EQ",fontsize=16,color="green",shape="box"];718[label="LT",fontsize=16,color="green",shape="box"];719[label="compare0 (Right vyw30) (Left vyw400) otherwise",fontsize=16,color="black",shape="box"];719 -> 919[label="",style="solid", color="black", weight=3]; 720[label="vyw400",fontsize=16,color="green",shape="box"];721[label="vyw30",fontsize=16,color="green",shape="box"];722[label="vyw400",fontsize=16,color="green",shape="box"];723[label="vyw30",fontsize=16,color="green",shape="box"];724[label="vyw400",fontsize=16,color="green",shape="box"];725[label="vyw30",fontsize=16,color="green",shape="box"];726[label="vyw400",fontsize=16,color="green",shape="box"];727[label="vyw30",fontsize=16,color="green",shape="box"];728[label="vyw400",fontsize=16,color="green",shape="box"];729[label="vyw30",fontsize=16,color="green",shape="box"];730[label="vyw400",fontsize=16,color="green",shape="box"];731[label="vyw30",fontsize=16,color="green",shape="box"];732[label="vyw400",fontsize=16,color="green",shape="box"];733[label="vyw30",fontsize=16,color="green",shape="box"];734[label="vyw400",fontsize=16,color="green",shape="box"];735[label="vyw30",fontsize=16,color="green",shape="box"];736[label="vyw400",fontsize=16,color="green",shape="box"];737[label="vyw30",fontsize=16,color="green",shape="box"];738[label="vyw400",fontsize=16,color="green",shape="box"];739[label="vyw30",fontsize=16,color="green",shape="box"];740[label="vyw400",fontsize=16,color="green",shape="box"];741[label="vyw30",fontsize=16,color="green",shape="box"];742[label="vyw400",fontsize=16,color="green",shape="box"];743[label="vyw30",fontsize=16,color="green",shape="box"];744[label="vyw400",fontsize=16,color="green",shape="box"];745[label="vyw30",fontsize=16,color="green",shape="box"];746[label="vyw400",fontsize=16,color="green",shape="box"];747[label="vyw30",fontsize=16,color="green",shape="box"];748 -> 1248[label="",style="dashed", color="red", weight=0]; 748[label="compare1 (Right vyw66) (Right vyw67) (Right vyw66 <= Right vyw67)",fontsize=16,color="magenta"];748 -> 1249[label="",style="dashed", color="magenta", weight=3]; 748 -> 1250[label="",style="dashed", color="magenta", weight=3]; 748 -> 1251[label="",style="dashed", color="magenta", weight=3]; 749[label="EQ",fontsize=16,color="green",shape="box"];750[label="vyw400",fontsize=16,color="green",shape="box"];751[label="vyw30",fontsize=16,color="green",shape="box"];752[label="vyw400",fontsize=16,color="green",shape="box"];753[label="vyw30",fontsize=16,color="green",shape="box"];754[label="vyw400",fontsize=16,color="green",shape="box"];755[label="vyw30",fontsize=16,color="green",shape="box"];756[label="vyw400",fontsize=16,color="green",shape="box"];757[label="vyw30",fontsize=16,color="green",shape="box"];758[label="vyw400",fontsize=16,color="green",shape="box"];759[label="vyw30",fontsize=16,color="green",shape="box"];760[label="vyw400",fontsize=16,color="green",shape="box"];761[label="vyw30",fontsize=16,color="green",shape="box"];762[label="vyw400",fontsize=16,color="green",shape="box"];763[label="vyw30",fontsize=16,color="green",shape="box"];764[label="vyw400",fontsize=16,color="green",shape="box"];765[label="vyw30",fontsize=16,color="green",shape="box"];766[label="vyw400",fontsize=16,color="green",shape="box"];767[label="vyw30",fontsize=16,color="green",shape="box"];768[label="vyw400",fontsize=16,color="green",shape="box"];769[label="vyw30",fontsize=16,color="green",shape="box"];770[label="vyw400",fontsize=16,color="green",shape="box"];771[label="vyw30",fontsize=16,color="green",shape="box"];772[label="vyw400",fontsize=16,color="green",shape="box"];773[label="vyw30",fontsize=16,color="green",shape="box"];774[label="vyw400",fontsize=16,color="green",shape="box"];775[label="vyw30",fontsize=16,color="green",shape="box"];776[label="vyw400",fontsize=16,color="green",shape="box"];777[label="vyw30",fontsize=16,color="green",shape="box"];778[label="LT",fontsize=16,color="green",shape="box"];779[label="vyw72",fontsize=16,color="green",shape="box"];780[label="GT",fontsize=16,color="green",shape="box"];781[label="LT",fontsize=16,color="green",shape="box"];782[label="compare0 True False otherwise",fontsize=16,color="black",shape="box"];782 -> 921[label="",style="solid", color="black", weight=3]; 1119 -> 514[label="",style="dashed", color="red", weight=0]; 1119[label="vyw31 == vyw401",fontsize=16,color="magenta"];1119 -> 1187[label="",style="dashed", color="magenta", weight=3]; 1119 -> 1188[label="",style="dashed", color="magenta", weight=3]; 1120 -> 515[label="",style="dashed", color="red", weight=0]; 1120[label="vyw31 == vyw401",fontsize=16,color="magenta"];1120 -> 1189[label="",style="dashed", color="magenta", weight=3]; 1120 -> 1190[label="",style="dashed", color="magenta", weight=3]; 1121 -> 516[label="",style="dashed", color="red", weight=0]; 1121[label="vyw31 == vyw401",fontsize=16,color="magenta"];1121 -> 1191[label="",style="dashed", color="magenta", weight=3]; 1121 -> 1192[label="",style="dashed", color="magenta", weight=3]; 1122 -> 517[label="",style="dashed", color="red", weight=0]; 1122[label="vyw31 == vyw401",fontsize=16,color="magenta"];1122 -> 1193[label="",style="dashed", color="magenta", weight=3]; 1122 -> 1194[label="",style="dashed", color="magenta", weight=3]; 1123 -> 518[label="",style="dashed", color="red", weight=0]; 1123[label="vyw31 == vyw401",fontsize=16,color="magenta"];1123 -> 1195[label="",style="dashed", color="magenta", weight=3]; 1123 -> 1196[label="",style="dashed", color="magenta", weight=3]; 1124 -> 519[label="",style="dashed", color="red", weight=0]; 1124[label="vyw31 == vyw401",fontsize=16,color="magenta"];1124 -> 1197[label="",style="dashed", color="magenta", weight=3]; 1124 -> 1198[label="",style="dashed", color="magenta", weight=3]; 1125 -> 520[label="",style="dashed", color="red", weight=0]; 1125[label="vyw31 == vyw401",fontsize=16,color="magenta"];1125 -> 1199[label="",style="dashed", color="magenta", weight=3]; 1125 -> 1200[label="",style="dashed", color="magenta", weight=3]; 1126 -> 521[label="",style="dashed", color="red", weight=0]; 1126[label="vyw31 == vyw401",fontsize=16,color="magenta"];1126 -> 1201[label="",style="dashed", color="magenta", weight=3]; 1126 -> 1202[label="",style="dashed", color="magenta", weight=3]; 1127 -> 522[label="",style="dashed", color="red", weight=0]; 1127[label="vyw31 == vyw401",fontsize=16,color="magenta"];1127 -> 1203[label="",style="dashed", color="magenta", weight=3]; 1127 -> 1204[label="",style="dashed", color="magenta", weight=3]; 1128 -> 523[label="",style="dashed", color="red", weight=0]; 1128[label="vyw31 == vyw401",fontsize=16,color="magenta"];1128 -> 1205[label="",style="dashed", color="magenta", weight=3]; 1128 -> 1206[label="",style="dashed", color="magenta", weight=3]; 1129 -> 524[label="",style="dashed", color="red", weight=0]; 1129[label="vyw31 == vyw401",fontsize=16,color="magenta"];1129 -> 1207[label="",style="dashed", color="magenta", weight=3]; 1129 -> 1208[label="",style="dashed", color="magenta", weight=3]; 1130 -> 525[label="",style="dashed", color="red", weight=0]; 1130[label="vyw31 == vyw401",fontsize=16,color="magenta"];1130 -> 1209[label="",style="dashed", color="magenta", weight=3]; 1130 -> 1210[label="",style="dashed", color="magenta", weight=3]; 1131 -> 526[label="",style="dashed", color="red", weight=0]; 1131[label="vyw31 == vyw401",fontsize=16,color="magenta"];1131 -> 1211[label="",style="dashed", color="magenta", weight=3]; 1131 -> 1212[label="",style="dashed", color="magenta", weight=3]; 1132 -> 527[label="",style="dashed", color="red", weight=0]; 1132[label="vyw31 == vyw401",fontsize=16,color="magenta"];1132 -> 1213[label="",style="dashed", color="magenta", weight=3]; 1132 -> 1214[label="",style="dashed", color="magenta", weight=3]; 1133 -> 514[label="",style="dashed", color="red", weight=0]; 1133[label="vyw30 == vyw400",fontsize=16,color="magenta"];1133 -> 1215[label="",style="dashed", color="magenta", weight=3]; 1133 -> 1216[label="",style="dashed", color="magenta", weight=3]; 1134 -> 515[label="",style="dashed", color="red", weight=0]; 1134[label="vyw30 == vyw400",fontsize=16,color="magenta"];1134 -> 1217[label="",style="dashed", color="magenta", weight=3]; 1134 -> 1218[label="",style="dashed", color="magenta", weight=3]; 1135 -> 516[label="",style="dashed", color="red", weight=0]; 1135[label="vyw30 == vyw400",fontsize=16,color="magenta"];1135 -> 1219[label="",style="dashed", color="magenta", weight=3]; 1135 -> 1220[label="",style="dashed", color="magenta", weight=3]; 1136 -> 517[label="",style="dashed", color="red", weight=0]; 1136[label="vyw30 == vyw400",fontsize=16,color="magenta"];1136 -> 1221[label="",style="dashed", color="magenta", weight=3]; 1136 -> 1222[label="",style="dashed", color="magenta", weight=3]; 1137 -> 518[label="",style="dashed", color="red", weight=0]; 1137[label="vyw30 == vyw400",fontsize=16,color="magenta"];1137 -> 1223[label="",style="dashed", color="magenta", weight=3]; 1137 -> 1224[label="",style="dashed", color="magenta", weight=3]; 1138 -> 519[label="",style="dashed", color="red", weight=0]; 1138[label="vyw30 == vyw400",fontsize=16,color="magenta"];1138 -> 1225[label="",style="dashed", color="magenta", weight=3]; 1138 -> 1226[label="",style="dashed", color="magenta", weight=3]; 1139 -> 520[label="",style="dashed", color="red", weight=0]; 1139[label="vyw30 == vyw400",fontsize=16,color="magenta"];1139 -> 1227[label="",style="dashed", color="magenta", weight=3]; 1139 -> 1228[label="",style="dashed", color="magenta", weight=3]; 1140 -> 521[label="",style="dashed", color="red", weight=0]; 1140[label="vyw30 == vyw400",fontsize=16,color="magenta"];1140 -> 1229[label="",style="dashed", color="magenta", weight=3]; 1140 -> 1230[label="",style="dashed", color="magenta", weight=3]; 1141 -> 522[label="",style="dashed", color="red", weight=0]; 1141[label="vyw30 == vyw400",fontsize=16,color="magenta"];1141 -> 1231[label="",style="dashed", color="magenta", weight=3]; 1141 -> 1232[label="",style="dashed", color="magenta", weight=3]; 1142 -> 523[label="",style="dashed", color="red", weight=0]; 1142[label="vyw30 == vyw400",fontsize=16,color="magenta"];1142 -> 1233[label="",style="dashed", color="magenta", weight=3]; 1142 -> 1234[label="",style="dashed", color="magenta", weight=3]; 1143 -> 524[label="",style="dashed", color="red", weight=0]; 1143[label="vyw30 == vyw400",fontsize=16,color="magenta"];1143 -> 1235[label="",style="dashed", color="magenta", weight=3]; 1143 -> 1236[label="",style="dashed", color="magenta", weight=3]; 1144 -> 525[label="",style="dashed", color="red", weight=0]; 1144[label="vyw30 == vyw400",fontsize=16,color="magenta"];1144 -> 1237[label="",style="dashed", color="magenta", weight=3]; 1144 -> 1238[label="",style="dashed", color="magenta", weight=3]; 1145 -> 526[label="",style="dashed", color="red", weight=0]; 1145[label="vyw30 == vyw400",fontsize=16,color="magenta"];1145 -> 1239[label="",style="dashed", color="magenta", weight=3]; 1145 -> 1240[label="",style="dashed", color="magenta", weight=3]; 1146 -> 527[label="",style="dashed", color="red", weight=0]; 1146[label="vyw30 == vyw400",fontsize=16,color="magenta"];1146 -> 1241[label="",style="dashed", color="magenta", weight=3]; 1146 -> 1242[label="",style="dashed", color="magenta", weight=3]; 1147[label="compare1 (vyw113,vyw114) (vyw115,vyw116) ((vyw113,vyw114) <= (vyw115,vyw116))",fontsize=16,color="black",shape="box"];1147 -> 1243[label="",style="solid", color="black", weight=3]; 1148[label="EQ",fontsize=16,color="green",shape="box"];813[label="LT",fontsize=16,color="green",shape="box"];814[label="LT",fontsize=16,color="green",shape="box"];815[label="compare0 EQ LT otherwise",fontsize=16,color="black",shape="box"];815 -> 966[label="",style="solid", color="black", weight=3]; 816[label="LT",fontsize=16,color="green",shape="box"];817[label="compare0 GT LT otherwise",fontsize=16,color="black",shape="box"];817 -> 967[label="",style="solid", color="black", weight=3]; 818[label="compare0 GT EQ otherwise",fontsize=16,color="black",shape="box"];818 -> 968[label="",style="solid", color="black", weight=3]; 819[label="LT",fontsize=16,color="green",shape="box"];820[label="compare0 (Just vyw30) Nothing otherwise",fontsize=16,color="black",shape="box"];820 -> 969[label="",style="solid", color="black", weight=3]; 821[label="vyw400",fontsize=16,color="green",shape="box"];822[label="vyw30",fontsize=16,color="green",shape="box"];823[label="vyw400",fontsize=16,color="green",shape="box"];824[label="vyw30",fontsize=16,color="green",shape="box"];825[label="vyw400",fontsize=16,color="green",shape="box"];826[label="vyw30",fontsize=16,color="green",shape="box"];827[label="vyw400",fontsize=16,color="green",shape="box"];828[label="vyw30",fontsize=16,color="green",shape="box"];829[label="vyw400",fontsize=16,color="green",shape="box"];830[label="vyw30",fontsize=16,color="green",shape="box"];831[label="vyw400",fontsize=16,color="green",shape="box"];832[label="vyw30",fontsize=16,color="green",shape="box"];833[label="vyw400",fontsize=16,color="green",shape="box"];834[label="vyw30",fontsize=16,color="green",shape="box"];835[label="vyw400",fontsize=16,color="green",shape="box"];836[label="vyw30",fontsize=16,color="green",shape="box"];837[label="vyw400",fontsize=16,color="green",shape="box"];838[label="vyw30",fontsize=16,color="green",shape="box"];839[label="vyw400",fontsize=16,color="green",shape="box"];840[label="vyw30",fontsize=16,color="green",shape="box"];841[label="vyw400",fontsize=16,color="green",shape="box"];842[label="vyw30",fontsize=16,color="green",shape="box"];843[label="vyw400",fontsize=16,color="green",shape="box"];844[label="vyw30",fontsize=16,color="green",shape="box"];845[label="vyw400",fontsize=16,color="green",shape="box"];846[label="vyw30",fontsize=16,color="green",shape="box"];847[label="vyw400",fontsize=16,color="green",shape="box"];848[label="vyw30",fontsize=16,color="green",shape="box"];849 -> 1323[label="",style="dashed", color="red", weight=0]; 849[label="compare1 (Just vyw89) (Just vyw90) (Just vyw89 <= Just vyw90)",fontsize=16,color="magenta"];849 -> 1324[label="",style="dashed", color="magenta", weight=3]; 849 -> 1325[label="",style="dashed", color="magenta", weight=3]; 849 -> 1326[label="",style="dashed", color="magenta", weight=3]; 850[label="EQ",fontsize=16,color="green",shape="box"];851[label="Integer (primMulInt vyw4000 vyw310)",fontsize=16,color="green",shape="box"];851 -> 971[label="",style="dashed", color="green", weight=3]; 852[label="primMulInt (Pos vyw4000) (Pos vyw310)",fontsize=16,color="black",shape="box"];852 -> 972[label="",style="solid", color="black", weight=3]; 853[label="primMulInt (Pos vyw4000) (Neg vyw310)",fontsize=16,color="black",shape="box"];853 -> 973[label="",style="solid", color="black", weight=3]; 854[label="primMulInt (Neg vyw4000) (Pos vyw310)",fontsize=16,color="black",shape="box"];854 -> 974[label="",style="solid", color="black", weight=3]; 855[label="primMulInt (Neg vyw4000) (Neg vyw310)",fontsize=16,color="black",shape="box"];855 -> 975[label="",style="solid", color="black", weight=3]; 856[label="vyw400",fontsize=16,color="green",shape="box"];857[label="Pos vyw310",fontsize=16,color="green",shape="box"];858[label="Pos vyw4010",fontsize=16,color="green",shape="box"];859[label="vyw30",fontsize=16,color="green",shape="box"];860[label="vyw400",fontsize=16,color="green",shape="box"];861[label="Neg vyw310",fontsize=16,color="green",shape="box"];862[label="Pos vyw4010",fontsize=16,color="green",shape="box"];863[label="vyw30",fontsize=16,color="green",shape="box"];864[label="vyw400",fontsize=16,color="green",shape="box"];865[label="Pos vyw310",fontsize=16,color="green",shape="box"];866[label="Neg vyw4010",fontsize=16,color="green",shape="box"];867[label="vyw30",fontsize=16,color="green",shape="box"];868[label="vyw400",fontsize=16,color="green",shape="box"];869[label="Neg vyw310",fontsize=16,color="green",shape="box"];870[label="Neg vyw4010",fontsize=16,color="green",shape="box"];871[label="vyw30",fontsize=16,color="green",shape="box"];872[label="vyw300",fontsize=16,color="green",shape="box"];873[label="vyw4000",fontsize=16,color="green",shape="box"];1156 -> 514[label="",style="dashed", color="red", weight=0]; 1156[label="vyw32 == vyw402",fontsize=16,color="magenta"];1156 -> 1255[label="",style="dashed", color="magenta", weight=3]; 1156 -> 1256[label="",style="dashed", color="magenta", weight=3]; 1157 -> 515[label="",style="dashed", color="red", weight=0]; 1157[label="vyw32 == vyw402",fontsize=16,color="magenta"];1157 -> 1257[label="",style="dashed", color="magenta", weight=3]; 1157 -> 1258[label="",style="dashed", color="magenta", weight=3]; 1158 -> 516[label="",style="dashed", color="red", weight=0]; 1158[label="vyw32 == vyw402",fontsize=16,color="magenta"];1158 -> 1259[label="",style="dashed", color="magenta", weight=3]; 1158 -> 1260[label="",style="dashed", color="magenta", weight=3]; 1159 -> 517[label="",style="dashed", color="red", weight=0]; 1159[label="vyw32 == vyw402",fontsize=16,color="magenta"];1159 -> 1261[label="",style="dashed", color="magenta", weight=3]; 1159 -> 1262[label="",style="dashed", color="magenta", weight=3]; 1160 -> 518[label="",style="dashed", color="red", weight=0]; 1160[label="vyw32 == vyw402",fontsize=16,color="magenta"];1160 -> 1263[label="",style="dashed", color="magenta", weight=3]; 1160 -> 1264[label="",style="dashed", color="magenta", weight=3]; 1161 -> 519[label="",style="dashed", color="red", weight=0]; 1161[label="vyw32 == vyw402",fontsize=16,color="magenta"];1161 -> 1265[label="",style="dashed", color="magenta", weight=3]; 1161 -> 1266[label="",style="dashed", color="magenta", weight=3]; 1162 -> 520[label="",style="dashed", color="red", weight=0]; 1162[label="vyw32 == vyw402",fontsize=16,color="magenta"];1162 -> 1267[label="",style="dashed", color="magenta", weight=3]; 1162 -> 1268[label="",style="dashed", color="magenta", weight=3]; 1163 -> 521[label="",style="dashed", color="red", weight=0]; 1163[label="vyw32 == vyw402",fontsize=16,color="magenta"];1163 -> 1269[label="",style="dashed", color="magenta", weight=3]; 1163 -> 1270[label="",style="dashed", color="magenta", weight=3]; 1164 -> 522[label="",style="dashed", color="red", weight=0]; 1164[label="vyw32 == vyw402",fontsize=16,color="magenta"];1164 -> 1271[label="",style="dashed", color="magenta", weight=3]; 1164 -> 1272[label="",style="dashed", color="magenta", weight=3]; 1165 -> 523[label="",style="dashed", color="red", weight=0]; 1165[label="vyw32 == vyw402",fontsize=16,color="magenta"];1165 -> 1273[label="",style="dashed", color="magenta", weight=3]; 1165 -> 1274[label="",style="dashed", color="magenta", weight=3]; 1166 -> 524[label="",style="dashed", color="red", weight=0]; 1166[label="vyw32 == vyw402",fontsize=16,color="magenta"];1166 -> 1275[label="",style="dashed", color="magenta", weight=3]; 1166 -> 1276[label="",style="dashed", color="magenta", weight=3]; 1167 -> 525[label="",style="dashed", color="red", weight=0]; 1167[label="vyw32 == vyw402",fontsize=16,color="magenta"];1167 -> 1277[label="",style="dashed", color="magenta", weight=3]; 1167 -> 1278[label="",style="dashed", color="magenta", weight=3]; 1168 -> 526[label="",style="dashed", color="red", weight=0]; 1168[label="vyw32 == vyw402",fontsize=16,color="magenta"];1168 -> 1279[label="",style="dashed", color="magenta", weight=3]; 1168 -> 1280[label="",style="dashed", color="magenta", weight=3]; 1169 -> 527[label="",style="dashed", color="red", weight=0]; 1169[label="vyw32 == vyw402",fontsize=16,color="magenta"];1169 -> 1281[label="",style="dashed", color="magenta", weight=3]; 1169 -> 1282[label="",style="dashed", color="magenta", weight=3]; 1170 -> 514[label="",style="dashed", color="red", weight=0]; 1170[label="vyw31 == vyw401",fontsize=16,color="magenta"];1170 -> 1283[label="",style="dashed", color="magenta", weight=3]; 1170 -> 1284[label="",style="dashed", color="magenta", weight=3]; 1171 -> 515[label="",style="dashed", color="red", weight=0]; 1171[label="vyw31 == vyw401",fontsize=16,color="magenta"];1171 -> 1285[label="",style="dashed", color="magenta", weight=3]; 1171 -> 1286[label="",style="dashed", color="magenta", weight=3]; 1172 -> 516[label="",style="dashed", color="red", weight=0]; 1172[label="vyw31 == vyw401",fontsize=16,color="magenta"];1172 -> 1287[label="",style="dashed", color="magenta", weight=3]; 1172 -> 1288[label="",style="dashed", color="magenta", weight=3]; 1173 -> 517[label="",style="dashed", color="red", weight=0]; 1173[label="vyw31 == vyw401",fontsize=16,color="magenta"];1173 -> 1289[label="",style="dashed", color="magenta", weight=3]; 1173 -> 1290[label="",style="dashed", color="magenta", weight=3]; 1174 -> 518[label="",style="dashed", color="red", weight=0]; 1174[label="vyw31 == vyw401",fontsize=16,color="magenta"];1174 -> 1291[label="",style="dashed", color="magenta", weight=3]; 1174 -> 1292[label="",style="dashed", color="magenta", weight=3]; 1175 -> 519[label="",style="dashed", color="red", weight=0]; 1175[label="vyw31 == vyw401",fontsize=16,color="magenta"];1175 -> 1293[label="",style="dashed", color="magenta", weight=3]; 1175 -> 1294[label="",style="dashed", color="magenta", weight=3]; 1176 -> 520[label="",style="dashed", color="red", weight=0]; 1176[label="vyw31 == vyw401",fontsize=16,color="magenta"];1176 -> 1295[label="",style="dashed", color="magenta", weight=3]; 1176 -> 1296[label="",style="dashed", color="magenta", weight=3]; 1177 -> 521[label="",style="dashed", color="red", weight=0]; 1177[label="vyw31 == vyw401",fontsize=16,color="magenta"];1177 -> 1297[label="",style="dashed", color="magenta", weight=3]; 1177 -> 1298[label="",style="dashed", color="magenta", weight=3]; 1178 -> 522[label="",style="dashed", color="red", weight=0]; 1178[label="vyw31 == vyw401",fontsize=16,color="magenta"];1178 -> 1299[label="",style="dashed", color="magenta", weight=3]; 1178 -> 1300[label="",style="dashed", color="magenta", weight=3]; 1179 -> 523[label="",style="dashed", color="red", weight=0]; 1179[label="vyw31 == vyw401",fontsize=16,color="magenta"];1179 -> 1301[label="",style="dashed", color="magenta", weight=3]; 1179 -> 1302[label="",style="dashed", color="magenta", weight=3]; 1180 -> 524[label="",style="dashed", color="red", weight=0]; 1180[label="vyw31 == vyw401",fontsize=16,color="magenta"];1180 -> 1303[label="",style="dashed", color="magenta", weight=3]; 1180 -> 1304[label="",style="dashed", color="magenta", weight=3]; 1181 -> 525[label="",style="dashed", color="red", weight=0]; 1181[label="vyw31 == vyw401",fontsize=16,color="magenta"];1181 -> 1305[label="",style="dashed", color="magenta", weight=3]; 1181 -> 1306[label="",style="dashed", color="magenta", weight=3]; 1182 -> 526[label="",style="dashed", color="red", weight=0]; 1182[label="vyw31 == vyw401",fontsize=16,color="magenta"];1182 -> 1307[label="",style="dashed", color="magenta", weight=3]; 1182 -> 1308[label="",style="dashed", color="magenta", weight=3]; 1183 -> 527[label="",style="dashed", color="red", weight=0]; 1183[label="vyw31 == vyw401",fontsize=16,color="magenta"];1183 -> 1309[label="",style="dashed", color="magenta", weight=3]; 1183 -> 1310[label="",style="dashed", color="magenta", weight=3]; 1184[label="False",fontsize=16,color="green",shape="box"];1185[label="vyw131",fontsize=16,color="green",shape="box"];1186 -> 1341[label="",style="dashed", color="red", weight=0]; 1186[label="compare1 (vyw100,vyw101,vyw102) (vyw103,vyw104,vyw105) (vyw100 < vyw103 || vyw100 == vyw103 && (vyw101 < vyw104 || vyw101 == vyw104 && vyw102 <= vyw105))",fontsize=16,color="magenta"];1186 -> 1342[label="",style="dashed", color="magenta", weight=3]; 1186 -> 1343[label="",style="dashed", color="magenta", weight=3]; 1186 -> 1344[label="",style="dashed", color="magenta", weight=3]; 1186 -> 1345[label="",style="dashed", color="magenta", weight=3]; 1186 -> 1346[label="",style="dashed", color="magenta", weight=3]; 1186 -> 1347[label="",style="dashed", color="magenta", weight=3]; 1186 -> 1348[label="",style="dashed", color="magenta", weight=3]; 1186 -> 1349[label="",style="dashed", color="magenta", weight=3]; 650[label="False == vyw400",fontsize=16,color="burlywood",shape="box"];3231[label="vyw400/False",fontsize=10,color="white",style="solid",shape="box"];650 -> 3231[label="",style="solid", color="burlywood", weight=9]; 3231 -> 874[label="",style="solid", color="burlywood", weight=3]; 3232[label="vyw400/True",fontsize=10,color="white",style="solid",shape="box"];650 -> 3232[label="",style="solid", color="burlywood", weight=9]; 3232 -> 875[label="",style="solid", color="burlywood", weight=3]; 651[label="True == vyw400",fontsize=16,color="burlywood",shape="box"];3233[label="vyw400/False",fontsize=10,color="white",style="solid",shape="box"];651 -> 3233[label="",style="solid", color="burlywood", weight=9]; 3233 -> 876[label="",style="solid", color="burlywood", weight=3]; 3234[label="vyw400/True",fontsize=10,color="white",style="solid",shape="box"];651 -> 3234[label="",style="solid", color="burlywood", weight=9]; 3234 -> 877[label="",style="solid", color="burlywood", weight=3]; 652[label="primEqDouble vyw30 vyw400",fontsize=16,color="burlywood",shape="box"];3235[label="vyw30/Double vyw300 vyw301",fontsize=10,color="white",style="solid",shape="box"];652 -> 3235[label="",style="solid", color="burlywood", weight=9]; 3235 -> 878[label="",style="solid", color="burlywood", weight=3]; 653[label="vyw300 : vyw301 == vyw400",fontsize=16,color="burlywood",shape="box"];3236[label="vyw400/vyw4000 : vyw4001",fontsize=10,color="white",style="solid",shape="box"];653 -> 3236[label="",style="solid", color="burlywood", weight=9]; 3236 -> 879[label="",style="solid", color="burlywood", weight=3]; 3237[label="vyw400/[]",fontsize=10,color="white",style="solid",shape="box"];653 -> 3237[label="",style="solid", color="burlywood", weight=9]; 3237 -> 880[label="",style="solid", color="burlywood", weight=3]; 654[label="[] == vyw400",fontsize=16,color="burlywood",shape="box"];3238[label="vyw400/vyw4000 : vyw4001",fontsize=10,color="white",style="solid",shape="box"];654 -> 3238[label="",style="solid", color="burlywood", weight=9]; 3238 -> 881[label="",style="solid", color="burlywood", weight=3]; 3239[label="vyw400/[]",fontsize=10,color="white",style="solid",shape="box"];654 -> 3239[label="",style="solid", color="burlywood", weight=9]; 3239 -> 882[label="",style="solid", color="burlywood", weight=3]; 655[label="(vyw300,vyw301,vyw302) == vyw400",fontsize=16,color="burlywood",shape="box"];3240[label="vyw400/(vyw4000,vyw4001,vyw4002)",fontsize=10,color="white",style="solid",shape="box"];655 -> 3240[label="",style="solid", color="burlywood", weight=9]; 3240 -> 883[label="",style="solid", color="burlywood", weight=3]; 656[label="Integer vyw300 == vyw400",fontsize=16,color="burlywood",shape="box"];3241[label="vyw400/Integer vyw4000",fontsize=10,color="white",style="solid",shape="box"];656 -> 3241[label="",style="solid", color="burlywood", weight=9]; 3241 -> 884[label="",style="solid", color="burlywood", weight=3]; 657[label="Left vyw300 == vyw400",fontsize=16,color="burlywood",shape="box"];3242[label="vyw400/Left vyw4000",fontsize=10,color="white",style="solid",shape="box"];657 -> 3242[label="",style="solid", color="burlywood", weight=9]; 3242 -> 885[label="",style="solid", color="burlywood", weight=3]; 3243[label="vyw400/Right vyw4000",fontsize=10,color="white",style="solid",shape="box"];657 -> 3243[label="",style="solid", color="burlywood", weight=9]; 3243 -> 886[label="",style="solid", color="burlywood", weight=3]; 658[label="Right vyw300 == vyw400",fontsize=16,color="burlywood",shape="box"];3244[label="vyw400/Left vyw4000",fontsize=10,color="white",style="solid",shape="box"];658 -> 3244[label="",style="solid", color="burlywood", weight=9]; 3244 -> 887[label="",style="solid", color="burlywood", weight=3]; 3245[label="vyw400/Right vyw4000",fontsize=10,color="white",style="solid",shape="box"];658 -> 3245[label="",style="solid", color="burlywood", weight=9]; 3245 -> 888[label="",style="solid", color="burlywood", weight=3]; 659[label="primEqChar vyw30 vyw400",fontsize=16,color="burlywood",shape="box"];3246[label="vyw30/Char vyw300",fontsize=10,color="white",style="solid",shape="box"];659 -> 3246[label="",style="solid", color="burlywood", weight=9]; 3246 -> 889[label="",style="solid", color="burlywood", weight=3]; 660[label="primEqInt vyw30 vyw400",fontsize=16,color="burlywood",shape="triangle"];3247[label="vyw30/Pos vyw300",fontsize=10,color="white",style="solid",shape="box"];660 -> 3247[label="",style="solid", color="burlywood", weight=9]; 3247 -> 890[label="",style="solid", color="burlywood", weight=3]; 3248[label="vyw30/Neg vyw300",fontsize=10,color="white",style="solid",shape="box"];660 -> 3248[label="",style="solid", color="burlywood", weight=9]; 3248 -> 891[label="",style="solid", color="burlywood", weight=3]; 661[label="(vyw300,vyw301) == vyw400",fontsize=16,color="burlywood",shape="box"];3249[label="vyw400/(vyw4000,vyw4001)",fontsize=10,color="white",style="solid",shape="box"];661 -> 3249[label="",style="solid", color="burlywood", weight=9]; 3249 -> 892[label="",style="solid", color="burlywood", weight=3]; 662[label="() == vyw400",fontsize=16,color="burlywood",shape="box"];3250[label="vyw400/()",fontsize=10,color="white",style="solid",shape="box"];662 -> 3250[label="",style="solid", color="burlywood", weight=9]; 3250 -> 893[label="",style="solid", color="burlywood", weight=3]; 663[label="vyw300 :% vyw301 == vyw400",fontsize=16,color="burlywood",shape="box"];3251[label="vyw400/vyw4000 :% vyw4001",fontsize=10,color="white",style="solid",shape="box"];663 -> 3251[label="",style="solid", color="burlywood", weight=9]; 3251 -> 894[label="",style="solid", color="burlywood", weight=3]; 664[label="Nothing == vyw400",fontsize=16,color="burlywood",shape="box"];3252[label="vyw400/Nothing",fontsize=10,color="white",style="solid",shape="box"];664 -> 3252[label="",style="solid", color="burlywood", weight=9]; 3252 -> 895[label="",style="solid", color="burlywood", weight=3]; 3253[label="vyw400/Just vyw4000",fontsize=10,color="white",style="solid",shape="box"];664 -> 3253[label="",style="solid", color="burlywood", weight=9]; 3253 -> 896[label="",style="solid", color="burlywood", weight=3]; 665[label="Just vyw300 == vyw400",fontsize=16,color="burlywood",shape="box"];3254[label="vyw400/Nothing",fontsize=10,color="white",style="solid",shape="box"];665 -> 3254[label="",style="solid", color="burlywood", weight=9]; 3254 -> 897[label="",style="solid", color="burlywood", weight=3]; 3255[label="vyw400/Just vyw4000",fontsize=10,color="white",style="solid",shape="box"];665 -> 3255[label="",style="solid", color="burlywood", weight=9]; 3255 -> 898[label="",style="solid", color="burlywood", weight=3]; 666[label="primEqFloat vyw30 vyw400",fontsize=16,color="burlywood",shape="box"];3256[label="vyw30/Float vyw300 vyw301",fontsize=10,color="white",style="solid",shape="box"];666 -> 3256[label="",style="solid", color="burlywood", weight=9]; 3256 -> 899[label="",style="solid", color="burlywood", weight=3]; 667[label="LT == vyw400",fontsize=16,color="burlywood",shape="box"];3257[label="vyw400/LT",fontsize=10,color="white",style="solid",shape="box"];667 -> 3257[label="",style="solid", color="burlywood", weight=9]; 3257 -> 900[label="",style="solid", color="burlywood", weight=3]; 3258[label="vyw400/EQ",fontsize=10,color="white",style="solid",shape="box"];667 -> 3258[label="",style="solid", color="burlywood", weight=9]; 3258 -> 901[label="",style="solid", color="burlywood", weight=3]; 3259[label="vyw400/GT",fontsize=10,color="white",style="solid",shape="box"];667 -> 3259[label="",style="solid", color="burlywood", weight=9]; 3259 -> 902[label="",style="solid", color="burlywood", weight=3]; 668[label="EQ == vyw400",fontsize=16,color="burlywood",shape="box"];3260[label="vyw400/LT",fontsize=10,color="white",style="solid",shape="box"];668 -> 3260[label="",style="solid", color="burlywood", weight=9]; 3260 -> 903[label="",style="solid", color="burlywood", weight=3]; 3261[label="vyw400/EQ",fontsize=10,color="white",style="solid",shape="box"];668 -> 3261[label="",style="solid", color="burlywood", weight=9]; 3261 -> 904[label="",style="solid", color="burlywood", weight=3]; 3262[label="vyw400/GT",fontsize=10,color="white",style="solid",shape="box"];668 -> 3262[label="",style="solid", color="burlywood", weight=9]; 3262 -> 905[label="",style="solid", color="burlywood", weight=3]; 669[label="GT == vyw400",fontsize=16,color="burlywood",shape="box"];3263[label="vyw400/LT",fontsize=10,color="white",style="solid",shape="box"];669 -> 3263[label="",style="solid", color="burlywood", weight=9]; 3263 -> 906[label="",style="solid", color="burlywood", weight=3]; 3264[label="vyw400/EQ",fontsize=10,color="white",style="solid",shape="box"];669 -> 3264[label="",style="solid", color="burlywood", weight=9]; 3264 -> 907[label="",style="solid", color="burlywood", weight=3]; 3265[label="vyw400/GT",fontsize=10,color="white",style="solid",shape="box"];669 -> 3265[label="",style="solid", color="burlywood", weight=9]; 3265 -> 908[label="",style="solid", color="burlywood", weight=3]; 1150[label="vyw60",fontsize=16,color="green",shape="box"];1151[label="vyw59",fontsize=16,color="green",shape="box"];1152[label="Left vyw59 <= Left vyw60",fontsize=16,color="black",shape="box"];1152 -> 1244[label="",style="solid", color="black", weight=3]; 1149[label="compare1 (Left vyw136) (Left vyw137) vyw138",fontsize=16,color="burlywood",shape="triangle"];3266[label="vyw138/False",fontsize=10,color="white",style="solid",shape="box"];1149 -> 3266[label="",style="solid", color="burlywood", weight=9]; 3266 -> 1245[label="",style="solid", color="burlywood", weight=3]; 3267[label="vyw138/True",fontsize=10,color="white",style="solid",shape="box"];1149 -> 3267[label="",style="solid", color="burlywood", weight=9]; 3267 -> 1246[label="",style="solid", color="burlywood", weight=3]; 919[label="compare0 (Right vyw30) (Left vyw400) True",fontsize=16,color="black",shape="box"];919 -> 1247[label="",style="solid", color="black", weight=3]; 1249[label="vyw67",fontsize=16,color="green",shape="box"];1250[label="vyw66",fontsize=16,color="green",shape="box"];1251[label="Right vyw66 <= Right vyw67",fontsize=16,color="black",shape="box"];1251 -> 1313[label="",style="solid", color="black", weight=3]; 1248[label="compare1 (Right vyw143) (Right vyw144) vyw145",fontsize=16,color="burlywood",shape="triangle"];3268[label="vyw145/False",fontsize=10,color="white",style="solid",shape="box"];1248 -> 3268[label="",style="solid", color="burlywood", weight=9]; 3268 -> 1314[label="",style="solid", color="burlywood", weight=3]; 3269[label="vyw145/True",fontsize=10,color="white",style="solid",shape="box"];1248 -> 3269[label="",style="solid", color="burlywood", weight=9]; 3269 -> 1315[label="",style="solid", color="burlywood", weight=3]; 921[label="compare0 True False True",fontsize=16,color="black",shape="box"];921 -> 1316[label="",style="solid", color="black", weight=3]; 1187[label="vyw401",fontsize=16,color="green",shape="box"];1188[label="vyw31",fontsize=16,color="green",shape="box"];1189[label="vyw401",fontsize=16,color="green",shape="box"];1190[label="vyw31",fontsize=16,color="green",shape="box"];1191[label="vyw401",fontsize=16,color="green",shape="box"];1192[label="vyw31",fontsize=16,color="green",shape="box"];1193[label="vyw401",fontsize=16,color="green",shape="box"];1194[label="vyw31",fontsize=16,color="green",shape="box"];1195[label="vyw401",fontsize=16,color="green",shape="box"];1196[label="vyw31",fontsize=16,color="green",shape="box"];1197[label="vyw401",fontsize=16,color="green",shape="box"];1198[label="vyw31",fontsize=16,color="green",shape="box"];1199[label="vyw401",fontsize=16,color="green",shape="box"];1200[label="vyw31",fontsize=16,color="green",shape="box"];1201[label="vyw401",fontsize=16,color="green",shape="box"];1202[label="vyw31",fontsize=16,color="green",shape="box"];1203[label="vyw401",fontsize=16,color="green",shape="box"];1204[label="vyw31",fontsize=16,color="green",shape="box"];1205[label="vyw401",fontsize=16,color="green",shape="box"];1206[label="vyw31",fontsize=16,color="green",shape="box"];1207[label="vyw401",fontsize=16,color="green",shape="box"];1208[label="vyw31",fontsize=16,color="green",shape="box"];1209[label="vyw401",fontsize=16,color="green",shape="box"];1210[label="vyw31",fontsize=16,color="green",shape="box"];1211[label="vyw401",fontsize=16,color="green",shape="box"];1212[label="vyw31",fontsize=16,color="green",shape="box"];1213[label="vyw401",fontsize=16,color="green",shape="box"];1214[label="vyw31",fontsize=16,color="green",shape="box"];1215[label="vyw400",fontsize=16,color="green",shape="box"];1216[label="vyw30",fontsize=16,color="green",shape="box"];1217[label="vyw400",fontsize=16,color="green",shape="box"];1218[label="vyw30",fontsize=16,color="green",shape="box"];1219[label="vyw400",fontsize=16,color="green",shape="box"];1220[label="vyw30",fontsize=16,color="green",shape="box"];1221[label="vyw400",fontsize=16,color="green",shape="box"];1222[label="vyw30",fontsize=16,color="green",shape="box"];1223[label="vyw400",fontsize=16,color="green",shape="box"];1224[label="vyw30",fontsize=16,color="green",shape="box"];1225[label="vyw400",fontsize=16,color="green",shape="box"];1226[label="vyw30",fontsize=16,color="green",shape="box"];1227[label="vyw400",fontsize=16,color="green",shape="box"];1228[label="vyw30",fontsize=16,color="green",shape="box"];1229[label="vyw400",fontsize=16,color="green",shape="box"];1230[label="vyw30",fontsize=16,color="green",shape="box"];1231[label="vyw400",fontsize=16,color="green",shape="box"];1232[label="vyw30",fontsize=16,color="green",shape="box"];1233[label="vyw400",fontsize=16,color="green",shape="box"];1234[label="vyw30",fontsize=16,color="green",shape="box"];1235[label="vyw400",fontsize=16,color="green",shape="box"];1236[label="vyw30",fontsize=16,color="green",shape="box"];1237[label="vyw400",fontsize=16,color="green",shape="box"];1238[label="vyw30",fontsize=16,color="green",shape="box"];1239[label="vyw400",fontsize=16,color="green",shape="box"];1240[label="vyw30",fontsize=16,color="green",shape="box"];1241[label="vyw400",fontsize=16,color="green",shape="box"];1242[label="vyw30",fontsize=16,color="green",shape="box"];1243 -> 1410[label="",style="dashed", color="red", weight=0]; 1243[label="compare1 (vyw113,vyw114) (vyw115,vyw116) (vyw113 < vyw115 || vyw113 == vyw115 && vyw114 <= vyw116)",fontsize=16,color="magenta"];1243 -> 1411[label="",style="dashed", color="magenta", weight=3]; 1243 -> 1412[label="",style="dashed", color="magenta", weight=3]; 1243 -> 1413[label="",style="dashed", color="magenta", weight=3]; 1243 -> 1414[label="",style="dashed", color="magenta", weight=3]; 1243 -> 1415[label="",style="dashed", color="magenta", weight=3]; 1243 -> 1416[label="",style="dashed", color="magenta", weight=3]; 966[label="compare0 EQ LT True",fontsize=16,color="black",shape="box"];966 -> 1319[label="",style="solid", color="black", weight=3]; 967[label="compare0 GT LT True",fontsize=16,color="black",shape="box"];967 -> 1320[label="",style="solid", color="black", weight=3]; 968[label="compare0 GT EQ True",fontsize=16,color="black",shape="box"];968 -> 1321[label="",style="solid", color="black", weight=3]; 969[label="compare0 (Just vyw30) Nothing True",fontsize=16,color="black",shape="box"];969 -> 1322[label="",style="solid", color="black", weight=3]; 1324[label="Just vyw89 <= Just vyw90",fontsize=16,color="black",shape="box"];1324 -> 1330[label="",style="solid", color="black", weight=3]; 1325[label="vyw90",fontsize=16,color="green",shape="box"];1326[label="vyw89",fontsize=16,color="green",shape="box"];1323[label="compare1 (Just vyw153) (Just vyw154) vyw155",fontsize=16,color="burlywood",shape="triangle"];3270[label="vyw155/False",fontsize=10,color="white",style="solid",shape="box"];1323 -> 3270[label="",style="solid", color="burlywood", weight=9]; 3270 -> 1331[label="",style="solid", color="burlywood", weight=3]; 3271[label="vyw155/True",fontsize=10,color="white",style="solid",shape="box"];1323 -> 3271[label="",style="solid", color="burlywood", weight=9]; 3271 -> 1332[label="",style="solid", color="burlywood", weight=3]; 971 -> 491[label="",style="dashed", color="red", weight=0]; 971[label="primMulInt vyw4000 vyw310",fontsize=16,color="magenta"];971 -> 1333[label="",style="dashed", color="magenta", weight=3]; 971 -> 1334[label="",style="dashed", color="magenta", weight=3]; 972[label="Pos (primMulNat vyw4000 vyw310)",fontsize=16,color="green",shape="box"];972 -> 1335[label="",style="dashed", color="green", weight=3]; 973[label="Neg (primMulNat vyw4000 vyw310)",fontsize=16,color="green",shape="box"];973 -> 1336[label="",style="dashed", color="green", weight=3]; 974[label="Neg (primMulNat vyw4000 vyw310)",fontsize=16,color="green",shape="box"];974 -> 1337[label="",style="dashed", color="green", weight=3]; 975[label="Pos (primMulNat vyw4000 vyw310)",fontsize=16,color="green",shape="box"];975 -> 1338[label="",style="dashed", color="green", weight=3]; 1255[label="vyw402",fontsize=16,color="green",shape="box"];1256[label="vyw32",fontsize=16,color="green",shape="box"];1257[label="vyw402",fontsize=16,color="green",shape="box"];1258[label="vyw32",fontsize=16,color="green",shape="box"];1259[label="vyw402",fontsize=16,color="green",shape="box"];1260[label="vyw32",fontsize=16,color="green",shape="box"];1261[label="vyw402",fontsize=16,color="green",shape="box"];1262[label="vyw32",fontsize=16,color="green",shape="box"];1263[label="vyw402",fontsize=16,color="green",shape="box"];1264[label="vyw32",fontsize=16,color="green",shape="box"];1265[label="vyw402",fontsize=16,color="green",shape="box"];1266[label="vyw32",fontsize=16,color="green",shape="box"];1267[label="vyw402",fontsize=16,color="green",shape="box"];1268[label="vyw32",fontsize=16,color="green",shape="box"];1269[label="vyw402",fontsize=16,color="green",shape="box"];1270[label="vyw32",fontsize=16,color="green",shape="box"];1271[label="vyw402",fontsize=16,color="green",shape="box"];1272[label="vyw32",fontsize=16,color="green",shape="box"];1273[label="vyw402",fontsize=16,color="green",shape="box"];1274[label="vyw32",fontsize=16,color="green",shape="box"];1275[label="vyw402",fontsize=16,color="green",shape="box"];1276[label="vyw32",fontsize=16,color="green",shape="box"];1277[label="vyw402",fontsize=16,color="green",shape="box"];1278[label="vyw32",fontsize=16,color="green",shape="box"];1279[label="vyw402",fontsize=16,color="green",shape="box"];1280[label="vyw32",fontsize=16,color="green",shape="box"];1281[label="vyw402",fontsize=16,color="green",shape="box"];1282[label="vyw32",fontsize=16,color="green",shape="box"];1283[label="vyw401",fontsize=16,color="green",shape="box"];1284[label="vyw31",fontsize=16,color="green",shape="box"];1285[label="vyw401",fontsize=16,color="green",shape="box"];1286[label="vyw31",fontsize=16,color="green",shape="box"];1287[label="vyw401",fontsize=16,color="green",shape="box"];1288[label="vyw31",fontsize=16,color="green",shape="box"];1289[label="vyw401",fontsize=16,color="green",shape="box"];1290[label="vyw31",fontsize=16,color="green",shape="box"];1291[label="vyw401",fontsize=16,color="green",shape="box"];1292[label="vyw31",fontsize=16,color="green",shape="box"];1293[label="vyw401",fontsize=16,color="green",shape="box"];1294[label="vyw31",fontsize=16,color="green",shape="box"];1295[label="vyw401",fontsize=16,color="green",shape="box"];1296[label="vyw31",fontsize=16,color="green",shape="box"];1297[label="vyw401",fontsize=16,color="green",shape="box"];1298[label="vyw31",fontsize=16,color="green",shape="box"];1299[label="vyw401",fontsize=16,color="green",shape="box"];1300[label="vyw31",fontsize=16,color="green",shape="box"];1301[label="vyw401",fontsize=16,color="green",shape="box"];1302[label="vyw31",fontsize=16,color="green",shape="box"];1303[label="vyw401",fontsize=16,color="green",shape="box"];1304[label="vyw31",fontsize=16,color="green",shape="box"];1305[label="vyw401",fontsize=16,color="green",shape="box"];1306[label="vyw31",fontsize=16,color="green",shape="box"];1307[label="vyw401",fontsize=16,color="green",shape="box"];1308[label="vyw31",fontsize=16,color="green",shape="box"];1309[label="vyw401",fontsize=16,color="green",shape="box"];1310[label="vyw31",fontsize=16,color="green",shape="box"];1342[label="vyw100",fontsize=16,color="green",shape="box"];1343[label="vyw100 < vyw103",fontsize=16,color="blue",shape="box"];3272[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1343 -> 3272[label="",style="solid", color="blue", weight=9]; 3272 -> 1358[label="",style="solid", color="blue", weight=3]; 3273[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1343 -> 3273[label="",style="solid", color="blue", weight=9]; 3273 -> 1359[label="",style="solid", color="blue", weight=3]; 3274[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1343 -> 3274[label="",style="solid", color="blue", weight=9]; 3274 -> 1360[label="",style="solid", color="blue", weight=3]; 3275[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1343 -> 3275[label="",style="solid", color="blue", weight=9]; 3275 -> 1361[label="",style="solid", color="blue", weight=3]; 3276[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1343 -> 3276[label="",style="solid", color="blue", weight=9]; 3276 -> 1362[label="",style="solid", color="blue", weight=3]; 3277[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1343 -> 3277[label="",style="solid", color="blue", weight=9]; 3277 -> 1363[label="",style="solid", color="blue", weight=3]; 3278[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1343 -> 3278[label="",style="solid", color="blue", weight=9]; 3278 -> 1364[label="",style="solid", color="blue", weight=3]; 3279[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1343 -> 3279[label="",style="solid", color="blue", weight=9]; 3279 -> 1365[label="",style="solid", color="blue", weight=3]; 3280[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1343 -> 3280[label="",style="solid", color="blue", weight=9]; 3280 -> 1366[label="",style="solid", color="blue", weight=3]; 3281[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1343 -> 3281[label="",style="solid", color="blue", weight=9]; 3281 -> 1367[label="",style="solid", color="blue", weight=3]; 3282[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1343 -> 3282[label="",style="solid", color="blue", weight=9]; 3282 -> 1368[label="",style="solid", color="blue", weight=3]; 3283[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1343 -> 3283[label="",style="solid", color="blue", weight=9]; 3283 -> 1369[label="",style="solid", color="blue", weight=3]; 3284[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1343 -> 3284[label="",style="solid", color="blue", weight=9]; 3284 -> 1370[label="",style="solid", color="blue", weight=3]; 3285[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1343 -> 3285[label="",style="solid", color="blue", weight=9]; 3285 -> 1371[label="",style="solid", color="blue", weight=3]; 1344[label="vyw105",fontsize=16,color="green",shape="box"];1345[label="vyw104",fontsize=16,color="green",shape="box"];1346 -> 1080[label="",style="dashed", color="red", weight=0]; 1346[label="vyw100 == vyw103 && (vyw101 < vyw104 || vyw101 == vyw104 && vyw102 <= vyw105)",fontsize=16,color="magenta"];1346 -> 1372[label="",style="dashed", color="magenta", weight=3]; 1346 -> 1373[label="",style="dashed", color="magenta", weight=3]; 1347[label="vyw101",fontsize=16,color="green",shape="box"];1348[label="vyw102",fontsize=16,color="green",shape="box"];1349[label="vyw103",fontsize=16,color="green",shape="box"];1341[label="compare1 (vyw165,vyw166,vyw167) (vyw168,vyw169,vyw170) (vyw171 || vyw172)",fontsize=16,color="burlywood",shape="triangle"];3286[label="vyw171/False",fontsize=10,color="white",style="solid",shape="box"];1341 -> 3286[label="",style="solid", color="burlywood", weight=9]; 3286 -> 1374[label="",style="solid", color="burlywood", weight=3]; 3287[label="vyw171/True",fontsize=10,color="white",style="solid",shape="box"];1341 -> 3287[label="",style="solid", color="burlywood", weight=9]; 3287 -> 1375[label="",style="solid", color="burlywood", weight=3]; 874[label="False == False",fontsize=16,color="black",shape="box"];874 -> 976[label="",style="solid", color="black", weight=3]; 875[label="False == True",fontsize=16,color="black",shape="box"];875 -> 977[label="",style="solid", color="black", weight=3]; 876[label="True == False",fontsize=16,color="black",shape="box"];876 -> 978[label="",style="solid", color="black", weight=3]; 877[label="True == True",fontsize=16,color="black",shape="box"];877 -> 979[label="",style="solid", color="black", weight=3]; 878[label="primEqDouble (Double vyw300 vyw301) vyw400",fontsize=16,color="burlywood",shape="box"];3288[label="vyw400/Double vyw4000 vyw4001",fontsize=10,color="white",style="solid",shape="box"];878 -> 3288[label="",style="solid", color="burlywood", weight=9]; 3288 -> 980[label="",style="solid", color="burlywood", weight=3]; 879[label="vyw300 : vyw301 == vyw4000 : vyw4001",fontsize=16,color="black",shape="box"];879 -> 981[label="",style="solid", color="black", weight=3]; 880[label="vyw300 : vyw301 == []",fontsize=16,color="black",shape="box"];880 -> 982[label="",style="solid", color="black", weight=3]; 881[label="[] == vyw4000 : vyw4001",fontsize=16,color="black",shape="box"];881 -> 983[label="",style="solid", color="black", weight=3]; 882[label="[] == []",fontsize=16,color="black",shape="box"];882 -> 984[label="",style="solid", color="black", weight=3]; 883[label="(vyw300,vyw301,vyw302) == (vyw4000,vyw4001,vyw4002)",fontsize=16,color="black",shape="box"];883 -> 985[label="",style="solid", color="black", weight=3]; 884[label="Integer vyw300 == Integer vyw4000",fontsize=16,color="black",shape="box"];884 -> 986[label="",style="solid", color="black", weight=3]; 885[label="Left vyw300 == Left vyw4000",fontsize=16,color="black",shape="box"];885 -> 987[label="",style="solid", color="black", weight=3]; 886[label="Left vyw300 == Right vyw4000",fontsize=16,color="black",shape="box"];886 -> 988[label="",style="solid", color="black", weight=3]; 887[label="Right vyw300 == Left vyw4000",fontsize=16,color="black",shape="box"];887 -> 989[label="",style="solid", color="black", weight=3]; 888[label="Right vyw300 == Right vyw4000",fontsize=16,color="black",shape="box"];888 -> 990[label="",style="solid", color="black", weight=3]; 889[label="primEqChar (Char vyw300) vyw400",fontsize=16,color="burlywood",shape="box"];3289[label="vyw400/Char vyw4000",fontsize=10,color="white",style="solid",shape="box"];889 -> 3289[label="",style="solid", color="burlywood", weight=9]; 3289 -> 991[label="",style="solid", color="burlywood", weight=3]; 890[label="primEqInt (Pos vyw300) vyw400",fontsize=16,color="burlywood",shape="box"];3290[label="vyw300/Succ vyw3000",fontsize=10,color="white",style="solid",shape="box"];890 -> 3290[label="",style="solid", color="burlywood", weight=9]; 3290 -> 992[label="",style="solid", color="burlywood", weight=3]; 3291[label="vyw300/Zero",fontsize=10,color="white",style="solid",shape="box"];890 -> 3291[label="",style="solid", color="burlywood", weight=9]; 3291 -> 993[label="",style="solid", color="burlywood", weight=3]; 891[label="primEqInt (Neg vyw300) vyw400",fontsize=16,color="burlywood",shape="box"];3292[label="vyw300/Succ vyw3000",fontsize=10,color="white",style="solid",shape="box"];891 -> 3292[label="",style="solid", color="burlywood", weight=9]; 3292 -> 994[label="",style="solid", color="burlywood", weight=3]; 3293[label="vyw300/Zero",fontsize=10,color="white",style="solid",shape="box"];891 -> 3293[label="",style="solid", color="burlywood", weight=9]; 3293 -> 995[label="",style="solid", color="burlywood", weight=3]; 892[label="(vyw300,vyw301) == (vyw4000,vyw4001)",fontsize=16,color="black",shape="box"];892 -> 996[label="",style="solid", color="black", weight=3]; 893[label="() == ()",fontsize=16,color="black",shape="box"];893 -> 997[label="",style="solid", color="black", weight=3]; 894[label="vyw300 :% vyw301 == vyw4000 :% vyw4001",fontsize=16,color="black",shape="box"];894 -> 998[label="",style="solid", color="black", weight=3]; 895[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];895 -> 999[label="",style="solid", color="black", weight=3]; 896[label="Nothing == Just vyw4000",fontsize=16,color="black",shape="box"];896 -> 1000[label="",style="solid", color="black", weight=3]; 897[label="Just vyw300 == Nothing",fontsize=16,color="black",shape="box"];897 -> 1001[label="",style="solid", color="black", weight=3]; 898[label="Just vyw300 == Just vyw4000",fontsize=16,color="black",shape="box"];898 -> 1002[label="",style="solid", color="black", weight=3]; 899[label="primEqFloat (Float vyw300 vyw301) vyw400",fontsize=16,color="burlywood",shape="box"];3294[label="vyw400/Float vyw4000 vyw4001",fontsize=10,color="white",style="solid",shape="box"];899 -> 3294[label="",style="solid", color="burlywood", weight=9]; 3294 -> 1003[label="",style="solid", color="burlywood", weight=3]; 900[label="LT == LT",fontsize=16,color="black",shape="box"];900 -> 1004[label="",style="solid", color="black", weight=3]; 901[label="LT == EQ",fontsize=16,color="black",shape="box"];901 -> 1005[label="",style="solid", color="black", weight=3]; 902[label="LT == GT",fontsize=16,color="black",shape="box"];902 -> 1006[label="",style="solid", color="black", weight=3]; 903[label="EQ == LT",fontsize=16,color="black",shape="box"];903 -> 1007[label="",style="solid", color="black", weight=3]; 904[label="EQ == EQ",fontsize=16,color="black",shape="box"];904 -> 1008[label="",style="solid", color="black", weight=3]; 905[label="EQ == GT",fontsize=16,color="black",shape="box"];905 -> 1009[label="",style="solid", color="black", weight=3]; 906[label="GT == LT",fontsize=16,color="black",shape="box"];906 -> 1010[label="",style="solid", color="black", weight=3]; 907[label="GT == EQ",fontsize=16,color="black",shape="box"];907 -> 1011[label="",style="solid", color="black", weight=3]; 908[label="GT == GT",fontsize=16,color="black",shape="box"];908 -> 1012[label="",style="solid", color="black", weight=3]; 1244[label="vyw59 <= vyw60",fontsize=16,color="blue",shape="box"];3295[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1244 -> 3295[label="",style="solid", color="blue", weight=9]; 3295 -> 1376[label="",style="solid", color="blue", weight=3]; 3296[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1244 -> 3296[label="",style="solid", color="blue", weight=9]; 3296 -> 1377[label="",style="solid", color="blue", weight=3]; 3297[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1244 -> 3297[label="",style="solid", color="blue", weight=9]; 3297 -> 1378[label="",style="solid", color="blue", weight=3]; 3298[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1244 -> 3298[label="",style="solid", color="blue", weight=9]; 3298 -> 1379[label="",style="solid", color="blue", weight=3]; 3299[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1244 -> 3299[label="",style="solid", color="blue", weight=9]; 3299 -> 1380[label="",style="solid", color="blue", weight=3]; 3300[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1244 -> 3300[label="",style="solid", color="blue", weight=9]; 3300 -> 1381[label="",style="solid", color="blue", weight=3]; 3301[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1244 -> 3301[label="",style="solid", color="blue", weight=9]; 3301 -> 1382[label="",style="solid", color="blue", weight=3]; 3302[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1244 -> 3302[label="",style="solid", color="blue", weight=9]; 3302 -> 1383[label="",style="solid", color="blue", weight=3]; 3303[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1244 -> 3303[label="",style="solid", color="blue", weight=9]; 3303 -> 1384[label="",style="solid", color="blue", weight=3]; 3304[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1244 -> 3304[label="",style="solid", color="blue", weight=9]; 3304 -> 1385[label="",style="solid", color="blue", weight=3]; 3305[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1244 -> 3305[label="",style="solid", color="blue", weight=9]; 3305 -> 1386[label="",style="solid", color="blue", weight=3]; 3306[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1244 -> 3306[label="",style="solid", color="blue", weight=9]; 3306 -> 1387[label="",style="solid", color="blue", weight=3]; 3307[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1244 -> 3307[label="",style="solid", color="blue", weight=9]; 3307 -> 1388[label="",style="solid", color="blue", weight=3]; 3308[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1244 -> 3308[label="",style="solid", color="blue", weight=9]; 3308 -> 1389[label="",style="solid", color="blue", weight=3]; 1245[label="compare1 (Left vyw136) (Left vyw137) False",fontsize=16,color="black",shape="box"];1245 -> 1390[label="",style="solid", color="black", weight=3]; 1246[label="compare1 (Left vyw136) (Left vyw137) True",fontsize=16,color="black",shape="box"];1246 -> 1391[label="",style="solid", color="black", weight=3]; 1247[label="GT",fontsize=16,color="green",shape="box"];1313[label="vyw66 <= vyw67",fontsize=16,color="blue",shape="box"];3309[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1313 -> 3309[label="",style="solid", color="blue", weight=9]; 3309 -> 1392[label="",style="solid", color="blue", weight=3]; 3310[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1313 -> 3310[label="",style="solid", color="blue", weight=9]; 3310 -> 1393[label="",style="solid", color="blue", weight=3]; 3311[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1313 -> 3311[label="",style="solid", color="blue", weight=9]; 3311 -> 1394[label="",style="solid", color="blue", weight=3]; 3312[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1313 -> 3312[label="",style="solid", color="blue", weight=9]; 3312 -> 1395[label="",style="solid", color="blue", weight=3]; 3313[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1313 -> 3313[label="",style="solid", color="blue", weight=9]; 3313 -> 1396[label="",style="solid", color="blue", weight=3]; 3314[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1313 -> 3314[label="",style="solid", color="blue", weight=9]; 3314 -> 1397[label="",style="solid", color="blue", weight=3]; 3315[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1313 -> 3315[label="",style="solid", color="blue", weight=9]; 3315 -> 1398[label="",style="solid", color="blue", weight=3]; 3316[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1313 -> 3316[label="",style="solid", color="blue", weight=9]; 3316 -> 1399[label="",style="solid", color="blue", weight=3]; 3317[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1313 -> 3317[label="",style="solid", color="blue", weight=9]; 3317 -> 1400[label="",style="solid", color="blue", weight=3]; 3318[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1313 -> 3318[label="",style="solid", color="blue", weight=9]; 3318 -> 1401[label="",style="solid", color="blue", weight=3]; 3319[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1313 -> 3319[label="",style="solid", color="blue", weight=9]; 3319 -> 1402[label="",style="solid", color="blue", weight=3]; 3320[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1313 -> 3320[label="",style="solid", color="blue", weight=9]; 3320 -> 1403[label="",style="solid", color="blue", weight=3]; 3321[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1313 -> 3321[label="",style="solid", color="blue", weight=9]; 3321 -> 1404[label="",style="solid", color="blue", weight=3]; 3322[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1313 -> 3322[label="",style="solid", color="blue", weight=9]; 3322 -> 1405[label="",style="solid", color="blue", weight=3]; 1314[label="compare1 (Right vyw143) (Right vyw144) False",fontsize=16,color="black",shape="box"];1314 -> 1406[label="",style="solid", color="black", weight=3]; 1315[label="compare1 (Right vyw143) (Right vyw144) True",fontsize=16,color="black",shape="box"];1315 -> 1407[label="",style="solid", color="black", weight=3]; 1316[label="GT",fontsize=16,color="green",shape="box"];1411[label="vyw113 < vyw115",fontsize=16,color="blue",shape="box"];3323[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1411 -> 3323[label="",style="solid", color="blue", weight=9]; 3323 -> 1423[label="",style="solid", color="blue", weight=3]; 3324[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1411 -> 3324[label="",style="solid", color="blue", weight=9]; 3324 -> 1424[label="",style="solid", color="blue", weight=3]; 3325[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1411 -> 3325[label="",style="solid", color="blue", weight=9]; 3325 -> 1425[label="",style="solid", color="blue", weight=3]; 3326[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1411 -> 3326[label="",style="solid", color="blue", weight=9]; 3326 -> 1426[label="",style="solid", color="blue", weight=3]; 3327[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1411 -> 3327[label="",style="solid", color="blue", weight=9]; 3327 -> 1427[label="",style="solid", color="blue", weight=3]; 3328[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1411 -> 3328[label="",style="solid", color="blue", weight=9]; 3328 -> 1428[label="",style="solid", color="blue", weight=3]; 3329[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1411 -> 3329[label="",style="solid", color="blue", weight=9]; 3329 -> 1429[label="",style="solid", color="blue", weight=3]; 3330[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1411 -> 3330[label="",style="solid", color="blue", weight=9]; 3330 -> 1430[label="",style="solid", color="blue", weight=3]; 3331[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1411 -> 3331[label="",style="solid", color="blue", weight=9]; 3331 -> 1431[label="",style="solid", color="blue", weight=3]; 3332[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1411 -> 3332[label="",style="solid", color="blue", weight=9]; 3332 -> 1432[label="",style="solid", color="blue", weight=3]; 3333[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1411 -> 3333[label="",style="solid", color="blue", weight=9]; 3333 -> 1433[label="",style="solid", color="blue", weight=3]; 3334[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1411 -> 3334[label="",style="solid", color="blue", weight=9]; 3334 -> 1434[label="",style="solid", color="blue", weight=3]; 3335[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1411 -> 3335[label="",style="solid", color="blue", weight=9]; 3335 -> 1435[label="",style="solid", color="blue", weight=3]; 3336[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1411 -> 3336[label="",style="solid", color="blue", weight=9]; 3336 -> 1436[label="",style="solid", color="blue", weight=3]; 1412[label="vyw114",fontsize=16,color="green",shape="box"];1413[label="vyw113",fontsize=16,color="green",shape="box"];1414[label="vyw115",fontsize=16,color="green",shape="box"];1415 -> 1080[label="",style="dashed", color="red", weight=0]; 1415[label="vyw113 == vyw115 && vyw114 <= vyw116",fontsize=16,color="magenta"];1415 -> 1437[label="",style="dashed", color="magenta", weight=3]; 1415 -> 1438[label="",style="dashed", color="magenta", weight=3]; 1416[label="vyw116",fontsize=16,color="green",shape="box"];1410[label="compare1 (vyw180,vyw181) (vyw182,vyw183) (vyw184 || vyw185)",fontsize=16,color="burlywood",shape="triangle"];3337[label="vyw184/False",fontsize=10,color="white",style="solid",shape="box"];1410 -> 3337[label="",style="solid", color="burlywood", weight=9]; 3337 -> 1439[label="",style="solid", color="burlywood", weight=3]; 3338[label="vyw184/True",fontsize=10,color="white",style="solid",shape="box"];1410 -> 3338[label="",style="solid", color="burlywood", weight=9]; 3338 -> 1440[label="",style="solid", color="burlywood", weight=3]; 1319[label="GT",fontsize=16,color="green",shape="box"];1320[label="GT",fontsize=16,color="green",shape="box"];1321[label="GT",fontsize=16,color="green",shape="box"];1322[label="GT",fontsize=16,color="green",shape="box"];1330[label="vyw89 <= vyw90",fontsize=16,color="blue",shape="box"];3339[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1330 -> 3339[label="",style="solid", color="blue", weight=9]; 3339 -> 1441[label="",style="solid", color="blue", weight=3]; 3340[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1330 -> 3340[label="",style="solid", color="blue", weight=9]; 3340 -> 1442[label="",style="solid", color="blue", weight=3]; 3341[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1330 -> 3341[label="",style="solid", color="blue", weight=9]; 3341 -> 1443[label="",style="solid", color="blue", weight=3]; 3342[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1330 -> 3342[label="",style="solid", color="blue", weight=9]; 3342 -> 1444[label="",style="solid", color="blue", weight=3]; 3343[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1330 -> 3343[label="",style="solid", color="blue", weight=9]; 3343 -> 1445[label="",style="solid", color="blue", weight=3]; 3344[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1330 -> 3344[label="",style="solid", color="blue", weight=9]; 3344 -> 1446[label="",style="solid", color="blue", weight=3]; 3345[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1330 -> 3345[label="",style="solid", color="blue", weight=9]; 3345 -> 1447[label="",style="solid", color="blue", weight=3]; 3346[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1330 -> 3346[label="",style="solid", color="blue", weight=9]; 3346 -> 1448[label="",style="solid", color="blue", weight=3]; 3347[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1330 -> 3347[label="",style="solid", color="blue", weight=9]; 3347 -> 1449[label="",style="solid", color="blue", weight=3]; 3348[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1330 -> 3348[label="",style="solid", color="blue", weight=9]; 3348 -> 1450[label="",style="solid", color="blue", weight=3]; 3349[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1330 -> 3349[label="",style="solid", color="blue", weight=9]; 3349 -> 1451[label="",style="solid", color="blue", weight=3]; 3350[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1330 -> 3350[label="",style="solid", color="blue", weight=9]; 3350 -> 1452[label="",style="solid", color="blue", weight=3]; 3351[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1330 -> 3351[label="",style="solid", color="blue", weight=9]; 3351 -> 1453[label="",style="solid", color="blue", weight=3]; 3352[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1330 -> 3352[label="",style="solid", color="blue", weight=9]; 3352 -> 1454[label="",style="solid", color="blue", weight=3]; 1331[label="compare1 (Just vyw153) (Just vyw154) False",fontsize=16,color="black",shape="box"];1331 -> 1455[label="",style="solid", color="black", weight=3]; 1332[label="compare1 (Just vyw153) (Just vyw154) True",fontsize=16,color="black",shape="box"];1332 -> 1456[label="",style="solid", color="black", weight=3]; 1333[label="vyw310",fontsize=16,color="green",shape="box"];1334[label="vyw4000",fontsize=16,color="green",shape="box"];1335[label="primMulNat vyw4000 vyw310",fontsize=16,color="burlywood",shape="triangle"];3353[label="vyw4000/Succ vyw40000",fontsize=10,color="white",style="solid",shape="box"];1335 -> 3353[label="",style="solid", color="burlywood", weight=9]; 3353 -> 1457[label="",style="solid", color="burlywood", weight=3]; 3354[label="vyw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1335 -> 3354[label="",style="solid", color="burlywood", weight=9]; 3354 -> 1458[label="",style="solid", color="burlywood", weight=3]; 1336 -> 1335[label="",style="dashed", color="red", weight=0]; 1336[label="primMulNat vyw4000 vyw310",fontsize=16,color="magenta"];1336 -> 1459[label="",style="dashed", color="magenta", weight=3]; 1337 -> 1335[label="",style="dashed", color="red", weight=0]; 1337[label="primMulNat vyw4000 vyw310",fontsize=16,color="magenta"];1337 -> 1460[label="",style="dashed", color="magenta", weight=3]; 1338 -> 1335[label="",style="dashed", color="red", weight=0]; 1338[label="primMulNat vyw4000 vyw310",fontsize=16,color="magenta"];1338 -> 1461[label="",style="dashed", color="magenta", weight=3]; 1338 -> 1462[label="",style="dashed", color="magenta", weight=3]; 1358 -> 21[label="",style="dashed", color="red", weight=0]; 1358[label="vyw100 < vyw103",fontsize=16,color="magenta"];1358 -> 1463[label="",style="dashed", color="magenta", weight=3]; 1358 -> 1464[label="",style="dashed", color="magenta", weight=3]; 1359 -> 22[label="",style="dashed", color="red", weight=0]; 1359[label="vyw100 < vyw103",fontsize=16,color="magenta"];1359 -> 1465[label="",style="dashed", color="magenta", weight=3]; 1359 -> 1466[label="",style="dashed", color="magenta", weight=3]; 1360 -> 23[label="",style="dashed", color="red", weight=0]; 1360[label="vyw100 < vyw103",fontsize=16,color="magenta"];1360 -> 1467[label="",style="dashed", color="magenta", weight=3]; 1360 -> 1468[label="",style="dashed", color="magenta", weight=3]; 1361 -> 24[label="",style="dashed", color="red", weight=0]; 1361[label="vyw100 < vyw103",fontsize=16,color="magenta"];1361 -> 1469[label="",style="dashed", color="magenta", weight=3]; 1361 -> 1470[label="",style="dashed", color="magenta", weight=3]; 1362 -> 25[label="",style="dashed", color="red", weight=0]; 1362[label="vyw100 < vyw103",fontsize=16,color="magenta"];1362 -> 1471[label="",style="dashed", color="magenta", weight=3]; 1362 -> 1472[label="",style="dashed", color="magenta", weight=3]; 1363 -> 26[label="",style="dashed", color="red", weight=0]; 1363[label="vyw100 < vyw103",fontsize=16,color="magenta"];1363 -> 1473[label="",style="dashed", color="magenta", weight=3]; 1363 -> 1474[label="",style="dashed", color="magenta", weight=3]; 1364 -> 27[label="",style="dashed", color="red", weight=0]; 1364[label="vyw100 < vyw103",fontsize=16,color="magenta"];1364 -> 1475[label="",style="dashed", color="magenta", weight=3]; 1364 -> 1476[label="",style="dashed", color="magenta", weight=3]; 1365 -> 28[label="",style="dashed", color="red", weight=0]; 1365[label="vyw100 < vyw103",fontsize=16,color="magenta"];1365 -> 1477[label="",style="dashed", color="magenta", weight=3]; 1365 -> 1478[label="",style="dashed", color="magenta", weight=3]; 1366 -> 29[label="",style="dashed", color="red", weight=0]; 1366[label="vyw100 < vyw103",fontsize=16,color="magenta"];1366 -> 1479[label="",style="dashed", color="magenta", weight=3]; 1366 -> 1480[label="",style="dashed", color="magenta", weight=3]; 1367 -> 30[label="",style="dashed", color="red", weight=0]; 1367[label="vyw100 < vyw103",fontsize=16,color="magenta"];1367 -> 1481[label="",style="dashed", color="magenta", weight=3]; 1367 -> 1482[label="",style="dashed", color="magenta", weight=3]; 1368 -> 31[label="",style="dashed", color="red", weight=0]; 1368[label="vyw100 < vyw103",fontsize=16,color="magenta"];1368 -> 1483[label="",style="dashed", color="magenta", weight=3]; 1368 -> 1484[label="",style="dashed", color="magenta", weight=3]; 1369 -> 32[label="",style="dashed", color="red", weight=0]; 1369[label="vyw100 < vyw103",fontsize=16,color="magenta"];1369 -> 1485[label="",style="dashed", color="magenta", weight=3]; 1369 -> 1486[label="",style="dashed", color="magenta", weight=3]; 1370 -> 33[label="",style="dashed", color="red", weight=0]; 1370[label="vyw100 < vyw103",fontsize=16,color="magenta"];1370 -> 1487[label="",style="dashed", color="magenta", weight=3]; 1370 -> 1488[label="",style="dashed", color="magenta", weight=3]; 1371 -> 34[label="",style="dashed", color="red", weight=0]; 1371[label="vyw100 < vyw103",fontsize=16,color="magenta"];1371 -> 1489[label="",style="dashed", color="magenta", weight=3]; 1371 -> 1490[label="",style="dashed", color="magenta", weight=3]; 1372 -> 1706[label="",style="dashed", color="red", weight=0]; 1372[label="vyw101 < vyw104 || vyw101 == vyw104 && vyw102 <= vyw105",fontsize=16,color="magenta"];1372 -> 1707[label="",style="dashed", color="magenta", weight=3]; 1372 -> 1708[label="",style="dashed", color="magenta", weight=3]; 1373[label="vyw100 == vyw103",fontsize=16,color="blue",shape="box"];3355[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1373 -> 3355[label="",style="solid", color="blue", weight=9]; 3355 -> 1493[label="",style="solid", color="blue", weight=3]; 3356[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1373 -> 3356[label="",style="solid", color="blue", weight=9]; 3356 -> 1494[label="",style="solid", color="blue", weight=3]; 3357[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1373 -> 3357[label="",style="solid", color="blue", weight=9]; 3357 -> 1495[label="",style="solid", color="blue", weight=3]; 3358[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1373 -> 3358[label="",style="solid", color="blue", weight=9]; 3358 -> 1496[label="",style="solid", color="blue", weight=3]; 3359[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1373 -> 3359[label="",style="solid", color="blue", weight=9]; 3359 -> 1497[label="",style="solid", color="blue", weight=3]; 3360[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1373 -> 3360[label="",style="solid", color="blue", weight=9]; 3360 -> 1498[label="",style="solid", color="blue", weight=3]; 3361[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1373 -> 3361[label="",style="solid", color="blue", weight=9]; 3361 -> 1499[label="",style="solid", color="blue", weight=3]; 3362[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1373 -> 3362[label="",style="solid", color="blue", weight=9]; 3362 -> 1500[label="",style="solid", color="blue", weight=3]; 3363[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1373 -> 3363[label="",style="solid", color="blue", weight=9]; 3363 -> 1501[label="",style="solid", color="blue", weight=3]; 3364[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1373 -> 3364[label="",style="solid", color="blue", weight=9]; 3364 -> 1502[label="",style="solid", color="blue", weight=3]; 3365[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1373 -> 3365[label="",style="solid", color="blue", weight=9]; 3365 -> 1503[label="",style="solid", color="blue", weight=3]; 3366[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1373 -> 3366[label="",style="solid", color="blue", weight=9]; 3366 -> 1504[label="",style="solid", color="blue", weight=3]; 3367[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1373 -> 3367[label="",style="solid", color="blue", weight=9]; 3367 -> 1505[label="",style="solid", color="blue", weight=3]; 3368[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1373 -> 3368[label="",style="solid", color="blue", weight=9]; 3368 -> 1506[label="",style="solid", color="blue", weight=3]; 1374[label="compare1 (vyw165,vyw166,vyw167) (vyw168,vyw169,vyw170) (False || vyw172)",fontsize=16,color="black",shape="box"];1374 -> 1507[label="",style="solid", color="black", weight=3]; 1375[label="compare1 (vyw165,vyw166,vyw167) (vyw168,vyw169,vyw170) (True || vyw172)",fontsize=16,color="black",shape="box"];1375 -> 1508[label="",style="solid", color="black", weight=3]; 976[label="True",fontsize=16,color="green",shape="box"];977[label="False",fontsize=16,color="green",shape="box"];978[label="False",fontsize=16,color="green",shape="box"];979[label="True",fontsize=16,color="green",shape="box"];980[label="primEqDouble (Double vyw300 vyw301) (Double vyw4000 vyw4001)",fontsize=16,color="black",shape="box"];980 -> 1509[label="",style="solid", color="black", weight=3]; 981 -> 1080[label="",style="dashed", color="red", weight=0]; 981[label="vyw300 == vyw4000 && vyw301 == vyw4001",fontsize=16,color="magenta"];981 -> 1089[label="",style="dashed", color="magenta", weight=3]; 981 -> 1090[label="",style="dashed", color="magenta", weight=3]; 982[label="False",fontsize=16,color="green",shape="box"];983[label="False",fontsize=16,color="green",shape="box"];984[label="True",fontsize=16,color="green",shape="box"];985 -> 1080[label="",style="dashed", color="red", weight=0]; 985[label="vyw300 == vyw4000 && vyw301 == vyw4001 && vyw302 == vyw4002",fontsize=16,color="magenta"];985 -> 1091[label="",style="dashed", color="magenta", weight=3]; 985 -> 1092[label="",style="dashed", color="magenta", weight=3]; 986 -> 660[label="",style="dashed", color="red", weight=0]; 986[label="primEqInt vyw300 vyw4000",fontsize=16,color="magenta"];986 -> 1510[label="",style="dashed", color="magenta", weight=3]; 986 -> 1511[label="",style="dashed", color="magenta", weight=3]; 987[label="vyw300 == vyw4000",fontsize=16,color="blue",shape="box"];3369[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];987 -> 3369[label="",style="solid", color="blue", weight=9]; 3369 -> 1512[label="",style="solid", color="blue", weight=3]; 3370[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];987 -> 3370[label="",style="solid", color="blue", weight=9]; 3370 -> 1513[label="",style="solid", color="blue", weight=3]; 3371[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];987 -> 3371[label="",style="solid", color="blue", weight=9]; 3371 -> 1514[label="",style="solid", color="blue", weight=3]; 3372[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];987 -> 3372[label="",style="solid", color="blue", weight=9]; 3372 -> 1515[label="",style="solid", color="blue", weight=3]; 3373[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];987 -> 3373[label="",style="solid", color="blue", weight=9]; 3373 -> 1516[label="",style="solid", color="blue", weight=3]; 3374[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];987 -> 3374[label="",style="solid", color="blue", weight=9]; 3374 -> 1517[label="",style="solid", color="blue", weight=3]; 3375[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];987 -> 3375[label="",style="solid", color="blue", weight=9]; 3375 -> 1518[label="",style="solid", color="blue", weight=3]; 3376[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];987 -> 3376[label="",style="solid", color="blue", weight=9]; 3376 -> 1519[label="",style="solid", color="blue", weight=3]; 3377[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];987 -> 3377[label="",style="solid", color="blue", weight=9]; 3377 -> 1520[label="",style="solid", color="blue", weight=3]; 3378[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];987 -> 3378[label="",style="solid", color="blue", weight=9]; 3378 -> 1521[label="",style="solid", color="blue", weight=3]; 3379[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];987 -> 3379[label="",style="solid", color="blue", weight=9]; 3379 -> 1522[label="",style="solid", color="blue", weight=3]; 3380[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];987 -> 3380[label="",style="solid", color="blue", weight=9]; 3380 -> 1523[label="",style="solid", color="blue", weight=3]; 3381[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];987 -> 3381[label="",style="solid", color="blue", weight=9]; 3381 -> 1524[label="",style="solid", color="blue", weight=3]; 3382[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];987 -> 3382[label="",style="solid", color="blue", weight=9]; 3382 -> 1525[label="",style="solid", color="blue", weight=3]; 988[label="False",fontsize=16,color="green",shape="box"];989[label="False",fontsize=16,color="green",shape="box"];990[label="vyw300 == vyw4000",fontsize=16,color="blue",shape="box"];3383[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];990 -> 3383[label="",style="solid", color="blue", weight=9]; 3383 -> 1526[label="",style="solid", color="blue", weight=3]; 3384[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];990 -> 3384[label="",style="solid", color="blue", weight=9]; 3384 -> 1527[label="",style="solid", color="blue", weight=3]; 3385[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];990 -> 3385[label="",style="solid", color="blue", weight=9]; 3385 -> 1528[label="",style="solid", color="blue", weight=3]; 3386[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];990 -> 3386[label="",style="solid", color="blue", weight=9]; 3386 -> 1529[label="",style="solid", color="blue", weight=3]; 3387[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];990 -> 3387[label="",style="solid", color="blue", weight=9]; 3387 -> 1530[label="",style="solid", color="blue", weight=3]; 3388[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];990 -> 3388[label="",style="solid", color="blue", weight=9]; 3388 -> 1531[label="",style="solid", color="blue", weight=3]; 3389[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];990 -> 3389[label="",style="solid", color="blue", weight=9]; 3389 -> 1532[label="",style="solid", color="blue", weight=3]; 3390[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];990 -> 3390[label="",style="solid", color="blue", weight=9]; 3390 -> 1533[label="",style="solid", color="blue", weight=3]; 3391[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];990 -> 3391[label="",style="solid", color="blue", weight=9]; 3391 -> 1534[label="",style="solid", color="blue", weight=3]; 3392[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];990 -> 3392[label="",style="solid", color="blue", weight=9]; 3392 -> 1535[label="",style="solid", color="blue", weight=3]; 3393[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];990 -> 3393[label="",style="solid", color="blue", weight=9]; 3393 -> 1536[label="",style="solid", color="blue", weight=3]; 3394[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];990 -> 3394[label="",style="solid", color="blue", weight=9]; 3394 -> 1537[label="",style="solid", color="blue", weight=3]; 3395[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];990 -> 3395[label="",style="solid", color="blue", weight=9]; 3395 -> 1538[label="",style="solid", color="blue", weight=3]; 3396[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];990 -> 3396[label="",style="solid", color="blue", weight=9]; 3396 -> 1539[label="",style="solid", color="blue", weight=3]; 991[label="primEqChar (Char vyw300) (Char vyw4000)",fontsize=16,color="black",shape="box"];991 -> 1540[label="",style="solid", color="black", weight=3]; 992[label="primEqInt (Pos (Succ vyw3000)) vyw400",fontsize=16,color="burlywood",shape="box"];3397[label="vyw400/Pos vyw4000",fontsize=10,color="white",style="solid",shape="box"];992 -> 3397[label="",style="solid", color="burlywood", weight=9]; 3397 -> 1541[label="",style="solid", color="burlywood", weight=3]; 3398[label="vyw400/Neg vyw4000",fontsize=10,color="white",style="solid",shape="box"];992 -> 3398[label="",style="solid", color="burlywood", weight=9]; 3398 -> 1542[label="",style="solid", color="burlywood", weight=3]; 993[label="primEqInt (Pos Zero) vyw400",fontsize=16,color="burlywood",shape="box"];3399[label="vyw400/Pos vyw4000",fontsize=10,color="white",style="solid",shape="box"];993 -> 3399[label="",style="solid", color="burlywood", weight=9]; 3399 -> 1543[label="",style="solid", color="burlywood", weight=3]; 3400[label="vyw400/Neg vyw4000",fontsize=10,color="white",style="solid",shape="box"];993 -> 3400[label="",style="solid", color="burlywood", weight=9]; 3400 -> 1544[label="",style="solid", color="burlywood", weight=3]; 994[label="primEqInt (Neg (Succ vyw3000)) vyw400",fontsize=16,color="burlywood",shape="box"];3401[label="vyw400/Pos vyw4000",fontsize=10,color="white",style="solid",shape="box"];994 -> 3401[label="",style="solid", color="burlywood", weight=9]; 3401 -> 1545[label="",style="solid", color="burlywood", weight=3]; 3402[label="vyw400/Neg vyw4000",fontsize=10,color="white",style="solid",shape="box"];994 -> 3402[label="",style="solid", color="burlywood", weight=9]; 3402 -> 1546[label="",style="solid", color="burlywood", weight=3]; 995[label="primEqInt (Neg Zero) vyw400",fontsize=16,color="burlywood",shape="box"];3403[label="vyw400/Pos vyw4000",fontsize=10,color="white",style="solid",shape="box"];995 -> 3403[label="",style="solid", color="burlywood", weight=9]; 3403 -> 1547[label="",style="solid", color="burlywood", weight=3]; 3404[label="vyw400/Neg vyw4000",fontsize=10,color="white",style="solid",shape="box"];995 -> 3404[label="",style="solid", color="burlywood", weight=9]; 3404 -> 1548[label="",style="solid", color="burlywood", weight=3]; 996 -> 1080[label="",style="dashed", color="red", weight=0]; 996[label="vyw300 == vyw4000 && vyw301 == vyw4001",fontsize=16,color="magenta"];996 -> 1093[label="",style="dashed", color="magenta", weight=3]; 996 -> 1094[label="",style="dashed", color="magenta", weight=3]; 997[label="True",fontsize=16,color="green",shape="box"];998 -> 1080[label="",style="dashed", color="red", weight=0]; 998[label="vyw300 == vyw4000 && vyw301 == vyw4001",fontsize=16,color="magenta"];998 -> 1095[label="",style="dashed", color="magenta", weight=3]; 998 -> 1096[label="",style="dashed", color="magenta", weight=3]; 999[label="True",fontsize=16,color="green",shape="box"];1000[label="False",fontsize=16,color="green",shape="box"];1001[label="False",fontsize=16,color="green",shape="box"];1002[label="vyw300 == vyw4000",fontsize=16,color="blue",shape="box"];3405[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1002 -> 3405[label="",style="solid", color="blue", weight=9]; 3405 -> 1549[label="",style="solid", color="blue", weight=3]; 3406[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1002 -> 3406[label="",style="solid", color="blue", weight=9]; 3406 -> 1550[label="",style="solid", color="blue", weight=3]; 3407[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1002 -> 3407[label="",style="solid", color="blue", weight=9]; 3407 -> 1551[label="",style="solid", color="blue", weight=3]; 3408[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1002 -> 3408[label="",style="solid", color="blue", weight=9]; 3408 -> 1552[label="",style="solid", color="blue", weight=3]; 3409[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1002 -> 3409[label="",style="solid", color="blue", weight=9]; 3409 -> 1553[label="",style="solid", color="blue", weight=3]; 3410[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1002 -> 3410[label="",style="solid", color="blue", weight=9]; 3410 -> 1554[label="",style="solid", color="blue", weight=3]; 3411[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1002 -> 3411[label="",style="solid", color="blue", weight=9]; 3411 -> 1555[label="",style="solid", color="blue", weight=3]; 3412[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1002 -> 3412[label="",style="solid", color="blue", weight=9]; 3412 -> 1556[label="",style="solid", color="blue", weight=3]; 3413[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1002 -> 3413[label="",style="solid", color="blue", weight=9]; 3413 -> 1557[label="",style="solid", color="blue", weight=3]; 3414[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1002 -> 3414[label="",style="solid", color="blue", weight=9]; 3414 -> 1558[label="",style="solid", color="blue", weight=3]; 3415[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1002 -> 3415[label="",style="solid", color="blue", weight=9]; 3415 -> 1559[label="",style="solid", color="blue", weight=3]; 3416[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1002 -> 3416[label="",style="solid", color="blue", weight=9]; 3416 -> 1560[label="",style="solid", color="blue", weight=3]; 3417[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1002 -> 3417[label="",style="solid", color="blue", weight=9]; 3417 -> 1561[label="",style="solid", color="blue", weight=3]; 3418[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1002 -> 3418[label="",style="solid", color="blue", weight=9]; 3418 -> 1562[label="",style="solid", color="blue", weight=3]; 1003[label="primEqFloat (Float vyw300 vyw301) (Float vyw4000 vyw4001)",fontsize=16,color="black",shape="box"];1003 -> 1563[label="",style="solid", color="black", weight=3]; 1004[label="True",fontsize=16,color="green",shape="box"];1005[label="False",fontsize=16,color="green",shape="box"];1006[label="False",fontsize=16,color="green",shape="box"];1007[label="False",fontsize=16,color="green",shape="box"];1008[label="True",fontsize=16,color="green",shape="box"];1009[label="False",fontsize=16,color="green",shape="box"];1010[label="False",fontsize=16,color="green",shape="box"];1011[label="False",fontsize=16,color="green",shape="box"];1012[label="True",fontsize=16,color="green",shape="box"];1376[label="vyw59 <= vyw60",fontsize=16,color="burlywood",shape="triangle"];3419[label="vyw59/(vyw590,vyw591,vyw592)",fontsize=10,color="white",style="solid",shape="box"];1376 -> 3419[label="",style="solid", color="burlywood", weight=9]; 3419 -> 1564[label="",style="solid", color="burlywood", weight=3]; 1377[label="vyw59 <= vyw60",fontsize=16,color="black",shape="triangle"];1377 -> 1565[label="",style="solid", color="black", weight=3]; 1378[label="vyw59 <= vyw60",fontsize=16,color="burlywood",shape="triangle"];3420[label="vyw59/Left vyw590",fontsize=10,color="white",style="solid",shape="box"];1378 -> 3420[label="",style="solid", color="burlywood", weight=9]; 3420 -> 1566[label="",style="solid", color="burlywood", weight=3]; 3421[label="vyw59/Right vyw590",fontsize=10,color="white",style="solid",shape="box"];1378 -> 3421[label="",style="solid", color="burlywood", weight=9]; 3421 -> 1567[label="",style="solid", color="burlywood", weight=3]; 1379[label="vyw59 <= vyw60",fontsize=16,color="black",shape="triangle"];1379 -> 1568[label="",style="solid", color="black", weight=3]; 1380[label="vyw59 <= vyw60",fontsize=16,color="burlywood",shape="triangle"];3422[label="vyw59/False",fontsize=10,color="white",style="solid",shape="box"];1380 -> 3422[label="",style="solid", color="burlywood", weight=9]; 3422 -> 1569[label="",style="solid", color="burlywood", weight=3]; 3423[label="vyw59/True",fontsize=10,color="white",style="solid",shape="box"];1380 -> 3423[label="",style="solid", color="burlywood", weight=9]; 3423 -> 1570[label="",style="solid", color="burlywood", weight=3]; 1381[label="vyw59 <= vyw60",fontsize=16,color="burlywood",shape="triangle"];3424[label="vyw59/(vyw590,vyw591)",fontsize=10,color="white",style="solid",shape="box"];1381 -> 3424[label="",style="solid", color="burlywood", weight=9]; 3424 -> 1571[label="",style="solid", color="burlywood", weight=3]; 1382[label="vyw59 <= vyw60",fontsize=16,color="burlywood",shape="triangle"];3425[label="vyw59/LT",fontsize=10,color="white",style="solid",shape="box"];1382 -> 3425[label="",style="solid", color="burlywood", weight=9]; 3425 -> 1572[label="",style="solid", color="burlywood", weight=3]; 3426[label="vyw59/EQ",fontsize=10,color="white",style="solid",shape="box"];1382 -> 3426[label="",style="solid", color="burlywood", weight=9]; 3426 -> 1573[label="",style="solid", color="burlywood", weight=3]; 3427[label="vyw59/GT",fontsize=10,color="white",style="solid",shape="box"];1382 -> 3427[label="",style="solid", color="burlywood", weight=9]; 3427 -> 1574[label="",style="solid", color="burlywood", weight=3]; 1383[label="vyw59 <= vyw60",fontsize=16,color="burlywood",shape="triangle"];3428[label="vyw59/Nothing",fontsize=10,color="white",style="solid",shape="box"];1383 -> 3428[label="",style="solid", color="burlywood", weight=9]; 3428 -> 1575[label="",style="solid", color="burlywood", weight=3]; 3429[label="vyw59/Just vyw590",fontsize=10,color="white",style="solid",shape="box"];1383 -> 3429[label="",style="solid", color="burlywood", weight=9]; 3429 -> 1576[label="",style="solid", color="burlywood", weight=3]; 1384[label="vyw59 <= vyw60",fontsize=16,color="black",shape="triangle"];1384 -> 1577[label="",style="solid", color="black", weight=3]; 1385[label="vyw59 <= vyw60",fontsize=16,color="black",shape="triangle"];1385 -> 1578[label="",style="solid", color="black", weight=3]; 1386[label="vyw59 <= vyw60",fontsize=16,color="black",shape="triangle"];1386 -> 1579[label="",style="solid", color="black", weight=3]; 1387[label="vyw59 <= vyw60",fontsize=16,color="black",shape="triangle"];1387 -> 1580[label="",style="solid", color="black", weight=3]; 1388[label="vyw59 <= vyw60",fontsize=16,color="black",shape="triangle"];1388 -> 1581[label="",style="solid", color="black", weight=3]; 1389[label="vyw59 <= vyw60",fontsize=16,color="black",shape="triangle"];1389 -> 1582[label="",style="solid", color="black", weight=3]; 1390[label="compare0 (Left vyw136) (Left vyw137) otherwise",fontsize=16,color="black",shape="box"];1390 -> 1583[label="",style="solid", color="black", weight=3]; 1391[label="LT",fontsize=16,color="green",shape="box"];1392 -> 1376[label="",style="dashed", color="red", weight=0]; 1392[label="vyw66 <= vyw67",fontsize=16,color="magenta"];1392 -> 1584[label="",style="dashed", color="magenta", weight=3]; 1392 -> 1585[label="",style="dashed", color="magenta", weight=3]; 1393 -> 1377[label="",style="dashed", color="red", weight=0]; 1393[label="vyw66 <= vyw67",fontsize=16,color="magenta"];1393 -> 1586[label="",style="dashed", color="magenta", weight=3]; 1393 -> 1587[label="",style="dashed", color="magenta", weight=3]; 1394 -> 1378[label="",style="dashed", color="red", weight=0]; 1394[label="vyw66 <= vyw67",fontsize=16,color="magenta"];1394 -> 1588[label="",style="dashed", color="magenta", weight=3]; 1394 -> 1589[label="",style="dashed", color="magenta", weight=3]; 1395 -> 1379[label="",style="dashed", color="red", weight=0]; 1395[label="vyw66 <= vyw67",fontsize=16,color="magenta"];1395 -> 1590[label="",style="dashed", color="magenta", weight=3]; 1395 -> 1591[label="",style="dashed", color="magenta", weight=3]; 1396 -> 1380[label="",style="dashed", color="red", weight=0]; 1396[label="vyw66 <= vyw67",fontsize=16,color="magenta"];1396 -> 1592[label="",style="dashed", color="magenta", weight=3]; 1396 -> 1593[label="",style="dashed", color="magenta", weight=3]; 1397 -> 1381[label="",style="dashed", color="red", weight=0]; 1397[label="vyw66 <= vyw67",fontsize=16,color="magenta"];1397 -> 1594[label="",style="dashed", color="magenta", weight=3]; 1397 -> 1595[label="",style="dashed", color="magenta", weight=3]; 1398 -> 1382[label="",style="dashed", color="red", weight=0]; 1398[label="vyw66 <= vyw67",fontsize=16,color="magenta"];1398 -> 1596[label="",style="dashed", color="magenta", weight=3]; 1398 -> 1597[label="",style="dashed", color="magenta", weight=3]; 1399 -> 1383[label="",style="dashed", color="red", weight=0]; 1399[label="vyw66 <= vyw67",fontsize=16,color="magenta"];1399 -> 1598[label="",style="dashed", color="magenta", weight=3]; 1399 -> 1599[label="",style="dashed", color="magenta", weight=3]; 1400 -> 1384[label="",style="dashed", color="red", weight=0]; 1400[label="vyw66 <= vyw67",fontsize=16,color="magenta"];1400 -> 1600[label="",style="dashed", color="magenta", weight=3]; 1400 -> 1601[label="",style="dashed", color="magenta", weight=3]; 1401 -> 1385[label="",style="dashed", color="red", weight=0]; 1401[label="vyw66 <= vyw67",fontsize=16,color="magenta"];1401 -> 1602[label="",style="dashed", color="magenta", weight=3]; 1401 -> 1603[label="",style="dashed", color="magenta", weight=3]; 1402 -> 1386[label="",style="dashed", color="red", weight=0]; 1402[label="vyw66 <= vyw67",fontsize=16,color="magenta"];1402 -> 1604[label="",style="dashed", color="magenta", weight=3]; 1402 -> 1605[label="",style="dashed", color="magenta", weight=3]; 1403 -> 1387[label="",style="dashed", color="red", weight=0]; 1403[label="vyw66 <= vyw67",fontsize=16,color="magenta"];1403 -> 1606[label="",style="dashed", color="magenta", weight=3]; 1403 -> 1607[label="",style="dashed", color="magenta", weight=3]; 1404 -> 1388[label="",style="dashed", color="red", weight=0]; 1404[label="vyw66 <= vyw67",fontsize=16,color="magenta"];1404 -> 1608[label="",style="dashed", color="magenta", weight=3]; 1404 -> 1609[label="",style="dashed", color="magenta", weight=3]; 1405 -> 1389[label="",style="dashed", color="red", weight=0]; 1405[label="vyw66 <= vyw67",fontsize=16,color="magenta"];1405 -> 1610[label="",style="dashed", color="magenta", weight=3]; 1405 -> 1611[label="",style="dashed", color="magenta", weight=3]; 1406[label="compare0 (Right vyw143) (Right vyw144) otherwise",fontsize=16,color="black",shape="box"];1406 -> 1612[label="",style="solid", color="black", weight=3]; 1407[label="LT",fontsize=16,color="green",shape="box"];1423 -> 21[label="",style="dashed", color="red", weight=0]; 1423[label="vyw113 < vyw115",fontsize=16,color="magenta"];1423 -> 1613[label="",style="dashed", color="magenta", weight=3]; 1423 -> 1614[label="",style="dashed", color="magenta", weight=3]; 1424 -> 22[label="",style="dashed", color="red", weight=0]; 1424[label="vyw113 < vyw115",fontsize=16,color="magenta"];1424 -> 1615[label="",style="dashed", color="magenta", weight=3]; 1424 -> 1616[label="",style="dashed", color="magenta", weight=3]; 1425 -> 23[label="",style="dashed", color="red", weight=0]; 1425[label="vyw113 < vyw115",fontsize=16,color="magenta"];1425 -> 1617[label="",style="dashed", color="magenta", weight=3]; 1425 -> 1618[label="",style="dashed", color="magenta", weight=3]; 1426 -> 24[label="",style="dashed", color="red", weight=0]; 1426[label="vyw113 < vyw115",fontsize=16,color="magenta"];1426 -> 1619[label="",style="dashed", color="magenta", weight=3]; 1426 -> 1620[label="",style="dashed", color="magenta", weight=3]; 1427 -> 25[label="",style="dashed", color="red", weight=0]; 1427[label="vyw113 < vyw115",fontsize=16,color="magenta"];1427 -> 1621[label="",style="dashed", color="magenta", weight=3]; 1427 -> 1622[label="",style="dashed", color="magenta", weight=3]; 1428 -> 26[label="",style="dashed", color="red", weight=0]; 1428[label="vyw113 < vyw115",fontsize=16,color="magenta"];1428 -> 1623[label="",style="dashed", color="magenta", weight=3]; 1428 -> 1624[label="",style="dashed", color="magenta", weight=3]; 1429 -> 27[label="",style="dashed", color="red", weight=0]; 1429[label="vyw113 < vyw115",fontsize=16,color="magenta"];1429 -> 1625[label="",style="dashed", color="magenta", weight=3]; 1429 -> 1626[label="",style="dashed", color="magenta", weight=3]; 1430 -> 28[label="",style="dashed", color="red", weight=0]; 1430[label="vyw113 < vyw115",fontsize=16,color="magenta"];1430 -> 1627[label="",style="dashed", color="magenta", weight=3]; 1430 -> 1628[label="",style="dashed", color="magenta", weight=3]; 1431 -> 29[label="",style="dashed", color="red", weight=0]; 1431[label="vyw113 < vyw115",fontsize=16,color="magenta"];1431 -> 1629[label="",style="dashed", color="magenta", weight=3]; 1431 -> 1630[label="",style="dashed", color="magenta", weight=3]; 1432 -> 30[label="",style="dashed", color="red", weight=0]; 1432[label="vyw113 < vyw115",fontsize=16,color="magenta"];1432 -> 1631[label="",style="dashed", color="magenta", weight=3]; 1432 -> 1632[label="",style="dashed", color="magenta", weight=3]; 1433 -> 31[label="",style="dashed", color="red", weight=0]; 1433[label="vyw113 < vyw115",fontsize=16,color="magenta"];1433 -> 1633[label="",style="dashed", color="magenta", weight=3]; 1433 -> 1634[label="",style="dashed", color="magenta", weight=3]; 1434 -> 32[label="",style="dashed", color="red", weight=0]; 1434[label="vyw113 < vyw115",fontsize=16,color="magenta"];1434 -> 1635[label="",style="dashed", color="magenta", weight=3]; 1434 -> 1636[label="",style="dashed", color="magenta", weight=3]; 1435 -> 33[label="",style="dashed", color="red", weight=0]; 1435[label="vyw113 < vyw115",fontsize=16,color="magenta"];1435 -> 1637[label="",style="dashed", color="magenta", weight=3]; 1435 -> 1638[label="",style="dashed", color="magenta", weight=3]; 1436 -> 34[label="",style="dashed", color="red", weight=0]; 1436[label="vyw113 < vyw115",fontsize=16,color="magenta"];1436 -> 1639[label="",style="dashed", color="magenta", weight=3]; 1436 -> 1640[label="",style="dashed", color="magenta", weight=3]; 1437[label="vyw114 <= vyw116",fontsize=16,color="blue",shape="box"];3430[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1437 -> 3430[label="",style="solid", color="blue", weight=9]; 3430 -> 1641[label="",style="solid", color="blue", weight=3]; 3431[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1437 -> 3431[label="",style="solid", color="blue", weight=9]; 3431 -> 1642[label="",style="solid", color="blue", weight=3]; 3432[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1437 -> 3432[label="",style="solid", color="blue", weight=9]; 3432 -> 1643[label="",style="solid", color="blue", weight=3]; 3433[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1437 -> 3433[label="",style="solid", color="blue", weight=9]; 3433 -> 1644[label="",style="solid", color="blue", weight=3]; 3434[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1437 -> 3434[label="",style="solid", color="blue", weight=9]; 3434 -> 1645[label="",style="solid", color="blue", weight=3]; 3435[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1437 -> 3435[label="",style="solid", color="blue", weight=9]; 3435 -> 1646[label="",style="solid", color="blue", weight=3]; 3436[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1437 -> 3436[label="",style="solid", color="blue", weight=9]; 3436 -> 1647[label="",style="solid", color="blue", weight=3]; 3437[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1437 -> 3437[label="",style="solid", color="blue", weight=9]; 3437 -> 1648[label="",style="solid", color="blue", weight=3]; 3438[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1437 -> 3438[label="",style="solid", color="blue", weight=9]; 3438 -> 1649[label="",style="solid", color="blue", weight=3]; 3439[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1437 -> 3439[label="",style="solid", color="blue", weight=9]; 3439 -> 1650[label="",style="solid", color="blue", weight=3]; 3440[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1437 -> 3440[label="",style="solid", color="blue", weight=9]; 3440 -> 1651[label="",style="solid", color="blue", weight=3]; 3441[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1437 -> 3441[label="",style="solid", color="blue", weight=9]; 3441 -> 1652[label="",style="solid", color="blue", weight=3]; 3442[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1437 -> 3442[label="",style="solid", color="blue", weight=9]; 3442 -> 1653[label="",style="solid", color="blue", weight=3]; 3443[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1437 -> 3443[label="",style="solid", color="blue", weight=9]; 3443 -> 1654[label="",style="solid", color="blue", weight=3]; 1438[label="vyw113 == vyw115",fontsize=16,color="blue",shape="box"];3444[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1438 -> 3444[label="",style="solid", color="blue", weight=9]; 3444 -> 1655[label="",style="solid", color="blue", weight=3]; 3445[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1438 -> 3445[label="",style="solid", color="blue", weight=9]; 3445 -> 1656[label="",style="solid", color="blue", weight=3]; 3446[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1438 -> 3446[label="",style="solid", color="blue", weight=9]; 3446 -> 1657[label="",style="solid", color="blue", weight=3]; 3447[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1438 -> 3447[label="",style="solid", color="blue", weight=9]; 3447 -> 1658[label="",style="solid", color="blue", weight=3]; 3448[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1438 -> 3448[label="",style="solid", color="blue", weight=9]; 3448 -> 1659[label="",style="solid", color="blue", weight=3]; 3449[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1438 -> 3449[label="",style="solid", color="blue", weight=9]; 3449 -> 1660[label="",style="solid", color="blue", weight=3]; 3450[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1438 -> 3450[label="",style="solid", color="blue", weight=9]; 3450 -> 1661[label="",style="solid", color="blue", weight=3]; 3451[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1438 -> 3451[label="",style="solid", color="blue", weight=9]; 3451 -> 1662[label="",style="solid", color="blue", weight=3]; 3452[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1438 -> 3452[label="",style="solid", color="blue", weight=9]; 3452 -> 1663[label="",style="solid", color="blue", weight=3]; 3453[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1438 -> 3453[label="",style="solid", color="blue", weight=9]; 3453 -> 1664[label="",style="solid", color="blue", weight=3]; 3454[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1438 -> 3454[label="",style="solid", color="blue", weight=9]; 3454 -> 1665[label="",style="solid", color="blue", weight=3]; 3455[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1438 -> 3455[label="",style="solid", color="blue", weight=9]; 3455 -> 1666[label="",style="solid", color="blue", weight=3]; 3456[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1438 -> 3456[label="",style="solid", color="blue", weight=9]; 3456 -> 1667[label="",style="solid", color="blue", weight=3]; 3457[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1438 -> 3457[label="",style="solid", color="blue", weight=9]; 3457 -> 1668[label="",style="solid", color="blue", weight=3]; 1439[label="compare1 (vyw180,vyw181) (vyw182,vyw183) (False || vyw185)",fontsize=16,color="black",shape="box"];1439 -> 1669[label="",style="solid", color="black", weight=3]; 1440[label="compare1 (vyw180,vyw181) (vyw182,vyw183) (True || vyw185)",fontsize=16,color="black",shape="box"];1440 -> 1670[label="",style="solid", color="black", weight=3]; 1441 -> 1376[label="",style="dashed", color="red", weight=0]; 1441[label="vyw89 <= vyw90",fontsize=16,color="magenta"];1441 -> 1671[label="",style="dashed", color="magenta", weight=3]; 1441 -> 1672[label="",style="dashed", color="magenta", weight=3]; 1442 -> 1377[label="",style="dashed", color="red", weight=0]; 1442[label="vyw89 <= vyw90",fontsize=16,color="magenta"];1442 -> 1673[label="",style="dashed", color="magenta", weight=3]; 1442 -> 1674[label="",style="dashed", color="magenta", weight=3]; 1443 -> 1378[label="",style="dashed", color="red", weight=0]; 1443[label="vyw89 <= vyw90",fontsize=16,color="magenta"];1443 -> 1675[label="",style="dashed", color="magenta", weight=3]; 1443 -> 1676[label="",style="dashed", color="magenta", weight=3]; 1444 -> 1379[label="",style="dashed", color="red", weight=0]; 1444[label="vyw89 <= vyw90",fontsize=16,color="magenta"];1444 -> 1677[label="",style="dashed", color="magenta", weight=3]; 1444 -> 1678[label="",style="dashed", color="magenta", weight=3]; 1445 -> 1380[label="",style="dashed", color="red", weight=0]; 1445[label="vyw89 <= vyw90",fontsize=16,color="magenta"];1445 -> 1679[label="",style="dashed", color="magenta", weight=3]; 1445 -> 1680[label="",style="dashed", color="magenta", weight=3]; 1446 -> 1381[label="",style="dashed", color="red", weight=0]; 1446[label="vyw89 <= vyw90",fontsize=16,color="magenta"];1446 -> 1681[label="",style="dashed", color="magenta", weight=3]; 1446 -> 1682[label="",style="dashed", color="magenta", weight=3]; 1447 -> 1382[label="",style="dashed", color="red", weight=0]; 1447[label="vyw89 <= vyw90",fontsize=16,color="magenta"];1447 -> 1683[label="",style="dashed", color="magenta", weight=3]; 1447 -> 1684[label="",style="dashed", color="magenta", weight=3]; 1448 -> 1383[label="",style="dashed", color="red", weight=0]; 1448[label="vyw89 <= vyw90",fontsize=16,color="magenta"];1448 -> 1685[label="",style="dashed", color="magenta", weight=3]; 1448 -> 1686[label="",style="dashed", color="magenta", weight=3]; 1449 -> 1384[label="",style="dashed", color="red", weight=0]; 1449[label="vyw89 <= vyw90",fontsize=16,color="magenta"];1449 -> 1687[label="",style="dashed", color="magenta", weight=3]; 1449 -> 1688[label="",style="dashed", color="magenta", weight=3]; 1450 -> 1385[label="",style="dashed", color="red", weight=0]; 1450[label="vyw89 <= vyw90",fontsize=16,color="magenta"];1450 -> 1689[label="",style="dashed", color="magenta", weight=3]; 1450 -> 1690[label="",style="dashed", color="magenta", weight=3]; 1451 -> 1386[label="",style="dashed", color="red", weight=0]; 1451[label="vyw89 <= vyw90",fontsize=16,color="magenta"];1451 -> 1691[label="",style="dashed", color="magenta", weight=3]; 1451 -> 1692[label="",style="dashed", color="magenta", weight=3]; 1452 -> 1387[label="",style="dashed", color="red", weight=0]; 1452[label="vyw89 <= vyw90",fontsize=16,color="magenta"];1452 -> 1693[label="",style="dashed", color="magenta", weight=3]; 1452 -> 1694[label="",style="dashed", color="magenta", weight=3]; 1453 -> 1388[label="",style="dashed", color="red", weight=0]; 1453[label="vyw89 <= vyw90",fontsize=16,color="magenta"];1453 -> 1695[label="",style="dashed", color="magenta", weight=3]; 1453 -> 1696[label="",style="dashed", color="magenta", weight=3]; 1454 -> 1389[label="",style="dashed", color="red", weight=0]; 1454[label="vyw89 <= vyw90",fontsize=16,color="magenta"];1454 -> 1697[label="",style="dashed", color="magenta", weight=3]; 1454 -> 1698[label="",style="dashed", color="magenta", weight=3]; 1455[label="compare0 (Just vyw153) (Just vyw154) otherwise",fontsize=16,color="black",shape="box"];1455 -> 1699[label="",style="solid", color="black", weight=3]; 1456[label="LT",fontsize=16,color="green",shape="box"];1457[label="primMulNat (Succ vyw40000) vyw310",fontsize=16,color="burlywood",shape="box"];3458[label="vyw310/Succ vyw3100",fontsize=10,color="white",style="solid",shape="box"];1457 -> 3458[label="",style="solid", color="burlywood", weight=9]; 3458 -> 1700[label="",style="solid", color="burlywood", weight=3]; 3459[label="vyw310/Zero",fontsize=10,color="white",style="solid",shape="box"];1457 -> 3459[label="",style="solid", color="burlywood", weight=9]; 3459 -> 1701[label="",style="solid", color="burlywood", weight=3]; 1458[label="primMulNat Zero vyw310",fontsize=16,color="burlywood",shape="box"];3460[label="vyw310/Succ vyw3100",fontsize=10,color="white",style="solid",shape="box"];1458 -> 3460[label="",style="solid", color="burlywood", weight=9]; 3460 -> 1702[label="",style="solid", color="burlywood", weight=3]; 3461[label="vyw310/Zero",fontsize=10,color="white",style="solid",shape="box"];1458 -> 3461[label="",style="solid", color="burlywood", weight=9]; 3461 -> 1703[label="",style="solid", color="burlywood", weight=3]; 1459[label="vyw310",fontsize=16,color="green",shape="box"];1460[label="vyw4000",fontsize=16,color="green",shape="box"];1461[label="vyw4000",fontsize=16,color="green",shape="box"];1462[label="vyw310",fontsize=16,color="green",shape="box"];1463[label="vyw103",fontsize=16,color="green",shape="box"];1464[label="vyw100",fontsize=16,color="green",shape="box"];1465[label="vyw103",fontsize=16,color="green",shape="box"];1466[label="vyw100",fontsize=16,color="green",shape="box"];1467[label="vyw103",fontsize=16,color="green",shape="box"];1468[label="vyw100",fontsize=16,color="green",shape="box"];1469[label="vyw103",fontsize=16,color="green",shape="box"];1470[label="vyw100",fontsize=16,color="green",shape="box"];1471[label="vyw103",fontsize=16,color="green",shape="box"];1472[label="vyw100",fontsize=16,color="green",shape="box"];1473[label="vyw103",fontsize=16,color="green",shape="box"];1474[label="vyw100",fontsize=16,color="green",shape="box"];1475[label="vyw103",fontsize=16,color="green",shape="box"];1476[label="vyw100",fontsize=16,color="green",shape="box"];1477[label="vyw103",fontsize=16,color="green",shape="box"];1478[label="vyw100",fontsize=16,color="green",shape="box"];1479[label="vyw103",fontsize=16,color="green",shape="box"];1480[label="vyw100",fontsize=16,color="green",shape="box"];1481[label="vyw103",fontsize=16,color="green",shape="box"];1482[label="vyw100",fontsize=16,color="green",shape="box"];1483[label="vyw103",fontsize=16,color="green",shape="box"];1484[label="vyw100",fontsize=16,color="green",shape="box"];1485[label="vyw103",fontsize=16,color="green",shape="box"];1486[label="vyw100",fontsize=16,color="green",shape="box"];1487[label="vyw103",fontsize=16,color="green",shape="box"];1488[label="vyw100",fontsize=16,color="green",shape="box"];1489[label="vyw103",fontsize=16,color="green",shape="box"];1490[label="vyw100",fontsize=16,color="green",shape="box"];1707[label="vyw101 < vyw104",fontsize=16,color="blue",shape="box"];3462[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1707 -> 3462[label="",style="solid", color="blue", weight=9]; 3462 -> 1711[label="",style="solid", color="blue", weight=3]; 3463[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1707 -> 3463[label="",style="solid", color="blue", weight=9]; 3463 -> 1712[label="",style="solid", color="blue", weight=3]; 3464[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1707 -> 3464[label="",style="solid", color="blue", weight=9]; 3464 -> 1713[label="",style="solid", color="blue", weight=3]; 3465[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1707 -> 3465[label="",style="solid", color="blue", weight=9]; 3465 -> 1714[label="",style="solid", color="blue", weight=3]; 3466[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1707 -> 3466[label="",style="solid", color="blue", weight=9]; 3466 -> 1715[label="",style="solid", color="blue", weight=3]; 3467[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1707 -> 3467[label="",style="solid", color="blue", weight=9]; 3467 -> 1716[label="",style="solid", color="blue", weight=3]; 3468[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1707 -> 3468[label="",style="solid", color="blue", weight=9]; 3468 -> 1717[label="",style="solid", color="blue", weight=3]; 3469[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1707 -> 3469[label="",style="solid", color="blue", weight=9]; 3469 -> 1718[label="",style="solid", color="blue", weight=3]; 3470[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1707 -> 3470[label="",style="solid", color="blue", weight=9]; 3470 -> 1719[label="",style="solid", color="blue", weight=3]; 3471[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1707 -> 3471[label="",style="solid", color="blue", weight=9]; 3471 -> 1720[label="",style="solid", color="blue", weight=3]; 3472[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1707 -> 3472[label="",style="solid", color="blue", weight=9]; 3472 -> 1721[label="",style="solid", color="blue", weight=3]; 3473[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1707 -> 3473[label="",style="solid", color="blue", weight=9]; 3473 -> 1722[label="",style="solid", color="blue", weight=3]; 3474[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1707 -> 3474[label="",style="solid", color="blue", weight=9]; 3474 -> 1723[label="",style="solid", color="blue", weight=3]; 3475[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1707 -> 3475[label="",style="solid", color="blue", weight=9]; 3475 -> 1724[label="",style="solid", color="blue", weight=3]; 1708 -> 1080[label="",style="dashed", color="red", weight=0]; 1708[label="vyw101 == vyw104 && vyw102 <= vyw105",fontsize=16,color="magenta"];1708 -> 1725[label="",style="dashed", color="magenta", weight=3]; 1708 -> 1726[label="",style="dashed", color="magenta", weight=3]; 1706[label="vyw190 || vyw191",fontsize=16,color="burlywood",shape="triangle"];3476[label="vyw190/False",fontsize=10,color="white",style="solid",shape="box"];1706 -> 3476[label="",style="solid", color="burlywood", weight=9]; 3476 -> 1727[label="",style="solid", color="burlywood", weight=3]; 3477[label="vyw190/True",fontsize=10,color="white",style="solid",shape="box"];1706 -> 3477[label="",style="solid", color="burlywood", weight=9]; 3477 -> 1728[label="",style="solid", color="burlywood", weight=3]; 1493 -> 517[label="",style="dashed", color="red", weight=0]; 1493[label="vyw100 == vyw103",fontsize=16,color="magenta"];1493 -> 1729[label="",style="dashed", color="magenta", weight=3]; 1493 -> 1730[label="",style="dashed", color="magenta", weight=3]; 1494 -> 515[label="",style="dashed", color="red", weight=0]; 1494[label="vyw100 == vyw103",fontsize=16,color="magenta"];1494 -> 1731[label="",style="dashed", color="magenta", weight=3]; 1494 -> 1732[label="",style="dashed", color="magenta", weight=3]; 1495 -> 519[label="",style="dashed", color="red", weight=0]; 1495[label="vyw100 == vyw103",fontsize=16,color="magenta"];1495 -> 1733[label="",style="dashed", color="magenta", weight=3]; 1495 -> 1734[label="",style="dashed", color="magenta", weight=3]; 1496 -> 516[label="",style="dashed", color="red", weight=0]; 1496[label="vyw100 == vyw103",fontsize=16,color="magenta"];1496 -> 1735[label="",style="dashed", color="magenta", weight=3]; 1496 -> 1736[label="",style="dashed", color="magenta", weight=3]; 1497 -> 514[label="",style="dashed", color="red", weight=0]; 1497[label="vyw100 == vyw103",fontsize=16,color="magenta"];1497 -> 1737[label="",style="dashed", color="magenta", weight=3]; 1497 -> 1738[label="",style="dashed", color="magenta", weight=3]; 1498 -> 522[label="",style="dashed", color="red", weight=0]; 1498[label="vyw100 == vyw103",fontsize=16,color="magenta"];1498 -> 1739[label="",style="dashed", color="magenta", weight=3]; 1498 -> 1740[label="",style="dashed", color="magenta", weight=3]; 1499 -> 527[label="",style="dashed", color="red", weight=0]; 1499[label="vyw100 == vyw103",fontsize=16,color="magenta"];1499 -> 1741[label="",style="dashed", color="magenta", weight=3]; 1499 -> 1742[label="",style="dashed", color="magenta", weight=3]; 1500 -> 525[label="",style="dashed", color="red", weight=0]; 1500[label="vyw100 == vyw103",fontsize=16,color="magenta"];1500 -> 1743[label="",style="dashed", color="magenta", weight=3]; 1500 -> 1744[label="",style="dashed", color="magenta", weight=3]; 1501 -> 524[label="",style="dashed", color="red", weight=0]; 1501[label="vyw100 == vyw103",fontsize=16,color="magenta"];1501 -> 1745[label="",style="dashed", color="magenta", weight=3]; 1501 -> 1746[label="",style="dashed", color="magenta", weight=3]; 1502 -> 526[label="",style="dashed", color="red", weight=0]; 1502[label="vyw100 == vyw103",fontsize=16,color="magenta"];1502 -> 1747[label="",style="dashed", color="magenta", weight=3]; 1502 -> 1748[label="",style="dashed", color="magenta", weight=3]; 1503 -> 520[label="",style="dashed", color="red", weight=0]; 1503[label="vyw100 == vyw103",fontsize=16,color="magenta"];1503 -> 1749[label="",style="dashed", color="magenta", weight=3]; 1503 -> 1750[label="",style="dashed", color="magenta", weight=3]; 1504 -> 518[label="",style="dashed", color="red", weight=0]; 1504[label="vyw100 == vyw103",fontsize=16,color="magenta"];1504 -> 1751[label="",style="dashed", color="magenta", weight=3]; 1504 -> 1752[label="",style="dashed", color="magenta", weight=3]; 1505 -> 521[label="",style="dashed", color="red", weight=0]; 1505[label="vyw100 == vyw103",fontsize=16,color="magenta"];1505 -> 1753[label="",style="dashed", color="magenta", weight=3]; 1505 -> 1754[label="",style="dashed", color="magenta", weight=3]; 1506 -> 523[label="",style="dashed", color="red", weight=0]; 1506[label="vyw100 == vyw103",fontsize=16,color="magenta"];1506 -> 1755[label="",style="dashed", color="magenta", weight=3]; 1506 -> 1756[label="",style="dashed", color="magenta", weight=3]; 1507[label="compare1 (vyw165,vyw166,vyw167) (vyw168,vyw169,vyw170) vyw172",fontsize=16,color="burlywood",shape="triangle"];3478[label="vyw172/False",fontsize=10,color="white",style="solid",shape="box"];1507 -> 3478[label="",style="solid", color="burlywood", weight=9]; 3478 -> 1757[label="",style="solid", color="burlywood", weight=3]; 3479[label="vyw172/True",fontsize=10,color="white",style="solid",shape="box"];1507 -> 3479[label="",style="solid", color="burlywood", weight=9]; 3479 -> 1758[label="",style="solid", color="burlywood", weight=3]; 1508 -> 1507[label="",style="dashed", color="red", weight=0]; 1508[label="compare1 (vyw165,vyw166,vyw167) (vyw168,vyw169,vyw170) True",fontsize=16,color="magenta"];1508 -> 1759[label="",style="dashed", color="magenta", weight=3]; 1509 -> 521[label="",style="dashed", color="red", weight=0]; 1509[label="vyw300 * vyw4001 == vyw301 * vyw4000",fontsize=16,color="magenta"];1509 -> 1760[label="",style="dashed", color="magenta", weight=3]; 1509 -> 1761[label="",style="dashed", color="magenta", weight=3]; 1089 -> 516[label="",style="dashed", color="red", weight=0]; 1089[label="vyw301 == vyw4001",fontsize=16,color="magenta"];1089 -> 1762[label="",style="dashed", color="magenta", weight=3]; 1089 -> 1763[label="",style="dashed", color="magenta", weight=3]; 1090[label="vyw300 == vyw4000",fontsize=16,color="blue",shape="box"];3480[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1090 -> 3480[label="",style="solid", color="blue", weight=9]; 3480 -> 1764[label="",style="solid", color="blue", weight=3]; 3481[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1090 -> 3481[label="",style="solid", color="blue", weight=9]; 3481 -> 1765[label="",style="solid", color="blue", weight=3]; 3482[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1090 -> 3482[label="",style="solid", color="blue", weight=9]; 3482 -> 1766[label="",style="solid", color="blue", weight=3]; 3483[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1090 -> 3483[label="",style="solid", color="blue", weight=9]; 3483 -> 1767[label="",style="solid", color="blue", weight=3]; 3484[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1090 -> 3484[label="",style="solid", color="blue", weight=9]; 3484 -> 1768[label="",style="solid", color="blue", weight=3]; 3485[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1090 -> 3485[label="",style="solid", color="blue", weight=9]; 3485 -> 1769[label="",style="solid", color="blue", weight=3]; 3486[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1090 -> 3486[label="",style="solid", color="blue", weight=9]; 3486 -> 1770[label="",style="solid", color="blue", weight=3]; 3487[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1090 -> 3487[label="",style="solid", color="blue", weight=9]; 3487 -> 1771[label="",style="solid", color="blue", weight=3]; 3488[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1090 -> 3488[label="",style="solid", color="blue", weight=9]; 3488 -> 1772[label="",style="solid", color="blue", weight=3]; 3489[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1090 -> 3489[label="",style="solid", color="blue", weight=9]; 3489 -> 1773[label="",style="solid", color="blue", weight=3]; 3490[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1090 -> 3490[label="",style="solid", color="blue", weight=9]; 3490 -> 1774[label="",style="solid", color="blue", weight=3]; 3491[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1090 -> 3491[label="",style="solid", color="blue", weight=9]; 3491 -> 1775[label="",style="solid", color="blue", weight=3]; 3492[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1090 -> 3492[label="",style="solid", color="blue", weight=9]; 3492 -> 1776[label="",style="solid", color="blue", weight=3]; 3493[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1090 -> 3493[label="",style="solid", color="blue", weight=9]; 3493 -> 1777[label="",style="solid", color="blue", weight=3]; 1091 -> 1080[label="",style="dashed", color="red", weight=0]; 1091[label="vyw301 == vyw4001 && vyw302 == vyw4002",fontsize=16,color="magenta"];1091 -> 1778[label="",style="dashed", color="magenta", weight=3]; 1091 -> 1779[label="",style="dashed", color="magenta", weight=3]; 1092[label="vyw300 == vyw4000",fontsize=16,color="blue",shape="box"];3494[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1092 -> 3494[label="",style="solid", color="blue", weight=9]; 3494 -> 1780[label="",style="solid", color="blue", weight=3]; 3495[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1092 -> 3495[label="",style="solid", color="blue", weight=9]; 3495 -> 1781[label="",style="solid", color="blue", weight=3]; 3496[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1092 -> 3496[label="",style="solid", color="blue", weight=9]; 3496 -> 1782[label="",style="solid", color="blue", weight=3]; 3497[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1092 -> 3497[label="",style="solid", color="blue", weight=9]; 3497 -> 1783[label="",style="solid", color="blue", weight=3]; 3498[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1092 -> 3498[label="",style="solid", color="blue", weight=9]; 3498 -> 1784[label="",style="solid", color="blue", weight=3]; 3499[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1092 -> 3499[label="",style="solid", color="blue", weight=9]; 3499 -> 1785[label="",style="solid", color="blue", weight=3]; 3500[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1092 -> 3500[label="",style="solid", color="blue", weight=9]; 3500 -> 1786[label="",style="solid", color="blue", weight=3]; 3501[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1092 -> 3501[label="",style="solid", color="blue", weight=9]; 3501 -> 1787[label="",style="solid", color="blue", weight=3]; 3502[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1092 -> 3502[label="",style="solid", color="blue", weight=9]; 3502 -> 1788[label="",style="solid", color="blue", weight=3]; 3503[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1092 -> 3503[label="",style="solid", color="blue", weight=9]; 3503 -> 1789[label="",style="solid", color="blue", weight=3]; 3504[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1092 -> 3504[label="",style="solid", color="blue", weight=9]; 3504 -> 1790[label="",style="solid", color="blue", weight=3]; 3505[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1092 -> 3505[label="",style="solid", color="blue", weight=9]; 3505 -> 1791[label="",style="solid", color="blue", weight=3]; 3506[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1092 -> 3506[label="",style="solid", color="blue", weight=9]; 3506 -> 1792[label="",style="solid", color="blue", weight=3]; 3507[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1092 -> 3507[label="",style="solid", color="blue", weight=9]; 3507 -> 1793[label="",style="solid", color="blue", weight=3]; 1510[label="vyw4000",fontsize=16,color="green",shape="box"];1511[label="vyw300",fontsize=16,color="green",shape="box"];1512 -> 514[label="",style="dashed", color="red", weight=0]; 1512[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1512 -> 1794[label="",style="dashed", color="magenta", weight=3]; 1512 -> 1795[label="",style="dashed", color="magenta", weight=3]; 1513 -> 515[label="",style="dashed", color="red", weight=0]; 1513[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1513 -> 1796[label="",style="dashed", color="magenta", weight=3]; 1513 -> 1797[label="",style="dashed", color="magenta", weight=3]; 1514 -> 516[label="",style="dashed", color="red", weight=0]; 1514[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1514 -> 1798[label="",style="dashed", color="magenta", weight=3]; 1514 -> 1799[label="",style="dashed", color="magenta", weight=3]; 1515 -> 517[label="",style="dashed", color="red", weight=0]; 1515[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1515 -> 1800[label="",style="dashed", color="magenta", weight=3]; 1515 -> 1801[label="",style="dashed", color="magenta", weight=3]; 1516 -> 518[label="",style="dashed", color="red", weight=0]; 1516[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1516 -> 1802[label="",style="dashed", color="magenta", weight=3]; 1516 -> 1803[label="",style="dashed", color="magenta", weight=3]; 1517 -> 519[label="",style="dashed", color="red", weight=0]; 1517[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1517 -> 1804[label="",style="dashed", color="magenta", weight=3]; 1517 -> 1805[label="",style="dashed", color="magenta", weight=3]; 1518 -> 520[label="",style="dashed", color="red", weight=0]; 1518[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1518 -> 1806[label="",style="dashed", color="magenta", weight=3]; 1518 -> 1807[label="",style="dashed", color="magenta", weight=3]; 1519 -> 521[label="",style="dashed", color="red", weight=0]; 1519[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1519 -> 1808[label="",style="dashed", color="magenta", weight=3]; 1519 -> 1809[label="",style="dashed", color="magenta", weight=3]; 1520 -> 522[label="",style="dashed", color="red", weight=0]; 1520[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1520 -> 1810[label="",style="dashed", color="magenta", weight=3]; 1520 -> 1811[label="",style="dashed", color="magenta", weight=3]; 1521 -> 523[label="",style="dashed", color="red", weight=0]; 1521[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1521 -> 1812[label="",style="dashed", color="magenta", weight=3]; 1521 -> 1813[label="",style="dashed", color="magenta", weight=3]; 1522 -> 524[label="",style="dashed", color="red", weight=0]; 1522[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1522 -> 1814[label="",style="dashed", color="magenta", weight=3]; 1522 -> 1815[label="",style="dashed", color="magenta", weight=3]; 1523 -> 525[label="",style="dashed", color="red", weight=0]; 1523[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1523 -> 1816[label="",style="dashed", color="magenta", weight=3]; 1523 -> 1817[label="",style="dashed", color="magenta", weight=3]; 1524 -> 526[label="",style="dashed", color="red", weight=0]; 1524[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1524 -> 1818[label="",style="dashed", color="magenta", weight=3]; 1524 -> 1819[label="",style="dashed", color="magenta", weight=3]; 1525 -> 527[label="",style="dashed", color="red", weight=0]; 1525[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1525 -> 1820[label="",style="dashed", color="magenta", weight=3]; 1525 -> 1821[label="",style="dashed", color="magenta", weight=3]; 1526 -> 514[label="",style="dashed", color="red", weight=0]; 1526[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1526 -> 1822[label="",style="dashed", color="magenta", weight=3]; 1526 -> 1823[label="",style="dashed", color="magenta", weight=3]; 1527 -> 515[label="",style="dashed", color="red", weight=0]; 1527[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1527 -> 1824[label="",style="dashed", color="magenta", weight=3]; 1527 -> 1825[label="",style="dashed", color="magenta", weight=3]; 1528 -> 516[label="",style="dashed", color="red", weight=0]; 1528[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1528 -> 1826[label="",style="dashed", color="magenta", weight=3]; 1528 -> 1827[label="",style="dashed", color="magenta", weight=3]; 1529 -> 517[label="",style="dashed", color="red", weight=0]; 1529[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1529 -> 1828[label="",style="dashed", color="magenta", weight=3]; 1529 -> 1829[label="",style="dashed", color="magenta", weight=3]; 1530 -> 518[label="",style="dashed", color="red", weight=0]; 1530[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1530 -> 1830[label="",style="dashed", color="magenta", weight=3]; 1530 -> 1831[label="",style="dashed", color="magenta", weight=3]; 1531 -> 519[label="",style="dashed", color="red", weight=0]; 1531[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1531 -> 1832[label="",style="dashed", color="magenta", weight=3]; 1531 -> 1833[label="",style="dashed", color="magenta", weight=3]; 1532 -> 520[label="",style="dashed", color="red", weight=0]; 1532[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1532 -> 1834[label="",style="dashed", color="magenta", weight=3]; 1532 -> 1835[label="",style="dashed", color="magenta", weight=3]; 1533 -> 521[label="",style="dashed", color="red", weight=0]; 1533[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1533 -> 1836[label="",style="dashed", color="magenta", weight=3]; 1533 -> 1837[label="",style="dashed", color="magenta", weight=3]; 1534 -> 522[label="",style="dashed", color="red", weight=0]; 1534[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1534 -> 1838[label="",style="dashed", color="magenta", weight=3]; 1534 -> 1839[label="",style="dashed", color="magenta", weight=3]; 1535 -> 523[label="",style="dashed", color="red", weight=0]; 1535[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1535 -> 1840[label="",style="dashed", color="magenta", weight=3]; 1535 -> 1841[label="",style="dashed", color="magenta", weight=3]; 1536 -> 524[label="",style="dashed", color="red", weight=0]; 1536[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1536 -> 1842[label="",style="dashed", color="magenta", weight=3]; 1536 -> 1843[label="",style="dashed", color="magenta", weight=3]; 1537 -> 525[label="",style="dashed", color="red", weight=0]; 1537[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1537 -> 1844[label="",style="dashed", color="magenta", weight=3]; 1537 -> 1845[label="",style="dashed", color="magenta", weight=3]; 1538 -> 526[label="",style="dashed", color="red", weight=0]; 1538[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1538 -> 1846[label="",style="dashed", color="magenta", weight=3]; 1538 -> 1847[label="",style="dashed", color="magenta", weight=3]; 1539 -> 527[label="",style="dashed", color="red", weight=0]; 1539[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1539 -> 1848[label="",style="dashed", color="magenta", weight=3]; 1539 -> 1849[label="",style="dashed", color="magenta", weight=3]; 1540[label="primEqNat vyw300 vyw4000",fontsize=16,color="burlywood",shape="triangle"];3508[label="vyw300/Succ vyw3000",fontsize=10,color="white",style="solid",shape="box"];1540 -> 3508[label="",style="solid", color="burlywood", weight=9]; 3508 -> 1850[label="",style="solid", color="burlywood", weight=3]; 3509[label="vyw300/Zero",fontsize=10,color="white",style="solid",shape="box"];1540 -> 3509[label="",style="solid", color="burlywood", weight=9]; 3509 -> 1851[label="",style="solid", color="burlywood", weight=3]; 1541[label="primEqInt (Pos (Succ vyw3000)) (Pos vyw4000)",fontsize=16,color="burlywood",shape="box"];3510[label="vyw4000/Succ vyw40000",fontsize=10,color="white",style="solid",shape="box"];1541 -> 3510[label="",style="solid", color="burlywood", weight=9]; 3510 -> 1852[label="",style="solid", color="burlywood", weight=3]; 3511[label="vyw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1541 -> 3511[label="",style="solid", color="burlywood", weight=9]; 3511 -> 1853[label="",style="solid", color="burlywood", weight=3]; 1542[label="primEqInt (Pos (Succ vyw3000)) (Neg vyw4000)",fontsize=16,color="black",shape="box"];1542 -> 1854[label="",style="solid", color="black", weight=3]; 1543[label="primEqInt (Pos Zero) (Pos vyw4000)",fontsize=16,color="burlywood",shape="box"];3512[label="vyw4000/Succ vyw40000",fontsize=10,color="white",style="solid",shape="box"];1543 -> 3512[label="",style="solid", color="burlywood", weight=9]; 3512 -> 1855[label="",style="solid", color="burlywood", weight=3]; 3513[label="vyw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1543 -> 3513[label="",style="solid", color="burlywood", weight=9]; 3513 -> 1856[label="",style="solid", color="burlywood", weight=3]; 1544[label="primEqInt (Pos Zero) (Neg vyw4000)",fontsize=16,color="burlywood",shape="box"];3514[label="vyw4000/Succ vyw40000",fontsize=10,color="white",style="solid",shape="box"];1544 -> 3514[label="",style="solid", color="burlywood", weight=9]; 3514 -> 1857[label="",style="solid", color="burlywood", weight=3]; 3515[label="vyw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1544 -> 3515[label="",style="solid", color="burlywood", weight=9]; 3515 -> 1858[label="",style="solid", color="burlywood", weight=3]; 1545[label="primEqInt (Neg (Succ vyw3000)) (Pos vyw4000)",fontsize=16,color="black",shape="box"];1545 -> 1859[label="",style="solid", color="black", weight=3]; 1546[label="primEqInt (Neg (Succ vyw3000)) (Neg vyw4000)",fontsize=16,color="burlywood",shape="box"];3516[label="vyw4000/Succ vyw40000",fontsize=10,color="white",style="solid",shape="box"];1546 -> 3516[label="",style="solid", color="burlywood", weight=9]; 3516 -> 1860[label="",style="solid", color="burlywood", weight=3]; 3517[label="vyw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1546 -> 3517[label="",style="solid", color="burlywood", weight=9]; 3517 -> 1861[label="",style="solid", color="burlywood", weight=3]; 1547[label="primEqInt (Neg Zero) (Pos vyw4000)",fontsize=16,color="burlywood",shape="box"];3518[label="vyw4000/Succ vyw40000",fontsize=10,color="white",style="solid",shape="box"];1547 -> 3518[label="",style="solid", color="burlywood", weight=9]; 3518 -> 1862[label="",style="solid", color="burlywood", weight=3]; 3519[label="vyw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1547 -> 3519[label="",style="solid", color="burlywood", weight=9]; 3519 -> 1863[label="",style="solid", color="burlywood", weight=3]; 1548[label="primEqInt (Neg Zero) (Neg vyw4000)",fontsize=16,color="burlywood",shape="box"];3520[label="vyw4000/Succ vyw40000",fontsize=10,color="white",style="solid",shape="box"];1548 -> 3520[label="",style="solid", color="burlywood", weight=9]; 3520 -> 1864[label="",style="solid", color="burlywood", weight=3]; 3521[label="vyw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1548 -> 3521[label="",style="solid", color="burlywood", weight=9]; 3521 -> 1865[label="",style="solid", color="burlywood", weight=3]; 1093[label="vyw301 == vyw4001",fontsize=16,color="blue",shape="box"];3522[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1093 -> 3522[label="",style="solid", color="blue", weight=9]; 3522 -> 1866[label="",style="solid", color="blue", weight=3]; 3523[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1093 -> 3523[label="",style="solid", color="blue", weight=9]; 3523 -> 1867[label="",style="solid", color="blue", weight=3]; 3524[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1093 -> 3524[label="",style="solid", color="blue", weight=9]; 3524 -> 1868[label="",style="solid", color="blue", weight=3]; 3525[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1093 -> 3525[label="",style="solid", color="blue", weight=9]; 3525 -> 1869[label="",style="solid", color="blue", weight=3]; 3526[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1093 -> 3526[label="",style="solid", color="blue", weight=9]; 3526 -> 1870[label="",style="solid", color="blue", weight=3]; 3527[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1093 -> 3527[label="",style="solid", color="blue", weight=9]; 3527 -> 1871[label="",style="solid", color="blue", weight=3]; 3528[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1093 -> 3528[label="",style="solid", color="blue", weight=9]; 3528 -> 1872[label="",style="solid", color="blue", weight=3]; 3529[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1093 -> 3529[label="",style="solid", color="blue", weight=9]; 3529 -> 1873[label="",style="solid", color="blue", weight=3]; 3530[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1093 -> 3530[label="",style="solid", color="blue", weight=9]; 3530 -> 1874[label="",style="solid", color="blue", weight=3]; 3531[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1093 -> 3531[label="",style="solid", color="blue", weight=9]; 3531 -> 1875[label="",style="solid", color="blue", weight=3]; 3532[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1093 -> 3532[label="",style="solid", color="blue", weight=9]; 3532 -> 1876[label="",style="solid", color="blue", weight=3]; 3533[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1093 -> 3533[label="",style="solid", color="blue", weight=9]; 3533 -> 1877[label="",style="solid", color="blue", weight=3]; 3534[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1093 -> 3534[label="",style="solid", color="blue", weight=9]; 3534 -> 1878[label="",style="solid", color="blue", weight=3]; 3535[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1093 -> 3535[label="",style="solid", color="blue", weight=9]; 3535 -> 1879[label="",style="solid", color="blue", weight=3]; 1094[label="vyw300 == vyw4000",fontsize=16,color="blue",shape="box"];3536[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1094 -> 3536[label="",style="solid", color="blue", weight=9]; 3536 -> 1880[label="",style="solid", color="blue", weight=3]; 3537[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1094 -> 3537[label="",style="solid", color="blue", weight=9]; 3537 -> 1881[label="",style="solid", color="blue", weight=3]; 3538[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1094 -> 3538[label="",style="solid", color="blue", weight=9]; 3538 -> 1882[label="",style="solid", color="blue", weight=3]; 3539[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1094 -> 3539[label="",style="solid", color="blue", weight=9]; 3539 -> 1883[label="",style="solid", color="blue", weight=3]; 3540[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1094 -> 3540[label="",style="solid", color="blue", weight=9]; 3540 -> 1884[label="",style="solid", color="blue", weight=3]; 3541[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1094 -> 3541[label="",style="solid", color="blue", weight=9]; 3541 -> 1885[label="",style="solid", color="blue", weight=3]; 3542[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1094 -> 3542[label="",style="solid", color="blue", weight=9]; 3542 -> 1886[label="",style="solid", color="blue", weight=3]; 3543[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1094 -> 3543[label="",style="solid", color="blue", weight=9]; 3543 -> 1887[label="",style="solid", color="blue", weight=3]; 3544[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1094 -> 3544[label="",style="solid", color="blue", weight=9]; 3544 -> 1888[label="",style="solid", color="blue", weight=3]; 3545[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1094 -> 3545[label="",style="solid", color="blue", weight=9]; 3545 -> 1889[label="",style="solid", color="blue", weight=3]; 3546[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1094 -> 3546[label="",style="solid", color="blue", weight=9]; 3546 -> 1890[label="",style="solid", color="blue", weight=3]; 3547[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1094 -> 3547[label="",style="solid", color="blue", weight=9]; 3547 -> 1891[label="",style="solid", color="blue", weight=3]; 3548[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1094 -> 3548[label="",style="solid", color="blue", weight=9]; 3548 -> 1892[label="",style="solid", color="blue", weight=3]; 3549[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1094 -> 3549[label="",style="solid", color="blue", weight=9]; 3549 -> 1893[label="",style="solid", color="blue", weight=3]; 1095[label="vyw301 == vyw4001",fontsize=16,color="blue",shape="box"];3550[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1095 -> 3550[label="",style="solid", color="blue", weight=9]; 3550 -> 1894[label="",style="solid", color="blue", weight=3]; 3551[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1095 -> 3551[label="",style="solid", color="blue", weight=9]; 3551 -> 1895[label="",style="solid", color="blue", weight=3]; 1096[label="vyw300 == vyw4000",fontsize=16,color="blue",shape="box"];3552[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1096 -> 3552[label="",style="solid", color="blue", weight=9]; 3552 -> 1896[label="",style="solid", color="blue", weight=3]; 3553[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1096 -> 3553[label="",style="solid", color="blue", weight=9]; 3553 -> 1897[label="",style="solid", color="blue", weight=3]; 1549 -> 514[label="",style="dashed", color="red", weight=0]; 1549[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1549 -> 1898[label="",style="dashed", color="magenta", weight=3]; 1549 -> 1899[label="",style="dashed", color="magenta", weight=3]; 1550 -> 515[label="",style="dashed", color="red", weight=0]; 1550[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1550 -> 1900[label="",style="dashed", color="magenta", weight=3]; 1550 -> 1901[label="",style="dashed", color="magenta", weight=3]; 1551 -> 516[label="",style="dashed", color="red", weight=0]; 1551[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1551 -> 1902[label="",style="dashed", color="magenta", weight=3]; 1551 -> 1903[label="",style="dashed", color="magenta", weight=3]; 1552 -> 517[label="",style="dashed", color="red", weight=0]; 1552[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1552 -> 1904[label="",style="dashed", color="magenta", weight=3]; 1552 -> 1905[label="",style="dashed", color="magenta", weight=3]; 1553 -> 518[label="",style="dashed", color="red", weight=0]; 1553[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1553 -> 1906[label="",style="dashed", color="magenta", weight=3]; 1553 -> 1907[label="",style="dashed", color="magenta", weight=3]; 1554 -> 519[label="",style="dashed", color="red", weight=0]; 1554[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1554 -> 1908[label="",style="dashed", color="magenta", weight=3]; 1554 -> 1909[label="",style="dashed", color="magenta", weight=3]; 1555 -> 520[label="",style="dashed", color="red", weight=0]; 1555[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1555 -> 1910[label="",style="dashed", color="magenta", weight=3]; 1555 -> 1911[label="",style="dashed", color="magenta", weight=3]; 1556 -> 521[label="",style="dashed", color="red", weight=0]; 1556[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1556 -> 1912[label="",style="dashed", color="magenta", weight=3]; 1556 -> 1913[label="",style="dashed", color="magenta", weight=3]; 1557 -> 522[label="",style="dashed", color="red", weight=0]; 1557[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1557 -> 1914[label="",style="dashed", color="magenta", weight=3]; 1557 -> 1915[label="",style="dashed", color="magenta", weight=3]; 1558 -> 523[label="",style="dashed", color="red", weight=0]; 1558[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1558 -> 1916[label="",style="dashed", color="magenta", weight=3]; 1558 -> 1917[label="",style="dashed", color="magenta", weight=3]; 1559 -> 524[label="",style="dashed", color="red", weight=0]; 1559[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1559 -> 1918[label="",style="dashed", color="magenta", weight=3]; 1559 -> 1919[label="",style="dashed", color="magenta", weight=3]; 1560 -> 525[label="",style="dashed", color="red", weight=0]; 1560[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1560 -> 1920[label="",style="dashed", color="magenta", weight=3]; 1560 -> 1921[label="",style="dashed", color="magenta", weight=3]; 1561 -> 526[label="",style="dashed", color="red", weight=0]; 1561[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1561 -> 1922[label="",style="dashed", color="magenta", weight=3]; 1561 -> 1923[label="",style="dashed", color="magenta", weight=3]; 1562 -> 527[label="",style="dashed", color="red", weight=0]; 1562[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1562 -> 1924[label="",style="dashed", color="magenta", weight=3]; 1562 -> 1925[label="",style="dashed", color="magenta", weight=3]; 1563 -> 521[label="",style="dashed", color="red", weight=0]; 1563[label="vyw300 * vyw4001 == vyw301 * vyw4000",fontsize=16,color="magenta"];1563 -> 1926[label="",style="dashed", color="magenta", weight=3]; 1563 -> 1927[label="",style="dashed", color="magenta", weight=3]; 1564[label="(vyw590,vyw591,vyw592) <= vyw60",fontsize=16,color="burlywood",shape="box"];3554[label="vyw60/(vyw600,vyw601,vyw602)",fontsize=10,color="white",style="solid",shape="box"];1564 -> 3554[label="",style="solid", color="burlywood", weight=9]; 3554 -> 1928[label="",style="solid", color="burlywood", weight=3]; 1565 -> 1929[label="",style="dashed", color="red", weight=0]; 1565[label="compare vyw59 vyw60 /= GT",fontsize=16,color="magenta"];1565 -> 1930[label="",style="dashed", color="magenta", weight=3]; 1566[label="Left vyw590 <= vyw60",fontsize=16,color="burlywood",shape="box"];3555[label="vyw60/Left vyw600",fontsize=10,color="white",style="solid",shape="box"];1566 -> 3555[label="",style="solid", color="burlywood", weight=9]; 3555 -> 1938[label="",style="solid", color="burlywood", weight=3]; 3556[label="vyw60/Right vyw600",fontsize=10,color="white",style="solid",shape="box"];1566 -> 3556[label="",style="solid", color="burlywood", weight=9]; 3556 -> 1939[label="",style="solid", color="burlywood", weight=3]; 1567[label="Right vyw590 <= vyw60",fontsize=16,color="burlywood",shape="box"];3557[label="vyw60/Left vyw600",fontsize=10,color="white",style="solid",shape="box"];1567 -> 3557[label="",style="solid", color="burlywood", weight=9]; 3557 -> 1940[label="",style="solid", color="burlywood", weight=3]; 3558[label="vyw60/Right vyw600",fontsize=10,color="white",style="solid",shape="box"];1567 -> 3558[label="",style="solid", color="burlywood", weight=9]; 3558 -> 1941[label="",style="solid", color="burlywood", weight=3]; 1568 -> 1929[label="",style="dashed", color="red", weight=0]; 1568[label="compare vyw59 vyw60 /= GT",fontsize=16,color="magenta"];1568 -> 1931[label="",style="dashed", color="magenta", weight=3]; 1569[label="False <= vyw60",fontsize=16,color="burlywood",shape="box"];3559[label="vyw60/False",fontsize=10,color="white",style="solid",shape="box"];1569 -> 3559[label="",style="solid", color="burlywood", weight=9]; 3559 -> 1942[label="",style="solid", color="burlywood", weight=3]; 3560[label="vyw60/True",fontsize=10,color="white",style="solid",shape="box"];1569 -> 3560[label="",style="solid", color="burlywood", weight=9]; 3560 -> 1943[label="",style="solid", color="burlywood", weight=3]; 1570[label="True <= vyw60",fontsize=16,color="burlywood",shape="box"];3561[label="vyw60/False",fontsize=10,color="white",style="solid",shape="box"];1570 -> 3561[label="",style="solid", color="burlywood", weight=9]; 3561 -> 1944[label="",style="solid", color="burlywood", weight=3]; 3562[label="vyw60/True",fontsize=10,color="white",style="solid",shape="box"];1570 -> 3562[label="",style="solid", color="burlywood", weight=9]; 3562 -> 1945[label="",style="solid", color="burlywood", weight=3]; 1571[label="(vyw590,vyw591) <= vyw60",fontsize=16,color="burlywood",shape="box"];3563[label="vyw60/(vyw600,vyw601)",fontsize=10,color="white",style="solid",shape="box"];1571 -> 3563[label="",style="solid", color="burlywood", weight=9]; 3563 -> 1946[label="",style="solid", color="burlywood", weight=3]; 1572[label="LT <= vyw60",fontsize=16,color="burlywood",shape="box"];3564[label="vyw60/LT",fontsize=10,color="white",style="solid",shape="box"];1572 -> 3564[label="",style="solid", color="burlywood", weight=9]; 3564 -> 1947[label="",style="solid", color="burlywood", weight=3]; 3565[label="vyw60/EQ",fontsize=10,color="white",style="solid",shape="box"];1572 -> 3565[label="",style="solid", color="burlywood", weight=9]; 3565 -> 1948[label="",style="solid", color="burlywood", weight=3]; 3566[label="vyw60/GT",fontsize=10,color="white",style="solid",shape="box"];1572 -> 3566[label="",style="solid", color="burlywood", weight=9]; 3566 -> 1949[label="",style="solid", color="burlywood", weight=3]; 1573[label="EQ <= vyw60",fontsize=16,color="burlywood",shape="box"];3567[label="vyw60/LT",fontsize=10,color="white",style="solid",shape="box"];1573 -> 3567[label="",style="solid", color="burlywood", weight=9]; 3567 -> 1950[label="",style="solid", color="burlywood", weight=3]; 3568[label="vyw60/EQ",fontsize=10,color="white",style="solid",shape="box"];1573 -> 3568[label="",style="solid", color="burlywood", weight=9]; 3568 -> 1951[label="",style="solid", color="burlywood", weight=3]; 3569[label="vyw60/GT",fontsize=10,color="white",style="solid",shape="box"];1573 -> 3569[label="",style="solid", color="burlywood", weight=9]; 3569 -> 1952[label="",style="solid", color="burlywood", weight=3]; 1574[label="GT <= vyw60",fontsize=16,color="burlywood",shape="box"];3570[label="vyw60/LT",fontsize=10,color="white",style="solid",shape="box"];1574 -> 3570[label="",style="solid", color="burlywood", weight=9]; 3570 -> 1953[label="",style="solid", color="burlywood", weight=3]; 3571[label="vyw60/EQ",fontsize=10,color="white",style="solid",shape="box"];1574 -> 3571[label="",style="solid", color="burlywood", weight=9]; 3571 -> 1954[label="",style="solid", color="burlywood", weight=3]; 3572[label="vyw60/GT",fontsize=10,color="white",style="solid",shape="box"];1574 -> 3572[label="",style="solid", color="burlywood", weight=9]; 3572 -> 1955[label="",style="solid", color="burlywood", weight=3]; 1575[label="Nothing <= vyw60",fontsize=16,color="burlywood",shape="box"];3573[label="vyw60/Nothing",fontsize=10,color="white",style="solid",shape="box"];1575 -> 3573[label="",style="solid", color="burlywood", weight=9]; 3573 -> 1956[label="",style="solid", color="burlywood", weight=3]; 3574[label="vyw60/Just vyw600",fontsize=10,color="white",style="solid",shape="box"];1575 -> 3574[label="",style="solid", color="burlywood", weight=9]; 3574 -> 1957[label="",style="solid", color="burlywood", weight=3]; 1576[label="Just vyw590 <= vyw60",fontsize=16,color="burlywood",shape="box"];3575[label="vyw60/Nothing",fontsize=10,color="white",style="solid",shape="box"];1576 -> 3575[label="",style="solid", color="burlywood", weight=9]; 3575 -> 1958[label="",style="solid", color="burlywood", weight=3]; 3576[label="vyw60/Just vyw600",fontsize=10,color="white",style="solid",shape="box"];1576 -> 3576[label="",style="solid", color="burlywood", weight=9]; 3576 -> 1959[label="",style="solid", color="burlywood", weight=3]; 1577 -> 1929[label="",style="dashed", color="red", weight=0]; 1577[label="compare vyw59 vyw60 /= GT",fontsize=16,color="magenta"];1577 -> 1932[label="",style="dashed", color="magenta", weight=3]; 1578 -> 1929[label="",style="dashed", color="red", weight=0]; 1578[label="compare vyw59 vyw60 /= GT",fontsize=16,color="magenta"];1578 -> 1933[label="",style="dashed", color="magenta", weight=3]; 1579 -> 1929[label="",style="dashed", color="red", weight=0]; 1579[label="compare vyw59 vyw60 /= GT",fontsize=16,color="magenta"];1579 -> 1934[label="",style="dashed", color="magenta", weight=3]; 1580 -> 1929[label="",style="dashed", color="red", weight=0]; 1580[label="compare vyw59 vyw60 /= GT",fontsize=16,color="magenta"];1580 -> 1935[label="",style="dashed", color="magenta", weight=3]; 1581 -> 1929[label="",style="dashed", color="red", weight=0]; 1581[label="compare vyw59 vyw60 /= GT",fontsize=16,color="magenta"];1581 -> 1936[label="",style="dashed", color="magenta", weight=3]; 1582 -> 1929[label="",style="dashed", color="red", weight=0]; 1582[label="compare vyw59 vyw60 /= GT",fontsize=16,color="magenta"];1582 -> 1937[label="",style="dashed", color="magenta", weight=3]; 1583[label="compare0 (Left vyw136) (Left vyw137) True",fontsize=16,color="black",shape="box"];1583 -> 1960[label="",style="solid", color="black", weight=3]; 1584[label="vyw67",fontsize=16,color="green",shape="box"];1585[label="vyw66",fontsize=16,color="green",shape="box"];1586[label="vyw67",fontsize=16,color="green",shape="box"];1587[label="vyw66",fontsize=16,color="green",shape="box"];1588[label="vyw67",fontsize=16,color="green",shape="box"];1589[label="vyw66",fontsize=16,color="green",shape="box"];1590[label="vyw67",fontsize=16,color="green",shape="box"];1591[label="vyw66",fontsize=16,color="green",shape="box"];1592[label="vyw67",fontsize=16,color="green",shape="box"];1593[label="vyw66",fontsize=16,color="green",shape="box"];1594[label="vyw67",fontsize=16,color="green",shape="box"];1595[label="vyw66",fontsize=16,color="green",shape="box"];1596[label="vyw67",fontsize=16,color="green",shape="box"];1597[label="vyw66",fontsize=16,color="green",shape="box"];1598[label="vyw67",fontsize=16,color="green",shape="box"];1599[label="vyw66",fontsize=16,color="green",shape="box"];1600[label="vyw67",fontsize=16,color="green",shape="box"];1601[label="vyw66",fontsize=16,color="green",shape="box"];1602[label="vyw67",fontsize=16,color="green",shape="box"];1603[label="vyw66",fontsize=16,color="green",shape="box"];1604[label="vyw67",fontsize=16,color="green",shape="box"];1605[label="vyw66",fontsize=16,color="green",shape="box"];1606[label="vyw67",fontsize=16,color="green",shape="box"];1607[label="vyw66",fontsize=16,color="green",shape="box"];1608[label="vyw67",fontsize=16,color="green",shape="box"];1609[label="vyw66",fontsize=16,color="green",shape="box"];1610[label="vyw67",fontsize=16,color="green",shape="box"];1611[label="vyw66",fontsize=16,color="green",shape="box"];1612[label="compare0 (Right vyw143) (Right vyw144) True",fontsize=16,color="black",shape="box"];1612 -> 1961[label="",style="solid", color="black", weight=3]; 1613[label="vyw115",fontsize=16,color="green",shape="box"];1614[label="vyw113",fontsize=16,color="green",shape="box"];1615[label="vyw115",fontsize=16,color="green",shape="box"];1616[label="vyw113",fontsize=16,color="green",shape="box"];1617[label="vyw115",fontsize=16,color="green",shape="box"];1618[label="vyw113",fontsize=16,color="green",shape="box"];1619[label="vyw115",fontsize=16,color="green",shape="box"];1620[label="vyw113",fontsize=16,color="green",shape="box"];1621[label="vyw115",fontsize=16,color="green",shape="box"];1622[label="vyw113",fontsize=16,color="green",shape="box"];1623[label="vyw115",fontsize=16,color="green",shape="box"];1624[label="vyw113",fontsize=16,color="green",shape="box"];1625[label="vyw115",fontsize=16,color="green",shape="box"];1626[label="vyw113",fontsize=16,color="green",shape="box"];1627[label="vyw115",fontsize=16,color="green",shape="box"];1628[label="vyw113",fontsize=16,color="green",shape="box"];1629[label="vyw115",fontsize=16,color="green",shape="box"];1630[label="vyw113",fontsize=16,color="green",shape="box"];1631[label="vyw115",fontsize=16,color="green",shape="box"];1632[label="vyw113",fontsize=16,color="green",shape="box"];1633[label="vyw115",fontsize=16,color="green",shape="box"];1634[label="vyw113",fontsize=16,color="green",shape="box"];1635[label="vyw115",fontsize=16,color="green",shape="box"];1636[label="vyw113",fontsize=16,color="green",shape="box"];1637[label="vyw115",fontsize=16,color="green",shape="box"];1638[label="vyw113",fontsize=16,color="green",shape="box"];1639[label="vyw115",fontsize=16,color="green",shape="box"];1640[label="vyw113",fontsize=16,color="green",shape="box"];1641 -> 1376[label="",style="dashed", color="red", weight=0]; 1641[label="vyw114 <= vyw116",fontsize=16,color="magenta"];1641 -> 1962[label="",style="dashed", color="magenta", weight=3]; 1641 -> 1963[label="",style="dashed", color="magenta", weight=3]; 1642 -> 1377[label="",style="dashed", color="red", weight=0]; 1642[label="vyw114 <= vyw116",fontsize=16,color="magenta"];1642 -> 1964[label="",style="dashed", color="magenta", weight=3]; 1642 -> 1965[label="",style="dashed", color="magenta", weight=3]; 1643 -> 1378[label="",style="dashed", color="red", weight=0]; 1643[label="vyw114 <= vyw116",fontsize=16,color="magenta"];1643 -> 1966[label="",style="dashed", color="magenta", weight=3]; 1643 -> 1967[label="",style="dashed", color="magenta", weight=3]; 1644 -> 1379[label="",style="dashed", color="red", weight=0]; 1644[label="vyw114 <= vyw116",fontsize=16,color="magenta"];1644 -> 1968[label="",style="dashed", color="magenta", weight=3]; 1644 -> 1969[label="",style="dashed", color="magenta", weight=3]; 1645 -> 1380[label="",style="dashed", color="red", weight=0]; 1645[label="vyw114 <= vyw116",fontsize=16,color="magenta"];1645 -> 1970[label="",style="dashed", color="magenta", weight=3]; 1645 -> 1971[label="",style="dashed", color="magenta", weight=3]; 1646 -> 1381[label="",style="dashed", color="red", weight=0]; 1646[label="vyw114 <= vyw116",fontsize=16,color="magenta"];1646 -> 1972[label="",style="dashed", color="magenta", weight=3]; 1646 -> 1973[label="",style="dashed", color="magenta", weight=3]; 1647 -> 1382[label="",style="dashed", color="red", weight=0]; 1647[label="vyw114 <= vyw116",fontsize=16,color="magenta"];1647 -> 1974[label="",style="dashed", color="magenta", weight=3]; 1647 -> 1975[label="",style="dashed", color="magenta", weight=3]; 1648 -> 1383[label="",style="dashed", color="red", weight=0]; 1648[label="vyw114 <= vyw116",fontsize=16,color="magenta"];1648 -> 1976[label="",style="dashed", color="magenta", weight=3]; 1648 -> 1977[label="",style="dashed", color="magenta", weight=3]; 1649 -> 1384[label="",style="dashed", color="red", weight=0]; 1649[label="vyw114 <= vyw116",fontsize=16,color="magenta"];1649 -> 1978[label="",style="dashed", color="magenta", weight=3]; 1649 -> 1979[label="",style="dashed", color="magenta", weight=3]; 1650 -> 1385[label="",style="dashed", color="red", weight=0]; 1650[label="vyw114 <= vyw116",fontsize=16,color="magenta"];1650 -> 1980[label="",style="dashed", color="magenta", weight=3]; 1650 -> 1981[label="",style="dashed", color="magenta", weight=3]; 1651 -> 1386[label="",style="dashed", color="red", weight=0]; 1651[label="vyw114 <= vyw116",fontsize=16,color="magenta"];1651 -> 1982[label="",style="dashed", color="magenta", weight=3]; 1651 -> 1983[label="",style="dashed", color="magenta", weight=3]; 1652 -> 1387[label="",style="dashed", color="red", weight=0]; 1652[label="vyw114 <= vyw116",fontsize=16,color="magenta"];1652 -> 1984[label="",style="dashed", color="magenta", weight=3]; 1652 -> 1985[label="",style="dashed", color="magenta", weight=3]; 1653 -> 1388[label="",style="dashed", color="red", weight=0]; 1653[label="vyw114 <= vyw116",fontsize=16,color="magenta"];1653 -> 1986[label="",style="dashed", color="magenta", weight=3]; 1653 -> 1987[label="",style="dashed", color="magenta", weight=3]; 1654 -> 1389[label="",style="dashed", color="red", weight=0]; 1654[label="vyw114 <= vyw116",fontsize=16,color="magenta"];1654 -> 1988[label="",style="dashed", color="magenta", weight=3]; 1654 -> 1989[label="",style="dashed", color="magenta", weight=3]; 1655 -> 517[label="",style="dashed", color="red", weight=0]; 1655[label="vyw113 == vyw115",fontsize=16,color="magenta"];1655 -> 1990[label="",style="dashed", color="magenta", weight=3]; 1655 -> 1991[label="",style="dashed", color="magenta", weight=3]; 1656 -> 515[label="",style="dashed", color="red", weight=0]; 1656[label="vyw113 == vyw115",fontsize=16,color="magenta"];1656 -> 1992[label="",style="dashed", color="magenta", weight=3]; 1656 -> 1993[label="",style="dashed", color="magenta", weight=3]; 1657 -> 519[label="",style="dashed", color="red", weight=0]; 1657[label="vyw113 == vyw115",fontsize=16,color="magenta"];1657 -> 1994[label="",style="dashed", color="magenta", weight=3]; 1657 -> 1995[label="",style="dashed", color="magenta", weight=3]; 1658 -> 516[label="",style="dashed", color="red", weight=0]; 1658[label="vyw113 == vyw115",fontsize=16,color="magenta"];1658 -> 1996[label="",style="dashed", color="magenta", weight=3]; 1658 -> 1997[label="",style="dashed", color="magenta", weight=3]; 1659 -> 514[label="",style="dashed", color="red", weight=0]; 1659[label="vyw113 == vyw115",fontsize=16,color="magenta"];1659 -> 1998[label="",style="dashed", color="magenta", weight=3]; 1659 -> 1999[label="",style="dashed", color="magenta", weight=3]; 1660 -> 522[label="",style="dashed", color="red", weight=0]; 1660[label="vyw113 == vyw115",fontsize=16,color="magenta"];1660 -> 2000[label="",style="dashed", color="magenta", weight=3]; 1660 -> 2001[label="",style="dashed", color="magenta", weight=3]; 1661 -> 527[label="",style="dashed", color="red", weight=0]; 1661[label="vyw113 == vyw115",fontsize=16,color="magenta"];1661 -> 2002[label="",style="dashed", color="magenta", weight=3]; 1661 -> 2003[label="",style="dashed", color="magenta", weight=3]; 1662 -> 525[label="",style="dashed", color="red", weight=0]; 1662[label="vyw113 == vyw115",fontsize=16,color="magenta"];1662 -> 2004[label="",style="dashed", color="magenta", weight=3]; 1662 -> 2005[label="",style="dashed", color="magenta", weight=3]; 1663 -> 524[label="",style="dashed", color="red", weight=0]; 1663[label="vyw113 == vyw115",fontsize=16,color="magenta"];1663 -> 2006[label="",style="dashed", color="magenta", weight=3]; 1663 -> 2007[label="",style="dashed", color="magenta", weight=3]; 1664 -> 526[label="",style="dashed", color="red", weight=0]; 1664[label="vyw113 == vyw115",fontsize=16,color="magenta"];1664 -> 2008[label="",style="dashed", color="magenta", weight=3]; 1664 -> 2009[label="",style="dashed", color="magenta", weight=3]; 1665 -> 520[label="",style="dashed", color="red", weight=0]; 1665[label="vyw113 == vyw115",fontsize=16,color="magenta"];1665 -> 2010[label="",style="dashed", color="magenta", weight=3]; 1665 -> 2011[label="",style="dashed", color="magenta", weight=3]; 1666 -> 518[label="",style="dashed", color="red", weight=0]; 1666[label="vyw113 == vyw115",fontsize=16,color="magenta"];1666 -> 2012[label="",style="dashed", color="magenta", weight=3]; 1666 -> 2013[label="",style="dashed", color="magenta", weight=3]; 1667 -> 521[label="",style="dashed", color="red", weight=0]; 1667[label="vyw113 == vyw115",fontsize=16,color="magenta"];1667 -> 2014[label="",style="dashed", color="magenta", weight=3]; 1667 -> 2015[label="",style="dashed", color="magenta", weight=3]; 1668 -> 523[label="",style="dashed", color="red", weight=0]; 1668[label="vyw113 == vyw115",fontsize=16,color="magenta"];1668 -> 2016[label="",style="dashed", color="magenta", weight=3]; 1668 -> 2017[label="",style="dashed", color="magenta", weight=3]; 1669[label="compare1 (vyw180,vyw181) (vyw182,vyw183) vyw185",fontsize=16,color="burlywood",shape="triangle"];3577[label="vyw185/False",fontsize=10,color="white",style="solid",shape="box"];1669 -> 3577[label="",style="solid", color="burlywood", weight=9]; 3577 -> 2018[label="",style="solid", color="burlywood", weight=3]; 3578[label="vyw185/True",fontsize=10,color="white",style="solid",shape="box"];1669 -> 3578[label="",style="solid", color="burlywood", weight=9]; 3578 -> 2019[label="",style="solid", color="burlywood", weight=3]; 1670 -> 1669[label="",style="dashed", color="red", weight=0]; 1670[label="compare1 (vyw180,vyw181) (vyw182,vyw183) True",fontsize=16,color="magenta"];1670 -> 2020[label="",style="dashed", color="magenta", weight=3]; 1671[label="vyw90",fontsize=16,color="green",shape="box"];1672[label="vyw89",fontsize=16,color="green",shape="box"];1673[label="vyw90",fontsize=16,color="green",shape="box"];1674[label="vyw89",fontsize=16,color="green",shape="box"];1675[label="vyw90",fontsize=16,color="green",shape="box"];1676[label="vyw89",fontsize=16,color="green",shape="box"];1677[label="vyw90",fontsize=16,color="green",shape="box"];1678[label="vyw89",fontsize=16,color="green",shape="box"];1679[label="vyw90",fontsize=16,color="green",shape="box"];1680[label="vyw89",fontsize=16,color="green",shape="box"];1681[label="vyw90",fontsize=16,color="green",shape="box"];1682[label="vyw89",fontsize=16,color="green",shape="box"];1683[label="vyw90",fontsize=16,color="green",shape="box"];1684[label="vyw89",fontsize=16,color="green",shape="box"];1685[label="vyw90",fontsize=16,color="green",shape="box"];1686[label="vyw89",fontsize=16,color="green",shape="box"];1687[label="vyw90",fontsize=16,color="green",shape="box"];1688[label="vyw89",fontsize=16,color="green",shape="box"];1689[label="vyw90",fontsize=16,color="green",shape="box"];1690[label="vyw89",fontsize=16,color="green",shape="box"];1691[label="vyw90",fontsize=16,color="green",shape="box"];1692[label="vyw89",fontsize=16,color="green",shape="box"];1693[label="vyw90",fontsize=16,color="green",shape="box"];1694[label="vyw89",fontsize=16,color="green",shape="box"];1695[label="vyw90",fontsize=16,color="green",shape="box"];1696[label="vyw89",fontsize=16,color="green",shape="box"];1697[label="vyw90",fontsize=16,color="green",shape="box"];1698[label="vyw89",fontsize=16,color="green",shape="box"];1699[label="compare0 (Just vyw153) (Just vyw154) True",fontsize=16,color="black",shape="box"];1699 -> 2021[label="",style="solid", color="black", weight=3]; 1700[label="primMulNat (Succ vyw40000) (Succ vyw3100)",fontsize=16,color="black",shape="box"];1700 -> 2022[label="",style="solid", color="black", weight=3]; 1701[label="primMulNat (Succ vyw40000) Zero",fontsize=16,color="black",shape="box"];1701 -> 2023[label="",style="solid", color="black", weight=3]; 1702[label="primMulNat Zero (Succ vyw3100)",fontsize=16,color="black",shape="box"];1702 -> 2024[label="",style="solid", color="black", weight=3]; 1703[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];1703 -> 2025[label="",style="solid", color="black", weight=3]; 1711 -> 21[label="",style="dashed", color="red", weight=0]; 1711[label="vyw101 < vyw104",fontsize=16,color="magenta"];1711 -> 2026[label="",style="dashed", color="magenta", weight=3]; 1711 -> 2027[label="",style="dashed", color="magenta", weight=3]; 1712 -> 22[label="",style="dashed", color="red", weight=0]; 1712[label="vyw101 < vyw104",fontsize=16,color="magenta"];1712 -> 2028[label="",style="dashed", color="magenta", weight=3]; 1712 -> 2029[label="",style="dashed", color="magenta", weight=3]; 1713 -> 23[label="",style="dashed", color="red", weight=0]; 1713[label="vyw101 < vyw104",fontsize=16,color="magenta"];1713 -> 2030[label="",style="dashed", color="magenta", weight=3]; 1713 -> 2031[label="",style="dashed", color="magenta", weight=3]; 1714 -> 24[label="",style="dashed", color="red", weight=0]; 1714[label="vyw101 < vyw104",fontsize=16,color="magenta"];1714 -> 2032[label="",style="dashed", color="magenta", weight=3]; 1714 -> 2033[label="",style="dashed", color="magenta", weight=3]; 1715 -> 25[label="",style="dashed", color="red", weight=0]; 1715[label="vyw101 < vyw104",fontsize=16,color="magenta"];1715 -> 2034[label="",style="dashed", color="magenta", weight=3]; 1715 -> 2035[label="",style="dashed", color="magenta", weight=3]; 1716 -> 26[label="",style="dashed", color="red", weight=0]; 1716[label="vyw101 < vyw104",fontsize=16,color="magenta"];1716 -> 2036[label="",style="dashed", color="magenta", weight=3]; 1716 -> 2037[label="",style="dashed", color="magenta", weight=3]; 1717 -> 27[label="",style="dashed", color="red", weight=0]; 1717[label="vyw101 < vyw104",fontsize=16,color="magenta"];1717 -> 2038[label="",style="dashed", color="magenta", weight=3]; 1717 -> 2039[label="",style="dashed", color="magenta", weight=3]; 1718 -> 28[label="",style="dashed", color="red", weight=0]; 1718[label="vyw101 < vyw104",fontsize=16,color="magenta"];1718 -> 2040[label="",style="dashed", color="magenta", weight=3]; 1718 -> 2041[label="",style="dashed", color="magenta", weight=3]; 1719 -> 29[label="",style="dashed", color="red", weight=0]; 1719[label="vyw101 < vyw104",fontsize=16,color="magenta"];1719 -> 2042[label="",style="dashed", color="magenta", weight=3]; 1719 -> 2043[label="",style="dashed", color="magenta", weight=3]; 1720 -> 30[label="",style="dashed", color="red", weight=0]; 1720[label="vyw101 < vyw104",fontsize=16,color="magenta"];1720 -> 2044[label="",style="dashed", color="magenta", weight=3]; 1720 -> 2045[label="",style="dashed", color="magenta", weight=3]; 1721 -> 31[label="",style="dashed", color="red", weight=0]; 1721[label="vyw101 < vyw104",fontsize=16,color="magenta"];1721 -> 2046[label="",style="dashed", color="magenta", weight=3]; 1721 -> 2047[label="",style="dashed", color="magenta", weight=3]; 1722 -> 32[label="",style="dashed", color="red", weight=0]; 1722[label="vyw101 < vyw104",fontsize=16,color="magenta"];1722 -> 2048[label="",style="dashed", color="magenta", weight=3]; 1722 -> 2049[label="",style="dashed", color="magenta", weight=3]; 1723 -> 33[label="",style="dashed", color="red", weight=0]; 1723[label="vyw101 < vyw104",fontsize=16,color="magenta"];1723 -> 2050[label="",style="dashed", color="magenta", weight=3]; 1723 -> 2051[label="",style="dashed", color="magenta", weight=3]; 1724 -> 34[label="",style="dashed", color="red", weight=0]; 1724[label="vyw101 < vyw104",fontsize=16,color="magenta"];1724 -> 2052[label="",style="dashed", color="magenta", weight=3]; 1724 -> 2053[label="",style="dashed", color="magenta", weight=3]; 1725[label="vyw102 <= vyw105",fontsize=16,color="blue",shape="box"];3579[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1725 -> 3579[label="",style="solid", color="blue", weight=9]; 3579 -> 2054[label="",style="solid", color="blue", weight=3]; 3580[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1725 -> 3580[label="",style="solid", color="blue", weight=9]; 3580 -> 2055[label="",style="solid", color="blue", weight=3]; 3581[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1725 -> 3581[label="",style="solid", color="blue", weight=9]; 3581 -> 2056[label="",style="solid", color="blue", weight=3]; 3582[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1725 -> 3582[label="",style="solid", color="blue", weight=9]; 3582 -> 2057[label="",style="solid", color="blue", weight=3]; 3583[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1725 -> 3583[label="",style="solid", color="blue", weight=9]; 3583 -> 2058[label="",style="solid", color="blue", weight=3]; 3584[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1725 -> 3584[label="",style="solid", color="blue", weight=9]; 3584 -> 2059[label="",style="solid", color="blue", weight=3]; 3585[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1725 -> 3585[label="",style="solid", color="blue", weight=9]; 3585 -> 2060[label="",style="solid", color="blue", weight=3]; 3586[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1725 -> 3586[label="",style="solid", color="blue", weight=9]; 3586 -> 2061[label="",style="solid", color="blue", weight=3]; 3587[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1725 -> 3587[label="",style="solid", color="blue", weight=9]; 3587 -> 2062[label="",style="solid", color="blue", weight=3]; 3588[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1725 -> 3588[label="",style="solid", color="blue", weight=9]; 3588 -> 2063[label="",style="solid", color="blue", weight=3]; 3589[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1725 -> 3589[label="",style="solid", color="blue", weight=9]; 3589 -> 2064[label="",style="solid", color="blue", weight=3]; 3590[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1725 -> 3590[label="",style="solid", color="blue", weight=9]; 3590 -> 2065[label="",style="solid", color="blue", weight=3]; 3591[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1725 -> 3591[label="",style="solid", color="blue", weight=9]; 3591 -> 2066[label="",style="solid", color="blue", weight=3]; 3592[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1725 -> 3592[label="",style="solid", color="blue", weight=9]; 3592 -> 2067[label="",style="solid", color="blue", weight=3]; 1726[label="vyw101 == vyw104",fontsize=16,color="blue",shape="box"];3593[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1726 -> 3593[label="",style="solid", color="blue", weight=9]; 3593 -> 2068[label="",style="solid", color="blue", weight=3]; 3594[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1726 -> 3594[label="",style="solid", color="blue", weight=9]; 3594 -> 2069[label="",style="solid", color="blue", weight=3]; 3595[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1726 -> 3595[label="",style="solid", color="blue", weight=9]; 3595 -> 2070[label="",style="solid", color="blue", weight=3]; 3596[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1726 -> 3596[label="",style="solid", color="blue", weight=9]; 3596 -> 2071[label="",style="solid", color="blue", weight=3]; 3597[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1726 -> 3597[label="",style="solid", color="blue", weight=9]; 3597 -> 2072[label="",style="solid", color="blue", weight=3]; 3598[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1726 -> 3598[label="",style="solid", color="blue", weight=9]; 3598 -> 2073[label="",style="solid", color="blue", weight=3]; 3599[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1726 -> 3599[label="",style="solid", color="blue", weight=9]; 3599 -> 2074[label="",style="solid", color="blue", weight=3]; 3600[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1726 -> 3600[label="",style="solid", color="blue", weight=9]; 3600 -> 2075[label="",style="solid", color="blue", weight=3]; 3601[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1726 -> 3601[label="",style="solid", color="blue", weight=9]; 3601 -> 2076[label="",style="solid", color="blue", weight=3]; 3602[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1726 -> 3602[label="",style="solid", color="blue", weight=9]; 3602 -> 2077[label="",style="solid", color="blue", weight=3]; 3603[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1726 -> 3603[label="",style="solid", color="blue", weight=9]; 3603 -> 2078[label="",style="solid", color="blue", weight=3]; 3604[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1726 -> 3604[label="",style="solid", color="blue", weight=9]; 3604 -> 2079[label="",style="solid", color="blue", weight=3]; 3605[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1726 -> 3605[label="",style="solid", color="blue", weight=9]; 3605 -> 2080[label="",style="solid", color="blue", weight=3]; 3606[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1726 -> 3606[label="",style="solid", color="blue", weight=9]; 3606 -> 2081[label="",style="solid", color="blue", weight=3]; 1727[label="False || vyw191",fontsize=16,color="black",shape="box"];1727 -> 2082[label="",style="solid", color="black", weight=3]; 1728[label="True || vyw191",fontsize=16,color="black",shape="box"];1728 -> 2083[label="",style="solid", color="black", weight=3]; 1729[label="vyw103",fontsize=16,color="green",shape="box"];1730[label="vyw100",fontsize=16,color="green",shape="box"];1731[label="vyw103",fontsize=16,color="green",shape="box"];1732[label="vyw100",fontsize=16,color="green",shape="box"];1733[label="vyw103",fontsize=16,color="green",shape="box"];1734[label="vyw100",fontsize=16,color="green",shape="box"];1735[label="vyw103",fontsize=16,color="green",shape="box"];1736[label="vyw100",fontsize=16,color="green",shape="box"];1737[label="vyw103",fontsize=16,color="green",shape="box"];1738[label="vyw100",fontsize=16,color="green",shape="box"];1739[label="vyw103",fontsize=16,color="green",shape="box"];1740[label="vyw100",fontsize=16,color="green",shape="box"];1741[label="vyw103",fontsize=16,color="green",shape="box"];1742[label="vyw100",fontsize=16,color="green",shape="box"];1743[label="vyw103",fontsize=16,color="green",shape="box"];1744[label="vyw100",fontsize=16,color="green",shape="box"];1745[label="vyw103",fontsize=16,color="green",shape="box"];1746[label="vyw100",fontsize=16,color="green",shape="box"];1747[label="vyw103",fontsize=16,color="green",shape="box"];1748[label="vyw100",fontsize=16,color="green",shape="box"];1749[label="vyw103",fontsize=16,color="green",shape="box"];1750[label="vyw100",fontsize=16,color="green",shape="box"];1751[label="vyw103",fontsize=16,color="green",shape="box"];1752[label="vyw100",fontsize=16,color="green",shape="box"];1753[label="vyw103",fontsize=16,color="green",shape="box"];1754[label="vyw100",fontsize=16,color="green",shape="box"];1755[label="vyw103",fontsize=16,color="green",shape="box"];1756[label="vyw100",fontsize=16,color="green",shape="box"];1757[label="compare1 (vyw165,vyw166,vyw167) (vyw168,vyw169,vyw170) False",fontsize=16,color="black",shape="box"];1757 -> 2084[label="",style="solid", color="black", weight=3]; 1758[label="compare1 (vyw165,vyw166,vyw167) (vyw168,vyw169,vyw170) True",fontsize=16,color="black",shape="box"];1758 -> 2085[label="",style="solid", color="black", weight=3]; 1759[label="True",fontsize=16,color="green",shape="box"];1760 -> 417[label="",style="dashed", color="red", weight=0]; 1760[label="vyw301 * vyw4000",fontsize=16,color="magenta"];1760 -> 2086[label="",style="dashed", color="magenta", weight=3]; 1760 -> 2087[label="",style="dashed", color="magenta", weight=3]; 1761 -> 417[label="",style="dashed", color="red", weight=0]; 1761[label="vyw300 * vyw4001",fontsize=16,color="magenta"];1761 -> 2088[label="",style="dashed", color="magenta", weight=3]; 1761 -> 2089[label="",style="dashed", color="magenta", weight=3]; 1762[label="vyw4001",fontsize=16,color="green",shape="box"];1763[label="vyw301",fontsize=16,color="green",shape="box"];1764 -> 514[label="",style="dashed", color="red", weight=0]; 1764[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1764 -> 2090[label="",style="dashed", color="magenta", weight=3]; 1764 -> 2091[label="",style="dashed", color="magenta", weight=3]; 1765 -> 515[label="",style="dashed", color="red", weight=0]; 1765[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1765 -> 2092[label="",style="dashed", color="magenta", weight=3]; 1765 -> 2093[label="",style="dashed", color="magenta", weight=3]; 1766 -> 516[label="",style="dashed", color="red", weight=0]; 1766[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1766 -> 2094[label="",style="dashed", color="magenta", weight=3]; 1766 -> 2095[label="",style="dashed", color="magenta", weight=3]; 1767 -> 517[label="",style="dashed", color="red", weight=0]; 1767[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1767 -> 2096[label="",style="dashed", color="magenta", weight=3]; 1767 -> 2097[label="",style="dashed", color="magenta", weight=3]; 1768 -> 518[label="",style="dashed", color="red", weight=0]; 1768[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1768 -> 2098[label="",style="dashed", color="magenta", weight=3]; 1768 -> 2099[label="",style="dashed", color="magenta", weight=3]; 1769 -> 519[label="",style="dashed", color="red", weight=0]; 1769[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1769 -> 2100[label="",style="dashed", color="magenta", weight=3]; 1769 -> 2101[label="",style="dashed", color="magenta", weight=3]; 1770 -> 520[label="",style="dashed", color="red", weight=0]; 1770[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1770 -> 2102[label="",style="dashed", color="magenta", weight=3]; 1770 -> 2103[label="",style="dashed", color="magenta", weight=3]; 1771 -> 521[label="",style="dashed", color="red", weight=0]; 1771[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1771 -> 2104[label="",style="dashed", color="magenta", weight=3]; 1771 -> 2105[label="",style="dashed", color="magenta", weight=3]; 1772 -> 522[label="",style="dashed", color="red", weight=0]; 1772[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1772 -> 2106[label="",style="dashed", color="magenta", weight=3]; 1772 -> 2107[label="",style="dashed", color="magenta", weight=3]; 1773 -> 523[label="",style="dashed", color="red", weight=0]; 1773[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1773 -> 2108[label="",style="dashed", color="magenta", weight=3]; 1773 -> 2109[label="",style="dashed", color="magenta", weight=3]; 1774 -> 524[label="",style="dashed", color="red", weight=0]; 1774[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1774 -> 2110[label="",style="dashed", color="magenta", weight=3]; 1774 -> 2111[label="",style="dashed", color="magenta", weight=3]; 1775 -> 525[label="",style="dashed", color="red", weight=0]; 1775[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1775 -> 2112[label="",style="dashed", color="magenta", weight=3]; 1775 -> 2113[label="",style="dashed", color="magenta", weight=3]; 1776 -> 526[label="",style="dashed", color="red", weight=0]; 1776[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1776 -> 2114[label="",style="dashed", color="magenta", weight=3]; 1776 -> 2115[label="",style="dashed", color="magenta", weight=3]; 1777 -> 527[label="",style="dashed", color="red", weight=0]; 1777[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1777 -> 2116[label="",style="dashed", color="magenta", weight=3]; 1777 -> 2117[label="",style="dashed", color="magenta", weight=3]; 1778[label="vyw302 == vyw4002",fontsize=16,color="blue",shape="box"];3607[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1778 -> 3607[label="",style="solid", color="blue", weight=9]; 3607 -> 2118[label="",style="solid", color="blue", weight=3]; 3608[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1778 -> 3608[label="",style="solid", color="blue", weight=9]; 3608 -> 2119[label="",style="solid", color="blue", weight=3]; 3609[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1778 -> 3609[label="",style="solid", color="blue", weight=9]; 3609 -> 2120[label="",style="solid", color="blue", weight=3]; 3610[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1778 -> 3610[label="",style="solid", color="blue", weight=9]; 3610 -> 2121[label="",style="solid", color="blue", weight=3]; 3611[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1778 -> 3611[label="",style="solid", color="blue", weight=9]; 3611 -> 2122[label="",style="solid", color="blue", weight=3]; 3612[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1778 -> 3612[label="",style="solid", color="blue", weight=9]; 3612 -> 2123[label="",style="solid", color="blue", weight=3]; 3613[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1778 -> 3613[label="",style="solid", color="blue", weight=9]; 3613 -> 2124[label="",style="solid", color="blue", weight=3]; 3614[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1778 -> 3614[label="",style="solid", color="blue", weight=9]; 3614 -> 2125[label="",style="solid", color="blue", weight=3]; 3615[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1778 -> 3615[label="",style="solid", color="blue", weight=9]; 3615 -> 2126[label="",style="solid", color="blue", weight=3]; 3616[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1778 -> 3616[label="",style="solid", color="blue", weight=9]; 3616 -> 2127[label="",style="solid", color="blue", weight=3]; 3617[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1778 -> 3617[label="",style="solid", color="blue", weight=9]; 3617 -> 2128[label="",style="solid", color="blue", weight=3]; 3618[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1778 -> 3618[label="",style="solid", color="blue", weight=9]; 3618 -> 2129[label="",style="solid", color="blue", weight=3]; 3619[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1778 -> 3619[label="",style="solid", color="blue", weight=9]; 3619 -> 2130[label="",style="solid", color="blue", weight=3]; 3620[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1778 -> 3620[label="",style="solid", color="blue", weight=9]; 3620 -> 2131[label="",style="solid", color="blue", weight=3]; 1779[label="vyw301 == vyw4001",fontsize=16,color="blue",shape="box"];3621[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1779 -> 3621[label="",style="solid", color="blue", weight=9]; 3621 -> 2132[label="",style="solid", color="blue", weight=3]; 3622[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1779 -> 3622[label="",style="solid", color="blue", weight=9]; 3622 -> 2133[label="",style="solid", color="blue", weight=3]; 3623[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1779 -> 3623[label="",style="solid", color="blue", weight=9]; 3623 -> 2134[label="",style="solid", color="blue", weight=3]; 3624[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1779 -> 3624[label="",style="solid", color="blue", weight=9]; 3624 -> 2135[label="",style="solid", color="blue", weight=3]; 3625[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1779 -> 3625[label="",style="solid", color="blue", weight=9]; 3625 -> 2136[label="",style="solid", color="blue", weight=3]; 3626[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1779 -> 3626[label="",style="solid", color="blue", weight=9]; 3626 -> 2137[label="",style="solid", color="blue", weight=3]; 3627[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1779 -> 3627[label="",style="solid", color="blue", weight=9]; 3627 -> 2138[label="",style="solid", color="blue", weight=3]; 3628[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1779 -> 3628[label="",style="solid", color="blue", weight=9]; 3628 -> 2139[label="",style="solid", color="blue", weight=3]; 3629[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1779 -> 3629[label="",style="solid", color="blue", weight=9]; 3629 -> 2140[label="",style="solid", color="blue", weight=3]; 3630[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1779 -> 3630[label="",style="solid", color="blue", weight=9]; 3630 -> 2141[label="",style="solid", color="blue", weight=3]; 3631[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1779 -> 3631[label="",style="solid", color="blue", weight=9]; 3631 -> 2142[label="",style="solid", color="blue", weight=3]; 3632[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1779 -> 3632[label="",style="solid", color="blue", weight=9]; 3632 -> 2143[label="",style="solid", color="blue", weight=3]; 3633[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1779 -> 3633[label="",style="solid", color="blue", weight=9]; 3633 -> 2144[label="",style="solid", color="blue", weight=3]; 3634[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1779 -> 3634[label="",style="solid", color="blue", weight=9]; 3634 -> 2145[label="",style="solid", color="blue", weight=3]; 1780 -> 514[label="",style="dashed", color="red", weight=0]; 1780[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1780 -> 2146[label="",style="dashed", color="magenta", weight=3]; 1780 -> 2147[label="",style="dashed", color="magenta", weight=3]; 1781 -> 515[label="",style="dashed", color="red", weight=0]; 1781[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1781 -> 2148[label="",style="dashed", color="magenta", weight=3]; 1781 -> 2149[label="",style="dashed", color="magenta", weight=3]; 1782 -> 516[label="",style="dashed", color="red", weight=0]; 1782[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1782 -> 2150[label="",style="dashed", color="magenta", weight=3]; 1782 -> 2151[label="",style="dashed", color="magenta", weight=3]; 1783 -> 517[label="",style="dashed", color="red", weight=0]; 1783[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1783 -> 2152[label="",style="dashed", color="magenta", weight=3]; 1783 -> 2153[label="",style="dashed", color="magenta", weight=3]; 1784 -> 518[label="",style="dashed", color="red", weight=0]; 1784[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1784 -> 2154[label="",style="dashed", color="magenta", weight=3]; 1784 -> 2155[label="",style="dashed", color="magenta", weight=3]; 1785 -> 519[label="",style="dashed", color="red", weight=0]; 1785[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1785 -> 2156[label="",style="dashed", color="magenta", weight=3]; 1785 -> 2157[label="",style="dashed", color="magenta", weight=3]; 1786 -> 520[label="",style="dashed", color="red", weight=0]; 1786[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1786 -> 2158[label="",style="dashed", color="magenta", weight=3]; 1786 -> 2159[label="",style="dashed", color="magenta", weight=3]; 1787 -> 521[label="",style="dashed", color="red", weight=0]; 1787[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1787 -> 2160[label="",style="dashed", color="magenta", weight=3]; 1787 -> 2161[label="",style="dashed", color="magenta", weight=3]; 1788 -> 522[label="",style="dashed", color="red", weight=0]; 1788[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1788 -> 2162[label="",style="dashed", color="magenta", weight=3]; 1788 -> 2163[label="",style="dashed", color="magenta", weight=3]; 1789 -> 523[label="",style="dashed", color="red", weight=0]; 1789[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1789 -> 2164[label="",style="dashed", color="magenta", weight=3]; 1789 -> 2165[label="",style="dashed", color="magenta", weight=3]; 1790 -> 524[label="",style="dashed", color="red", weight=0]; 1790[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1790 -> 2166[label="",style="dashed", color="magenta", weight=3]; 1790 -> 2167[label="",style="dashed", color="magenta", weight=3]; 1791 -> 525[label="",style="dashed", color="red", weight=0]; 1791[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1791 -> 2168[label="",style="dashed", color="magenta", weight=3]; 1791 -> 2169[label="",style="dashed", color="magenta", weight=3]; 1792 -> 526[label="",style="dashed", color="red", weight=0]; 1792[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1792 -> 2170[label="",style="dashed", color="magenta", weight=3]; 1792 -> 2171[label="",style="dashed", color="magenta", weight=3]; 1793 -> 527[label="",style="dashed", color="red", weight=0]; 1793[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1793 -> 2172[label="",style="dashed", color="magenta", weight=3]; 1793 -> 2173[label="",style="dashed", color="magenta", weight=3]; 1794[label="vyw4000",fontsize=16,color="green",shape="box"];1795[label="vyw300",fontsize=16,color="green",shape="box"];1796[label="vyw4000",fontsize=16,color="green",shape="box"];1797[label="vyw300",fontsize=16,color="green",shape="box"];1798[label="vyw4000",fontsize=16,color="green",shape="box"];1799[label="vyw300",fontsize=16,color="green",shape="box"];1800[label="vyw4000",fontsize=16,color="green",shape="box"];1801[label="vyw300",fontsize=16,color="green",shape="box"];1802[label="vyw4000",fontsize=16,color="green",shape="box"];1803[label="vyw300",fontsize=16,color="green",shape="box"];1804[label="vyw4000",fontsize=16,color="green",shape="box"];1805[label="vyw300",fontsize=16,color="green",shape="box"];1806[label="vyw4000",fontsize=16,color="green",shape="box"];1807[label="vyw300",fontsize=16,color="green",shape="box"];1808[label="vyw4000",fontsize=16,color="green",shape="box"];1809[label="vyw300",fontsize=16,color="green",shape="box"];1810[label="vyw4000",fontsize=16,color="green",shape="box"];1811[label="vyw300",fontsize=16,color="green",shape="box"];1812[label="vyw4000",fontsize=16,color="green",shape="box"];1813[label="vyw300",fontsize=16,color="green",shape="box"];1814[label="vyw4000",fontsize=16,color="green",shape="box"];1815[label="vyw300",fontsize=16,color="green",shape="box"];1816[label="vyw4000",fontsize=16,color="green",shape="box"];1817[label="vyw300",fontsize=16,color="green",shape="box"];1818[label="vyw4000",fontsize=16,color="green",shape="box"];1819[label="vyw300",fontsize=16,color="green",shape="box"];1820[label="vyw4000",fontsize=16,color="green",shape="box"];1821[label="vyw300",fontsize=16,color="green",shape="box"];1822[label="vyw4000",fontsize=16,color="green",shape="box"];1823[label="vyw300",fontsize=16,color="green",shape="box"];1824[label="vyw4000",fontsize=16,color="green",shape="box"];1825[label="vyw300",fontsize=16,color="green",shape="box"];1826[label="vyw4000",fontsize=16,color="green",shape="box"];1827[label="vyw300",fontsize=16,color="green",shape="box"];1828[label="vyw4000",fontsize=16,color="green",shape="box"];1829[label="vyw300",fontsize=16,color="green",shape="box"];1830[label="vyw4000",fontsize=16,color="green",shape="box"];1831[label="vyw300",fontsize=16,color="green",shape="box"];1832[label="vyw4000",fontsize=16,color="green",shape="box"];1833[label="vyw300",fontsize=16,color="green",shape="box"];1834[label="vyw4000",fontsize=16,color="green",shape="box"];1835[label="vyw300",fontsize=16,color="green",shape="box"];1836[label="vyw4000",fontsize=16,color="green",shape="box"];1837[label="vyw300",fontsize=16,color="green",shape="box"];1838[label="vyw4000",fontsize=16,color="green",shape="box"];1839[label="vyw300",fontsize=16,color="green",shape="box"];1840[label="vyw4000",fontsize=16,color="green",shape="box"];1841[label="vyw300",fontsize=16,color="green",shape="box"];1842[label="vyw4000",fontsize=16,color="green",shape="box"];1843[label="vyw300",fontsize=16,color="green",shape="box"];1844[label="vyw4000",fontsize=16,color="green",shape="box"];1845[label="vyw300",fontsize=16,color="green",shape="box"];1846[label="vyw4000",fontsize=16,color="green",shape="box"];1847[label="vyw300",fontsize=16,color="green",shape="box"];1848[label="vyw4000",fontsize=16,color="green",shape="box"];1849[label="vyw300",fontsize=16,color="green",shape="box"];1850[label="primEqNat (Succ vyw3000) vyw4000",fontsize=16,color="burlywood",shape="box"];3635[label="vyw4000/Succ vyw40000",fontsize=10,color="white",style="solid",shape="box"];1850 -> 3635[label="",style="solid", color="burlywood", weight=9]; 3635 -> 2174[label="",style="solid", color="burlywood", weight=3]; 3636[label="vyw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1850 -> 3636[label="",style="solid", color="burlywood", weight=9]; 3636 -> 2175[label="",style="solid", color="burlywood", weight=3]; 1851[label="primEqNat Zero vyw4000",fontsize=16,color="burlywood",shape="box"];3637[label="vyw4000/Succ vyw40000",fontsize=10,color="white",style="solid",shape="box"];1851 -> 3637[label="",style="solid", color="burlywood", weight=9]; 3637 -> 2176[label="",style="solid", color="burlywood", weight=3]; 3638[label="vyw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1851 -> 3638[label="",style="solid", color="burlywood", weight=9]; 3638 -> 2177[label="",style="solid", color="burlywood", weight=3]; 1852[label="primEqInt (Pos (Succ vyw3000)) (Pos (Succ vyw40000))",fontsize=16,color="black",shape="box"];1852 -> 2178[label="",style="solid", color="black", weight=3]; 1853[label="primEqInt (Pos (Succ vyw3000)) (Pos Zero)",fontsize=16,color="black",shape="box"];1853 -> 2179[label="",style="solid", color="black", weight=3]; 1854[label="False",fontsize=16,color="green",shape="box"];1855[label="primEqInt (Pos Zero) (Pos (Succ vyw40000))",fontsize=16,color="black",shape="box"];1855 -> 2180[label="",style="solid", color="black", weight=3]; 1856[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1856 -> 2181[label="",style="solid", color="black", weight=3]; 1857[label="primEqInt (Pos Zero) (Neg (Succ vyw40000))",fontsize=16,color="black",shape="box"];1857 -> 2182[label="",style="solid", color="black", weight=3]; 1858[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1858 -> 2183[label="",style="solid", color="black", weight=3]; 1859[label="False",fontsize=16,color="green",shape="box"];1860[label="primEqInt (Neg (Succ vyw3000)) (Neg (Succ vyw40000))",fontsize=16,color="black",shape="box"];1860 -> 2184[label="",style="solid", color="black", weight=3]; 1861[label="primEqInt (Neg (Succ vyw3000)) (Neg Zero)",fontsize=16,color="black",shape="box"];1861 -> 2185[label="",style="solid", color="black", weight=3]; 1862[label="primEqInt (Neg Zero) (Pos (Succ vyw40000))",fontsize=16,color="black",shape="box"];1862 -> 2186[label="",style="solid", color="black", weight=3]; 1863[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1863 -> 2187[label="",style="solid", color="black", weight=3]; 1864[label="primEqInt (Neg Zero) (Neg (Succ vyw40000))",fontsize=16,color="black",shape="box"];1864 -> 2188[label="",style="solid", color="black", weight=3]; 1865[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1865 -> 2189[label="",style="solid", color="black", weight=3]; 1866 -> 514[label="",style="dashed", color="red", weight=0]; 1866[label="vyw301 == vyw4001",fontsize=16,color="magenta"];1866 -> 2190[label="",style="dashed", color="magenta", weight=3]; 1866 -> 2191[label="",style="dashed", color="magenta", weight=3]; 1867 -> 515[label="",style="dashed", color="red", weight=0]; 1867[label="vyw301 == vyw4001",fontsize=16,color="magenta"];1867 -> 2192[label="",style="dashed", color="magenta", weight=3]; 1867 -> 2193[label="",style="dashed", color="magenta", weight=3]; 1868 -> 516[label="",style="dashed", color="red", weight=0]; 1868[label="vyw301 == vyw4001",fontsize=16,color="magenta"];1868 -> 2194[label="",style="dashed", color="magenta", weight=3]; 1868 -> 2195[label="",style="dashed", color="magenta", weight=3]; 1869 -> 517[label="",style="dashed", color="red", weight=0]; 1869[label="vyw301 == vyw4001",fontsize=16,color="magenta"];1869 -> 2196[label="",style="dashed", color="magenta", weight=3]; 1869 -> 2197[label="",style="dashed", color="magenta", weight=3]; 1870 -> 518[label="",style="dashed", color="red", weight=0]; 1870[label="vyw301 == vyw4001",fontsize=16,color="magenta"];1870 -> 2198[label="",style="dashed", color="magenta", weight=3]; 1870 -> 2199[label="",style="dashed", color="magenta", weight=3]; 1871 -> 519[label="",style="dashed", color="red", weight=0]; 1871[label="vyw301 == vyw4001",fontsize=16,color="magenta"];1871 -> 2200[label="",style="dashed", color="magenta", weight=3]; 1871 -> 2201[label="",style="dashed", color="magenta", weight=3]; 1872 -> 520[label="",style="dashed", color="red", weight=0]; 1872[label="vyw301 == vyw4001",fontsize=16,color="magenta"];1872 -> 2202[label="",style="dashed", color="magenta", weight=3]; 1872 -> 2203[label="",style="dashed", color="magenta", weight=3]; 1873 -> 521[label="",style="dashed", color="red", weight=0]; 1873[label="vyw301 == vyw4001",fontsize=16,color="magenta"];1873 -> 2204[label="",style="dashed", color="magenta", weight=3]; 1873 -> 2205[label="",style="dashed", color="magenta", weight=3]; 1874 -> 522[label="",style="dashed", color="red", weight=0]; 1874[label="vyw301 == vyw4001",fontsize=16,color="magenta"];1874 -> 2206[label="",style="dashed", color="magenta", weight=3]; 1874 -> 2207[label="",style="dashed", color="magenta", weight=3]; 1875 -> 523[label="",style="dashed", color="red", weight=0]; 1875[label="vyw301 == vyw4001",fontsize=16,color="magenta"];1875 -> 2208[label="",style="dashed", color="magenta", weight=3]; 1875 -> 2209[label="",style="dashed", color="magenta", weight=3]; 1876 -> 524[label="",style="dashed", color="red", weight=0]; 1876[label="vyw301 == vyw4001",fontsize=16,color="magenta"];1876 -> 2210[label="",style="dashed", color="magenta", weight=3]; 1876 -> 2211[label="",style="dashed", color="magenta", weight=3]; 1877 -> 525[label="",style="dashed", color="red", weight=0]; 1877[label="vyw301 == vyw4001",fontsize=16,color="magenta"];1877 -> 2212[label="",style="dashed", color="magenta", weight=3]; 1877 -> 2213[label="",style="dashed", color="magenta", weight=3]; 1878 -> 526[label="",style="dashed", color="red", weight=0]; 1878[label="vyw301 == vyw4001",fontsize=16,color="magenta"];1878 -> 2214[label="",style="dashed", color="magenta", weight=3]; 1878 -> 2215[label="",style="dashed", color="magenta", weight=3]; 1879 -> 527[label="",style="dashed", color="red", weight=0]; 1879[label="vyw301 == vyw4001",fontsize=16,color="magenta"];1879 -> 2216[label="",style="dashed", color="magenta", weight=3]; 1879 -> 2217[label="",style="dashed", color="magenta", weight=3]; 1880 -> 514[label="",style="dashed", color="red", weight=0]; 1880[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1880 -> 2218[label="",style="dashed", color="magenta", weight=3]; 1880 -> 2219[label="",style="dashed", color="magenta", weight=3]; 1881 -> 515[label="",style="dashed", color="red", weight=0]; 1881[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1881 -> 2220[label="",style="dashed", color="magenta", weight=3]; 1881 -> 2221[label="",style="dashed", color="magenta", weight=3]; 1882 -> 516[label="",style="dashed", color="red", weight=0]; 1882[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1882 -> 2222[label="",style="dashed", color="magenta", weight=3]; 1882 -> 2223[label="",style="dashed", color="magenta", weight=3]; 1883 -> 517[label="",style="dashed", color="red", weight=0]; 1883[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1883 -> 2224[label="",style="dashed", color="magenta", weight=3]; 1883 -> 2225[label="",style="dashed", color="magenta", weight=3]; 1884 -> 518[label="",style="dashed", color="red", weight=0]; 1884[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1884 -> 2226[label="",style="dashed", color="magenta", weight=3]; 1884 -> 2227[label="",style="dashed", color="magenta", weight=3]; 1885 -> 519[label="",style="dashed", color="red", weight=0]; 1885[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1885 -> 2228[label="",style="dashed", color="magenta", weight=3]; 1885 -> 2229[label="",style="dashed", color="magenta", weight=3]; 1886 -> 520[label="",style="dashed", color="red", weight=0]; 1886[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1886 -> 2230[label="",style="dashed", color="magenta", weight=3]; 1886 -> 2231[label="",style="dashed", color="magenta", weight=3]; 1887 -> 521[label="",style="dashed", color="red", weight=0]; 1887[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1887 -> 2232[label="",style="dashed", color="magenta", weight=3]; 1887 -> 2233[label="",style="dashed", color="magenta", weight=3]; 1888 -> 522[label="",style="dashed", color="red", weight=0]; 1888[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1888 -> 2234[label="",style="dashed", color="magenta", weight=3]; 1888 -> 2235[label="",style="dashed", color="magenta", weight=3]; 1889 -> 523[label="",style="dashed", color="red", weight=0]; 1889[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1889 -> 2236[label="",style="dashed", color="magenta", weight=3]; 1889 -> 2237[label="",style="dashed", color="magenta", weight=3]; 1890 -> 524[label="",style="dashed", color="red", weight=0]; 1890[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1890 -> 2238[label="",style="dashed", color="magenta", weight=3]; 1890 -> 2239[label="",style="dashed", color="magenta", weight=3]; 1891 -> 525[label="",style="dashed", color="red", weight=0]; 1891[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1891 -> 2240[label="",style="dashed", color="magenta", weight=3]; 1891 -> 2241[label="",style="dashed", color="magenta", weight=3]; 1892 -> 526[label="",style="dashed", color="red", weight=0]; 1892[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1892 -> 2242[label="",style="dashed", color="magenta", weight=3]; 1892 -> 2243[label="",style="dashed", color="magenta", weight=3]; 1893 -> 527[label="",style="dashed", color="red", weight=0]; 1893[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1893 -> 2244[label="",style="dashed", color="magenta", weight=3]; 1893 -> 2245[label="",style="dashed", color="magenta", weight=3]; 1894 -> 518[label="",style="dashed", color="red", weight=0]; 1894[label="vyw301 == vyw4001",fontsize=16,color="magenta"];1894 -> 2246[label="",style="dashed", color="magenta", weight=3]; 1894 -> 2247[label="",style="dashed", color="magenta", weight=3]; 1895 -> 521[label="",style="dashed", color="red", weight=0]; 1895[label="vyw301 == vyw4001",fontsize=16,color="magenta"];1895 -> 2248[label="",style="dashed", color="magenta", weight=3]; 1895 -> 2249[label="",style="dashed", color="magenta", weight=3]; 1896 -> 518[label="",style="dashed", color="red", weight=0]; 1896[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1896 -> 2250[label="",style="dashed", color="magenta", weight=3]; 1896 -> 2251[label="",style="dashed", color="magenta", weight=3]; 1897 -> 521[label="",style="dashed", color="red", weight=0]; 1897[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1897 -> 2252[label="",style="dashed", color="magenta", weight=3]; 1897 -> 2253[label="",style="dashed", color="magenta", weight=3]; 1898[label="vyw4000",fontsize=16,color="green",shape="box"];1899[label="vyw300",fontsize=16,color="green",shape="box"];1900[label="vyw4000",fontsize=16,color="green",shape="box"];1901[label="vyw300",fontsize=16,color="green",shape="box"];1902[label="vyw4000",fontsize=16,color="green",shape="box"];1903[label="vyw300",fontsize=16,color="green",shape="box"];1904[label="vyw4000",fontsize=16,color="green",shape="box"];1905[label="vyw300",fontsize=16,color="green",shape="box"];1906[label="vyw4000",fontsize=16,color="green",shape="box"];1907[label="vyw300",fontsize=16,color="green",shape="box"];1908[label="vyw4000",fontsize=16,color="green",shape="box"];1909[label="vyw300",fontsize=16,color="green",shape="box"];1910[label="vyw4000",fontsize=16,color="green",shape="box"];1911[label="vyw300",fontsize=16,color="green",shape="box"];1912[label="vyw4000",fontsize=16,color="green",shape="box"];1913[label="vyw300",fontsize=16,color="green",shape="box"];1914[label="vyw4000",fontsize=16,color="green",shape="box"];1915[label="vyw300",fontsize=16,color="green",shape="box"];1916[label="vyw4000",fontsize=16,color="green",shape="box"];1917[label="vyw300",fontsize=16,color="green",shape="box"];1918[label="vyw4000",fontsize=16,color="green",shape="box"];1919[label="vyw300",fontsize=16,color="green",shape="box"];1920[label="vyw4000",fontsize=16,color="green",shape="box"];1921[label="vyw300",fontsize=16,color="green",shape="box"];1922[label="vyw4000",fontsize=16,color="green",shape="box"];1923[label="vyw300",fontsize=16,color="green",shape="box"];1924[label="vyw4000",fontsize=16,color="green",shape="box"];1925[label="vyw300",fontsize=16,color="green",shape="box"];1926 -> 417[label="",style="dashed", color="red", weight=0]; 1926[label="vyw301 * vyw4000",fontsize=16,color="magenta"];1926 -> 2254[label="",style="dashed", color="magenta", weight=3]; 1926 -> 2255[label="",style="dashed", color="magenta", weight=3]; 1927 -> 417[label="",style="dashed", color="red", weight=0]; 1927[label="vyw300 * vyw4001",fontsize=16,color="magenta"];1927 -> 2256[label="",style="dashed", color="magenta", weight=3]; 1927 -> 2257[label="",style="dashed", color="magenta", weight=3]; 1928[label="(vyw590,vyw591,vyw592) <= (vyw600,vyw601,vyw602)",fontsize=16,color="black",shape="box"];1928 -> 2258[label="",style="solid", color="black", weight=3]; 1930 -> 186[label="",style="dashed", color="red", weight=0]; 1930[label="compare vyw59 vyw60",fontsize=16,color="magenta"];1930 -> 2259[label="",style="dashed", color="magenta", weight=3]; 1930 -> 2260[label="",style="dashed", color="magenta", weight=3]; 1929[label="vyw192 /= GT",fontsize=16,color="black",shape="triangle"];1929 -> 2261[label="",style="solid", color="black", weight=3]; 1938[label="Left vyw590 <= Left vyw600",fontsize=16,color="black",shape="box"];1938 -> 2276[label="",style="solid", color="black", weight=3]; 1939[label="Left vyw590 <= Right vyw600",fontsize=16,color="black",shape="box"];1939 -> 2277[label="",style="solid", color="black", weight=3]; 1940[label="Right vyw590 <= Left vyw600",fontsize=16,color="black",shape="box"];1940 -> 2278[label="",style="solid", color="black", weight=3]; 1941[label="Right vyw590 <= Right vyw600",fontsize=16,color="black",shape="box"];1941 -> 2279[label="",style="solid", color="black", weight=3]; 1931 -> 188[label="",style="dashed", color="red", weight=0]; 1931[label="compare vyw59 vyw60",fontsize=16,color="magenta"];1931 -> 2262[label="",style="dashed", color="magenta", weight=3]; 1931 -> 2263[label="",style="dashed", color="magenta", weight=3]; 1942[label="False <= False",fontsize=16,color="black",shape="box"];1942 -> 2280[label="",style="solid", color="black", weight=3]; 1943[label="False <= True",fontsize=16,color="black",shape="box"];1943 -> 2281[label="",style="solid", color="black", weight=3]; 1944[label="True <= False",fontsize=16,color="black",shape="box"];1944 -> 2282[label="",style="solid", color="black", weight=3]; 1945[label="True <= True",fontsize=16,color="black",shape="box"];1945 -> 2283[label="",style="solid", color="black", weight=3]; 1946[label="(vyw590,vyw591) <= (vyw600,vyw601)",fontsize=16,color="black",shape="box"];1946 -> 2284[label="",style="solid", color="black", weight=3]; 1947[label="LT <= LT",fontsize=16,color="black",shape="box"];1947 -> 2285[label="",style="solid", color="black", weight=3]; 1948[label="LT <= EQ",fontsize=16,color="black",shape="box"];1948 -> 2286[label="",style="solid", color="black", weight=3]; 1949[label="LT <= GT",fontsize=16,color="black",shape="box"];1949 -> 2287[label="",style="solid", color="black", weight=3]; 1950[label="EQ <= LT",fontsize=16,color="black",shape="box"];1950 -> 2288[label="",style="solid", color="black", weight=3]; 1951[label="EQ <= EQ",fontsize=16,color="black",shape="box"];1951 -> 2289[label="",style="solid", color="black", weight=3]; 1952[label="EQ <= GT",fontsize=16,color="black",shape="box"];1952 -> 2290[label="",style="solid", color="black", weight=3]; 1953[label="GT <= LT",fontsize=16,color="black",shape="box"];1953 -> 2291[label="",style="solid", color="black", weight=3]; 1954[label="GT <= EQ",fontsize=16,color="black",shape="box"];1954 -> 2292[label="",style="solid", color="black", weight=3]; 1955[label="GT <= GT",fontsize=16,color="black",shape="box"];1955 -> 2293[label="",style="solid", color="black", weight=3]; 1956[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];1956 -> 2294[label="",style="solid", color="black", weight=3]; 1957[label="Nothing <= Just vyw600",fontsize=16,color="black",shape="box"];1957 -> 2295[label="",style="solid", color="black", weight=3]; 1958[label="Just vyw590 <= Nothing",fontsize=16,color="black",shape="box"];1958 -> 2296[label="",style="solid", color="black", weight=3]; 1959[label="Just vyw590 <= Just vyw600",fontsize=16,color="black",shape="box"];1959 -> 2297[label="",style="solid", color="black", weight=3]; 1932 -> 193[label="",style="dashed", color="red", weight=0]; 1932[label="compare vyw59 vyw60",fontsize=16,color="magenta"];1932 -> 2264[label="",style="dashed", color="magenta", weight=3]; 1932 -> 2265[label="",style="dashed", color="magenta", weight=3]; 1933 -> 194[label="",style="dashed", color="red", weight=0]; 1933[label="compare vyw59 vyw60",fontsize=16,color="magenta"];1933 -> 2266[label="",style="dashed", color="magenta", weight=3]; 1933 -> 2267[label="",style="dashed", color="magenta", weight=3]; 1934 -> 195[label="",style="dashed", color="red", weight=0]; 1934[label="compare vyw59 vyw60",fontsize=16,color="magenta"];1934 -> 2268[label="",style="dashed", color="magenta", weight=3]; 1934 -> 2269[label="",style="dashed", color="magenta", weight=3]; 1935 -> 196[label="",style="dashed", color="red", weight=0]; 1935[label="compare vyw59 vyw60",fontsize=16,color="magenta"];1935 -> 2270[label="",style="dashed", color="magenta", weight=3]; 1935 -> 2271[label="",style="dashed", color="magenta", weight=3]; 1936 -> 197[label="",style="dashed", color="red", weight=0]; 1936[label="compare vyw59 vyw60",fontsize=16,color="magenta"];1936 -> 2272[label="",style="dashed", color="magenta", weight=3]; 1936 -> 2273[label="",style="dashed", color="magenta", weight=3]; 1937 -> 198[label="",style="dashed", color="red", weight=0]; 1937[label="compare vyw59 vyw60",fontsize=16,color="magenta"];1937 -> 2274[label="",style="dashed", color="magenta", weight=3]; 1937 -> 2275[label="",style="dashed", color="magenta", weight=3]; 1960[label="GT",fontsize=16,color="green",shape="box"];1961[label="GT",fontsize=16,color="green",shape="box"];1962[label="vyw116",fontsize=16,color="green",shape="box"];1963[label="vyw114",fontsize=16,color="green",shape="box"];1964[label="vyw116",fontsize=16,color="green",shape="box"];1965[label="vyw114",fontsize=16,color="green",shape="box"];1966[label="vyw116",fontsize=16,color="green",shape="box"];1967[label="vyw114",fontsize=16,color="green",shape="box"];1968[label="vyw116",fontsize=16,color="green",shape="box"];1969[label="vyw114",fontsize=16,color="green",shape="box"];1970[label="vyw116",fontsize=16,color="green",shape="box"];1971[label="vyw114",fontsize=16,color="green",shape="box"];1972[label="vyw116",fontsize=16,color="green",shape="box"];1973[label="vyw114",fontsize=16,color="green",shape="box"];1974[label="vyw116",fontsize=16,color="green",shape="box"];1975[label="vyw114",fontsize=16,color="green",shape="box"];1976[label="vyw116",fontsize=16,color="green",shape="box"];1977[label="vyw114",fontsize=16,color="green",shape="box"];1978[label="vyw116",fontsize=16,color="green",shape="box"];1979[label="vyw114",fontsize=16,color="green",shape="box"];1980[label="vyw116",fontsize=16,color="green",shape="box"];1981[label="vyw114",fontsize=16,color="green",shape="box"];1982[label="vyw116",fontsize=16,color="green",shape="box"];1983[label="vyw114",fontsize=16,color="green",shape="box"];1984[label="vyw116",fontsize=16,color="green",shape="box"];1985[label="vyw114",fontsize=16,color="green",shape="box"];1986[label="vyw116",fontsize=16,color="green",shape="box"];1987[label="vyw114",fontsize=16,color="green",shape="box"];1988[label="vyw116",fontsize=16,color="green",shape="box"];1989[label="vyw114",fontsize=16,color="green",shape="box"];1990[label="vyw115",fontsize=16,color="green",shape="box"];1991[label="vyw113",fontsize=16,color="green",shape="box"];1992[label="vyw115",fontsize=16,color="green",shape="box"];1993[label="vyw113",fontsize=16,color="green",shape="box"];1994[label="vyw115",fontsize=16,color="green",shape="box"];1995[label="vyw113",fontsize=16,color="green",shape="box"];1996[label="vyw115",fontsize=16,color="green",shape="box"];1997[label="vyw113",fontsize=16,color="green",shape="box"];1998[label="vyw115",fontsize=16,color="green",shape="box"];1999[label="vyw113",fontsize=16,color="green",shape="box"];2000[label="vyw115",fontsize=16,color="green",shape="box"];2001[label="vyw113",fontsize=16,color="green",shape="box"];2002[label="vyw115",fontsize=16,color="green",shape="box"];2003[label="vyw113",fontsize=16,color="green",shape="box"];2004[label="vyw115",fontsize=16,color="green",shape="box"];2005[label="vyw113",fontsize=16,color="green",shape="box"];2006[label="vyw115",fontsize=16,color="green",shape="box"];2007[label="vyw113",fontsize=16,color="green",shape="box"];2008[label="vyw115",fontsize=16,color="green",shape="box"];2009[label="vyw113",fontsize=16,color="green",shape="box"];2010[label="vyw115",fontsize=16,color="green",shape="box"];2011[label="vyw113",fontsize=16,color="green",shape="box"];2012[label="vyw115",fontsize=16,color="green",shape="box"];2013[label="vyw113",fontsize=16,color="green",shape="box"];2014[label="vyw115",fontsize=16,color="green",shape="box"];2015[label="vyw113",fontsize=16,color="green",shape="box"];2016[label="vyw115",fontsize=16,color="green",shape="box"];2017[label="vyw113",fontsize=16,color="green",shape="box"];2018[label="compare1 (vyw180,vyw181) (vyw182,vyw183) False",fontsize=16,color="black",shape="box"];2018 -> 2298[label="",style="solid", color="black", weight=3]; 2019[label="compare1 (vyw180,vyw181) (vyw182,vyw183) True",fontsize=16,color="black",shape="box"];2019 -> 2299[label="",style="solid", color="black", weight=3]; 2020[label="True",fontsize=16,color="green",shape="box"];2021[label="GT",fontsize=16,color="green",shape="box"];2022 -> 2300[label="",style="dashed", color="red", weight=0]; 2022[label="primPlusNat (primMulNat vyw40000 (Succ vyw3100)) (Succ vyw3100)",fontsize=16,color="magenta"];2022 -> 2301[label="",style="dashed", color="magenta", weight=3]; 2023[label="Zero",fontsize=16,color="green",shape="box"];2024[label="Zero",fontsize=16,color="green",shape="box"];2025[label="Zero",fontsize=16,color="green",shape="box"];2026[label="vyw104",fontsize=16,color="green",shape="box"];2027[label="vyw101",fontsize=16,color="green",shape="box"];2028[label="vyw104",fontsize=16,color="green",shape="box"];2029[label="vyw101",fontsize=16,color="green",shape="box"];2030[label="vyw104",fontsize=16,color="green",shape="box"];2031[label="vyw101",fontsize=16,color="green",shape="box"];2032[label="vyw104",fontsize=16,color="green",shape="box"];2033[label="vyw101",fontsize=16,color="green",shape="box"];2034[label="vyw104",fontsize=16,color="green",shape="box"];2035[label="vyw101",fontsize=16,color="green",shape="box"];2036[label="vyw104",fontsize=16,color="green",shape="box"];2037[label="vyw101",fontsize=16,color="green",shape="box"];2038[label="vyw104",fontsize=16,color="green",shape="box"];2039[label="vyw101",fontsize=16,color="green",shape="box"];2040[label="vyw104",fontsize=16,color="green",shape="box"];2041[label="vyw101",fontsize=16,color="green",shape="box"];2042[label="vyw104",fontsize=16,color="green",shape="box"];2043[label="vyw101",fontsize=16,color="green",shape="box"];2044[label="vyw104",fontsize=16,color="green",shape="box"];2045[label="vyw101",fontsize=16,color="green",shape="box"];2046[label="vyw104",fontsize=16,color="green",shape="box"];2047[label="vyw101",fontsize=16,color="green",shape="box"];2048[label="vyw104",fontsize=16,color="green",shape="box"];2049[label="vyw101",fontsize=16,color="green",shape="box"];2050[label="vyw104",fontsize=16,color="green",shape="box"];2051[label="vyw101",fontsize=16,color="green",shape="box"];2052[label="vyw104",fontsize=16,color="green",shape="box"];2053[label="vyw101",fontsize=16,color="green",shape="box"];2054 -> 1376[label="",style="dashed", color="red", weight=0]; 2054[label="vyw102 <= vyw105",fontsize=16,color="magenta"];2054 -> 2302[label="",style="dashed", color="magenta", weight=3]; 2054 -> 2303[label="",style="dashed", color="magenta", weight=3]; 2055 -> 1377[label="",style="dashed", color="red", weight=0]; 2055[label="vyw102 <= vyw105",fontsize=16,color="magenta"];2055 -> 2304[label="",style="dashed", color="magenta", weight=3]; 2055 -> 2305[label="",style="dashed", color="magenta", weight=3]; 2056 -> 1378[label="",style="dashed", color="red", weight=0]; 2056[label="vyw102 <= vyw105",fontsize=16,color="magenta"];2056 -> 2306[label="",style="dashed", color="magenta", weight=3]; 2056 -> 2307[label="",style="dashed", color="magenta", weight=3]; 2057 -> 1379[label="",style="dashed", color="red", weight=0]; 2057[label="vyw102 <= vyw105",fontsize=16,color="magenta"];2057 -> 2308[label="",style="dashed", color="magenta", weight=3]; 2057 -> 2309[label="",style="dashed", color="magenta", weight=3]; 2058 -> 1380[label="",style="dashed", color="red", weight=0]; 2058[label="vyw102 <= vyw105",fontsize=16,color="magenta"];2058 -> 2310[label="",style="dashed", color="magenta", weight=3]; 2058 -> 2311[label="",style="dashed", color="magenta", weight=3]; 2059 -> 1381[label="",style="dashed", color="red", weight=0]; 2059[label="vyw102 <= vyw105",fontsize=16,color="magenta"];2059 -> 2312[label="",style="dashed", color="magenta", weight=3]; 2059 -> 2313[label="",style="dashed", color="magenta", weight=3]; 2060 -> 1382[label="",style="dashed", color="red", weight=0]; 2060[label="vyw102 <= vyw105",fontsize=16,color="magenta"];2060 -> 2314[label="",style="dashed", color="magenta", weight=3]; 2060 -> 2315[label="",style="dashed", color="magenta", weight=3]; 2061 -> 1383[label="",style="dashed", color="red", weight=0]; 2061[label="vyw102 <= vyw105",fontsize=16,color="magenta"];2061 -> 2316[label="",style="dashed", color="magenta", weight=3]; 2061 -> 2317[label="",style="dashed", color="magenta", weight=3]; 2062 -> 1384[label="",style="dashed", color="red", weight=0]; 2062[label="vyw102 <= vyw105",fontsize=16,color="magenta"];2062 -> 2318[label="",style="dashed", color="magenta", weight=3]; 2062 -> 2319[label="",style="dashed", color="magenta", weight=3]; 2063 -> 1385[label="",style="dashed", color="red", weight=0]; 2063[label="vyw102 <= vyw105",fontsize=16,color="magenta"];2063 -> 2320[label="",style="dashed", color="magenta", weight=3]; 2063 -> 2321[label="",style="dashed", color="magenta", weight=3]; 2064 -> 1386[label="",style="dashed", color="red", weight=0]; 2064[label="vyw102 <= vyw105",fontsize=16,color="magenta"];2064 -> 2322[label="",style="dashed", color="magenta", weight=3]; 2064 -> 2323[label="",style="dashed", color="magenta", weight=3]; 2065 -> 1387[label="",style="dashed", color="red", weight=0]; 2065[label="vyw102 <= vyw105",fontsize=16,color="magenta"];2065 -> 2324[label="",style="dashed", color="magenta", weight=3]; 2065 -> 2325[label="",style="dashed", color="magenta", weight=3]; 2066 -> 1388[label="",style="dashed", color="red", weight=0]; 2066[label="vyw102 <= vyw105",fontsize=16,color="magenta"];2066 -> 2326[label="",style="dashed", color="magenta", weight=3]; 2066 -> 2327[label="",style="dashed", color="magenta", weight=3]; 2067 -> 1389[label="",style="dashed", color="red", weight=0]; 2067[label="vyw102 <= vyw105",fontsize=16,color="magenta"];2067 -> 2328[label="",style="dashed", color="magenta", weight=3]; 2067 -> 2329[label="",style="dashed", color="magenta", weight=3]; 2068 -> 517[label="",style="dashed", color="red", weight=0]; 2068[label="vyw101 == vyw104",fontsize=16,color="magenta"];2068 -> 2330[label="",style="dashed", color="magenta", weight=3]; 2068 -> 2331[label="",style="dashed", color="magenta", weight=3]; 2069 -> 515[label="",style="dashed", color="red", weight=0]; 2069[label="vyw101 == vyw104",fontsize=16,color="magenta"];2069 -> 2332[label="",style="dashed", color="magenta", weight=3]; 2069 -> 2333[label="",style="dashed", color="magenta", weight=3]; 2070 -> 519[label="",style="dashed", color="red", weight=0]; 2070[label="vyw101 == vyw104",fontsize=16,color="magenta"];2070 -> 2334[label="",style="dashed", color="magenta", weight=3]; 2070 -> 2335[label="",style="dashed", color="magenta", weight=3]; 2071 -> 516[label="",style="dashed", color="red", weight=0]; 2071[label="vyw101 == vyw104",fontsize=16,color="magenta"];2071 -> 2336[label="",style="dashed", color="magenta", weight=3]; 2071 -> 2337[label="",style="dashed", color="magenta", weight=3]; 2072 -> 514[label="",style="dashed", color="red", weight=0]; 2072[label="vyw101 == vyw104",fontsize=16,color="magenta"];2072 -> 2338[label="",style="dashed", color="magenta", weight=3]; 2072 -> 2339[label="",style="dashed", color="magenta", weight=3]; 2073 -> 522[label="",style="dashed", color="red", weight=0]; 2073[label="vyw101 == vyw104",fontsize=16,color="magenta"];2073 -> 2340[label="",style="dashed", color="magenta", weight=3]; 2073 -> 2341[label="",style="dashed", color="magenta", weight=3]; 2074 -> 527[label="",style="dashed", color="red", weight=0]; 2074[label="vyw101 == vyw104",fontsize=16,color="magenta"];2074 -> 2342[label="",style="dashed", color="magenta", weight=3]; 2074 -> 2343[label="",style="dashed", color="magenta", weight=3]; 2075 -> 525[label="",style="dashed", color="red", weight=0]; 2075[label="vyw101 == vyw104",fontsize=16,color="magenta"];2075 -> 2344[label="",style="dashed", color="magenta", weight=3]; 2075 -> 2345[label="",style="dashed", color="magenta", weight=3]; 2076 -> 524[label="",style="dashed", color="red", weight=0]; 2076[label="vyw101 == vyw104",fontsize=16,color="magenta"];2076 -> 2346[label="",style="dashed", color="magenta", weight=3]; 2076 -> 2347[label="",style="dashed", color="magenta", weight=3]; 2077 -> 526[label="",style="dashed", color="red", weight=0]; 2077[label="vyw101 == vyw104",fontsize=16,color="magenta"];2077 -> 2348[label="",style="dashed", color="magenta", weight=3]; 2077 -> 2349[label="",style="dashed", color="magenta", weight=3]; 2078 -> 520[label="",style="dashed", color="red", weight=0]; 2078[label="vyw101 == vyw104",fontsize=16,color="magenta"];2078 -> 2350[label="",style="dashed", color="magenta", weight=3]; 2078 -> 2351[label="",style="dashed", color="magenta", weight=3]; 2079 -> 518[label="",style="dashed", color="red", weight=0]; 2079[label="vyw101 == vyw104",fontsize=16,color="magenta"];2079 -> 2352[label="",style="dashed", color="magenta", weight=3]; 2079 -> 2353[label="",style="dashed", color="magenta", weight=3]; 2080 -> 521[label="",style="dashed", color="red", weight=0]; 2080[label="vyw101 == vyw104",fontsize=16,color="magenta"];2080 -> 2354[label="",style="dashed", color="magenta", weight=3]; 2080 -> 2355[label="",style="dashed", color="magenta", weight=3]; 2081 -> 523[label="",style="dashed", color="red", weight=0]; 2081[label="vyw101 == vyw104",fontsize=16,color="magenta"];2081 -> 2356[label="",style="dashed", color="magenta", weight=3]; 2081 -> 2357[label="",style="dashed", color="magenta", weight=3]; 2082[label="vyw191",fontsize=16,color="green",shape="box"];2083[label="True",fontsize=16,color="green",shape="box"];2084[label="compare0 (vyw165,vyw166,vyw167) (vyw168,vyw169,vyw170) otherwise",fontsize=16,color="black",shape="box"];2084 -> 2358[label="",style="solid", color="black", weight=3]; 2085[label="LT",fontsize=16,color="green",shape="box"];2086[label="vyw4000",fontsize=16,color="green",shape="box"];2087[label="vyw301",fontsize=16,color="green",shape="box"];2088[label="vyw4001",fontsize=16,color="green",shape="box"];2089[label="vyw300",fontsize=16,color="green",shape="box"];2090[label="vyw4000",fontsize=16,color="green",shape="box"];2091[label="vyw300",fontsize=16,color="green",shape="box"];2092[label="vyw4000",fontsize=16,color="green",shape="box"];2093[label="vyw300",fontsize=16,color="green",shape="box"];2094[label="vyw4000",fontsize=16,color="green",shape="box"];2095[label="vyw300",fontsize=16,color="green",shape="box"];2096[label="vyw4000",fontsize=16,color="green",shape="box"];2097[label="vyw300",fontsize=16,color="green",shape="box"];2098[label="vyw4000",fontsize=16,color="green",shape="box"];2099[label="vyw300",fontsize=16,color="green",shape="box"];2100[label="vyw4000",fontsize=16,color="green",shape="box"];2101[label="vyw300",fontsize=16,color="green",shape="box"];2102[label="vyw4000",fontsize=16,color="green",shape="box"];2103[label="vyw300",fontsize=16,color="green",shape="box"];2104[label="vyw4000",fontsize=16,color="green",shape="box"];2105[label="vyw300",fontsize=16,color="green",shape="box"];2106[label="vyw4000",fontsize=16,color="green",shape="box"];2107[label="vyw300",fontsize=16,color="green",shape="box"];2108[label="vyw4000",fontsize=16,color="green",shape="box"];2109[label="vyw300",fontsize=16,color="green",shape="box"];2110[label="vyw4000",fontsize=16,color="green",shape="box"];2111[label="vyw300",fontsize=16,color="green",shape="box"];2112[label="vyw4000",fontsize=16,color="green",shape="box"];2113[label="vyw300",fontsize=16,color="green",shape="box"];2114[label="vyw4000",fontsize=16,color="green",shape="box"];2115[label="vyw300",fontsize=16,color="green",shape="box"];2116[label="vyw4000",fontsize=16,color="green",shape="box"];2117[label="vyw300",fontsize=16,color="green",shape="box"];2118 -> 514[label="",style="dashed", color="red", weight=0]; 2118[label="vyw302 == vyw4002",fontsize=16,color="magenta"];2118 -> 2359[label="",style="dashed", color="magenta", weight=3]; 2118 -> 2360[label="",style="dashed", color="magenta", weight=3]; 2119 -> 515[label="",style="dashed", color="red", weight=0]; 2119[label="vyw302 == vyw4002",fontsize=16,color="magenta"];2119 -> 2361[label="",style="dashed", color="magenta", weight=3]; 2119 -> 2362[label="",style="dashed", color="magenta", weight=3]; 2120 -> 516[label="",style="dashed", color="red", weight=0]; 2120[label="vyw302 == vyw4002",fontsize=16,color="magenta"];2120 -> 2363[label="",style="dashed", color="magenta", weight=3]; 2120 -> 2364[label="",style="dashed", color="magenta", weight=3]; 2121 -> 517[label="",style="dashed", color="red", weight=0]; 2121[label="vyw302 == vyw4002",fontsize=16,color="magenta"];2121 -> 2365[label="",style="dashed", color="magenta", weight=3]; 2121 -> 2366[label="",style="dashed", color="magenta", weight=3]; 2122 -> 518[label="",style="dashed", color="red", weight=0]; 2122[label="vyw302 == vyw4002",fontsize=16,color="magenta"];2122 -> 2367[label="",style="dashed", color="magenta", weight=3]; 2122 -> 2368[label="",style="dashed", color="magenta", weight=3]; 2123 -> 519[label="",style="dashed", color="red", weight=0]; 2123[label="vyw302 == vyw4002",fontsize=16,color="magenta"];2123 -> 2369[label="",style="dashed", color="magenta", weight=3]; 2123 -> 2370[label="",style="dashed", color="magenta", weight=3]; 2124 -> 520[label="",style="dashed", color="red", weight=0]; 2124[label="vyw302 == vyw4002",fontsize=16,color="magenta"];2124 -> 2371[label="",style="dashed", color="magenta", weight=3]; 2124 -> 2372[label="",style="dashed", color="magenta", weight=3]; 2125 -> 521[label="",style="dashed", color="red", weight=0]; 2125[label="vyw302 == vyw4002",fontsize=16,color="magenta"];2125 -> 2373[label="",style="dashed", color="magenta", weight=3]; 2125 -> 2374[label="",style="dashed", color="magenta", weight=3]; 2126 -> 522[label="",style="dashed", color="red", weight=0]; 2126[label="vyw302 == vyw4002",fontsize=16,color="magenta"];2126 -> 2375[label="",style="dashed", color="magenta", weight=3]; 2126 -> 2376[label="",style="dashed", color="magenta", weight=3]; 2127 -> 523[label="",style="dashed", color="red", weight=0]; 2127[label="vyw302 == vyw4002",fontsize=16,color="magenta"];2127 -> 2377[label="",style="dashed", color="magenta", weight=3]; 2127 -> 2378[label="",style="dashed", color="magenta", weight=3]; 2128 -> 524[label="",style="dashed", color="red", weight=0]; 2128[label="vyw302 == vyw4002",fontsize=16,color="magenta"];2128 -> 2379[label="",style="dashed", color="magenta", weight=3]; 2128 -> 2380[label="",style="dashed", color="magenta", weight=3]; 2129 -> 525[label="",style="dashed", color="red", weight=0]; 2129[label="vyw302 == vyw4002",fontsize=16,color="magenta"];2129 -> 2381[label="",style="dashed", color="magenta", weight=3]; 2129 -> 2382[label="",style="dashed", color="magenta", weight=3]; 2130 -> 526[label="",style="dashed", color="red", weight=0]; 2130[label="vyw302 == vyw4002",fontsize=16,color="magenta"];2130 -> 2383[label="",style="dashed", color="magenta", weight=3]; 2130 -> 2384[label="",style="dashed", color="magenta", weight=3]; 2131 -> 527[label="",style="dashed", color="red", weight=0]; 2131[label="vyw302 == vyw4002",fontsize=16,color="magenta"];2131 -> 2385[label="",style="dashed", color="magenta", weight=3]; 2131 -> 2386[label="",style="dashed", color="magenta", weight=3]; 2132 -> 514[label="",style="dashed", color="red", weight=0]; 2132[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2132 -> 2387[label="",style="dashed", color="magenta", weight=3]; 2132 -> 2388[label="",style="dashed", color="magenta", weight=3]; 2133 -> 515[label="",style="dashed", color="red", weight=0]; 2133[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2133 -> 2389[label="",style="dashed", color="magenta", weight=3]; 2133 -> 2390[label="",style="dashed", color="magenta", weight=3]; 2134 -> 516[label="",style="dashed", color="red", weight=0]; 2134[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2134 -> 2391[label="",style="dashed", color="magenta", weight=3]; 2134 -> 2392[label="",style="dashed", color="magenta", weight=3]; 2135 -> 517[label="",style="dashed", color="red", weight=0]; 2135[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2135 -> 2393[label="",style="dashed", color="magenta", weight=3]; 2135 -> 2394[label="",style="dashed", color="magenta", weight=3]; 2136 -> 518[label="",style="dashed", color="red", weight=0]; 2136[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2136 -> 2395[label="",style="dashed", color="magenta", weight=3]; 2136 -> 2396[label="",style="dashed", color="magenta", weight=3]; 2137 -> 519[label="",style="dashed", color="red", weight=0]; 2137[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2137 -> 2397[label="",style="dashed", color="magenta", weight=3]; 2137 -> 2398[label="",style="dashed", color="magenta", weight=3]; 2138 -> 520[label="",style="dashed", color="red", weight=0]; 2138[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2138 -> 2399[label="",style="dashed", color="magenta", weight=3]; 2138 -> 2400[label="",style="dashed", color="magenta", weight=3]; 2139 -> 521[label="",style="dashed", color="red", weight=0]; 2139[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2139 -> 2401[label="",style="dashed", color="magenta", weight=3]; 2139 -> 2402[label="",style="dashed", color="magenta", weight=3]; 2140 -> 522[label="",style="dashed", color="red", weight=0]; 2140[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2140 -> 2403[label="",style="dashed", color="magenta", weight=3]; 2140 -> 2404[label="",style="dashed", color="magenta", weight=3]; 2141 -> 523[label="",style="dashed", color="red", weight=0]; 2141[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2141 -> 2405[label="",style="dashed", color="magenta", weight=3]; 2141 -> 2406[label="",style="dashed", color="magenta", weight=3]; 2142 -> 524[label="",style="dashed", color="red", weight=0]; 2142[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2142 -> 2407[label="",style="dashed", color="magenta", weight=3]; 2142 -> 2408[label="",style="dashed", color="magenta", weight=3]; 2143 -> 525[label="",style="dashed", color="red", weight=0]; 2143[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2143 -> 2409[label="",style="dashed", color="magenta", weight=3]; 2143 -> 2410[label="",style="dashed", color="magenta", weight=3]; 2144 -> 526[label="",style="dashed", color="red", weight=0]; 2144[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2144 -> 2411[label="",style="dashed", color="magenta", weight=3]; 2144 -> 2412[label="",style="dashed", color="magenta", weight=3]; 2145 -> 527[label="",style="dashed", color="red", weight=0]; 2145[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2145 -> 2413[label="",style="dashed", color="magenta", weight=3]; 2145 -> 2414[label="",style="dashed", color="magenta", weight=3]; 2146[label="vyw4000",fontsize=16,color="green",shape="box"];2147[label="vyw300",fontsize=16,color="green",shape="box"];2148[label="vyw4000",fontsize=16,color="green",shape="box"];2149[label="vyw300",fontsize=16,color="green",shape="box"];2150[label="vyw4000",fontsize=16,color="green",shape="box"];2151[label="vyw300",fontsize=16,color="green",shape="box"];2152[label="vyw4000",fontsize=16,color="green",shape="box"];2153[label="vyw300",fontsize=16,color="green",shape="box"];2154[label="vyw4000",fontsize=16,color="green",shape="box"];2155[label="vyw300",fontsize=16,color="green",shape="box"];2156[label="vyw4000",fontsize=16,color="green",shape="box"];2157[label="vyw300",fontsize=16,color="green",shape="box"];2158[label="vyw4000",fontsize=16,color="green",shape="box"];2159[label="vyw300",fontsize=16,color="green",shape="box"];2160[label="vyw4000",fontsize=16,color="green",shape="box"];2161[label="vyw300",fontsize=16,color="green",shape="box"];2162[label="vyw4000",fontsize=16,color="green",shape="box"];2163[label="vyw300",fontsize=16,color="green",shape="box"];2164[label="vyw4000",fontsize=16,color="green",shape="box"];2165[label="vyw300",fontsize=16,color="green",shape="box"];2166[label="vyw4000",fontsize=16,color="green",shape="box"];2167[label="vyw300",fontsize=16,color="green",shape="box"];2168[label="vyw4000",fontsize=16,color="green",shape="box"];2169[label="vyw300",fontsize=16,color="green",shape="box"];2170[label="vyw4000",fontsize=16,color="green",shape="box"];2171[label="vyw300",fontsize=16,color="green",shape="box"];2172[label="vyw4000",fontsize=16,color="green",shape="box"];2173[label="vyw300",fontsize=16,color="green",shape="box"];2174[label="primEqNat (Succ vyw3000) (Succ vyw40000)",fontsize=16,color="black",shape="box"];2174 -> 2415[label="",style="solid", color="black", weight=3]; 2175[label="primEqNat (Succ vyw3000) Zero",fontsize=16,color="black",shape="box"];2175 -> 2416[label="",style="solid", color="black", weight=3]; 2176[label="primEqNat Zero (Succ vyw40000)",fontsize=16,color="black",shape="box"];2176 -> 2417[label="",style="solid", color="black", weight=3]; 2177[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];2177 -> 2418[label="",style="solid", color="black", weight=3]; 2178 -> 1540[label="",style="dashed", color="red", weight=0]; 2178[label="primEqNat vyw3000 vyw40000",fontsize=16,color="magenta"];2178 -> 2419[label="",style="dashed", color="magenta", weight=3]; 2178 -> 2420[label="",style="dashed", color="magenta", weight=3]; 2179[label="False",fontsize=16,color="green",shape="box"];2180[label="False",fontsize=16,color="green",shape="box"];2181[label="True",fontsize=16,color="green",shape="box"];2182[label="False",fontsize=16,color="green",shape="box"];2183[label="True",fontsize=16,color="green",shape="box"];2184 -> 1540[label="",style="dashed", color="red", weight=0]; 2184[label="primEqNat vyw3000 vyw40000",fontsize=16,color="magenta"];2184 -> 2421[label="",style="dashed", color="magenta", weight=3]; 2184 -> 2422[label="",style="dashed", color="magenta", weight=3]; 2185[label="False",fontsize=16,color="green",shape="box"];2186[label="False",fontsize=16,color="green",shape="box"];2187[label="True",fontsize=16,color="green",shape="box"];2188[label="False",fontsize=16,color="green",shape="box"];2189[label="True",fontsize=16,color="green",shape="box"];2190[label="vyw4001",fontsize=16,color="green",shape="box"];2191[label="vyw301",fontsize=16,color="green",shape="box"];2192[label="vyw4001",fontsize=16,color="green",shape="box"];2193[label="vyw301",fontsize=16,color="green",shape="box"];2194[label="vyw4001",fontsize=16,color="green",shape="box"];2195[label="vyw301",fontsize=16,color="green",shape="box"];2196[label="vyw4001",fontsize=16,color="green",shape="box"];2197[label="vyw301",fontsize=16,color="green",shape="box"];2198[label="vyw4001",fontsize=16,color="green",shape="box"];2199[label="vyw301",fontsize=16,color="green",shape="box"];2200[label="vyw4001",fontsize=16,color="green",shape="box"];2201[label="vyw301",fontsize=16,color="green",shape="box"];2202[label="vyw4001",fontsize=16,color="green",shape="box"];2203[label="vyw301",fontsize=16,color="green",shape="box"];2204[label="vyw4001",fontsize=16,color="green",shape="box"];2205[label="vyw301",fontsize=16,color="green",shape="box"];2206[label="vyw4001",fontsize=16,color="green",shape="box"];2207[label="vyw301",fontsize=16,color="green",shape="box"];2208[label="vyw4001",fontsize=16,color="green",shape="box"];2209[label="vyw301",fontsize=16,color="green",shape="box"];2210[label="vyw4001",fontsize=16,color="green",shape="box"];2211[label="vyw301",fontsize=16,color="green",shape="box"];2212[label="vyw4001",fontsize=16,color="green",shape="box"];2213[label="vyw301",fontsize=16,color="green",shape="box"];2214[label="vyw4001",fontsize=16,color="green",shape="box"];2215[label="vyw301",fontsize=16,color="green",shape="box"];2216[label="vyw4001",fontsize=16,color="green",shape="box"];2217[label="vyw301",fontsize=16,color="green",shape="box"];2218[label="vyw4000",fontsize=16,color="green",shape="box"];2219[label="vyw300",fontsize=16,color="green",shape="box"];2220[label="vyw4000",fontsize=16,color="green",shape="box"];2221[label="vyw300",fontsize=16,color="green",shape="box"];2222[label="vyw4000",fontsize=16,color="green",shape="box"];2223[label="vyw300",fontsize=16,color="green",shape="box"];2224[label="vyw4000",fontsize=16,color="green",shape="box"];2225[label="vyw300",fontsize=16,color="green",shape="box"];2226[label="vyw4000",fontsize=16,color="green",shape="box"];2227[label="vyw300",fontsize=16,color="green",shape="box"];2228[label="vyw4000",fontsize=16,color="green",shape="box"];2229[label="vyw300",fontsize=16,color="green",shape="box"];2230[label="vyw4000",fontsize=16,color="green",shape="box"];2231[label="vyw300",fontsize=16,color="green",shape="box"];2232[label="vyw4000",fontsize=16,color="green",shape="box"];2233[label="vyw300",fontsize=16,color="green",shape="box"];2234[label="vyw4000",fontsize=16,color="green",shape="box"];2235[label="vyw300",fontsize=16,color="green",shape="box"];2236[label="vyw4000",fontsize=16,color="green",shape="box"];2237[label="vyw300",fontsize=16,color="green",shape="box"];2238[label="vyw4000",fontsize=16,color="green",shape="box"];2239[label="vyw300",fontsize=16,color="green",shape="box"];2240[label="vyw4000",fontsize=16,color="green",shape="box"];2241[label="vyw300",fontsize=16,color="green",shape="box"];2242[label="vyw4000",fontsize=16,color="green",shape="box"];2243[label="vyw300",fontsize=16,color="green",shape="box"];2244[label="vyw4000",fontsize=16,color="green",shape="box"];2245[label="vyw300",fontsize=16,color="green",shape="box"];2246[label="vyw4001",fontsize=16,color="green",shape="box"];2247[label="vyw301",fontsize=16,color="green",shape="box"];2248[label="vyw4001",fontsize=16,color="green",shape="box"];2249[label="vyw301",fontsize=16,color="green",shape="box"];2250[label="vyw4000",fontsize=16,color="green",shape="box"];2251[label="vyw300",fontsize=16,color="green",shape="box"];2252[label="vyw4000",fontsize=16,color="green",shape="box"];2253[label="vyw300",fontsize=16,color="green",shape="box"];2254[label="vyw4000",fontsize=16,color="green",shape="box"];2255[label="vyw301",fontsize=16,color="green",shape="box"];2256[label="vyw4001",fontsize=16,color="green",shape="box"];2257[label="vyw300",fontsize=16,color="green",shape="box"];2258 -> 1706[label="",style="dashed", color="red", weight=0]; 2258[label="vyw590 < vyw600 || vyw590 == vyw600 && (vyw591 < vyw601 || vyw591 == vyw601 && vyw592 <= vyw602)",fontsize=16,color="magenta"];2258 -> 2423[label="",style="dashed", color="magenta", weight=3]; 2258 -> 2424[label="",style="dashed", color="magenta", weight=3]; 2259[label="vyw60",fontsize=16,color="green",shape="box"];2260[label="vyw59",fontsize=16,color="green",shape="box"];2261 -> 2425[label="",style="dashed", color="red", weight=0]; 2261[label="not (vyw192 == GT)",fontsize=16,color="magenta"];2261 -> 2426[label="",style="dashed", color="magenta", weight=3]; 2276[label="vyw590 <= vyw600",fontsize=16,color="blue",shape="box"];3639[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2276 -> 3639[label="",style="solid", color="blue", weight=9]; 3639 -> 2427[label="",style="solid", color="blue", weight=3]; 3640[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2276 -> 3640[label="",style="solid", color="blue", weight=9]; 3640 -> 2428[label="",style="solid", color="blue", weight=3]; 3641[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2276 -> 3641[label="",style="solid", color="blue", weight=9]; 3641 -> 2429[label="",style="solid", color="blue", weight=3]; 3642[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2276 -> 3642[label="",style="solid", color="blue", weight=9]; 3642 -> 2430[label="",style="solid", color="blue", weight=3]; 3643[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2276 -> 3643[label="",style="solid", color="blue", weight=9]; 3643 -> 2431[label="",style="solid", color="blue", weight=3]; 3644[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2276 -> 3644[label="",style="solid", color="blue", weight=9]; 3644 -> 2432[label="",style="solid", color="blue", weight=3]; 3645[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2276 -> 3645[label="",style="solid", color="blue", weight=9]; 3645 -> 2433[label="",style="solid", color="blue", weight=3]; 3646[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2276 -> 3646[label="",style="solid", color="blue", weight=9]; 3646 -> 2434[label="",style="solid", color="blue", weight=3]; 3647[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2276 -> 3647[label="",style="solid", color="blue", weight=9]; 3647 -> 2435[label="",style="solid", color="blue", weight=3]; 3648[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2276 -> 3648[label="",style="solid", color="blue", weight=9]; 3648 -> 2436[label="",style="solid", color="blue", weight=3]; 3649[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2276 -> 3649[label="",style="solid", color="blue", weight=9]; 3649 -> 2437[label="",style="solid", color="blue", weight=3]; 3650[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2276 -> 3650[label="",style="solid", color="blue", weight=9]; 3650 -> 2438[label="",style="solid", color="blue", weight=3]; 3651[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2276 -> 3651[label="",style="solid", color="blue", weight=9]; 3651 -> 2439[label="",style="solid", color="blue", weight=3]; 3652[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2276 -> 3652[label="",style="solid", color="blue", weight=9]; 3652 -> 2440[label="",style="solid", color="blue", weight=3]; 2277[label="True",fontsize=16,color="green",shape="box"];2278[label="False",fontsize=16,color="green",shape="box"];2279[label="vyw590 <= vyw600",fontsize=16,color="blue",shape="box"];3653[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2279 -> 3653[label="",style="solid", color="blue", weight=9]; 3653 -> 2441[label="",style="solid", color="blue", weight=3]; 3654[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2279 -> 3654[label="",style="solid", color="blue", weight=9]; 3654 -> 2442[label="",style="solid", color="blue", weight=3]; 3655[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2279 -> 3655[label="",style="solid", color="blue", weight=9]; 3655 -> 2443[label="",style="solid", color="blue", weight=3]; 3656[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2279 -> 3656[label="",style="solid", color="blue", weight=9]; 3656 -> 2444[label="",style="solid", color="blue", weight=3]; 3657[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2279 -> 3657[label="",style="solid", color="blue", weight=9]; 3657 -> 2445[label="",style="solid", color="blue", weight=3]; 3658[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2279 -> 3658[label="",style="solid", color="blue", weight=9]; 3658 -> 2446[label="",style="solid", color="blue", weight=3]; 3659[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2279 -> 3659[label="",style="solid", color="blue", weight=9]; 3659 -> 2447[label="",style="solid", color="blue", weight=3]; 3660[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2279 -> 3660[label="",style="solid", color="blue", weight=9]; 3660 -> 2448[label="",style="solid", color="blue", weight=3]; 3661[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2279 -> 3661[label="",style="solid", color="blue", weight=9]; 3661 -> 2449[label="",style="solid", color="blue", weight=3]; 3662[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2279 -> 3662[label="",style="solid", color="blue", weight=9]; 3662 -> 2450[label="",style="solid", color="blue", weight=3]; 3663[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2279 -> 3663[label="",style="solid", color="blue", weight=9]; 3663 -> 2451[label="",style="solid", color="blue", weight=3]; 3664[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2279 -> 3664[label="",style="solid", color="blue", weight=9]; 3664 -> 2452[label="",style="solid", color="blue", weight=3]; 3665[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2279 -> 3665[label="",style="solid", color="blue", weight=9]; 3665 -> 2453[label="",style="solid", color="blue", weight=3]; 3666[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2279 -> 3666[label="",style="solid", color="blue", weight=9]; 3666 -> 2454[label="",style="solid", color="blue", weight=3]; 2262[label="vyw60",fontsize=16,color="green",shape="box"];2263[label="vyw59",fontsize=16,color="green",shape="box"];2280[label="True",fontsize=16,color="green",shape="box"];2281[label="True",fontsize=16,color="green",shape="box"];2282[label="False",fontsize=16,color="green",shape="box"];2283[label="True",fontsize=16,color="green",shape="box"];2284 -> 1706[label="",style="dashed", color="red", weight=0]; 2284[label="vyw590 < vyw600 || vyw590 == vyw600 && vyw591 <= vyw601",fontsize=16,color="magenta"];2284 -> 2455[label="",style="dashed", color="magenta", weight=3]; 2284 -> 2456[label="",style="dashed", color="magenta", weight=3]; 2285[label="True",fontsize=16,color="green",shape="box"];2286[label="True",fontsize=16,color="green",shape="box"];2287[label="True",fontsize=16,color="green",shape="box"];2288[label="False",fontsize=16,color="green",shape="box"];2289[label="True",fontsize=16,color="green",shape="box"];2290[label="True",fontsize=16,color="green",shape="box"];2291[label="False",fontsize=16,color="green",shape="box"];2292[label="False",fontsize=16,color="green",shape="box"];2293[label="True",fontsize=16,color="green",shape="box"];2294[label="True",fontsize=16,color="green",shape="box"];2295[label="True",fontsize=16,color="green",shape="box"];2296[label="False",fontsize=16,color="green",shape="box"];2297[label="vyw590 <= vyw600",fontsize=16,color="blue",shape="box"];3667[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2297 -> 3667[label="",style="solid", color="blue", weight=9]; 3667 -> 2457[label="",style="solid", color="blue", weight=3]; 3668[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2297 -> 3668[label="",style="solid", color="blue", weight=9]; 3668 -> 2458[label="",style="solid", color="blue", weight=3]; 3669[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2297 -> 3669[label="",style="solid", color="blue", weight=9]; 3669 -> 2459[label="",style="solid", color="blue", weight=3]; 3670[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2297 -> 3670[label="",style="solid", color="blue", weight=9]; 3670 -> 2460[label="",style="solid", color="blue", weight=3]; 3671[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2297 -> 3671[label="",style="solid", color="blue", weight=9]; 3671 -> 2461[label="",style="solid", color="blue", weight=3]; 3672[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2297 -> 3672[label="",style="solid", color="blue", weight=9]; 3672 -> 2462[label="",style="solid", color="blue", weight=3]; 3673[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2297 -> 3673[label="",style="solid", color="blue", weight=9]; 3673 -> 2463[label="",style="solid", color="blue", weight=3]; 3674[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2297 -> 3674[label="",style="solid", color="blue", weight=9]; 3674 -> 2464[label="",style="solid", color="blue", weight=3]; 3675[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2297 -> 3675[label="",style="solid", color="blue", weight=9]; 3675 -> 2465[label="",style="solid", color="blue", weight=3]; 3676[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2297 -> 3676[label="",style="solid", color="blue", weight=9]; 3676 -> 2466[label="",style="solid", color="blue", weight=3]; 3677[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2297 -> 3677[label="",style="solid", color="blue", weight=9]; 3677 -> 2467[label="",style="solid", color="blue", weight=3]; 3678[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2297 -> 3678[label="",style="solid", color="blue", weight=9]; 3678 -> 2468[label="",style="solid", color="blue", weight=3]; 3679[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2297 -> 3679[label="",style="solid", color="blue", weight=9]; 3679 -> 2469[label="",style="solid", color="blue", weight=3]; 3680[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2297 -> 3680[label="",style="solid", color="blue", weight=9]; 3680 -> 2470[label="",style="solid", color="blue", weight=3]; 2264[label="vyw60",fontsize=16,color="green",shape="box"];2265[label="vyw59",fontsize=16,color="green",shape="box"];2266[label="vyw60",fontsize=16,color="green",shape="box"];2267[label="vyw59",fontsize=16,color="green",shape="box"];2268[label="vyw60",fontsize=16,color="green",shape="box"];2269[label="vyw59",fontsize=16,color="green",shape="box"];2270[label="vyw60",fontsize=16,color="green",shape="box"];2271[label="vyw59",fontsize=16,color="green",shape="box"];2272[label="vyw60",fontsize=16,color="green",shape="box"];2273[label="vyw59",fontsize=16,color="green",shape="box"];2274[label="vyw60",fontsize=16,color="green",shape="box"];2275[label="vyw59",fontsize=16,color="green",shape="box"];2298[label="compare0 (vyw180,vyw181) (vyw182,vyw183) otherwise",fontsize=16,color="black",shape="box"];2298 -> 2471[label="",style="solid", color="black", weight=3]; 2299[label="LT",fontsize=16,color="green",shape="box"];2301 -> 1335[label="",style="dashed", color="red", weight=0]; 2301[label="primMulNat vyw40000 (Succ vyw3100)",fontsize=16,color="magenta"];2301 -> 2472[label="",style="dashed", color="magenta", weight=3]; 2301 -> 2473[label="",style="dashed", color="magenta", weight=3]; 2300[label="primPlusNat vyw193 (Succ vyw3100)",fontsize=16,color="burlywood",shape="triangle"];3681[label="vyw193/Succ vyw1930",fontsize=10,color="white",style="solid",shape="box"];2300 -> 3681[label="",style="solid", color="burlywood", weight=9]; 3681 -> 2474[label="",style="solid", color="burlywood", weight=3]; 3682[label="vyw193/Zero",fontsize=10,color="white",style="solid",shape="box"];2300 -> 3682[label="",style="solid", color="burlywood", weight=9]; 3682 -> 2475[label="",style="solid", color="burlywood", weight=3]; 2302[label="vyw105",fontsize=16,color="green",shape="box"];2303[label="vyw102",fontsize=16,color="green",shape="box"];2304[label="vyw105",fontsize=16,color="green",shape="box"];2305[label="vyw102",fontsize=16,color="green",shape="box"];2306[label="vyw105",fontsize=16,color="green",shape="box"];2307[label="vyw102",fontsize=16,color="green",shape="box"];2308[label="vyw105",fontsize=16,color="green",shape="box"];2309[label="vyw102",fontsize=16,color="green",shape="box"];2310[label="vyw105",fontsize=16,color="green",shape="box"];2311[label="vyw102",fontsize=16,color="green",shape="box"];2312[label="vyw105",fontsize=16,color="green",shape="box"];2313[label="vyw102",fontsize=16,color="green",shape="box"];2314[label="vyw105",fontsize=16,color="green",shape="box"];2315[label="vyw102",fontsize=16,color="green",shape="box"];2316[label="vyw105",fontsize=16,color="green",shape="box"];2317[label="vyw102",fontsize=16,color="green",shape="box"];2318[label="vyw105",fontsize=16,color="green",shape="box"];2319[label="vyw102",fontsize=16,color="green",shape="box"];2320[label="vyw105",fontsize=16,color="green",shape="box"];2321[label="vyw102",fontsize=16,color="green",shape="box"];2322[label="vyw105",fontsize=16,color="green",shape="box"];2323[label="vyw102",fontsize=16,color="green",shape="box"];2324[label="vyw105",fontsize=16,color="green",shape="box"];2325[label="vyw102",fontsize=16,color="green",shape="box"];2326[label="vyw105",fontsize=16,color="green",shape="box"];2327[label="vyw102",fontsize=16,color="green",shape="box"];2328[label="vyw105",fontsize=16,color="green",shape="box"];2329[label="vyw102",fontsize=16,color="green",shape="box"];2330[label="vyw104",fontsize=16,color="green",shape="box"];2331[label="vyw101",fontsize=16,color="green",shape="box"];2332[label="vyw104",fontsize=16,color="green",shape="box"];2333[label="vyw101",fontsize=16,color="green",shape="box"];2334[label="vyw104",fontsize=16,color="green",shape="box"];2335[label="vyw101",fontsize=16,color="green",shape="box"];2336[label="vyw104",fontsize=16,color="green",shape="box"];2337[label="vyw101",fontsize=16,color="green",shape="box"];2338[label="vyw104",fontsize=16,color="green",shape="box"];2339[label="vyw101",fontsize=16,color="green",shape="box"];2340[label="vyw104",fontsize=16,color="green",shape="box"];2341[label="vyw101",fontsize=16,color="green",shape="box"];2342[label="vyw104",fontsize=16,color="green",shape="box"];2343[label="vyw101",fontsize=16,color="green",shape="box"];2344[label="vyw104",fontsize=16,color="green",shape="box"];2345[label="vyw101",fontsize=16,color="green",shape="box"];2346[label="vyw104",fontsize=16,color="green",shape="box"];2347[label="vyw101",fontsize=16,color="green",shape="box"];2348[label="vyw104",fontsize=16,color="green",shape="box"];2349[label="vyw101",fontsize=16,color="green",shape="box"];2350[label="vyw104",fontsize=16,color="green",shape="box"];2351[label="vyw101",fontsize=16,color="green",shape="box"];2352[label="vyw104",fontsize=16,color="green",shape="box"];2353[label="vyw101",fontsize=16,color="green",shape="box"];2354[label="vyw104",fontsize=16,color="green",shape="box"];2355[label="vyw101",fontsize=16,color="green",shape="box"];2356[label="vyw104",fontsize=16,color="green",shape="box"];2357[label="vyw101",fontsize=16,color="green",shape="box"];2358[label="compare0 (vyw165,vyw166,vyw167) (vyw168,vyw169,vyw170) True",fontsize=16,color="black",shape="box"];2358 -> 2476[label="",style="solid", color="black", weight=3]; 2359[label="vyw4002",fontsize=16,color="green",shape="box"];2360[label="vyw302",fontsize=16,color="green",shape="box"];2361[label="vyw4002",fontsize=16,color="green",shape="box"];2362[label="vyw302",fontsize=16,color="green",shape="box"];2363[label="vyw4002",fontsize=16,color="green",shape="box"];2364[label="vyw302",fontsize=16,color="green",shape="box"];2365[label="vyw4002",fontsize=16,color="green",shape="box"];2366[label="vyw302",fontsize=16,color="green",shape="box"];2367[label="vyw4002",fontsize=16,color="green",shape="box"];2368[label="vyw302",fontsize=16,color="green",shape="box"];2369[label="vyw4002",fontsize=16,color="green",shape="box"];2370[label="vyw302",fontsize=16,color="green",shape="box"];2371[label="vyw4002",fontsize=16,color="green",shape="box"];2372[label="vyw302",fontsize=16,color="green",shape="box"];2373[label="vyw4002",fontsize=16,color="green",shape="box"];2374[label="vyw302",fontsize=16,color="green",shape="box"];2375[label="vyw4002",fontsize=16,color="green",shape="box"];2376[label="vyw302",fontsize=16,color="green",shape="box"];2377[label="vyw4002",fontsize=16,color="green",shape="box"];2378[label="vyw302",fontsize=16,color="green",shape="box"];2379[label="vyw4002",fontsize=16,color="green",shape="box"];2380[label="vyw302",fontsize=16,color="green",shape="box"];2381[label="vyw4002",fontsize=16,color="green",shape="box"];2382[label="vyw302",fontsize=16,color="green",shape="box"];2383[label="vyw4002",fontsize=16,color="green",shape="box"];2384[label="vyw302",fontsize=16,color="green",shape="box"];2385[label="vyw4002",fontsize=16,color="green",shape="box"];2386[label="vyw302",fontsize=16,color="green",shape="box"];2387[label="vyw4001",fontsize=16,color="green",shape="box"];2388[label="vyw301",fontsize=16,color="green",shape="box"];2389[label="vyw4001",fontsize=16,color="green",shape="box"];2390[label="vyw301",fontsize=16,color="green",shape="box"];2391[label="vyw4001",fontsize=16,color="green",shape="box"];2392[label="vyw301",fontsize=16,color="green",shape="box"];2393[label="vyw4001",fontsize=16,color="green",shape="box"];2394[label="vyw301",fontsize=16,color="green",shape="box"];2395[label="vyw4001",fontsize=16,color="green",shape="box"];2396[label="vyw301",fontsize=16,color="green",shape="box"];2397[label="vyw4001",fontsize=16,color="green",shape="box"];2398[label="vyw301",fontsize=16,color="green",shape="box"];2399[label="vyw4001",fontsize=16,color="green",shape="box"];2400[label="vyw301",fontsize=16,color="green",shape="box"];2401[label="vyw4001",fontsize=16,color="green",shape="box"];2402[label="vyw301",fontsize=16,color="green",shape="box"];2403[label="vyw4001",fontsize=16,color="green",shape="box"];2404[label="vyw301",fontsize=16,color="green",shape="box"];2405[label="vyw4001",fontsize=16,color="green",shape="box"];2406[label="vyw301",fontsize=16,color="green",shape="box"];2407[label="vyw4001",fontsize=16,color="green",shape="box"];2408[label="vyw301",fontsize=16,color="green",shape="box"];2409[label="vyw4001",fontsize=16,color="green",shape="box"];2410[label="vyw301",fontsize=16,color="green",shape="box"];2411[label="vyw4001",fontsize=16,color="green",shape="box"];2412[label="vyw301",fontsize=16,color="green",shape="box"];2413[label="vyw4001",fontsize=16,color="green",shape="box"];2414[label="vyw301",fontsize=16,color="green",shape="box"];2415 -> 1540[label="",style="dashed", color="red", weight=0]; 2415[label="primEqNat vyw3000 vyw40000",fontsize=16,color="magenta"];2415 -> 2477[label="",style="dashed", color="magenta", weight=3]; 2415 -> 2478[label="",style="dashed", color="magenta", weight=3]; 2416[label="False",fontsize=16,color="green",shape="box"];2417[label="False",fontsize=16,color="green",shape="box"];2418[label="True",fontsize=16,color="green",shape="box"];2419[label="vyw3000",fontsize=16,color="green",shape="box"];2420[label="vyw40000",fontsize=16,color="green",shape="box"];2421[label="vyw3000",fontsize=16,color="green",shape="box"];2422[label="vyw40000",fontsize=16,color="green",shape="box"];2423[label="vyw590 < vyw600",fontsize=16,color="blue",shape="box"];3683[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2423 -> 3683[label="",style="solid", color="blue", weight=9]; 3683 -> 2479[label="",style="solid", color="blue", weight=3]; 3684[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2423 -> 3684[label="",style="solid", color="blue", weight=9]; 3684 -> 2480[label="",style="solid", color="blue", weight=3]; 3685[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2423 -> 3685[label="",style="solid", color="blue", weight=9]; 3685 -> 2481[label="",style="solid", color="blue", weight=3]; 3686[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2423 -> 3686[label="",style="solid", color="blue", weight=9]; 3686 -> 2482[label="",style="solid", color="blue", weight=3]; 3687[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2423 -> 3687[label="",style="solid", color="blue", weight=9]; 3687 -> 2483[label="",style="solid", color="blue", weight=3]; 3688[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2423 -> 3688[label="",style="solid", color="blue", weight=9]; 3688 -> 2484[label="",style="solid", color="blue", weight=3]; 3689[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2423 -> 3689[label="",style="solid", color="blue", weight=9]; 3689 -> 2485[label="",style="solid", color="blue", weight=3]; 3690[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2423 -> 3690[label="",style="solid", color="blue", weight=9]; 3690 -> 2486[label="",style="solid", color="blue", weight=3]; 3691[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2423 -> 3691[label="",style="solid", color="blue", weight=9]; 3691 -> 2487[label="",style="solid", color="blue", weight=3]; 3692[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2423 -> 3692[label="",style="solid", color="blue", weight=9]; 3692 -> 2488[label="",style="solid", color="blue", weight=3]; 3693[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2423 -> 3693[label="",style="solid", color="blue", weight=9]; 3693 -> 2489[label="",style="solid", color="blue", weight=3]; 3694[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2423 -> 3694[label="",style="solid", color="blue", weight=9]; 3694 -> 2490[label="",style="solid", color="blue", weight=3]; 3695[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2423 -> 3695[label="",style="solid", color="blue", weight=9]; 3695 -> 2491[label="",style="solid", color="blue", weight=3]; 3696[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2423 -> 3696[label="",style="solid", color="blue", weight=9]; 3696 -> 2492[label="",style="solid", color="blue", weight=3]; 2424 -> 1080[label="",style="dashed", color="red", weight=0]; 2424[label="vyw590 == vyw600 && (vyw591 < vyw601 || vyw591 == vyw601 && vyw592 <= vyw602)",fontsize=16,color="magenta"];2424 -> 2493[label="",style="dashed", color="magenta", weight=3]; 2424 -> 2494[label="",style="dashed", color="magenta", weight=3]; 2426 -> 527[label="",style="dashed", color="red", weight=0]; 2426[label="vyw192 == GT",fontsize=16,color="magenta"];2426 -> 2495[label="",style="dashed", color="magenta", weight=3]; 2426 -> 2496[label="",style="dashed", color="magenta", weight=3]; 2425[label="not vyw194",fontsize=16,color="burlywood",shape="triangle"];3697[label="vyw194/False",fontsize=10,color="white",style="solid",shape="box"];2425 -> 3697[label="",style="solid", color="burlywood", weight=9]; 3697 -> 2497[label="",style="solid", color="burlywood", weight=3]; 3698[label="vyw194/True",fontsize=10,color="white",style="solid",shape="box"];2425 -> 3698[label="",style="solid", color="burlywood", weight=9]; 3698 -> 2498[label="",style="solid", color="burlywood", weight=3]; 2427 -> 1376[label="",style="dashed", color="red", weight=0]; 2427[label="vyw590 <= vyw600",fontsize=16,color="magenta"];2427 -> 2499[label="",style="dashed", color="magenta", weight=3]; 2427 -> 2500[label="",style="dashed", color="magenta", weight=3]; 2428 -> 1377[label="",style="dashed", color="red", weight=0]; 2428[label="vyw590 <= vyw600",fontsize=16,color="magenta"];2428 -> 2501[label="",style="dashed", color="magenta", weight=3]; 2428 -> 2502[label="",style="dashed", color="magenta", weight=3]; 2429 -> 1378[label="",style="dashed", color="red", weight=0]; 2429[label="vyw590 <= vyw600",fontsize=16,color="magenta"];2429 -> 2503[label="",style="dashed", color="magenta", weight=3]; 2429 -> 2504[label="",style="dashed", color="magenta", weight=3]; 2430 -> 1379[label="",style="dashed", color="red", weight=0]; 2430[label="vyw590 <= vyw600",fontsize=16,color="magenta"];2430 -> 2505[label="",style="dashed", color="magenta", weight=3]; 2430 -> 2506[label="",style="dashed", color="magenta", weight=3]; 2431 -> 1380[label="",style="dashed", color="red", weight=0]; 2431[label="vyw590 <= vyw600",fontsize=16,color="magenta"];2431 -> 2507[label="",style="dashed", color="magenta", weight=3]; 2431 -> 2508[label="",style="dashed", color="magenta", weight=3]; 2432 -> 1381[label="",style="dashed", color="red", weight=0]; 2432[label="vyw590 <= vyw600",fontsize=16,color="magenta"];2432 -> 2509[label="",style="dashed", color="magenta", weight=3]; 2432 -> 2510[label="",style="dashed", color="magenta", weight=3]; 2433 -> 1382[label="",style="dashed", color="red", weight=0]; 2433[label="vyw590 <= vyw600",fontsize=16,color="magenta"];2433 -> 2511[label="",style="dashed", color="magenta", weight=3]; 2433 -> 2512[label="",style="dashed", color="magenta", weight=3]; 2434 -> 1383[label="",style="dashed", color="red", weight=0]; 2434[label="vyw590 <= vyw600",fontsize=16,color="magenta"];2434 -> 2513[label="",style="dashed", color="magenta", weight=3]; 2434 -> 2514[label="",style="dashed", color="magenta", weight=3]; 2435 -> 1384[label="",style="dashed", color="red", weight=0]; 2435[label="vyw590 <= vyw600",fontsize=16,color="magenta"];2435 -> 2515[label="",style="dashed", color="magenta", weight=3]; 2435 -> 2516[label="",style="dashed", color="magenta", weight=3]; 2436 -> 1385[label="",style="dashed", color="red", weight=0]; 2436[label="vyw590 <= vyw600",fontsize=16,color="magenta"];2436 -> 2517[label="",style="dashed", color="magenta", weight=3]; 2436 -> 2518[label="",style="dashed", color="magenta", weight=3]; 2437 -> 1386[label="",style="dashed", color="red", weight=0]; 2437[label="vyw590 <= vyw600",fontsize=16,color="magenta"];2437 -> 2519[label="",style="dashed", color="magenta", weight=3]; 2437 -> 2520[label="",style="dashed", color="magenta", weight=3]; 2438 -> 1387[label="",style="dashed", color="red", weight=0]; 2438[label="vyw590 <= vyw600",fontsize=16,color="magenta"];2438 -> 2521[label="",style="dashed", color="magenta", weight=3]; 2438 -> 2522[label="",style="dashed", color="magenta", weight=3]; 2439 -> 1388[label="",style="dashed", color="red", weight=0]; 2439[label="vyw590 <= vyw600",fontsize=16,color="magenta"];2439 -> 2523[label="",style="dashed", color="magenta", weight=3]; 2439 -> 2524[label="",style="dashed", color="magenta", weight=3]; 2440 -> 1389[label="",style="dashed", color="red", weight=0]; 2440[label="vyw590 <= vyw600",fontsize=16,color="magenta"];2440 -> 2525[label="",style="dashed", color="magenta", weight=3]; 2440 -> 2526[label="",style="dashed", color="magenta", weight=3]; 2441 -> 1376[label="",style="dashed", color="red", weight=0]; 2441[label="vyw590 <= vyw600",fontsize=16,color="magenta"];2441 -> 2527[label="",style="dashed", color="magenta", weight=3]; 2441 -> 2528[label="",style="dashed", color="magenta", weight=3]; 2442 -> 1377[label="",style="dashed", color="red", weight=0]; 2442[label="vyw590 <= vyw600",fontsize=16,color="magenta"];2442 -> 2529[label="",style="dashed", color="magenta", weight=3]; 2442 -> 2530[label="",style="dashed", color="magenta", weight=3]; 2443 -> 1378[label="",style="dashed", color="red", weight=0]; 2443[label="vyw590 <= vyw600",fontsize=16,color="magenta"];2443 -> 2531[label="",style="dashed", color="magenta", weight=3]; 2443 -> 2532[label="",style="dashed", color="magenta", weight=3]; 2444 -> 1379[label="",style="dashed", color="red", weight=0]; 2444[label="vyw590 <= vyw600",fontsize=16,color="magenta"];2444 -> 2533[label="",style="dashed", color="magenta", weight=3]; 2444 -> 2534[label="",style="dashed", color="magenta", weight=3]; 2445 -> 1380[label="",style="dashed", color="red", weight=0]; 2445[label="vyw590 <= vyw600",fontsize=16,color="magenta"];2445 -> 2535[label="",style="dashed", color="magenta", weight=3]; 2445 -> 2536[label="",style="dashed", color="magenta", weight=3]; 2446 -> 1381[label="",style="dashed", color="red", weight=0]; 2446[label="vyw590 <= vyw600",fontsize=16,color="magenta"];2446 -> 2537[label="",style="dashed", color="magenta", weight=3]; 2446 -> 2538[label="",style="dashed", color="magenta", weight=3]; 2447 -> 1382[label="",style="dashed", color="red", weight=0]; 2447[label="vyw590 <= vyw600",fontsize=16,color="magenta"];2447 -> 2539[label="",style="dashed", color="magenta", weight=3]; 2447 -> 2540[label="",style="dashed", color="magenta", weight=3]; 2448 -> 1383[label="",style="dashed", color="red", weight=0]; 2448[label="vyw590 <= vyw600",fontsize=16,color="magenta"];2448 -> 2541[label="",style="dashed", color="magenta", weight=3]; 2448 -> 2542[label="",style="dashed", color="magenta", weight=3]; 2449 -> 1384[label="",style="dashed", color="red", weight=0]; 2449[label="vyw590 <= vyw600",fontsize=16,color="magenta"];2449 -> 2543[label="",style="dashed", color="magenta", weight=3]; 2449 -> 2544[label="",style="dashed", color="magenta", weight=3]; 2450 -> 1385[label="",style="dashed", color="red", weight=0]; 2450[label="vyw590 <= vyw600",fontsize=16,color="magenta"];2450 -> 2545[label="",style="dashed", color="magenta", weight=3]; 2450 -> 2546[label="",style="dashed", color="magenta", weight=3]; 2451 -> 1386[label="",style="dashed", color="red", weight=0]; 2451[label="vyw590 <= vyw600",fontsize=16,color="magenta"];2451 -> 2547[label="",style="dashed", color="magenta", weight=3]; 2451 -> 2548[label="",style="dashed", color="magenta", weight=3]; 2452 -> 1387[label="",style="dashed", color="red", weight=0]; 2452[label="vyw590 <= vyw600",fontsize=16,color="magenta"];2452 -> 2549[label="",style="dashed", color="magenta", weight=3]; 2452 -> 2550[label="",style="dashed", color="magenta", weight=3]; 2453 -> 1388[label="",style="dashed", color="red", weight=0]; 2453[label="vyw590 <= vyw600",fontsize=16,color="magenta"];2453 -> 2551[label="",style="dashed", color="magenta", weight=3]; 2453 -> 2552[label="",style="dashed", color="magenta", weight=3]; 2454 -> 1389[label="",style="dashed", color="red", weight=0]; 2454[label="vyw590 <= vyw600",fontsize=16,color="magenta"];2454 -> 2553[label="",style="dashed", color="magenta", weight=3]; 2454 -> 2554[label="",style="dashed", color="magenta", weight=3]; 2455[label="vyw590 < vyw600",fontsize=16,color="blue",shape="box"];3699[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2455 -> 3699[label="",style="solid", color="blue", weight=9]; 3699 -> 2555[label="",style="solid", color="blue", weight=3]; 3700[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2455 -> 3700[label="",style="solid", color="blue", weight=9]; 3700 -> 2556[label="",style="solid", color="blue", weight=3]; 3701[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2455 -> 3701[label="",style="solid", color="blue", weight=9]; 3701 -> 2557[label="",style="solid", color="blue", weight=3]; 3702[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2455 -> 3702[label="",style="solid", color="blue", weight=9]; 3702 -> 2558[label="",style="solid", color="blue", weight=3]; 3703[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2455 -> 3703[label="",style="solid", color="blue", weight=9]; 3703 -> 2559[label="",style="solid", color="blue", weight=3]; 3704[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2455 -> 3704[label="",style="solid", color="blue", weight=9]; 3704 -> 2560[label="",style="solid", color="blue", weight=3]; 3705[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2455 -> 3705[label="",style="solid", color="blue", weight=9]; 3705 -> 2561[label="",style="solid", color="blue", weight=3]; 3706[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2455 -> 3706[label="",style="solid", color="blue", weight=9]; 3706 -> 2562[label="",style="solid", color="blue", weight=3]; 3707[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2455 -> 3707[label="",style="solid", color="blue", weight=9]; 3707 -> 2563[label="",style="solid", color="blue", weight=3]; 3708[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2455 -> 3708[label="",style="solid", color="blue", weight=9]; 3708 -> 2564[label="",style="solid", color="blue", weight=3]; 3709[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2455 -> 3709[label="",style="solid", color="blue", weight=9]; 3709 -> 2565[label="",style="solid", color="blue", weight=3]; 3710[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2455 -> 3710[label="",style="solid", color="blue", weight=9]; 3710 -> 2566[label="",style="solid", color="blue", weight=3]; 3711[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2455 -> 3711[label="",style="solid", color="blue", weight=9]; 3711 -> 2567[label="",style="solid", color="blue", weight=3]; 3712[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2455 -> 3712[label="",style="solid", color="blue", weight=9]; 3712 -> 2568[label="",style="solid", color="blue", weight=3]; 2456 -> 1080[label="",style="dashed", color="red", weight=0]; 2456[label="vyw590 == vyw600 && vyw591 <= vyw601",fontsize=16,color="magenta"];2456 -> 2569[label="",style="dashed", color="magenta", weight=3]; 2456 -> 2570[label="",style="dashed", color="magenta", weight=3]; 2457 -> 1376[label="",style="dashed", color="red", weight=0]; 2457[label="vyw590 <= vyw600",fontsize=16,color="magenta"];2457 -> 2571[label="",style="dashed", color="magenta", weight=3]; 2457 -> 2572[label="",style="dashed", color="magenta", weight=3]; 2458 -> 1377[label="",style="dashed", color="red", weight=0]; 2458[label="vyw590 <= vyw600",fontsize=16,color="magenta"];2458 -> 2573[label="",style="dashed", color="magenta", weight=3]; 2458 -> 2574[label="",style="dashed", color="magenta", weight=3]; 2459 -> 1378[label="",style="dashed", color="red", weight=0]; 2459[label="vyw590 <= vyw600",fontsize=16,color="magenta"];2459 -> 2575[label="",style="dashed", color="magenta", weight=3]; 2459 -> 2576[label="",style="dashed", color="magenta", weight=3]; 2460 -> 1379[label="",style="dashed", color="red", weight=0]; 2460[label="vyw590 <= vyw600",fontsize=16,color="magenta"];2460 -> 2577[label="",style="dashed", color="magenta", weight=3]; 2460 -> 2578[label="",style="dashed", color="magenta", weight=3]; 2461 -> 1380[label="",style="dashed", color="red", weight=0]; 2461[label="vyw590 <= vyw600",fontsize=16,color="magenta"];2461 -> 2579[label="",style="dashed", color="magenta", weight=3]; 2461 -> 2580[label="",style="dashed", color="magenta", weight=3]; 2462 -> 1381[label="",style="dashed", color="red", weight=0]; 2462[label="vyw590 <= vyw600",fontsize=16,color="magenta"];2462 -> 2581[label="",style="dashed", color="magenta", weight=3]; 2462 -> 2582[label="",style="dashed", color="magenta", weight=3]; 2463 -> 1382[label="",style="dashed", color="red", weight=0]; 2463[label="vyw590 <= vyw600",fontsize=16,color="magenta"];2463 -> 2583[label="",style="dashed", color="magenta", weight=3]; 2463 -> 2584[label="",style="dashed", color="magenta", weight=3]; 2464 -> 1383[label="",style="dashed", color="red", weight=0]; 2464[label="vyw590 <= vyw600",fontsize=16,color="magenta"];2464 -> 2585[label="",style="dashed", color="magenta", weight=3]; 2464 -> 2586[label="",style="dashed", color="magenta", weight=3]; 2465 -> 1384[label="",style="dashed", color="red", weight=0]; 2465[label="vyw590 <= vyw600",fontsize=16,color="magenta"];2465 -> 2587[label="",style="dashed", color="magenta", weight=3]; 2465 -> 2588[label="",style="dashed", color="magenta", weight=3]; 2466 -> 1385[label="",style="dashed", color="red", weight=0]; 2466[label="vyw590 <= vyw600",fontsize=16,color="magenta"];2466 -> 2589[label="",style="dashed", color="magenta", weight=3]; 2466 -> 2590[label="",style="dashed", color="magenta", weight=3]; 2467 -> 1386[label="",style="dashed", color="red", weight=0]; 2467[label="vyw590 <= vyw600",fontsize=16,color="magenta"];2467 -> 2591[label="",style="dashed", color="magenta", weight=3]; 2467 -> 2592[label="",style="dashed", color="magenta", weight=3]; 2468 -> 1387[label="",style="dashed", color="red", weight=0]; 2468[label="vyw590 <= vyw600",fontsize=16,color="magenta"];2468 -> 2593[label="",style="dashed", color="magenta", weight=3]; 2468 -> 2594[label="",style="dashed", color="magenta", weight=3]; 2469 -> 1388[label="",style="dashed", color="red", weight=0]; 2469[label="vyw590 <= vyw600",fontsize=16,color="magenta"];2469 -> 2595[label="",style="dashed", color="magenta", weight=3]; 2469 -> 2596[label="",style="dashed", color="magenta", weight=3]; 2470 -> 1389[label="",style="dashed", color="red", weight=0]; 2470[label="vyw590 <= vyw600",fontsize=16,color="magenta"];2470 -> 2597[label="",style="dashed", color="magenta", weight=3]; 2470 -> 2598[label="",style="dashed", color="magenta", weight=3]; 2471[label="compare0 (vyw180,vyw181) (vyw182,vyw183) True",fontsize=16,color="black",shape="box"];2471 -> 2599[label="",style="solid", color="black", weight=3]; 2472[label="vyw40000",fontsize=16,color="green",shape="box"];2473[label="Succ vyw3100",fontsize=16,color="green",shape="box"];2474[label="primPlusNat (Succ vyw1930) (Succ vyw3100)",fontsize=16,color="black",shape="box"];2474 -> 2600[label="",style="solid", color="black", weight=3]; 2475[label="primPlusNat Zero (Succ vyw3100)",fontsize=16,color="black",shape="box"];2475 -> 2601[label="",style="solid", color="black", weight=3]; 2476[label="GT",fontsize=16,color="green",shape="box"];2477[label="vyw3000",fontsize=16,color="green",shape="box"];2478[label="vyw40000",fontsize=16,color="green",shape="box"];2479 -> 21[label="",style="dashed", color="red", weight=0]; 2479[label="vyw590 < vyw600",fontsize=16,color="magenta"];2479 -> 2602[label="",style="dashed", color="magenta", weight=3]; 2479 -> 2603[label="",style="dashed", color="magenta", weight=3]; 2480 -> 22[label="",style="dashed", color="red", weight=0]; 2480[label="vyw590 < vyw600",fontsize=16,color="magenta"];2480 -> 2604[label="",style="dashed", color="magenta", weight=3]; 2480 -> 2605[label="",style="dashed", color="magenta", weight=3]; 2481 -> 23[label="",style="dashed", color="red", weight=0]; 2481[label="vyw590 < vyw600",fontsize=16,color="magenta"];2481 -> 2606[label="",style="dashed", color="magenta", weight=3]; 2481 -> 2607[label="",style="dashed", color="magenta", weight=3]; 2482 -> 24[label="",style="dashed", color="red", weight=0]; 2482[label="vyw590 < vyw600",fontsize=16,color="magenta"];2482 -> 2608[label="",style="dashed", color="magenta", weight=3]; 2482 -> 2609[label="",style="dashed", color="magenta", weight=3]; 2483 -> 25[label="",style="dashed", color="red", weight=0]; 2483[label="vyw590 < vyw600",fontsize=16,color="magenta"];2483 -> 2610[label="",style="dashed", color="magenta", weight=3]; 2483 -> 2611[label="",style="dashed", color="magenta", weight=3]; 2484 -> 26[label="",style="dashed", color="red", weight=0]; 2484[label="vyw590 < vyw600",fontsize=16,color="magenta"];2484 -> 2612[label="",style="dashed", color="magenta", weight=3]; 2484 -> 2613[label="",style="dashed", color="magenta", weight=3]; 2485 -> 27[label="",style="dashed", color="red", weight=0]; 2485[label="vyw590 < vyw600",fontsize=16,color="magenta"];2485 -> 2614[label="",style="dashed", color="magenta", weight=3]; 2485 -> 2615[label="",style="dashed", color="magenta", weight=3]; 2486 -> 28[label="",style="dashed", color="red", weight=0]; 2486[label="vyw590 < vyw600",fontsize=16,color="magenta"];2486 -> 2616[label="",style="dashed", color="magenta", weight=3]; 2486 -> 2617[label="",style="dashed", color="magenta", weight=3]; 2487 -> 29[label="",style="dashed", color="red", weight=0]; 2487[label="vyw590 < vyw600",fontsize=16,color="magenta"];2487 -> 2618[label="",style="dashed", color="magenta", weight=3]; 2487 -> 2619[label="",style="dashed", color="magenta", weight=3]; 2488 -> 30[label="",style="dashed", color="red", weight=0]; 2488[label="vyw590 < vyw600",fontsize=16,color="magenta"];2488 -> 2620[label="",style="dashed", color="magenta", weight=3]; 2488 -> 2621[label="",style="dashed", color="magenta", weight=3]; 2489 -> 31[label="",style="dashed", color="red", weight=0]; 2489[label="vyw590 < vyw600",fontsize=16,color="magenta"];2489 -> 2622[label="",style="dashed", color="magenta", weight=3]; 2489 -> 2623[label="",style="dashed", color="magenta", weight=3]; 2490 -> 32[label="",style="dashed", color="red", weight=0]; 2490[label="vyw590 < vyw600",fontsize=16,color="magenta"];2490 -> 2624[label="",style="dashed", color="magenta", weight=3]; 2490 -> 2625[label="",style="dashed", color="magenta", weight=3]; 2491 -> 33[label="",style="dashed", color="red", weight=0]; 2491[label="vyw590 < vyw600",fontsize=16,color="magenta"];2491 -> 2626[label="",style="dashed", color="magenta", weight=3]; 2491 -> 2627[label="",style="dashed", color="magenta", weight=3]; 2492 -> 34[label="",style="dashed", color="red", weight=0]; 2492[label="vyw590 < vyw600",fontsize=16,color="magenta"];2492 -> 2628[label="",style="dashed", color="magenta", weight=3]; 2492 -> 2629[label="",style="dashed", color="magenta", weight=3]; 2493 -> 1706[label="",style="dashed", color="red", weight=0]; 2493[label="vyw591 < vyw601 || vyw591 == vyw601 && vyw592 <= vyw602",fontsize=16,color="magenta"];2493 -> 2630[label="",style="dashed", color="magenta", weight=3]; 2493 -> 2631[label="",style="dashed", color="magenta", weight=3]; 2494[label="vyw590 == vyw600",fontsize=16,color="blue",shape="box"];3713[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2494 -> 3713[label="",style="solid", color="blue", weight=9]; 3713 -> 2632[label="",style="solid", color="blue", weight=3]; 3714[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2494 -> 3714[label="",style="solid", color="blue", weight=9]; 3714 -> 2633[label="",style="solid", color="blue", weight=3]; 3715[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2494 -> 3715[label="",style="solid", color="blue", weight=9]; 3715 -> 2634[label="",style="solid", color="blue", weight=3]; 3716[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2494 -> 3716[label="",style="solid", color="blue", weight=9]; 3716 -> 2635[label="",style="solid", color="blue", weight=3]; 3717[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2494 -> 3717[label="",style="solid", color="blue", weight=9]; 3717 -> 2636[label="",style="solid", color="blue", weight=3]; 3718[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2494 -> 3718[label="",style="solid", color="blue", weight=9]; 3718 -> 2637[label="",style="solid", color="blue", weight=3]; 3719[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2494 -> 3719[label="",style="solid", color="blue", weight=9]; 3719 -> 2638[label="",style="solid", color="blue", weight=3]; 3720[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2494 -> 3720[label="",style="solid", color="blue", weight=9]; 3720 -> 2639[label="",style="solid", color="blue", weight=3]; 3721[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2494 -> 3721[label="",style="solid", color="blue", weight=9]; 3721 -> 2640[label="",style="solid", color="blue", weight=3]; 3722[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2494 -> 3722[label="",style="solid", color="blue", weight=9]; 3722 -> 2641[label="",style="solid", color="blue", weight=3]; 3723[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2494 -> 3723[label="",style="solid", color="blue", weight=9]; 3723 -> 2642[label="",style="solid", color="blue", weight=3]; 3724[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2494 -> 3724[label="",style="solid", color="blue", weight=9]; 3724 -> 2643[label="",style="solid", color="blue", weight=3]; 3725[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2494 -> 3725[label="",style="solid", color="blue", weight=9]; 3725 -> 2644[label="",style="solid", color="blue", weight=3]; 3726[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2494 -> 3726[label="",style="solid", color="blue", weight=9]; 3726 -> 2645[label="",style="solid", color="blue", weight=3]; 2495[label="GT",fontsize=16,color="green",shape="box"];2496[label="vyw192",fontsize=16,color="green",shape="box"];2497[label="not False",fontsize=16,color="black",shape="box"];2497 -> 2646[label="",style="solid", color="black", weight=3]; 2498[label="not True",fontsize=16,color="black",shape="box"];2498 -> 2647[label="",style="solid", color="black", weight=3]; 2499[label="vyw600",fontsize=16,color="green",shape="box"];2500[label="vyw590",fontsize=16,color="green",shape="box"];2501[label="vyw600",fontsize=16,color="green",shape="box"];2502[label="vyw590",fontsize=16,color="green",shape="box"];2503[label="vyw600",fontsize=16,color="green",shape="box"];2504[label="vyw590",fontsize=16,color="green",shape="box"];2505[label="vyw600",fontsize=16,color="green",shape="box"];2506[label="vyw590",fontsize=16,color="green",shape="box"];2507[label="vyw600",fontsize=16,color="green",shape="box"];2508[label="vyw590",fontsize=16,color="green",shape="box"];2509[label="vyw600",fontsize=16,color="green",shape="box"];2510[label="vyw590",fontsize=16,color="green",shape="box"];2511[label="vyw600",fontsize=16,color="green",shape="box"];2512[label="vyw590",fontsize=16,color="green",shape="box"];2513[label="vyw600",fontsize=16,color="green",shape="box"];2514[label="vyw590",fontsize=16,color="green",shape="box"];2515[label="vyw600",fontsize=16,color="green",shape="box"];2516[label="vyw590",fontsize=16,color="green",shape="box"];2517[label="vyw600",fontsize=16,color="green",shape="box"];2518[label="vyw590",fontsize=16,color="green",shape="box"];2519[label="vyw600",fontsize=16,color="green",shape="box"];2520[label="vyw590",fontsize=16,color="green",shape="box"];2521[label="vyw600",fontsize=16,color="green",shape="box"];2522[label="vyw590",fontsize=16,color="green",shape="box"];2523[label="vyw600",fontsize=16,color="green",shape="box"];2524[label="vyw590",fontsize=16,color="green",shape="box"];2525[label="vyw600",fontsize=16,color="green",shape="box"];2526[label="vyw590",fontsize=16,color="green",shape="box"];2527[label="vyw600",fontsize=16,color="green",shape="box"];2528[label="vyw590",fontsize=16,color="green",shape="box"];2529[label="vyw600",fontsize=16,color="green",shape="box"];2530[label="vyw590",fontsize=16,color="green",shape="box"];2531[label="vyw600",fontsize=16,color="green",shape="box"];2532[label="vyw590",fontsize=16,color="green",shape="box"];2533[label="vyw600",fontsize=16,color="green",shape="box"];2534[label="vyw590",fontsize=16,color="green",shape="box"];2535[label="vyw600",fontsize=16,color="green",shape="box"];2536[label="vyw590",fontsize=16,color="green",shape="box"];2537[label="vyw600",fontsize=16,color="green",shape="box"];2538[label="vyw590",fontsize=16,color="green",shape="box"];2539[label="vyw600",fontsize=16,color="green",shape="box"];2540[label="vyw590",fontsize=16,color="green",shape="box"];2541[label="vyw600",fontsize=16,color="green",shape="box"];2542[label="vyw590",fontsize=16,color="green",shape="box"];2543[label="vyw600",fontsize=16,color="green",shape="box"];2544[label="vyw590",fontsize=16,color="green",shape="box"];2545[label="vyw600",fontsize=16,color="green",shape="box"];2546[label="vyw590",fontsize=16,color="green",shape="box"];2547[label="vyw600",fontsize=16,color="green",shape="box"];2548[label="vyw590",fontsize=16,color="green",shape="box"];2549[label="vyw600",fontsize=16,color="green",shape="box"];2550[label="vyw590",fontsize=16,color="green",shape="box"];2551[label="vyw600",fontsize=16,color="green",shape="box"];2552[label="vyw590",fontsize=16,color="green",shape="box"];2553[label="vyw600",fontsize=16,color="green",shape="box"];2554[label="vyw590",fontsize=16,color="green",shape="box"];2555 -> 21[label="",style="dashed", color="red", weight=0]; 2555[label="vyw590 < vyw600",fontsize=16,color="magenta"];2555 -> 2648[label="",style="dashed", color="magenta", weight=3]; 2555 -> 2649[label="",style="dashed", color="magenta", weight=3]; 2556 -> 22[label="",style="dashed", color="red", weight=0]; 2556[label="vyw590 < vyw600",fontsize=16,color="magenta"];2556 -> 2650[label="",style="dashed", color="magenta", weight=3]; 2556 -> 2651[label="",style="dashed", color="magenta", weight=3]; 2557 -> 23[label="",style="dashed", color="red", weight=0]; 2557[label="vyw590 < vyw600",fontsize=16,color="magenta"];2557 -> 2652[label="",style="dashed", color="magenta", weight=3]; 2557 -> 2653[label="",style="dashed", color="magenta", weight=3]; 2558 -> 24[label="",style="dashed", color="red", weight=0]; 2558[label="vyw590 < vyw600",fontsize=16,color="magenta"];2558 -> 2654[label="",style="dashed", color="magenta", weight=3]; 2558 -> 2655[label="",style="dashed", color="magenta", weight=3]; 2559 -> 25[label="",style="dashed", color="red", weight=0]; 2559[label="vyw590 < vyw600",fontsize=16,color="magenta"];2559 -> 2656[label="",style="dashed", color="magenta", weight=3]; 2559 -> 2657[label="",style="dashed", color="magenta", weight=3]; 2560 -> 26[label="",style="dashed", color="red", weight=0]; 2560[label="vyw590 < vyw600",fontsize=16,color="magenta"];2560 -> 2658[label="",style="dashed", color="magenta", weight=3]; 2560 -> 2659[label="",style="dashed", color="magenta", weight=3]; 2561 -> 27[label="",style="dashed", color="red", weight=0]; 2561[label="vyw590 < vyw600",fontsize=16,color="magenta"];2561 -> 2660[label="",style="dashed", color="magenta", weight=3]; 2561 -> 2661[label="",style="dashed", color="magenta", weight=3]; 2562 -> 28[label="",style="dashed", color="red", weight=0]; 2562[label="vyw590 < vyw600",fontsize=16,color="magenta"];2562 -> 2662[label="",style="dashed", color="magenta", weight=3]; 2562 -> 2663[label="",style="dashed", color="magenta", weight=3]; 2563 -> 29[label="",style="dashed", color="red", weight=0]; 2563[label="vyw590 < vyw600",fontsize=16,color="magenta"];2563 -> 2664[label="",style="dashed", color="magenta", weight=3]; 2563 -> 2665[label="",style="dashed", color="magenta", weight=3]; 2564 -> 30[label="",style="dashed", color="red", weight=0]; 2564[label="vyw590 < vyw600",fontsize=16,color="magenta"];2564 -> 2666[label="",style="dashed", color="magenta", weight=3]; 2564 -> 2667[label="",style="dashed", color="magenta", weight=3]; 2565 -> 31[label="",style="dashed", color="red", weight=0]; 2565[label="vyw590 < vyw600",fontsize=16,color="magenta"];2565 -> 2668[label="",style="dashed", color="magenta", weight=3]; 2565 -> 2669[label="",style="dashed", color="magenta", weight=3]; 2566 -> 32[label="",style="dashed", color="red", weight=0]; 2566[label="vyw590 < vyw600",fontsize=16,color="magenta"];2566 -> 2670[label="",style="dashed", color="magenta", weight=3]; 2566 -> 2671[label="",style="dashed", color="magenta", weight=3]; 2567 -> 33[label="",style="dashed", color="red", weight=0]; 2567[label="vyw590 < vyw600",fontsize=16,color="magenta"];2567 -> 2672[label="",style="dashed", color="magenta", weight=3]; 2567 -> 2673[label="",style="dashed", color="magenta", weight=3]; 2568 -> 34[label="",style="dashed", color="red", weight=0]; 2568[label="vyw590 < vyw600",fontsize=16,color="magenta"];2568 -> 2674[label="",style="dashed", color="magenta", weight=3]; 2568 -> 2675[label="",style="dashed", color="magenta", weight=3]; 2569[label="vyw591 <= vyw601",fontsize=16,color="blue",shape="box"];3727[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2569 -> 3727[label="",style="solid", color="blue", weight=9]; 3727 -> 2676[label="",style="solid", color="blue", weight=3]; 3728[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2569 -> 3728[label="",style="solid", color="blue", weight=9]; 3728 -> 2677[label="",style="solid", color="blue", weight=3]; 3729[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2569 -> 3729[label="",style="solid", color="blue", weight=9]; 3729 -> 2678[label="",style="solid", color="blue", weight=3]; 3730[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2569 -> 3730[label="",style="solid", color="blue", weight=9]; 3730 -> 2679[label="",style="solid", color="blue", weight=3]; 3731[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2569 -> 3731[label="",style="solid", color="blue", weight=9]; 3731 -> 2680[label="",style="solid", color="blue", weight=3]; 3732[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2569 -> 3732[label="",style="solid", color="blue", weight=9]; 3732 -> 2681[label="",style="solid", color="blue", weight=3]; 3733[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2569 -> 3733[label="",style="solid", color="blue", weight=9]; 3733 -> 2682[label="",style="solid", color="blue", weight=3]; 3734[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2569 -> 3734[label="",style="solid", color="blue", weight=9]; 3734 -> 2683[label="",style="solid", color="blue", weight=3]; 3735[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2569 -> 3735[label="",style="solid", color="blue", weight=9]; 3735 -> 2684[label="",style="solid", color="blue", weight=3]; 3736[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2569 -> 3736[label="",style="solid", color="blue", weight=9]; 3736 -> 2685[label="",style="solid", color="blue", weight=3]; 3737[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2569 -> 3737[label="",style="solid", color="blue", weight=9]; 3737 -> 2686[label="",style="solid", color="blue", weight=3]; 3738[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2569 -> 3738[label="",style="solid", color="blue", weight=9]; 3738 -> 2687[label="",style="solid", color="blue", weight=3]; 3739[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2569 -> 3739[label="",style="solid", color="blue", weight=9]; 3739 -> 2688[label="",style="solid", color="blue", weight=3]; 3740[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2569 -> 3740[label="",style="solid", color="blue", weight=9]; 3740 -> 2689[label="",style="solid", color="blue", weight=3]; 2570[label="vyw590 == vyw600",fontsize=16,color="blue",shape="box"];3741[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2570 -> 3741[label="",style="solid", color="blue", weight=9]; 3741 -> 2690[label="",style="solid", color="blue", weight=3]; 3742[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2570 -> 3742[label="",style="solid", color="blue", weight=9]; 3742 -> 2691[label="",style="solid", color="blue", weight=3]; 3743[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2570 -> 3743[label="",style="solid", color="blue", weight=9]; 3743 -> 2692[label="",style="solid", color="blue", weight=3]; 3744[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2570 -> 3744[label="",style="solid", color="blue", weight=9]; 3744 -> 2693[label="",style="solid", color="blue", weight=3]; 3745[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2570 -> 3745[label="",style="solid", color="blue", weight=9]; 3745 -> 2694[label="",style="solid", color="blue", weight=3]; 3746[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2570 -> 3746[label="",style="solid", color="blue", weight=9]; 3746 -> 2695[label="",style="solid", color="blue", weight=3]; 3747[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2570 -> 3747[label="",style="solid", color="blue", weight=9]; 3747 -> 2696[label="",style="solid", color="blue", weight=3]; 3748[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2570 -> 3748[label="",style="solid", color="blue", weight=9]; 3748 -> 2697[label="",style="solid", color="blue", weight=3]; 3749[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2570 -> 3749[label="",style="solid", color="blue", weight=9]; 3749 -> 2698[label="",style="solid", color="blue", weight=3]; 3750[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2570 -> 3750[label="",style="solid", color="blue", weight=9]; 3750 -> 2699[label="",style="solid", color="blue", weight=3]; 3751[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2570 -> 3751[label="",style="solid", color="blue", weight=9]; 3751 -> 2700[label="",style="solid", color="blue", weight=3]; 3752[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2570 -> 3752[label="",style="solid", color="blue", weight=9]; 3752 -> 2701[label="",style="solid", color="blue", weight=3]; 3753[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2570 -> 3753[label="",style="solid", color="blue", weight=9]; 3753 -> 2702[label="",style="solid", color="blue", weight=3]; 3754[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2570 -> 3754[label="",style="solid", color="blue", weight=9]; 3754 -> 2703[label="",style="solid", color="blue", weight=3]; 2571[label="vyw600",fontsize=16,color="green",shape="box"];2572[label="vyw590",fontsize=16,color="green",shape="box"];2573[label="vyw600",fontsize=16,color="green",shape="box"];2574[label="vyw590",fontsize=16,color="green",shape="box"];2575[label="vyw600",fontsize=16,color="green",shape="box"];2576[label="vyw590",fontsize=16,color="green",shape="box"];2577[label="vyw600",fontsize=16,color="green",shape="box"];2578[label="vyw590",fontsize=16,color="green",shape="box"];2579[label="vyw600",fontsize=16,color="green",shape="box"];2580[label="vyw590",fontsize=16,color="green",shape="box"];2581[label="vyw600",fontsize=16,color="green",shape="box"];2582[label="vyw590",fontsize=16,color="green",shape="box"];2583[label="vyw600",fontsize=16,color="green",shape="box"];2584[label="vyw590",fontsize=16,color="green",shape="box"];2585[label="vyw600",fontsize=16,color="green",shape="box"];2586[label="vyw590",fontsize=16,color="green",shape="box"];2587[label="vyw600",fontsize=16,color="green",shape="box"];2588[label="vyw590",fontsize=16,color="green",shape="box"];2589[label="vyw600",fontsize=16,color="green",shape="box"];2590[label="vyw590",fontsize=16,color="green",shape="box"];2591[label="vyw600",fontsize=16,color="green",shape="box"];2592[label="vyw590",fontsize=16,color="green",shape="box"];2593[label="vyw600",fontsize=16,color="green",shape="box"];2594[label="vyw590",fontsize=16,color="green",shape="box"];2595[label="vyw600",fontsize=16,color="green",shape="box"];2596[label="vyw590",fontsize=16,color="green",shape="box"];2597[label="vyw600",fontsize=16,color="green",shape="box"];2598[label="vyw590",fontsize=16,color="green",shape="box"];2599[label="GT",fontsize=16,color="green",shape="box"];2600[label="Succ (Succ (primPlusNat vyw1930 vyw3100))",fontsize=16,color="green",shape="box"];2600 -> 2704[label="",style="dashed", color="green", weight=3]; 2601[label="Succ vyw3100",fontsize=16,color="green",shape="box"];2602[label="vyw600",fontsize=16,color="green",shape="box"];2603[label="vyw590",fontsize=16,color="green",shape="box"];2604[label="vyw600",fontsize=16,color="green",shape="box"];2605[label="vyw590",fontsize=16,color="green",shape="box"];2606[label="vyw600",fontsize=16,color="green",shape="box"];2607[label="vyw590",fontsize=16,color="green",shape="box"];2608[label="vyw600",fontsize=16,color="green",shape="box"];2609[label="vyw590",fontsize=16,color="green",shape="box"];2610[label="vyw600",fontsize=16,color="green",shape="box"];2611[label="vyw590",fontsize=16,color="green",shape="box"];2612[label="vyw600",fontsize=16,color="green",shape="box"];2613[label="vyw590",fontsize=16,color="green",shape="box"];2614[label="vyw600",fontsize=16,color="green",shape="box"];2615[label="vyw590",fontsize=16,color="green",shape="box"];2616[label="vyw600",fontsize=16,color="green",shape="box"];2617[label="vyw590",fontsize=16,color="green",shape="box"];2618[label="vyw600",fontsize=16,color="green",shape="box"];2619[label="vyw590",fontsize=16,color="green",shape="box"];2620[label="vyw600",fontsize=16,color="green",shape="box"];2621[label="vyw590",fontsize=16,color="green",shape="box"];2622[label="vyw600",fontsize=16,color="green",shape="box"];2623[label="vyw590",fontsize=16,color="green",shape="box"];2624[label="vyw600",fontsize=16,color="green",shape="box"];2625[label="vyw590",fontsize=16,color="green",shape="box"];2626[label="vyw600",fontsize=16,color="green",shape="box"];2627[label="vyw590",fontsize=16,color="green",shape="box"];2628[label="vyw600",fontsize=16,color="green",shape="box"];2629[label="vyw590",fontsize=16,color="green",shape="box"];2630[label="vyw591 < vyw601",fontsize=16,color="blue",shape="box"];3755[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2630 -> 3755[label="",style="solid", color="blue", weight=9]; 3755 -> 2705[label="",style="solid", color="blue", weight=3]; 3756[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2630 -> 3756[label="",style="solid", color="blue", weight=9]; 3756 -> 2706[label="",style="solid", color="blue", weight=3]; 3757[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2630 -> 3757[label="",style="solid", color="blue", weight=9]; 3757 -> 2707[label="",style="solid", color="blue", weight=3]; 3758[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2630 -> 3758[label="",style="solid", color="blue", weight=9]; 3758 -> 2708[label="",style="solid", color="blue", weight=3]; 3759[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2630 -> 3759[label="",style="solid", color="blue", weight=9]; 3759 -> 2709[label="",style="solid", color="blue", weight=3]; 3760[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2630 -> 3760[label="",style="solid", color="blue", weight=9]; 3760 -> 2710[label="",style="solid", color="blue", weight=3]; 3761[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2630 -> 3761[label="",style="solid", color="blue", weight=9]; 3761 -> 2711[label="",style="solid", color="blue", weight=3]; 3762[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2630 -> 3762[label="",style="solid", color="blue", weight=9]; 3762 -> 2712[label="",style="solid", color="blue", weight=3]; 3763[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2630 -> 3763[label="",style="solid", color="blue", weight=9]; 3763 -> 2713[label="",style="solid", color="blue", weight=3]; 3764[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2630 -> 3764[label="",style="solid", color="blue", weight=9]; 3764 -> 2714[label="",style="solid", color="blue", weight=3]; 3765[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2630 -> 3765[label="",style="solid", color="blue", weight=9]; 3765 -> 2715[label="",style="solid", color="blue", weight=3]; 3766[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2630 -> 3766[label="",style="solid", color="blue", weight=9]; 3766 -> 2716[label="",style="solid", color="blue", weight=3]; 3767[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2630 -> 3767[label="",style="solid", color="blue", weight=9]; 3767 -> 2717[label="",style="solid", color="blue", weight=3]; 3768[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2630 -> 3768[label="",style="solid", color="blue", weight=9]; 3768 -> 2718[label="",style="solid", color="blue", weight=3]; 2631 -> 1080[label="",style="dashed", color="red", weight=0]; 2631[label="vyw591 == vyw601 && vyw592 <= vyw602",fontsize=16,color="magenta"];2631 -> 2719[label="",style="dashed", color="magenta", weight=3]; 2631 -> 2720[label="",style="dashed", color="magenta", weight=3]; 2632 -> 517[label="",style="dashed", color="red", weight=0]; 2632[label="vyw590 == vyw600",fontsize=16,color="magenta"];2632 -> 2721[label="",style="dashed", color="magenta", weight=3]; 2632 -> 2722[label="",style="dashed", color="magenta", weight=3]; 2633 -> 515[label="",style="dashed", color="red", weight=0]; 2633[label="vyw590 == vyw600",fontsize=16,color="magenta"];2633 -> 2723[label="",style="dashed", color="magenta", weight=3]; 2633 -> 2724[label="",style="dashed", color="magenta", weight=3]; 2634 -> 519[label="",style="dashed", color="red", weight=0]; 2634[label="vyw590 == vyw600",fontsize=16,color="magenta"];2634 -> 2725[label="",style="dashed", color="magenta", weight=3]; 2634 -> 2726[label="",style="dashed", color="magenta", weight=3]; 2635 -> 516[label="",style="dashed", color="red", weight=0]; 2635[label="vyw590 == vyw600",fontsize=16,color="magenta"];2635 -> 2727[label="",style="dashed", color="magenta", weight=3]; 2635 -> 2728[label="",style="dashed", color="magenta", weight=3]; 2636 -> 514[label="",style="dashed", color="red", weight=0]; 2636[label="vyw590 == vyw600",fontsize=16,color="magenta"];2636 -> 2729[label="",style="dashed", color="magenta", weight=3]; 2636 -> 2730[label="",style="dashed", color="magenta", weight=3]; 2637 -> 522[label="",style="dashed", color="red", weight=0]; 2637[label="vyw590 == vyw600",fontsize=16,color="magenta"];2637 -> 2731[label="",style="dashed", color="magenta", weight=3]; 2637 -> 2732[label="",style="dashed", color="magenta", weight=3]; 2638 -> 527[label="",style="dashed", color="red", weight=0]; 2638[label="vyw590 == vyw600",fontsize=16,color="magenta"];2638 -> 2733[label="",style="dashed", color="magenta", weight=3]; 2638 -> 2734[label="",style="dashed", color="magenta", weight=3]; 2639 -> 525[label="",style="dashed", color="red", weight=0]; 2639[label="vyw590 == vyw600",fontsize=16,color="magenta"];2639 -> 2735[label="",style="dashed", color="magenta", weight=3]; 2639 -> 2736[label="",style="dashed", color="magenta", weight=3]; 2640 -> 524[label="",style="dashed", color="red", weight=0]; 2640[label="vyw590 == vyw600",fontsize=16,color="magenta"];2640 -> 2737[label="",style="dashed", color="magenta", weight=3]; 2640 -> 2738[label="",style="dashed", color="magenta", weight=3]; 2641 -> 526[label="",style="dashed", color="red", weight=0]; 2641[label="vyw590 == vyw600",fontsize=16,color="magenta"];2641 -> 2739[label="",style="dashed", color="magenta", weight=3]; 2641 -> 2740[label="",style="dashed", color="magenta", weight=3]; 2642 -> 520[label="",style="dashed", color="red", weight=0]; 2642[label="vyw590 == vyw600",fontsize=16,color="magenta"];2642 -> 2741[label="",style="dashed", color="magenta", weight=3]; 2642 -> 2742[label="",style="dashed", color="magenta", weight=3]; 2643 -> 518[label="",style="dashed", color="red", weight=0]; 2643[label="vyw590 == vyw600",fontsize=16,color="magenta"];2643 -> 2743[label="",style="dashed", color="magenta", weight=3]; 2643 -> 2744[label="",style="dashed", color="magenta", weight=3]; 2644 -> 521[label="",style="dashed", color="red", weight=0]; 2644[label="vyw590 == vyw600",fontsize=16,color="magenta"];2644 -> 2745[label="",style="dashed", color="magenta", weight=3]; 2644 -> 2746[label="",style="dashed", color="magenta", weight=3]; 2645 -> 523[label="",style="dashed", color="red", weight=0]; 2645[label="vyw590 == vyw600",fontsize=16,color="magenta"];2645 -> 2747[label="",style="dashed", color="magenta", weight=3]; 2645 -> 2748[label="",style="dashed", color="magenta", weight=3]; 2646[label="True",fontsize=16,color="green",shape="box"];2647[label="False",fontsize=16,color="green",shape="box"];2648[label="vyw600",fontsize=16,color="green",shape="box"];2649[label="vyw590",fontsize=16,color="green",shape="box"];2650[label="vyw600",fontsize=16,color="green",shape="box"];2651[label="vyw590",fontsize=16,color="green",shape="box"];2652[label="vyw600",fontsize=16,color="green",shape="box"];2653[label="vyw590",fontsize=16,color="green",shape="box"];2654[label="vyw600",fontsize=16,color="green",shape="box"];2655[label="vyw590",fontsize=16,color="green",shape="box"];2656[label="vyw600",fontsize=16,color="green",shape="box"];2657[label="vyw590",fontsize=16,color="green",shape="box"];2658[label="vyw600",fontsize=16,color="green",shape="box"];2659[label="vyw590",fontsize=16,color="green",shape="box"];2660[label="vyw600",fontsize=16,color="green",shape="box"];2661[label="vyw590",fontsize=16,color="green",shape="box"];2662[label="vyw600",fontsize=16,color="green",shape="box"];2663[label="vyw590",fontsize=16,color="green",shape="box"];2664[label="vyw600",fontsize=16,color="green",shape="box"];2665[label="vyw590",fontsize=16,color="green",shape="box"];2666[label="vyw600",fontsize=16,color="green",shape="box"];2667[label="vyw590",fontsize=16,color="green",shape="box"];2668[label="vyw600",fontsize=16,color="green",shape="box"];2669[label="vyw590",fontsize=16,color="green",shape="box"];2670[label="vyw600",fontsize=16,color="green",shape="box"];2671[label="vyw590",fontsize=16,color="green",shape="box"];2672[label="vyw600",fontsize=16,color="green",shape="box"];2673[label="vyw590",fontsize=16,color="green",shape="box"];2674[label="vyw600",fontsize=16,color="green",shape="box"];2675[label="vyw590",fontsize=16,color="green",shape="box"];2676 -> 1376[label="",style="dashed", color="red", weight=0]; 2676[label="vyw591 <= vyw601",fontsize=16,color="magenta"];2676 -> 2749[label="",style="dashed", color="magenta", weight=3]; 2676 -> 2750[label="",style="dashed", color="magenta", weight=3]; 2677 -> 1377[label="",style="dashed", color="red", weight=0]; 2677[label="vyw591 <= vyw601",fontsize=16,color="magenta"];2677 -> 2751[label="",style="dashed", color="magenta", weight=3]; 2677 -> 2752[label="",style="dashed", color="magenta", weight=3]; 2678 -> 1378[label="",style="dashed", color="red", weight=0]; 2678[label="vyw591 <= vyw601",fontsize=16,color="magenta"];2678 -> 2753[label="",style="dashed", color="magenta", weight=3]; 2678 -> 2754[label="",style="dashed", color="magenta", weight=3]; 2679 -> 1379[label="",style="dashed", color="red", weight=0]; 2679[label="vyw591 <= vyw601",fontsize=16,color="magenta"];2679 -> 2755[label="",style="dashed", color="magenta", weight=3]; 2679 -> 2756[label="",style="dashed", color="magenta", weight=3]; 2680 -> 1380[label="",style="dashed", color="red", weight=0]; 2680[label="vyw591 <= vyw601",fontsize=16,color="magenta"];2680 -> 2757[label="",style="dashed", color="magenta", weight=3]; 2680 -> 2758[label="",style="dashed", color="magenta", weight=3]; 2681 -> 1381[label="",style="dashed", color="red", weight=0]; 2681[label="vyw591 <= vyw601",fontsize=16,color="magenta"];2681 -> 2759[label="",style="dashed", color="magenta", weight=3]; 2681 -> 2760[label="",style="dashed", color="magenta", weight=3]; 2682 -> 1382[label="",style="dashed", color="red", weight=0]; 2682[label="vyw591 <= vyw601",fontsize=16,color="magenta"];2682 -> 2761[label="",style="dashed", color="magenta", weight=3]; 2682 -> 2762[label="",style="dashed", color="magenta", weight=3]; 2683 -> 1383[label="",style="dashed", color="red", weight=0]; 2683[label="vyw591 <= vyw601",fontsize=16,color="magenta"];2683 -> 2763[label="",style="dashed", color="magenta", weight=3]; 2683 -> 2764[label="",style="dashed", color="magenta", weight=3]; 2684 -> 1384[label="",style="dashed", color="red", weight=0]; 2684[label="vyw591 <= vyw601",fontsize=16,color="magenta"];2684 -> 2765[label="",style="dashed", color="magenta", weight=3]; 2684 -> 2766[label="",style="dashed", color="magenta", weight=3]; 2685 -> 1385[label="",style="dashed", color="red", weight=0]; 2685[label="vyw591 <= vyw601",fontsize=16,color="magenta"];2685 -> 2767[label="",style="dashed", color="magenta", weight=3]; 2685 -> 2768[label="",style="dashed", color="magenta", weight=3]; 2686 -> 1386[label="",style="dashed", color="red", weight=0]; 2686[label="vyw591 <= vyw601",fontsize=16,color="magenta"];2686 -> 2769[label="",style="dashed", color="magenta", weight=3]; 2686 -> 2770[label="",style="dashed", color="magenta", weight=3]; 2687 -> 1387[label="",style="dashed", color="red", weight=0]; 2687[label="vyw591 <= vyw601",fontsize=16,color="magenta"];2687 -> 2771[label="",style="dashed", color="magenta", weight=3]; 2687 -> 2772[label="",style="dashed", color="magenta", weight=3]; 2688 -> 1388[label="",style="dashed", color="red", weight=0]; 2688[label="vyw591 <= vyw601",fontsize=16,color="magenta"];2688 -> 2773[label="",style="dashed", color="magenta", weight=3]; 2688 -> 2774[label="",style="dashed", color="magenta", weight=3]; 2689 -> 1389[label="",style="dashed", color="red", weight=0]; 2689[label="vyw591 <= vyw601",fontsize=16,color="magenta"];2689 -> 2775[label="",style="dashed", color="magenta", weight=3]; 2689 -> 2776[label="",style="dashed", color="magenta", weight=3]; 2690 -> 517[label="",style="dashed", color="red", weight=0]; 2690[label="vyw590 == vyw600",fontsize=16,color="magenta"];2690 -> 2777[label="",style="dashed", color="magenta", weight=3]; 2690 -> 2778[label="",style="dashed", color="magenta", weight=3]; 2691 -> 515[label="",style="dashed", color="red", weight=0]; 2691[label="vyw590 == vyw600",fontsize=16,color="magenta"];2691 -> 2779[label="",style="dashed", color="magenta", weight=3]; 2691 -> 2780[label="",style="dashed", color="magenta", weight=3]; 2692 -> 519[label="",style="dashed", color="red", weight=0]; 2692[label="vyw590 == vyw600",fontsize=16,color="magenta"];2692 -> 2781[label="",style="dashed", color="magenta", weight=3]; 2692 -> 2782[label="",style="dashed", color="magenta", weight=3]; 2693 -> 516[label="",style="dashed", color="red", weight=0]; 2693[label="vyw590 == vyw600",fontsize=16,color="magenta"];2693 -> 2783[label="",style="dashed", color="magenta", weight=3]; 2693 -> 2784[label="",style="dashed", color="magenta", weight=3]; 2694 -> 514[label="",style="dashed", color="red", weight=0]; 2694[label="vyw590 == vyw600",fontsize=16,color="magenta"];2694 -> 2785[label="",style="dashed", color="magenta", weight=3]; 2694 -> 2786[label="",style="dashed", color="magenta", weight=3]; 2695 -> 522[label="",style="dashed", color="red", weight=0]; 2695[label="vyw590 == vyw600",fontsize=16,color="magenta"];2695 -> 2787[label="",style="dashed", color="magenta", weight=3]; 2695 -> 2788[label="",style="dashed", color="magenta", weight=3]; 2696 -> 527[label="",style="dashed", color="red", weight=0]; 2696[label="vyw590 == vyw600",fontsize=16,color="magenta"];2696 -> 2789[label="",style="dashed", color="magenta", weight=3]; 2696 -> 2790[label="",style="dashed", color="magenta", weight=3]; 2697 -> 525[label="",style="dashed", color="red", weight=0]; 2697[label="vyw590 == vyw600",fontsize=16,color="magenta"];2697 -> 2791[label="",style="dashed", color="magenta", weight=3]; 2697 -> 2792[label="",style="dashed", color="magenta", weight=3]; 2698 -> 524[label="",style="dashed", color="red", weight=0]; 2698[label="vyw590 == vyw600",fontsize=16,color="magenta"];2698 -> 2793[label="",style="dashed", color="magenta", weight=3]; 2698 -> 2794[label="",style="dashed", color="magenta", weight=3]; 2699 -> 526[label="",style="dashed", color="red", weight=0]; 2699[label="vyw590 == vyw600",fontsize=16,color="magenta"];2699 -> 2795[label="",style="dashed", color="magenta", weight=3]; 2699 -> 2796[label="",style="dashed", color="magenta", weight=3]; 2700 -> 520[label="",style="dashed", color="red", weight=0]; 2700[label="vyw590 == vyw600",fontsize=16,color="magenta"];2700 -> 2797[label="",style="dashed", color="magenta", weight=3]; 2700 -> 2798[label="",style="dashed", color="magenta", weight=3]; 2701 -> 518[label="",style="dashed", color="red", weight=0]; 2701[label="vyw590 == vyw600",fontsize=16,color="magenta"];2701 -> 2799[label="",style="dashed", color="magenta", weight=3]; 2701 -> 2800[label="",style="dashed", color="magenta", weight=3]; 2702 -> 521[label="",style="dashed", color="red", weight=0]; 2702[label="vyw590 == vyw600",fontsize=16,color="magenta"];2702 -> 2801[label="",style="dashed", color="magenta", weight=3]; 2702 -> 2802[label="",style="dashed", color="magenta", weight=3]; 2703 -> 523[label="",style="dashed", color="red", weight=0]; 2703[label="vyw590 == vyw600",fontsize=16,color="magenta"];2703 -> 2803[label="",style="dashed", color="magenta", weight=3]; 2703 -> 2804[label="",style="dashed", color="magenta", weight=3]; 2704[label="primPlusNat vyw1930 vyw3100",fontsize=16,color="burlywood",shape="triangle"];3769[label="vyw1930/Succ vyw19300",fontsize=10,color="white",style="solid",shape="box"];2704 -> 3769[label="",style="solid", color="burlywood", weight=9]; 3769 -> 2805[label="",style="solid", color="burlywood", weight=3]; 3770[label="vyw1930/Zero",fontsize=10,color="white",style="solid",shape="box"];2704 -> 3770[label="",style="solid", color="burlywood", weight=9]; 3770 -> 2806[label="",style="solid", color="burlywood", weight=3]; 2705 -> 21[label="",style="dashed", color="red", weight=0]; 2705[label="vyw591 < vyw601",fontsize=16,color="magenta"];2705 -> 2807[label="",style="dashed", color="magenta", weight=3]; 2705 -> 2808[label="",style="dashed", color="magenta", weight=3]; 2706 -> 22[label="",style="dashed", color="red", weight=0]; 2706[label="vyw591 < vyw601",fontsize=16,color="magenta"];2706 -> 2809[label="",style="dashed", color="magenta", weight=3]; 2706 -> 2810[label="",style="dashed", color="magenta", weight=3]; 2707 -> 23[label="",style="dashed", color="red", weight=0]; 2707[label="vyw591 < vyw601",fontsize=16,color="magenta"];2707 -> 2811[label="",style="dashed", color="magenta", weight=3]; 2707 -> 2812[label="",style="dashed", color="magenta", weight=3]; 2708 -> 24[label="",style="dashed", color="red", weight=0]; 2708[label="vyw591 < vyw601",fontsize=16,color="magenta"];2708 -> 2813[label="",style="dashed", color="magenta", weight=3]; 2708 -> 2814[label="",style="dashed", color="magenta", weight=3]; 2709 -> 25[label="",style="dashed", color="red", weight=0]; 2709[label="vyw591 < vyw601",fontsize=16,color="magenta"];2709 -> 2815[label="",style="dashed", color="magenta", weight=3]; 2709 -> 2816[label="",style="dashed", color="magenta", weight=3]; 2710 -> 26[label="",style="dashed", color="red", weight=0]; 2710[label="vyw591 < vyw601",fontsize=16,color="magenta"];2710 -> 2817[label="",style="dashed", color="magenta", weight=3]; 2710 -> 2818[label="",style="dashed", color="magenta", weight=3]; 2711 -> 27[label="",style="dashed", color="red", weight=0]; 2711[label="vyw591 < vyw601",fontsize=16,color="magenta"];2711 -> 2819[label="",style="dashed", color="magenta", weight=3]; 2711 -> 2820[label="",style="dashed", color="magenta", weight=3]; 2712 -> 28[label="",style="dashed", color="red", weight=0]; 2712[label="vyw591 < vyw601",fontsize=16,color="magenta"];2712 -> 2821[label="",style="dashed", color="magenta", weight=3]; 2712 -> 2822[label="",style="dashed", color="magenta", weight=3]; 2713 -> 29[label="",style="dashed", color="red", weight=0]; 2713[label="vyw591 < vyw601",fontsize=16,color="magenta"];2713 -> 2823[label="",style="dashed", color="magenta", weight=3]; 2713 -> 2824[label="",style="dashed", color="magenta", weight=3]; 2714 -> 30[label="",style="dashed", color="red", weight=0]; 2714[label="vyw591 < vyw601",fontsize=16,color="magenta"];2714 -> 2825[label="",style="dashed", color="magenta", weight=3]; 2714 -> 2826[label="",style="dashed", color="magenta", weight=3]; 2715 -> 31[label="",style="dashed", color="red", weight=0]; 2715[label="vyw591 < vyw601",fontsize=16,color="magenta"];2715 -> 2827[label="",style="dashed", color="magenta", weight=3]; 2715 -> 2828[label="",style="dashed", color="magenta", weight=3]; 2716 -> 32[label="",style="dashed", color="red", weight=0]; 2716[label="vyw591 < vyw601",fontsize=16,color="magenta"];2716 -> 2829[label="",style="dashed", color="magenta", weight=3]; 2716 -> 2830[label="",style="dashed", color="magenta", weight=3]; 2717 -> 33[label="",style="dashed", color="red", weight=0]; 2717[label="vyw591 < vyw601",fontsize=16,color="magenta"];2717 -> 2831[label="",style="dashed", color="magenta", weight=3]; 2717 -> 2832[label="",style="dashed", color="magenta", weight=3]; 2718 -> 34[label="",style="dashed", color="red", weight=0]; 2718[label="vyw591 < vyw601",fontsize=16,color="magenta"];2718 -> 2833[label="",style="dashed", color="magenta", weight=3]; 2718 -> 2834[label="",style="dashed", color="magenta", weight=3]; 2719[label="vyw592 <= vyw602",fontsize=16,color="blue",shape="box"];3771[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2719 -> 3771[label="",style="solid", color="blue", weight=9]; 3771 -> 2835[label="",style="solid", color="blue", weight=3]; 3772[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2719 -> 3772[label="",style="solid", color="blue", weight=9]; 3772 -> 2836[label="",style="solid", color="blue", weight=3]; 3773[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2719 -> 3773[label="",style="solid", color="blue", weight=9]; 3773 -> 2837[label="",style="solid", color="blue", weight=3]; 3774[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2719 -> 3774[label="",style="solid", color="blue", weight=9]; 3774 -> 2838[label="",style="solid", color="blue", weight=3]; 3775[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2719 -> 3775[label="",style="solid", color="blue", weight=9]; 3775 -> 2839[label="",style="solid", color="blue", weight=3]; 3776[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2719 -> 3776[label="",style="solid", color="blue", weight=9]; 3776 -> 2840[label="",style="solid", color="blue", weight=3]; 3777[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2719 -> 3777[label="",style="solid", color="blue", weight=9]; 3777 -> 2841[label="",style="solid", color="blue", weight=3]; 3778[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2719 -> 3778[label="",style="solid", color="blue", weight=9]; 3778 -> 2842[label="",style="solid", color="blue", weight=3]; 3779[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2719 -> 3779[label="",style="solid", color="blue", weight=9]; 3779 -> 2843[label="",style="solid", color="blue", weight=3]; 3780[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2719 -> 3780[label="",style="solid", color="blue", weight=9]; 3780 -> 2844[label="",style="solid", color="blue", weight=3]; 3781[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2719 -> 3781[label="",style="solid", color="blue", weight=9]; 3781 -> 2845[label="",style="solid", color="blue", weight=3]; 3782[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2719 -> 3782[label="",style="solid", color="blue", weight=9]; 3782 -> 2846[label="",style="solid", color="blue", weight=3]; 3783[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2719 -> 3783[label="",style="solid", color="blue", weight=9]; 3783 -> 2847[label="",style="solid", color="blue", weight=3]; 3784[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2719 -> 3784[label="",style="solid", color="blue", weight=9]; 3784 -> 2848[label="",style="solid", color="blue", weight=3]; 2720[label="vyw591 == vyw601",fontsize=16,color="blue",shape="box"];3785[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2720 -> 3785[label="",style="solid", color="blue", weight=9]; 3785 -> 2849[label="",style="solid", color="blue", weight=3]; 3786[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2720 -> 3786[label="",style="solid", color="blue", weight=9]; 3786 -> 2850[label="",style="solid", color="blue", weight=3]; 3787[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2720 -> 3787[label="",style="solid", color="blue", weight=9]; 3787 -> 2851[label="",style="solid", color="blue", weight=3]; 3788[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2720 -> 3788[label="",style="solid", color="blue", weight=9]; 3788 -> 2852[label="",style="solid", color="blue", weight=3]; 3789[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2720 -> 3789[label="",style="solid", color="blue", weight=9]; 3789 -> 2853[label="",style="solid", color="blue", weight=3]; 3790[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2720 -> 3790[label="",style="solid", color="blue", weight=9]; 3790 -> 2854[label="",style="solid", color="blue", weight=3]; 3791[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2720 -> 3791[label="",style="solid", color="blue", weight=9]; 3791 -> 2855[label="",style="solid", color="blue", weight=3]; 3792[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2720 -> 3792[label="",style="solid", color="blue", weight=9]; 3792 -> 2856[label="",style="solid", color="blue", weight=3]; 3793[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2720 -> 3793[label="",style="solid", color="blue", weight=9]; 3793 -> 2857[label="",style="solid", color="blue", weight=3]; 3794[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2720 -> 3794[label="",style="solid", color="blue", weight=9]; 3794 -> 2858[label="",style="solid", color="blue", weight=3]; 3795[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2720 -> 3795[label="",style="solid", color="blue", weight=9]; 3795 -> 2859[label="",style="solid", color="blue", weight=3]; 3796[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2720 -> 3796[label="",style="solid", color="blue", weight=9]; 3796 -> 2860[label="",style="solid", color="blue", weight=3]; 3797[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2720 -> 3797[label="",style="solid", color="blue", weight=9]; 3797 -> 2861[label="",style="solid", color="blue", weight=3]; 3798[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2720 -> 3798[label="",style="solid", color="blue", weight=9]; 3798 -> 2862[label="",style="solid", color="blue", weight=3]; 2721[label="vyw600",fontsize=16,color="green",shape="box"];2722[label="vyw590",fontsize=16,color="green",shape="box"];2723[label="vyw600",fontsize=16,color="green",shape="box"];2724[label="vyw590",fontsize=16,color="green",shape="box"];2725[label="vyw600",fontsize=16,color="green",shape="box"];2726[label="vyw590",fontsize=16,color="green",shape="box"];2727[label="vyw600",fontsize=16,color="green",shape="box"];2728[label="vyw590",fontsize=16,color="green",shape="box"];2729[label="vyw600",fontsize=16,color="green",shape="box"];2730[label="vyw590",fontsize=16,color="green",shape="box"];2731[label="vyw600",fontsize=16,color="green",shape="box"];2732[label="vyw590",fontsize=16,color="green",shape="box"];2733[label="vyw600",fontsize=16,color="green",shape="box"];2734[label="vyw590",fontsize=16,color="green",shape="box"];2735[label="vyw600",fontsize=16,color="green",shape="box"];2736[label="vyw590",fontsize=16,color="green",shape="box"];2737[label="vyw600",fontsize=16,color="green",shape="box"];2738[label="vyw590",fontsize=16,color="green",shape="box"];2739[label="vyw600",fontsize=16,color="green",shape="box"];2740[label="vyw590",fontsize=16,color="green",shape="box"];2741[label="vyw600",fontsize=16,color="green",shape="box"];2742[label="vyw590",fontsize=16,color="green",shape="box"];2743[label="vyw600",fontsize=16,color="green",shape="box"];2744[label="vyw590",fontsize=16,color="green",shape="box"];2745[label="vyw600",fontsize=16,color="green",shape="box"];2746[label="vyw590",fontsize=16,color="green",shape="box"];2747[label="vyw600",fontsize=16,color="green",shape="box"];2748[label="vyw590",fontsize=16,color="green",shape="box"];2749[label="vyw601",fontsize=16,color="green",shape="box"];2750[label="vyw591",fontsize=16,color="green",shape="box"];2751[label="vyw601",fontsize=16,color="green",shape="box"];2752[label="vyw591",fontsize=16,color="green",shape="box"];2753[label="vyw601",fontsize=16,color="green",shape="box"];2754[label="vyw591",fontsize=16,color="green",shape="box"];2755[label="vyw601",fontsize=16,color="green",shape="box"];2756[label="vyw591",fontsize=16,color="green",shape="box"];2757[label="vyw601",fontsize=16,color="green",shape="box"];2758[label="vyw591",fontsize=16,color="green",shape="box"];2759[label="vyw601",fontsize=16,color="green",shape="box"];2760[label="vyw591",fontsize=16,color="green",shape="box"];2761[label="vyw601",fontsize=16,color="green",shape="box"];2762[label="vyw591",fontsize=16,color="green",shape="box"];2763[label="vyw601",fontsize=16,color="green",shape="box"];2764[label="vyw591",fontsize=16,color="green",shape="box"];2765[label="vyw601",fontsize=16,color="green",shape="box"];2766[label="vyw591",fontsize=16,color="green",shape="box"];2767[label="vyw601",fontsize=16,color="green",shape="box"];2768[label="vyw591",fontsize=16,color="green",shape="box"];2769[label="vyw601",fontsize=16,color="green",shape="box"];2770[label="vyw591",fontsize=16,color="green",shape="box"];2771[label="vyw601",fontsize=16,color="green",shape="box"];2772[label="vyw591",fontsize=16,color="green",shape="box"];2773[label="vyw601",fontsize=16,color="green",shape="box"];2774[label="vyw591",fontsize=16,color="green",shape="box"];2775[label="vyw601",fontsize=16,color="green",shape="box"];2776[label="vyw591",fontsize=16,color="green",shape="box"];2777[label="vyw600",fontsize=16,color="green",shape="box"];2778[label="vyw590",fontsize=16,color="green",shape="box"];2779[label="vyw600",fontsize=16,color="green",shape="box"];2780[label="vyw590",fontsize=16,color="green",shape="box"];2781[label="vyw600",fontsize=16,color="green",shape="box"];2782[label="vyw590",fontsize=16,color="green",shape="box"];2783[label="vyw600",fontsize=16,color="green",shape="box"];2784[label="vyw590",fontsize=16,color="green",shape="box"];2785[label="vyw600",fontsize=16,color="green",shape="box"];2786[label="vyw590",fontsize=16,color="green",shape="box"];2787[label="vyw600",fontsize=16,color="green",shape="box"];2788[label="vyw590",fontsize=16,color="green",shape="box"];2789[label="vyw600",fontsize=16,color="green",shape="box"];2790[label="vyw590",fontsize=16,color="green",shape="box"];2791[label="vyw600",fontsize=16,color="green",shape="box"];2792[label="vyw590",fontsize=16,color="green",shape="box"];2793[label="vyw600",fontsize=16,color="green",shape="box"];2794[label="vyw590",fontsize=16,color="green",shape="box"];2795[label="vyw600",fontsize=16,color="green",shape="box"];2796[label="vyw590",fontsize=16,color="green",shape="box"];2797[label="vyw600",fontsize=16,color="green",shape="box"];2798[label="vyw590",fontsize=16,color="green",shape="box"];2799[label="vyw600",fontsize=16,color="green",shape="box"];2800[label="vyw590",fontsize=16,color="green",shape="box"];2801[label="vyw600",fontsize=16,color="green",shape="box"];2802[label="vyw590",fontsize=16,color="green",shape="box"];2803[label="vyw600",fontsize=16,color="green",shape="box"];2804[label="vyw590",fontsize=16,color="green",shape="box"];2805[label="primPlusNat (Succ vyw19300) vyw3100",fontsize=16,color="burlywood",shape="box"];3799[label="vyw3100/Succ vyw31000",fontsize=10,color="white",style="solid",shape="box"];2805 -> 3799[label="",style="solid", color="burlywood", weight=9]; 3799 -> 2863[label="",style="solid", color="burlywood", weight=3]; 3800[label="vyw3100/Zero",fontsize=10,color="white",style="solid",shape="box"];2805 -> 3800[label="",style="solid", color="burlywood", weight=9]; 3800 -> 2864[label="",style="solid", color="burlywood", weight=3]; 2806[label="primPlusNat Zero vyw3100",fontsize=16,color="burlywood",shape="box"];3801[label="vyw3100/Succ vyw31000",fontsize=10,color="white",style="solid",shape="box"];2806 -> 3801[label="",style="solid", color="burlywood", weight=9]; 3801 -> 2865[label="",style="solid", color="burlywood", weight=3]; 3802[label="vyw3100/Zero",fontsize=10,color="white",style="solid",shape="box"];2806 -> 3802[label="",style="solid", color="burlywood", weight=9]; 3802 -> 2866[label="",style="solid", color="burlywood", weight=3]; 2807[label="vyw601",fontsize=16,color="green",shape="box"];2808[label="vyw591",fontsize=16,color="green",shape="box"];2809[label="vyw601",fontsize=16,color="green",shape="box"];2810[label="vyw591",fontsize=16,color="green",shape="box"];2811[label="vyw601",fontsize=16,color="green",shape="box"];2812[label="vyw591",fontsize=16,color="green",shape="box"];2813[label="vyw601",fontsize=16,color="green",shape="box"];2814[label="vyw591",fontsize=16,color="green",shape="box"];2815[label="vyw601",fontsize=16,color="green",shape="box"];2816[label="vyw591",fontsize=16,color="green",shape="box"];2817[label="vyw601",fontsize=16,color="green",shape="box"];2818[label="vyw591",fontsize=16,color="green",shape="box"];2819[label="vyw601",fontsize=16,color="green",shape="box"];2820[label="vyw591",fontsize=16,color="green",shape="box"];2821[label="vyw601",fontsize=16,color="green",shape="box"];2822[label="vyw591",fontsize=16,color="green",shape="box"];2823[label="vyw601",fontsize=16,color="green",shape="box"];2824[label="vyw591",fontsize=16,color="green",shape="box"];2825[label="vyw601",fontsize=16,color="green",shape="box"];2826[label="vyw591",fontsize=16,color="green",shape="box"];2827[label="vyw601",fontsize=16,color="green",shape="box"];2828[label="vyw591",fontsize=16,color="green",shape="box"];2829[label="vyw601",fontsize=16,color="green",shape="box"];2830[label="vyw591",fontsize=16,color="green",shape="box"];2831[label="vyw601",fontsize=16,color="green",shape="box"];2832[label="vyw591",fontsize=16,color="green",shape="box"];2833[label="vyw601",fontsize=16,color="green",shape="box"];2834[label="vyw591",fontsize=16,color="green",shape="box"];2835 -> 1376[label="",style="dashed", color="red", weight=0]; 2835[label="vyw592 <= vyw602",fontsize=16,color="magenta"];2835 -> 2867[label="",style="dashed", color="magenta", weight=3]; 2835 -> 2868[label="",style="dashed", color="magenta", weight=3]; 2836 -> 1377[label="",style="dashed", color="red", weight=0]; 2836[label="vyw592 <= vyw602",fontsize=16,color="magenta"];2836 -> 2869[label="",style="dashed", color="magenta", weight=3]; 2836 -> 2870[label="",style="dashed", color="magenta", weight=3]; 2837 -> 1378[label="",style="dashed", color="red", weight=0]; 2837[label="vyw592 <= vyw602",fontsize=16,color="magenta"];2837 -> 2871[label="",style="dashed", color="magenta", weight=3]; 2837 -> 2872[label="",style="dashed", color="magenta", weight=3]; 2838 -> 1379[label="",style="dashed", color="red", weight=0]; 2838[label="vyw592 <= vyw602",fontsize=16,color="magenta"];2838 -> 2873[label="",style="dashed", color="magenta", weight=3]; 2838 -> 2874[label="",style="dashed", color="magenta", weight=3]; 2839 -> 1380[label="",style="dashed", color="red", weight=0]; 2839[label="vyw592 <= vyw602",fontsize=16,color="magenta"];2839 -> 2875[label="",style="dashed", color="magenta", weight=3]; 2839 -> 2876[label="",style="dashed", color="magenta", weight=3]; 2840 -> 1381[label="",style="dashed", color="red", weight=0]; 2840[label="vyw592 <= vyw602",fontsize=16,color="magenta"];2840 -> 2877[label="",style="dashed", color="magenta", weight=3]; 2840 -> 2878[label="",style="dashed", color="magenta", weight=3]; 2841 -> 1382[label="",style="dashed", color="red", weight=0]; 2841[label="vyw592 <= vyw602",fontsize=16,color="magenta"];2841 -> 2879[label="",style="dashed", color="magenta", weight=3]; 2841 -> 2880[label="",style="dashed", color="magenta", weight=3]; 2842 -> 1383[label="",style="dashed", color="red", weight=0]; 2842[label="vyw592 <= vyw602",fontsize=16,color="magenta"];2842 -> 2881[label="",style="dashed", color="magenta", weight=3]; 2842 -> 2882[label="",style="dashed", color="magenta", weight=3]; 2843 -> 1384[label="",style="dashed", color="red", weight=0]; 2843[label="vyw592 <= vyw602",fontsize=16,color="magenta"];2843 -> 2883[label="",style="dashed", color="magenta", weight=3]; 2843 -> 2884[label="",style="dashed", color="magenta", weight=3]; 2844 -> 1385[label="",style="dashed", color="red", weight=0]; 2844[label="vyw592 <= vyw602",fontsize=16,color="magenta"];2844 -> 2885[label="",style="dashed", color="magenta", weight=3]; 2844 -> 2886[label="",style="dashed", color="magenta", weight=3]; 2845 -> 1386[label="",style="dashed", color="red", weight=0]; 2845[label="vyw592 <= vyw602",fontsize=16,color="magenta"];2845 -> 2887[label="",style="dashed", color="magenta", weight=3]; 2845 -> 2888[label="",style="dashed", color="magenta", weight=3]; 2846 -> 1387[label="",style="dashed", color="red", weight=0]; 2846[label="vyw592 <= vyw602",fontsize=16,color="magenta"];2846 -> 2889[label="",style="dashed", color="magenta", weight=3]; 2846 -> 2890[label="",style="dashed", color="magenta", weight=3]; 2847 -> 1388[label="",style="dashed", color="red", weight=0]; 2847[label="vyw592 <= vyw602",fontsize=16,color="magenta"];2847 -> 2891[label="",style="dashed", color="magenta", weight=3]; 2847 -> 2892[label="",style="dashed", color="magenta", weight=3]; 2848 -> 1389[label="",style="dashed", color="red", weight=0]; 2848[label="vyw592 <= vyw602",fontsize=16,color="magenta"];2848 -> 2893[label="",style="dashed", color="magenta", weight=3]; 2848 -> 2894[label="",style="dashed", color="magenta", weight=3]; 2849 -> 517[label="",style="dashed", color="red", weight=0]; 2849[label="vyw591 == vyw601",fontsize=16,color="magenta"];2849 -> 2895[label="",style="dashed", color="magenta", weight=3]; 2849 -> 2896[label="",style="dashed", color="magenta", weight=3]; 2850 -> 515[label="",style="dashed", color="red", weight=0]; 2850[label="vyw591 == vyw601",fontsize=16,color="magenta"];2850 -> 2897[label="",style="dashed", color="magenta", weight=3]; 2850 -> 2898[label="",style="dashed", color="magenta", weight=3]; 2851 -> 519[label="",style="dashed", color="red", weight=0]; 2851[label="vyw591 == vyw601",fontsize=16,color="magenta"];2851 -> 2899[label="",style="dashed", color="magenta", weight=3]; 2851 -> 2900[label="",style="dashed", color="magenta", weight=3]; 2852 -> 516[label="",style="dashed", color="red", weight=0]; 2852[label="vyw591 == vyw601",fontsize=16,color="magenta"];2852 -> 2901[label="",style="dashed", color="magenta", weight=3]; 2852 -> 2902[label="",style="dashed", color="magenta", weight=3]; 2853 -> 514[label="",style="dashed", color="red", weight=0]; 2853[label="vyw591 == vyw601",fontsize=16,color="magenta"];2853 -> 2903[label="",style="dashed", color="magenta", weight=3]; 2853 -> 2904[label="",style="dashed", color="magenta", weight=3]; 2854 -> 522[label="",style="dashed", color="red", weight=0]; 2854[label="vyw591 == vyw601",fontsize=16,color="magenta"];2854 -> 2905[label="",style="dashed", color="magenta", weight=3]; 2854 -> 2906[label="",style="dashed", color="magenta", weight=3]; 2855 -> 527[label="",style="dashed", color="red", weight=0]; 2855[label="vyw591 == vyw601",fontsize=16,color="magenta"];2855 -> 2907[label="",style="dashed", color="magenta", weight=3]; 2855 -> 2908[label="",style="dashed", color="magenta", weight=3]; 2856 -> 525[label="",style="dashed", color="red", weight=0]; 2856[label="vyw591 == vyw601",fontsize=16,color="magenta"];2856 -> 2909[label="",style="dashed", color="magenta", weight=3]; 2856 -> 2910[label="",style="dashed", color="magenta", weight=3]; 2857 -> 524[label="",style="dashed", color="red", weight=0]; 2857[label="vyw591 == vyw601",fontsize=16,color="magenta"];2857 -> 2911[label="",style="dashed", color="magenta", weight=3]; 2857 -> 2912[label="",style="dashed", color="magenta", weight=3]; 2858 -> 526[label="",style="dashed", color="red", weight=0]; 2858[label="vyw591 == vyw601",fontsize=16,color="magenta"];2858 -> 2913[label="",style="dashed", color="magenta", weight=3]; 2858 -> 2914[label="",style="dashed", color="magenta", weight=3]; 2859 -> 520[label="",style="dashed", color="red", weight=0]; 2859[label="vyw591 == vyw601",fontsize=16,color="magenta"];2859 -> 2915[label="",style="dashed", color="magenta", weight=3]; 2859 -> 2916[label="",style="dashed", color="magenta", weight=3]; 2860 -> 518[label="",style="dashed", color="red", weight=0]; 2860[label="vyw591 == vyw601",fontsize=16,color="magenta"];2860 -> 2917[label="",style="dashed", color="magenta", weight=3]; 2860 -> 2918[label="",style="dashed", color="magenta", weight=3]; 2861 -> 521[label="",style="dashed", color="red", weight=0]; 2861[label="vyw591 == vyw601",fontsize=16,color="magenta"];2861 -> 2919[label="",style="dashed", color="magenta", weight=3]; 2861 -> 2920[label="",style="dashed", color="magenta", weight=3]; 2862 -> 523[label="",style="dashed", color="red", weight=0]; 2862[label="vyw591 == vyw601",fontsize=16,color="magenta"];2862 -> 2921[label="",style="dashed", color="magenta", weight=3]; 2862 -> 2922[label="",style="dashed", color="magenta", weight=3]; 2863[label="primPlusNat (Succ vyw19300) (Succ vyw31000)",fontsize=16,color="black",shape="box"];2863 -> 2923[label="",style="solid", color="black", weight=3]; 2864[label="primPlusNat (Succ vyw19300) Zero",fontsize=16,color="black",shape="box"];2864 -> 2924[label="",style="solid", color="black", weight=3]; 2865[label="primPlusNat Zero (Succ vyw31000)",fontsize=16,color="black",shape="box"];2865 -> 2925[label="",style="solid", color="black", weight=3]; 2866[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];2866 -> 2926[label="",style="solid", color="black", weight=3]; 2867[label="vyw602",fontsize=16,color="green",shape="box"];2868[label="vyw592",fontsize=16,color="green",shape="box"];2869[label="vyw602",fontsize=16,color="green",shape="box"];2870[label="vyw592",fontsize=16,color="green",shape="box"];2871[label="vyw602",fontsize=16,color="green",shape="box"];2872[label="vyw592",fontsize=16,color="green",shape="box"];2873[label="vyw602",fontsize=16,color="green",shape="box"];2874[label="vyw592",fontsize=16,color="green",shape="box"];2875[label="vyw602",fontsize=16,color="green",shape="box"];2876[label="vyw592",fontsize=16,color="green",shape="box"];2877[label="vyw602",fontsize=16,color="green",shape="box"];2878[label="vyw592",fontsize=16,color="green",shape="box"];2879[label="vyw602",fontsize=16,color="green",shape="box"];2880[label="vyw592",fontsize=16,color="green",shape="box"];2881[label="vyw602",fontsize=16,color="green",shape="box"];2882[label="vyw592",fontsize=16,color="green",shape="box"];2883[label="vyw602",fontsize=16,color="green",shape="box"];2884[label="vyw592",fontsize=16,color="green",shape="box"];2885[label="vyw602",fontsize=16,color="green",shape="box"];2886[label="vyw592",fontsize=16,color="green",shape="box"];2887[label="vyw602",fontsize=16,color="green",shape="box"];2888[label="vyw592",fontsize=16,color="green",shape="box"];2889[label="vyw602",fontsize=16,color="green",shape="box"];2890[label="vyw592",fontsize=16,color="green",shape="box"];2891[label="vyw602",fontsize=16,color="green",shape="box"];2892[label="vyw592",fontsize=16,color="green",shape="box"];2893[label="vyw602",fontsize=16,color="green",shape="box"];2894[label="vyw592",fontsize=16,color="green",shape="box"];2895[label="vyw601",fontsize=16,color="green",shape="box"];2896[label="vyw591",fontsize=16,color="green",shape="box"];2897[label="vyw601",fontsize=16,color="green",shape="box"];2898[label="vyw591",fontsize=16,color="green",shape="box"];2899[label="vyw601",fontsize=16,color="green",shape="box"];2900[label="vyw591",fontsize=16,color="green",shape="box"];2901[label="vyw601",fontsize=16,color="green",shape="box"];2902[label="vyw591",fontsize=16,color="green",shape="box"];2903[label="vyw601",fontsize=16,color="green",shape="box"];2904[label="vyw591",fontsize=16,color="green",shape="box"];2905[label="vyw601",fontsize=16,color="green",shape="box"];2906[label="vyw591",fontsize=16,color="green",shape="box"];2907[label="vyw601",fontsize=16,color="green",shape="box"];2908[label="vyw591",fontsize=16,color="green",shape="box"];2909[label="vyw601",fontsize=16,color="green",shape="box"];2910[label="vyw591",fontsize=16,color="green",shape="box"];2911[label="vyw601",fontsize=16,color="green",shape="box"];2912[label="vyw591",fontsize=16,color="green",shape="box"];2913[label="vyw601",fontsize=16,color="green",shape="box"];2914[label="vyw591",fontsize=16,color="green",shape="box"];2915[label="vyw601",fontsize=16,color="green",shape="box"];2916[label="vyw591",fontsize=16,color="green",shape="box"];2917[label="vyw601",fontsize=16,color="green",shape="box"];2918[label="vyw591",fontsize=16,color="green",shape="box"];2919[label="vyw601",fontsize=16,color="green",shape="box"];2920[label="vyw591",fontsize=16,color="green",shape="box"];2921[label="vyw601",fontsize=16,color="green",shape="box"];2922[label="vyw591",fontsize=16,color="green",shape="box"];2923[label="Succ (Succ (primPlusNat vyw19300 vyw31000))",fontsize=16,color="green",shape="box"];2923 -> 2927[label="",style="dashed", color="green", weight=3]; 2924[label="Succ vyw19300",fontsize=16,color="green",shape="box"];2925[label="Succ vyw31000",fontsize=16,color="green",shape="box"];2926[label="Zero",fontsize=16,color="green",shape="box"];2927 -> 2704[label="",style="dashed", color="red", weight=0]; 2927[label="primPlusNat vyw19300 vyw31000",fontsize=16,color="magenta"];2927 -> 2928[label="",style="dashed", color="magenta", weight=3]; 2927 -> 2929[label="",style="dashed", color="magenta", weight=3]; 2928[label="vyw19300",fontsize=16,color="green",shape="box"];2929[label="vyw31000",fontsize=16,color="green",shape="box"];} ---------------------------------------- (16) Complex Obligation (AND) ---------------------------------------- (17) Obligation: Q DP problem: The TRS P consists of the following rules: new_primCmpNat(Succ(vyw300), Succ(vyw4000)) -> new_primCmpNat(vyw300, vyw4000) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (18) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_primCmpNat(Succ(vyw300), Succ(vyw4000)) -> new_primCmpNat(vyw300, vyw4000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (19) YES ---------------------------------------- (20) Obligation: Q DP problem: The TRS P consists of the following rules: new_esEs3(Just(vyw300), Just(vyw4000), app(app(ty_Either, bdf), bdg)) -> new_esEs1(vyw300, vyw4000, bdf, bdg) new_esEs1(Left(vyw300), Left(vyw4000), app(app(ty_Either, gg), gh), gc) -> new_esEs1(vyw300, vyw4000, gg, gh) new_esEs(:(vyw300, vyw301), :(vyw4000, vyw4001), app(app(ty_@2, bg), bh)) -> new_esEs2(vyw300, vyw4000, bg, bh) new_esEs1(Right(vyw300), Right(vyw4000), hd, app(ty_Maybe, bae)) -> new_esEs3(vyw300, vyw4000, bae) new_esEs3(Just(vyw300), Just(vyw4000), app(app(app(ty_@3, bdc), bdd), bde)) -> new_esEs0(vyw300, vyw4000, bdc, bdd, bde) new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), cb, app(app(app(ty_@3, dh), ea), eb), dg) -> new_esEs0(vyw301, vyw4001, dh, ea, eb) new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), cb, app(ty_Maybe, eg), dg) -> new_esEs3(vyw301, vyw4001, eg) new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), baf, app(ty_Maybe, bbg)) -> new_esEs3(vyw301, vyw4001, bbg) new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), baf, app(app(ty_@2, bbe), bbf)) -> new_esEs2(vyw301, vyw4001, bbe, bbf) new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), baf, app(ty_[], bag)) -> new_esEs(vyw301, vyw4001, bag) new_esEs(:(vyw300, vyw301), :(vyw4000, vyw4001), h) -> new_esEs(vyw301, vyw4001, h) new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), cb, cc, app(ty_Maybe, de)) -> new_esEs3(vyw302, vyw4002, de) new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), app(ty_Maybe, bda), bca) -> new_esEs3(vyw300, vyw4000, bda) new_esEs3(Just(vyw300), Just(vyw4000), app(ty_Maybe, beb)) -> new_esEs3(vyw300, vyw4000, beb) new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), app(app(ty_Either, fd), ff), cc, dg) -> new_esEs1(vyw300, vyw4000, fd, ff) new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), cb, cc, app(app(ty_@2, dc), dd)) -> new_esEs2(vyw302, vyw4002, dc, dd) new_esEs(:(vyw300, vyw301), :(vyw4000, vyw4001), app(ty_[], ba)) -> new_esEs(vyw300, vyw4000, ba) new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), cb, app(app(ty_@2, ee), ef), dg) -> new_esEs2(vyw301, vyw4001, ee, ef) new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), app(ty_Maybe, ga), cc, dg) -> new_esEs3(vyw300, vyw4000, ga) new_esEs1(Left(vyw300), Left(vyw4000), app(ty_Maybe, hc), gc) -> new_esEs3(vyw300, vyw4000, hc) new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), app(app(ty_@2, bcg), bch), bca) -> new_esEs2(vyw300, vyw4000, bcg, bch) new_esEs1(Right(vyw300), Right(vyw4000), hd, app(app(ty_@2, bac), bad)) -> new_esEs2(vyw300, vyw4000, bac, bad) new_esEs(:(vyw300, vyw301), :(vyw4000, vyw4001), app(app(app(ty_@3, bb), bc), bd)) -> new_esEs0(vyw300, vyw4000, bb, bc, bd) new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), cb, cc, app(app(app(ty_@3, ce), cf), cg)) -> new_esEs0(vyw302, vyw4002, ce, cf, cg) new_esEs1(Left(vyw300), Left(vyw4000), app(ty_[], gb), gc) -> new_esEs(vyw300, vyw4000, gb) new_esEs1(Left(vyw300), Left(vyw4000), app(app(app(ty_@3, gd), ge), gf), gc) -> new_esEs0(vyw300, vyw4000, gd, ge, gf) new_esEs3(Just(vyw300), Just(vyw4000), app(app(ty_@2, bdh), bea)) -> new_esEs2(vyw300, vyw4000, bdh, bea) new_esEs(:(vyw300, vyw301), :(vyw4000, vyw4001), app(app(ty_Either, be), bf)) -> new_esEs1(vyw300, vyw4000, be, bf) new_esEs3(Just(vyw300), Just(vyw4000), app(ty_[], bdb)) -> new_esEs(vyw300, vyw4000, bdb) new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), app(ty_[], eh), cc, dg) -> new_esEs(vyw300, vyw4000, eh) new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), cb, app(ty_[], df), dg) -> new_esEs(vyw301, vyw4001, df) new_esEs(:(vyw300, vyw301), :(vyw4000, vyw4001), app(ty_Maybe, ca)) -> new_esEs3(vyw300, vyw4000, ca) new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), cb, cc, app(ty_[], cd)) -> new_esEs(vyw302, vyw4002, cd) new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), cb, app(app(ty_Either, ec), ed), dg) -> new_esEs1(vyw301, vyw4001, ec, ed) new_esEs1(Left(vyw300), Left(vyw4000), app(app(ty_@2, ha), hb), gc) -> new_esEs2(vyw300, vyw4000, ha, hb) new_esEs1(Right(vyw300), Right(vyw4000), hd, app(app(app(ty_@3, hf), hg), hh)) -> new_esEs0(vyw300, vyw4000, hf, hg, hh) new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), app(ty_[], bbh), bca) -> new_esEs(vyw300, vyw4000, bbh) new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), app(app(ty_@2, fg), fh), cc, dg) -> new_esEs2(vyw300, vyw4000, fg, fh) new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), app(app(app(ty_@3, bcb), bcc), bcd), bca) -> new_esEs0(vyw300, vyw4000, bcb, bcc, bcd) new_esEs1(Right(vyw300), Right(vyw4000), hd, app(ty_[], he)) -> new_esEs(vyw300, vyw4000, he) new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), app(app(ty_Either, bce), bcf), bca) -> new_esEs1(vyw300, vyw4000, bce, bcf) new_esEs1(Right(vyw300), Right(vyw4000), hd, app(app(ty_Either, baa), bab)) -> new_esEs1(vyw300, vyw4000, baa, bab) new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), baf, app(app(ty_Either, bbc), bbd)) -> new_esEs1(vyw301, vyw4001, bbc, bbd) new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), app(app(app(ty_@3, fa), fb), fc), cc, dg) -> new_esEs0(vyw300, vyw4000, fa, fb, fc) new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), cb, cc, app(app(ty_Either, da), db)) -> new_esEs1(vyw302, vyw4002, da, db) new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), baf, app(app(app(ty_@3, bah), bba), bbb)) -> new_esEs0(vyw301, vyw4001, bah, bba, bbb) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (21) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_esEs3(Just(vyw300), Just(vyw4000), app(ty_Maybe, beb)) -> new_esEs3(vyw300, vyw4000, beb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(Just(vyw300), Just(vyw4000), app(app(ty_Either, bdf), bdg)) -> new_esEs1(vyw300, vyw4000, bdf, bdg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(Just(vyw300), Just(vyw4000), app(ty_[], bdb)) -> new_esEs(vyw300, vyw4000, bdb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(:(vyw300, vyw301), :(vyw4000, vyw4001), app(ty_Maybe, ca)) -> new_esEs3(vyw300, vyw4000, ca) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(:(vyw300, vyw301), :(vyw4000, vyw4001), app(app(ty_Either, be), bf)) -> new_esEs1(vyw300, vyw4000, be, bf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(Just(vyw300), Just(vyw4000), app(app(app(ty_@3, bdc), bdd), bde)) -> new_esEs0(vyw300, vyw4000, bdc, bdd, bde) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs3(Just(vyw300), Just(vyw4000), app(app(ty_@2, bdh), bea)) -> new_esEs2(vyw300, vyw4000, bdh, bea) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(:(vyw300, vyw301), :(vyw4000, vyw4001), app(app(app(ty_@3, bb), bc), bd)) -> new_esEs0(vyw300, vyw4000, bb, bc, bd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs(:(vyw300, vyw301), :(vyw4000, vyw4001), app(app(ty_@2, bg), bh)) -> new_esEs2(vyw300, vyw4000, bg, bh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(Right(vyw300), Right(vyw4000), hd, app(ty_Maybe, bae)) -> new_esEs3(vyw300, vyw4000, bae) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs1(Left(vyw300), Left(vyw4000), app(ty_Maybe, hc), gc) -> new_esEs3(vyw300, vyw4000, hc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(Left(vyw300), Left(vyw4000), app(app(ty_Either, gg), gh), gc) -> new_esEs1(vyw300, vyw4000, gg, gh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(Right(vyw300), Right(vyw4000), hd, app(app(ty_Either, baa), bab)) -> new_esEs1(vyw300, vyw4000, baa, bab) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs1(Left(vyw300), Left(vyw4000), app(ty_[], gb), gc) -> new_esEs(vyw300, vyw4000, gb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(Right(vyw300), Right(vyw4000), hd, app(ty_[], he)) -> new_esEs(vyw300, vyw4000, he) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs1(Left(vyw300), Left(vyw4000), app(app(app(ty_@3, gd), ge), gf), gc) -> new_esEs0(vyw300, vyw4000, gd, ge, gf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs1(Right(vyw300), Right(vyw4000), hd, app(app(app(ty_@3, hf), hg), hh)) -> new_esEs0(vyw300, vyw4000, hf, hg, hh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs1(Right(vyw300), Right(vyw4000), hd, app(app(ty_@2, bac), bad)) -> new_esEs2(vyw300, vyw4000, bac, bad) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs1(Left(vyw300), Left(vyw4000), app(app(ty_@2, ha), hb), gc) -> new_esEs2(vyw300, vyw4000, ha, hb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), baf, app(ty_Maybe, bbg)) -> new_esEs3(vyw301, vyw4001, bbg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), app(ty_Maybe, bda), bca) -> new_esEs3(vyw300, vyw4000, bda) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), cb, app(ty_Maybe, eg), dg) -> new_esEs3(vyw301, vyw4001, eg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), cb, cc, app(ty_Maybe, de)) -> new_esEs3(vyw302, vyw4002, de) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), app(ty_Maybe, ga), cc, dg) -> new_esEs3(vyw300, vyw4000, ga) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), app(app(ty_Either, bce), bcf), bca) -> new_esEs1(vyw300, vyw4000, bce, bcf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), baf, app(app(ty_Either, bbc), bbd)) -> new_esEs1(vyw301, vyw4001, bbc, bbd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), app(app(ty_Either, fd), ff), cc, dg) -> new_esEs1(vyw300, vyw4000, fd, ff) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), cb, app(app(ty_Either, ec), ed), dg) -> new_esEs1(vyw301, vyw4001, ec, ed) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), cb, cc, app(app(ty_Either, da), db)) -> new_esEs1(vyw302, vyw4002, da, db) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), baf, app(ty_[], bag)) -> new_esEs(vyw301, vyw4001, bag) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), app(ty_[], bbh), bca) -> new_esEs(vyw300, vyw4000, bbh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), app(app(app(ty_@3, bcb), bcc), bcd), bca) -> new_esEs0(vyw300, vyw4000, bcb, bcc, bcd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), baf, app(app(app(ty_@3, bah), bba), bbb)) -> new_esEs0(vyw301, vyw4001, bah, bba, bbb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), baf, app(app(ty_@2, bbe), bbf)) -> new_esEs2(vyw301, vyw4001, bbe, bbf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), app(app(ty_@2, bcg), bch), bca) -> new_esEs2(vyw300, vyw4000, bcg, bch) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), app(ty_[], eh), cc, dg) -> new_esEs(vyw300, vyw4000, eh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), cb, app(ty_[], df), dg) -> new_esEs(vyw301, vyw4001, df) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), cb, cc, app(ty_[], cd)) -> new_esEs(vyw302, vyw4002, cd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs(:(vyw300, vyw301), :(vyw4000, vyw4001), h) -> new_esEs(vyw301, vyw4001, h) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_esEs(:(vyw300, vyw301), :(vyw4000, vyw4001), app(ty_[], ba)) -> new_esEs(vyw300, vyw4000, ba) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), cb, app(app(app(ty_@3, dh), ea), eb), dg) -> new_esEs0(vyw301, vyw4001, dh, ea, eb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), cb, cc, app(app(app(ty_@3, ce), cf), cg)) -> new_esEs0(vyw302, vyw4002, ce, cf, cg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), app(app(app(ty_@3, fa), fb), fc), cc, dg) -> new_esEs0(vyw300, vyw4000, fa, fb, fc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), cb, cc, app(app(ty_@2, dc), dd)) -> new_esEs2(vyw302, vyw4002, dc, dd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), cb, app(app(ty_@2, ee), ef), dg) -> new_esEs2(vyw301, vyw4001, ee, ef) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), app(app(ty_@2, fg), fh), cc, dg) -> new_esEs2(vyw300, vyw4000, fg, fh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 ---------------------------------------- (22) YES ---------------------------------------- (23) Obligation: Q DP problem: The TRS P consists of the following rules: new_elemFM0(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, True, h, ba) -> new_elemFM01(vyw16, vyw18, h, ba) new_elemFM01(Branch(vyw40, vyw41, vyw42, vyw43, vyw44), vyw3, bd, be) -> new_elemFM0(vyw40, vyw41, vyw42, vyw43, vyw44, vyw3, new_lt24(vyw3, vyw40, be), bd, be) new_elemFM00(vyw28, vyw29, vyw30, vyw31, vyw32, vyw33, True, bb, bc) -> new_elemFM01(vyw32, vyw33, bb, bc) new_elemFM0(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, False, h, ba) -> new_elemFM00(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, new_gt(vyw18, vyw13, ba), h, ba) The TRS R consists of the following rules: new_ltEs7(Left(vyw590), Left(vyw600), app(app(ty_Either, bhe), bhf), bhd) -> new_ltEs7(vyw590, vyw600, bhe, bhf) new_esEs27(vyw590, vyw600, ty_Double) -> new_esEs15(vyw590, vyw600) new_ltEs12(Just(vyw590), Just(vyw600), ty_Char) -> new_ltEs15(vyw590, vyw600) new_esEs24(Just(vyw300), Just(vyw4000), app(app(ty_@2, ecc), ecd)) -> new_esEs21(vyw300, vyw4000, ecc, ecd) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_gt(vyw18, vyw13, ty_@0) -> new_esEs41(new_compare32(vyw18, vyw13)) new_esEs33(vyw301, vyw4001, app(ty_Ratio, ddg)) -> new_esEs23(vyw301, vyw4001, ddg) new_lt20(vyw590, vyw600, ty_Float) -> new_lt15(vyw590, vyw600) new_ltEs23(vyw89, vyw90, app(ty_Ratio, ebc)) -> new_ltEs13(vyw89, vyw90, ebc) new_esEs24(Just(vyw300), Just(vyw4000), ty_Ordering) -> new_esEs25(vyw300, vyw4000) new_lt21(vyw113, vyw115, app(app(ty_Either, dad), dae)) -> new_lt8(vyw113, vyw115, dad, dae) new_lt5(vyw591, vyw601, app(ty_Maybe, ed)) -> new_lt13(vyw591, vyw601, ed) new_pePe(True, vyw191) -> True new_esEs10(vyw30, vyw400, ty_Bool) -> new_esEs14(vyw30, vyw400) new_esEs10(vyw30, vyw400, ty_@0) -> new_esEs22(vyw30, vyw400) new_esEs33(vyw301, vyw4001, app(app(app(ty_@3, dch), dda), ddb)) -> new_esEs17(vyw301, vyw4001, dch, dda, ddb) new_esEs19(Left(vyw300), Left(vyw4000), app(app(ty_@2, bcc), bcd), bbd) -> new_esEs21(vyw300, vyw4000, bcc, bcd) new_ltEs24(vyw102, vyw105, app(app(ty_@2, fhf), fhg)) -> new_ltEs10(vyw102, vyw105, fhf, fhg) new_compare28(@2(vyw30, vyw31), @2(vyw400, vyw401), ccd, cce) -> new_compare210(vyw30, vyw31, vyw400, vyw401, new_asAs(new_esEs10(vyw30, vyw400, ccd), new_esEs9(vyw31, vyw401, cce)), ccd, cce) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_esEs27(vyw590, vyw600, app(ty_[], cf)) -> new_esEs16(vyw590, vyw600, cf) new_lt23(vyw101, vyw104, app(app(ty_@2, fgd), fge)) -> new_lt11(vyw101, vyw104, fgd, fge) new_esEs7(vyw30, vyw400, ty_Char) -> new_esEs20(vyw30, vyw400) new_esEs28(vyw590, vyw600, ty_Char) -> new_esEs20(vyw590, vyw600) new_esEs20(Char(vyw300), Char(vyw4000)) -> new_primEqNat0(vyw300, vyw4000) new_compare16(vyw165, vyw166, vyw167, vyw168, vyw169, vyw170, False, cdc, cdd, cde) -> GT new_ltEs5(vyw592, vyw602, app(ty_Maybe, fg)) -> new_ltEs12(vyw592, vyw602, fg) new_esEs40(vyw300, vyw4000, ty_Char) -> new_esEs20(vyw300, vyw4000) new_esEs10(vyw30, vyw400, ty_Int) -> new_esEs13(vyw30, vyw400) new_ltEs21(vyw66, vyw67, ty_Float) -> new_ltEs14(vyw66, vyw67) new_esEs6(vyw30, vyw400, app(ty_[], fbd)) -> new_esEs16(vyw30, vyw400, fbd) new_lt22(vyw100, vyw103, app(ty_Ratio, ffe)) -> new_lt14(vyw100, vyw103, ffe) new_esEs35(vyw302, vyw4002, ty_@0) -> new_esEs22(vyw302, vyw4002) new_ltEs24(vyw102, vyw105, app(app(app(ty_@3, fgh), fha), fhb)) -> new_ltEs4(vyw102, vyw105, fgh, fha, fhb) new_esEs40(vyw300, vyw4000, ty_Float) -> new_esEs12(vyw300, vyw4000) new_esEs37(vyw300, vyw4000, ty_Double) -> new_esEs15(vyw300, vyw4000) new_compare3([], [], ccc) -> EQ new_lt24(vyw3, vyw40, app(ty_[], ccc)) -> new_lt9(vyw3, vyw40, ccc) new_ltEs7(Right(vyw590), Right(vyw600), cad, ty_@0) -> new_ltEs18(vyw590, vyw600) new_ltEs8(vyw59, vyw60, cch) -> new_fsEs(new_compare3(vyw59, vyw60, cch)) new_ltEs22(vyw114, vyw116, ty_Bool) -> new_ltEs9(vyw114, vyw116) new_esEs19(Left(vyw300), Left(vyw4000), ty_Double, bbd) -> new_esEs15(vyw300, vyw4000) new_compare6(Left(vyw30), Left(vyw400), bba, bbb) -> new_compare24(vyw30, vyw400, new_esEs7(vyw30, vyw400, bba), bba, bbb) new_esEs35(vyw302, vyw4002, ty_Int) -> new_esEs13(vyw302, vyw4002) new_primEqNat0(Succ(vyw3000), Succ(vyw40000)) -> new_primEqNat0(vyw3000, vyw40000) new_compare18(@3(vyw30, vyw31, vyw32), @3(vyw400, vyw401, vyw402), cbh, cca, ccb) -> new_compare211(vyw30, vyw31, vyw32, vyw400, vyw401, vyw402, new_asAs(new_esEs6(vyw30, vyw400, cbh), new_asAs(new_esEs5(vyw31, vyw401, cca), new_esEs4(vyw32, vyw402, ccb))), cbh, cca, ccb) new_esEs30(vyw301, vyw4001, ty_Integer) -> new_esEs18(vyw301, vyw4001) new_lt7(vyw3, vyw40) -> new_esEs29(new_compare19(vyw3, vyw40)) new_ltEs22(vyw114, vyw116, ty_Double) -> new_ltEs6(vyw114, vyw116) new_gt(vyw18, vyw13, ty_Char) -> new_esEs41(new_compare30(vyw18, vyw13)) new_not(True) -> False new_esEs28(vyw590, vyw600, ty_Float) -> new_esEs12(vyw590, vyw600) new_ltEs12(Just(vyw590), Just(vyw600), ty_Ordering) -> new_ltEs11(vyw590, vyw600) new_esEs4(vyw32, vyw402, ty_Bool) -> new_esEs14(vyw32, vyw402) new_esEs7(vyw30, vyw400, ty_Float) -> new_esEs12(vyw30, vyw400) new_fsEs(vyw192) -> new_not(new_esEs25(vyw192, GT)) new_ltEs19(vyw591, vyw601, ty_@0) -> new_ltEs18(vyw591, vyw601) new_esEs35(vyw302, vyw4002, app(app(ty_@2, edh), eea)) -> new_esEs21(vyw302, vyw4002, edh, eea) new_lt22(vyw100, vyw103, ty_Ordering) -> new_lt12(vyw100, vyw103) new_ltEs23(vyw89, vyw90, ty_Char) -> new_ltEs15(vyw89, vyw90) new_primCompAux00(vyw72, LT) -> LT new_esEs38(vyw101, vyw104, app(ty_Ratio, fgg)) -> new_esEs23(vyw101, vyw104, fgg) new_esEs35(vyw302, vyw4002, ty_Ordering) -> new_esEs25(vyw302, vyw4002) new_esEs38(vyw101, vyw104, app(app(app(ty_@3, fff), ffg), ffh)) -> new_esEs17(vyw101, vyw104, fff, ffg, ffh) new_esEs28(vyw590, vyw600, ty_Ordering) -> new_esEs25(vyw590, vyw600) new_esEs28(vyw590, vyw600, app(app(ty_@2, ha), hb)) -> new_esEs21(vyw590, vyw600, ha, hb) new_esEs10(vyw30, vyw400, ty_Ordering) -> new_esEs25(vyw30, vyw400) new_ltEs24(vyw102, vyw105, ty_Integer) -> new_ltEs16(vyw102, vyw105) new_ltEs20(vyw59, vyw60, app(app(ty_Either, cad), bhd)) -> new_ltEs7(vyw59, vyw60, cad, bhd) new_primEqNat0(Succ(vyw3000), Zero) -> False new_primEqNat0(Zero, Succ(vyw40000)) -> False new_esEs32(vyw113, vyw115, app(ty_[], daf)) -> new_esEs16(vyw113, vyw115, daf) new_esEs35(vyw302, vyw4002, ty_Integer) -> new_esEs18(vyw302, vyw4002) new_esEs39(vyw100, vyw103, app(ty_Maybe, ffd)) -> new_esEs24(vyw100, vyw103, ffd) new_esEs10(vyw30, vyw400, app(app(ty_@2, fde), fdf)) -> new_esEs21(vyw30, vyw400, fde, fdf) new_esEs14(False, True) -> False new_esEs14(True, False) -> False new_esEs33(vyw301, vyw4001, ty_Float) -> new_esEs12(vyw301, vyw4001) new_esEs38(vyw101, vyw104, ty_Float) -> new_esEs12(vyw101, vyw104) new_esEs4(vyw32, vyw402, ty_@0) -> new_esEs22(vyw32, vyw402) new_lt16(vyw3, vyw40) -> new_esEs29(new_compare30(vyw3, vyw40)) new_esEs24(Just(vyw300), Just(vyw4000), ty_@0) -> new_esEs22(vyw300, vyw4000) new_esEs9(vyw31, vyw401, ty_@0) -> new_esEs22(vyw31, vyw401) new_lt20(vyw590, vyw600, ty_@0) -> new_lt19(vyw590, vyw600) new_lt22(vyw100, vyw103, ty_Bool) -> new_lt10(vyw100, vyw103) new_primCmpInt(Pos(Succ(vyw300)), Neg(vyw400)) -> GT new_esEs37(vyw300, vyw4000, app(ty_[], eff)) -> new_esEs16(vyw300, vyw4000, eff) new_esEs40(vyw300, vyw4000, app(app(ty_@2, gah), gba)) -> new_esEs21(vyw300, vyw4000, gah, gba) new_ltEs19(vyw591, vyw601, ty_Float) -> new_ltEs14(vyw591, vyw601) new_ltEs23(vyw89, vyw90, ty_Ordering) -> new_ltEs11(vyw89, vyw90) new_lt22(vyw100, vyw103, ty_Char) -> new_lt16(vyw100, vyw103) new_compare11(vyw180, vyw181, vyw182, vyw183, True, bag, bah) -> LT new_esEs40(vyw300, vyw4000, ty_Integer) -> new_esEs18(vyw300, vyw4000) new_esEs34(vyw300, vyw4000, app(ty_Maybe, dfb)) -> new_esEs24(vyw300, vyw4000, dfb) new_lt23(vyw101, vyw104, ty_Integer) -> new_lt17(vyw101, vyw104) new_ltEs17(vyw59, vyw60) -> new_fsEs(new_compare31(vyw59, vyw60)) new_esEs35(vyw302, vyw4002, ty_Bool) -> new_esEs14(vyw302, vyw4002) new_esEs5(vyw31, vyw401, app(app(ty_Either, faf), fag)) -> new_esEs19(vyw31, vyw401, faf, fag) new_esEs24(Just(vyw300), Just(vyw4000), ty_Integer) -> new_esEs18(vyw300, vyw4000) new_primPlusNat1(Succ(vyw19300), Succ(vyw31000)) -> Succ(Succ(new_primPlusNat1(vyw19300, vyw31000))) new_ltEs6(vyw59, vyw60) -> new_fsEs(new_compare19(vyw59, vyw60)) new_lt5(vyw591, vyw601, app(app(ty_Either, dg), dh)) -> new_lt8(vyw591, vyw601, dg, dh) new_primCmpNat0(Zero, Succ(vyw4000)) -> LT new_esEs4(vyw32, vyw402, app(app(ty_@2, ehf), ehg)) -> new_esEs21(vyw32, vyw402, ehf, ehg) new_compare17(vyw30, vyw400, ty_Bool) -> new_compare27(vyw30, vyw400) new_esEs4(vyw32, vyw402, ty_Ordering) -> new_esEs25(vyw32, vyw402) new_esEs40(vyw300, vyw4000, ty_Ordering) -> new_esEs25(vyw300, vyw4000) new_esEs28(vyw590, vyw600, ty_Integer) -> new_esEs18(vyw590, vyw600) new_esEs26(vyw591, vyw601, app(ty_Ratio, ee)) -> new_esEs23(vyw591, vyw601, ee) new_lt5(vyw591, vyw601, app(app(ty_@2, eb), ec)) -> new_lt11(vyw591, vyw601, eb, ec) new_esEs40(vyw300, vyw4000, ty_@0) -> new_esEs22(vyw300, vyw4000) new_lt5(vyw591, vyw601, ty_Double) -> new_lt7(vyw591, vyw601) new_compare3([], :(vyw400, vyw401), ccc) -> LT new_esEs32(vyw113, vyw115, ty_Int) -> new_esEs13(vyw113, vyw115) new_esEs40(vyw300, vyw4000, app(app(app(ty_@3, gac), gad), gae)) -> new_esEs17(vyw300, vyw4000, gac, gad, gae) new_ltEs18(vyw59, vyw60) -> new_fsEs(new_compare32(vyw59, vyw60)) new_ltEs7(Right(vyw590), Right(vyw600), cad, ty_Integer) -> new_ltEs16(vyw590, vyw600) new_lt4(vyw590, vyw600, ty_Float) -> new_lt15(vyw590, vyw600) new_esEs8(vyw30, vyw400, app(ty_Maybe, bgh)) -> new_esEs24(vyw30, vyw400, bgh) new_ltEs21(vyw66, vyw67, ty_@0) -> new_ltEs18(vyw66, vyw67) new_lt4(vyw590, vyw600, app(ty_Ratio, dc)) -> new_lt14(vyw590, vyw600, dc) new_ltEs19(vyw591, vyw601, app(app(ty_@2, bac), bad)) -> new_ltEs10(vyw591, vyw601, bac, bad) new_lt23(vyw101, vyw104, app(ty_Maybe, fgf)) -> new_lt13(vyw101, vyw104, fgf) new_lt24(vyw3, vyw40, ty_Int) -> new_lt18(vyw3, vyw40) new_esEs11(vyw30, vyw400, app(ty_Ratio, cef)) -> new_esEs23(vyw30, vyw400, cef) new_ltEs12(Just(vyw590), Just(vyw600), ty_Int) -> new_ltEs17(vyw590, vyw600) new_compare6(Left(vyw30), Right(vyw400), bba, bbb) -> LT new_esEs32(vyw113, vyw115, ty_@0) -> new_esEs22(vyw113, vyw115) new_ltEs7(Right(vyw590), Right(vyw600), cad, app(app(ty_@2, cbc), cbd)) -> new_ltEs10(vyw590, vyw600, cbc, cbd) new_esEs5(vyw31, vyw401, app(app(app(ty_@3, fac), fad), fae)) -> new_esEs17(vyw31, vyw401, fac, fad, fae) new_lt9(vyw3, vyw40, ccc) -> new_esEs29(new_compare3(vyw3, vyw40, ccc)) new_esEs6(vyw30, vyw400, app(ty_Maybe, ebd)) -> new_esEs24(vyw30, vyw400, ebd) new_ltEs7(Left(vyw590), Left(vyw600), ty_Bool, bhd) -> new_ltEs9(vyw590, vyw600) new_lt17(vyw3, vyw40) -> new_esEs29(new_compare14(vyw3, vyw40)) new_ltEs5(vyw592, vyw602, app(app(ty_@2, fd), ff)) -> new_ltEs10(vyw592, vyw602, fd, ff) new_esEs32(vyw113, vyw115, ty_Double) -> new_esEs15(vyw113, vyw115) new_ltEs5(vyw592, vyw602, ty_Bool) -> new_ltEs9(vyw592, vyw602) new_primEqInt(Neg(Succ(vyw3000)), Neg(Succ(vyw40000))) -> new_primEqNat0(vyw3000, vyw40000) new_ltEs12(Just(vyw590), Just(vyw600), app(app(ty_Either, dff), dfg)) -> new_ltEs7(vyw590, vyw600, dff, dfg) new_esEs10(vyw30, vyw400, ty_Integer) -> new_esEs18(vyw30, vyw400) new_primCmpInt(Neg(Zero), Pos(Succ(vyw4000))) -> LT new_esEs33(vyw301, vyw4001, ty_Ordering) -> new_esEs25(vyw301, vyw4001) new_ltEs5(vyw592, vyw602, ty_Integer) -> new_ltEs16(vyw592, vyw602) new_primMulInt(Pos(vyw4000), Pos(vyw310)) -> Pos(new_primMulNat0(vyw4000, vyw310)) new_ltEs21(vyw66, vyw67, ty_Char) -> new_ltEs15(vyw66, vyw67) new_ltEs7(Left(vyw590), Left(vyw600), ty_Double, bhd) -> new_ltEs6(vyw590, vyw600) new_esEs40(vyw300, vyw4000, ty_Bool) -> new_esEs14(vyw300, vyw4000) new_esEs11(vyw30, vyw400, app(app(ty_Either, ceb), cec)) -> new_esEs19(vyw30, vyw400, ceb, cec) new_esEs28(vyw590, vyw600, ty_Bool) -> new_esEs14(vyw590, vyw600) new_ltEs5(vyw592, vyw602, ty_Double) -> new_ltEs6(vyw592, vyw602) new_lt21(vyw113, vyw115, app(ty_Maybe, dba)) -> new_lt13(vyw113, vyw115, dba) new_esEs21(@2(vyw300, vyw301), @2(vyw4000, vyw4001), dce, dcf) -> new_asAs(new_esEs34(vyw300, vyw4000, dce), new_esEs33(vyw301, vyw4001, dcf)) new_esEs33(vyw301, vyw4001, ty_Integer) -> new_esEs18(vyw301, vyw4001) new_compare27(False, True) -> LT new_compare12(vyw153, vyw154, False, beb) -> GT new_ltEs22(vyw114, vyw116, ty_Integer) -> new_ltEs16(vyw114, vyw116) new_esEs24(Just(vyw300), Just(vyw4000), ty_Bool) -> new_esEs14(vyw300, vyw4000) new_esEs24(Just(vyw300), Just(vyw4000), app(app(app(ty_@3, ebf), ebg), ebh)) -> new_esEs17(vyw300, vyw4000, ebf, ebg, ebh) new_primMulNat0(Succ(vyw40000), Zero) -> Zero new_primMulNat0(Zero, Succ(vyw3100)) -> Zero new_esEs24(Just(vyw300), Just(vyw4000), ty_Float) -> new_esEs12(vyw300, vyw4000) new_esEs28(vyw590, vyw600, app(app(app(ty_@3, gc), gd), ge)) -> new_esEs17(vyw590, vyw600, gc, gd, ge) new_esEs7(vyw30, vyw400, app(app(app(ty_@3, bef), beg), beh)) -> new_esEs17(vyw30, vyw400, bef, beg, beh) new_compare26(vyw89, vyw90, True, eaa) -> EQ new_ltEs24(vyw102, vyw105, ty_Float) -> new_ltEs14(vyw102, vyw105) new_esEs9(vyw31, vyw401, ty_Int) -> new_esEs13(vyw31, vyw401) new_esEs7(vyw30, vyw400, app(app(ty_Either, bfa), bfb)) -> new_esEs19(vyw30, vyw400, bfa, bfb) new_esEs17(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), ecg, ech, eda) -> new_asAs(new_esEs37(vyw300, vyw4000, ecg), new_asAs(new_esEs36(vyw301, vyw4001, ech), new_esEs35(vyw302, vyw4002, eda))) new_ltEs19(vyw591, vyw601, ty_Integer) -> new_ltEs16(vyw591, vyw601) new_lt8(vyw3, vyw40, bba, bbb) -> new_esEs29(new_compare6(vyw3, vyw40, bba, bbb)) new_esEs25(GT, GT) -> True new_lt20(vyw590, vyw600, ty_Bool) -> new_lt10(vyw590, vyw600) new_ltEs7(Right(vyw590), Right(vyw600), cad, ty_Float) -> new_ltEs14(vyw590, vyw600) new_lt4(vyw590, vyw600, ty_Bool) -> new_lt10(vyw590, vyw600) new_lt4(vyw590, vyw600, ty_Ordering) -> new_lt12(vyw590, vyw600) new_esEs7(vyw30, vyw400, app(app(ty_@2, bfc), bfd)) -> new_esEs21(vyw30, vyw400, bfc, bfd) new_compare17(vyw30, vyw400, app(ty_[], cfe)) -> new_compare3(vyw30, vyw400, cfe) new_esEs4(vyw32, vyw402, ty_Char) -> new_esEs20(vyw32, vyw402) new_esEs38(vyw101, vyw104, ty_Char) -> new_esEs20(vyw101, vyw104) new_primPlusNat1(Succ(vyw19300), Zero) -> Succ(vyw19300) new_primPlusNat1(Zero, Succ(vyw31000)) -> Succ(vyw31000) new_esEs37(vyw300, vyw4000, ty_Bool) -> new_esEs14(vyw300, vyw4000) new_esEs24(Just(vyw300), Just(vyw4000), ty_Char) -> new_esEs20(vyw300, vyw4000) new_esEs33(vyw301, vyw4001, app(app(ty_Either, ddc), ddd)) -> new_esEs19(vyw301, vyw4001, ddc, ddd) new_ltEs12(Just(vyw590), Just(vyw600), app(ty_[], dfh)) -> new_ltEs8(vyw590, vyw600, dfh) new_esEs32(vyw113, vyw115, app(ty_Maybe, dba)) -> new_esEs24(vyw113, vyw115, dba) new_esEs5(vyw31, vyw401, ty_Float) -> new_esEs12(vyw31, vyw401) new_compare210(vyw113, vyw114, vyw115, vyw116, True, chg, chh) -> EQ new_ltEs24(vyw102, vyw105, ty_@0) -> new_ltEs18(vyw102, vyw105) new_ltEs19(vyw591, vyw601, ty_Char) -> new_ltEs15(vyw591, vyw601) new_esEs36(vyw301, vyw4001, app(ty_Ratio, efd)) -> new_esEs23(vyw301, vyw4001, efd) new_lt20(vyw590, vyw600, ty_Ordering) -> new_lt12(vyw590, vyw600) new_compare8(EQ, GT) -> LT new_ltEs7(Right(vyw590), Right(vyw600), cad, app(app(app(ty_@3, cae), caf), cag)) -> new_ltEs4(vyw590, vyw600, cae, caf, cag) new_lt22(vyw100, vyw103, ty_Int) -> new_lt18(vyw100, vyw103) new_esEs6(vyw30, vyw400, ty_Double) -> new_esEs15(vyw30, vyw400) new_esEs7(vyw30, vyw400, ty_@0) -> new_esEs22(vyw30, vyw400) new_esEs8(vyw30, vyw400, app(app(ty_Either, bgc), bgd)) -> new_esEs19(vyw30, vyw400, bgc, bgd) new_esEs39(vyw100, vyw103, app(ty_[], ffa)) -> new_esEs16(vyw100, vyw103, ffa) new_esEs7(vyw30, vyw400, ty_Ordering) -> new_esEs25(vyw30, vyw400) new_esEs38(vyw101, vyw104, ty_Bool) -> new_esEs14(vyw101, vyw104) new_compare25(vyw66, vyw67, False, cgc, cgd) -> new_compare110(vyw66, vyw67, new_ltEs21(vyw66, vyw67, cgd), cgc, cgd) new_esEs7(vyw30, vyw400, ty_Integer) -> new_esEs18(vyw30, vyw400) new_esEs15(Double(vyw300, vyw301), Double(vyw4000, vyw4001)) -> new_esEs13(new_sr(vyw300, vyw4001), new_sr(vyw301, vyw4000)) new_esEs4(vyw32, vyw402, app(ty_[], egh)) -> new_esEs16(vyw32, vyw402, egh) new_esEs27(vyw590, vyw600, ty_Bool) -> new_esEs14(vyw590, vyw600) new_ltEs7(Right(vyw590), Right(vyw600), cad, app(ty_Ratio, cbf)) -> new_ltEs13(vyw590, vyw600, cbf) new_esEs33(vyw301, vyw4001, ty_@0) -> new_esEs22(vyw301, vyw4001) new_esEs11(vyw30, vyw400, ty_Char) -> new_esEs20(vyw30, vyw400) new_esEs10(vyw30, vyw400, app(app(app(ty_@3, fch), fda), fdb)) -> new_esEs17(vyw30, vyw400, fch, fda, fdb) new_esEs19(Left(vyw300), Left(vyw4000), app(ty_Maybe, bcf), bbd) -> new_esEs24(vyw300, vyw4000, bcf) new_ltEs7(Left(vyw590), Right(vyw600), cad, bhd) -> True new_esEs6(vyw30, vyw400, ty_@0) -> new_esEs22(vyw30, vyw400) new_ltEs11(EQ, GT) -> True new_lt24(vyw3, vyw40, ty_Char) -> new_lt16(vyw3, vyw40) new_esEs10(vyw30, vyw400, app(ty_Ratio, fdg)) -> new_esEs23(vyw30, vyw400, fdg) new_esEs8(vyw30, vyw400, ty_Double) -> new_esEs15(vyw30, vyw400) new_ltEs7(Left(vyw590), Left(vyw600), app(ty_Ratio, cac), bhd) -> new_ltEs13(vyw590, vyw600, cac) new_esEs33(vyw301, vyw4001, ty_Int) -> new_esEs13(vyw301, vyw4001) new_esEs33(vyw301, vyw4001, ty_Bool) -> new_esEs14(vyw301, vyw4001) new_esEs19(Left(vyw300), Left(vyw4000), ty_@0, bbd) -> new_esEs22(vyw300, vyw4000) new_esEs19(Right(vyw300), Right(vyw4000), bcg, ty_Double) -> new_esEs15(vyw300, vyw4000) new_esEs36(vyw301, vyw4001, app(ty_Maybe, efe)) -> new_esEs24(vyw301, vyw4001, efe) new_primCompAux0(vyw30, vyw400, vyw39, ccc) -> new_primCompAux00(vyw39, new_compare17(vyw30, vyw400, ccc)) new_esEs35(vyw302, vyw4002, app(app(app(ty_@3, edc), edd), ede)) -> new_esEs17(vyw302, vyw4002, edc, edd, ede) new_ltEs11(EQ, EQ) -> True new_lt20(vyw590, vyw600, app(ty_Maybe, hc)) -> new_lt13(vyw590, vyw600, hc) new_ltEs24(vyw102, vyw105, ty_Double) -> new_ltEs6(vyw102, vyw105) new_esEs36(vyw301, vyw4001, ty_Float) -> new_esEs12(vyw301, vyw4001) new_esEs13(vyw30, vyw400) -> new_primEqInt(vyw30, vyw400) new_lt24(vyw3, vyw40, app(app(app(ty_@3, cbh), cca), ccb)) -> new_lt6(vyw3, vyw40, cbh, cca, ccb) new_esEs32(vyw113, vyw115, ty_Integer) -> new_esEs18(vyw113, vyw115) new_lt5(vyw591, vyw601, ty_Float) -> new_lt15(vyw591, vyw601) new_esEs5(vyw31, vyw401, ty_Integer) -> new_esEs18(vyw31, vyw401) new_esEs32(vyw113, vyw115, ty_Char) -> new_esEs20(vyw113, vyw115) new_esEs35(vyw302, vyw4002, app(ty_Ratio, eeb)) -> new_esEs23(vyw302, vyw4002, eeb) new_esEs32(vyw113, vyw115, ty_Ordering) -> new_esEs25(vyw113, vyw115) new_esEs24(Just(vyw300), Just(vyw4000), app(app(ty_Either, eca), ecb)) -> new_esEs19(vyw300, vyw4000, eca, ecb) new_esEs5(vyw31, vyw401, ty_Ordering) -> new_esEs25(vyw31, vyw401) new_esEs26(vyw591, vyw601, app(app(ty_@2, eb), ec)) -> new_esEs21(vyw591, vyw601, eb, ec) new_ltEs22(vyw114, vyw116, app(app(ty_@2, dca), dcb)) -> new_ltEs10(vyw114, vyw116, dca, dcb) new_ltEs16(vyw59, vyw60) -> new_fsEs(new_compare14(vyw59, vyw60)) new_esEs4(vyw32, vyw402, app(app(app(ty_@3, eha), ehb), ehc)) -> new_esEs17(vyw32, vyw402, eha, ehb, ehc) new_ltEs7(Left(vyw590), Left(vyw600), app(ty_Maybe, cab), bhd) -> new_ltEs12(vyw590, vyw600, cab) new_lt4(vyw590, vyw600, ty_@0) -> new_lt19(vyw590, vyw600) new_ltEs7(Left(vyw590), Left(vyw600), ty_@0, bhd) -> new_ltEs18(vyw590, vyw600) new_compare27(True, True) -> EQ new_ltEs5(vyw592, vyw602, ty_@0) -> new_ltEs18(vyw592, vyw602) new_esEs11(vyw30, vyw400, ty_Float) -> new_esEs12(vyw30, vyw400) new_compare24(vyw59, vyw60, True, ccf, ccg) -> EQ new_ltEs24(vyw102, vyw105, app(ty_[], fhe)) -> new_ltEs8(vyw102, vyw105, fhe) new_ltEs22(vyw114, vyw116, ty_@0) -> new_ltEs18(vyw114, vyw116) new_gt(vyw18, vyw13, ty_Bool) -> new_esEs41(new_compare27(vyw18, vyw13)) new_primCmpInt(Pos(Succ(vyw300)), Pos(vyw400)) -> new_primCmpNat0(Succ(vyw300), vyw400) new_esEs8(vyw30, vyw400, app(ty_[], bfg)) -> new_esEs16(vyw30, vyw400, bfg) new_esEs38(vyw101, vyw104, ty_@0) -> new_esEs22(vyw101, vyw104) new_lt13(vyw3, vyw40, bbc) -> new_esEs29(new_compare7(vyw3, vyw40, bbc)) new_ltEs11(GT, GT) -> True new_primCompAux00(vyw72, EQ) -> vyw72 new_esEs39(vyw100, vyw103, app(app(ty_Either, feg), feh)) -> new_esEs19(vyw100, vyw103, feg, feh) new_lt4(vyw590, vyw600, ty_Int) -> new_lt18(vyw590, vyw600) new_compare8(GT, EQ) -> GT new_esEs4(vyw32, vyw402, ty_Float) -> new_esEs12(vyw32, vyw402) new_esEs34(vyw300, vyw4000, app(app(ty_Either, dee), def)) -> new_esEs19(vyw300, vyw4000, dee, def) new_ltEs19(vyw591, vyw601, app(ty_[], bab)) -> new_ltEs8(vyw591, vyw601, bab) new_compare17(vyw30, vyw400, ty_Double) -> new_compare19(vyw30, vyw400) new_esEs9(vyw31, vyw401, app(app(ty_@2, fcc), fcd)) -> new_esEs21(vyw31, vyw401, fcc, fcd) new_esEs4(vyw32, vyw402, app(ty_Maybe, faa)) -> new_esEs24(vyw32, vyw402, faa) new_esEs40(vyw300, vyw4000, app(app(ty_Either, gaf), gag)) -> new_esEs19(vyw300, vyw4000, gaf, gag) new_esEs32(vyw113, vyw115, ty_Float) -> new_esEs12(vyw113, vyw115) new_ltEs20(vyw59, vyw60, ty_Double) -> new_ltEs6(vyw59, vyw60) new_ltEs5(vyw592, vyw602, ty_Float) -> new_ltEs14(vyw592, vyw602) new_ltEs21(vyw66, vyw67, app(app(ty_@2, chc), chd)) -> new_ltEs10(vyw66, vyw67, chc, chd) new_esEs39(vyw100, vyw103, app(app(app(ty_@3, fed), fee), fef)) -> new_esEs17(vyw100, vyw103, fed, fee, fef) new_esEs27(vyw590, vyw600, app(app(ty_@2, cg), da)) -> new_esEs21(vyw590, vyw600, cg, da) new_lt21(vyw113, vyw115, ty_@0) -> new_lt19(vyw113, vyw115) new_lt20(vyw590, vyw600, ty_Int) -> new_lt18(vyw590, vyw600) new_esEs5(vyw31, vyw401, app(ty_Maybe, fbc)) -> new_esEs24(vyw31, vyw401, fbc) new_ltEs13(vyw59, vyw60, cdb) -> new_fsEs(new_compare9(vyw59, vyw60, cdb)) new_ltEs20(vyw59, vyw60, app(ty_[], cch)) -> new_ltEs8(vyw59, vyw60, cch) new_esEs11(vyw30, vyw400, ty_Integer) -> new_esEs18(vyw30, vyw400) new_esEs10(vyw30, vyw400, ty_Float) -> new_esEs12(vyw30, vyw400) new_compare19(Double(vyw30, Pos(vyw310)), Double(vyw400, Neg(vyw4010))) -> new_compare31(new_sr(vyw30, Pos(vyw4010)), new_sr(Neg(vyw310), vyw400)) new_compare19(Double(vyw30, Neg(vyw310)), Double(vyw400, Pos(vyw4010))) -> new_compare31(new_sr(vyw30, Neg(vyw4010)), new_sr(Pos(vyw310), vyw400)) new_compare7(Just(vyw30), Nothing, bbc) -> GT new_lt23(vyw101, vyw104, app(app(app(ty_@3, fff), ffg), ffh)) -> new_lt6(vyw101, vyw104, fff, ffg, ffh) new_ltEs15(vyw59, vyw60) -> new_fsEs(new_compare30(vyw59, vyw60)) new_lt5(vyw591, vyw601, ty_@0) -> new_lt19(vyw591, vyw601) new_esEs34(vyw300, vyw4000, ty_@0) -> new_esEs22(vyw300, vyw4000) new_esEs7(vyw30, vyw400, app(ty_[], bee)) -> new_esEs16(vyw30, vyw400, bee) new_esEs14(False, False) -> True new_compare10(vyw180, vyw181, vyw182, vyw183, True, vyw185, bag, bah) -> new_compare11(vyw180, vyw181, vyw182, vyw183, True, bag, bah) new_esEs11(vyw30, vyw400, app(ty_Maybe, ceg)) -> new_esEs24(vyw30, vyw400, ceg) new_esEs41(GT) -> True new_esEs35(vyw302, vyw4002, app(app(ty_Either, edf), edg)) -> new_esEs19(vyw302, vyw4002, edf, edg) new_compare19(Double(vyw30, Neg(vyw310)), Double(vyw400, Neg(vyw4010))) -> new_compare31(new_sr(vyw30, Neg(vyw4010)), new_sr(Neg(vyw310), vyw400)) new_esEs19(Right(vyw300), Right(vyw4000), bcg, app(ty_[], bch)) -> new_esEs16(vyw300, vyw4000, bch) new_esEs11(vyw30, vyw400, ty_Ordering) -> new_esEs25(vyw30, vyw400) new_esEs36(vyw301, vyw4001, ty_Char) -> new_esEs20(vyw301, vyw4001) new_compare17(vyw30, vyw400, ty_Float) -> new_compare29(vyw30, vyw400) new_esEs34(vyw300, vyw4000, ty_Bool) -> new_esEs14(vyw300, vyw4000) new_esEs35(vyw302, vyw4002, app(ty_Maybe, eec)) -> new_esEs24(vyw302, vyw4002, eec) new_compare13(vyw136, vyw137, True, bec, bed) -> LT new_esEs11(vyw30, vyw400, ty_Bool) -> new_esEs14(vyw30, vyw400) new_esEs9(vyw31, vyw401, app(ty_[], fbe)) -> new_esEs16(vyw31, vyw401, fbe) new_esEs35(vyw302, vyw4002, ty_Char) -> new_esEs20(vyw302, vyw4002) new_ltEs23(vyw89, vyw90, app(ty_[], eag)) -> new_ltEs8(vyw89, vyw90, eag) new_esEs35(vyw302, vyw4002, ty_Float) -> new_esEs12(vyw302, vyw4002) new_esEs10(vyw30, vyw400, ty_Char) -> new_esEs20(vyw30, vyw400) new_esEs19(Left(vyw300), Left(vyw4000), ty_Integer, bbd) -> new_esEs18(vyw300, vyw4000) new_lt11(vyw3, vyw40, ccd, cce) -> new_esEs29(new_compare28(vyw3, vyw40, ccd, cce)) new_esEs4(vyw32, vyw402, ty_Integer) -> new_esEs18(vyw32, vyw402) new_esEs38(vyw101, vyw104, app(app(ty_Either, fga), fgb)) -> new_esEs19(vyw101, vyw104, fga, fgb) new_esEs19(Left(vyw300), Left(vyw4000), ty_Ordering, bbd) -> new_esEs25(vyw300, vyw4000) new_lt22(vyw100, vyw103, app(app(ty_Either, feg), feh)) -> new_lt8(vyw100, vyw103, feg, feh) new_esEs9(vyw31, vyw401, ty_Double) -> new_esEs15(vyw31, vyw401) new_esEs26(vyw591, vyw601, ty_Double) -> new_esEs15(vyw591, vyw601) new_esEs19(Left(vyw300), Left(vyw4000), app(ty_Ratio, bce), bbd) -> new_esEs23(vyw300, vyw4000, bce) new_esEs25(LT, EQ) -> False new_esEs25(EQ, LT) -> False new_lt24(vyw3, vyw40, app(app(ty_Either, bba), bbb)) -> new_lt8(vyw3, vyw40, bba, bbb) new_esEs4(vyw32, vyw402, app(app(ty_Either, ehd), ehe)) -> new_esEs19(vyw32, vyw402, ehd, ehe) new_esEs30(vyw301, vyw4001, ty_Int) -> new_esEs13(vyw301, vyw4001) new_compare7(Just(vyw30), Just(vyw400), bbc) -> new_compare26(vyw30, vyw400, new_esEs11(vyw30, vyw400, bbc), bbc) new_primPlusNat0(Succ(vyw1930), vyw3100) -> Succ(Succ(new_primPlusNat1(vyw1930, vyw3100))) new_esEs28(vyw590, vyw600, app(ty_Ratio, hd)) -> new_esEs23(vyw590, vyw600, hd) new_esEs36(vyw301, vyw4001, app(app(ty_Either, eeh), efa)) -> new_esEs19(vyw301, vyw4001, eeh, efa) new_esEs19(Right(vyw300), Right(vyw4000), bcg, app(app(ty_@2, bdf), bdg)) -> new_esEs21(vyw300, vyw4000, bdf, bdg) new_ltEs7(Left(vyw590), Left(vyw600), ty_Integer, bhd) -> new_ltEs16(vyw590, vyw600) new_esEs11(vyw30, vyw400, app(app(app(ty_@3, cdg), cdh), cea)) -> new_esEs17(vyw30, vyw400, cdg, cdh, cea) new_esEs32(vyw113, vyw115, app(ty_Ratio, dbb)) -> new_esEs23(vyw113, vyw115, dbb) new_ltEs21(vyw66, vyw67, app(ty_[], chb)) -> new_ltEs8(vyw66, vyw67, chb) new_lt4(vyw590, vyw600, ty_Integer) -> new_lt17(vyw590, vyw600) new_esEs38(vyw101, vyw104, ty_Ordering) -> new_esEs25(vyw101, vyw104) new_compare13(vyw136, vyw137, False, bec, bed) -> GT new_esEs26(vyw591, vyw601, ty_Int) -> new_esEs13(vyw591, vyw601) new_ltEs7(Right(vyw590), Right(vyw600), cad, ty_Double) -> new_ltEs6(vyw590, vyw600) new_esEs37(vyw300, vyw4000, ty_Float) -> new_esEs12(vyw300, vyw4000) new_primPlusNat1(Zero, Zero) -> Zero new_esEs38(vyw101, vyw104, ty_Integer) -> new_esEs18(vyw101, vyw104) new_esEs34(vyw300, vyw4000, app(app(app(ty_@3, deb), dec), ded)) -> new_esEs17(vyw300, vyw4000, deb, dec, ded) new_lt21(vyw113, vyw115, ty_Float) -> new_lt15(vyw113, vyw115) new_compare211(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, fea, feb, fec) -> new_compare15(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, new_lt22(vyw100, vyw103, fea), new_asAs(new_esEs39(vyw100, vyw103, fea), new_pePe(new_lt23(vyw101, vyw104, feb), new_asAs(new_esEs38(vyw101, vyw104, feb), new_ltEs24(vyw102, vyw105, fec)))), fea, feb, fec) new_compare7(Nothing, Just(vyw400), bbc) -> LT new_ltEs12(Nothing, Just(vyw600), cda) -> True new_lt5(vyw591, vyw601, ty_Integer) -> new_lt17(vyw591, vyw601) new_lt10(vyw3, vyw40) -> new_esEs29(new_compare27(vyw3, vyw40)) new_ltEs12(Just(vyw590), Just(vyw600), app(ty_Ratio, dgd)) -> new_ltEs13(vyw590, vyw600, dgd) new_esEs37(vyw300, vyw4000, ty_Integer) -> new_esEs18(vyw300, vyw4000) new_ltEs7(Left(vyw590), Left(vyw600), ty_Float, bhd) -> new_ltEs14(vyw590, vyw600) new_esEs37(vyw300, vyw4000, ty_@0) -> new_esEs22(vyw300, vyw4000) new_lt4(vyw590, vyw600, ty_Char) -> new_lt16(vyw590, vyw600) new_lt5(vyw591, vyw601, app(app(app(ty_@3, dd), de), df)) -> new_lt6(vyw591, vyw601, dd, de, df) new_primCmpNat0(Succ(vyw300), Succ(vyw4000)) -> new_primCmpNat0(vyw300, vyw4000) new_lt20(vyw590, vyw600, ty_Char) -> new_lt16(vyw590, vyw600) new_lt21(vyw113, vyw115, app(app(app(ty_@3, daa), dab), dac)) -> new_lt6(vyw113, vyw115, daa, dab, dac) new_ltEs10(@2(vyw590, vyw591), @2(vyw600, vyw601), ga, gb) -> new_pePe(new_lt20(vyw590, vyw600, ga), new_asAs(new_esEs28(vyw590, vyw600, ga), new_ltEs19(vyw591, vyw601, gb))) new_lt22(vyw100, vyw103, ty_@0) -> new_lt19(vyw100, vyw103) new_lt24(vyw3, vyw40, ty_@0) -> new_lt19(vyw3, vyw40) new_compare29(Float(vyw30, Neg(vyw310)), Float(vyw400, Neg(vyw4010))) -> new_compare31(new_sr(vyw30, Neg(vyw4010)), new_sr(Neg(vyw310), vyw400)) new_esEs28(vyw590, vyw600, ty_Int) -> new_esEs13(vyw590, vyw600) new_esEs36(vyw301, vyw4001, ty_Ordering) -> new_esEs25(vyw301, vyw4001) new_compare3(:(vyw30, vyw31), [], ccc) -> GT new_ltEs12(Nothing, Nothing, cda) -> True new_ltEs12(Just(vyw590), Nothing, cda) -> False new_esEs36(vyw301, vyw4001, ty_Integer) -> new_esEs18(vyw301, vyw4001) new_esEs36(vyw301, vyw4001, ty_@0) -> new_esEs22(vyw301, vyw4001) new_lt23(vyw101, vyw104, ty_Float) -> new_lt15(vyw101, vyw104) new_esEs29(LT) -> True new_lt21(vyw113, vyw115, ty_Integer) -> new_lt17(vyw113, vyw115) new_lt20(vyw590, vyw600, app(app(app(ty_@3, gc), gd), ge)) -> new_lt6(vyw590, vyw600, gc, gd, ge) new_gt(vyw18, vyw13, app(ty_Ratio, dhh)) -> new_esEs41(new_compare9(vyw18, vyw13, dhh)) new_esEs27(vyw590, vyw600, ty_Int) -> new_esEs13(vyw590, vyw600) new_esEs37(vyw300, vyw4000, ty_Ordering) -> new_esEs25(vyw300, vyw4000) new_esEs36(vyw301, vyw4001, app(app(app(ty_@3, eee), eef), eeg)) -> new_esEs17(vyw301, vyw4001, eee, eef, eeg) new_esEs12(Float(vyw300, vyw301), Float(vyw4000, vyw4001)) -> new_esEs13(new_sr(vyw300, vyw4001), new_sr(vyw301, vyw4000)) new_ltEs23(vyw89, vyw90, ty_Double) -> new_ltEs6(vyw89, vyw90) new_lt23(vyw101, vyw104, app(app(ty_Either, fga), fgb)) -> new_lt8(vyw101, vyw104, fga, fgb) new_esEs37(vyw300, vyw4000, app(ty_Maybe, egg)) -> new_esEs24(vyw300, vyw4000, egg) new_lt22(vyw100, vyw103, ty_Float) -> new_lt15(vyw100, vyw103) new_esEs32(vyw113, vyw115, ty_Bool) -> new_esEs14(vyw113, vyw115) new_lt20(vyw590, vyw600, ty_Integer) -> new_lt17(vyw590, vyw600) new_esEs33(vyw301, vyw4001, ty_Char) -> new_esEs20(vyw301, vyw4001) new_esEs19(Left(vyw300), Right(vyw4000), bcg, bbd) -> False new_esEs19(Right(vyw300), Left(vyw4000), bcg, bbd) -> False new_ltEs23(vyw89, vyw90, app(app(ty_@2, eah), eba)) -> new_ltEs10(vyw89, vyw90, eah, eba) new_compare14(Integer(vyw30), Integer(vyw400)) -> new_primCmpInt(vyw30, vyw400) new_lt23(vyw101, vyw104, ty_@0) -> new_lt19(vyw101, vyw104) new_esEs29(EQ) -> False new_esEs28(vyw590, vyw600, app(ty_Maybe, hc)) -> new_esEs24(vyw590, vyw600, hc) new_ltEs7(Right(vyw590), Left(vyw600), cad, bhd) -> False new_esEs19(Left(vyw300), Left(vyw4000), app(app(app(ty_@3, bbf), bbg), bbh), bbd) -> new_esEs17(vyw300, vyw4000, bbf, bbg, bbh) new_primCmpInt(Neg(Succ(vyw300)), Pos(vyw400)) -> LT new_esEs19(Right(vyw300), Right(vyw4000), bcg, ty_@0) -> new_esEs22(vyw300, vyw4000) new_ltEs22(vyw114, vyw116, app(ty_[], dbh)) -> new_ltEs8(vyw114, vyw116, dbh) new_lt22(vyw100, vyw103, app(ty_Maybe, ffd)) -> new_lt13(vyw100, vyw103, ffd) new_lt4(vyw590, vyw600, app(app(ty_Either, cd), ce)) -> new_lt8(vyw590, vyw600, cd, ce) new_ltEs5(vyw592, vyw602, ty_Char) -> new_ltEs15(vyw592, vyw602) new_esEs6(vyw30, vyw400, app(app(app(ty_@3, ecg), ech), eda)) -> new_esEs17(vyw30, vyw400, ecg, ech, eda) new_esEs39(vyw100, vyw103, ty_Ordering) -> new_esEs25(vyw100, vyw103) new_esEs27(vyw590, vyw600, app(app(app(ty_@3, ca), cb), cc)) -> new_esEs17(vyw590, vyw600, ca, cb, cc) new_ltEs7(Left(vyw590), Left(vyw600), ty_Char, bhd) -> new_ltEs15(vyw590, vyw600) new_ltEs7(Left(vyw590), Left(vyw600), app(app(ty_@2, bhh), caa), bhd) -> new_ltEs10(vyw590, vyw600, bhh, caa) new_esEs29(GT) -> False new_gt(vyw18, vyw13, app(app(ty_@2, dhe), dhf)) -> new_esEs41(new_compare28(vyw18, vyw13, dhe, dhf)) new_primCmpInt(Pos(Zero), Neg(Succ(vyw4000))) -> GT new_ltEs24(vyw102, vyw105, app(app(ty_Either, fhc), fhd)) -> new_ltEs7(vyw102, vyw105, fhc, fhd) new_primCmpInt(Neg(Succ(vyw300)), Neg(vyw400)) -> new_primCmpNat0(vyw400, Succ(vyw300)) new_ltEs11(GT, EQ) -> False new_esEs37(vyw300, vyw4000, app(app(ty_Either, egb), egc)) -> new_esEs19(vyw300, vyw4000, egb, egc) new_ltEs20(vyw59, vyw60, ty_@0) -> new_ltEs18(vyw59, vyw60) new_esEs34(vyw300, vyw4000, ty_Char) -> new_esEs20(vyw300, vyw4000) new_ltEs7(Left(vyw590), Left(vyw600), ty_Ordering, bhd) -> new_ltEs11(vyw590, vyw600) new_lt23(vyw101, vyw104, ty_Int) -> new_lt18(vyw101, vyw104) new_ltEs5(vyw592, vyw602, ty_Ordering) -> new_ltEs11(vyw592, vyw602) new_esEs41(EQ) -> False new_esEs33(vyw301, vyw4001, app(ty_[], dcg)) -> new_esEs16(vyw301, vyw4001, dcg) new_esEs8(vyw30, vyw400, ty_@0) -> new_esEs22(vyw30, vyw400) new_gt(vyw18, vyw13, ty_Int) -> new_esEs41(new_compare31(vyw18, vyw13)) new_primEqInt(Pos(Succ(vyw3000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(vyw40000))) -> False new_ltEs9(False, True) -> True new_esEs8(vyw30, vyw400, ty_Int) -> new_esEs13(vyw30, vyw400) new_compare8(GT, GT) -> EQ new_esEs37(vyw300, vyw4000, app(ty_Ratio, egf)) -> new_esEs23(vyw300, vyw4000, egf) new_esEs37(vyw300, vyw4000, app(app(app(ty_@3, efg), efh), ega)) -> new_esEs17(vyw300, vyw4000, efg, efh, ega) new_lt4(vyw590, vyw600, app(app(app(ty_@3, ca), cb), cc)) -> new_lt6(vyw590, vyw600, ca, cb, cc) new_esEs38(vyw101, vyw104, app(ty_Maybe, fgf)) -> new_esEs24(vyw101, vyw104, fgf) new_ltEs22(vyw114, vyw116, ty_Ordering) -> new_ltEs11(vyw114, vyw116) new_esEs34(vyw300, vyw4000, ty_Float) -> new_esEs12(vyw300, vyw4000) new_esEs19(Right(vyw300), Right(vyw4000), bcg, ty_Int) -> new_esEs13(vyw300, vyw4000) new_lt5(vyw591, vyw601, ty_Char) -> new_lt16(vyw591, vyw601) new_lt5(vyw591, vyw601, ty_Bool) -> new_lt10(vyw591, vyw601) new_lt22(vyw100, vyw103, app(app(app(ty_@3, fed), fee), fef)) -> new_lt6(vyw100, vyw103, fed, fee, fef) new_lt22(vyw100, vyw103, ty_Integer) -> new_lt17(vyw100, vyw103) new_ltEs24(vyw102, vyw105, ty_Int) -> new_ltEs17(vyw102, vyw105) new_ltEs20(vyw59, vyw60, app(app(ty_@2, ga), gb)) -> new_ltEs10(vyw59, vyw60, ga, gb) new_ltEs5(vyw592, vyw602, app(ty_Ratio, fh)) -> new_ltEs13(vyw592, vyw602, fh) new_primCmpNat0(Zero, Zero) -> EQ new_esEs24(Just(vyw300), Just(vyw4000), app(ty_Maybe, ecf)) -> new_esEs24(vyw300, vyw4000, ecf) new_ltEs5(vyw592, vyw602, app(ty_[], fc)) -> new_ltEs8(vyw592, vyw602, fc) new_compare17(vyw30, vyw400, ty_Integer) -> new_compare14(vyw30, vyw400) new_ltEs21(vyw66, vyw67, ty_Double) -> new_ltEs6(vyw66, vyw67) new_lt24(vyw3, vyw40, ty_Float) -> new_lt15(vyw3, vyw40) new_esEs36(vyw301, vyw4001, ty_Int) -> new_esEs13(vyw301, vyw4001) new_esEs34(vyw300, vyw4000, app(app(ty_@2, deg), deh)) -> new_esEs21(vyw300, vyw4000, deg, deh) new_compare15(vyw165, vyw166, vyw167, vyw168, vyw169, vyw170, True, vyw172, cdc, cdd, cde) -> new_compare16(vyw165, vyw166, vyw167, vyw168, vyw169, vyw170, True, cdc, cdd, cde) new_esEs19(Left(vyw300), Left(vyw4000), ty_Float, bbd) -> new_esEs12(vyw300, vyw4000) new_esEs39(vyw100, vyw103, ty_Float) -> new_esEs12(vyw100, vyw103) new_compare27(False, False) -> EQ new_lt21(vyw113, vyw115, ty_Char) -> new_lt16(vyw113, vyw115) new_lt5(vyw591, vyw601, ty_Int) -> new_lt18(vyw591, vyw601) new_compare19(Double(vyw30, Pos(vyw310)), Double(vyw400, Pos(vyw4010))) -> new_compare31(new_sr(vyw30, Pos(vyw4010)), new_sr(Pos(vyw310), vyw400)) new_esEs6(vyw30, vyw400, app(app(ty_Either, bcg), bbd)) -> new_esEs19(vyw30, vyw400, bcg, bbd) new_esEs23(:%(vyw300, vyw301), :%(vyw4000, vyw4001), cgb) -> new_asAs(new_esEs31(vyw300, vyw4000, cgb), new_esEs30(vyw301, vyw4001, cgb)) new_lt21(vyw113, vyw115, ty_Bool) -> new_lt10(vyw113, vyw115) new_primCompAux00(vyw72, GT) -> GT new_lt5(vyw591, vyw601, app(ty_Ratio, ee)) -> new_lt14(vyw591, vyw601, ee) new_lt20(vyw590, vyw600, app(ty_[], gh)) -> new_lt9(vyw590, vyw600, gh) new_gt(vyw18, vyw13, app(ty_Maybe, dhg)) -> new_esEs41(new_compare7(vyw18, vyw13, dhg)) new_ltEs23(vyw89, vyw90, ty_Integer) -> new_ltEs16(vyw89, vyw90) new_esEs40(vyw300, vyw4000, app(ty_Maybe, gbc)) -> new_esEs24(vyw300, vyw4000, gbc) new_esEs34(vyw300, vyw4000, ty_Integer) -> new_esEs18(vyw300, vyw4000) new_esEs39(vyw100, vyw103, ty_Integer) -> new_esEs18(vyw100, vyw103) new_esEs6(vyw30, vyw400, ty_Char) -> new_esEs20(vyw30, vyw400) new_lt15(vyw3, vyw40) -> new_esEs29(new_compare29(vyw3, vyw40)) new_ltEs11(GT, LT) -> False new_compare110(vyw143, vyw144, True, dge, dgf) -> LT new_esEs27(vyw590, vyw600, ty_Float) -> new_esEs12(vyw590, vyw600) new_lt4(vyw590, vyw600, app(ty_Maybe, db)) -> new_lt13(vyw590, vyw600, db) new_compare3(:(vyw30, vyw31), :(vyw400, vyw401), ccc) -> new_primCompAux0(vyw30, vyw400, new_compare3(vyw31, vyw401, ccc), ccc) new_ltEs22(vyw114, vyw116, ty_Char) -> new_ltEs15(vyw114, vyw116) new_lt20(vyw590, vyw600, app(app(ty_Either, gf), gg)) -> new_lt8(vyw590, vyw600, gf, gg) new_esEs27(vyw590, vyw600, app(ty_Ratio, dc)) -> new_esEs23(vyw590, vyw600, dc) new_esEs33(vyw301, vyw4001, ty_Double) -> new_esEs15(vyw301, vyw4001) new_esEs39(vyw100, vyw103, ty_@0) -> new_esEs22(vyw100, vyw103) new_ltEs20(vyw59, vyw60, ty_Float) -> new_ltEs14(vyw59, vyw60) new_esEs34(vyw300, vyw4000, ty_Ordering) -> new_esEs25(vyw300, vyw4000) new_esEs38(vyw101, vyw104, ty_Double) -> new_esEs15(vyw101, vyw104) new_ltEs11(LT, LT) -> True new_esEs39(vyw100, vyw103, app(app(ty_@2, ffb), ffc)) -> new_esEs21(vyw100, vyw103, ffb, ffc) new_esEs31(vyw300, vyw4000, ty_Int) -> new_esEs13(vyw300, vyw4000) new_esEs16(:(vyw300, vyw301), :(vyw4000, vyw4001), fbd) -> new_asAs(new_esEs40(vyw300, vyw4000, fbd), new_esEs16(vyw301, vyw4001, fbd)) new_ltEs23(vyw89, vyw90, app(app(app(ty_@3, eab), eac), ead)) -> new_ltEs4(vyw89, vyw90, eab, eac, ead) new_ltEs21(vyw66, vyw67, ty_Bool) -> new_ltEs9(vyw66, vyw67) new_esEs11(vyw30, vyw400, ty_@0) -> new_esEs22(vyw30, vyw400) new_esEs28(vyw590, vyw600, app(ty_[], gh)) -> new_esEs16(vyw590, vyw600, gh) new_ltEs19(vyw591, vyw601, ty_Double) -> new_ltEs6(vyw591, vyw601) new_primCmpNat0(Succ(vyw300), Zero) -> GT new_lt14(vyw3, vyw40, cbg) -> new_esEs29(new_compare9(vyw3, vyw40, cbg)) new_ltEs19(vyw591, vyw601, app(app(ty_Either, hh), baa)) -> new_ltEs7(vyw591, vyw601, hh, baa) new_pePe(False, vyw191) -> vyw191 new_ltEs7(Right(vyw590), Right(vyw600), cad, app(ty_[], cbb)) -> new_ltEs8(vyw590, vyw600, cbb) new_compare25(vyw66, vyw67, True, cgc, cgd) -> EQ new_ltEs22(vyw114, vyw116, app(ty_Ratio, dcd)) -> new_ltEs13(vyw114, vyw116, dcd) new_ltEs9(True, True) -> True new_esEs27(vyw590, vyw600, ty_Char) -> new_esEs20(vyw590, vyw600) new_esEs31(vyw300, vyw4000, ty_Integer) -> new_esEs18(vyw300, vyw4000) new_esEs6(vyw30, vyw400, ty_Integer) -> new_esEs18(vyw30, vyw400) new_esEs26(vyw591, vyw601, ty_Bool) -> new_esEs14(vyw591, vyw601) new_esEs8(vyw30, vyw400, ty_Float) -> new_esEs12(vyw30, vyw400) new_esEs5(vyw31, vyw401, ty_@0) -> new_esEs22(vyw31, vyw401) new_compare31(vyw3, vyw40) -> new_primCmpInt(vyw3, vyw40) new_ltEs24(vyw102, vyw105, app(ty_Ratio, gaa)) -> new_ltEs13(vyw102, vyw105, gaa) new_esEs34(vyw300, vyw4000, app(ty_Ratio, dfa)) -> new_esEs23(vyw300, vyw4000, dfa) new_esEs32(vyw113, vyw115, app(app(app(ty_@3, daa), dab), dac)) -> new_esEs17(vyw113, vyw115, daa, dab, dac) new_esEs19(Right(vyw300), Right(vyw4000), bcg, ty_Integer) -> new_esEs18(vyw300, vyw4000) new_primEqInt(Pos(Zero), Neg(Succ(vyw40000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(vyw40000))) -> False new_ltEs20(vyw59, vyw60, ty_Integer) -> new_ltEs16(vyw59, vyw60) new_esEs25(LT, GT) -> False new_esEs25(GT, LT) -> False new_lt22(vyw100, vyw103, app(app(ty_@2, ffb), ffc)) -> new_lt11(vyw100, vyw103, ffb, ffc) new_ltEs5(vyw592, vyw602, ty_Int) -> new_ltEs17(vyw592, vyw602) new_ltEs22(vyw114, vyw116, ty_Float) -> new_ltEs14(vyw114, vyw116) new_ltEs7(Left(vyw590), Left(vyw600), ty_Int, bhd) -> new_ltEs17(vyw590, vyw600) new_esEs5(vyw31, vyw401, ty_Double) -> new_esEs15(vyw31, vyw401) new_esEs9(vyw31, vyw401, app(app(ty_Either, fca), fcb)) -> new_esEs19(vyw31, vyw401, fca, fcb) new_lt24(vyw3, vyw40, app(app(ty_@2, ccd), cce)) -> new_lt11(vyw3, vyw40, ccd, cce) new_esEs26(vyw591, vyw601, app(ty_[], ea)) -> new_esEs16(vyw591, vyw601, ea) new_esEs6(vyw30, vyw400, ty_Ordering) -> new_esEs25(vyw30, vyw400) new_ltEs12(Just(vyw590), Just(vyw600), app(app(ty_@2, dga), dgb)) -> new_ltEs10(vyw590, vyw600, dga, dgb) new_esEs19(Left(vyw300), Left(vyw4000), ty_Char, bbd) -> new_esEs20(vyw300, vyw4000) new_esEs8(vyw30, vyw400, ty_Integer) -> new_esEs18(vyw30, vyw400) new_esEs36(vyw301, vyw4001, ty_Bool) -> new_esEs14(vyw301, vyw4001) new_ltEs12(Just(vyw590), Just(vyw600), app(app(app(ty_@3, dfc), dfd), dfe)) -> new_ltEs4(vyw590, vyw600, dfc, dfd, dfe) new_esEs19(Right(vyw300), Right(vyw4000), bcg, ty_Ordering) -> new_esEs25(vyw300, vyw4000) new_lt24(vyw3, vyw40, ty_Integer) -> new_lt17(vyw3, vyw40) new_ltEs7(Right(vyw590), Right(vyw600), cad, app(app(ty_Either, cah), cba)) -> new_ltEs7(vyw590, vyw600, cah, cba) new_esEs33(vyw301, vyw4001, app(ty_Maybe, ddh)) -> new_esEs24(vyw301, vyw4001, ddh) new_ltEs12(Just(vyw590), Just(vyw600), ty_Bool) -> new_ltEs9(vyw590, vyw600) new_esEs37(vyw300, vyw4000, ty_Char) -> new_esEs20(vyw300, vyw4000) new_esEs28(vyw590, vyw600, ty_Double) -> new_esEs15(vyw590, vyw600) new_esEs25(EQ, GT) -> False new_esEs25(GT, EQ) -> False new_esEs24(Just(vyw300), Just(vyw4000), ty_Double) -> new_esEs15(vyw300, vyw4000) new_esEs10(vyw30, vyw400, app(ty_Maybe, fdh)) -> new_esEs24(vyw30, vyw400, fdh) new_primPlusNat0(Zero, vyw3100) -> Succ(vyw3100) new_esEs40(vyw300, vyw4000, ty_Double) -> new_esEs15(vyw300, vyw4000) new_ltEs12(Just(vyw590), Just(vyw600), ty_Double) -> new_ltEs6(vyw590, vyw600) new_esEs18(Integer(vyw300), Integer(vyw4000)) -> new_primEqInt(vyw300, vyw4000) new_esEs38(vyw101, vyw104, app(ty_[], fgc)) -> new_esEs16(vyw101, vyw104, fgc) new_ltEs5(vyw592, vyw602, app(app(ty_Either, fa), fb)) -> new_ltEs7(vyw592, vyw602, fa, fb) new_ltEs19(vyw591, vyw601, ty_Bool) -> new_ltEs9(vyw591, vyw601) new_esEs7(vyw30, vyw400, ty_Double) -> new_esEs15(vyw30, vyw400) new_esEs8(vyw30, vyw400, app(app(ty_@2, bge), bgf)) -> new_esEs21(vyw30, vyw400, bge, bgf) new_lt23(vyw101, vyw104, ty_Char) -> new_lt16(vyw101, vyw104) new_lt6(vyw3, vyw40, cbh, cca, ccb) -> new_esEs29(new_compare18(vyw3, vyw40, cbh, cca, ccb)) new_esEs39(vyw100, vyw103, ty_Char) -> new_esEs20(vyw100, vyw103) new_esEs24(Just(vyw300), Just(vyw4000), app(ty_[], ebe)) -> new_esEs16(vyw300, vyw4000, ebe) new_esEs8(vyw30, vyw400, ty_Ordering) -> new_esEs25(vyw30, vyw400) new_esEs39(vyw100, vyw103, ty_Bool) -> new_esEs14(vyw100, vyw103) new_compare26(vyw89, vyw90, False, eaa) -> new_compare12(vyw89, vyw90, new_ltEs23(vyw89, vyw90, eaa), eaa) new_compare17(vyw30, vyw400, app(app(ty_@2, cff), cfg)) -> new_compare28(vyw30, vyw400, cff, cfg) new_lt21(vyw113, vyw115, ty_Int) -> new_lt18(vyw113, vyw115) new_compare17(vyw30, vyw400, ty_@0) -> new_compare32(vyw30, vyw400) new_esEs5(vyw31, vyw401, app(ty_[], fab)) -> new_esEs16(vyw31, vyw401, fab) new_compare8(LT, GT) -> LT new_compare17(vyw30, vyw400, app(ty_Ratio, cga)) -> new_compare9(vyw30, vyw400, cga) new_esEs19(Left(vyw300), Left(vyw4000), ty_Bool, bbd) -> new_esEs14(vyw300, vyw4000) new_lt21(vyw113, vyw115, ty_Ordering) -> new_lt12(vyw113, vyw115) new_esEs10(vyw30, vyw400, app(app(ty_Either, fdc), fdd)) -> new_esEs19(vyw30, vyw400, fdc, fdd) new_esEs6(vyw30, vyw400, app(app(ty_@2, dce), dcf)) -> new_esEs21(vyw30, vyw400, dce, dcf) new_esEs19(Right(vyw300), Right(vyw4000), bcg, app(ty_Ratio, bdh)) -> new_esEs23(vyw300, vyw4000, bdh) new_esEs34(vyw300, vyw4000, ty_Int) -> new_esEs13(vyw300, vyw4000) new_compare16(vyw165, vyw166, vyw167, vyw168, vyw169, vyw170, True, cdc, cdd, cde) -> LT new_esEs40(vyw300, vyw4000, app(ty_[], gab)) -> new_esEs16(vyw300, vyw4000, gab) new_esEs16([], [], fbd) -> True new_ltEs12(Just(vyw590), Just(vyw600), app(ty_Maybe, dgc)) -> new_ltEs12(vyw590, vyw600, dgc) new_primMulInt(Neg(vyw4000), Neg(vyw310)) -> Pos(new_primMulNat0(vyw4000, vyw310)) new_primCmpInt(Pos(Zero), Pos(Succ(vyw4000))) -> new_primCmpNat0(Zero, Succ(vyw4000)) new_esEs11(vyw30, vyw400, ty_Int) -> new_esEs13(vyw30, vyw400) new_esEs14(True, True) -> True new_compare11(vyw180, vyw181, vyw182, vyw183, False, bag, bah) -> GT new_ltEs23(vyw89, vyw90, ty_@0) -> new_ltEs18(vyw89, vyw90) new_esEs6(vyw30, vyw400, ty_Float) -> new_esEs12(vyw30, vyw400) new_esEs32(vyw113, vyw115, app(app(ty_Either, dad), dae)) -> new_esEs19(vyw113, vyw115, dad, dae) new_lt5(vyw591, vyw601, ty_Ordering) -> new_lt12(vyw591, vyw601) new_esEs7(vyw30, vyw400, app(ty_Maybe, bff)) -> new_esEs24(vyw30, vyw400, bff) new_gt(vyw18, vyw13, ty_Double) -> new_esEs41(new_compare19(vyw18, vyw13)) new_primMulInt(Pos(vyw4000), Neg(vyw310)) -> Neg(new_primMulNat0(vyw4000, vyw310)) new_primMulInt(Neg(vyw4000), Pos(vyw310)) -> Neg(new_primMulNat0(vyw4000, vyw310)) new_esEs19(Left(vyw300), Left(vyw4000), ty_Int, bbd) -> new_esEs13(vyw300, vyw4000) new_esEs35(vyw302, vyw4002, app(ty_[], edb)) -> new_esEs16(vyw302, vyw4002, edb) new_lt21(vyw113, vyw115, app(app(ty_@2, dag), dah)) -> new_lt11(vyw113, vyw115, dag, dah) new_ltEs23(vyw89, vyw90, ty_Float) -> new_ltEs14(vyw89, vyw90) new_ltEs21(vyw66, vyw67, ty_Integer) -> new_ltEs16(vyw66, vyw67) new_lt4(vyw590, vyw600, ty_Double) -> new_lt7(vyw590, vyw600) new_lt24(vyw3, vyw40, ty_Bool) -> new_lt10(vyw3, vyw40) new_compare9(:%(vyw30, vyw31), :%(vyw400, vyw401), ty_Int) -> new_compare31(new_sr(vyw30, vyw401), new_sr(vyw400, vyw31)) new_compare29(Float(vyw30, Pos(vyw310)), Float(vyw400, Neg(vyw4010))) -> new_compare31(new_sr(vyw30, Pos(vyw4010)), new_sr(Neg(vyw310), vyw400)) new_compare29(Float(vyw30, Neg(vyw310)), Float(vyw400, Pos(vyw4010))) -> new_compare31(new_sr(vyw30, Neg(vyw4010)), new_sr(Pos(vyw310), vyw400)) new_esEs19(Right(vyw300), Right(vyw4000), bcg, app(ty_Maybe, bea)) -> new_esEs24(vyw300, vyw4000, bea) new_ltEs7(Right(vyw590), Right(vyw600), cad, ty_Ordering) -> new_ltEs11(vyw590, vyw600) new_esEs19(Left(vyw300), Left(vyw4000), app(app(ty_Either, bca), bcb), bbd) -> new_esEs19(vyw300, vyw4000, bca, bcb) new_esEs27(vyw590, vyw600, ty_@0) -> new_esEs22(vyw590, vyw600) new_ltEs24(vyw102, vyw105, ty_Bool) -> new_ltEs9(vyw102, vyw105) new_esEs8(vyw30, vyw400, app(app(app(ty_@3, bfh), bga), bgb)) -> new_esEs17(vyw30, vyw400, bfh, bga, bgb) new_sr0(Integer(vyw4000), Integer(vyw310)) -> Integer(new_primMulInt(vyw4000, vyw310)) new_esEs35(vyw302, vyw4002, ty_Double) -> new_esEs15(vyw302, vyw4002) new_compare17(vyw30, vyw400, ty_Ordering) -> new_compare8(vyw30, vyw400) new_compare17(vyw30, vyw400, ty_Int) -> new_compare31(vyw30, vyw400) new_esEs6(vyw30, vyw400, ty_Int) -> new_esEs13(vyw30, vyw400) new_esEs8(vyw30, vyw400, app(ty_Ratio, bgg)) -> new_esEs23(vyw30, vyw400, bgg) new_ltEs20(vyw59, vyw60, ty_Ordering) -> new_ltEs11(vyw59, vyw60) new_esEs9(vyw31, vyw401, app(ty_Maybe, fcf)) -> new_esEs24(vyw31, vyw401, fcf) new_lt21(vyw113, vyw115, ty_Double) -> new_lt7(vyw113, vyw115) new_lt4(vyw590, vyw600, app(app(ty_@2, cg), da)) -> new_lt11(vyw590, vyw600, cg, da) new_ltEs21(vyw66, vyw67, app(ty_Ratio, chf)) -> new_ltEs13(vyw66, vyw67, chf) new_esEs26(vyw591, vyw601, app(ty_Maybe, ed)) -> new_esEs24(vyw591, vyw601, ed) new_esEs9(vyw31, vyw401, ty_Float) -> new_esEs12(vyw31, vyw401) new_esEs26(vyw591, vyw601, ty_Integer) -> new_esEs18(vyw591, vyw601) new_esEs6(vyw30, vyw400, ty_Bool) -> new_esEs14(vyw30, vyw400) new_ltEs20(vyw59, vyw60, ty_Char) -> new_ltEs15(vyw59, vyw60) new_esEs4(vyw32, vyw402, app(ty_Ratio, ehh)) -> new_esEs23(vyw32, vyw402, ehh) new_esEs25(LT, LT) -> True new_compare6(Right(vyw30), Right(vyw400), bba, bbb) -> new_compare25(vyw30, vyw400, new_esEs8(vyw30, vyw400, bbb), bba, bbb) new_ltEs7(Right(vyw590), Right(vyw600), cad, app(ty_Maybe, cbe)) -> new_ltEs12(vyw590, vyw600, cbe) new_esEs5(vyw31, vyw401, ty_Char) -> new_esEs20(vyw31, vyw401) new_lt24(vyw3, vyw40, app(ty_Maybe, bbc)) -> new_lt13(vyw3, vyw40, bbc) new_asAs(True, vyw131) -> vyw131 new_esEs22(@0, @0) -> True new_gt(vyw18, vyw13, app(app(ty_Either, dhb), dhc)) -> new_esEs41(new_compare6(vyw18, vyw13, dhb, dhc)) new_esEs32(vyw113, vyw115, app(app(ty_@2, dag), dah)) -> new_esEs21(vyw113, vyw115, dag, dah) new_compare9(:%(vyw30, vyw31), :%(vyw400, vyw401), ty_Integer) -> new_compare14(new_sr0(vyw30, vyw401), new_sr0(vyw400, vyw31)) new_esEs26(vyw591, vyw601, ty_Ordering) -> new_esEs25(vyw591, vyw601) new_esEs10(vyw30, vyw400, app(ty_[], fcg)) -> new_esEs16(vyw30, vyw400, fcg) new_lt24(vyw3, vyw40, ty_Ordering) -> new_lt12(vyw3, vyw40) new_esEs4(vyw32, vyw402, ty_Double) -> new_esEs15(vyw32, vyw402) new_esEs5(vyw31, vyw401, app(app(ty_@2, fah), fba)) -> new_esEs21(vyw31, vyw401, fah, fba) new_gt(vyw18, vyw13, ty_Float) -> new_esEs41(new_compare29(vyw18, vyw13)) new_esEs38(vyw101, vyw104, ty_Int) -> new_esEs13(vyw101, vyw104) new_esEs26(vyw591, vyw601, ty_Char) -> new_esEs20(vyw591, vyw601) new_lt21(vyw113, vyw115, app(ty_[], daf)) -> new_lt9(vyw113, vyw115, daf) new_ltEs22(vyw114, vyw116, app(app(ty_Either, dbf), dbg)) -> new_ltEs7(vyw114, vyw116, dbf, dbg) new_compare211(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, True, fea, feb, fec) -> EQ new_ltEs21(vyw66, vyw67, app(ty_Maybe, che)) -> new_ltEs12(vyw66, vyw67, che) new_ltEs12(Just(vyw590), Just(vyw600), ty_@0) -> new_ltEs18(vyw590, vyw600) new_gt(vyw18, vyw13, app(ty_[], dhd)) -> new_esEs41(new_compare3(vyw18, vyw13, dhd)) new_ltEs21(vyw66, vyw67, ty_Int) -> new_ltEs17(vyw66, vyw67) new_compare6(Right(vyw30), Left(vyw400), bba, bbb) -> GT new_sr(vyw400, vyw31) -> new_primMulInt(vyw400, vyw31) new_lt18(vyw3, vyw40) -> new_esEs29(new_compare31(vyw3, vyw40)) new_ltEs21(vyw66, vyw67, app(app(ty_Either, cgh), cha)) -> new_ltEs7(vyw66, vyw67, cgh, cha) new_ltEs9(False, False) -> True new_primMulNat0(Zero, Zero) -> Zero new_esEs39(vyw100, vyw103, ty_Double) -> new_esEs15(vyw100, vyw103) new_esEs11(vyw30, vyw400, app(app(ty_@2, ced), cee)) -> new_esEs21(vyw30, vyw400, ced, cee) new_compare27(True, False) -> GT new_lt12(vyw3, vyw40) -> new_esEs29(new_compare8(vyw3, vyw40)) new_compare8(LT, LT) -> EQ new_ltEs4(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), bf, bg, bh) -> new_pePe(new_lt4(vyw590, vyw600, bf), new_asAs(new_esEs27(vyw590, vyw600, bf), new_pePe(new_lt5(vyw591, vyw601, bg), new_asAs(new_esEs26(vyw591, vyw601, bg), new_ltEs5(vyw592, vyw602, bh))))) new_ltEs14(vyw59, vyw60) -> new_fsEs(new_compare29(vyw59, vyw60)) new_ltEs22(vyw114, vyw116, app(app(app(ty_@3, dbc), dbd), dbe)) -> new_ltEs4(vyw114, vyw116, dbc, dbd, dbe) new_ltEs20(vyw59, vyw60, ty_Bool) -> new_ltEs9(vyw59, vyw60) new_ltEs20(vyw59, vyw60, app(ty_Maybe, cda)) -> new_ltEs12(vyw59, vyw60, cda) new_compare8(LT, EQ) -> LT new_gt(vyw18, vyw13, app(app(app(ty_@3, dgg), dgh), dha)) -> new_esEs41(new_compare18(vyw18, vyw13, dgg, dgh, dha)) new_ltEs24(vyw102, vyw105, ty_Ordering) -> new_ltEs11(vyw102, vyw105) new_ltEs19(vyw591, vyw601, app(ty_Ratio, baf)) -> new_ltEs13(vyw591, vyw601, baf) new_lt19(vyw3, vyw40) -> new_esEs29(new_compare32(vyw3, vyw40)) new_esEs9(vyw31, vyw401, ty_Ordering) -> new_esEs25(vyw31, vyw401) new_esEs39(vyw100, vyw103, app(ty_Ratio, ffe)) -> new_esEs23(vyw100, vyw103, ffe) new_esEs27(vyw590, vyw600, ty_Ordering) -> new_esEs25(vyw590, vyw600) new_esEs37(vyw300, vyw4000, ty_Int) -> new_esEs13(vyw300, vyw4000) new_esEs9(vyw31, vyw401, ty_Integer) -> new_esEs18(vyw31, vyw401) new_lt5(vyw591, vyw601, app(ty_[], ea)) -> new_lt9(vyw591, vyw601, ea) new_compare32(@0, @0) -> EQ new_esEs33(vyw301, vyw4001, app(app(ty_@2, dde), ddf)) -> new_esEs21(vyw301, vyw4001, dde, ddf) new_esEs26(vyw591, vyw601, ty_Float) -> new_esEs12(vyw591, vyw601) new_esEs19(Right(vyw300), Right(vyw4000), bcg, ty_Float) -> new_esEs12(vyw300, vyw4000) new_esEs9(vyw31, vyw401, app(app(app(ty_@3, fbf), fbg), fbh)) -> new_esEs17(vyw31, vyw401, fbf, fbg, fbh) new_ltEs9(True, False) -> False new_ltEs19(vyw591, vyw601, ty_Int) -> new_ltEs17(vyw591, vyw601) new_esEs7(vyw30, vyw400, ty_Int) -> new_esEs13(vyw30, vyw400) new_esEs28(vyw590, vyw600, ty_@0) -> new_esEs22(vyw590, vyw600) new_primEqInt(Neg(Succ(vyw3000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(vyw40000))) -> False new_esEs9(vyw31, vyw401, app(ty_Ratio, fce)) -> new_esEs23(vyw31, vyw401, fce) new_lt4(vyw590, vyw600, app(ty_[], cf)) -> new_lt9(vyw590, vyw600, cf) new_ltEs20(vyw59, vyw60, app(ty_Ratio, cdb)) -> new_ltEs13(vyw59, vyw60, cdb) new_primEqInt(Pos(Succ(vyw3000)), Pos(Succ(vyw40000))) -> new_primEqNat0(vyw3000, vyw40000) new_ltEs7(Right(vyw590), Right(vyw600), cad, ty_Char) -> new_ltEs15(vyw590, vyw600) new_lt20(vyw590, vyw600, ty_Double) -> new_lt7(vyw590, vyw600) new_esEs5(vyw31, vyw401, ty_Bool) -> new_esEs14(vyw31, vyw401) new_lt23(vyw101, vyw104, ty_Ordering) -> new_lt12(vyw101, vyw104) new_ltEs19(vyw591, vyw601, app(ty_Maybe, bae)) -> new_ltEs12(vyw591, vyw601, bae) new_lt20(vyw590, vyw600, app(app(ty_@2, ha), hb)) -> new_lt11(vyw590, vyw600, ha, hb) new_primEqInt(Pos(Succ(vyw3000)), Neg(vyw4000)) -> False new_primEqInt(Neg(Succ(vyw3000)), Pos(vyw4000)) -> False new_esEs10(vyw30, vyw400, ty_Double) -> new_esEs15(vyw30, vyw400) new_primCmpInt(Neg(Zero), Neg(Succ(vyw4000))) -> new_primCmpNat0(Succ(vyw4000), Zero) new_lt20(vyw590, vyw600, app(ty_Ratio, hd)) -> new_lt14(vyw590, vyw600, hd) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs19(Right(vyw300), Right(vyw4000), bcg, app(app(app(ty_@3, bda), bdb), bdc)) -> new_esEs17(vyw300, vyw4000, bda, bdb, bdc) new_esEs34(vyw300, vyw4000, ty_Double) -> new_esEs15(vyw300, vyw4000) new_ltEs19(vyw591, vyw601, app(app(app(ty_@3, he), hf), hg)) -> new_ltEs4(vyw591, vyw601, he, hf, hg) new_compare17(vyw30, vyw400, app(app(app(ty_@3, ceh), cfa), cfb)) -> new_compare18(vyw30, vyw400, ceh, cfa, cfb) new_esEs19(Right(vyw300), Right(vyw4000), bcg, app(app(ty_Either, bdd), bde)) -> new_esEs19(vyw300, vyw4000, bdd, bde) new_esEs26(vyw591, vyw601, ty_@0) -> new_esEs22(vyw591, vyw601) new_esEs40(vyw300, vyw4000, app(ty_Ratio, gbb)) -> new_esEs23(vyw300, vyw4000, gbb) new_compare12(vyw153, vyw154, True, beb) -> LT new_esEs5(vyw31, vyw401, ty_Int) -> new_esEs13(vyw31, vyw401) new_lt22(vyw100, vyw103, ty_Double) -> new_lt7(vyw100, vyw103) new_compare8(GT, LT) -> GT new_compare7(Nothing, Nothing, bbc) -> EQ new_compare24(vyw59, vyw60, False, ccf, ccg) -> new_compare13(vyw59, vyw60, new_ltEs20(vyw59, vyw60, ccf), ccf, ccg) new_ltEs20(vyw59, vyw60, ty_Int) -> new_ltEs17(vyw59, vyw60) new_esEs11(vyw30, vyw400, ty_Double) -> new_esEs15(vyw30, vyw400) new_ltEs21(vyw66, vyw67, ty_Ordering) -> new_ltEs11(vyw66, vyw67) new_esEs7(vyw30, vyw400, ty_Bool) -> new_esEs14(vyw30, vyw400) new_ltEs7(Left(vyw590), Left(vyw600), app(ty_[], bhg), bhd) -> new_ltEs8(vyw590, vyw600, bhg) new_esEs7(vyw30, vyw400, app(ty_Ratio, bfe)) -> new_esEs23(vyw30, vyw400, bfe) new_esEs8(vyw30, vyw400, ty_Char) -> new_esEs20(vyw30, vyw400) new_esEs27(vyw590, vyw600, app(ty_Maybe, db)) -> new_esEs24(vyw590, vyw600, db) new_esEs19(Left(vyw300), Left(vyw4000), app(ty_[], bbe), bbd) -> new_esEs16(vyw300, vyw4000, bbe) new_esEs40(vyw300, vyw4000, ty_Int) -> new_esEs13(vyw300, vyw4000) new_esEs24(Just(vyw300), Just(vyw4000), ty_Int) -> new_esEs13(vyw300, vyw4000) new_not(False) -> True new_compare8(EQ, LT) -> GT new_esEs36(vyw301, vyw4001, app(ty_[], eed)) -> new_esEs16(vyw301, vyw4001, eed) new_compare15(vyw165, vyw166, vyw167, vyw168, vyw169, vyw170, False, vyw172, cdc, cdd, cde) -> new_compare16(vyw165, vyw166, vyw167, vyw168, vyw169, vyw170, vyw172, cdc, cdd, cde) new_esEs26(vyw591, vyw601, app(app(app(ty_@3, dd), de), df)) -> new_esEs17(vyw591, vyw601, dd, de, df) new_esEs27(vyw590, vyw600, ty_Integer) -> new_esEs18(vyw590, vyw600) new_ltEs12(Just(vyw590), Just(vyw600), ty_Integer) -> new_ltEs16(vyw590, vyw600) new_lt24(vyw3, vyw40, ty_Double) -> new_lt7(vyw3, vyw40) new_esEs41(LT) -> False new_esEs24(Just(vyw300), Just(vyw4000), app(ty_Ratio, ece)) -> new_esEs23(vyw300, vyw4000, ece) new_esEs28(vyw590, vyw600, app(app(ty_Either, gf), gg)) -> new_esEs19(vyw590, vyw600, gf, gg) new_esEs9(vyw31, vyw401, ty_Bool) -> new_esEs14(vyw31, vyw401) new_esEs38(vyw101, vyw104, app(app(ty_@2, fgd), fge)) -> new_esEs21(vyw101, vyw104, fgd, fge) new_compare17(vyw30, vyw400, app(app(ty_Either, cfc), cfd)) -> new_compare6(vyw30, vyw400, cfc, cfd) new_lt21(vyw113, vyw115, app(ty_Ratio, dbb)) -> new_lt14(vyw113, vyw115, dbb) new_ltEs11(LT, EQ) -> True new_esEs5(vyw31, vyw401, app(ty_Ratio, fbb)) -> new_esEs23(vyw31, vyw401, fbb) new_ltEs24(vyw102, vyw105, app(ty_Maybe, fhh)) -> new_ltEs12(vyw102, vyw105, fhh) new_ltEs5(vyw592, vyw602, app(app(app(ty_@3, ef), eg), eh)) -> new_ltEs4(vyw592, vyw602, ef, eg, eh) new_esEs19(Right(vyw300), Right(vyw4000), bcg, ty_Char) -> new_esEs20(vyw300, vyw4000) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_ltEs7(Right(vyw590), Right(vyw600), cad, ty_Bool) -> new_ltEs9(vyw590, vyw600) new_compare210(vyw113, vyw114, vyw115, vyw116, False, chg, chh) -> new_compare10(vyw113, vyw114, vyw115, vyw116, new_lt21(vyw113, vyw115, chg), new_asAs(new_esEs32(vyw113, vyw115, chg), new_ltEs22(vyw114, vyw116, chh)), chg, chh) new_lt23(vyw101, vyw104, ty_Bool) -> new_lt10(vyw101, vyw104) new_lt24(vyw3, vyw40, app(ty_Ratio, cbg)) -> new_lt14(vyw3, vyw40, cbg) new_compare17(vyw30, vyw400, ty_Char) -> new_compare30(vyw30, vyw400) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs26(vyw591, vyw601, app(app(ty_Either, dg), dh)) -> new_esEs19(vyw591, vyw601, dg, dh) new_ltEs21(vyw66, vyw67, app(app(app(ty_@3, cge), cgf), cgg)) -> new_ltEs4(vyw66, vyw67, cge, cgf, cgg) new_primMulNat0(Succ(vyw40000), Succ(vyw3100)) -> new_primPlusNat0(new_primMulNat0(vyw40000, Succ(vyw3100)), vyw3100) new_compare29(Float(vyw30, Pos(vyw310)), Float(vyw400, Pos(vyw4010))) -> new_compare31(new_sr(vyw30, Pos(vyw4010)), new_sr(Pos(vyw310), vyw400)) new_lt22(vyw100, vyw103, app(ty_[], ffa)) -> new_lt9(vyw100, vyw103, ffa) new_gt(vyw18, vyw13, ty_Integer) -> new_esEs41(new_compare14(vyw18, vyw13)) new_ltEs19(vyw591, vyw601, ty_Ordering) -> new_ltEs11(vyw591, vyw601) new_ltEs7(Left(vyw590), Left(vyw600), app(app(app(ty_@3, bha), bhb), bhc), bhd) -> new_ltEs4(vyw590, vyw600, bha, bhb, bhc) new_compare17(vyw30, vyw400, app(ty_Maybe, cfh)) -> new_compare7(vyw30, vyw400, cfh) new_ltEs11(LT, GT) -> True new_compare30(Char(vyw30), Char(vyw400)) -> new_primCmpNat0(vyw30, vyw400) new_compare8(EQ, EQ) -> EQ new_ltEs23(vyw89, vyw90, ty_Int) -> new_ltEs17(vyw89, vyw90) new_esEs36(vyw301, vyw4001, app(app(ty_@2, efb), efc)) -> new_esEs21(vyw301, vyw4001, efb, efc) new_esEs27(vyw590, vyw600, app(app(ty_Either, cd), ce)) -> new_esEs19(vyw590, vyw600, cd, ce) new_esEs24(Nothing, Nothing, ebd) -> True new_ltEs22(vyw114, vyw116, app(ty_Maybe, dcc)) -> new_ltEs12(vyw114, vyw116, dcc) new_esEs16(:(vyw300, vyw301), [], fbd) -> False new_esEs16([], :(vyw4000, vyw4001), fbd) -> False new_lt23(vyw101, vyw104, app(ty_[], fgc)) -> new_lt9(vyw101, vyw104, fgc) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_ltEs24(vyw102, vyw105, ty_Char) -> new_ltEs15(vyw102, vyw105) new_ltEs12(Just(vyw590), Just(vyw600), ty_Float) -> new_ltEs14(vyw590, vyw600) new_compare110(vyw143, vyw144, False, dge, dgf) -> GT new_ltEs23(vyw89, vyw90, ty_Bool) -> new_ltEs9(vyw89, vyw90) new_primEqNat0(Zero, Zero) -> True new_esEs37(vyw300, vyw4000, app(app(ty_@2, egd), ege)) -> new_esEs21(vyw300, vyw4000, egd, ege) new_ltEs23(vyw89, vyw90, app(ty_Maybe, ebb)) -> new_ltEs12(vyw89, vyw90, ebb) new_esEs36(vyw301, vyw4001, ty_Double) -> new_esEs15(vyw301, vyw4001) new_ltEs23(vyw89, vyw90, app(app(ty_Either, eae), eaf)) -> new_ltEs7(vyw89, vyw90, eae, eaf) new_esEs24(Nothing, Just(vyw4000), ebd) -> False new_esEs24(Just(vyw300), Nothing, ebd) -> False new_ltEs22(vyw114, vyw116, ty_Int) -> new_ltEs17(vyw114, vyw116) new_asAs(False, vyw131) -> False new_gt(vyw18, vyw13, ty_Ordering) -> new_esEs41(new_compare8(vyw18, vyw13)) new_lt23(vyw101, vyw104, app(ty_Ratio, fgg)) -> new_lt14(vyw101, vyw104, fgg) new_esEs4(vyw32, vyw402, ty_Int) -> new_esEs13(vyw32, vyw402) new_esEs19(Right(vyw300), Right(vyw4000), bcg, ty_Bool) -> new_esEs14(vyw300, vyw4000) new_esEs25(EQ, EQ) -> True new_ltEs20(vyw59, vyw60, app(app(app(ty_@3, bf), bg), bh)) -> new_ltEs4(vyw59, vyw60, bf, bg, bh) new_esEs34(vyw300, vyw4000, app(ty_[], dea)) -> new_esEs16(vyw300, vyw4000, dea) new_compare10(vyw180, vyw181, vyw182, vyw183, False, vyw185, bag, bah) -> new_compare11(vyw180, vyw181, vyw182, vyw183, vyw185, bag, bah) new_ltEs7(Right(vyw590), Right(vyw600), cad, ty_Int) -> new_ltEs17(vyw590, vyw600) new_esEs8(vyw30, vyw400, ty_Bool) -> new_esEs14(vyw30, vyw400) new_esEs11(vyw30, vyw400, app(ty_[], cdf)) -> new_esEs16(vyw30, vyw400, cdf) new_lt23(vyw101, vyw104, ty_Double) -> new_lt7(vyw101, vyw104) new_esEs39(vyw100, vyw103, ty_Int) -> new_esEs13(vyw100, vyw103) new_esEs6(vyw30, vyw400, app(ty_Ratio, cgb)) -> new_esEs23(vyw30, vyw400, cgb) new_esEs9(vyw31, vyw401, ty_Char) -> new_esEs20(vyw31, vyw401) new_ltEs11(EQ, LT) -> False The set Q consists of the following terms: new_esEs32(x0, x1, ty_Double) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_ltEs8(x0, x1, x2) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_primCompAux00(x0, EQ) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(x0, x1, app(app(ty_@2, x2), x3)) new_compare17(x0, x1, app(ty_Ratio, x2)) new_compare13(x0, x1, False, x2, x3) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs19(Left(x0), Left(x1), ty_Float, x2) new_esEs4(x0, x1, ty_Bool) new_esEs8(x0, x1, ty_Char) new_primPlusNat1(Zero, Zero) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs5(x0, x1, ty_@0) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_primCompAux0(x0, x1, x2, x3) new_esEs32(x0, x1, ty_Ordering) new_esEs10(x0, x1, ty_Int) new_esEs36(x0, x1, ty_Ordering) new_esEs24(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs7(x0, x1, app(ty_[], x2)) new_ltEs7(Right(x0), Right(x1), x2, ty_Char) new_lt22(x0, x1, app(ty_Ratio, x2)) new_esEs4(x0, x1, ty_@0) new_esEs5(x0, x1, ty_Bool) new_esEs26(x0, x1, ty_Double) new_primEqInt(Pos(Zero), Pos(Zero)) new_ltEs22(x0, x1, ty_Ordering) new_compare210(x0, x1, x2, x3, True, x4, x5) new_ltEs21(x0, x1, ty_Float) new_compare17(x0, x1, ty_Integer) new_esEs36(x0, x1, app(ty_[], x2)) new_compare17(x0, x1, ty_@0) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_esEs35(x0, x1, ty_Ordering) new_esEs4(x0, x1, ty_Integer) new_gt(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs9(x0, x1, ty_Int) new_ltEs22(x0, x1, ty_Double) new_esEs14(True, True) new_compare110(x0, x1, False, x2, x3) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs36(x0, x1, ty_Double) new_esEs9(x0, x1, ty_@0) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs25(LT, LT) new_esEs30(x0, x1, ty_Int) new_esEs32(x0, x1, ty_Char) new_esEs8(x0, x1, ty_Ordering) new_compare29(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare29(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs24(Just(x0), Just(x1), ty_Integer) new_ltEs9(True, True) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_esEs5(x0, x1, ty_Int) new_ltEs24(x0, x1, ty_Ordering) new_compare16(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_ltEs24(x0, x1, app(ty_[], x2)) new_lt24(x0, x1, ty_@0) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(x0, x1, ty_@0) new_esEs24(Just(x0), Just(x1), ty_@0) new_esEs35(x0, x1, app(ty_[], x2)) new_ltEs7(Right(x0), Right(x1), x2, ty_Double) new_esEs27(x0, x1, ty_Double) new_lt24(x0, x1, ty_Bool) new_gt(x0, x1, app(ty_Maybe, x2)) new_esEs6(x0, x1, ty_Bool) new_compare11(x0, x1, x2, x3, True, x4, x5) new_lt11(x0, x1, x2, x3) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs37(x0, x1, ty_Ordering) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs11(x0, x1, ty_Float) new_esEs26(x0, x1, ty_Char) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(x0, x1, x2) new_compare8(EQ, EQ) new_lt14(x0, x1, x2) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_lt5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs24(Just(x0), Just(x1), ty_Bool) new_lt4(x0, x1, ty_Float) new_compare12(x0, x1, False, x2) new_esEs25(LT, EQ) new_esEs25(EQ, LT) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_esEs35(x0, x1, ty_Char) new_esEs35(x0, x1, ty_Double) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(x0, x1, ty_Int) new_ltEs12(Just(x0), Just(x1), ty_Float) new_lt24(x0, x1, ty_Int) new_esEs19(Right(x0), Right(x1), x2, ty_Integer) new_esEs40(x0, x1, ty_Float) new_esEs10(x0, x1, ty_Integer) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs25(EQ, GT) new_esEs25(GT, EQ) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(x0, x1, ty_Bool) new_esEs38(x0, x1, ty_Double) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_gt(x0, x1, app(ty_Ratio, x2)) new_compare17(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs38(x0, x1, ty_Char) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_lt21(x0, x1, ty_Double) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_lt7(x0, x1) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_ltEs12(Just(x0), Just(x1), app(ty_[], x2)) new_esEs7(x0, x1, ty_Integer) new_ltEs11(GT, GT) new_esEs39(x0, x1, ty_Ordering) new_lt12(x0, x1) new_asAs(True, x0) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs19(Left(x0), Left(x1), ty_Bool, x2) new_esEs27(x0, x1, ty_Char) new_esEs4(x0, x1, ty_Int) new_esEs38(x0, x1, app(ty_[], x2)) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs19(Left(x0), Left(x1), ty_Integer, x2) new_primMulInt(Pos(x0), Pos(x1)) new_esEs11(x0, x1, ty_Integer) new_sr(x0, x1) new_esEs30(x0, x1, ty_Integer) new_esEs6(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs9(x0, x1, ty_Integer) new_lt23(x0, x1, ty_Double) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs19(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs21(x0, x1, ty_@0) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs39(x0, x1, ty_Double) new_esEs4(x0, x1, ty_Float) new_esEs40(x0, x1, ty_Bool) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare26(x0, x1, False, x2) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_ltEs12(Just(x0), Just(x1), ty_Double) new_esEs19(Right(x0), Right(x1), x2, ty_Bool) new_esEs10(x0, x1, ty_Bool) new_esEs18(Integer(x0), Integer(x1)) new_esEs27(x0, x1, ty_Float) new_ltEs16(x0, x1) new_ltEs12(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_primMulInt(Neg(x0), Neg(x1)) new_esEs37(x0, x1, ty_Float) new_esEs31(x0, x1, ty_Int) new_ltEs7(Right(x0), Right(x1), x2, ty_Ordering) new_lt5(x0, x1, app(ty_Ratio, x2)) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs19(Right(x0), Right(x1), x2, ty_Float) new_esEs11(x0, x1, ty_Bool) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_esEs7(x0, x1, ty_@0) new_ltEs12(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Double) new_esEs32(x0, x1, app(ty_[], x2)) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, ty_@0) new_ltEs19(x0, x1, app(ty_[], x2)) new_compare211(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs8(x0, x1, ty_Double) new_esEs19(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Double) new_lt5(x0, x1, ty_Int) new_esEs40(x0, x1, ty_Ordering) new_esEs19(Right(x0), Right(x1), x2, ty_Int) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs34(x0, x1, ty_Double) new_primCompAux00(x0, LT) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_Char) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt4(x0, x1, ty_Integer) new_esEs26(x0, x1, ty_Ordering) new_pePe(False, x0) new_lt4(x0, x1, ty_Ordering) new_ltEs5(x0, x1, app(ty_Ratio, x2)) new_esEs19(Left(x0), Left(x1), ty_Ordering, x2) new_esEs40(x0, x1, ty_Integer) new_lt23(x0, x1, ty_@0) new_ltEs5(x0, x1, ty_Ordering) new_esEs11(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, ty_Float) new_esEs40(x0, x1, app(ty_[], x2)) new_esEs37(x0, x1, ty_Char) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(Left(x0), Left(x1), ty_Char, x2) new_lt5(x0, x1, ty_Bool) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_lt22(x0, x1, ty_Char) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare10(x0, x1, x2, x3, False, x4, x5, x6) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_compare7(Nothing, Nothing, x0) new_lt21(x0, x1, ty_Bool) new_esEs20(Char(x0), Char(x1)) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt5(x0, x1, ty_@0) new_ltEs19(x0, x1, ty_Bool) new_compare3([], [], x0) new_esEs16(:(x0, x1), :(x2, x3), x4) new_esEs39(x0, x1, ty_Bool) new_lt4(x0, x1, app(app(ty_Either, x2), x3)) new_esEs19(Left(x0), Left(x1), ty_Double, x2) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_esEs34(x0, x1, app(ty_[], x2)) new_esEs39(x0, x1, ty_Integer) new_lt8(x0, x1, x2, x3) new_ltEs19(x0, x1, ty_@0) new_compare30(Char(x0), Char(x1)) new_lt21(x0, x1, ty_@0) new_compare27(True, True) new_lt20(x0, x1, ty_@0) new_esEs24(Just(x0), Just(x1), app(ty_[], x2)) new_compare12(x0, x1, True, x2) new_ltEs21(x0, x1, ty_Char) new_lt23(x0, x1, ty_Bool) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_esEs37(x0, x1, ty_Integer) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_esEs17(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_lt21(x0, x1, ty_Integer) new_compare25(x0, x1, True, x2, x3) new_esEs8(x0, x1, ty_Float) new_esEs33(x0, x1, ty_Int) new_esEs35(x0, x1, app(ty_Maybe, x2)) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Integer) new_ltEs12(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_compare6(Left(x0), Left(x1), x2, x3) new_ltEs21(x0, x1, ty_Int) new_compare8(LT, LT) new_lt20(x0, x1, app(ty_[], x2)) new_compare15(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_esEs33(x0, x1, ty_Char) new_ltEs7(Left(x0), Left(x1), ty_Int, x2) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_gt(x0, x1, app(app(ty_@2, x2), x3)) new_esEs11(x0, x1, ty_@0) new_esEs25(EQ, EQ) new_not(True) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_pePe(True, x0) new_gt(x0, x1, ty_Int) new_lt24(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs7(Left(x0), Left(x1), ty_Double, x2) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_esEs40(x0, x1, ty_@0) new_lt23(x0, x1, ty_Integer) new_esEs34(x0, x1, ty_Ordering) new_lt19(x0, x1) new_ltEs12(Just(x0), Nothing, x1) new_esEs8(x0, x1, app(ty_[], x2)) new_compare211(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs26(x0, x1, app(ty_[], x2)) new_gt(x0, x1, ty_Char) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_lt24(x0, x1, ty_Float) new_ltEs7(Left(x0), Left(x1), ty_Bool, x2) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_esEs25(LT, GT) new_esEs25(GT, LT) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_lt21(x0, x1, app(ty_[], x2)) new_esEs6(x0, x1, ty_Float) new_lt21(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, ty_Ordering) new_lt4(x0, x1, ty_@0) new_lt5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs19(Left(x0), Left(x1), ty_Char, x2) new_ltEs19(x0, x1, ty_Float) new_esEs19(Left(x0), Left(x1), ty_Int, x2) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_lt22(x0, x1, ty_Int) new_compare19(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs36(x0, x1, ty_Integer) new_lt22(x0, x1, app(ty_Maybe, x2)) new_ltEs5(x0, x1, app(app(ty_Either, x2), x3)) new_lt4(x0, x1, app(ty_Ratio, x2)) new_lt5(x0, x1, ty_Integer) new_compare17(x0, x1, app(app(ty_Either, x2), x3)) new_compare28(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs26(x0, x1, ty_@0) new_lt22(x0, x1, ty_@0) new_esEs29(EQ) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat0(Zero, x0) new_compare17(x0, x1, ty_Ordering) new_esEs32(x0, x1, ty_@0) new_compare10(x0, x1, x2, x3, True, x4, x5, x6) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_lt21(x0, x1, ty_Float) new_lt22(x0, x1, ty_Integer) new_esEs8(x0, x1, ty_Integer) new_esEs24(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, ty_@0) new_ltEs21(x0, x1, ty_Integer) new_esEs39(x0, x1, ty_Float) new_esEs40(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, ty_Int) new_ltEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, ty_Int) new_compare6(Right(x0), Right(x1), x2, x3) new_lt24(x0, x1, ty_Integer) new_ltEs12(Just(x0), Just(x1), ty_Ordering) new_ltEs20(x0, x1, ty_Ordering) new_lt24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs27(x0, x1, ty_Ordering) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_esEs39(x0, x1, ty_Char) new_esEs5(x0, x1, ty_Ordering) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_lt4(x0, x1, app(ty_[], x2)) new_lt16(x0, x1) new_esEs36(x0, x1, ty_Bool) new_ltEs23(x0, x1, app(ty_[], x2)) new_lt22(x0, x1, ty_Bool) new_esEs39(x0, x1, ty_Int) new_lt20(x0, x1, ty_Float) new_ltEs19(x0, x1, ty_Char) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_gt(x0, x1, ty_Bool) new_esEs39(x0, x1, app(ty_[], x2)) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_primEqNat0(Zero, Zero) new_esEs10(x0, x1, ty_Double) new_gt(x0, x1, ty_Integer) new_esEs36(x0, x1, ty_Char) new_esEs38(x0, x1, ty_Ordering) new_ltEs9(False, False) new_not(False) new_lt20(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs9(x0, x1, ty_Float) new_ltEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_lt23(x0, x1, ty_Int) new_esEs16(:(x0, x1), [], x2) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs36(x0, x1, ty_Int) new_ltEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_ltEs7(Left(x0), Left(x1), ty_Float, x2) new_esEs24(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs37(x0, x1, ty_@0) new_esEs19(Right(x0), Right(x1), x2, ty_Double) new_lt23(x0, x1, ty_Char) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_compare3([], :(x0, x1), x2) new_lt24(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Char) new_esEs8(x0, x1, ty_Bool) new_lt23(x0, x1, ty_Float) new_ltEs19(x0, x1, ty_Integer) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_compare15(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_compare27(False, True) new_ltEs21(x0, x1, ty_Bool) new_compare27(True, False) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_esEs41(LT) new_lt21(x0, x1, ty_Int) new_lt20(x0, x1, ty_Bool) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24(Nothing, Just(x0), x1) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs11(EQ, GT) new_ltEs11(GT, EQ) new_compare110(x0, x1, True, x2, x3) new_esEs28(x0, x1, ty_@0) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs36(x0, x1, ty_Float) new_ltEs18(x0, x1) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_compare24(x0, x1, True, x2, x3) new_compare25(x0, x1, False, x2, x3) new_primMulNat0(Succ(x0), Zero) new_ltEs23(x0, x1, ty_Ordering) new_ltEs22(x0, x1, app(ty_[], x2)) new_ltEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_lt23(x0, x1, app(ty_Ratio, x2)) new_lt21(x0, x1, ty_Char) new_esEs35(x0, x1, ty_Int) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_esEs8(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Char) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_compare8(LT, GT) new_compare8(GT, LT) new_ltEs7(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs33(x0, x1, ty_Float) new_lt24(x0, x1, ty_Char) new_esEs40(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, ty_Char) new_ltEs5(x0, x1, app(ty_[], x2)) new_ltEs5(x0, x1, ty_Float) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_esEs9(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Integer) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs19(Right(x0), Right(x1), x2, ty_Char) new_esEs4(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, ty_Bool) new_ltEs6(x0, x1) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, ty_Int) new_esEs24(Just(x0), Nothing, x1) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(x0, x1, ty_Char) new_compare27(False, False) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_esEs19(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_primCmpNat0(Succ(x0), Zero) new_asAs(False, x0) new_ltEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs29(GT) new_esEs24(Just(x0), Just(x1), app(ty_Ratio, x2)) new_primMulNat0(Succ(x0), Succ(x1)) new_ltEs7(Right(x0), Right(x1), x2, ty_Bool) new_lt24(x0, x1, ty_Double) new_lt22(x0, x1, ty_Float) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_lt4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs22(x0, x1, ty_Int) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_ltEs14(x0, x1) new_esEs10(x0, x1, ty_Ordering) new_esEs6(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Int) new_esEs14(False, True) new_esEs14(True, False) new_compare26(x0, x1, True, x2) new_esEs35(x0, x1, ty_@0) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs9(x0, x1, ty_Double) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs19(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs34(x0, x1, ty_Integer) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_compare29(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_esEs35(x0, x1, ty_Bool) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_esEs25(GT, GT) new_lt22(x0, x1, app(ty_[], x2)) new_ltEs7(Right(x0), Right(x1), x2, ty_Int) new_gt(x0, x1, ty_Float) new_esEs33(x0, x1, ty_Integer) new_esEs22(@0, @0) new_lt13(x0, x1, x2) new_esEs38(x0, x1, ty_Int) new_esEs19(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs19(Right(x0), Right(x1), x2, ty_Ordering) new_gt(x0, x1, ty_@0) new_gt(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, app(ty_[], x2)) new_ltEs7(Right(x0), Right(x1), x2, ty_@0) new_compare8(EQ, GT) new_compare8(GT, EQ) new_esEs19(Left(x0), Right(x1), x2, x3) new_esEs19(Right(x0), Left(x1), x2, x3) new_ltEs11(LT, EQ) new_ltEs11(EQ, LT) new_primEqNat0(Succ(x0), Zero) new_esEs33(x0, x1, ty_Bool) new_primPlusNat1(Zero, Succ(x0)) new_lt5(x0, x1, ty_Float) new_esEs36(x0, x1, ty_@0) new_sr0(Integer(x0), Integer(x1)) new_ltEs5(x0, x1, ty_@0) new_esEs41(GT) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, ty_Float) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_compare7(Just(x0), Nothing, x1) new_ltEs5(x0, x1, ty_Bool) new_compare17(x0, x1, ty_Double) new_ltEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_ltEs22(x0, x1, ty_@0) new_esEs27(x0, x1, ty_Int) new_ltEs23(x0, x1, ty_Double) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs32(x0, x1, ty_Bool) new_esEs4(x0, x1, ty_Ordering) new_ltEs7(Left(x0), Left(x1), ty_Integer, x2) new_lt24(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_compare210(x0, x1, x2, x3, False, x4, x5) new_esEs24(Just(x0), Just(x1), ty_Ordering) new_primPlusNat1(Succ(x0), Zero) new_lt17(x0, x1) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_lt6(x0, x1, x2, x3, x4) new_esEs26(x0, x1, ty_Bool) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, ty_Double) new_compare19(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare19(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_ltEs24(x0, x1, ty_@0) new_esEs8(x0, x1, ty_@0) new_ltEs19(x0, x1, ty_Double) new_compare11(x0, x1, x2, x3, False, x4, x5) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare24(x0, x1, False, x2, x3) new_primCmpInt(Neg(Zero), Neg(Zero)) new_ltEs7(Left(x0), Left(x1), ty_@0, x2) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_ltEs15(x0, x1) new_ltEs9(False, True) new_ltEs9(True, False) new_esEs9(x0, x1, ty_Ordering) new_esEs37(x0, x1, ty_Bool) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_lt5(x0, x1, app(ty_Maybe, x2)) new_ltEs10(@2(x0, x1), @2(x2, x3), x4, x5) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs26(x0, x1, ty_Integer) new_compare31(x0, x1) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_lt24(x0, x1, app(ty_Ratio, x2)) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_Integer) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_esEs16([], :(x0, x1), x2) new_fsEs(x0) new_lt5(x0, x1, ty_Char) new_ltEs5(x0, x1, ty_Integer) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_lt5(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, ty_Float) new_ltEs5(x0, x1, app(ty_Maybe, x2)) new_ltEs7(Right(x0), Right(x1), x2, ty_Integer) new_esEs37(x0, x1, ty_Int) new_compare18(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs4(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Double) new_ltEs11(EQ, EQ) new_esEs6(x0, x1, ty_Ordering) new_esEs5(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs34(x0, x1, ty_@0) new_ltEs12(Just(x0), Just(x1), app(ty_Maybe, x2)) new_compare14(Integer(x0), Integer(x1)) new_esEs33(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, app(ty_[], x2)) new_lt18(x0, x1) new_esEs28(x0, x1, ty_Int) new_ltEs23(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Integer) new_ltEs21(x0, x1, app(ty_[], x2)) new_esEs21(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs33(x0, x1, ty_Ordering) new_esEs32(x0, x1, ty_Float) new_esEs40(x0, x1, ty_Char) new_ltEs12(Just(x0), Just(x1), ty_@0) new_ltEs20(x0, x1, ty_Integer) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11(x0, x1, ty_Char) new_primMulNat0(Zero, Succ(x0)) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_esEs19(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_primMulNat0(Zero, Zero) new_compare17(x0, x1, app(app(ty_@2, x2), x3)) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs22(x0, x1, ty_Float) new_gt(x0, x1, ty_Double) new_ltEs5(x0, x1, ty_Double) new_esEs40(x0, x1, ty_Int) new_esEs7(x0, x1, ty_Int) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_ltEs7(Left(x0), Right(x1), x2, x3) new_ltEs7(Right(x0), Left(x1), x2, x3) new_ltEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs11(LT, LT) new_ltEs21(x0, x1, ty_Double) new_ltEs24(x0, x1, ty_Integer) new_lt20(x0, x1, app(ty_Maybe, x2)) new_lt5(x0, x1, app(app(ty_@2, x2), x3)) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_lt21(x0, x1, app(ty_Maybe, x2)) new_esEs40(x0, x1, app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, ty_@0) new_ltEs12(Just(x0), Just(x1), ty_Bool) new_esEs38(x0, x1, ty_Integer) new_esEs29(LT) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, ty_Char) new_esEs6(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, ty_Ordering) new_ltEs7(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs21(x0, x1, ty_Ordering) new_ltEs24(x0, x1, ty_Float) new_esEs7(x0, x1, ty_Double) new_lt4(x0, x1, ty_Bool) new_esEs33(x0, x1, ty_Double) new_esEs35(x0, x1, ty_Float) new_esEs11(x0, x1, ty_Int) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_ltEs5(x0, x1, ty_Char) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, ty_Bool) new_esEs31(x0, x1, ty_Integer) new_ltEs12(Just(x0), Just(x1), ty_Char) new_compare8(GT, GT) new_lt4(x0, x1, ty_Int) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_esEs40(x0, x1, ty_Double) new_esEs38(x0, x1, ty_Float) new_ltEs7(Right(x0), Right(x1), x2, ty_Float) new_esEs27(x0, x1, ty_@0) new_compare8(LT, EQ) new_compare8(EQ, LT) new_esEs19(Right(x0), Right(x1), x2, app(ty_[], x3)) new_compare6(Left(x0), Right(x1), x2, x3) new_compare6(Right(x0), Left(x1), x2, x3) new_ltEs17(x0, x1) new_compare7(Nothing, Just(x0), x1) new_esEs38(x0, x1, ty_@0) new_ltEs12(Just(x0), Just(x1), ty_Int) new_ltEs23(x0, x1, ty_Char) new_ltEs12(Nothing, Nothing, x0) new_lt4(x0, x1, ty_Char) new_esEs19(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_lt22(x0, x1, ty_Double) new_esEs24(Nothing, Nothing, x0) new_lt24(x0, x1, app(ty_Maybe, x2)) new_ltEs23(x0, x1, ty_Int) new_primPlusNat0(Succ(x0), x1) new_esEs28(x0, x1, ty_Ordering) new_esEs5(x0, x1, ty_Float) new_esEs19(Left(x0), Left(x1), ty_@0, x2) new_lt4(x0, x1, app(ty_Maybe, x2)) new_esEs24(Just(x0), Just(x1), ty_Double) new_esEs26(x0, x1, ty_Float) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, ty_@0) new_esEs12(Float(x0, x1), Float(x2, x3)) new_ltEs5(x0, x1, ty_Int) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_lt23(x0, x1, ty_Ordering) new_esEs27(x0, x1, ty_Bool) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpNat0(Zero, Succ(x0)) new_esEs19(Left(x0), Left(x1), app(ty_[], x2), x3) new_lt4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs37(x0, x1, app(ty_[], x2)) new_lt10(x0, x1) new_lt23(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt5(x0, x1, ty_Ordering) new_lt5(x0, x1, ty_Double) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, ty_Int) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_esEs24(Just(x0), Just(x1), ty_Char) new_lt21(x0, x1, ty_Ordering) new_lt20(x0, x1, ty_Ordering) new_compare17(x0, x1, ty_Int) new_ltEs4(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs24(x0, x1, ty_Char) new_esEs15(Double(x0, x1), Double(x2, x3)) new_compare13(x0, x1, True, x2, x3) new_esEs24(Just(x0), Just(x1), ty_Int) new_ltEs19(x0, x1, ty_Ordering) new_ltEs22(x0, x1, ty_Bool) new_gt(x0, x1, app(app(ty_Either, x2), x3)) new_compare9(:%(x0, x1), :%(x2, x3), ty_Integer) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_ltEs20(x0, x1, ty_Float) new_lt4(x0, x1, ty_Double) new_ltEs12(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs40(x0, x1, app(ty_Ratio, x2)) new_esEs40(x0, x1, app(ty_Maybe, x2)) new_compare19(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs19(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs23(:%(x0, x1), :%(x2, x3), x4) new_esEs7(x0, x1, ty_Bool) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Int) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_compare17(x0, x1, ty_Float) new_esEs24(Just(x0), Just(x1), ty_Float) new_primEqNat0(Zero, Succ(x0)) new_ltEs22(x0, x1, ty_Char) new_esEs41(EQ) new_esEs19(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_lt9(x0, x1, x2) new_esEs19(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs35(x0, x1, ty_Integer) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_esEs19(Right(x0), Right(x1), x2, ty_@0) new_compare17(x0, x1, app(ty_[], x2)) new_ltEs22(x0, x1, ty_Integer) new_ltEs12(Just(x0), Just(x1), ty_Integer) new_compare17(x0, x1, app(ty_Maybe, x2)) new_esEs5(x0, x1, ty_Integer) new_esEs11(x0, x1, ty_Double) new_ltEs11(GT, LT) new_ltEs11(LT, GT) new_esEs10(x0, x1, ty_@0) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs34(x0, x1, ty_Bool) new_ltEs12(Nothing, Just(x0), x1) new_esEs16([], [], x0) new_esEs13(x0, x1) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_compare17(x0, x1, ty_Char) new_esEs14(False, False) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_primCompAux00(x0, GT) new_compare3(:(x0, x1), :(x2, x3), x4) new_esEs34(x0, x1, ty_Float) new_compare16(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_gt(x0, x1, ty_Ordering) new_esEs34(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Bool) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs23(x0, x1, ty_Integer) new_lt15(x0, x1) new_esEs28(x0, x1, ty_Double) new_compare29(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_esEs34(x0, x1, ty_Int) new_compare7(Just(x0), Just(x1), x2) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, ty_Float) new_lt23(x0, x1, app(ty_[], x2)) new_lt24(x0, x1, ty_Ordering) new_ltEs20(x0, x1, ty_Char) new_compare3(:(x0, x1), [], x2) new_esEs4(x0, x1, ty_Double) new_ltEs24(x0, x1, ty_Bool) new_compare32(@0, @0) new_esEs37(x0, x1, ty_Double) new_primCmpNat0(Zero, Zero) new_compare9(:%(x0, x1), :%(x2, x3), ty_Int) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_lt22(x0, x1, ty_Ordering) new_compare17(x0, x1, ty_Bool) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs24(Just(x0), Just(x1), app(ty_Maybe, x2)) new_ltEs21(x0, x1, app(ty_Maybe, x2)) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (24) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_elemFM01(Branch(vyw40, vyw41, vyw42, vyw43, vyw44), vyw3, bd, be) -> new_elemFM0(vyw40, vyw41, vyw42, vyw43, vyw44, vyw3, new_lt24(vyw3, vyw40, be), bd, be) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 2 >= 6, 3 >= 8, 4 >= 9 *new_elemFM0(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, True, h, ba) -> new_elemFM01(vyw16, vyw18, h, ba) The graph contains the following edges 4 >= 1, 6 >= 2, 8 >= 3, 9 >= 4 *new_elemFM0(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, False, h, ba) -> new_elemFM00(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, new_gt(vyw18, vyw13, ba), h, ba) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 8 >= 8, 9 >= 9 *new_elemFM00(vyw28, vyw29, vyw30, vyw31, vyw32, vyw33, True, bb, bc) -> new_elemFM01(vyw32, vyw33, bb, bc) The graph contains the following edges 5 >= 1, 6 >= 2, 8 >= 3, 9 >= 4 ---------------------------------------- (25) YES ---------------------------------------- (26) Obligation: Q DP problem: The TRS P consists of the following rules: new_primMulNat(Succ(vyw40000), Succ(vyw3100)) -> new_primMulNat(vyw40000, Succ(vyw3100)) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (27) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_primMulNat(Succ(vyw40000), Succ(vyw3100)) -> new_primMulNat(vyw40000, Succ(vyw3100)) The graph contains the following edges 1 > 1, 2 >= 2 ---------------------------------------- (28) YES ---------------------------------------- (29) Obligation: Q DP problem: The TRS P consists of the following rules: new_ltEs1(vyw59, vyw60, bdh) -> new_compare1(vyw59, vyw60, bdh) new_lt2(@2(vyw30, vyw31), @2(vyw400, vyw401), cah, cba) -> new_compare22(vyw30, vyw31, vyw400, vyw401, new_asAs(new_esEs10(vyw30, vyw400, cah), new_esEs9(vyw31, vyw401, cba)), cah, cba) new_compare2(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, cc, bc, app(ty_[], ec)) -> new_ltEs1(vyw102, vyw105, ec) new_compare20(Right(vyw590), Right(vyw600), False, app(app(ty_Either, bcf), app(app(app(ty_@3, bcg), bch), bda)), gb) -> new_ltEs(vyw590, vyw600, bcg, bch, bda) new_compare22(vyw113, vyw114, vyw115, vyw116, False, app(app(app(ty_@3, cbb), cbc), cbd), cbe) -> new_lt(vyw113, vyw115, cbb, cbc, cbd) new_compare20(@2(vyw590, vyw591), @2(vyw600, vyw601), False, app(app(ty_@2, app(app(ty_Either, bee), bef)), bed), gb) -> new_lt0(vyw590, vyw600, bee, bef) new_ltEs(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), app(ty_[], ge), fh, ga) -> new_lt1(vyw590, vyw600, ge) new_compare2(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, cc, bc, app(ty_Maybe, ef)) -> new_ltEs3(vyw102, vyw105, ef) new_ltEs3(Just(vyw590), Just(vyw600), app(app(ty_@2, bhc), bhd)) -> new_ltEs2(vyw590, vyw600, bhc, bhd) new_compare2(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, cc, app(ty_[], db), bd) -> new_lt1(vyw101, vyw104, db) new_compare20(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), False, app(app(app(ty_@3, ha), app(app(ty_Either, he), hf)), ga), gb) -> new_lt0(vyw591, vyw601, he, hf) new_compare20(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), False, app(app(app(ty_@3, ha), fh), app(app(ty_Either, baf), bag)), gb) -> new_ltEs0(vyw592, vyw602, baf, bag) new_compare20(@2(vyw590, vyw591), @2(vyw600, vyw601), False, app(app(ty_@2, bfc), app(app(app(ty_@3, bfd), bfe), bff)), gb) -> new_ltEs(vyw591, vyw601, bfd, bfe, bff) new_compare20(Just(vyw590), Just(vyw600), False, app(ty_Maybe, app(app(app(ty_@3, bge), bgf), bgg)), gb) -> new_ltEs(vyw590, vyw600, bge, bgf, bgg) new_compare20(Just(vyw590), Just(vyw600), False, app(ty_Maybe, app(ty_[], bhb)), gb) -> new_ltEs1(vyw590, vyw600, bhb) new_compare20(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), False, app(app(app(ty_@3, app(app(app(ty_@3, fd), ff), fg)), fh), ga), gb) -> new_lt(vyw590, vyw600, fd, ff, fg) new_compare2(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, cc, app(ty_Maybe, de), bd) -> new_lt3(vyw101, vyw104, de) new_compare21(vyw66, vyw67, False, ceh, app(ty_[], cff)) -> new_ltEs1(vyw66, vyw67, cff) new_ltEs(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), app(app(ty_@2, gf), gg), fh, ga) -> new_lt2(vyw590, vyw600, gf, gg) new_compare23(vyw89, vyw90, False, app(app(ty_Either, ceb), cec)) -> new_ltEs0(vyw89, vyw90, ceb, cec) new_compare20(@2(vyw590, vyw591), @2(vyw600, vyw601), False, app(app(ty_@2, bfc), app(ty_Maybe, bgd)), gb) -> new_ltEs3(vyw591, vyw601, bgd) new_compare21(vyw66, vyw67, False, ceh, app(ty_Maybe, cga)) -> new_ltEs3(vyw66, vyw67, cga) new_ltEs2(@2(vyw590, vyw591), @2(vyw600, vyw601), bfc, app(ty_[], bga)) -> new_ltEs1(vyw591, vyw601, bga) new_compare20(Left(vyw590), Left(vyw600), False, app(app(ty_Either, app(app(ty_Either, bbh), bca)), bbg), gb) -> new_ltEs0(vyw590, vyw600, bbh, bca) new_compare20(Right(vyw590), Right(vyw600), False, app(app(ty_Either, bcf), app(app(ty_Either, bdb), bdc)), gb) -> new_ltEs0(vyw590, vyw600, bdb, bdc) new_lt1(:(vyw30, vyw31), :(vyw400, vyw401), bhf) -> new_primCompAux(vyw30, vyw400, new_compare3(vyw31, vyw401, bhf), bhf) new_compare20(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), False, app(app(app(ty_@3, app(ty_[], ge)), fh), ga), gb) -> new_lt1(vyw590, vyw600, ge) new_ltEs0(Right(vyw590), Right(vyw600), bcf, app(app(app(ty_@3, bcg), bch), bda)) -> new_ltEs(vyw590, vyw600, bcg, bch, bda) new_ltEs3(Just(vyw590), Just(vyw600), app(app(ty_Either, bgh), bha)) -> new_ltEs0(vyw590, vyw600, bgh, bha) new_compare23(vyw89, vyw90, False, app(ty_Maybe, ceg)) -> new_ltEs3(vyw89, vyw90, ceg) new_compare22(vyw113, vyw114, vyw115, vyw116, False, app(app(ty_@2, cca), ccb), cbe) -> new_lt2(vyw113, vyw115, cca, ccb) new_compare22(vyw113, vyw114, vyw115, vyw116, False, app(app(ty_Either, cbf), cbg), cbe) -> new_lt0(vyw113, vyw115, cbf, cbg) new_compare1(:(vyw30, vyw31), :(vyw400, vyw401), bhf) -> new_compare1(vyw31, vyw401, bhf) new_ltEs2(@2(vyw590, vyw591), @2(vyw600, vyw601), bfc, app(ty_Maybe, bgd)) -> new_ltEs3(vyw591, vyw601, bgd) new_compare0(Left(vyw30), Left(vyw400), fb, fc) -> new_compare20(vyw30, vyw400, new_esEs7(vyw30, vyw400, fb), fb, fc) new_compare2(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, app(app(ty_@2, bh), ca), bc, bd) -> new_lt2(vyw100, vyw103, bh, ca) new_compare20(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), False, app(app(app(ty_@3, app(app(ty_@2, gf), gg)), fh), ga), gb) -> new_lt2(vyw590, vyw600, gf, gg) new_ltEs2(@2(vyw590, vyw591), @2(vyw600, vyw601), bfc, app(app(ty_Either, bfg), bfh)) -> new_ltEs0(vyw591, vyw601, bfg, bfh) new_lt(@3(vyw30, vyw31, vyw32), @3(vyw400, vyw401, vyw402), eg, eh, fa) -> new_compare2(vyw30, vyw31, vyw32, vyw400, vyw401, vyw402, new_asAs(new_esEs6(vyw30, vyw400, eg), new_asAs(new_esEs5(vyw31, vyw401, eh), new_esEs4(vyw32, vyw402, fa))), eg, eh, fa) new_ltEs(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), ha, fh, app(app(app(ty_@3, bac), bad), bae)) -> new_ltEs(vyw592, vyw602, bac, bad, bae) new_compare23(vyw89, vyw90, False, app(app(app(ty_@3, cdg), cdh), cea)) -> new_ltEs(vyw89, vyw90, cdg, cdh, cea) new_compare1(:(vyw30, vyw31), :(vyw400, vyw401), bhf) -> new_primCompAux(vyw30, vyw400, new_compare3(vyw31, vyw401, bhf), bhf) new_ltEs2(@2(vyw590, vyw591), @2(vyw600, vyw601), app(ty_Maybe, bfb), bed) -> new_lt3(vyw590, vyw600, bfb) new_compare2(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, app(ty_Maybe, cb), bc, bd) -> new_lt3(vyw100, vyw103, cb) new_ltEs3(Just(vyw590), Just(vyw600), app(ty_[], bhb)) -> new_ltEs1(vyw590, vyw600, bhb) new_compare20(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), False, app(app(app(ty_@3, ha), fh), app(app(ty_@2, bba), bbb)), gb) -> new_ltEs2(vyw592, vyw602, bba, bbb) new_compare20(@2(vyw590, vyw591), @2(vyw600, vyw601), False, app(app(ty_@2, app(app(app(ty_@3, bea), beb), bec)), bed), gb) -> new_lt(vyw590, vyw600, bea, beb, bec) new_ltEs(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), app(app(ty_Either, gc), gd), fh, ga) -> new_lt0(vyw590, vyw600, gc, gd) new_compare2(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, app(app(app(ty_@3, h), ba), bb), bc, bd) -> new_lt(vyw100, vyw103, h, ba, bb) new_lt1(:(vyw30, vyw31), :(vyw400, vyw401), bhf) -> new_compare1(vyw31, vyw401, bhf) new_lt0(Right(vyw30), Right(vyw400), fb, fc) -> new_compare21(vyw30, vyw400, new_esEs8(vyw30, vyw400, fc), fb, fc) new_compare20(@2(vyw590, vyw591), @2(vyw600, vyw601), False, app(app(ty_@2, app(ty_Maybe, bfb)), bed), gb) -> new_lt3(vyw590, vyw600, bfb) new_ltEs(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), app(ty_Maybe, gh), fh, ga) -> new_lt3(vyw590, vyw600, gh) new_ltEs(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), ha, app(app(ty_@2, hh), baa), ga) -> new_lt2(vyw591, vyw601, hh, baa) new_ltEs2(@2(vyw590, vyw591), @2(vyw600, vyw601), app(ty_[], beg), bed) -> new_lt1(vyw590, vyw600, beg) new_compare23(vyw89, vyw90, False, app(ty_[], ced)) -> new_ltEs1(vyw89, vyw90, ced) new_compare2(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, app(ty_[], bg), bc, bd) -> new_lt1(vyw100, vyw103, bg) new_compare20(Right(vyw590), Right(vyw600), False, app(app(ty_Either, bcf), app(ty_[], bdd)), gb) -> new_ltEs1(vyw590, vyw600, bdd) new_compare20(Just(vyw590), Just(vyw600), False, app(ty_Maybe, app(ty_Maybe, bhe)), gb) -> new_ltEs3(vyw590, vyw600, bhe) new_ltEs3(Just(vyw590), Just(vyw600), app(app(app(ty_@3, bge), bgf), bgg)) -> new_ltEs(vyw590, vyw600, bge, bgf, bgg) new_compare21(vyw66, vyw67, False, ceh, app(app(ty_@2, cfg), cfh)) -> new_ltEs2(vyw66, vyw67, cfg, cfh) new_compare20(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), False, app(app(app(ty_@3, ha), app(ty_[], hg)), ga), gb) -> new_lt1(vyw591, vyw601, hg) new_primCompAux(vyw30, vyw400, vyw39, app(ty_Maybe, cag)) -> new_compare5(vyw30, vyw400, cag) new_compare20(@2(vyw590, vyw591), @2(vyw600, vyw601), False, app(app(ty_@2, bfc), app(app(ty_@2, bgb), bgc)), gb) -> new_ltEs2(vyw591, vyw601, bgb, bgc) new_ltEs0(Left(vyw590), Left(vyw600), app(ty_Maybe, bce), bbg) -> new_ltEs3(vyw590, vyw600, bce) new_ltEs2(@2(vyw590, vyw591), @2(vyw600, vyw601), app(app(ty_Either, bee), bef), bed) -> new_lt0(vyw590, vyw600, bee, bef) new_compare20(Left(vyw590), Left(vyw600), False, app(app(ty_Either, app(ty_Maybe, bce)), bbg), gb) -> new_ltEs3(vyw590, vyw600, bce) new_compare20(Left(vyw590), Left(vyw600), False, app(app(ty_Either, app(app(ty_@2, bcc), bcd)), bbg), gb) -> new_ltEs2(vyw590, vyw600, bcc, bcd) new_compare22(vyw113, vyw114, vyw115, vyw116, False, app(ty_[], cbh), cbe) -> new_lt1(vyw113, vyw115, cbh) new_compare22(vyw113, vyw114, vyw115, vyw116, False, ccd, app(ty_Maybe, cde)) -> new_ltEs3(vyw114, vyw116, cde) new_ltEs(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), ha, app(ty_Maybe, bab), ga) -> new_lt3(vyw591, vyw601, bab) new_compare2(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, cc, bc, app(app(ty_Either, ea), eb)) -> new_ltEs0(vyw102, vyw105, ea, eb) new_compare5(Just(vyw30), Just(vyw400), cdf) -> new_compare23(vyw30, vyw400, new_esEs11(vyw30, vyw400, cdf), cdf) new_compare22(vyw113, vyw114, vyw115, vyw116, False, ccd, app(app(app(ty_@3, cce), ccf), ccg)) -> new_ltEs(vyw114, vyw116, cce, ccf, ccg) new_compare2(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, cc, bc, app(app(app(ty_@3, df), dg), dh)) -> new_ltEs(vyw102, vyw105, df, dg, dh) new_compare2(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, cc, bc, app(app(ty_@2, ed), ee)) -> new_ltEs2(vyw102, vyw105, ed, ee) new_compare0(Right(vyw30), Right(vyw400), fb, fc) -> new_compare21(vyw30, vyw400, new_esEs8(vyw30, vyw400, fc), fb, fc) new_ltEs3(Just(vyw590), Just(vyw600), app(ty_Maybe, bhe)) -> new_ltEs3(vyw590, vyw600, bhe) new_compare20(@2(vyw590, vyw591), @2(vyw600, vyw601), False, app(app(ty_@2, app(ty_[], beg)), bed), gb) -> new_lt1(vyw590, vyw600, beg) new_ltEs0(Left(vyw590), Left(vyw600), app(ty_[], bcb), bbg) -> new_ltEs1(vyw590, vyw600, bcb) new_compare2(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, app(app(ty_Either, be), bf), bc, bd) -> new_lt0(vyw100, vyw103, be, bf) new_compare2(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, cc, app(app(ty_@2, dc), dd), bd) -> new_lt2(vyw101, vyw104, dc, dd) new_ltEs(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), ha, app(ty_[], hg), ga) -> new_lt1(vyw591, vyw601, hg) new_ltEs0(Left(vyw590), Left(vyw600), app(app(ty_@2, bcc), bcd), bbg) -> new_ltEs2(vyw590, vyw600, bcc, bcd) new_ltEs(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), app(app(app(ty_@3, fd), ff), fg), fh, ga) -> new_lt(vyw590, vyw600, fd, ff, fg) new_ltEs0(Right(vyw590), Right(vyw600), bcf, app(app(ty_Either, bdb), bdc)) -> new_ltEs0(vyw590, vyw600, bdb, bdc) new_ltEs(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), ha, fh, app(ty_Maybe, bbc)) -> new_ltEs3(vyw592, vyw602, bbc) new_compare20(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), False, app(app(app(ty_@3, app(ty_Maybe, gh)), fh), ga), gb) -> new_lt3(vyw590, vyw600, gh) new_compare20(Right(vyw590), Right(vyw600), False, app(app(ty_Either, bcf), app(ty_Maybe, bdg)), gb) -> new_ltEs3(vyw590, vyw600, bdg) new_primCompAux(vyw30, vyw400, vyw39, app(app(app(ty_@3, bhg), bhh), caa)) -> new_compare(vyw30, vyw400, bhg, bhh, caa) new_lt3(Just(vyw30), Just(vyw400), cdf) -> new_compare23(vyw30, vyw400, new_esEs11(vyw30, vyw400, cdf), cdf) new_compare20(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), False, app(app(app(ty_@3, ha), app(app(ty_@2, hh), baa)), ga), gb) -> new_lt2(vyw591, vyw601, hh, baa) new_compare20(Just(vyw590), Just(vyw600), False, app(ty_Maybe, app(app(ty_@2, bhc), bhd)), gb) -> new_ltEs2(vyw590, vyw600, bhc, bhd) new_compare21(vyw66, vyw67, False, ceh, app(app(ty_Either, cfd), cfe)) -> new_ltEs0(vyw66, vyw67, cfd, cfe) new_compare22(vyw113, vyw114, vyw115, vyw116, False, ccd, app(app(ty_Either, cch), cda)) -> new_ltEs0(vyw114, vyw116, cch, cda) new_ltEs(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), ha, fh, app(ty_[], bah)) -> new_ltEs1(vyw592, vyw602, bah) new_ltEs0(Left(vyw590), Left(vyw600), app(app(ty_Either, bbh), bca), bbg) -> new_ltEs0(vyw590, vyw600, bbh, bca) new_compare21(vyw66, vyw67, False, ceh, app(app(app(ty_@3, cfa), cfb), cfc)) -> new_ltEs(vyw66, vyw67, cfa, cfb, cfc) new_ltEs2(@2(vyw590, vyw591), @2(vyw600, vyw601), app(app(ty_@2, beh), bfa), bed) -> new_lt2(vyw590, vyw600, beh, bfa) new_ltEs(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), ha, app(app(ty_Either, he), hf), ga) -> new_lt0(vyw591, vyw601, he, hf) new_compare20(@2(vyw590, vyw591), @2(vyw600, vyw601), False, app(app(ty_@2, app(app(ty_@2, beh), bfa)), bed), gb) -> new_lt2(vyw590, vyw600, beh, bfa) new_primCompAux(vyw30, vyw400, vyw39, app(ty_[], cad)) -> new_compare1(vyw30, vyw400, cad) new_ltEs2(@2(vyw590, vyw591), @2(vyw600, vyw601), bfc, app(app(ty_@2, bgb), bgc)) -> new_ltEs2(vyw591, vyw601, bgb, bgc) new_lt0(Left(vyw30), Left(vyw400), fb, fc) -> new_compare20(vyw30, vyw400, new_esEs7(vyw30, vyw400, fb), fb, fc) new_compare22(vyw113, vyw114, vyw115, vyw116, False, app(ty_Maybe, ccc), cbe) -> new_lt3(vyw113, vyw115, ccc) new_compare20(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), False, app(app(app(ty_@3, ha), app(app(app(ty_@3, hb), hc), hd)), ga), gb) -> new_lt(vyw591, vyw601, hb, hc, hd) new_compare20(@2(vyw590, vyw591), @2(vyw600, vyw601), False, app(app(ty_@2, bfc), app(app(ty_Either, bfg), bfh)), gb) -> new_ltEs0(vyw591, vyw601, bfg, bfh) new_ltEs(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), ha, fh, app(app(ty_Either, baf), bag)) -> new_ltEs0(vyw592, vyw602, baf, bag) new_compare20(Right(vyw590), Right(vyw600), False, app(app(ty_Either, bcf), app(app(ty_@2, bde), bdf)), gb) -> new_ltEs2(vyw590, vyw600, bde, bdf) new_compare22(vyw113, vyw114, vyw115, vyw116, False, ccd, app(ty_[], cdb)) -> new_ltEs1(vyw114, vyw116, cdb) new_compare20(Left(vyw590), Left(vyw600), False, app(app(ty_Either, app(app(app(ty_@3, bbd), bbe), bbf)), bbg), gb) -> new_ltEs(vyw590, vyw600, bbd, bbe, bbf) new_ltEs2(@2(vyw590, vyw591), @2(vyw600, vyw601), bfc, app(app(app(ty_@3, bfd), bfe), bff)) -> new_ltEs(vyw591, vyw601, bfd, bfe, bff) new_ltEs0(Left(vyw590), Left(vyw600), app(app(app(ty_@3, bbd), bbe), bbf), bbg) -> new_ltEs(vyw590, vyw600, bbd, bbe, bbf) new_compare2(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, cc, app(app(ty_Either, cg), da), bd) -> new_lt0(vyw101, vyw104, cg, da) new_compare20(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), False, app(app(app(ty_@3, ha), app(ty_Maybe, bab)), ga), gb) -> new_lt3(vyw591, vyw601, bab) new_ltEs(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), ha, app(app(app(ty_@3, hb), hc), hd), ga) -> new_lt(vyw591, vyw601, hb, hc, hd) new_compare20(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), False, app(app(app(ty_@3, ha), fh), app(ty_[], bah)), gb) -> new_ltEs1(vyw592, vyw602, bah) new_primCompAux(vyw30, vyw400, vyw39, app(app(ty_Either, cab), cac)) -> new_compare0(vyw30, vyw400, cab, cac) new_compare(@3(vyw30, vyw31, vyw32), @3(vyw400, vyw401, vyw402), eg, eh, fa) -> new_compare2(vyw30, vyw31, vyw32, vyw400, vyw401, vyw402, new_asAs(new_esEs6(vyw30, vyw400, eg), new_asAs(new_esEs5(vyw31, vyw401, eh), new_esEs4(vyw32, vyw402, fa))), eg, eh, fa) new_compare23(vyw89, vyw90, False, app(app(ty_@2, cee), cef)) -> new_ltEs2(vyw89, vyw90, cee, cef) new_compare20(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), False, app(app(app(ty_@3, app(app(ty_Either, gc), gd)), fh), ga), gb) -> new_lt0(vyw590, vyw600, gc, gd) new_compare4(@2(vyw30, vyw31), @2(vyw400, vyw401), cah, cba) -> new_compare22(vyw30, vyw31, vyw400, vyw401, new_asAs(new_esEs10(vyw30, vyw400, cah), new_esEs9(vyw31, vyw401, cba)), cah, cba) new_compare20(Left(vyw590), Left(vyw600), False, app(app(ty_Either, app(ty_[], bcb)), bbg), gb) -> new_ltEs1(vyw590, vyw600, bcb) new_primCompAux(vyw30, vyw400, vyw39, app(app(ty_@2, cae), caf)) -> new_compare4(vyw30, vyw400, cae, caf) new_compare20(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), False, app(app(app(ty_@3, ha), fh), app(app(app(ty_@3, bac), bad), bae)), gb) -> new_ltEs(vyw592, vyw602, bac, bad, bae) new_ltEs0(Right(vyw590), Right(vyw600), bcf, app(ty_Maybe, bdg)) -> new_ltEs3(vyw590, vyw600, bdg) new_compare20(vyw59, vyw60, False, app(ty_[], bdh), gb) -> new_compare1(vyw59, vyw60, bdh) new_ltEs2(@2(vyw590, vyw591), @2(vyw600, vyw601), app(app(app(ty_@3, bea), beb), bec), bed) -> new_lt(vyw590, vyw600, bea, beb, bec) new_compare20(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), False, app(app(app(ty_@3, ha), fh), app(ty_Maybe, bbc)), gb) -> new_ltEs3(vyw592, vyw602, bbc) new_ltEs0(Right(vyw590), Right(vyw600), bcf, app(app(ty_@2, bde), bdf)) -> new_ltEs2(vyw590, vyw600, bde, bdf) new_compare20(@2(vyw590, vyw591), @2(vyw600, vyw601), False, app(app(ty_@2, bfc), app(ty_[], bga)), gb) -> new_ltEs1(vyw591, vyw601, bga) new_ltEs0(Right(vyw590), Right(vyw600), bcf, app(ty_[], bdd)) -> new_ltEs1(vyw590, vyw600, bdd) new_ltEs(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), ha, fh, app(app(ty_@2, bba), bbb)) -> new_ltEs2(vyw592, vyw602, bba, bbb) new_compare20(Just(vyw590), Just(vyw600), False, app(ty_Maybe, app(app(ty_Either, bgh), bha)), gb) -> new_ltEs0(vyw590, vyw600, bgh, bha) new_compare2(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, cc, app(app(app(ty_@3, cd), ce), cf), bd) -> new_lt(vyw101, vyw104, cd, ce, cf) new_compare22(vyw113, vyw114, vyw115, vyw116, False, ccd, app(app(ty_@2, cdc), cdd)) -> new_ltEs2(vyw114, vyw116, cdc, cdd) The TRS R consists of the following rules: new_ltEs7(Left(vyw590), Left(vyw600), app(app(ty_Either, bbh), bca), bbg) -> new_ltEs7(vyw590, vyw600, bbh, bca) new_esEs29(EQ) -> False new_esEs27(vyw590, vyw600, ty_Double) -> new_esEs15(vyw590, vyw600) new_esEs28(vyw590, vyw600, app(ty_Maybe, bfb)) -> new_esEs24(vyw590, vyw600, bfb) new_ltEs7(Right(vyw590), Left(vyw600), bcf, bbg) -> False new_ltEs12(Just(vyw590), Just(vyw600), ty_Char) -> new_ltEs15(vyw590, vyw600) new_esEs19(Left(vyw300), Left(vyw4000), app(app(app(ty_@3, dae), daf), dag), dac) -> new_esEs17(vyw300, vyw4000, dae, daf, dag) new_esEs24(Just(vyw300), Just(vyw4000), app(app(ty_@2, eha), ehb)) -> new_esEs21(vyw300, vyw4000, eha, ehb) new_primCmpInt(Neg(Succ(vyw300)), Pos(vyw400)) -> LT new_esEs19(Right(vyw300), Right(vyw4000), dbf, ty_@0) -> new_esEs22(vyw300, vyw4000) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_ltEs22(vyw114, vyw116, app(ty_[], cdb)) -> new_ltEs8(vyw114, vyw116, cdb) new_lt22(vyw100, vyw103, app(ty_Maybe, cb)) -> new_lt13(vyw100, vyw103, cb) new_esEs33(vyw301, vyw4001, app(ty_Ratio, ech)) -> new_esEs23(vyw301, vyw4001, ech) new_lt20(vyw590, vyw600, ty_Float) -> new_lt15(vyw590, vyw600) new_ltEs23(vyw89, vyw90, app(ty_Ratio, egb)) -> new_ltEs13(vyw89, vyw90, egb) new_esEs24(Just(vyw300), Just(vyw4000), ty_Ordering) -> new_esEs25(vyw300, vyw4000) new_lt21(vyw113, vyw115, app(app(ty_Either, cbf), cbg)) -> new_lt8(vyw113, vyw115, cbf, cbg) new_lt5(vyw591, vyw601, app(ty_Maybe, bab)) -> new_lt13(vyw591, vyw601, bab) new_pePe(True, vyw191) -> True new_lt4(vyw590, vyw600, app(app(ty_Either, gc), gd)) -> new_lt8(vyw590, vyw600, gc, gd) new_esEs10(vyw30, vyw400, ty_Bool) -> new_esEs14(vyw30, vyw400) new_ltEs5(vyw592, vyw602, ty_Char) -> new_ltEs15(vyw592, vyw602) new_esEs10(vyw30, vyw400, ty_@0) -> new_esEs22(vyw30, vyw400) new_esEs6(vyw30, vyw400, app(app(app(ty_@3, eaf), eag), eah)) -> new_esEs17(vyw30, vyw400, eaf, eag, eah) new_esEs33(vyw301, vyw4001, app(app(app(ty_@3, eca), ecb), ecc)) -> new_esEs17(vyw301, vyw4001, eca, ecb, ecc) new_esEs19(Left(vyw300), Left(vyw4000), app(app(ty_@2, dbb), dbc), dac) -> new_esEs21(vyw300, vyw4000, dbb, dbc) new_esEs39(vyw100, vyw103, ty_Ordering) -> new_esEs25(vyw100, vyw103) new_esEs27(vyw590, vyw600, app(app(app(ty_@3, fd), ff), fg)) -> new_esEs17(vyw590, vyw600, fd, ff, fg) new_ltEs24(vyw102, vyw105, app(app(ty_@2, ed), ee)) -> new_ltEs10(vyw102, vyw105, ed, ee) new_ltEs7(Left(vyw590), Left(vyw600), ty_Char, bbg) -> new_ltEs15(vyw590, vyw600) new_ltEs7(Left(vyw590), Left(vyw600), app(app(ty_@2, bcc), bcd), bbg) -> new_ltEs10(vyw590, vyw600, bcc, bcd) new_esEs29(GT) -> False new_compare28(@2(vyw30, vyw31), @2(vyw400, vyw401), cah, cba) -> new_compare210(vyw30, vyw31, vyw400, vyw401, new_asAs(new_esEs10(vyw30, vyw400, cah), new_esEs9(vyw31, vyw401, cba)), cah, cba) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_esEs27(vyw590, vyw600, app(ty_[], ge)) -> new_esEs16(vyw590, vyw600, ge) new_primCmpInt(Pos(Zero), Neg(Succ(vyw4000))) -> GT new_lt23(vyw101, vyw104, app(app(ty_@2, dc), dd)) -> new_lt11(vyw101, vyw104, dc, dd) new_ltEs24(vyw102, vyw105, app(app(ty_Either, ea), eb)) -> new_ltEs7(vyw102, vyw105, ea, eb) new_esEs7(vyw30, vyw400, ty_Char) -> new_esEs20(vyw30, vyw400) new_primCmpInt(Neg(Succ(vyw300)), Neg(vyw400)) -> new_primCmpNat0(vyw400, Succ(vyw300)) new_esEs28(vyw590, vyw600, ty_Char) -> new_esEs20(vyw590, vyw600) new_esEs20(Char(vyw300), Char(vyw4000)) -> new_primEqNat0(vyw300, vyw4000) new_compare16(vyw165, vyw166, vyw167, vyw168, vyw169, vyw170, False, dfd, dfe, dff) -> GT new_ltEs11(GT, EQ) -> False new_ltEs5(vyw592, vyw602, app(ty_Maybe, bbc)) -> new_ltEs12(vyw592, vyw602, bbc) new_esEs40(vyw300, vyw4000, ty_Char) -> new_esEs20(vyw300, vyw4000) new_esEs37(vyw300, vyw4000, app(app(ty_Either, fce), fcf)) -> new_esEs19(vyw300, vyw4000, fce, fcf) new_ltEs20(vyw59, vyw60, ty_@0) -> new_ltEs18(vyw59, vyw60) new_esEs34(vyw300, vyw4000, ty_Char) -> new_esEs20(vyw300, vyw4000) new_esEs10(vyw30, vyw400, ty_Int) -> new_esEs13(vyw30, vyw400) new_ltEs7(Left(vyw590), Left(vyw600), ty_Ordering, bbg) -> new_ltEs11(vyw590, vyw600) new_ltEs21(vyw66, vyw67, ty_Float) -> new_ltEs14(vyw66, vyw67) new_lt23(vyw101, vyw104, ty_Int) -> new_lt18(vyw101, vyw104) new_esEs6(vyw30, vyw400, app(ty_[], eae)) -> new_esEs16(vyw30, vyw400, eae) new_lt22(vyw100, vyw103, app(ty_Ratio, ffg)) -> new_lt14(vyw100, vyw103, ffg) new_esEs35(vyw302, vyw4002, ty_@0) -> new_esEs22(vyw302, vyw4002) new_ltEs5(vyw592, vyw602, ty_Ordering) -> new_ltEs11(vyw592, vyw602) new_ltEs24(vyw102, vyw105, app(app(app(ty_@3, df), dg), dh)) -> new_ltEs4(vyw102, vyw105, df, dg, dh) new_esEs40(vyw300, vyw4000, ty_Float) -> new_esEs12(vyw300, vyw4000) new_esEs33(vyw301, vyw4001, app(ty_[], ebh)) -> new_esEs16(vyw301, vyw4001, ebh) new_esEs8(vyw30, vyw400, ty_@0) -> new_esEs22(vyw30, vyw400) new_esEs37(vyw300, vyw4000, ty_Double) -> new_esEs15(vyw300, vyw4000) new_compare3([], [], bhf) -> EQ new_ltEs7(Right(vyw590), Right(vyw600), bcf, ty_@0) -> new_ltEs18(vyw590, vyw600) new_primEqInt(Pos(Succ(vyw3000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(vyw40000))) -> False new_ltEs8(vyw59, vyw60, bdh) -> new_fsEs(new_compare3(vyw59, vyw60, bdh)) new_ltEs22(vyw114, vyw116, ty_Bool) -> new_ltEs9(vyw114, vyw116) new_esEs19(Left(vyw300), Left(vyw4000), ty_Double, dac) -> new_esEs15(vyw300, vyw4000) new_ltEs9(False, True) -> True new_compare6(Left(vyw30), Left(vyw400), fb, fc) -> new_compare24(vyw30, vyw400, new_esEs7(vyw30, vyw400, fb), fb, fc) new_esEs35(vyw302, vyw4002, ty_Int) -> new_esEs13(vyw302, vyw4002) new_esEs8(vyw30, vyw400, ty_Int) -> new_esEs13(vyw30, vyw400) new_compare8(GT, GT) -> EQ new_primEqNat0(Succ(vyw3000), Succ(vyw40000)) -> new_primEqNat0(vyw3000, vyw40000) new_esEs37(vyw300, vyw4000, app(ty_Ratio, fda)) -> new_esEs23(vyw300, vyw4000, fda) new_esEs37(vyw300, vyw4000, app(app(app(ty_@3, fcb), fcc), fcd)) -> new_esEs17(vyw300, vyw4000, fcb, fcc, fcd) new_compare18(@3(vyw30, vyw31, vyw32), @3(vyw400, vyw401, vyw402), eg, eh, fa) -> new_compare211(vyw30, vyw31, vyw32, vyw400, vyw401, vyw402, new_asAs(new_esEs6(vyw30, vyw400, eg), new_asAs(new_esEs5(vyw31, vyw401, eh), new_esEs4(vyw32, vyw402, fa))), eg, eh, fa) new_lt4(vyw590, vyw600, app(app(app(ty_@3, fd), ff), fg)) -> new_lt6(vyw590, vyw600, fd, ff, fg) new_esEs30(vyw301, vyw4001, ty_Integer) -> new_esEs18(vyw301, vyw4001) new_lt7(vyw3, vyw40) -> new_esEs29(new_compare19(vyw3, vyw40)) new_esEs38(vyw101, vyw104, app(ty_Maybe, de)) -> new_esEs24(vyw101, vyw104, de) new_ltEs22(vyw114, vyw116, ty_Double) -> new_ltEs6(vyw114, vyw116) new_ltEs22(vyw114, vyw116, ty_Ordering) -> new_ltEs11(vyw114, vyw116) new_esEs34(vyw300, vyw4000, ty_Float) -> new_esEs12(vyw300, vyw4000) new_esEs19(Right(vyw300), Right(vyw4000), dbf, ty_Int) -> new_esEs13(vyw300, vyw4000) new_lt5(vyw591, vyw601, ty_Char) -> new_lt16(vyw591, vyw601) new_not(True) -> False new_lt5(vyw591, vyw601, ty_Bool) -> new_lt10(vyw591, vyw601) new_esEs28(vyw590, vyw600, ty_Float) -> new_esEs12(vyw590, vyw600) new_esEs4(vyw32, vyw402, ty_Bool) -> new_esEs14(vyw32, vyw402) new_ltEs12(Just(vyw590), Just(vyw600), ty_Ordering) -> new_ltEs11(vyw590, vyw600) new_esEs7(vyw30, vyw400, ty_Float) -> new_esEs12(vyw30, vyw400) new_fsEs(vyw192) -> new_not(new_esEs25(vyw192, GT)) new_lt22(vyw100, vyw103, app(app(app(ty_@3, h), ba), bb)) -> new_lt6(vyw100, vyw103, h, ba, bb) new_lt22(vyw100, vyw103, ty_Integer) -> new_lt17(vyw100, vyw103) new_ltEs24(vyw102, vyw105, ty_Int) -> new_ltEs17(vyw102, vyw105) new_ltEs19(vyw591, vyw601, ty_@0) -> new_ltEs18(vyw591, vyw601) new_esEs35(vyw302, vyw4002, app(app(ty_@2, fac), fad)) -> new_esEs21(vyw302, vyw4002, fac, fad) new_lt22(vyw100, vyw103, ty_Ordering) -> new_lt12(vyw100, vyw103) new_ltEs20(vyw59, vyw60, app(app(ty_@2, bfc), bed)) -> new_ltEs10(vyw59, vyw60, bfc, bed) new_ltEs23(vyw89, vyw90, ty_Char) -> new_ltEs15(vyw89, vyw90) new_ltEs5(vyw592, vyw602, app(ty_Ratio, chf)) -> new_ltEs13(vyw592, vyw602, chf) new_primCompAux00(vyw72, LT) -> LT new_primCmpNat0(Zero, Zero) -> EQ new_esEs24(Just(vyw300), Just(vyw4000), app(ty_Maybe, ehd)) -> new_esEs24(vyw300, vyw4000, ehd) new_ltEs5(vyw592, vyw602, app(ty_[], bah)) -> new_ltEs8(vyw592, vyw602, bah) new_esEs38(vyw101, vyw104, app(ty_Ratio, ffh)) -> new_esEs23(vyw101, vyw104, ffh) new_esEs35(vyw302, vyw4002, ty_Ordering) -> new_esEs25(vyw302, vyw4002) new_esEs38(vyw101, vyw104, app(app(app(ty_@3, cd), ce), cf)) -> new_esEs17(vyw101, vyw104, cd, ce, cf) new_esEs28(vyw590, vyw600, ty_Ordering) -> new_esEs25(vyw590, vyw600) new_compare17(vyw30, vyw400, ty_Integer) -> new_compare14(vyw30, vyw400) new_ltEs21(vyw66, vyw67, ty_Double) -> new_ltEs6(vyw66, vyw67) new_esEs36(vyw301, vyw4001, ty_Int) -> new_esEs13(vyw301, vyw4001) new_esEs34(vyw300, vyw4000, app(app(ty_@2, edh), eea)) -> new_esEs21(vyw300, vyw4000, edh, eea) new_compare15(vyw165, vyw166, vyw167, vyw168, vyw169, vyw170, True, vyw172, dfd, dfe, dff) -> new_compare16(vyw165, vyw166, vyw167, vyw168, vyw169, vyw170, True, dfd, dfe, dff) new_esEs28(vyw590, vyw600, app(app(ty_@2, beh), bfa)) -> new_esEs21(vyw590, vyw600, beh, bfa) new_esEs19(Left(vyw300), Left(vyw4000), ty_Float, dac) -> new_esEs12(vyw300, vyw4000) new_esEs10(vyw30, vyw400, ty_Ordering) -> new_esEs25(vyw30, vyw400) new_esEs39(vyw100, vyw103, ty_Float) -> new_esEs12(vyw100, vyw103) new_compare27(False, False) -> EQ new_lt21(vyw113, vyw115, ty_Char) -> new_lt16(vyw113, vyw115) new_ltEs24(vyw102, vyw105, ty_Integer) -> new_ltEs16(vyw102, vyw105) new_ltEs20(vyw59, vyw60, app(app(ty_Either, bcf), bbg)) -> new_ltEs7(vyw59, vyw60, bcf, bbg) new_lt5(vyw591, vyw601, ty_Int) -> new_lt18(vyw591, vyw601) new_compare19(Double(vyw30, Pos(vyw310)), Double(vyw400, Pos(vyw4010))) -> new_compare31(new_sr(vyw30, Pos(vyw4010)), new_sr(Pos(vyw310), vyw400)) new_primEqNat0(Succ(vyw3000), Zero) -> False new_primEqNat0(Zero, Succ(vyw40000)) -> False new_esEs32(vyw113, vyw115, app(ty_[], cbh)) -> new_esEs16(vyw113, vyw115, cbh) new_esEs35(vyw302, vyw4002, ty_Integer) -> new_esEs18(vyw302, vyw4002) new_esEs39(vyw100, vyw103, app(ty_Maybe, cb)) -> new_esEs24(vyw100, vyw103, cb) new_esEs10(vyw30, vyw400, app(app(ty_@2, ffc), ffd)) -> new_esEs21(vyw30, vyw400, ffc, ffd) new_esEs6(vyw30, vyw400, app(app(ty_Either, dbf), dac)) -> new_esEs19(vyw30, vyw400, dbf, dac) new_esEs23(:%(vyw300, vyw301), :%(vyw4000, vyw4001), ead) -> new_asAs(new_esEs31(vyw300, vyw4000, ead), new_esEs30(vyw301, vyw4001, ead)) new_lt21(vyw113, vyw115, ty_Bool) -> new_lt10(vyw113, vyw115) new_esEs14(False, True) -> False new_esEs14(True, False) -> False new_primCompAux00(vyw72, GT) -> GT new_lt5(vyw591, vyw601, app(ty_Ratio, che)) -> new_lt14(vyw591, vyw601, che) new_lt20(vyw590, vyw600, app(ty_[], beg)) -> new_lt9(vyw590, vyw600, beg) new_esEs33(vyw301, vyw4001, ty_Float) -> new_esEs12(vyw301, vyw4001) new_esEs38(vyw101, vyw104, ty_Float) -> new_esEs12(vyw101, vyw104) new_esEs4(vyw32, vyw402, ty_@0) -> new_esEs22(vyw32, vyw402) new_ltEs23(vyw89, vyw90, ty_Integer) -> new_ltEs16(vyw89, vyw90) new_esEs40(vyw300, vyw4000, app(ty_Maybe, fhc)) -> new_esEs24(vyw300, vyw4000, fhc) new_esEs34(vyw300, vyw4000, ty_Integer) -> new_esEs18(vyw300, vyw4000) new_lt16(vyw3, vyw40) -> new_esEs29(new_compare30(vyw3, vyw40)) new_esEs24(Just(vyw300), Just(vyw4000), ty_@0) -> new_esEs22(vyw300, vyw4000) new_esEs39(vyw100, vyw103, ty_Integer) -> new_esEs18(vyw100, vyw103) new_esEs9(vyw31, vyw401, ty_@0) -> new_esEs22(vyw31, vyw401) new_lt20(vyw590, vyw600, ty_@0) -> new_lt19(vyw590, vyw600) new_lt22(vyw100, vyw103, ty_Bool) -> new_lt10(vyw100, vyw103) new_primCmpInt(Pos(Succ(vyw300)), Neg(vyw400)) -> GT new_esEs37(vyw300, vyw4000, app(ty_[], fca)) -> new_esEs16(vyw300, vyw4000, fca) new_esEs6(vyw30, vyw400, ty_Char) -> new_esEs20(vyw30, vyw400) new_esEs40(vyw300, vyw4000, app(app(ty_@2, fgh), fha)) -> new_esEs21(vyw300, vyw4000, fgh, fha) new_ltEs19(vyw591, vyw601, ty_Float) -> new_ltEs14(vyw591, vyw601) new_lt15(vyw3, vyw40) -> new_esEs29(new_compare29(vyw3, vyw40)) new_ltEs11(GT, LT) -> False new_ltEs23(vyw89, vyw90, ty_Ordering) -> new_ltEs11(vyw89, vyw90) new_compare110(vyw143, vyw144, True, efg, efh) -> LT new_esEs27(vyw590, vyw600, ty_Float) -> new_esEs12(vyw590, vyw600) new_lt22(vyw100, vyw103, ty_Char) -> new_lt16(vyw100, vyw103) new_compare11(vyw180, vyw181, vyw182, vyw183, True, daa, dab) -> LT new_lt4(vyw590, vyw600, app(ty_Maybe, gh)) -> new_lt13(vyw590, vyw600, gh) new_compare3(:(vyw30, vyw31), :(vyw400, vyw401), bhf) -> new_primCompAux0(vyw30, vyw400, new_compare3(vyw31, vyw401, bhf), bhf) new_esEs40(vyw300, vyw4000, ty_Integer) -> new_esEs18(vyw300, vyw4000) new_ltEs22(vyw114, vyw116, ty_Char) -> new_ltEs15(vyw114, vyw116) new_esEs34(vyw300, vyw4000, app(ty_Maybe, eec)) -> new_esEs24(vyw300, vyw4000, eec) new_lt20(vyw590, vyw600, app(app(ty_Either, bee), bef)) -> new_lt8(vyw590, vyw600, bee, bef) new_esEs27(vyw590, vyw600, app(ty_Ratio, chd)) -> new_esEs23(vyw590, vyw600, chd) new_lt23(vyw101, vyw104, ty_Integer) -> new_lt17(vyw101, vyw104) new_esEs33(vyw301, vyw4001, ty_Double) -> new_esEs15(vyw301, vyw4001) new_esEs39(vyw100, vyw103, ty_@0) -> new_esEs22(vyw100, vyw103) new_ltEs20(vyw59, vyw60, ty_Float) -> new_ltEs14(vyw59, vyw60) new_ltEs17(vyw59, vyw60) -> new_fsEs(new_compare31(vyw59, vyw60)) new_esEs5(vyw31, vyw401, app(app(ty_Either, eeh), efa)) -> new_esEs19(vyw31, vyw401, eeh, efa) new_esEs35(vyw302, vyw4002, ty_Bool) -> new_esEs14(vyw302, vyw4002) new_esEs24(Just(vyw300), Just(vyw4000), ty_Integer) -> new_esEs18(vyw300, vyw4000) new_primPlusNat1(Succ(vyw19300), Succ(vyw31000)) -> Succ(Succ(new_primPlusNat1(vyw19300, vyw31000))) new_esEs34(vyw300, vyw4000, ty_Ordering) -> new_esEs25(vyw300, vyw4000) new_esEs38(vyw101, vyw104, ty_Double) -> new_esEs15(vyw101, vyw104) new_ltEs6(vyw59, vyw60) -> new_fsEs(new_compare19(vyw59, vyw60)) new_ltEs11(LT, LT) -> True new_esEs39(vyw100, vyw103, app(app(ty_@2, bh), ca)) -> new_esEs21(vyw100, vyw103, bh, ca) new_lt5(vyw591, vyw601, app(app(ty_Either, he), hf)) -> new_lt8(vyw591, vyw601, he, hf) new_esEs4(vyw32, vyw402, app(app(ty_@2, dge), dgf)) -> new_esEs21(vyw32, vyw402, dge, dgf) new_primCmpNat0(Zero, Succ(vyw4000)) -> LT new_esEs31(vyw300, vyw4000, ty_Int) -> new_esEs13(vyw300, vyw4000) new_esEs16(:(vyw300, vyw301), :(vyw4000, vyw4001), eae) -> new_asAs(new_esEs40(vyw300, vyw4000, eae), new_esEs16(vyw301, vyw4001, eae)) new_esEs4(vyw32, vyw402, ty_Ordering) -> new_esEs25(vyw32, vyw402) new_compare17(vyw30, vyw400, ty_Bool) -> new_compare27(vyw30, vyw400) new_ltEs23(vyw89, vyw90, app(app(app(ty_@3, cdg), cdh), cea)) -> new_ltEs4(vyw89, vyw90, cdg, cdh, cea) new_esEs40(vyw300, vyw4000, ty_Ordering) -> new_esEs25(vyw300, vyw4000) new_ltEs21(vyw66, vyw67, ty_Bool) -> new_ltEs9(vyw66, vyw67) new_esEs28(vyw590, vyw600, ty_Integer) -> new_esEs18(vyw590, vyw600) new_esEs11(vyw30, vyw400, ty_@0) -> new_esEs22(vyw30, vyw400) new_esEs26(vyw591, vyw601, app(ty_Ratio, che)) -> new_esEs23(vyw591, vyw601, che) new_esEs28(vyw590, vyw600, app(ty_[], beg)) -> new_esEs16(vyw590, vyw600, beg) new_ltEs19(vyw591, vyw601, ty_Double) -> new_ltEs6(vyw591, vyw601) new_primCmpNat0(Succ(vyw300), Zero) -> GT new_lt5(vyw591, vyw601, app(app(ty_@2, hh), baa)) -> new_lt11(vyw591, vyw601, hh, baa) new_lt14(vyw3, vyw40, deh) -> new_esEs29(new_compare9(vyw3, vyw40, deh)) new_esEs40(vyw300, vyw4000, ty_@0) -> new_esEs22(vyw300, vyw4000) new_lt5(vyw591, vyw601, ty_Double) -> new_lt7(vyw591, vyw601) new_ltEs19(vyw591, vyw601, app(app(ty_Either, bfg), bfh)) -> new_ltEs7(vyw591, vyw601, bfg, bfh) new_compare3([], :(vyw400, vyw401), bhf) -> LT new_esEs32(vyw113, vyw115, ty_Int) -> new_esEs13(vyw113, vyw115) new_pePe(False, vyw191) -> vyw191 new_ltEs7(Right(vyw590), Right(vyw600), bcf, app(ty_[], bdd)) -> new_ltEs8(vyw590, vyw600, bdd) new_esEs40(vyw300, vyw4000, app(app(app(ty_@3, fgc), fgd), fge)) -> new_esEs17(vyw300, vyw4000, fgc, fgd, fge) new_ltEs18(vyw59, vyw60) -> new_fsEs(new_compare32(vyw59, vyw60)) new_ltEs7(Right(vyw590), Right(vyw600), bcf, ty_Integer) -> new_ltEs16(vyw590, vyw600) new_lt4(vyw590, vyw600, ty_Float) -> new_lt15(vyw590, vyw600) new_compare25(vyw66, vyw67, True, ceh, ebd) -> EQ new_ltEs22(vyw114, vyw116, app(ty_Ratio, ebg)) -> new_ltEs13(vyw114, vyw116, ebg) new_ltEs9(True, True) -> True new_esEs27(vyw590, vyw600, ty_Char) -> new_esEs20(vyw590, vyw600) new_esEs8(vyw30, vyw400, app(ty_Maybe, dee)) -> new_esEs24(vyw30, vyw400, dee) new_esEs31(vyw300, vyw4000, ty_Integer) -> new_esEs18(vyw300, vyw4000) new_esEs6(vyw30, vyw400, ty_Integer) -> new_esEs18(vyw30, vyw400) new_esEs26(vyw591, vyw601, ty_Bool) -> new_esEs14(vyw591, vyw601) new_esEs8(vyw30, vyw400, ty_Float) -> new_esEs12(vyw30, vyw400) new_ltEs21(vyw66, vyw67, ty_@0) -> new_ltEs18(vyw66, vyw67) new_esEs5(vyw31, vyw401, ty_@0) -> new_esEs22(vyw31, vyw401) new_compare31(vyw3, vyw40) -> new_primCmpInt(vyw3, vyw40) new_ltEs24(vyw102, vyw105, app(ty_Ratio, fga)) -> new_ltEs13(vyw102, vyw105, fga) new_lt4(vyw590, vyw600, app(ty_Ratio, chd)) -> new_lt14(vyw590, vyw600, chd) new_ltEs19(vyw591, vyw601, app(app(ty_@2, bgb), bgc)) -> new_ltEs10(vyw591, vyw601, bgb, bgc) new_esEs34(vyw300, vyw4000, app(ty_Ratio, eeb)) -> new_esEs23(vyw300, vyw4000, eeb) new_lt23(vyw101, vyw104, app(ty_Maybe, de)) -> new_lt13(vyw101, vyw104, de) new_esEs32(vyw113, vyw115, app(app(app(ty_@3, cbb), cbc), cbd)) -> new_esEs17(vyw113, vyw115, cbb, cbc, cbd) new_esEs11(vyw30, vyw400, app(ty_Ratio, eaa)) -> new_esEs23(vyw30, vyw400, eaa) new_ltEs12(Just(vyw590), Just(vyw600), ty_Int) -> new_ltEs17(vyw590, vyw600) new_esEs19(Right(vyw300), Right(vyw4000), dbf, ty_Integer) -> new_esEs18(vyw300, vyw4000) new_compare6(Left(vyw30), Right(vyw400), fb, fc) -> LT new_esEs32(vyw113, vyw115, ty_@0) -> new_esEs22(vyw113, vyw115) new_primEqInt(Pos(Zero), Neg(Succ(vyw40000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(vyw40000))) -> False new_ltEs7(Right(vyw590), Right(vyw600), bcf, app(app(ty_@2, bde), bdf)) -> new_ltEs10(vyw590, vyw600, bde, bdf) new_ltEs20(vyw59, vyw60, ty_Integer) -> new_ltEs16(vyw59, vyw60) new_esEs25(LT, GT) -> False new_esEs25(GT, LT) -> False new_esEs5(vyw31, vyw401, app(app(app(ty_@3, eee), eef), eeg)) -> new_esEs17(vyw31, vyw401, eee, eef, eeg) new_lt22(vyw100, vyw103, app(app(ty_@2, bh), ca)) -> new_lt11(vyw100, vyw103, bh, ca) new_ltEs5(vyw592, vyw602, ty_Int) -> new_ltEs17(vyw592, vyw602) new_ltEs22(vyw114, vyw116, ty_Float) -> new_ltEs14(vyw114, vyw116) new_lt9(vyw3, vyw40, bhf) -> new_esEs29(new_compare3(vyw3, vyw40, bhf)) new_ltEs7(Left(vyw590), Left(vyw600), ty_Int, bbg) -> new_ltEs17(vyw590, vyw600) new_esEs6(vyw30, vyw400, app(ty_Maybe, ebc)) -> new_esEs24(vyw30, vyw400, ebc) new_ltEs7(Left(vyw590), Left(vyw600), ty_Bool, bbg) -> new_ltEs9(vyw590, vyw600) new_lt17(vyw3, vyw40) -> new_esEs29(new_compare14(vyw3, vyw40)) new_esEs5(vyw31, vyw401, ty_Double) -> new_esEs15(vyw31, vyw401) new_esEs9(vyw31, vyw401, app(app(ty_Either, fdg), fdh)) -> new_esEs19(vyw31, vyw401, fdg, fdh) new_ltEs5(vyw592, vyw602, app(app(ty_@2, bba), bbb)) -> new_ltEs10(vyw592, vyw602, bba, bbb) new_esEs26(vyw591, vyw601, app(ty_[], hg)) -> new_esEs16(vyw591, vyw601, hg) new_esEs32(vyw113, vyw115, ty_Double) -> new_esEs15(vyw113, vyw115) new_ltEs5(vyw592, vyw602, ty_Bool) -> new_ltEs9(vyw592, vyw602) new_esEs6(vyw30, vyw400, ty_Ordering) -> new_esEs25(vyw30, vyw400) new_primEqInt(Neg(Succ(vyw3000)), Neg(Succ(vyw40000))) -> new_primEqNat0(vyw3000, vyw40000) new_ltEs12(Just(vyw590), Just(vyw600), app(app(ty_Either, bgh), bha)) -> new_ltEs7(vyw590, vyw600, bgh, bha) new_esEs10(vyw30, vyw400, ty_Integer) -> new_esEs18(vyw30, vyw400) new_ltEs12(Just(vyw590), Just(vyw600), app(app(ty_@2, bhc), bhd)) -> new_ltEs10(vyw590, vyw600, bhc, bhd) new_primCmpInt(Neg(Zero), Pos(Succ(vyw4000))) -> LT new_esEs19(Left(vyw300), Left(vyw4000), ty_Char, dac) -> new_esEs20(vyw300, vyw4000) new_esEs33(vyw301, vyw4001, ty_Ordering) -> new_esEs25(vyw301, vyw4001) new_esEs8(vyw30, vyw400, ty_Integer) -> new_esEs18(vyw30, vyw400) new_esEs36(vyw301, vyw4001, ty_Bool) -> new_esEs14(vyw301, vyw4001) new_ltEs12(Just(vyw590), Just(vyw600), app(app(app(ty_@3, bge), bgf), bgg)) -> new_ltEs4(vyw590, vyw600, bge, bgf, bgg) new_ltEs5(vyw592, vyw602, ty_Integer) -> new_ltEs16(vyw592, vyw602) new_esEs19(Right(vyw300), Right(vyw4000), dbf, ty_Ordering) -> new_esEs25(vyw300, vyw4000) new_primMulInt(Pos(vyw4000), Pos(vyw310)) -> Pos(new_primMulNat0(vyw4000, vyw310)) new_ltEs7(Right(vyw590), Right(vyw600), bcf, app(app(ty_Either, bdb), bdc)) -> new_ltEs7(vyw590, vyw600, bdb, bdc) new_esEs33(vyw301, vyw4001, app(ty_Maybe, eda)) -> new_esEs24(vyw301, vyw4001, eda) new_ltEs12(Just(vyw590), Just(vyw600), ty_Bool) -> new_ltEs9(vyw590, vyw600) new_esEs37(vyw300, vyw4000, ty_Char) -> new_esEs20(vyw300, vyw4000) new_ltEs21(vyw66, vyw67, ty_Char) -> new_ltEs15(vyw66, vyw67) new_ltEs7(Left(vyw590), Left(vyw600), ty_Double, bbg) -> new_ltEs6(vyw590, vyw600) new_esEs40(vyw300, vyw4000, ty_Bool) -> new_esEs14(vyw300, vyw4000) new_esEs11(vyw30, vyw400, app(app(ty_Either, dhe), dhf)) -> new_esEs19(vyw30, vyw400, dhe, dhf) new_esEs28(vyw590, vyw600, ty_Double) -> new_esEs15(vyw590, vyw600) new_esEs28(vyw590, vyw600, ty_Bool) -> new_esEs14(vyw590, vyw600) new_esEs25(EQ, GT) -> False new_esEs25(GT, EQ) -> False new_ltEs5(vyw592, vyw602, ty_Double) -> new_ltEs6(vyw592, vyw602) new_lt21(vyw113, vyw115, app(ty_Maybe, ccc)) -> new_lt13(vyw113, vyw115, ccc) new_esEs21(@2(vyw300, vyw301), @2(vyw4000, vyw4001), eba, ebb) -> new_asAs(new_esEs34(vyw300, vyw4000, eba), new_esEs33(vyw301, vyw4001, ebb)) new_esEs33(vyw301, vyw4001, ty_Integer) -> new_esEs18(vyw301, vyw4001) new_compare27(False, True) -> LT new_compare12(vyw153, vyw154, False, dda) -> GT new_ltEs22(vyw114, vyw116, ty_Integer) -> new_ltEs16(vyw114, vyw116) new_esEs24(Just(vyw300), Just(vyw4000), ty_Bool) -> new_esEs14(vyw300, vyw4000) new_esEs24(Just(vyw300), Just(vyw4000), app(app(app(ty_@3, egd), ege), egf)) -> new_esEs17(vyw300, vyw4000, egd, ege, egf) new_esEs24(Just(vyw300), Just(vyw4000), ty_Double) -> new_esEs15(vyw300, vyw4000) new_primMulNat0(Succ(vyw40000), Zero) -> Zero new_primMulNat0(Zero, Succ(vyw3100)) -> Zero new_esEs10(vyw30, vyw400, app(ty_Maybe, fff)) -> new_esEs24(vyw30, vyw400, fff) new_primPlusNat0(Zero, vyw3100) -> Succ(vyw3100) new_esEs40(vyw300, vyw4000, ty_Double) -> new_esEs15(vyw300, vyw4000) new_ltEs12(Just(vyw590), Just(vyw600), ty_Double) -> new_ltEs6(vyw590, vyw600) new_esEs18(Integer(vyw300), Integer(vyw4000)) -> new_primEqInt(vyw300, vyw4000) new_esEs24(Just(vyw300), Just(vyw4000), ty_Float) -> new_esEs12(vyw300, vyw4000) new_esEs38(vyw101, vyw104, app(ty_[], db)) -> new_esEs16(vyw101, vyw104, db) new_esEs7(vyw30, vyw400, app(app(app(ty_@3, cgc), cgd), cge)) -> new_esEs17(vyw30, vyw400, cgc, cgd, cge) new_esEs28(vyw590, vyw600, app(app(app(ty_@3, bea), beb), bec)) -> new_esEs17(vyw590, vyw600, bea, beb, bec) new_ltEs5(vyw592, vyw602, app(app(ty_Either, baf), bag)) -> new_ltEs7(vyw592, vyw602, baf, bag) new_ltEs19(vyw591, vyw601, ty_Bool) -> new_ltEs9(vyw591, vyw601) new_esEs7(vyw30, vyw400, ty_Double) -> new_esEs15(vyw30, vyw400) new_compare26(vyw89, vyw90, True, ega) -> EQ new_esEs8(vyw30, vyw400, app(app(ty_@2, deb), dec)) -> new_esEs21(vyw30, vyw400, deb, dec) new_ltEs24(vyw102, vyw105, ty_Float) -> new_ltEs14(vyw102, vyw105) new_lt23(vyw101, vyw104, ty_Char) -> new_lt16(vyw101, vyw104) new_lt6(vyw3, vyw40, eg, eh, fa) -> new_esEs29(new_compare18(vyw3, vyw40, eg, eh, fa)) new_esEs39(vyw100, vyw103, ty_Char) -> new_esEs20(vyw100, vyw103) new_esEs24(Just(vyw300), Just(vyw4000), app(ty_[], egc)) -> new_esEs16(vyw300, vyw4000, egc) new_esEs8(vyw30, vyw400, ty_Ordering) -> new_esEs25(vyw30, vyw400) new_esEs39(vyw100, vyw103, ty_Bool) -> new_esEs14(vyw100, vyw103) new_compare26(vyw89, vyw90, False, ega) -> new_compare12(vyw89, vyw90, new_ltEs23(vyw89, vyw90, ega), ega) new_compare17(vyw30, vyw400, app(app(ty_@2, cae), caf)) -> new_compare28(vyw30, vyw400, cae, caf) new_esEs9(vyw31, vyw401, ty_Int) -> new_esEs13(vyw31, vyw401) new_esEs7(vyw30, vyw400, app(app(ty_Either, cgf), cgg)) -> new_esEs19(vyw30, vyw400, cgf, cgg) new_esEs17(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), eaf, eag, eah) -> new_asAs(new_esEs37(vyw300, vyw4000, eaf), new_asAs(new_esEs36(vyw301, vyw4001, eag), new_esEs35(vyw302, vyw4002, eah))) new_ltEs19(vyw591, vyw601, ty_Integer) -> new_ltEs16(vyw591, vyw601) new_lt8(vyw3, vyw40, fb, fc) -> new_esEs29(new_compare6(vyw3, vyw40, fb, fc)) new_esEs25(GT, GT) -> True new_lt20(vyw590, vyw600, ty_Bool) -> new_lt10(vyw590, vyw600) new_lt21(vyw113, vyw115, ty_Int) -> new_lt18(vyw113, vyw115) new_ltEs7(Right(vyw590), Right(vyw600), bcf, ty_Float) -> new_ltEs14(vyw590, vyw600) new_lt4(vyw590, vyw600, ty_Bool) -> new_lt10(vyw590, vyw600) new_lt4(vyw590, vyw600, ty_Ordering) -> new_lt12(vyw590, vyw600) new_esEs7(vyw30, vyw400, app(app(ty_@2, cgh), cha)) -> new_esEs21(vyw30, vyw400, cgh, cha) new_compare17(vyw30, vyw400, app(ty_[], cad)) -> new_compare3(vyw30, vyw400, cad) new_esEs4(vyw32, vyw402, ty_Char) -> new_esEs20(vyw32, vyw402) new_compare17(vyw30, vyw400, ty_@0) -> new_compare32(vyw30, vyw400) new_esEs38(vyw101, vyw104, ty_Char) -> new_esEs20(vyw101, vyw104) new_esEs5(vyw31, vyw401, app(ty_[], eed)) -> new_esEs16(vyw31, vyw401, eed) new_primPlusNat1(Succ(vyw19300), Zero) -> Succ(vyw19300) new_primPlusNat1(Zero, Succ(vyw31000)) -> Succ(vyw31000) new_compare8(LT, GT) -> LT new_compare17(vyw30, vyw400, app(ty_Ratio, eac)) -> new_compare9(vyw30, vyw400, eac) new_esEs37(vyw300, vyw4000, ty_Bool) -> new_esEs14(vyw300, vyw4000) new_esEs24(Just(vyw300), Just(vyw4000), ty_Char) -> new_esEs20(vyw300, vyw4000) new_esEs33(vyw301, vyw4001, app(app(ty_Either, ecd), ece)) -> new_esEs19(vyw301, vyw4001, ecd, ece) new_esEs19(Left(vyw300), Left(vyw4000), ty_Bool, dac) -> new_esEs14(vyw300, vyw4000) new_lt21(vyw113, vyw115, ty_Ordering) -> new_lt12(vyw113, vyw115) new_esEs10(vyw30, vyw400, app(app(ty_Either, ffa), ffb)) -> new_esEs19(vyw30, vyw400, ffa, ffb) new_esEs6(vyw30, vyw400, app(app(ty_@2, eba), ebb)) -> new_esEs21(vyw30, vyw400, eba, ebb) new_ltEs12(Just(vyw590), Just(vyw600), app(ty_[], bhb)) -> new_ltEs8(vyw590, vyw600, bhb) new_esEs32(vyw113, vyw115, app(ty_Maybe, ccc)) -> new_esEs24(vyw113, vyw115, ccc) new_esEs19(Right(vyw300), Right(vyw4000), dbf, app(ty_Ratio, dcg)) -> new_esEs23(vyw300, vyw4000, dcg) new_esEs5(vyw31, vyw401, ty_Float) -> new_esEs12(vyw31, vyw401) new_esEs34(vyw300, vyw4000, ty_Int) -> new_esEs13(vyw300, vyw4000) new_compare16(vyw165, vyw166, vyw167, vyw168, vyw169, vyw170, True, dfd, dfe, dff) -> LT new_esEs40(vyw300, vyw4000, app(ty_[], fgb)) -> new_esEs16(vyw300, vyw4000, fgb) new_compare210(vyw113, vyw114, vyw115, vyw116, True, ccd, cbe) -> EQ new_ltEs24(vyw102, vyw105, ty_@0) -> new_ltEs18(vyw102, vyw105) new_esEs16([], [], eae) -> True new_ltEs12(Just(vyw590), Just(vyw600), app(ty_Maybe, bhe)) -> new_ltEs12(vyw590, vyw600, bhe) new_primMulInt(Neg(vyw4000), Neg(vyw310)) -> Pos(new_primMulNat0(vyw4000, vyw310)) new_primCmpInt(Pos(Zero), Pos(Succ(vyw4000))) -> new_primCmpNat0(Zero, Succ(vyw4000)) new_ltEs19(vyw591, vyw601, ty_Char) -> new_ltEs15(vyw591, vyw601) new_esEs11(vyw30, vyw400, ty_Int) -> new_esEs13(vyw30, vyw400) new_esEs36(vyw301, vyw4001, app(ty_Ratio, fbg)) -> new_esEs23(vyw301, vyw4001, fbg) new_esEs14(True, True) -> True new_lt20(vyw590, vyw600, ty_Ordering) -> new_lt12(vyw590, vyw600) new_compare8(EQ, GT) -> LT new_compare11(vyw180, vyw181, vyw182, vyw183, False, daa, dab) -> GT new_ltEs23(vyw89, vyw90, ty_@0) -> new_ltEs18(vyw89, vyw90) new_ltEs7(Right(vyw590), Right(vyw600), bcf, app(app(app(ty_@3, bcg), bch), bda)) -> new_ltEs4(vyw590, vyw600, bcg, bch, bda) new_esEs6(vyw30, vyw400, ty_Float) -> new_esEs12(vyw30, vyw400) new_lt22(vyw100, vyw103, ty_Int) -> new_lt18(vyw100, vyw103) new_esEs6(vyw30, vyw400, ty_Double) -> new_esEs15(vyw30, vyw400) new_esEs32(vyw113, vyw115, app(app(ty_Either, cbf), cbg)) -> new_esEs19(vyw113, vyw115, cbf, cbg) new_esEs7(vyw30, vyw400, ty_@0) -> new_esEs22(vyw30, vyw400) new_esEs8(vyw30, vyw400, app(app(ty_Either, ddh), dea)) -> new_esEs19(vyw30, vyw400, ddh, dea) new_esEs39(vyw100, vyw103, app(ty_[], bg)) -> new_esEs16(vyw100, vyw103, bg) new_esEs7(vyw30, vyw400, ty_Ordering) -> new_esEs25(vyw30, vyw400) new_esEs38(vyw101, vyw104, ty_Bool) -> new_esEs14(vyw101, vyw104) new_compare25(vyw66, vyw67, False, ceh, ebd) -> new_compare110(vyw66, vyw67, new_ltEs21(vyw66, vyw67, ebd), ceh, ebd) new_esEs7(vyw30, vyw400, ty_Integer) -> new_esEs18(vyw30, vyw400) new_esEs15(Double(vyw300, vyw301), Double(vyw4000, vyw4001)) -> new_esEs13(new_sr(vyw300, vyw4001), new_sr(vyw301, vyw4000)) new_esEs4(vyw32, vyw402, app(ty_[], dfg)) -> new_esEs16(vyw32, vyw402, dfg) new_lt5(vyw591, vyw601, ty_Ordering) -> new_lt12(vyw591, vyw601) new_esEs7(vyw30, vyw400, app(ty_Maybe, chc)) -> new_esEs24(vyw30, vyw400, chc) new_esEs27(vyw590, vyw600, ty_Bool) -> new_esEs14(vyw590, vyw600) new_ltEs7(Right(vyw590), Right(vyw600), bcf, app(ty_Ratio, deg)) -> new_ltEs13(vyw590, vyw600, deg) new_esEs33(vyw301, vyw4001, ty_@0) -> new_esEs22(vyw301, vyw4001) new_esEs11(vyw30, vyw400, ty_Char) -> new_esEs20(vyw30, vyw400) new_esEs10(vyw30, vyw400, app(app(app(ty_@3, fef), feg), feh)) -> new_esEs17(vyw30, vyw400, fef, feg, feh) new_esEs19(Left(vyw300), Left(vyw4000), app(ty_Maybe, dbe), dac) -> new_esEs24(vyw300, vyw4000, dbe) new_ltEs7(Left(vyw590), Right(vyw600), bcf, bbg) -> True new_esEs6(vyw30, vyw400, ty_@0) -> new_esEs22(vyw30, vyw400) new_primMulInt(Pos(vyw4000), Neg(vyw310)) -> Neg(new_primMulNat0(vyw4000, vyw310)) new_primMulInt(Neg(vyw4000), Pos(vyw310)) -> Neg(new_primMulNat0(vyw4000, vyw310)) new_esEs19(Left(vyw300), Left(vyw4000), ty_Int, dac) -> new_esEs13(vyw300, vyw4000) new_esEs35(vyw302, vyw4002, app(ty_[], ehe)) -> new_esEs16(vyw302, vyw4002, ehe) new_ltEs11(EQ, GT) -> True new_lt21(vyw113, vyw115, app(app(ty_@2, cca), ccb)) -> new_lt11(vyw113, vyw115, cca, ccb) new_esEs10(vyw30, vyw400, app(ty_Ratio, ffe)) -> new_esEs23(vyw30, vyw400, ffe) new_ltEs23(vyw89, vyw90, ty_Float) -> new_ltEs14(vyw89, vyw90) new_esEs8(vyw30, vyw400, ty_Double) -> new_esEs15(vyw30, vyw400) new_ltEs21(vyw66, vyw67, ty_Integer) -> new_ltEs16(vyw66, vyw67) new_lt4(vyw590, vyw600, ty_Double) -> new_lt7(vyw590, vyw600) new_ltEs7(Left(vyw590), Left(vyw600), app(ty_Ratio, def), bbg) -> new_ltEs13(vyw590, vyw600, def) new_compare9(:%(vyw30, vyw31), :%(vyw400, vyw401), ty_Int) -> new_compare31(new_sr(vyw30, vyw401), new_sr(vyw400, vyw31)) new_compare29(Float(vyw30, Pos(vyw310)), Float(vyw400, Neg(vyw4010))) -> new_compare31(new_sr(vyw30, Pos(vyw4010)), new_sr(Neg(vyw310), vyw400)) new_compare29(Float(vyw30, Neg(vyw310)), Float(vyw400, Pos(vyw4010))) -> new_compare31(new_sr(vyw30, Neg(vyw4010)), new_sr(Pos(vyw310), vyw400)) new_esEs19(Right(vyw300), Right(vyw4000), dbf, app(ty_Maybe, dch)) -> new_esEs24(vyw300, vyw4000, dch) new_ltEs7(Right(vyw590), Right(vyw600), bcf, ty_Ordering) -> new_ltEs11(vyw590, vyw600) new_esEs19(Left(vyw300), Left(vyw4000), app(app(ty_Either, dah), dba), dac) -> new_esEs19(vyw300, vyw4000, dah, dba) new_esEs27(vyw590, vyw600, ty_@0) -> new_esEs22(vyw590, vyw600) new_ltEs24(vyw102, vyw105, ty_Bool) -> new_ltEs9(vyw102, vyw105) new_esEs33(vyw301, vyw4001, ty_Int) -> new_esEs13(vyw301, vyw4001) new_esEs33(vyw301, vyw4001, ty_Bool) -> new_esEs14(vyw301, vyw4001) new_esEs8(vyw30, vyw400, app(app(app(ty_@3, dde), ddf), ddg)) -> new_esEs17(vyw30, vyw400, dde, ddf, ddg) new_esEs19(Left(vyw300), Left(vyw4000), ty_@0, dac) -> new_esEs22(vyw300, vyw4000) new_esEs19(Right(vyw300), Right(vyw4000), dbf, ty_Double) -> new_esEs15(vyw300, vyw4000) new_esEs36(vyw301, vyw4001, app(ty_Maybe, fbh)) -> new_esEs24(vyw301, vyw4001, fbh) new_sr0(Integer(vyw4000), Integer(vyw310)) -> Integer(new_primMulInt(vyw4000, vyw310)) new_esEs35(vyw302, vyw4002, ty_Double) -> new_esEs15(vyw302, vyw4002) new_primCompAux0(vyw30, vyw400, vyw39, bhf) -> new_primCompAux00(vyw39, new_compare17(vyw30, vyw400, bhf)) new_compare17(vyw30, vyw400, ty_Ordering) -> new_compare8(vyw30, vyw400) new_esEs35(vyw302, vyw4002, app(app(app(ty_@3, ehf), ehg), ehh)) -> new_esEs17(vyw302, vyw4002, ehf, ehg, ehh) new_compare17(vyw30, vyw400, ty_Int) -> new_compare31(vyw30, vyw400) new_esEs6(vyw30, vyw400, ty_Int) -> new_esEs13(vyw30, vyw400) new_esEs8(vyw30, vyw400, app(ty_Ratio, ded)) -> new_esEs23(vyw30, vyw400, ded) new_ltEs20(vyw59, vyw60, ty_Ordering) -> new_ltEs11(vyw59, vyw60) new_esEs9(vyw31, vyw401, app(ty_Maybe, fed)) -> new_esEs24(vyw31, vyw401, fed) new_lt21(vyw113, vyw115, ty_Double) -> new_lt7(vyw113, vyw115) new_ltEs11(EQ, EQ) -> True new_lt4(vyw590, vyw600, app(app(ty_@2, gf), gg)) -> new_lt11(vyw590, vyw600, gf, gg) new_lt20(vyw590, vyw600, app(ty_Maybe, bfb)) -> new_lt13(vyw590, vyw600, bfb) new_ltEs24(vyw102, vyw105, ty_Double) -> new_ltEs6(vyw102, vyw105) new_esEs36(vyw301, vyw4001, ty_Float) -> new_esEs12(vyw301, vyw4001) new_ltEs21(vyw66, vyw67, app(ty_Ratio, ebe)) -> new_ltEs13(vyw66, vyw67, ebe) new_esEs13(vyw30, vyw400) -> new_primEqInt(vyw30, vyw400) new_esEs26(vyw591, vyw601, app(ty_Maybe, bab)) -> new_esEs24(vyw591, vyw601, bab) new_esEs9(vyw31, vyw401, ty_Float) -> new_esEs12(vyw31, vyw401) new_esEs32(vyw113, vyw115, ty_Integer) -> new_esEs18(vyw113, vyw115) new_lt5(vyw591, vyw601, ty_Float) -> new_lt15(vyw591, vyw601) new_esEs26(vyw591, vyw601, ty_Integer) -> new_esEs18(vyw591, vyw601) new_esEs6(vyw30, vyw400, ty_Bool) -> new_esEs14(vyw30, vyw400) new_ltEs20(vyw59, vyw60, ty_Char) -> new_ltEs15(vyw59, vyw60) new_esEs4(vyw32, vyw402, app(ty_Ratio, dgg)) -> new_esEs23(vyw32, vyw402, dgg) new_esEs5(vyw31, vyw401, ty_Integer) -> new_esEs18(vyw31, vyw401) new_esEs32(vyw113, vyw115, ty_Char) -> new_esEs20(vyw113, vyw115) new_esEs25(LT, LT) -> True new_compare6(Right(vyw30), Right(vyw400), fb, fc) -> new_compare25(vyw30, vyw400, new_esEs8(vyw30, vyw400, fc), fb, fc) new_ltEs7(Right(vyw590), Right(vyw600), bcf, app(ty_Maybe, bdg)) -> new_ltEs12(vyw590, vyw600, bdg) new_esEs5(vyw31, vyw401, ty_Char) -> new_esEs20(vyw31, vyw401) new_esEs35(vyw302, vyw4002, app(ty_Ratio, fae)) -> new_esEs23(vyw302, vyw4002, fae) new_asAs(True, vyw131) -> vyw131 new_esEs22(@0, @0) -> True new_esEs32(vyw113, vyw115, ty_Ordering) -> new_esEs25(vyw113, vyw115) new_esEs32(vyw113, vyw115, app(app(ty_@2, cca), ccb)) -> new_esEs21(vyw113, vyw115, cca, ccb) new_esEs5(vyw31, vyw401, ty_Ordering) -> new_esEs25(vyw31, vyw401) new_esEs24(Just(vyw300), Just(vyw4000), app(app(ty_Either, egg), egh)) -> new_esEs19(vyw300, vyw4000, egg, egh) new_compare9(:%(vyw30, vyw31), :%(vyw400, vyw401), ty_Integer) -> new_compare14(new_sr0(vyw30, vyw401), new_sr0(vyw400, vyw31)) new_esEs26(vyw591, vyw601, app(app(ty_@2, hh), baa)) -> new_esEs21(vyw591, vyw601, hh, baa) new_esEs26(vyw591, vyw601, ty_Ordering) -> new_esEs25(vyw591, vyw601) new_ltEs22(vyw114, vyw116, app(app(ty_@2, cdc), cdd)) -> new_ltEs10(vyw114, vyw116, cdc, cdd) new_ltEs16(vyw59, vyw60) -> new_fsEs(new_compare14(vyw59, vyw60)) new_esEs10(vyw30, vyw400, app(ty_[], fee)) -> new_esEs16(vyw30, vyw400, fee) new_esEs4(vyw32, vyw402, app(app(app(ty_@3, dfh), dga), dgb)) -> new_esEs17(vyw32, vyw402, dfh, dga, dgb) new_ltEs7(Left(vyw590), Left(vyw600), app(ty_Maybe, bce), bbg) -> new_ltEs12(vyw590, vyw600, bce) new_esEs4(vyw32, vyw402, ty_Double) -> new_esEs15(vyw32, vyw402) new_esEs5(vyw31, vyw401, app(app(ty_@2, efb), efc)) -> new_esEs21(vyw31, vyw401, efb, efc) new_lt4(vyw590, vyw600, ty_@0) -> new_lt19(vyw590, vyw600) new_esEs38(vyw101, vyw104, ty_Int) -> new_esEs13(vyw101, vyw104) new_esEs26(vyw591, vyw601, ty_Char) -> new_esEs20(vyw591, vyw601) new_ltEs7(Left(vyw590), Left(vyw600), ty_@0, bbg) -> new_ltEs18(vyw590, vyw600) new_lt21(vyw113, vyw115, app(ty_[], cbh)) -> new_lt9(vyw113, vyw115, cbh) new_compare27(True, True) -> EQ new_ltEs22(vyw114, vyw116, app(app(ty_Either, cch), cda)) -> new_ltEs7(vyw114, vyw116, cch, cda) new_ltEs5(vyw592, vyw602, ty_@0) -> new_ltEs18(vyw592, vyw602) new_esEs11(vyw30, vyw400, ty_Float) -> new_esEs12(vyw30, vyw400) new_compare24(vyw59, vyw60, True, dfa, gb) -> EQ new_ltEs24(vyw102, vyw105, app(ty_[], ec)) -> new_ltEs8(vyw102, vyw105, ec) new_ltEs22(vyw114, vyw116, ty_@0) -> new_ltEs18(vyw114, vyw116) new_compare211(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, True, cc, bc, bd) -> EQ new_primCmpInt(Pos(Succ(vyw300)), Pos(vyw400)) -> new_primCmpNat0(Succ(vyw300), vyw400) new_esEs8(vyw30, vyw400, app(ty_[], ddd)) -> new_esEs16(vyw30, vyw400, ddd) new_ltEs21(vyw66, vyw67, app(ty_Maybe, cga)) -> new_ltEs12(vyw66, vyw67, cga) new_ltEs12(Just(vyw590), Just(vyw600), ty_@0) -> new_ltEs18(vyw590, vyw600) new_ltEs21(vyw66, vyw67, ty_Int) -> new_ltEs17(vyw66, vyw67) new_esEs38(vyw101, vyw104, ty_@0) -> new_esEs22(vyw101, vyw104) new_compare6(Right(vyw30), Left(vyw400), fb, fc) -> GT new_lt13(vyw3, vyw40, cdf) -> new_esEs29(new_compare7(vyw3, vyw40, cdf)) new_ltEs11(GT, GT) -> True new_primCompAux00(vyw72, EQ) -> vyw72 new_esEs39(vyw100, vyw103, app(app(ty_Either, be), bf)) -> new_esEs19(vyw100, vyw103, be, bf) new_sr(vyw400, vyw31) -> new_primMulInt(vyw400, vyw31) new_lt4(vyw590, vyw600, ty_Int) -> new_lt18(vyw590, vyw600) new_lt18(vyw3, vyw40) -> new_esEs29(new_compare31(vyw3, vyw40)) new_ltEs21(vyw66, vyw67, app(app(ty_Either, cfd), cfe)) -> new_ltEs7(vyw66, vyw67, cfd, cfe) new_compare8(GT, EQ) -> GT new_esEs4(vyw32, vyw402, ty_Float) -> new_esEs12(vyw32, vyw402) new_ltEs9(False, False) -> True new_primMulNat0(Zero, Zero) -> Zero new_esEs39(vyw100, vyw103, ty_Double) -> new_esEs15(vyw100, vyw103) new_esEs11(vyw30, vyw400, app(app(ty_@2, dhg), dhh)) -> new_esEs21(vyw30, vyw400, dhg, dhh) new_compare27(True, False) -> GT new_lt12(vyw3, vyw40) -> new_esEs29(new_compare8(vyw3, vyw40)) new_compare8(LT, LT) -> EQ new_ltEs4(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), ha, fh, ga) -> new_pePe(new_lt4(vyw590, vyw600, ha), new_asAs(new_esEs27(vyw590, vyw600, ha), new_pePe(new_lt5(vyw591, vyw601, fh), new_asAs(new_esEs26(vyw591, vyw601, fh), new_ltEs5(vyw592, vyw602, ga))))) new_ltEs14(vyw59, vyw60) -> new_fsEs(new_compare29(vyw59, vyw60)) new_ltEs22(vyw114, vyw116, app(app(app(ty_@3, cce), ccf), ccg)) -> new_ltEs4(vyw114, vyw116, cce, ccf, ccg) new_esEs34(vyw300, vyw4000, app(app(ty_Either, edf), edg)) -> new_esEs19(vyw300, vyw4000, edf, edg) new_ltEs19(vyw591, vyw601, app(ty_[], bga)) -> new_ltEs8(vyw591, vyw601, bga) new_ltEs20(vyw59, vyw60, ty_Bool) -> new_ltEs9(vyw59, vyw60) new_ltEs20(vyw59, vyw60, app(ty_Maybe, dfb)) -> new_ltEs12(vyw59, vyw60, dfb) new_compare8(LT, EQ) -> LT new_compare17(vyw30, vyw400, ty_Double) -> new_compare19(vyw30, vyw400) new_esEs9(vyw31, vyw401, app(app(ty_@2, fea), feb)) -> new_esEs21(vyw31, vyw401, fea, feb) new_esEs4(vyw32, vyw402, app(ty_Maybe, dgh)) -> new_esEs24(vyw32, vyw402, dgh) new_esEs40(vyw300, vyw4000, app(app(ty_Either, fgf), fgg)) -> new_esEs19(vyw300, vyw4000, fgf, fgg) new_esEs32(vyw113, vyw115, ty_Float) -> new_esEs12(vyw113, vyw115) new_ltEs24(vyw102, vyw105, ty_Ordering) -> new_ltEs11(vyw102, vyw105) new_ltEs20(vyw59, vyw60, ty_Double) -> new_ltEs6(vyw59, vyw60) new_ltEs5(vyw592, vyw602, ty_Float) -> new_ltEs14(vyw592, vyw602) new_ltEs19(vyw591, vyw601, app(ty_Ratio, chh)) -> new_ltEs13(vyw591, vyw601, chh) new_ltEs21(vyw66, vyw67, app(app(ty_@2, cfg), cfh)) -> new_ltEs10(vyw66, vyw67, cfg, cfh) new_esEs39(vyw100, vyw103, app(app(app(ty_@3, h), ba), bb)) -> new_esEs17(vyw100, vyw103, h, ba, bb) new_lt19(vyw3, vyw40) -> new_esEs29(new_compare32(vyw3, vyw40)) new_esEs9(vyw31, vyw401, ty_Ordering) -> new_esEs25(vyw31, vyw401) new_esEs39(vyw100, vyw103, app(ty_Ratio, ffg)) -> new_esEs23(vyw100, vyw103, ffg) new_esEs27(vyw590, vyw600, ty_Ordering) -> new_esEs25(vyw590, vyw600) new_esEs37(vyw300, vyw4000, ty_Int) -> new_esEs13(vyw300, vyw4000) new_esEs9(vyw31, vyw401, ty_Integer) -> new_esEs18(vyw31, vyw401) new_lt5(vyw591, vyw601, app(ty_[], hg)) -> new_lt9(vyw591, vyw601, hg) new_esEs27(vyw590, vyw600, app(app(ty_@2, gf), gg)) -> new_esEs21(vyw590, vyw600, gf, gg) new_compare32(@0, @0) -> EQ new_lt21(vyw113, vyw115, ty_@0) -> new_lt19(vyw113, vyw115) new_esEs33(vyw301, vyw4001, app(app(ty_@2, ecf), ecg)) -> new_esEs21(vyw301, vyw4001, ecf, ecg) new_lt20(vyw590, vyw600, ty_Int) -> new_lt18(vyw590, vyw600) new_esEs5(vyw31, vyw401, app(ty_Maybe, efe)) -> new_esEs24(vyw31, vyw401, efe) new_esEs26(vyw591, vyw601, ty_Float) -> new_esEs12(vyw591, vyw601) new_ltEs13(vyw59, vyw60, dfc) -> new_fsEs(new_compare9(vyw59, vyw60, dfc)) new_esEs19(Right(vyw300), Right(vyw4000), dbf, ty_Float) -> new_esEs12(vyw300, vyw4000) new_esEs9(vyw31, vyw401, app(app(app(ty_@3, fdd), fde), fdf)) -> new_esEs17(vyw31, vyw401, fdd, fde, fdf) new_ltEs9(True, False) -> False new_ltEs20(vyw59, vyw60, app(ty_[], bdh)) -> new_ltEs8(vyw59, vyw60, bdh) new_ltEs19(vyw591, vyw601, ty_Int) -> new_ltEs17(vyw591, vyw601) new_esEs7(vyw30, vyw400, ty_Int) -> new_esEs13(vyw30, vyw400) new_esEs11(vyw30, vyw400, ty_Integer) -> new_esEs18(vyw30, vyw400) new_esEs10(vyw30, vyw400, ty_Float) -> new_esEs12(vyw30, vyw400) new_esEs28(vyw590, vyw600, ty_@0) -> new_esEs22(vyw590, vyw600) new_primEqInt(Neg(Succ(vyw3000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(vyw40000))) -> False new_esEs9(vyw31, vyw401, app(ty_Ratio, fec)) -> new_esEs23(vyw31, vyw401, fec) new_lt4(vyw590, vyw600, app(ty_[], ge)) -> new_lt9(vyw590, vyw600, ge) new_ltEs20(vyw59, vyw60, app(ty_Ratio, dfc)) -> new_ltEs13(vyw59, vyw60, dfc) new_compare19(Double(vyw30, Pos(vyw310)), Double(vyw400, Neg(vyw4010))) -> new_compare31(new_sr(vyw30, Pos(vyw4010)), new_sr(Neg(vyw310), vyw400)) new_compare19(Double(vyw30, Neg(vyw310)), Double(vyw400, Pos(vyw4010))) -> new_compare31(new_sr(vyw30, Neg(vyw4010)), new_sr(Pos(vyw310), vyw400)) new_compare7(Just(vyw30), Nothing, cdf) -> GT new_primEqInt(Pos(Succ(vyw3000)), Pos(Succ(vyw40000))) -> new_primEqNat0(vyw3000, vyw40000) new_ltEs7(Right(vyw590), Right(vyw600), bcf, ty_Char) -> new_ltEs15(vyw590, vyw600) new_lt20(vyw590, vyw600, ty_Double) -> new_lt7(vyw590, vyw600) new_lt23(vyw101, vyw104, app(app(app(ty_@3, cd), ce), cf)) -> new_lt6(vyw101, vyw104, cd, ce, cf) new_ltEs15(vyw59, vyw60) -> new_fsEs(new_compare30(vyw59, vyw60)) new_esEs5(vyw31, vyw401, ty_Bool) -> new_esEs14(vyw31, vyw401) new_lt5(vyw591, vyw601, ty_@0) -> new_lt19(vyw591, vyw601) new_esEs34(vyw300, vyw4000, ty_@0) -> new_esEs22(vyw300, vyw4000) new_lt23(vyw101, vyw104, ty_Ordering) -> new_lt12(vyw101, vyw104) new_esEs7(vyw30, vyw400, app(ty_[], cgb)) -> new_esEs16(vyw30, vyw400, cgb) new_ltEs19(vyw591, vyw601, app(ty_Maybe, bgd)) -> new_ltEs12(vyw591, vyw601, bgd) new_lt20(vyw590, vyw600, app(app(ty_@2, beh), bfa)) -> new_lt11(vyw590, vyw600, beh, bfa) new_esEs14(False, False) -> True new_primEqInt(Pos(Succ(vyw3000)), Neg(vyw4000)) -> False new_primEqInt(Neg(Succ(vyw3000)), Pos(vyw4000)) -> False new_compare10(vyw180, vyw181, vyw182, vyw183, True, vyw185, daa, dab) -> new_compare11(vyw180, vyw181, vyw182, vyw183, True, daa, dab) new_esEs11(vyw30, vyw400, app(ty_Maybe, eab)) -> new_esEs24(vyw30, vyw400, eab) new_esEs10(vyw30, vyw400, ty_Double) -> new_esEs15(vyw30, vyw400) new_primCmpInt(Neg(Zero), Neg(Succ(vyw4000))) -> new_primCmpNat0(Succ(vyw4000), Zero) new_lt20(vyw590, vyw600, app(ty_Ratio, chg)) -> new_lt14(vyw590, vyw600, chg) new_esEs35(vyw302, vyw4002, app(app(ty_Either, faa), fab)) -> new_esEs19(vyw302, vyw4002, faa, fab) new_compare19(Double(vyw30, Neg(vyw310)), Double(vyw400, Neg(vyw4010))) -> new_compare31(new_sr(vyw30, Neg(vyw4010)), new_sr(Neg(vyw310), vyw400)) new_esEs19(Right(vyw300), Right(vyw4000), dbf, app(ty_[], dbg)) -> new_esEs16(vyw300, vyw4000, dbg) new_esEs11(vyw30, vyw400, ty_Ordering) -> new_esEs25(vyw30, vyw400) new_esEs36(vyw301, vyw4001, ty_Char) -> new_esEs20(vyw301, vyw4001) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs19(Right(vyw300), Right(vyw4000), dbf, app(app(app(ty_@3, dbh), dca), dcb)) -> new_esEs17(vyw300, vyw4000, dbh, dca, dcb) new_esEs34(vyw300, vyw4000, ty_Double) -> new_esEs15(vyw300, vyw4000) new_ltEs19(vyw591, vyw601, app(app(app(ty_@3, bfd), bfe), bff)) -> new_ltEs4(vyw591, vyw601, bfd, bfe, bff) new_compare17(vyw30, vyw400, ty_Float) -> new_compare29(vyw30, vyw400) new_esEs34(vyw300, vyw4000, ty_Bool) -> new_esEs14(vyw300, vyw4000) new_esEs35(vyw302, vyw4002, app(ty_Maybe, faf)) -> new_esEs24(vyw302, vyw4002, faf) new_compare17(vyw30, vyw400, app(app(app(ty_@3, bhg), bhh), caa)) -> new_compare18(vyw30, vyw400, bhg, bhh, caa) new_esEs19(Right(vyw300), Right(vyw4000), dbf, app(app(ty_Either, dcc), dcd)) -> new_esEs19(vyw300, vyw4000, dcc, dcd) new_compare13(vyw136, vyw137, True, ddb, ddc) -> LT new_esEs26(vyw591, vyw601, ty_@0) -> new_esEs22(vyw591, vyw601) new_esEs11(vyw30, vyw400, ty_Bool) -> new_esEs14(vyw30, vyw400) new_esEs40(vyw300, vyw4000, app(ty_Ratio, fhb)) -> new_esEs23(vyw300, vyw4000, fhb) new_compare12(vyw153, vyw154, True, dda) -> LT new_esEs5(vyw31, vyw401, ty_Int) -> new_esEs13(vyw31, vyw401) new_esEs9(vyw31, vyw401, app(ty_[], fdc)) -> new_esEs16(vyw31, vyw401, fdc) new_lt22(vyw100, vyw103, ty_Double) -> new_lt7(vyw100, vyw103) new_compare8(GT, LT) -> GT new_compare7(Nothing, Nothing, cdf) -> EQ new_esEs35(vyw302, vyw4002, ty_Char) -> new_esEs20(vyw302, vyw4002) new_compare24(vyw59, vyw60, False, dfa, gb) -> new_compare13(vyw59, vyw60, new_ltEs20(vyw59, vyw60, dfa), dfa, gb) new_ltEs20(vyw59, vyw60, ty_Int) -> new_ltEs17(vyw59, vyw60) new_esEs11(vyw30, vyw400, ty_Double) -> new_esEs15(vyw30, vyw400) new_ltEs21(vyw66, vyw67, ty_Ordering) -> new_ltEs11(vyw66, vyw67) new_ltEs23(vyw89, vyw90, app(ty_[], ced)) -> new_ltEs8(vyw89, vyw90, ced) new_esEs35(vyw302, vyw4002, ty_Float) -> new_esEs12(vyw302, vyw4002) new_esEs10(vyw30, vyw400, ty_Char) -> new_esEs20(vyw30, vyw400) new_esEs7(vyw30, vyw400, ty_Bool) -> new_esEs14(vyw30, vyw400) new_ltEs7(Left(vyw590), Left(vyw600), app(ty_[], bcb), bbg) -> new_ltEs8(vyw590, vyw600, bcb) new_esEs19(Left(vyw300), Left(vyw4000), ty_Integer, dac) -> new_esEs18(vyw300, vyw4000) new_esEs7(vyw30, vyw400, app(ty_Ratio, chb)) -> new_esEs23(vyw30, vyw400, chb) new_esEs8(vyw30, vyw400, ty_Char) -> new_esEs20(vyw30, vyw400) new_lt11(vyw3, vyw40, cah, cba) -> new_esEs29(new_compare28(vyw3, vyw40, cah, cba)) new_esEs27(vyw590, vyw600, app(ty_Maybe, gh)) -> new_esEs24(vyw590, vyw600, gh) new_esEs19(Left(vyw300), Left(vyw4000), app(ty_[], dad), dac) -> new_esEs16(vyw300, vyw4000, dad) new_esEs4(vyw32, vyw402, ty_Integer) -> new_esEs18(vyw32, vyw402) new_esEs38(vyw101, vyw104, app(app(ty_Either, cg), da)) -> new_esEs19(vyw101, vyw104, cg, da) new_esEs40(vyw300, vyw4000, ty_Int) -> new_esEs13(vyw300, vyw4000) new_esEs24(Just(vyw300), Just(vyw4000), ty_Int) -> new_esEs13(vyw300, vyw4000) new_not(False) -> True new_compare8(EQ, LT) -> GT new_esEs19(Left(vyw300), Left(vyw4000), ty_Ordering, dac) -> new_esEs25(vyw300, vyw4000) new_esEs36(vyw301, vyw4001, app(ty_[], fag)) -> new_esEs16(vyw301, vyw4001, fag) new_lt22(vyw100, vyw103, app(app(ty_Either, be), bf)) -> new_lt8(vyw100, vyw103, be, bf) new_compare15(vyw165, vyw166, vyw167, vyw168, vyw169, vyw170, False, vyw172, dfd, dfe, dff) -> new_compare16(vyw165, vyw166, vyw167, vyw168, vyw169, vyw170, vyw172, dfd, dfe, dff) new_esEs9(vyw31, vyw401, ty_Double) -> new_esEs15(vyw31, vyw401) new_esEs26(vyw591, vyw601, app(app(app(ty_@3, hb), hc), hd)) -> new_esEs17(vyw591, vyw601, hb, hc, hd) new_esEs26(vyw591, vyw601, ty_Double) -> new_esEs15(vyw591, vyw601) new_esEs27(vyw590, vyw600, ty_Integer) -> new_esEs18(vyw590, vyw600) new_ltEs12(Just(vyw590), Just(vyw600), ty_Integer) -> new_ltEs16(vyw590, vyw600) new_esEs19(Left(vyw300), Left(vyw4000), app(ty_Ratio, dbd), dac) -> new_esEs23(vyw300, vyw4000, dbd) new_esEs25(LT, EQ) -> False new_esEs25(EQ, LT) -> False new_esEs24(Just(vyw300), Just(vyw4000), app(ty_Ratio, ehc)) -> new_esEs23(vyw300, vyw4000, ehc) new_esEs4(vyw32, vyw402, app(app(ty_Either, dgc), dgd)) -> new_esEs19(vyw32, vyw402, dgc, dgd) new_esEs28(vyw590, vyw600, app(app(ty_Either, bee), bef)) -> new_esEs19(vyw590, vyw600, bee, bef) new_esEs9(vyw31, vyw401, ty_Bool) -> new_esEs14(vyw31, vyw401) new_esEs30(vyw301, vyw4001, ty_Int) -> new_esEs13(vyw301, vyw4001) new_compare7(Just(vyw30), Just(vyw400), cdf) -> new_compare26(vyw30, vyw400, new_esEs11(vyw30, vyw400, cdf), cdf) new_esEs38(vyw101, vyw104, app(app(ty_@2, dc), dd)) -> new_esEs21(vyw101, vyw104, dc, dd) new_primPlusNat0(Succ(vyw1930), vyw3100) -> Succ(Succ(new_primPlusNat1(vyw1930, vyw3100))) new_esEs28(vyw590, vyw600, app(ty_Ratio, chg)) -> new_esEs23(vyw590, vyw600, chg) new_compare17(vyw30, vyw400, app(app(ty_Either, cab), cac)) -> new_compare6(vyw30, vyw400, cab, cac) new_lt21(vyw113, vyw115, app(ty_Ratio, ebf)) -> new_lt14(vyw113, vyw115, ebf) new_esEs36(vyw301, vyw4001, app(app(ty_Either, fbc), fbd)) -> new_esEs19(vyw301, vyw4001, fbc, fbd) new_esEs19(Right(vyw300), Right(vyw4000), dbf, app(app(ty_@2, dce), dcf)) -> new_esEs21(vyw300, vyw4000, dce, dcf) new_ltEs7(Left(vyw590), Left(vyw600), ty_Integer, bbg) -> new_ltEs16(vyw590, vyw600) new_esEs5(vyw31, vyw401, app(ty_Ratio, efd)) -> new_esEs23(vyw31, vyw401, efd) new_ltEs11(LT, EQ) -> True new_esEs11(vyw30, vyw400, app(app(app(ty_@3, dhb), dhc), dhd)) -> new_esEs17(vyw30, vyw400, dhb, dhc, dhd) new_ltEs24(vyw102, vyw105, app(ty_Maybe, ef)) -> new_ltEs12(vyw102, vyw105, ef) new_ltEs5(vyw592, vyw602, app(app(app(ty_@3, bac), bad), bae)) -> new_ltEs4(vyw592, vyw602, bac, bad, bae) new_esEs19(Right(vyw300), Right(vyw4000), dbf, ty_Char) -> new_esEs20(vyw300, vyw4000) new_esEs32(vyw113, vyw115, app(ty_Ratio, ebf)) -> new_esEs23(vyw113, vyw115, ebf) new_ltEs21(vyw66, vyw67, app(ty_[], cff)) -> new_ltEs8(vyw66, vyw67, cff) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_lt4(vyw590, vyw600, ty_Integer) -> new_lt17(vyw590, vyw600) new_esEs38(vyw101, vyw104, ty_Ordering) -> new_esEs25(vyw101, vyw104) new_compare13(vyw136, vyw137, False, ddb, ddc) -> GT new_esEs26(vyw591, vyw601, ty_Int) -> new_esEs13(vyw591, vyw601) new_ltEs7(Right(vyw590), Right(vyw600), bcf, ty_Double) -> new_ltEs6(vyw590, vyw600) new_esEs37(vyw300, vyw4000, ty_Float) -> new_esEs12(vyw300, vyw4000) new_primPlusNat1(Zero, Zero) -> Zero new_esEs38(vyw101, vyw104, ty_Integer) -> new_esEs18(vyw101, vyw104) new_esEs34(vyw300, vyw4000, app(app(app(ty_@3, edc), edd), ede)) -> new_esEs17(vyw300, vyw4000, edc, edd, ede) new_ltEs7(Right(vyw590), Right(vyw600), bcf, ty_Bool) -> new_ltEs9(vyw590, vyw600) new_lt21(vyw113, vyw115, ty_Float) -> new_lt15(vyw113, vyw115) new_compare210(vyw113, vyw114, vyw115, vyw116, False, ccd, cbe) -> new_compare10(vyw113, vyw114, vyw115, vyw116, new_lt21(vyw113, vyw115, ccd), new_asAs(new_esEs32(vyw113, vyw115, ccd), new_ltEs22(vyw114, vyw116, cbe)), ccd, cbe) new_lt23(vyw101, vyw104, ty_Bool) -> new_lt10(vyw101, vyw104) new_compare211(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, cc, bc, bd) -> new_compare15(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, new_lt22(vyw100, vyw103, cc), new_asAs(new_esEs39(vyw100, vyw103, cc), new_pePe(new_lt23(vyw101, vyw104, bc), new_asAs(new_esEs38(vyw101, vyw104, bc), new_ltEs24(vyw102, vyw105, bd)))), cc, bc, bd) new_compare7(Nothing, Just(vyw400), cdf) -> LT new_compare17(vyw30, vyw400, ty_Char) -> new_compare30(vyw30, vyw400) new_ltEs12(Nothing, Just(vyw600), dfb) -> True new_lt5(vyw591, vyw601, ty_Integer) -> new_lt17(vyw591, vyw601) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_lt10(vyw3, vyw40) -> new_esEs29(new_compare27(vyw3, vyw40)) new_esEs26(vyw591, vyw601, app(app(ty_Either, he), hf)) -> new_esEs19(vyw591, vyw601, he, hf) new_ltEs12(Just(vyw590), Just(vyw600), app(ty_Ratio, eff)) -> new_ltEs13(vyw590, vyw600, eff) new_ltEs21(vyw66, vyw67, app(app(app(ty_@3, cfa), cfb), cfc)) -> new_ltEs4(vyw66, vyw67, cfa, cfb, cfc) new_esEs37(vyw300, vyw4000, ty_Integer) -> new_esEs18(vyw300, vyw4000) new_primMulNat0(Succ(vyw40000), Succ(vyw3100)) -> new_primPlusNat0(new_primMulNat0(vyw40000, Succ(vyw3100)), vyw3100) new_compare29(Float(vyw30, Pos(vyw310)), Float(vyw400, Pos(vyw4010))) -> new_compare31(new_sr(vyw30, Pos(vyw4010)), new_sr(Pos(vyw310), vyw400)) new_ltEs7(Left(vyw590), Left(vyw600), ty_Float, bbg) -> new_ltEs14(vyw590, vyw600) new_esEs37(vyw300, vyw4000, ty_@0) -> new_esEs22(vyw300, vyw4000) new_lt22(vyw100, vyw103, app(ty_[], bg)) -> new_lt9(vyw100, vyw103, bg) new_lt4(vyw590, vyw600, ty_Char) -> new_lt16(vyw590, vyw600) new_ltEs19(vyw591, vyw601, ty_Ordering) -> new_ltEs11(vyw591, vyw601) new_lt5(vyw591, vyw601, app(app(app(ty_@3, hb), hc), hd)) -> new_lt6(vyw591, vyw601, hb, hc, hd) new_primCmpNat0(Succ(vyw300), Succ(vyw4000)) -> new_primCmpNat0(vyw300, vyw4000) new_lt20(vyw590, vyw600, ty_Char) -> new_lt16(vyw590, vyw600) new_lt21(vyw113, vyw115, app(app(app(ty_@3, cbb), cbc), cbd)) -> new_lt6(vyw113, vyw115, cbb, cbc, cbd) new_ltEs10(@2(vyw590, vyw591), @2(vyw600, vyw601), bfc, bed) -> new_pePe(new_lt20(vyw590, vyw600, bfc), new_asAs(new_esEs28(vyw590, vyw600, bfc), new_ltEs19(vyw591, vyw601, bed))) new_lt22(vyw100, vyw103, ty_@0) -> new_lt19(vyw100, vyw103) new_ltEs7(Left(vyw590), Left(vyw600), app(app(app(ty_@3, bbd), bbe), bbf), bbg) -> new_ltEs4(vyw590, vyw600, bbd, bbe, bbf) new_compare17(vyw30, vyw400, app(ty_Maybe, cag)) -> new_compare7(vyw30, vyw400, cag) new_ltEs11(LT, GT) -> True new_compare29(Float(vyw30, Neg(vyw310)), Float(vyw400, Neg(vyw4010))) -> new_compare31(new_sr(vyw30, Neg(vyw4010)), new_sr(Neg(vyw310), vyw400)) new_compare30(Char(vyw30), Char(vyw400)) -> new_primCmpNat0(vyw30, vyw400) new_esEs28(vyw590, vyw600, ty_Int) -> new_esEs13(vyw590, vyw600) new_compare8(EQ, EQ) -> EQ new_ltEs23(vyw89, vyw90, ty_Int) -> new_ltEs17(vyw89, vyw90) new_esEs36(vyw301, vyw4001, ty_Ordering) -> new_esEs25(vyw301, vyw4001) new_esEs36(vyw301, vyw4001, app(app(ty_@2, fbe), fbf)) -> new_esEs21(vyw301, vyw4001, fbe, fbf) new_esEs27(vyw590, vyw600, app(app(ty_Either, gc), gd)) -> new_esEs19(vyw590, vyw600, gc, gd) new_esEs24(Nothing, Nothing, ebc) -> True new_ltEs22(vyw114, vyw116, app(ty_Maybe, cde)) -> new_ltEs12(vyw114, vyw116, cde) new_compare3(:(vyw30, vyw31), [], bhf) -> GT new_ltEs12(Nothing, Nothing, dfb) -> True new_esEs16(:(vyw300, vyw301), [], eae) -> False new_esEs16([], :(vyw4000, vyw4001), eae) -> False new_lt23(vyw101, vyw104, app(ty_[], db)) -> new_lt9(vyw101, vyw104, db) new_ltEs12(Just(vyw590), Nothing, dfb) -> False new_esEs36(vyw301, vyw4001, ty_Integer) -> new_esEs18(vyw301, vyw4001) new_esEs36(vyw301, vyw4001, ty_@0) -> new_esEs22(vyw301, vyw4001) new_lt23(vyw101, vyw104, ty_Float) -> new_lt15(vyw101, vyw104) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_ltEs24(vyw102, vyw105, ty_Char) -> new_ltEs15(vyw102, vyw105) new_esEs29(LT) -> True new_lt21(vyw113, vyw115, ty_Integer) -> new_lt17(vyw113, vyw115) new_lt20(vyw590, vyw600, app(app(app(ty_@3, bea), beb), bec)) -> new_lt6(vyw590, vyw600, bea, beb, bec) new_ltEs12(Just(vyw590), Just(vyw600), ty_Float) -> new_ltEs14(vyw590, vyw600) new_compare110(vyw143, vyw144, False, efg, efh) -> GT new_esEs27(vyw590, vyw600, ty_Int) -> new_esEs13(vyw590, vyw600) new_ltEs23(vyw89, vyw90, ty_Bool) -> new_ltEs9(vyw89, vyw90) new_primEqNat0(Zero, Zero) -> True new_esEs37(vyw300, vyw4000, ty_Ordering) -> new_esEs25(vyw300, vyw4000) new_esEs37(vyw300, vyw4000, app(app(ty_@2, fcg), fch)) -> new_esEs21(vyw300, vyw4000, fcg, fch) new_ltEs23(vyw89, vyw90, app(ty_Maybe, ceg)) -> new_ltEs12(vyw89, vyw90, ceg) new_esEs36(vyw301, vyw4001, ty_Double) -> new_esEs15(vyw301, vyw4001) new_esEs36(vyw301, vyw4001, app(app(app(ty_@3, fah), fba), fbb)) -> new_esEs17(vyw301, vyw4001, fah, fba, fbb) new_ltEs23(vyw89, vyw90, app(app(ty_Either, ceb), cec)) -> new_ltEs7(vyw89, vyw90, ceb, cec) new_esEs12(Float(vyw300, vyw301), Float(vyw4000, vyw4001)) -> new_esEs13(new_sr(vyw300, vyw4001), new_sr(vyw301, vyw4000)) new_ltEs23(vyw89, vyw90, ty_Double) -> new_ltEs6(vyw89, vyw90) new_esEs24(Nothing, Just(vyw4000), ebc) -> False new_esEs24(Just(vyw300), Nothing, ebc) -> False new_lt23(vyw101, vyw104, app(app(ty_Either, cg), da)) -> new_lt8(vyw101, vyw104, cg, da) new_esEs37(vyw300, vyw4000, app(ty_Maybe, fdb)) -> new_esEs24(vyw300, vyw4000, fdb) new_ltEs22(vyw114, vyw116, ty_Int) -> new_ltEs17(vyw114, vyw116) new_lt22(vyw100, vyw103, ty_Float) -> new_lt15(vyw100, vyw103) new_esEs32(vyw113, vyw115, ty_Bool) -> new_esEs14(vyw113, vyw115) new_lt20(vyw590, vyw600, ty_Integer) -> new_lt17(vyw590, vyw600) new_asAs(False, vyw131) -> False new_esEs33(vyw301, vyw4001, ty_Char) -> new_esEs20(vyw301, vyw4001) new_esEs19(Left(vyw300), Right(vyw4000), dbf, dac) -> False new_esEs19(Right(vyw300), Left(vyw4000), dbf, dac) -> False new_lt23(vyw101, vyw104, app(ty_Ratio, ffh)) -> new_lt14(vyw101, vyw104, ffh) new_esEs4(vyw32, vyw402, ty_Int) -> new_esEs13(vyw32, vyw402) new_esEs19(Right(vyw300), Right(vyw4000), dbf, ty_Bool) -> new_esEs14(vyw300, vyw4000) new_esEs25(EQ, EQ) -> True new_ltEs20(vyw59, vyw60, app(app(app(ty_@3, ha), fh), ga)) -> new_ltEs4(vyw59, vyw60, ha, fh, ga) new_esEs34(vyw300, vyw4000, app(ty_[], edb)) -> new_esEs16(vyw300, vyw4000, edb) new_compare10(vyw180, vyw181, vyw182, vyw183, False, vyw185, daa, dab) -> new_compare11(vyw180, vyw181, vyw182, vyw183, vyw185, daa, dab) new_ltEs7(Right(vyw590), Right(vyw600), bcf, ty_Int) -> new_ltEs17(vyw590, vyw600) new_esEs8(vyw30, vyw400, ty_Bool) -> new_esEs14(vyw30, vyw400) new_esEs11(vyw30, vyw400, app(ty_[], dha)) -> new_esEs16(vyw30, vyw400, dha) new_ltEs23(vyw89, vyw90, app(app(ty_@2, cee), cef)) -> new_ltEs10(vyw89, vyw90, cee, cef) new_lt23(vyw101, vyw104, ty_Double) -> new_lt7(vyw101, vyw104) new_esEs39(vyw100, vyw103, ty_Int) -> new_esEs13(vyw100, vyw103) new_esEs6(vyw30, vyw400, app(ty_Ratio, ead)) -> new_esEs23(vyw30, vyw400, ead) new_compare14(Integer(vyw30), Integer(vyw400)) -> new_primCmpInt(vyw30, vyw400) new_esEs9(vyw31, vyw401, ty_Char) -> new_esEs20(vyw31, vyw401) new_ltEs11(EQ, LT) -> False new_lt23(vyw101, vyw104, ty_@0) -> new_lt19(vyw101, vyw104) The set Q consists of the following terms: new_esEs32(x0, x1, ty_Double) new_ltEs12(Just(x0), Just(x1), app(ty_[], x2)) new_primCompAux00(x0, EQ) new_esEs35(x0, x1, ty_Int) new_esEs8(x0, x1, ty_Int) new_esEs24(Just(x0), Just(x1), app(ty_[], x2)) new_esEs10(x0, x1, ty_Char) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs7(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare8(LT, GT) new_compare8(GT, LT) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs19(Left(x0), Left(x1), ty_Char, x2) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, ty_Float) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_esEs6(x0, x1, ty_Char) new_lt20(x0, x1, app(ty_[], x2)) new_ltEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_compare12(x0, x1, True, x2) new_esEs4(x0, x1, ty_Bool) new_esEs8(x0, x1, ty_Char) new_primPlusNat1(Zero, Zero) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(x0, x1, ty_@0) new_esEs32(x0, x1, ty_Ordering) new_ltEs5(x0, x1, ty_Float) new_esEs10(x0, x1, ty_Int) new_esEs40(x0, x1, app(ty_Maybe, x2)) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_esEs36(x0, x1, ty_Ordering) new_ltEs7(Left(x0), Left(x1), ty_Ordering, x2) new_esEs9(x0, x1, ty_Char) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_Integer) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_compare211(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs4(x0, x1, ty_@0) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_esEs5(x0, x1, ty_Bool) new_lt23(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, ty_Double) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_esEs16([], :(x0, x1), x2) new_lt4(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Pos(Zero), Pos(Zero)) new_ltEs22(x0, x1, ty_Ordering) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, ty_Float) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, app(ty_Maybe, x2)) new_compare17(x0, x1, ty_Integer) new_esEs28(x0, x1, ty_Bool) new_compare210(x0, x1, x2, x3, False, x4, x5) new_compare17(x0, x1, ty_@0) new_ltEs6(x0, x1) new_lt14(x0, x1, x2) new_esEs35(x0, x1, ty_Ordering) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(x0, x1, ty_Integer) new_esEs32(x0, x1, ty_Int) new_esEs9(x0, x1, ty_Int) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs22(x0, x1, ty_Double) new_esEs38(x0, x1, app(ty_[], x2)) new_esEs14(True, True) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, ty_Char) new_ltEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_compare27(False, False) new_esEs19(Left(x0), Left(x1), ty_Ordering, x2) new_primEqInt(Neg(Zero), Neg(Zero)) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_esEs36(x0, x1, ty_Double) new_esEs9(x0, x1, ty_@0) new_esEs25(LT, LT) new_esEs30(x0, x1, ty_Int) new_esEs19(Left(x0), Left(x1), ty_Int, x2) new_compare110(x0, x1, False, x2, x3) new_primCmpNat0(Succ(x0), Zero) new_esEs8(x0, x1, ty_Ordering) new_esEs32(x0, x1, ty_Char) new_compare29(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare29(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs24(Just(x0), Just(x1), ty_Integer) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_asAs(False, x0) new_ltEs9(True, True) new_esEs29(GT) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_compare15(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, ty_Int) new_esEs16([], [], x0) new_ltEs24(x0, x1, ty_Ordering) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs19(Left(x0), Left(x1), ty_@0, x2) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_compare10(x0, x1, x2, x3, True, x4, x5, x6) new_lt22(x0, x1, ty_Float) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs22(x0, x1, ty_Int) new_ltEs5(x0, x1, app(ty_[], x2)) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_lt5(x0, x1, app(ty_[], x2)) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs14(x0, x1) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(x0, x1, ty_@0) new_esEs24(Just(x0), Just(x1), ty_@0) new_esEs10(x0, x1, ty_Ordering) new_esEs6(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Int) new_esEs14(False, True) new_esEs14(True, False) new_esEs35(x0, x1, ty_@0) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs27(x0, x1, ty_Double) new_esEs9(x0, x1, ty_Double) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(x0, x1, app(ty_[], x2)) new_esEs6(x0, x1, ty_Bool) new_compare17(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare26(x0, x1, False, x2) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_ltEs21(x0, x1, app(ty_[], x2)) new_esEs37(x0, x1, ty_Ordering) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_esEs34(x0, x1, ty_Integer) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11(x0, x1, ty_Float) new_compare7(Nothing, Just(x0), x1) new_compare10(x0, x1, x2, x3, False, x4, x5, x6) new_ltEs7(Right(x0), Right(x1), x2, ty_Float) new_esEs26(x0, x1, ty_Char) new_ltEs5(x0, x1, app(ty_Maybe, x2)) new_compare8(EQ, EQ) new_compare29(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs24(Just(x0), Just(x1), ty_Bool) new_compare13(x0, x1, False, x2, x3) new_lt4(x0, x1, ty_Float) new_esEs35(x0, x1, ty_Bool) new_esEs19(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs25(GT, GT) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs33(x0, x1, ty_Integer) new_esEs22(@0, @0) new_esEs25(LT, EQ) new_esEs25(EQ, LT) new_esEs35(x0, x1, ty_Char) new_esEs38(x0, x1, ty_Int) new_esEs35(x0, x1, ty_Double) new_esEs6(x0, x1, ty_Int) new_ltEs12(Just(x0), Just(x1), ty_Float) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_esEs40(x0, x1, ty_Float) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs10(x0, x1, ty_Integer) new_esEs25(EQ, GT) new_esEs25(GT, EQ) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_ltEs12(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs9(x0, x1, ty_Bool) new_esEs38(x0, x1, ty_Double) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(Right(x0), Left(x1), x2, x3) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(Left(x0), Right(x1), x2, x3) new_esEs33(x0, x1, app(ty_[], x2)) new_compare8(EQ, GT) new_compare8(GT, EQ) new_esEs38(x0, x1, ty_Char) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_ltEs11(LT, EQ) new_ltEs11(EQ, LT) new_lt21(x0, x1, ty_Double) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_primEqNat0(Succ(x0), Zero) new_esEs33(x0, x1, ty_Bool) new_primPlusNat1(Zero, Succ(x0)) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt7(x0, x1) new_lt5(x0, x1, ty_Float) new_esEs36(x0, x1, ty_@0) new_sr0(Integer(x0), Integer(x1)) new_esEs23(:%(x0, x1), :%(x2, x3), x4) new_ltEs5(x0, x1, ty_@0) new_esEs7(x0, x1, ty_Integer) new_ltEs11(GT, GT) new_ltEs23(x0, x1, ty_Float) new_compare7(Just(x0), Nothing, x1) new_lt4(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, ty_Ordering) new_lt12(x0, x1) new_compare17(x0, x1, app(app(ty_@2, x2), x3)) new_asAs(True, x0) new_compare24(x0, x1, False, x2, x3) new_compare6(Left(x0), Left(x1), x2, x3) new_ltEs5(x0, x1, ty_Bool) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_compare17(x0, x1, ty_Double) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, app(ty_[], x2)) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, ty_Char) new_esEs4(x0, x1, ty_Int) new_ltEs12(Just(x0), Just(x1), app(ty_Maybe, x2)) new_ltEs22(x0, x1, ty_@0) new_esEs27(x0, x1, ty_Int) new_ltEs23(x0, x1, ty_Double) new_lt5(x0, x1, app(ty_Ratio, x2)) new_primMulInt(Pos(x0), Pos(x1)) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, ty_Integer) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_sr(x0, x1) new_esEs32(x0, x1, ty_Bool) new_esEs4(x0, x1, ty_Ordering) new_esEs30(x0, x1, ty_Integer) new_ltEs7(Left(x0), Left(x1), ty_@0, x2) new_esEs19(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs19(Right(x0), Right(x1), x2, ty_Double) new_esEs6(x0, x1, ty_Integer) new_esEs24(Just(x0), Just(x1), ty_Ordering) new_lt21(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, ty_Integer) new_primPlusNat1(Succ(x0), Zero) new_lt23(x0, x1, ty_Double) new_lt6(x0, x1, x2, x3, x4) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_lt17(x0, x1) new_lt13(x0, x1, x2) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(x0, x1, app(ty_[], x2)) new_esEs26(x0, x1, ty_Bool) new_ltEs21(x0, x1, ty_@0) new_esEs5(x0, x1, ty_Double) new_compare19(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare19(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_@0) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs39(x0, x1, ty_Double) new_ltEs22(x0, x1, app(ty_[], x2)) new_lt9(x0, x1, x2) new_esEs11(x0, x1, app(ty_[], x2)) new_ltEs7(Right(x0), Right(x1), x2, ty_Char) new_esEs4(x0, x1, ty_Float) new_lt22(x0, x1, app(ty_Ratio, x2)) new_esEs8(x0, x1, ty_@0) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs40(x0, x1, ty_Bool) new_ltEs7(Right(x0), Right(x1), x2, ty_Int) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Double) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs19(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_compare25(x0, x1, False, x2, x3) new_ltEs12(Just(x0), Just(x1), ty_Double) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_esEs5(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_esEs10(x0, x1, ty_Bool) new_esEs18(Integer(x0), Integer(x1)) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs27(x0, x1, ty_Float) new_ltEs16(x0, x1) new_esEs19(Right(x0), Right(x1), x2, ty_Ordering) new_compare3([], [], x0) new_primMulInt(Neg(x0), Neg(x1)) new_esEs24(Just(x0), Nothing, x1) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs24(Nothing, Nothing, x0) new_esEs37(x0, x1, ty_Float) new_esEs19(Left(x0), Left(x1), ty_Double, x2) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_ltEs9(False, True) new_esEs31(x0, x1, ty_Int) new_ltEs9(True, False) new_ltEs15(x0, x1) new_lt22(x0, x1, app(ty_[], x2)) new_compare7(Just(x0), Just(x1), x2) new_esEs9(x0, x1, ty_Ordering) new_ltEs5(x0, x1, app(ty_Ratio, x2)) new_esEs37(x0, x1, ty_Bool) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_ltEs7(Right(x0), Right(x1), x2, ty_Ordering) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_lt21(x0, x1, app(ty_[], x2)) new_lt4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, ty_Integer) new_compare31(x0, x1) new_ltEs7(Right(x0), Right(x1), x2, ty_Bool) new_esEs11(x0, x1, ty_Bool) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs32(x0, x1, ty_Integer) new_ltEs24(x0, x1, app(ty_[], x2)) new_fsEs(x0) new_esEs7(x0, x1, ty_@0) new_esEs40(x0, x1, app(ty_Ratio, x2)) new_lt5(x0, x1, ty_Char) new_ltEs10(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs24(x0, x1, ty_Double) new_compare3([], :(x0, x1), x2) new_ltEs5(x0, x1, ty_Integer) new_ltEs20(x0, x1, ty_@0) new_esEs19(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs28(x0, x1, ty_Float) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, ty_Double) new_ltEs7(Right(x0), Right(x1), x2, ty_Integer) new_ltEs4(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs37(x0, x1, ty_Int) new_esEs4(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Double) new_ltEs11(EQ, EQ) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Double) new_lt5(x0, x1, ty_Int) new_esEs40(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(x0, x1, ty_Ordering) new_esEs40(x0, x1, ty_Ordering) new_esEs34(x0, x1, ty_Double) new_compare3(:(x0, x1), :(x2, x3), x4) new_primCompAux00(x0, LT) new_esEs34(x0, x1, ty_@0) new_esEs28(x0, x1, ty_Char) new_compare3(:(x0, x1), [], x2) new_lt4(x0, x1, ty_Integer) new_compare14(Integer(x0), Integer(x1)) new_ltEs12(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, ty_Ordering) new_pePe(False, x0) new_compare18(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt4(x0, x1, ty_Ordering) new_esEs40(x0, x1, ty_Integer) new_lt23(x0, x1, ty_@0) new_ltEs7(Left(x0), Left(x1), ty_Double, x2) new_lt20(x0, x1, app(ty_Ratio, x2)) new_ltEs5(x0, x1, ty_Ordering) new_compare7(Nothing, Nothing, x0) new_esEs10(x0, x1, ty_Float) new_esEs19(Left(x0), Right(x1), x2, x3) new_esEs19(Right(x0), Left(x1), x2, x3) new_esEs37(x0, x1, ty_Char) new_lt18(x0, x1) new_esEs28(x0, x1, ty_Int) new_esEs19(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs23(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Integer) new_lt5(x0, x1, ty_Bool) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, ty_Char) new_esEs33(x0, x1, ty_Ordering) new_esEs32(x0, x1, ty_Float) new_esEs40(x0, x1, ty_Char) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_ltEs12(Just(x0), Just(x1), ty_@0) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_compare24(x0, x1, True, x2, x3) new_lt21(x0, x1, ty_Bool) new_esEs40(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs20(Char(x0), Char(x1)) new_ltEs20(x0, x1, ty_Integer) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_compare11(x0, x1, x2, x3, True, x4, x5) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Bool) new_lt5(x0, x1, ty_@0) new_esEs11(x0, x1, ty_Char) new_esEs34(x0, x1, app(ty_[], x2)) new_primMulNat0(Zero, Succ(x0)) new_esEs19(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(Left(x0), Left(x1), ty_Float, x2) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, ty_Bool) new_esEs19(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_primMulNat0(Zero, Zero) new_ltEs22(x0, x1, ty_Float) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_primPlusNat1(Succ(x0), Succ(x1)) new_ltEs5(x0, x1, ty_Double) new_esEs40(x0, x1, ty_Int) new_esEs39(x0, x1, ty_Integer) new_esEs24(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, ty_@0) new_esEs7(x0, x1, app(ty_[], x2)) new_compare30(Char(x0), Char(x1)) new_lt22(x0, x1, app(ty_Maybe, x2)) new_lt21(x0, x1, ty_@0) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, ty_Int) new_compare27(True, True) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_compare13(x0, x1, True, x2, x3) new_lt20(x0, x1, ty_@0) new_ltEs11(LT, LT) new_ltEs21(x0, x1, ty_Char) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, ty_Double) new_lt23(x0, x1, ty_Bool) new_ltEs24(x0, x1, ty_Integer) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs5(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs37(x0, x1, ty_Integer) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs39(x0, x1, ty_@0) new_ltEs12(Just(x0), Just(x1), ty_Bool) new_lt21(x0, x1, ty_Integer) new_esEs38(x0, x1, ty_Integer) new_esEs8(x0, x1, ty_Float) new_ltEs7(Right(x0), Right(x1), x2, ty_Double) new_esEs33(x0, x1, ty_Int) new_esEs29(LT) new_esEs19(Right(x0), Right(x1), x2, ty_@0) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_esEs40(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, ty_Char) new_ltEs20(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_Integer) new_esEs11(x0, x1, ty_Ordering) new_ltEs21(x0, x1, ty_Ordering) new_compare6(Left(x0), Right(x1), x2, x3) new_esEs7(x0, x1, ty_Double) new_ltEs24(x0, x1, ty_Float) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare6(Right(x0), Left(x1), x2, x3) new_lt5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_ltEs21(x0, x1, ty_Int) new_compare8(LT, LT) new_esEs24(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, ty_Double) new_lt4(x0, x1, ty_Bool) new_esEs33(x0, x1, ty_Char) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, ty_Int) new_esEs35(x0, x1, ty_Float) new_esEs11(x0, x1, ty_@0) new_esEs25(EQ, EQ) new_esEs19(Left(x0), Left(x1), ty_Float, x2) new_not(True) new_ltEs5(x0, x1, ty_Char) new_compare15(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_esEs38(x0, x1, ty_Bool) new_esEs31(x0, x1, ty_Integer) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_pePe(True, x0) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_ltEs12(Just(x0), Just(x1), ty_Char) new_compare8(GT, GT) new_esEs40(x0, x1, app(app(ty_@2, x2), x3)) new_lt4(x0, x1, ty_Int) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_esEs40(x0, x1, ty_Double) new_esEs19(Right(x0), Right(x1), x2, ty_Int) new_esEs40(x0, x1, ty_@0) new_esEs38(x0, x1, ty_Float) new_lt23(x0, x1, ty_Integer) new_esEs27(x0, x1, ty_@0) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_compare8(LT, EQ) new_compare8(EQ, LT) new_esEs34(x0, x1, ty_Ordering) new_esEs17(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_esEs19(Right(x0), Right(x1), x2, ty_Integer) new_lt19(x0, x1) new_ltEs17(x0, x1) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_esEs38(x0, x1, ty_@0) new_ltEs12(Just(x0), Just(x1), ty_Int) new_ltEs23(x0, x1, ty_Char) new_lt21(x0, x1, app(ty_Ratio, x2)) new_lt5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs25(LT, GT) new_esEs25(GT, LT) new_lt8(x0, x1, x2, x3) new_esEs16(:(x0, x1), [], x2) new_lt4(x0, x1, ty_Char) new_lt22(x0, x1, ty_Double) new_esEs19(Right(x0), Right(x1), x2, ty_Char) new_compare6(Right(x0), Right(x1), x2, x3) new_esEs6(x0, x1, ty_Float) new_esEs24(Nothing, Just(x0), x1) new_compare16(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_ltEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs35(x0, x1, app(ty_Maybe, x2)) new_esEs24(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs23(x0, x1, ty_Int) new_compare17(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusNat0(Succ(x0), x1) new_esEs28(x0, x1, ty_Ordering) new_esEs5(x0, x1, ty_Float) new_esEs19(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs7(x0, x1, ty_Ordering) new_esEs8(x0, x1, app(ty_[], x2)) new_esEs19(Right(x0), Right(x1), x2, ty_Bool) new_lt4(x0, x1, ty_@0) new_esEs24(Just(x0), Just(x1), ty_Double) new_ltEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, ty_Float) new_ltEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs36(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, ty_Float) new_ltEs8(x0, x1, x2) new_ltEs23(x0, x1, ty_@0) new_ltEs12(Just(x0), Nothing, x1) new_ltEs5(x0, x1, ty_Int) new_esEs12(Float(x0, x1), Float(x2, x3)) new_lt23(x0, x1, ty_Ordering) new_lt22(x0, x1, ty_Int) new_compare19(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs19(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs36(x0, x1, ty_Integer) new_lt5(x0, x1, ty_Integer) new_esEs27(x0, x1, ty_Bool) new_ltEs12(Nothing, Nothing, x0) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, ty_@0) new_primCmpInt(Pos(Zero), Pos(Zero)) new_lt23(x0, x1, app(ty_Ratio, x2)) new_ltEs23(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_esEs29(EQ) new_lt22(x0, x1, ty_@0) new_ltEs7(Left(x0), Left(x1), ty_Bool, x2) new_primPlusNat0(Zero, x0) new_primCmpNat0(Zero, Succ(x0)) new_compare11(x0, x1, x2, x3, False, x4, x5) new_ltEs13(x0, x1, x2) new_compare17(x0, x1, ty_Ordering) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_lt10(x0, x1) new_esEs32(x0, x1, ty_@0) new_compare110(x0, x1, True, x2, x3) new_lt5(x0, x1, ty_Ordering) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_lt5(x0, x1, ty_Double) new_primCompAux0(x0, x1, x2, x3) new_ltEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_lt22(x0, x1, ty_Integer) new_lt21(x0, x1, ty_Float) new_esEs8(x0, x1, ty_Integer) new_ltEs20(x0, x1, ty_Int) new_esEs24(Just(x0), Just(x1), ty_Char) new_compare12(x0, x1, False, x2) new_esEs33(x0, x1, ty_@0) new_ltEs21(x0, x1, ty_Integer) new_compare211(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs39(x0, x1, ty_Float) new_ltEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt21(x0, x1, ty_Ordering) new_lt20(x0, x1, ty_Int) new_esEs19(Left(x0), Left(x1), ty_Integer, x2) new_lt20(x0, x1, ty_Ordering) new_compare17(x0, x1, ty_Int) new_ltEs24(x0, x1, ty_Char) new_lt4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Int) new_esEs26(x0, x1, app(ty_[], x2)) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs15(Double(x0, x1), Double(x2, x3)) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs12(Just(x0), Just(x1), ty_Ordering) new_ltEs20(x0, x1, ty_Ordering) new_esEs24(Just(x0), Just(x1), ty_Int) new_ltEs19(x0, x1, ty_Ordering) new_ltEs22(x0, x1, ty_Bool) new_esEs19(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_compare9(:%(x0, x1), :%(x2, x3), ty_Integer) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_esEs16(:(x0, x1), :(x2, x3), x4) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_ltEs20(x0, x1, ty_Float) new_lt4(x0, x1, ty_Double) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs39(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, ty_Ordering) new_compare19(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_lt5(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(x0, x1, app(app(ty_@2, x2), x3)) new_esEs39(x0, x1, ty_Char) new_esEs5(x0, x1, ty_Ordering) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_compare17(x0, x1, app(ty_[], x2)) new_esEs7(x0, x1, ty_Bool) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs24(x0, x1, ty_Int) new_lt23(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(Right(x0), Right(x1), x2, ty_@0) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_compare16(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_lt16(x0, x1) new_esEs19(Right(x0), Right(x1), x2, ty_Float) new_ltEs7(Left(x0), Left(x1), ty_Integer, x2) new_esEs36(x0, x1, ty_Bool) new_ltEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_lt22(x0, x1, ty_Bool) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_compare17(x0, x1, ty_Float) new_esEs39(x0, x1, ty_Int) new_lt20(x0, x1, ty_Float) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs24(Just(x0), Just(x1), ty_Float) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_ltEs19(x0, x1, ty_Char) new_primEqNat0(Zero, Succ(x0)) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, ty_Char) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs35(x0, x1, ty_Integer) new_primEqNat0(Zero, Zero) new_compare17(x0, x1, app(ty_Ratio, x2)) new_esEs10(x0, x1, ty_Double) new_compare28(@2(x0, x1), @2(x2, x3), x4, x5) new_lt5(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs36(x0, x1, ty_Char) new_esEs38(x0, x1, ty_Ordering) new_ltEs22(x0, x1, ty_Integer) new_esEs35(x0, x1, app(ty_[], x2)) new_ltEs12(Just(x0), Just(x1), ty_Integer) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs9(False, False) new_not(False) new_esEs5(x0, x1, ty_Integer) new_esEs19(Left(x0), Left(x1), ty_Bool, x2) new_esEs11(x0, x1, ty_Double) new_ltEs11(GT, LT) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_ltEs11(LT, GT) new_esEs9(x0, x1, ty_Float) new_esEs10(x0, x1, ty_@0) new_esEs19(Right(x0), Right(x1), x2, app(ty_[], x3)) new_compare17(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, app(ty_[], x2)) new_compare26(x0, x1, True, x2) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt23(x0, x1, ty_Int) new_lt4(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_esEs34(x0, x1, ty_Bool) new_esEs37(x0, x1, app(ty_[], x2)) new_esEs36(x0, x1, ty_Int) new_compare25(x0, x1, True, x2, x3) new_esEs13(x0, x1) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_compare17(x0, x1, ty_Char) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs14(False, False) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_primCompAux00(x0, GT) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_esEs19(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_esEs37(x0, x1, ty_@0) new_esEs34(x0, x1, ty_Float) new_lt23(x0, x1, ty_Char) new_ltEs12(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs7(Left(x0), Left(x1), ty_Int, x2) new_lt20(x0, x1, ty_Char) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_esEs8(x0, x1, ty_Bool) new_lt23(x0, x1, ty_Float) new_esEs24(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs34(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Bool) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Integer) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_ltEs23(x0, x1, ty_Integer) new_lt15(x0, x1) new_esEs28(x0, x1, ty_Double) new_compare29(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, ty_Bool) new_compare27(False, True) new_compare27(True, False) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_compare210(x0, x1, x2, x3, True, x4, x5) new_lt21(x0, x1, ty_Int) new_lt20(x0, x1, ty_Bool) new_ltEs11(GT, EQ) new_ltEs11(EQ, GT) new_esEs34(x0, x1, ty_Int) new_esEs28(x0, x1, ty_@0) new_esEs7(x0, x1, ty_Float) new_esEs36(x0, x1, ty_Float) new_ltEs18(x0, x1) new_ltEs12(Nothing, Just(x0), x1) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_lt11(x0, x1, x2, x3) new_esEs21(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs20(x0, x1, ty_Char) new_primMulNat0(Succ(x0), Zero) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, ty_Double) new_lt4(x0, x1, app(ty_Maybe, x2)) new_ltEs24(x0, x1, ty_Bool) new_compare32(@0, @0) new_esEs37(x0, x1, ty_Double) new_ltEs23(x0, x1, ty_Ordering) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpNat0(Zero, Zero) new_compare9(:%(x0, x1), :%(x2, x3), ty_Int) new_ltEs7(Left(x0), Left(x1), ty_Char, x2) new_lt22(x0, x1, ty_Ordering) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_compare17(x0, x1, ty_Bool) new_ltEs12(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_lt21(x0, x1, ty_Char) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (30) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_compare22(vyw113, vyw114, vyw115, vyw116, False, ccd, app(ty_[], cdb)) -> new_ltEs1(vyw114, vyw116, cdb) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3 *new_compare22(vyw113, vyw114, vyw115, vyw116, False, app(app(ty_@2, cca), ccb), cbe) -> new_lt2(vyw113, vyw115, cca, ccb) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4 *new_ltEs1(vyw59, vyw60, bdh) -> new_compare1(vyw59, vyw60, bdh) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_ltEs(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), ha, fh, app(ty_[], bah)) -> new_ltEs1(vyw592, vyw602, bah) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_lt(@3(vyw30, vyw31, vyw32), @3(vyw400, vyw401, vyw402), eg, eh, fa) -> new_compare2(vyw30, vyw31, vyw32, vyw400, vyw401, vyw402, new_asAs(new_esEs6(vyw30, vyw400, eg), new_asAs(new_esEs5(vyw31, vyw401, eh), new_esEs4(vyw32, vyw402, fa))), eg, eh, fa) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 2 > 4, 2 > 5, 2 > 6, 3 >= 8, 4 >= 9, 5 >= 10 *new_compare(@3(vyw30, vyw31, vyw32), @3(vyw400, vyw401, vyw402), eg, eh, fa) -> new_compare2(vyw30, vyw31, vyw32, vyw400, vyw401, vyw402, new_asAs(new_esEs6(vyw30, vyw400, eg), new_asAs(new_esEs5(vyw31, vyw401, eh), new_esEs4(vyw32, vyw402, fa))), eg, eh, fa) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 2 > 4, 2 > 5, 2 > 6, 3 >= 8, 4 >= 9, 5 >= 10 *new_lt0(Left(vyw30), Left(vyw400), fb, fc) -> new_compare20(vyw30, vyw400, new_esEs7(vyw30, vyw400, fb), fb, fc) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 *new_compare0(Left(vyw30), Left(vyw400), fb, fc) -> new_compare20(vyw30, vyw400, new_esEs7(vyw30, vyw400, fb), fb, fc) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 *new_lt0(Right(vyw30), Right(vyw400), fb, fc) -> new_compare21(vyw30, vyw400, new_esEs8(vyw30, vyw400, fc), fb, fc) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 *new_compare22(vyw113, vyw114, vyw115, vyw116, False, ccd, app(app(app(ty_@3, cce), ccf), ccg)) -> new_ltEs(vyw114, vyw116, cce, ccf, ccg) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4, 7 > 5 *new_ltEs(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), ha, fh, app(app(app(ty_@3, bac), bad), bae)) -> new_ltEs(vyw592, vyw602, bac, bad, bae) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_ltEs3(Just(vyw590), Just(vyw600), app(ty_[], bhb)) -> new_ltEs1(vyw590, vyw600, bhb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs3(Just(vyw590), Just(vyw600), app(app(app(ty_@3, bge), bgf), bgg)) -> new_ltEs(vyw590, vyw600, bge, bgf, bgg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs2(@2(vyw590, vyw591), @2(vyw600, vyw601), bfc, app(ty_[], bga)) -> new_ltEs1(vyw591, vyw601, bga) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare22(vyw113, vyw114, vyw115, vyw116, False, ccd, app(ty_Maybe, cde)) -> new_ltEs3(vyw114, vyw116, cde) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3 *new_ltEs2(@2(vyw590, vyw591), @2(vyw600, vyw601), app(app(ty_@2, beh), bfa), bed) -> new_lt2(vyw590, vyw600, beh, bfa) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), ha, fh, app(ty_Maybe, bbc)) -> new_ltEs3(vyw592, vyw602, bbc) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_ltEs2(@2(vyw590, vyw591), @2(vyw600, vyw601), bfc, app(app(app(ty_@3, bfd), bfe), bff)) -> new_ltEs(vyw591, vyw601, bfd, bfe, bff) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs3(Just(vyw590), Just(vyw600), app(ty_Maybe, bhe)) -> new_ltEs3(vyw590, vyw600, bhe) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs2(@2(vyw590, vyw591), @2(vyw600, vyw601), bfc, app(ty_Maybe, bgd)) -> new_ltEs3(vyw591, vyw601, bgd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_lt3(Just(vyw30), Just(vyw400), cdf) -> new_compare23(vyw30, vyw400, new_esEs11(vyw30, vyw400, cdf), cdf) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_compare0(Right(vyw30), Right(vyw400), fb, fc) -> new_compare21(vyw30, vyw400, new_esEs8(vyw30, vyw400, fc), fb, fc) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 *new_lt2(@2(vyw30, vyw31), @2(vyw400, vyw401), cah, cba) -> new_compare22(vyw30, vyw31, vyw400, vyw401, new_asAs(new_esEs10(vyw30, vyw400, cah), new_esEs9(vyw31, vyw401, cba)), cah, cba) The graph contains the following edges 1 > 1, 1 > 2, 2 > 3, 2 > 4, 3 >= 6, 4 >= 7 *new_compare4(@2(vyw30, vyw31), @2(vyw400, vyw401), cah, cba) -> new_compare22(vyw30, vyw31, vyw400, vyw401, new_asAs(new_esEs10(vyw30, vyw400, cah), new_esEs9(vyw31, vyw401, cba)), cah, cba) The graph contains the following edges 1 > 1, 1 > 2, 2 > 3, 2 > 4, 3 >= 6, 4 >= 7 *new_compare5(Just(vyw30), Just(vyw400), cdf) -> new_compare23(vyw30, vyw400, new_esEs11(vyw30, vyw400, cdf), cdf) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_compare22(vyw113, vyw114, vyw115, vyw116, False, ccd, app(app(ty_@2, cdc), cdd)) -> new_ltEs2(vyw114, vyw116, cdc, cdd) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4 *new_ltEs(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), ha, fh, app(app(ty_@2, bba), bbb)) -> new_ltEs2(vyw592, vyw602, bba, bbb) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs3(Just(vyw590), Just(vyw600), app(app(ty_@2, bhc), bhd)) -> new_ltEs2(vyw590, vyw600, bhc, bhd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs3(Just(vyw590), Just(vyw600), app(app(ty_Either, bgh), bha)) -> new_ltEs0(vyw590, vyw600, bgh, bha) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs2(@2(vyw590, vyw591), @2(vyw600, vyw601), bfc, app(app(ty_@2, bgb), bgc)) -> new_ltEs2(vyw591, vyw601, bgb, bgc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare22(vyw113, vyw114, vyw115, vyw116, False, app(ty_[], cbh), cbe) -> new_lt1(vyw113, vyw115, cbh) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3 *new_ltEs2(@2(vyw590, vyw591), @2(vyw600, vyw601), app(ty_[], beg), bed) -> new_lt1(vyw590, vyw600, beg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_compare22(vyw113, vyw114, vyw115, vyw116, False, ccd, app(app(ty_Either, cch), cda)) -> new_ltEs0(vyw114, vyw116, cch, cda) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4 *new_ltEs(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), ha, fh, app(app(ty_Either, baf), bag)) -> new_ltEs0(vyw592, vyw602, baf, bag) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs2(@2(vyw590, vyw591), @2(vyw600, vyw601), bfc, app(app(ty_Either, bfg), bfh)) -> new_ltEs0(vyw591, vyw601, bfg, bfh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare1(:(vyw30, vyw31), :(vyw400, vyw401), bhf) -> new_compare1(vyw31, vyw401, bhf) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_compare1(:(vyw30, vyw31), :(vyw400, vyw401), bhf) -> new_primCompAux(vyw30, vyw400, new_compare3(vyw31, vyw401, bhf), bhf) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_lt1(:(vyw30, vyw31), :(vyw400, vyw401), bhf) -> new_compare1(vyw31, vyw401, bhf) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_lt1(:(vyw30, vyw31), :(vyw400, vyw401), bhf) -> new_primCompAux(vyw30, vyw400, new_compare3(vyw31, vyw401, bhf), bhf) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_primCompAux(vyw30, vyw400, vyw39, app(ty_[], cad)) -> new_compare1(vyw30, vyw400, cad) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_compare20(vyw59, vyw60, False, app(ty_[], bdh), gb) -> new_compare1(vyw59, vyw60, bdh) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_primCompAux(vyw30, vyw400, vyw39, app(app(ty_Either, cab), cac)) -> new_compare0(vyw30, vyw400, cab, cac) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_compare2(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, cc, bc, app(ty_[], ec)) -> new_ltEs1(vyw102, vyw105, ec) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3 *new_compare22(vyw113, vyw114, vyw115, vyw116, False, app(app(app(ty_@3, cbb), cbc), cbd), cbe) -> new_lt(vyw113, vyw115, cbb, cbc, cbd) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4, 6 > 5 *new_compare2(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, cc, bc, app(app(app(ty_@3, df), dg), dh)) -> new_ltEs(vyw102, vyw105, df, dg, dh) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4, 10 > 5 *new_ltEs2(@2(vyw590, vyw591), @2(vyw600, vyw601), app(app(app(ty_@3, bea), beb), bec), bed) -> new_lt(vyw590, vyw600, bea, beb, bec) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_compare2(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, cc, bc, app(ty_Maybe, ef)) -> new_ltEs3(vyw102, vyw105, ef) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3 *new_compare2(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, cc, bc, app(app(ty_@2, ed), ee)) -> new_ltEs2(vyw102, vyw105, ed, ee) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4 *new_compare2(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, cc, bc, app(app(ty_Either, ea), eb)) -> new_ltEs0(vyw102, vyw105, ea, eb) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4 *new_compare21(vyw66, vyw67, False, ceh, app(ty_[], cff)) -> new_ltEs1(vyw66, vyw67, cff) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3 *new_compare23(vyw89, vyw90, False, app(ty_[], ced)) -> new_ltEs1(vyw89, vyw90, ced) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_compare22(vyw113, vyw114, vyw115, vyw116, False, app(app(ty_Either, cbf), cbg), cbe) -> new_lt0(vyw113, vyw115, cbf, cbg) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4 *new_compare22(vyw113, vyw114, vyw115, vyw116, False, app(ty_Maybe, ccc), cbe) -> new_lt3(vyw113, vyw115, ccc) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3 *new_compare21(vyw66, vyw67, False, ceh, app(app(app(ty_@3, cfa), cfb), cfc)) -> new_ltEs(vyw66, vyw67, cfa, cfb, cfc) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4, 5 > 5 *new_compare23(vyw89, vyw90, False, app(app(app(ty_@3, cdg), cdh), cea)) -> new_ltEs(vyw89, vyw90, cdg, cdh, cea) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs2(@2(vyw590, vyw591), @2(vyw600, vyw601), app(app(ty_Either, bee), bef), bed) -> new_lt0(vyw590, vyw600, bee, bef) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs2(@2(vyw590, vyw591), @2(vyw600, vyw601), app(ty_Maybe, bfb), bed) -> new_lt3(vyw590, vyw600, bfb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_compare21(vyw66, vyw67, False, ceh, app(ty_Maybe, cga)) -> new_ltEs3(vyw66, vyw67, cga) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3 *new_compare23(vyw89, vyw90, False, app(ty_Maybe, ceg)) -> new_ltEs3(vyw89, vyw90, ceg) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_compare21(vyw66, vyw67, False, ceh, app(app(ty_@2, cfg), cfh)) -> new_ltEs2(vyw66, vyw67, cfg, cfh) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4 *new_compare23(vyw89, vyw90, False, app(app(ty_@2, cee), cef)) -> new_ltEs2(vyw89, vyw90, cee, cef) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_compare21(vyw66, vyw67, False, ceh, app(app(ty_Either, cfd), cfe)) -> new_ltEs0(vyw66, vyw67, cfd, cfe) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4 *new_compare23(vyw89, vyw90, False, app(app(ty_Either, ceb), cec)) -> new_ltEs0(vyw89, vyw90, ceb, cec) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_primCompAux(vyw30, vyw400, vyw39, app(ty_Maybe, cag)) -> new_compare5(vyw30, vyw400, cag) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_primCompAux(vyw30, vyw400, vyw39, app(app(app(ty_@3, bhg), bhh), caa)) -> new_compare(vyw30, vyw400, bhg, bhh, caa) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 *new_primCompAux(vyw30, vyw400, vyw39, app(app(ty_@2, cae), caf)) -> new_compare4(vyw30, vyw400, cae, caf) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_ltEs0(Left(vyw590), Left(vyw600), app(ty_[], bcb), bbg) -> new_ltEs1(vyw590, vyw600, bcb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs0(Right(vyw590), Right(vyw600), bcf, app(ty_[], bdd)) -> new_ltEs1(vyw590, vyw600, bdd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Just(vyw590), Just(vyw600), False, app(ty_Maybe, app(ty_[], bhb)), gb) -> new_ltEs1(vyw590, vyw600, bhb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Right(vyw590), Right(vyw600), False, app(app(ty_Either, bcf), app(ty_[], bdd)), gb) -> new_ltEs1(vyw590, vyw600, bdd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), False, app(app(app(ty_@3, ha), fh), app(ty_[], bah)), gb) -> new_ltEs1(vyw592, vyw602, bah) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Left(vyw590), Left(vyw600), False, app(app(ty_Either, app(ty_[], bcb)), bbg), gb) -> new_ltEs1(vyw590, vyw600, bcb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@2(vyw590, vyw591), @2(vyw600, vyw601), False, app(app(ty_@2, bfc), app(ty_[], bga)), gb) -> new_ltEs1(vyw591, vyw601, bga) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), app(app(ty_@2, gf), gg), fh, ga) -> new_lt2(vyw590, vyw600, gf, gg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), ha, app(app(ty_@2, hh), baa), ga) -> new_lt2(vyw591, vyw601, hh, baa) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), False, app(app(app(ty_@3, app(app(ty_@2, gf), gg)), fh), ga), gb) -> new_lt2(vyw590, vyw600, gf, gg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), False, app(app(app(ty_@3, ha), app(app(ty_@2, hh), baa)), ga), gb) -> new_lt2(vyw591, vyw601, hh, baa) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@2(vyw590, vyw591), @2(vyw600, vyw601), False, app(app(ty_@2, app(app(ty_@2, beh), bfa)), bed), gb) -> new_lt2(vyw590, vyw600, beh, bfa) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, app(app(ty_@2, bh), ca), bc, bd) -> new_lt2(vyw100, vyw103, bh, ca) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4 *new_compare2(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, cc, app(app(ty_@2, dc), dd), bd) -> new_lt2(vyw101, vyw104, dc, dd) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4 *new_ltEs(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), app(ty_[], ge), fh, ga) -> new_lt1(vyw590, vyw600, ge) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), ha, app(ty_[], hg), ga) -> new_lt1(vyw591, vyw601, hg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), app(app(app(ty_@3, fd), ff), fg), fh, ga) -> new_lt(vyw590, vyw600, fd, ff, fg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), ha, app(app(app(ty_@3, hb), hc), hd), ga) -> new_lt(vyw591, vyw601, hb, hc, hd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), app(app(ty_Either, gc), gd), fh, ga) -> new_lt0(vyw590, vyw600, gc, gd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), ha, app(app(ty_Either, he), hf), ga) -> new_lt0(vyw591, vyw601, he, hf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), app(ty_Maybe, gh), fh, ga) -> new_lt3(vyw590, vyw600, gh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), ha, app(ty_Maybe, bab), ga) -> new_lt3(vyw591, vyw601, bab) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs0(Right(vyw590), Right(vyw600), bcf, app(app(app(ty_@3, bcg), bch), bda)) -> new_ltEs(vyw590, vyw600, bcg, bch, bda) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs0(Left(vyw590), Left(vyw600), app(app(app(ty_@3, bbd), bbe), bbf), bbg) -> new_ltEs(vyw590, vyw600, bbd, bbe, bbf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_compare20(Right(vyw590), Right(vyw600), False, app(app(ty_Either, bcf), app(app(app(ty_@3, bcg), bch), bda)), gb) -> new_ltEs(vyw590, vyw600, bcg, bch, bda) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(@2(vyw590, vyw591), @2(vyw600, vyw601), False, app(app(ty_@2, bfc), app(app(app(ty_@3, bfd), bfe), bff)), gb) -> new_ltEs(vyw591, vyw601, bfd, bfe, bff) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(Just(vyw590), Just(vyw600), False, app(ty_Maybe, app(app(app(ty_@3, bge), bgf), bgg)), gb) -> new_ltEs(vyw590, vyw600, bge, bgf, bgg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(Left(vyw590), Left(vyw600), False, app(app(ty_Either, app(app(app(ty_@3, bbd), bbe), bbf)), bbg), gb) -> new_ltEs(vyw590, vyw600, bbd, bbe, bbf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), False, app(app(app(ty_@3, ha), fh), app(app(app(ty_@3, bac), bad), bae)), gb) -> new_ltEs(vyw592, vyw602, bac, bad, bae) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs0(Left(vyw590), Left(vyw600), app(ty_Maybe, bce), bbg) -> new_ltEs3(vyw590, vyw600, bce) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs0(Right(vyw590), Right(vyw600), bcf, app(ty_Maybe, bdg)) -> new_ltEs3(vyw590, vyw600, bdg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@2(vyw590, vyw591), @2(vyw600, vyw601), False, app(app(ty_@2, bfc), app(ty_Maybe, bgd)), gb) -> new_ltEs3(vyw591, vyw601, bgd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Just(vyw590), Just(vyw600), False, app(ty_Maybe, app(ty_Maybe, bhe)), gb) -> new_ltEs3(vyw590, vyw600, bhe) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Left(vyw590), Left(vyw600), False, app(app(ty_Either, app(ty_Maybe, bce)), bbg), gb) -> new_ltEs3(vyw590, vyw600, bce) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Right(vyw590), Right(vyw600), False, app(app(ty_Either, bcf), app(ty_Maybe, bdg)), gb) -> new_ltEs3(vyw590, vyw600, bdg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), False, app(app(app(ty_@3, ha), fh), app(ty_Maybe, bbc)), gb) -> new_ltEs3(vyw592, vyw602, bbc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs0(Left(vyw590), Left(vyw600), app(app(ty_@2, bcc), bcd), bbg) -> new_ltEs2(vyw590, vyw600, bcc, bcd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs0(Right(vyw590), Right(vyw600), bcf, app(app(ty_@2, bde), bdf)) -> new_ltEs2(vyw590, vyw600, bde, bdf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs0(Right(vyw590), Right(vyw600), bcf, app(app(ty_Either, bdb), bdc)) -> new_ltEs0(vyw590, vyw600, bdb, bdc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs0(Left(vyw590), Left(vyw600), app(app(ty_Either, bbh), bca), bbg) -> new_ltEs0(vyw590, vyw600, bbh, bca) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_compare20(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), False, app(app(app(ty_@3, ha), fh), app(app(ty_@2, bba), bbb)), gb) -> new_ltEs2(vyw592, vyw602, bba, bbb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@2(vyw590, vyw591), @2(vyw600, vyw601), False, app(app(ty_@2, bfc), app(app(ty_@2, bgb), bgc)), gb) -> new_ltEs2(vyw591, vyw601, bgb, bgc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Left(vyw590), Left(vyw600), False, app(app(ty_Either, app(app(ty_@2, bcc), bcd)), bbg), gb) -> new_ltEs2(vyw590, vyw600, bcc, bcd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Just(vyw590), Just(vyw600), False, app(ty_Maybe, app(app(ty_@2, bhc), bhd)), gb) -> new_ltEs2(vyw590, vyw600, bhc, bhd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Right(vyw590), Right(vyw600), False, app(app(ty_Either, bcf), app(app(ty_@2, bde), bdf)), gb) -> new_ltEs2(vyw590, vyw600, bde, bdf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), False, app(app(app(ty_@3, app(ty_[], ge)), fh), ga), gb) -> new_lt1(vyw590, vyw600, ge) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), False, app(app(app(ty_@3, ha), app(ty_[], hg)), ga), gb) -> new_lt1(vyw591, vyw601, hg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@2(vyw590, vyw591), @2(vyw600, vyw601), False, app(app(ty_@2, app(ty_[], beg)), bed), gb) -> new_lt1(vyw590, vyw600, beg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, cc, app(ty_[], db), bd) -> new_lt1(vyw101, vyw104, db) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3 *new_compare2(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, app(ty_[], bg), bc, bd) -> new_lt1(vyw100, vyw103, bg) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3 *new_compare20(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), False, app(app(app(ty_@3, ha), fh), app(app(ty_Either, baf), bag)), gb) -> new_ltEs0(vyw592, vyw602, baf, bag) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Left(vyw590), Left(vyw600), False, app(app(ty_Either, app(app(ty_Either, bbh), bca)), bbg), gb) -> new_ltEs0(vyw590, vyw600, bbh, bca) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Right(vyw590), Right(vyw600), False, app(app(ty_Either, bcf), app(app(ty_Either, bdb), bdc)), gb) -> new_ltEs0(vyw590, vyw600, bdb, bdc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@2(vyw590, vyw591), @2(vyw600, vyw601), False, app(app(ty_@2, bfc), app(app(ty_Either, bfg), bfh)), gb) -> new_ltEs0(vyw591, vyw601, bfg, bfh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Just(vyw590), Just(vyw600), False, app(ty_Maybe, app(app(ty_Either, bgh), bha)), gb) -> new_ltEs0(vyw590, vyw600, bgh, bha) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), False, app(app(app(ty_@3, app(app(app(ty_@3, fd), ff), fg)), fh), ga), gb) -> new_lt(vyw590, vyw600, fd, ff, fg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(@2(vyw590, vyw591), @2(vyw600, vyw601), False, app(app(ty_@2, app(app(app(ty_@3, bea), beb), bec)), bed), gb) -> new_lt(vyw590, vyw600, bea, beb, bec) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), False, app(app(app(ty_@3, ha), app(app(app(ty_@3, hb), hc), hd)), ga), gb) -> new_lt(vyw591, vyw601, hb, hc, hd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(@2(vyw590, vyw591), @2(vyw600, vyw601), False, app(app(ty_@2, app(app(ty_Either, bee), bef)), bed), gb) -> new_lt0(vyw590, vyw600, bee, bef) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), False, app(app(app(ty_@3, ha), app(app(ty_Either, he), hf)), ga), gb) -> new_lt0(vyw591, vyw601, he, hf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), False, app(app(app(ty_@3, app(app(ty_Either, gc), gd)), fh), ga), gb) -> new_lt0(vyw590, vyw600, gc, gd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@2(vyw590, vyw591), @2(vyw600, vyw601), False, app(app(ty_@2, app(ty_Maybe, bfb)), bed), gb) -> new_lt3(vyw590, vyw600, bfb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), False, app(app(app(ty_@3, app(ty_Maybe, gh)), fh), ga), gb) -> new_lt3(vyw590, vyw600, gh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(vyw590, vyw591, vyw592), @3(vyw600, vyw601, vyw602), False, app(app(app(ty_@3, ha), app(ty_Maybe, bab)), ga), gb) -> new_lt3(vyw591, vyw601, bab) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, app(app(app(ty_@3, h), ba), bb), bc, bd) -> new_lt(vyw100, vyw103, h, ba, bb) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4, 8 > 5 *new_compare2(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, cc, app(app(app(ty_@3, cd), ce), cf), bd) -> new_lt(vyw101, vyw104, cd, ce, cf) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4, 9 > 5 *new_compare2(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, app(app(ty_Either, be), bf), bc, bd) -> new_lt0(vyw100, vyw103, be, bf) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4 *new_compare2(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, cc, app(app(ty_Either, cg), da), bd) -> new_lt0(vyw101, vyw104, cg, da) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4 *new_compare2(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, cc, app(ty_Maybe, de), bd) -> new_lt3(vyw101, vyw104, de) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3 *new_compare2(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, app(ty_Maybe, cb), bc, bd) -> new_lt3(vyw100, vyw103, cb) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3 ---------------------------------------- (31) YES ---------------------------------------- (32) Obligation: Q DP problem: The TRS P consists of the following rules: new_primEqNat(Succ(vyw3000), Succ(vyw40000)) -> new_primEqNat(vyw3000, vyw40000) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (33) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_primEqNat(Succ(vyw3000), Succ(vyw40000)) -> new_primEqNat(vyw3000, vyw40000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (34) YES ---------------------------------------- (35) Obligation: Q DP problem: The TRS P consists of the following rules: new_primPlusNat(Succ(vyw19300), Succ(vyw31000)) -> new_primPlusNat(vyw19300, vyw31000) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (36) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_primPlusNat(Succ(vyw19300), Succ(vyw31000)) -> new_primPlusNat(vyw19300, vyw31000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (37) YES