/export/starexec/sandbox/solver/bin/starexec_run_standard /export/starexec/sandbox/benchmark/theBenchmark.hs /export/starexec/sandbox/output/output_files -------------------------------------------------------------------------------- YES proof of /export/starexec/sandbox/benchmark/theBenchmark.hs # AProVE Commit ID: 794c25de1cacf0d048858bcd21c9a779e1221865 marcel 20200619 unpublished dirty H-Termination with start terms of the given HASKELL could be proven: (0) HASKELL (1) CR [EQUIVALENT, 0 ms] (2) HASKELL (3) IFR [EQUIVALENT, 0 ms] (4) HASKELL (5) BR [EQUIVALENT, 0 ms] (6) HASKELL (7) COR [EQUIVALENT, 11 ms] (8) HASKELL (9) LetRed [EQUIVALENT, 0 ms] (10) HASKELL (11) NumRed [SOUND, 0 ms] (12) HASKELL (13) Narrow [SOUND, 0 ms] (14) AND (15) QDP (16) QDPSizeChangeProof [EQUIVALENT, 0 ms] (17) YES (18) QDP (19) QDPSizeChangeProof [EQUIVALENT, 34 ms] (20) YES (21) QDP (22) QDPSizeChangeProof [EQUIVALENT, 139 ms] (23) YES (24) QDP (25) QDPSizeChangeProof [EQUIVALENT, 0 ms] (26) YES (27) QDP (28) QDPSizeChangeProof [EQUIVALENT, 0 ms] (29) YES (30) QDP (31) QDPSizeChangeProof [EQUIVALENT, 0 ms] (32) YES ---------------------------------------- (0) Obligation: mainModule Main module Main where { import qualified Prelude; } ---------------------------------------- (1) 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; " ---------------------------------------- (2) Obligation: mainModule Main module Main where { import qualified Prelude; } ---------------------------------------- (3) 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; " ---------------------------------------- (4) Obligation: mainModule Main module Main where { import qualified Prelude; } ---------------------------------------- (5) BR (EQUIVALENT) Replaced joker patterns by fresh variables and removed binding patterns. ---------------------------------------- (6) Obligation: mainModule Main module Main where { import qualified Prelude; } ---------------------------------------- (7) COR (EQUIVALENT) Cond Reductions: 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 zx = gcd'2 x zx; gcd' x y = gcd'0 x y; " "gcd'0 x y = gcd' y (x `rem` y); " "gcd'1 True x zx = x; gcd'1 zy zz vuu = gcd'0 zz vuu; " "gcd'2 x zx = gcd'1 (zx == 0) x zx; gcd'2 vuv vuw = gcd'0 vuv vuw; " 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 vux vuy = gcd3 vux vuy; gcd x y = gcd0 x y; " "gcd0 x y = gcd' (abs x) (abs y) where { gcd' x zx = gcd'2 x zx; gcd' x y = gcd'0 x y; ; gcd'0 x y = gcd' y (x `rem` y); ; gcd'1 True x zx = x; gcd'1 zy zz vuu = gcd'0 zz vuu; ; gcd'2 x zx = gcd'1 (zx == 0) x zx; gcd'2 vuv vuw = gcd'0 vuv vuw; } ; " "gcd1 True vux vuy = error []; gcd1 vuz vvu vvv = gcd0 vvu vvv; " "gcd2 True vux vuy = gcd1 (vuy == 0) vux vuy; gcd2 vvw vvx vvy = gcd0 vvx vvy; " "gcd3 vux vuy = gcd2 (vux == 0) vux vuy; gcd3 vvz vwu = gcd0 vvz vwu; " 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 "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); " ---------------------------------------- (8) Obligation: mainModule Main module Main where { import qualified Prelude; } ---------------------------------------- (9) LetRed (EQUIVALENT) Let/Where Reductions: The bindings of the following Let/Where expression "gcd' (abs x) (abs y) where { gcd' x zx = gcd'2 x zx; gcd' x y = gcd'0 x y; ; gcd'0 x y = gcd' y (x `rem` y); ; gcd'1 True x zx = x; gcd'1 zy zz vuu = gcd'0 zz vuu; ; gcd'2 x zx = gcd'1 (zx == 0) x zx; gcd'2 vuv vuw = gcd'0 vuv vuw; } " are unpacked to the following functions on top level "gcd0Gcd'1 True x zx = x; gcd0Gcd'1 zy zz vuu = gcd0Gcd'0 zz vuu; " "gcd0Gcd'0 x y = gcd0Gcd' y (x `rem` y); " "gcd0Gcd' x zx = gcd0Gcd'2 x zx; gcd0Gcd' x y = gcd0Gcd'0 x y; " "gcd0Gcd'2 x zx = gcd0Gcd'1 (zx == 0) x zx; gcd0Gcd'2 vuv vuw = gcd0Gcd'0 vuv vuw; " 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 vwv vww = gcd vwv vww; " "reduce2Reduce0 vwv vww x y True = x `quot` reduce2D vwv vww :% (y `quot` reduce2D vwv vww); " "reduce2Reduce1 vwv vww x y True = error []; reduce2Reduce1 vwv vww x y False = reduce2Reduce0 vwv vww x y otherwise; " ---------------------------------------- (10) Obligation: mainModule Main module Main where { import qualified Prelude; } ---------------------------------------- (11) NumRed (SOUND) Num Reduction:All numbers are transformed to their corresponding representation with Succ, Pred and Zero. ---------------------------------------- (12) Obligation: mainModule Main module Main where { import qualified Prelude; } ---------------------------------------- (13) Narrow (SOUND) Haskell To QDPs digraph dp_graph { node [outthreshold=100, inthreshold=100];1[label="compare",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 3[label="compare vwx3",fontsize=16,color="grey",shape="box"];3 -> 4[label="",style="dashed", color="grey", weight=3]; 4[label="compare vwx3 vwx4",fontsize=16,color="burlywood",shape="triangle"];2623[label="vwx3/vwx30 : vwx31",fontsize=10,color="white",style="solid",shape="box"];4 -> 2623[label="",style="solid", color="burlywood", weight=9]; 2623 -> 5[label="",style="solid", color="burlywood", weight=3]; 2624[label="vwx3/[]",fontsize=10,color="white",style="solid",shape="box"];4 -> 2624[label="",style="solid", color="burlywood", weight=9]; 2624 -> 6[label="",style="solid", color="burlywood", weight=3]; 5[label="compare (vwx30 : vwx31) vwx4",fontsize=16,color="burlywood",shape="box"];2625[label="vwx4/vwx40 : vwx41",fontsize=10,color="white",style="solid",shape="box"];5 -> 2625[label="",style="solid", color="burlywood", weight=9]; 2625 -> 7[label="",style="solid", color="burlywood", weight=3]; 2626[label="vwx4/[]",fontsize=10,color="white",style="solid",shape="box"];5 -> 2626[label="",style="solid", color="burlywood", weight=9]; 2626 -> 8[label="",style="solid", color="burlywood", weight=3]; 6[label="compare [] vwx4",fontsize=16,color="burlywood",shape="box"];2627[label="vwx4/vwx40 : vwx41",fontsize=10,color="white",style="solid",shape="box"];6 -> 2627[label="",style="solid", color="burlywood", weight=9]; 2627 -> 9[label="",style="solid", color="burlywood", weight=3]; 2628[label="vwx4/[]",fontsize=10,color="white",style="solid",shape="box"];6 -> 2628[label="",style="solid", color="burlywood", weight=9]; 2628 -> 10[label="",style="solid", color="burlywood", weight=3]; 7[label="compare (vwx30 : vwx31) (vwx40 : vwx41)",fontsize=16,color="black",shape="box"];7 -> 11[label="",style="solid", color="black", weight=3]; 8[label="compare (vwx30 : vwx31) []",fontsize=16,color="black",shape="box"];8 -> 12[label="",style="solid", color="black", weight=3]; 9[label="compare [] (vwx40 : vwx41)",fontsize=16,color="black",shape="box"];9 -> 13[label="",style="solid", color="black", weight=3]; 10[label="compare [] []",fontsize=16,color="black",shape="box"];10 -> 14[label="",style="solid", color="black", weight=3]; 11 -> 15[label="",style="dashed", color="red", weight=0]; 11[label="primCompAux vwx30 vwx40 (compare vwx31 vwx41)",fontsize=16,color="magenta"];11 -> 16[label="",style="dashed", color="magenta", weight=3]; 12[label="GT",fontsize=16,color="green",shape="box"];13[label="LT",fontsize=16,color="green",shape="box"];14[label="EQ",fontsize=16,color="green",shape="box"];16 -> 4[label="",style="dashed", color="red", weight=0]; 16[label="compare vwx31 vwx41",fontsize=16,color="magenta"];16 -> 17[label="",style="dashed", color="magenta", weight=3]; 16 -> 18[label="",style="dashed", color="magenta", weight=3]; 15[label="primCompAux vwx30 vwx40 vwx5",fontsize=16,color="black",shape="triangle"];15 -> 19[label="",style="solid", color="black", weight=3]; 17[label="vwx31",fontsize=16,color="green",shape="box"];18[label="vwx41",fontsize=16,color="green",shape="box"];19 -> 20[label="",style="dashed", color="red", weight=0]; 19[label="primCompAux0 vwx5 (compare vwx30 vwx40)",fontsize=16,color="magenta"];19 -> 21[label="",style="dashed", color="magenta", weight=3]; 19 -> 22[label="",style="dashed", color="magenta", weight=3]; 21[label="vwx5",fontsize=16,color="green",shape="box"];22[label="compare vwx30 vwx40",fontsize=16,color="blue",shape="box"];2629[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];22 -> 2629[label="",style="solid", color="blue", weight=9]; 2629 -> 23[label="",style="solid", color="blue", weight=3]; 2630[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];22 -> 2630[label="",style="solid", color="blue", weight=9]; 2630 -> 24[label="",style="solid", color="blue", weight=3]; 2631[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];22 -> 2631[label="",style="solid", color="blue", weight=9]; 2631 -> 25[label="",style="solid", color="blue", weight=3]; 2632[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];22 -> 2632[label="",style="solid", color="blue", weight=9]; 2632 -> 26[label="",style="solid", color="blue", weight=3]; 2633[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];22 -> 2633[label="",style="solid", color="blue", weight=9]; 2633 -> 27[label="",style="solid", color="blue", weight=3]; 2634[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];22 -> 2634[label="",style="solid", color="blue", weight=9]; 2634 -> 28[label="",style="solid", color="blue", weight=3]; 2635[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];22 -> 2635[label="",style="solid", color="blue", weight=9]; 2635 -> 29[label="",style="solid", color="blue", weight=3]; 2636[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];22 -> 2636[label="",style="solid", color="blue", weight=9]; 2636 -> 30[label="",style="solid", color="blue", weight=3]; 2637[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];22 -> 2637[label="",style="solid", color="blue", weight=9]; 2637 -> 31[label="",style="solid", color="blue", weight=3]; 2638[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];22 -> 2638[label="",style="solid", color="blue", weight=9]; 2638 -> 32[label="",style="solid", color="blue", weight=3]; 2639[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];22 -> 2639[label="",style="solid", color="blue", weight=9]; 2639 -> 33[label="",style="solid", color="blue", weight=3]; 2640[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];22 -> 2640[label="",style="solid", color="blue", weight=9]; 2640 -> 34[label="",style="solid", color="blue", weight=3]; 2641[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];22 -> 2641[label="",style="solid", color="blue", weight=9]; 2641 -> 35[label="",style="solid", color="blue", weight=3]; 2642[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];22 -> 2642[label="",style="solid", color="blue", weight=9]; 2642 -> 36[label="",style="solid", color="blue", weight=3]; 20[label="primCompAux0 vwx9 vwx10",fontsize=16,color="burlywood",shape="triangle"];2643[label="vwx10/LT",fontsize=10,color="white",style="solid",shape="box"];20 -> 2643[label="",style="solid", color="burlywood", weight=9]; 2643 -> 37[label="",style="solid", color="burlywood", weight=3]; 2644[label="vwx10/EQ",fontsize=10,color="white",style="solid",shape="box"];20 -> 2644[label="",style="solid", color="burlywood", weight=9]; 2644 -> 38[label="",style="solid", color="burlywood", weight=3]; 2645[label="vwx10/GT",fontsize=10,color="white",style="solid",shape="box"];20 -> 2645[label="",style="solid", color="burlywood", weight=9]; 2645 -> 39[label="",style="solid", color="burlywood", weight=3]; 23[label="compare vwx30 vwx40",fontsize=16,color="burlywood",shape="triangle"];2646[label="vwx30/vwx300 :% vwx301",fontsize=10,color="white",style="solid",shape="box"];23 -> 2646[label="",style="solid", color="burlywood", weight=9]; 2646 -> 40[label="",style="solid", color="burlywood", weight=3]; 24[label="compare vwx30 vwx40",fontsize=16,color="burlywood",shape="triangle"];2647[label="vwx30/Integer vwx300",fontsize=10,color="white",style="solid",shape="box"];24 -> 2647[label="",style="solid", color="burlywood", weight=9]; 2647 -> 41[label="",style="solid", color="burlywood", weight=3]; 25[label="compare vwx30 vwx40",fontsize=16,color="black",shape="triangle"];25 -> 42[label="",style="solid", color="black", weight=3]; 26 -> 4[label="",style="dashed", color="red", weight=0]; 26[label="compare vwx30 vwx40",fontsize=16,color="magenta"];26 -> 43[label="",style="dashed", color="magenta", weight=3]; 26 -> 44[label="",style="dashed", color="magenta", weight=3]; 27[label="compare vwx30 vwx40",fontsize=16,color="black",shape="triangle"];27 -> 45[label="",style="solid", color="black", weight=3]; 28[label="compare vwx30 vwx40",fontsize=16,color="black",shape="triangle"];28 -> 46[label="",style="solid", color="black", weight=3]; 29[label="compare vwx30 vwx40",fontsize=16,color="black",shape="triangle"];29 -> 47[label="",style="solid", color="black", weight=3]; 30[label="compare vwx30 vwx40",fontsize=16,color="burlywood",shape="triangle"];2648[label="vwx30/()",fontsize=10,color="white",style="solid",shape="box"];30 -> 2648[label="",style="solid", color="burlywood", weight=9]; 2648 -> 48[label="",style="solid", color="burlywood", weight=3]; 31[label="compare vwx30 vwx40",fontsize=16,color="black",shape="triangle"];31 -> 49[label="",style="solid", color="black", weight=3]; 32[label="compare vwx30 vwx40",fontsize=16,color="black",shape="triangle"];32 -> 50[label="",style="solid", color="black", weight=3]; 33[label="compare vwx30 vwx40",fontsize=16,color="black",shape="triangle"];33 -> 51[label="",style="solid", color="black", weight=3]; 34[label="compare vwx30 vwx40",fontsize=16,color="black",shape="triangle"];34 -> 52[label="",style="solid", color="black", weight=3]; 35[label="compare vwx30 vwx40",fontsize=16,color="black",shape="triangle"];35 -> 53[label="",style="solid", color="black", weight=3]; 36[label="compare vwx30 vwx40",fontsize=16,color="black",shape="triangle"];36 -> 54[label="",style="solid", color="black", weight=3]; 37[label="primCompAux0 vwx9 LT",fontsize=16,color="black",shape="box"];37 -> 55[label="",style="solid", color="black", weight=3]; 38[label="primCompAux0 vwx9 EQ",fontsize=16,color="black",shape="box"];38 -> 56[label="",style="solid", color="black", weight=3]; 39[label="primCompAux0 vwx9 GT",fontsize=16,color="black",shape="box"];39 -> 57[label="",style="solid", color="black", weight=3]; 40[label="compare (vwx300 :% vwx301) vwx40",fontsize=16,color="burlywood",shape="box"];2649[label="vwx40/vwx400 :% vwx401",fontsize=10,color="white",style="solid",shape="box"];40 -> 2649[label="",style="solid", color="burlywood", weight=9]; 2649 -> 58[label="",style="solid", color="burlywood", weight=3]; 41[label="compare (Integer vwx300) vwx40",fontsize=16,color="burlywood",shape="box"];2650[label="vwx40/Integer vwx400",fontsize=10,color="white",style="solid",shape="box"];41 -> 2650[label="",style="solid", color="burlywood", weight=9]; 2650 -> 59[label="",style="solid", color="burlywood", weight=3]; 42[label="compare3 vwx30 vwx40",fontsize=16,color="black",shape="box"];42 -> 60[label="",style="solid", color="black", weight=3]; 43[label="vwx30",fontsize=16,color="green",shape="box"];44[label="vwx40",fontsize=16,color="green",shape="box"];45[label="primCmpFloat vwx30 vwx40",fontsize=16,color="burlywood",shape="box"];2651[label="vwx30/Float vwx300 vwx301",fontsize=10,color="white",style="solid",shape="box"];45 -> 2651[label="",style="solid", color="burlywood", weight=9]; 2651 -> 61[label="",style="solid", color="burlywood", weight=3]; 46[label="compare3 vwx30 vwx40",fontsize=16,color="black",shape="box"];46 -> 62[label="",style="solid", color="black", weight=3]; 47[label="compare3 vwx30 vwx40",fontsize=16,color="black",shape="box"];47 -> 63[label="",style="solid", color="black", weight=3]; 48[label="compare () vwx40",fontsize=16,color="burlywood",shape="box"];2652[label="vwx40/()",fontsize=10,color="white",style="solid",shape="box"];48 -> 2652[label="",style="solid", color="burlywood", weight=9]; 2652 -> 64[label="",style="solid", color="burlywood", weight=3]; 49[label="compare3 vwx30 vwx40",fontsize=16,color="black",shape="box"];49 -> 65[label="",style="solid", color="black", weight=3]; 50[label="compare3 vwx30 vwx40",fontsize=16,color="black",shape="box"];50 -> 66[label="",style="solid", color="black", weight=3]; 51[label="primCmpChar vwx30 vwx40",fontsize=16,color="burlywood",shape="box"];2653[label="vwx30/Char vwx300",fontsize=10,color="white",style="solid",shape="box"];51 -> 2653[label="",style="solid", color="burlywood", weight=9]; 2653 -> 67[label="",style="solid", color="burlywood", weight=3]; 52[label="compare3 vwx30 vwx40",fontsize=16,color="black",shape="box"];52 -> 68[label="",style="solid", color="black", weight=3]; 53[label="primCmpInt vwx30 vwx40",fontsize=16,color="burlywood",shape="triangle"];2654[label="vwx30/Pos vwx300",fontsize=10,color="white",style="solid",shape="box"];53 -> 2654[label="",style="solid", color="burlywood", weight=9]; 2654 -> 69[label="",style="solid", color="burlywood", weight=3]; 2655[label="vwx30/Neg vwx300",fontsize=10,color="white",style="solid",shape="box"];53 -> 2655[label="",style="solid", color="burlywood", weight=9]; 2655 -> 70[label="",style="solid", color="burlywood", weight=3]; 54[label="primCmpDouble vwx30 vwx40",fontsize=16,color="burlywood",shape="box"];2656[label="vwx30/Double vwx300 vwx301",fontsize=10,color="white",style="solid",shape="box"];54 -> 2656[label="",style="solid", color="burlywood", weight=9]; 2656 -> 71[label="",style="solid", color="burlywood", weight=3]; 55[label="LT",fontsize=16,color="green",shape="box"];56[label="vwx9",fontsize=16,color="green",shape="box"];57[label="GT",fontsize=16,color="green",shape="box"];58[label="compare (vwx300 :% vwx301) (vwx400 :% vwx401)",fontsize=16,color="black",shape="box"];58 -> 72[label="",style="solid", color="black", weight=3]; 59[label="compare (Integer vwx300) (Integer vwx400)",fontsize=16,color="black",shape="box"];59 -> 73[label="",style="solid", color="black", weight=3]; 60[label="compare2 vwx30 vwx40 (vwx30 == vwx40)",fontsize=16,color="burlywood",shape="box"];2657[label="vwx30/(vwx300,vwx301)",fontsize=10,color="white",style="solid",shape="box"];60 -> 2657[label="",style="solid", color="burlywood", weight=9]; 2657 -> 74[label="",style="solid", color="burlywood", weight=3]; 61[label="primCmpFloat (Float vwx300 vwx301) vwx40",fontsize=16,color="burlywood",shape="box"];2658[label="vwx301/Pos vwx3010",fontsize=10,color="white",style="solid",shape="box"];61 -> 2658[label="",style="solid", color="burlywood", weight=9]; 2658 -> 75[label="",style="solid", color="burlywood", weight=3]; 2659[label="vwx301/Neg vwx3010",fontsize=10,color="white",style="solid",shape="box"];61 -> 2659[label="",style="solid", color="burlywood", weight=9]; 2659 -> 76[label="",style="solid", color="burlywood", weight=3]; 62[label="compare2 vwx30 vwx40 (vwx30 == vwx40)",fontsize=16,color="burlywood",shape="box"];2660[label="vwx30/Nothing",fontsize=10,color="white",style="solid",shape="box"];62 -> 2660[label="",style="solid", color="burlywood", weight=9]; 2660 -> 77[label="",style="solid", color="burlywood", weight=3]; 2661[label="vwx30/Just vwx300",fontsize=10,color="white",style="solid",shape="box"];62 -> 2661[label="",style="solid", color="burlywood", weight=9]; 2661 -> 78[label="",style="solid", color="burlywood", weight=3]; 63[label="compare2 vwx30 vwx40 (vwx30 == vwx40)",fontsize=16,color="burlywood",shape="box"];2662[label="vwx30/False",fontsize=10,color="white",style="solid",shape="box"];63 -> 2662[label="",style="solid", color="burlywood", weight=9]; 2662 -> 79[label="",style="solid", color="burlywood", weight=3]; 2663[label="vwx30/True",fontsize=10,color="white",style="solid",shape="box"];63 -> 2663[label="",style="solid", color="burlywood", weight=9]; 2663 -> 80[label="",style="solid", color="burlywood", weight=3]; 64[label="compare () ()",fontsize=16,color="black",shape="box"];64 -> 81[label="",style="solid", color="black", weight=3]; 65[label="compare2 vwx30 vwx40 (vwx30 == vwx40)",fontsize=16,color="burlywood",shape="box"];2664[label="vwx30/Left vwx300",fontsize=10,color="white",style="solid",shape="box"];65 -> 2664[label="",style="solid", color="burlywood", weight=9]; 2664 -> 82[label="",style="solid", color="burlywood", weight=3]; 2665[label="vwx30/Right vwx300",fontsize=10,color="white",style="solid",shape="box"];65 -> 2665[label="",style="solid", color="burlywood", weight=9]; 2665 -> 83[label="",style="solid", color="burlywood", weight=3]; 66[label="compare2 vwx30 vwx40 (vwx30 == vwx40)",fontsize=16,color="burlywood",shape="box"];2666[label="vwx30/(vwx300,vwx301,vwx302)",fontsize=10,color="white",style="solid",shape="box"];66 -> 2666[label="",style="solid", color="burlywood", weight=9]; 2666 -> 84[label="",style="solid", color="burlywood", weight=3]; 67[label="primCmpChar (Char vwx300) vwx40",fontsize=16,color="burlywood",shape="box"];2667[label="vwx40/Char vwx400",fontsize=10,color="white",style="solid",shape="box"];67 -> 2667[label="",style="solid", color="burlywood", weight=9]; 2667 -> 85[label="",style="solid", color="burlywood", weight=3]; 68[label="compare2 vwx30 vwx40 (vwx30 == vwx40)",fontsize=16,color="burlywood",shape="box"];2668[label="vwx30/LT",fontsize=10,color="white",style="solid",shape="box"];68 -> 2668[label="",style="solid", color="burlywood", weight=9]; 2668 -> 86[label="",style="solid", color="burlywood", weight=3]; 2669[label="vwx30/EQ",fontsize=10,color="white",style="solid",shape="box"];68 -> 2669[label="",style="solid", color="burlywood", weight=9]; 2669 -> 87[label="",style="solid", color="burlywood", weight=3]; 2670[label="vwx30/GT",fontsize=10,color="white",style="solid",shape="box"];68 -> 2670[label="",style="solid", color="burlywood", weight=9]; 2670 -> 88[label="",style="solid", color="burlywood", weight=3]; 69[label="primCmpInt (Pos vwx300) vwx40",fontsize=16,color="burlywood",shape="box"];2671[label="vwx300/Succ vwx3000",fontsize=10,color="white",style="solid",shape="box"];69 -> 2671[label="",style="solid", color="burlywood", weight=9]; 2671 -> 89[label="",style="solid", color="burlywood", weight=3]; 2672[label="vwx300/Zero",fontsize=10,color="white",style="solid",shape="box"];69 -> 2672[label="",style="solid", color="burlywood", weight=9]; 2672 -> 90[label="",style="solid", color="burlywood", weight=3]; 70[label="primCmpInt (Neg vwx300) vwx40",fontsize=16,color="burlywood",shape="box"];2673[label="vwx300/Succ vwx3000",fontsize=10,color="white",style="solid",shape="box"];70 -> 2673[label="",style="solid", color="burlywood", weight=9]; 2673 -> 91[label="",style="solid", color="burlywood", weight=3]; 2674[label="vwx300/Zero",fontsize=10,color="white",style="solid",shape="box"];70 -> 2674[label="",style="solid", color="burlywood", weight=9]; 2674 -> 92[label="",style="solid", color="burlywood", weight=3]; 71[label="primCmpDouble (Double vwx300 vwx301) vwx40",fontsize=16,color="burlywood",shape="box"];2675[label="vwx301/Pos vwx3010",fontsize=10,color="white",style="solid",shape="box"];71 -> 2675[label="",style="solid", color="burlywood", weight=9]; 2675 -> 93[label="",style="solid", color="burlywood", weight=3]; 2676[label="vwx301/Neg vwx3010",fontsize=10,color="white",style="solid",shape="box"];71 -> 2676[label="",style="solid", color="burlywood", weight=9]; 2676 -> 94[label="",style="solid", color="burlywood", weight=3]; 72[label="compare (vwx300 * vwx401) (vwx400 * vwx301)",fontsize=16,color="blue",shape="box"];2677[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];72 -> 2677[label="",style="solid", color="blue", weight=9]; 2677 -> 95[label="",style="solid", color="blue", weight=3]; 2678[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];72 -> 2678[label="",style="solid", color="blue", weight=9]; 2678 -> 96[label="",style="solid", color="blue", weight=3]; 73 -> 53[label="",style="dashed", color="red", weight=0]; 73[label="primCmpInt vwx300 vwx400",fontsize=16,color="magenta"];73 -> 97[label="",style="dashed", color="magenta", weight=3]; 73 -> 98[label="",style="dashed", color="magenta", weight=3]; 74[label="compare2 (vwx300,vwx301) vwx40 ((vwx300,vwx301) == vwx40)",fontsize=16,color="burlywood",shape="box"];2679[label="vwx40/(vwx400,vwx401)",fontsize=10,color="white",style="solid",shape="box"];74 -> 2679[label="",style="solid", color="burlywood", weight=9]; 2679 -> 99[label="",style="solid", color="burlywood", weight=3]; 75[label="primCmpFloat (Float vwx300 (Pos vwx3010)) vwx40",fontsize=16,color="burlywood",shape="box"];2680[label="vwx40/Float vwx400 vwx401",fontsize=10,color="white",style="solid",shape="box"];75 -> 2680[label="",style="solid", color="burlywood", weight=9]; 2680 -> 100[label="",style="solid", color="burlywood", weight=3]; 76[label="primCmpFloat (Float vwx300 (Neg vwx3010)) vwx40",fontsize=16,color="burlywood",shape="box"];2681[label="vwx40/Float vwx400 vwx401",fontsize=10,color="white",style="solid",shape="box"];76 -> 2681[label="",style="solid", color="burlywood", weight=9]; 2681 -> 101[label="",style="solid", color="burlywood", weight=3]; 77[label="compare2 Nothing vwx40 (Nothing == vwx40)",fontsize=16,color="burlywood",shape="box"];2682[label="vwx40/Nothing",fontsize=10,color="white",style="solid",shape="box"];77 -> 2682[label="",style="solid", color="burlywood", weight=9]; 2682 -> 102[label="",style="solid", color="burlywood", weight=3]; 2683[label="vwx40/Just vwx400",fontsize=10,color="white",style="solid",shape="box"];77 -> 2683[label="",style="solid", color="burlywood", weight=9]; 2683 -> 103[label="",style="solid", color="burlywood", weight=3]; 78[label="compare2 (Just vwx300) vwx40 (Just vwx300 == vwx40)",fontsize=16,color="burlywood",shape="box"];2684[label="vwx40/Nothing",fontsize=10,color="white",style="solid",shape="box"];78 -> 2684[label="",style="solid", color="burlywood", weight=9]; 2684 -> 104[label="",style="solid", color="burlywood", weight=3]; 2685[label="vwx40/Just vwx400",fontsize=10,color="white",style="solid",shape="box"];78 -> 2685[label="",style="solid", color="burlywood", weight=9]; 2685 -> 105[label="",style="solid", color="burlywood", weight=3]; 79[label="compare2 False vwx40 (False == vwx40)",fontsize=16,color="burlywood",shape="box"];2686[label="vwx40/False",fontsize=10,color="white",style="solid",shape="box"];79 -> 2686[label="",style="solid", color="burlywood", weight=9]; 2686 -> 106[label="",style="solid", color="burlywood", weight=3]; 2687[label="vwx40/True",fontsize=10,color="white",style="solid",shape="box"];79 -> 2687[label="",style="solid", color="burlywood", weight=9]; 2687 -> 107[label="",style="solid", color="burlywood", weight=3]; 80[label="compare2 True vwx40 (True == vwx40)",fontsize=16,color="burlywood",shape="box"];2688[label="vwx40/False",fontsize=10,color="white",style="solid",shape="box"];80 -> 2688[label="",style="solid", color="burlywood", weight=9]; 2688 -> 108[label="",style="solid", color="burlywood", weight=3]; 2689[label="vwx40/True",fontsize=10,color="white",style="solid",shape="box"];80 -> 2689[label="",style="solid", color="burlywood", weight=9]; 2689 -> 109[label="",style="solid", color="burlywood", weight=3]; 81[label="EQ",fontsize=16,color="green",shape="box"];82[label="compare2 (Left vwx300) vwx40 (Left vwx300 == vwx40)",fontsize=16,color="burlywood",shape="box"];2690[label="vwx40/Left vwx400",fontsize=10,color="white",style="solid",shape="box"];82 -> 2690[label="",style="solid", color="burlywood", weight=9]; 2690 -> 110[label="",style="solid", color="burlywood", weight=3]; 2691[label="vwx40/Right vwx400",fontsize=10,color="white",style="solid",shape="box"];82 -> 2691[label="",style="solid", color="burlywood", weight=9]; 2691 -> 111[label="",style="solid", color="burlywood", weight=3]; 83[label="compare2 (Right vwx300) vwx40 (Right vwx300 == vwx40)",fontsize=16,color="burlywood",shape="box"];2692[label="vwx40/Left vwx400",fontsize=10,color="white",style="solid",shape="box"];83 -> 2692[label="",style="solid", color="burlywood", weight=9]; 2692 -> 112[label="",style="solid", color="burlywood", weight=3]; 2693[label="vwx40/Right vwx400",fontsize=10,color="white",style="solid",shape="box"];83 -> 2693[label="",style="solid", color="burlywood", weight=9]; 2693 -> 113[label="",style="solid", color="burlywood", weight=3]; 84[label="compare2 (vwx300,vwx301,vwx302) vwx40 ((vwx300,vwx301,vwx302) == vwx40)",fontsize=16,color="burlywood",shape="box"];2694[label="vwx40/(vwx400,vwx401,vwx402)",fontsize=10,color="white",style="solid",shape="box"];84 -> 2694[label="",style="solid", color="burlywood", weight=9]; 2694 -> 114[label="",style="solid", color="burlywood", weight=3]; 85[label="primCmpChar (Char vwx300) (Char vwx400)",fontsize=16,color="black",shape="box"];85 -> 115[label="",style="solid", color="black", weight=3]; 86[label="compare2 LT vwx40 (LT == vwx40)",fontsize=16,color="burlywood",shape="box"];2695[label="vwx40/LT",fontsize=10,color="white",style="solid",shape="box"];86 -> 2695[label="",style="solid", color="burlywood", weight=9]; 2695 -> 116[label="",style="solid", color="burlywood", weight=3]; 2696[label="vwx40/EQ",fontsize=10,color="white",style="solid",shape="box"];86 -> 2696[label="",style="solid", color="burlywood", weight=9]; 2696 -> 117[label="",style="solid", color="burlywood", weight=3]; 2697[label="vwx40/GT",fontsize=10,color="white",style="solid",shape="box"];86 -> 2697[label="",style="solid", color="burlywood", weight=9]; 2697 -> 118[label="",style="solid", color="burlywood", weight=3]; 87[label="compare2 EQ vwx40 (EQ == vwx40)",fontsize=16,color="burlywood",shape="box"];2698[label="vwx40/LT",fontsize=10,color="white",style="solid",shape="box"];87 -> 2698[label="",style="solid", color="burlywood", weight=9]; 2698 -> 119[label="",style="solid", color="burlywood", weight=3]; 2699[label="vwx40/EQ",fontsize=10,color="white",style="solid",shape="box"];87 -> 2699[label="",style="solid", color="burlywood", weight=9]; 2699 -> 120[label="",style="solid", color="burlywood", weight=3]; 2700[label="vwx40/GT",fontsize=10,color="white",style="solid",shape="box"];87 -> 2700[label="",style="solid", color="burlywood", weight=9]; 2700 -> 121[label="",style="solid", color="burlywood", weight=3]; 88[label="compare2 GT vwx40 (GT == vwx40)",fontsize=16,color="burlywood",shape="box"];2701[label="vwx40/LT",fontsize=10,color="white",style="solid",shape="box"];88 -> 2701[label="",style="solid", color="burlywood", weight=9]; 2701 -> 122[label="",style="solid", color="burlywood", weight=3]; 2702[label="vwx40/EQ",fontsize=10,color="white",style="solid",shape="box"];88 -> 2702[label="",style="solid", color="burlywood", weight=9]; 2702 -> 123[label="",style="solid", color="burlywood", weight=3]; 2703[label="vwx40/GT",fontsize=10,color="white",style="solid",shape="box"];88 -> 2703[label="",style="solid", color="burlywood", weight=9]; 2703 -> 124[label="",style="solid", color="burlywood", weight=3]; 89[label="primCmpInt (Pos (Succ vwx3000)) vwx40",fontsize=16,color="burlywood",shape="box"];2704[label="vwx40/Pos vwx400",fontsize=10,color="white",style="solid",shape="box"];89 -> 2704[label="",style="solid", color="burlywood", weight=9]; 2704 -> 125[label="",style="solid", color="burlywood", weight=3]; 2705[label="vwx40/Neg vwx400",fontsize=10,color="white",style="solid",shape="box"];89 -> 2705[label="",style="solid", color="burlywood", weight=9]; 2705 -> 126[label="",style="solid", color="burlywood", weight=3]; 90[label="primCmpInt (Pos Zero) vwx40",fontsize=16,color="burlywood",shape="box"];2706[label="vwx40/Pos vwx400",fontsize=10,color="white",style="solid",shape="box"];90 -> 2706[label="",style="solid", color="burlywood", weight=9]; 2706 -> 127[label="",style="solid", color="burlywood", weight=3]; 2707[label="vwx40/Neg vwx400",fontsize=10,color="white",style="solid",shape="box"];90 -> 2707[label="",style="solid", color="burlywood", weight=9]; 2707 -> 128[label="",style="solid", color="burlywood", weight=3]; 91[label="primCmpInt (Neg (Succ vwx3000)) vwx40",fontsize=16,color="burlywood",shape="box"];2708[label="vwx40/Pos vwx400",fontsize=10,color="white",style="solid",shape="box"];91 -> 2708[label="",style="solid", color="burlywood", weight=9]; 2708 -> 129[label="",style="solid", color="burlywood", weight=3]; 2709[label="vwx40/Neg vwx400",fontsize=10,color="white",style="solid",shape="box"];91 -> 2709[label="",style="solid", color="burlywood", weight=9]; 2709 -> 130[label="",style="solid", color="burlywood", weight=3]; 92[label="primCmpInt (Neg Zero) vwx40",fontsize=16,color="burlywood",shape="box"];2710[label="vwx40/Pos vwx400",fontsize=10,color="white",style="solid",shape="box"];92 -> 2710[label="",style="solid", color="burlywood", weight=9]; 2710 -> 131[label="",style="solid", color="burlywood", weight=3]; 2711[label="vwx40/Neg vwx400",fontsize=10,color="white",style="solid",shape="box"];92 -> 2711[label="",style="solid", color="burlywood", weight=9]; 2711 -> 132[label="",style="solid", color="burlywood", weight=3]; 93[label="primCmpDouble (Double vwx300 (Pos vwx3010)) vwx40",fontsize=16,color="burlywood",shape="box"];2712[label="vwx40/Double vwx400 vwx401",fontsize=10,color="white",style="solid",shape="box"];93 -> 2712[label="",style="solid", color="burlywood", weight=9]; 2712 -> 133[label="",style="solid", color="burlywood", weight=3]; 94[label="primCmpDouble (Double vwx300 (Neg vwx3010)) vwx40",fontsize=16,color="burlywood",shape="box"];2713[label="vwx40/Double vwx400 vwx401",fontsize=10,color="white",style="solid",shape="box"];94 -> 2713[label="",style="solid", color="burlywood", weight=9]; 2713 -> 134[label="",style="solid", color="burlywood", weight=3]; 95 -> 24[label="",style="dashed", color="red", weight=0]; 95[label="compare (vwx300 * vwx401) (vwx400 * vwx301)",fontsize=16,color="magenta"];95 -> 135[label="",style="dashed", color="magenta", weight=3]; 95 -> 136[label="",style="dashed", color="magenta", weight=3]; 96 -> 35[label="",style="dashed", color="red", weight=0]; 96[label="compare (vwx300 * vwx401) (vwx400 * vwx301)",fontsize=16,color="magenta"];96 -> 137[label="",style="dashed", color="magenta", weight=3]; 96 -> 138[label="",style="dashed", color="magenta", weight=3]; 97[label="vwx400",fontsize=16,color="green",shape="box"];98[label="vwx300",fontsize=16,color="green",shape="box"];99[label="compare2 (vwx300,vwx301) (vwx400,vwx401) ((vwx300,vwx301) == (vwx400,vwx401))",fontsize=16,color="black",shape="box"];99 -> 139[label="",style="solid", color="black", weight=3]; 100[label="primCmpFloat (Float vwx300 (Pos vwx3010)) (Float vwx400 vwx401)",fontsize=16,color="burlywood",shape="box"];2714[label="vwx401/Pos vwx4010",fontsize=10,color="white",style="solid",shape="box"];100 -> 2714[label="",style="solid", color="burlywood", weight=9]; 2714 -> 140[label="",style="solid", color="burlywood", weight=3]; 2715[label="vwx401/Neg vwx4010",fontsize=10,color="white",style="solid",shape="box"];100 -> 2715[label="",style="solid", color="burlywood", weight=9]; 2715 -> 141[label="",style="solid", color="burlywood", weight=3]; 101[label="primCmpFloat (Float vwx300 (Neg vwx3010)) (Float vwx400 vwx401)",fontsize=16,color="burlywood",shape="box"];2716[label="vwx401/Pos vwx4010",fontsize=10,color="white",style="solid",shape="box"];101 -> 2716[label="",style="solid", color="burlywood", weight=9]; 2716 -> 142[label="",style="solid", color="burlywood", weight=3]; 2717[label="vwx401/Neg vwx4010",fontsize=10,color="white",style="solid",shape="box"];101 -> 2717[label="",style="solid", color="burlywood", weight=9]; 2717 -> 143[label="",style="solid", color="burlywood", weight=3]; 102[label="compare2 Nothing Nothing (Nothing == Nothing)",fontsize=16,color="black",shape="box"];102 -> 144[label="",style="solid", color="black", weight=3]; 103[label="compare2 Nothing (Just vwx400) (Nothing == Just vwx400)",fontsize=16,color="black",shape="box"];103 -> 145[label="",style="solid", color="black", weight=3]; 104[label="compare2 (Just vwx300) Nothing (Just vwx300 == Nothing)",fontsize=16,color="black",shape="box"];104 -> 146[label="",style="solid", color="black", weight=3]; 105[label="compare2 (Just vwx300) (Just vwx400) (Just vwx300 == Just vwx400)",fontsize=16,color="black",shape="box"];105 -> 147[label="",style="solid", color="black", weight=3]; 106[label="compare2 False False (False == False)",fontsize=16,color="black",shape="box"];106 -> 148[label="",style="solid", color="black", weight=3]; 107[label="compare2 False True (False == True)",fontsize=16,color="black",shape="box"];107 -> 149[label="",style="solid", color="black", weight=3]; 108[label="compare2 True False (True == False)",fontsize=16,color="black",shape="box"];108 -> 150[label="",style="solid", color="black", weight=3]; 109[label="compare2 True True (True == True)",fontsize=16,color="black",shape="box"];109 -> 151[label="",style="solid", color="black", weight=3]; 110[label="compare2 (Left vwx300) (Left vwx400) (Left vwx300 == Left vwx400)",fontsize=16,color="black",shape="box"];110 -> 152[label="",style="solid", color="black", weight=3]; 111[label="compare2 (Left vwx300) (Right vwx400) (Left vwx300 == Right vwx400)",fontsize=16,color="black",shape="box"];111 -> 153[label="",style="solid", color="black", weight=3]; 112[label="compare2 (Right vwx300) (Left vwx400) (Right vwx300 == Left vwx400)",fontsize=16,color="black",shape="box"];112 -> 154[label="",style="solid", color="black", weight=3]; 113[label="compare2 (Right vwx300) (Right vwx400) (Right vwx300 == Right vwx400)",fontsize=16,color="black",shape="box"];113 -> 155[label="",style="solid", color="black", weight=3]; 114[label="compare2 (vwx300,vwx301,vwx302) (vwx400,vwx401,vwx402) ((vwx300,vwx301,vwx302) == (vwx400,vwx401,vwx402))",fontsize=16,color="black",shape="box"];114 -> 156[label="",style="solid", color="black", weight=3]; 115[label="primCmpNat vwx300 vwx400",fontsize=16,color="burlywood",shape="triangle"];2718[label="vwx300/Succ vwx3000",fontsize=10,color="white",style="solid",shape="box"];115 -> 2718[label="",style="solid", color="burlywood", weight=9]; 2718 -> 157[label="",style="solid", color="burlywood", weight=3]; 2719[label="vwx300/Zero",fontsize=10,color="white",style="solid",shape="box"];115 -> 2719[label="",style="solid", color="burlywood", weight=9]; 2719 -> 158[label="",style="solid", color="burlywood", weight=3]; 116[label="compare2 LT LT (LT == LT)",fontsize=16,color="black",shape="box"];116 -> 159[label="",style="solid", color="black", weight=3]; 117[label="compare2 LT EQ (LT == EQ)",fontsize=16,color="black",shape="box"];117 -> 160[label="",style="solid", color="black", weight=3]; 118[label="compare2 LT GT (LT == GT)",fontsize=16,color="black",shape="box"];118 -> 161[label="",style="solid", color="black", weight=3]; 119[label="compare2 EQ LT (EQ == LT)",fontsize=16,color="black",shape="box"];119 -> 162[label="",style="solid", color="black", weight=3]; 120[label="compare2 EQ EQ (EQ == EQ)",fontsize=16,color="black",shape="box"];120 -> 163[label="",style="solid", color="black", weight=3]; 121[label="compare2 EQ GT (EQ == GT)",fontsize=16,color="black",shape="box"];121 -> 164[label="",style="solid", color="black", weight=3]; 122[label="compare2 GT LT (GT == LT)",fontsize=16,color="black",shape="box"];122 -> 165[label="",style="solid", color="black", weight=3]; 123[label="compare2 GT EQ (GT == EQ)",fontsize=16,color="black",shape="box"];123 -> 166[label="",style="solid", color="black", weight=3]; 124[label="compare2 GT GT (GT == GT)",fontsize=16,color="black",shape="box"];124 -> 167[label="",style="solid", color="black", weight=3]; 125[label="primCmpInt (Pos (Succ vwx3000)) (Pos vwx400)",fontsize=16,color="black",shape="box"];125 -> 168[label="",style="solid", color="black", weight=3]; 126[label="primCmpInt (Pos (Succ vwx3000)) (Neg vwx400)",fontsize=16,color="black",shape="box"];126 -> 169[label="",style="solid", color="black", weight=3]; 127[label="primCmpInt (Pos Zero) (Pos vwx400)",fontsize=16,color="burlywood",shape="box"];2720[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];127 -> 2720[label="",style="solid", color="burlywood", weight=9]; 2720 -> 170[label="",style="solid", color="burlywood", weight=3]; 2721[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];127 -> 2721[label="",style="solid", color="burlywood", weight=9]; 2721 -> 171[label="",style="solid", color="burlywood", weight=3]; 128[label="primCmpInt (Pos Zero) (Neg vwx400)",fontsize=16,color="burlywood",shape="box"];2722[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];128 -> 2722[label="",style="solid", color="burlywood", weight=9]; 2722 -> 172[label="",style="solid", color="burlywood", weight=3]; 2723[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];128 -> 2723[label="",style="solid", color="burlywood", weight=9]; 2723 -> 173[label="",style="solid", color="burlywood", weight=3]; 129[label="primCmpInt (Neg (Succ vwx3000)) (Pos vwx400)",fontsize=16,color="black",shape="box"];129 -> 174[label="",style="solid", color="black", weight=3]; 130[label="primCmpInt (Neg (Succ vwx3000)) (Neg vwx400)",fontsize=16,color="black",shape="box"];130 -> 175[label="",style="solid", color="black", weight=3]; 131[label="primCmpInt (Neg Zero) (Pos vwx400)",fontsize=16,color="burlywood",shape="box"];2724[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];131 -> 2724[label="",style="solid", color="burlywood", weight=9]; 2724 -> 176[label="",style="solid", color="burlywood", weight=3]; 2725[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];131 -> 2725[label="",style="solid", color="burlywood", weight=9]; 2725 -> 177[label="",style="solid", color="burlywood", weight=3]; 132[label="primCmpInt (Neg Zero) (Neg vwx400)",fontsize=16,color="burlywood",shape="box"];2726[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];132 -> 2726[label="",style="solid", color="burlywood", weight=9]; 2726 -> 178[label="",style="solid", color="burlywood", weight=3]; 2727[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];132 -> 2727[label="",style="solid", color="burlywood", weight=9]; 2727 -> 179[label="",style="solid", color="burlywood", weight=3]; 133[label="primCmpDouble (Double vwx300 (Pos vwx3010)) (Double vwx400 vwx401)",fontsize=16,color="burlywood",shape="box"];2728[label="vwx401/Pos vwx4010",fontsize=10,color="white",style="solid",shape="box"];133 -> 2728[label="",style="solid", color="burlywood", weight=9]; 2728 -> 180[label="",style="solid", color="burlywood", weight=3]; 2729[label="vwx401/Neg vwx4010",fontsize=10,color="white",style="solid",shape="box"];133 -> 2729[label="",style="solid", color="burlywood", weight=9]; 2729 -> 181[label="",style="solid", color="burlywood", weight=3]; 134[label="primCmpDouble (Double vwx300 (Neg vwx3010)) (Double vwx400 vwx401)",fontsize=16,color="burlywood",shape="box"];2730[label="vwx401/Pos vwx4010",fontsize=10,color="white",style="solid",shape="box"];134 -> 2730[label="",style="solid", color="burlywood", weight=9]; 2730 -> 182[label="",style="solid", color="burlywood", weight=3]; 2731[label="vwx401/Neg vwx4010",fontsize=10,color="white",style="solid",shape="box"];134 -> 2731[label="",style="solid", color="burlywood", weight=9]; 2731 -> 183[label="",style="solid", color="burlywood", weight=3]; 135[label="vwx400 * vwx301",fontsize=16,color="burlywood",shape="triangle"];2732[label="vwx400/Integer vwx4000",fontsize=10,color="white",style="solid",shape="box"];135 -> 2732[label="",style="solid", color="burlywood", weight=9]; 2732 -> 184[label="",style="solid", color="burlywood", weight=3]; 136 -> 135[label="",style="dashed", color="red", weight=0]; 136[label="vwx300 * vwx401",fontsize=16,color="magenta"];136 -> 185[label="",style="dashed", color="magenta", weight=3]; 136 -> 186[label="",style="dashed", color="magenta", weight=3]; 137[label="vwx400 * vwx301",fontsize=16,color="black",shape="triangle"];137 -> 187[label="",style="solid", color="black", weight=3]; 138 -> 137[label="",style="dashed", color="red", weight=0]; 138[label="vwx300 * vwx401",fontsize=16,color="magenta"];138 -> 188[label="",style="dashed", color="magenta", weight=3]; 138 -> 189[label="",style="dashed", color="magenta", weight=3]; 139 -> 611[label="",style="dashed", color="red", weight=0]; 139[label="compare2 (vwx300,vwx301) (vwx400,vwx401) (vwx300 == vwx400 && vwx301 == vwx401)",fontsize=16,color="magenta"];139 -> 612[label="",style="dashed", color="magenta", weight=3]; 139 -> 613[label="",style="dashed", color="magenta", weight=3]; 139 -> 614[label="",style="dashed", color="magenta", weight=3]; 139 -> 615[label="",style="dashed", color="magenta", weight=3]; 139 -> 616[label="",style="dashed", color="magenta", weight=3]; 140[label="primCmpFloat (Float vwx300 (Pos vwx3010)) (Float vwx400 (Pos vwx4010))",fontsize=16,color="black",shape="box"];140 -> 196[label="",style="solid", color="black", weight=3]; 141[label="primCmpFloat (Float vwx300 (Pos vwx3010)) (Float vwx400 (Neg vwx4010))",fontsize=16,color="black",shape="box"];141 -> 197[label="",style="solid", color="black", weight=3]; 142[label="primCmpFloat (Float vwx300 (Neg vwx3010)) (Float vwx400 (Pos vwx4010))",fontsize=16,color="black",shape="box"];142 -> 198[label="",style="solid", color="black", weight=3]; 143[label="primCmpFloat (Float vwx300 (Neg vwx3010)) (Float vwx400 (Neg vwx4010))",fontsize=16,color="black",shape="box"];143 -> 199[label="",style="solid", color="black", weight=3]; 144[label="compare2 Nothing Nothing True",fontsize=16,color="black",shape="box"];144 -> 200[label="",style="solid", color="black", weight=3]; 145[label="compare2 Nothing (Just vwx400) False",fontsize=16,color="black",shape="box"];145 -> 201[label="",style="solid", color="black", weight=3]; 146[label="compare2 (Just vwx300) Nothing False",fontsize=16,color="black",shape="box"];146 -> 202[label="",style="solid", color="black", weight=3]; 147 -> 203[label="",style="dashed", color="red", weight=0]; 147[label="compare2 (Just vwx300) (Just vwx400) (vwx300 == vwx400)",fontsize=16,color="magenta"];147 -> 204[label="",style="dashed", color="magenta", weight=3]; 147 -> 205[label="",style="dashed", color="magenta", weight=3]; 147 -> 206[label="",style="dashed", color="magenta", weight=3]; 148[label="compare2 False False True",fontsize=16,color="black",shape="box"];148 -> 207[label="",style="solid", color="black", weight=3]; 149[label="compare2 False True False",fontsize=16,color="black",shape="box"];149 -> 208[label="",style="solid", color="black", weight=3]; 150[label="compare2 True False False",fontsize=16,color="black",shape="box"];150 -> 209[label="",style="solid", color="black", weight=3]; 151[label="compare2 True True True",fontsize=16,color="black",shape="box"];151 -> 210[label="",style="solid", color="black", weight=3]; 152 -> 211[label="",style="dashed", color="red", weight=0]; 152[label="compare2 (Left vwx300) (Left vwx400) (vwx300 == vwx400)",fontsize=16,color="magenta"];152 -> 212[label="",style="dashed", color="magenta", weight=3]; 152 -> 213[label="",style="dashed", color="magenta", weight=3]; 152 -> 214[label="",style="dashed", color="magenta", weight=3]; 153[label="compare2 (Left vwx300) (Right vwx400) False",fontsize=16,color="black",shape="box"];153 -> 215[label="",style="solid", color="black", weight=3]; 154[label="compare2 (Right vwx300) (Left vwx400) False",fontsize=16,color="black",shape="box"];154 -> 216[label="",style="solid", color="black", weight=3]; 155 -> 217[label="",style="dashed", color="red", weight=0]; 155[label="compare2 (Right vwx300) (Right vwx400) (vwx300 == vwx400)",fontsize=16,color="magenta"];155 -> 218[label="",style="dashed", color="magenta", weight=3]; 155 -> 219[label="",style="dashed", color="magenta", weight=3]; 155 -> 220[label="",style="dashed", color="magenta", weight=3]; 156 -> 661[label="",style="dashed", color="red", weight=0]; 156[label="compare2 (vwx300,vwx301,vwx302) (vwx400,vwx401,vwx402) (vwx300 == vwx400 && vwx301 == vwx401 && vwx302 == vwx402)",fontsize=16,color="magenta"];156 -> 662[label="",style="dashed", color="magenta", weight=3]; 156 -> 663[label="",style="dashed", color="magenta", weight=3]; 156 -> 664[label="",style="dashed", color="magenta", weight=3]; 156 -> 665[label="",style="dashed", color="magenta", weight=3]; 156 -> 666[label="",style="dashed", color="magenta", weight=3]; 156 -> 667[label="",style="dashed", color="magenta", weight=3]; 156 -> 668[label="",style="dashed", color="magenta", weight=3]; 157[label="primCmpNat (Succ vwx3000) vwx400",fontsize=16,color="burlywood",shape="box"];2733[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];157 -> 2733[label="",style="solid", color="burlywood", weight=9]; 2733 -> 229[label="",style="solid", color="burlywood", weight=3]; 2734[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];157 -> 2734[label="",style="solid", color="burlywood", weight=9]; 2734 -> 230[label="",style="solid", color="burlywood", weight=3]; 158[label="primCmpNat Zero vwx400",fontsize=16,color="burlywood",shape="box"];2735[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];158 -> 2735[label="",style="solid", color="burlywood", weight=9]; 2735 -> 231[label="",style="solid", color="burlywood", weight=3]; 2736[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];158 -> 2736[label="",style="solid", color="burlywood", weight=9]; 2736 -> 232[label="",style="solid", color="burlywood", weight=3]; 159[label="compare2 LT LT True",fontsize=16,color="black",shape="box"];159 -> 233[label="",style="solid", color="black", weight=3]; 160[label="compare2 LT EQ False",fontsize=16,color="black",shape="box"];160 -> 234[label="",style="solid", color="black", weight=3]; 161[label="compare2 LT GT False",fontsize=16,color="black",shape="box"];161 -> 235[label="",style="solid", color="black", weight=3]; 162[label="compare2 EQ LT False",fontsize=16,color="black",shape="box"];162 -> 236[label="",style="solid", color="black", weight=3]; 163[label="compare2 EQ EQ True",fontsize=16,color="black",shape="box"];163 -> 237[label="",style="solid", color="black", weight=3]; 164[label="compare2 EQ GT False",fontsize=16,color="black",shape="box"];164 -> 238[label="",style="solid", color="black", weight=3]; 165[label="compare2 GT LT False",fontsize=16,color="black",shape="box"];165 -> 239[label="",style="solid", color="black", weight=3]; 166[label="compare2 GT EQ False",fontsize=16,color="black",shape="box"];166 -> 240[label="",style="solid", color="black", weight=3]; 167[label="compare2 GT GT True",fontsize=16,color="black",shape="box"];167 -> 241[label="",style="solid", color="black", weight=3]; 168 -> 115[label="",style="dashed", color="red", weight=0]; 168[label="primCmpNat (Succ vwx3000) vwx400",fontsize=16,color="magenta"];168 -> 242[label="",style="dashed", color="magenta", weight=3]; 168 -> 243[label="",style="dashed", color="magenta", weight=3]; 169[label="GT",fontsize=16,color="green",shape="box"];170[label="primCmpInt (Pos Zero) (Pos (Succ vwx4000))",fontsize=16,color="black",shape="box"];170 -> 244[label="",style="solid", color="black", weight=3]; 171[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];171 -> 245[label="",style="solid", color="black", weight=3]; 172[label="primCmpInt (Pos Zero) (Neg (Succ vwx4000))",fontsize=16,color="black",shape="box"];172 -> 246[label="",style="solid", color="black", weight=3]; 173[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];173 -> 247[label="",style="solid", color="black", weight=3]; 174[label="LT",fontsize=16,color="green",shape="box"];175 -> 115[label="",style="dashed", color="red", weight=0]; 175[label="primCmpNat vwx400 (Succ vwx3000)",fontsize=16,color="magenta"];175 -> 248[label="",style="dashed", color="magenta", weight=3]; 175 -> 249[label="",style="dashed", color="magenta", weight=3]; 176[label="primCmpInt (Neg Zero) (Pos (Succ vwx4000))",fontsize=16,color="black",shape="box"];176 -> 250[label="",style="solid", color="black", weight=3]; 177[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];177 -> 251[label="",style="solid", color="black", weight=3]; 178[label="primCmpInt (Neg Zero) (Neg (Succ vwx4000))",fontsize=16,color="black",shape="box"];178 -> 252[label="",style="solid", color="black", weight=3]; 179[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];179 -> 253[label="",style="solid", color="black", weight=3]; 180[label="primCmpDouble (Double vwx300 (Pos vwx3010)) (Double vwx400 (Pos vwx4010))",fontsize=16,color="black",shape="box"];180 -> 254[label="",style="solid", color="black", weight=3]; 181[label="primCmpDouble (Double vwx300 (Pos vwx3010)) (Double vwx400 (Neg vwx4010))",fontsize=16,color="black",shape="box"];181 -> 255[label="",style="solid", color="black", weight=3]; 182[label="primCmpDouble (Double vwx300 (Neg vwx3010)) (Double vwx400 (Pos vwx4010))",fontsize=16,color="black",shape="box"];182 -> 256[label="",style="solid", color="black", weight=3]; 183[label="primCmpDouble (Double vwx300 (Neg vwx3010)) (Double vwx400 (Neg vwx4010))",fontsize=16,color="black",shape="box"];183 -> 257[label="",style="solid", color="black", weight=3]; 184[label="Integer vwx4000 * vwx301",fontsize=16,color="burlywood",shape="box"];2737[label="vwx301/Integer vwx3010",fontsize=10,color="white",style="solid",shape="box"];184 -> 2737[label="",style="solid", color="burlywood", weight=9]; 2737 -> 258[label="",style="solid", color="burlywood", weight=3]; 185[label="vwx401",fontsize=16,color="green",shape="box"];186[label="vwx300",fontsize=16,color="green",shape="box"];187[label="primMulInt vwx400 vwx301",fontsize=16,color="burlywood",shape="triangle"];2738[label="vwx400/Pos vwx4000",fontsize=10,color="white",style="solid",shape="box"];187 -> 2738[label="",style="solid", color="burlywood", weight=9]; 2738 -> 259[label="",style="solid", color="burlywood", weight=3]; 2739[label="vwx400/Neg vwx4000",fontsize=10,color="white",style="solid",shape="box"];187 -> 2739[label="",style="solid", color="burlywood", weight=9]; 2739 -> 260[label="",style="solid", color="burlywood", weight=3]; 188[label="vwx401",fontsize=16,color="green",shape="box"];189[label="vwx300",fontsize=16,color="green",shape="box"];612[label="vwx401",fontsize=16,color="green",shape="box"];613[label="vwx301",fontsize=16,color="green",shape="box"];614[label="vwx400",fontsize=16,color="green",shape="box"];615 -> 693[label="",style="dashed", color="red", weight=0]; 615[label="vwx300 == vwx400 && vwx301 == vwx401",fontsize=16,color="magenta"];615 -> 694[label="",style="dashed", color="magenta", weight=3]; 615 -> 695[label="",style="dashed", color="magenta", weight=3]; 616[label="vwx300",fontsize=16,color="green",shape="box"];611[label="compare2 (vwx64,vwx65) (vwx66,vwx67) vwx68",fontsize=16,color="burlywood",shape="triangle"];2740[label="vwx68/False",fontsize=10,color="white",style="solid",shape="box"];611 -> 2740[label="",style="solid", color="burlywood", weight=9]; 2740 -> 636[label="",style="solid", color="burlywood", weight=3]; 2741[label="vwx68/True",fontsize=10,color="white",style="solid",shape="box"];611 -> 2741[label="",style="solid", color="burlywood", weight=9]; 2741 -> 637[label="",style="solid", color="burlywood", weight=3]; 196 -> 35[label="",style="dashed", color="red", weight=0]; 196[label="compare (vwx300 * Pos vwx4010) (Pos vwx3010 * vwx400)",fontsize=16,color="magenta"];196 -> 277[label="",style="dashed", color="magenta", weight=3]; 196 -> 278[label="",style="dashed", color="magenta", weight=3]; 197 -> 35[label="",style="dashed", color="red", weight=0]; 197[label="compare (vwx300 * Pos vwx4010) (Neg vwx3010 * vwx400)",fontsize=16,color="magenta"];197 -> 279[label="",style="dashed", color="magenta", weight=3]; 197 -> 280[label="",style="dashed", color="magenta", weight=3]; 198 -> 35[label="",style="dashed", color="red", weight=0]; 198[label="compare (vwx300 * Neg vwx4010) (Pos vwx3010 * vwx400)",fontsize=16,color="magenta"];198 -> 281[label="",style="dashed", color="magenta", weight=3]; 198 -> 282[label="",style="dashed", color="magenta", weight=3]; 199 -> 35[label="",style="dashed", color="red", weight=0]; 199[label="compare (vwx300 * Neg vwx4010) (Neg vwx3010 * vwx400)",fontsize=16,color="magenta"];199 -> 283[label="",style="dashed", color="magenta", weight=3]; 199 -> 284[label="",style="dashed", color="magenta", weight=3]; 200[label="EQ",fontsize=16,color="green",shape="box"];201[label="compare1 Nothing (Just vwx400) (Nothing <= Just vwx400)",fontsize=16,color="black",shape="box"];201 -> 285[label="",style="solid", color="black", weight=3]; 202[label="compare1 (Just vwx300) Nothing (Just vwx300 <= Nothing)",fontsize=16,color="black",shape="box"];202 -> 286[label="",style="solid", color="black", weight=3]; 204[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];2742[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];204 -> 2742[label="",style="solid", color="blue", weight=9]; 2742 -> 287[label="",style="solid", color="blue", weight=3]; 2743[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];204 -> 2743[label="",style="solid", color="blue", weight=9]; 2743 -> 288[label="",style="solid", color="blue", weight=3]; 2744[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];204 -> 2744[label="",style="solid", color="blue", weight=9]; 2744 -> 289[label="",style="solid", color="blue", weight=3]; 2745[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];204 -> 2745[label="",style="solid", color="blue", weight=9]; 2745 -> 290[label="",style="solid", color="blue", weight=3]; 2746[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];204 -> 2746[label="",style="solid", color="blue", weight=9]; 2746 -> 291[label="",style="solid", color="blue", weight=3]; 2747[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];204 -> 2747[label="",style="solid", color="blue", weight=9]; 2747 -> 292[label="",style="solid", color="blue", weight=3]; 2748[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];204 -> 2748[label="",style="solid", color="blue", weight=9]; 2748 -> 293[label="",style="solid", color="blue", weight=3]; 2749[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];204 -> 2749[label="",style="solid", color="blue", weight=9]; 2749 -> 294[label="",style="solid", color="blue", weight=3]; 2750[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];204 -> 2750[label="",style="solid", color="blue", weight=9]; 2750 -> 295[label="",style="solid", color="blue", weight=3]; 2751[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];204 -> 2751[label="",style="solid", color="blue", weight=9]; 2751 -> 296[label="",style="solid", color="blue", weight=3]; 2752[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];204 -> 2752[label="",style="solid", color="blue", weight=9]; 2752 -> 297[label="",style="solid", color="blue", weight=3]; 2753[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];204 -> 2753[label="",style="solid", color="blue", weight=9]; 2753 -> 298[label="",style="solid", color="blue", weight=3]; 2754[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];204 -> 2754[label="",style="solid", color="blue", weight=9]; 2754 -> 299[label="",style="solid", color="blue", weight=3]; 2755[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];204 -> 2755[label="",style="solid", color="blue", weight=9]; 2755 -> 300[label="",style="solid", color="blue", weight=3]; 205[label="vwx400",fontsize=16,color="green",shape="box"];206[label="vwx300",fontsize=16,color="green",shape="box"];203[label="compare2 (Just vwx26) (Just vwx27) vwx28",fontsize=16,color="burlywood",shape="triangle"];2756[label="vwx28/False",fontsize=10,color="white",style="solid",shape="box"];203 -> 2756[label="",style="solid", color="burlywood", weight=9]; 2756 -> 301[label="",style="solid", color="burlywood", weight=3]; 2757[label="vwx28/True",fontsize=10,color="white",style="solid",shape="box"];203 -> 2757[label="",style="solid", color="burlywood", weight=9]; 2757 -> 302[label="",style="solid", color="burlywood", weight=3]; 207[label="EQ",fontsize=16,color="green",shape="box"];208[label="compare1 False True (False <= True)",fontsize=16,color="black",shape="box"];208 -> 303[label="",style="solid", color="black", weight=3]; 209[label="compare1 True False (True <= False)",fontsize=16,color="black",shape="box"];209 -> 304[label="",style="solid", color="black", weight=3]; 210[label="EQ",fontsize=16,color="green",shape="box"];212[label="vwx400",fontsize=16,color="green",shape="box"];213[label="vwx300",fontsize=16,color="green",shape="box"];214[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];2758[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];214 -> 2758[label="",style="solid", color="blue", weight=9]; 2758 -> 305[label="",style="solid", color="blue", weight=3]; 2759[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];214 -> 2759[label="",style="solid", color="blue", weight=9]; 2759 -> 306[label="",style="solid", color="blue", weight=3]; 2760[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];214 -> 2760[label="",style="solid", color="blue", weight=9]; 2760 -> 307[label="",style="solid", color="blue", weight=3]; 2761[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];214 -> 2761[label="",style="solid", color="blue", weight=9]; 2761 -> 308[label="",style="solid", color="blue", weight=3]; 2762[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];214 -> 2762[label="",style="solid", color="blue", weight=9]; 2762 -> 309[label="",style="solid", color="blue", weight=3]; 2763[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];214 -> 2763[label="",style="solid", color="blue", weight=9]; 2763 -> 310[label="",style="solid", color="blue", weight=3]; 2764[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];214 -> 2764[label="",style="solid", color="blue", weight=9]; 2764 -> 311[label="",style="solid", color="blue", weight=3]; 2765[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];214 -> 2765[label="",style="solid", color="blue", weight=9]; 2765 -> 312[label="",style="solid", color="blue", weight=3]; 2766[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];214 -> 2766[label="",style="solid", color="blue", weight=9]; 2766 -> 313[label="",style="solid", color="blue", weight=3]; 2767[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];214 -> 2767[label="",style="solid", color="blue", weight=9]; 2767 -> 314[label="",style="solid", color="blue", weight=3]; 2768[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];214 -> 2768[label="",style="solid", color="blue", weight=9]; 2768 -> 315[label="",style="solid", color="blue", weight=3]; 2769[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];214 -> 2769[label="",style="solid", color="blue", weight=9]; 2769 -> 316[label="",style="solid", color="blue", weight=3]; 2770[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];214 -> 2770[label="",style="solid", color="blue", weight=9]; 2770 -> 317[label="",style="solid", color="blue", weight=3]; 2771[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];214 -> 2771[label="",style="solid", color="blue", weight=9]; 2771 -> 318[label="",style="solid", color="blue", weight=3]; 211[label="compare2 (Left vwx33) (Left vwx34) vwx35",fontsize=16,color="burlywood",shape="triangle"];2772[label="vwx35/False",fontsize=10,color="white",style="solid",shape="box"];211 -> 2772[label="",style="solid", color="burlywood", weight=9]; 2772 -> 319[label="",style="solid", color="burlywood", weight=3]; 2773[label="vwx35/True",fontsize=10,color="white",style="solid",shape="box"];211 -> 2773[label="",style="solid", color="burlywood", weight=9]; 2773 -> 320[label="",style="solid", color="burlywood", weight=3]; 215[label="compare1 (Left vwx300) (Right vwx400) (Left vwx300 <= Right vwx400)",fontsize=16,color="black",shape="box"];215 -> 321[label="",style="solid", color="black", weight=3]; 216[label="compare1 (Right vwx300) (Left vwx400) (Right vwx300 <= Left vwx400)",fontsize=16,color="black",shape="box"];216 -> 322[label="",style="solid", color="black", weight=3]; 218[label="vwx300",fontsize=16,color="green",shape="box"];219[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];2774[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];219 -> 2774[label="",style="solid", color="blue", weight=9]; 2774 -> 323[label="",style="solid", color="blue", weight=3]; 2775[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];219 -> 2775[label="",style="solid", color="blue", weight=9]; 2775 -> 324[label="",style="solid", color="blue", weight=3]; 2776[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];219 -> 2776[label="",style="solid", color="blue", weight=9]; 2776 -> 325[label="",style="solid", color="blue", weight=3]; 2777[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];219 -> 2777[label="",style="solid", color="blue", weight=9]; 2777 -> 326[label="",style="solid", color="blue", weight=3]; 2778[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];219 -> 2778[label="",style="solid", color="blue", weight=9]; 2778 -> 327[label="",style="solid", color="blue", weight=3]; 2779[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];219 -> 2779[label="",style="solid", color="blue", weight=9]; 2779 -> 328[label="",style="solid", color="blue", weight=3]; 2780[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];219 -> 2780[label="",style="solid", color="blue", weight=9]; 2780 -> 329[label="",style="solid", color="blue", weight=3]; 2781[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];219 -> 2781[label="",style="solid", color="blue", weight=9]; 2781 -> 330[label="",style="solid", color="blue", weight=3]; 2782[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];219 -> 2782[label="",style="solid", color="blue", weight=9]; 2782 -> 331[label="",style="solid", color="blue", weight=3]; 2783[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];219 -> 2783[label="",style="solid", color="blue", weight=9]; 2783 -> 332[label="",style="solid", color="blue", weight=3]; 2784[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];219 -> 2784[label="",style="solid", color="blue", weight=9]; 2784 -> 333[label="",style="solid", color="blue", weight=3]; 2785[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];219 -> 2785[label="",style="solid", color="blue", weight=9]; 2785 -> 334[label="",style="solid", color="blue", weight=3]; 2786[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];219 -> 2786[label="",style="solid", color="blue", weight=9]; 2786 -> 335[label="",style="solid", color="blue", weight=3]; 2787[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];219 -> 2787[label="",style="solid", color="blue", weight=9]; 2787 -> 336[label="",style="solid", color="blue", weight=3]; 220[label="vwx400",fontsize=16,color="green",shape="box"];217[label="compare2 (Right vwx40) (Right vwx41) vwx42",fontsize=16,color="burlywood",shape="triangle"];2788[label="vwx42/False",fontsize=10,color="white",style="solid",shape="box"];217 -> 2788[label="",style="solid", color="burlywood", weight=9]; 2788 -> 337[label="",style="solid", color="burlywood", weight=3]; 2789[label="vwx42/True",fontsize=10,color="white",style="solid",shape="box"];217 -> 2789[label="",style="solid", color="burlywood", weight=9]; 2789 -> 338[label="",style="solid", color="burlywood", weight=3]; 662[label="vwx401",fontsize=16,color="green",shape="box"];663[label="vwx301",fontsize=16,color="green",shape="box"];664[label="vwx302",fontsize=16,color="green",shape="box"];665[label="vwx400",fontsize=16,color="green",shape="box"];666 -> 693[label="",style="dashed", color="red", weight=0]; 666[label="vwx300 == vwx400 && vwx301 == vwx401 && vwx302 == vwx402",fontsize=16,color="magenta"];666 -> 696[label="",style="dashed", color="magenta", weight=3]; 666 -> 697[label="",style="dashed", color="magenta", weight=3]; 667[label="vwx300",fontsize=16,color="green",shape="box"];668[label="vwx402",fontsize=16,color="green",shape="box"];661[label="compare2 (vwx51,vwx52,vwx53) (vwx54,vwx55,vwx56) vwx76",fontsize=16,color="burlywood",shape="triangle"];2790[label="vwx76/False",fontsize=10,color="white",style="solid",shape="box"];661 -> 2790[label="",style="solid", color="burlywood", weight=9]; 2790 -> 677[label="",style="solid", color="burlywood", weight=3]; 2791[label="vwx76/True",fontsize=10,color="white",style="solid",shape="box"];661 -> 2791[label="",style="solid", color="burlywood", weight=9]; 2791 -> 678[label="",style="solid", color="burlywood", weight=3]; 229[label="primCmpNat (Succ vwx3000) (Succ vwx4000)",fontsize=16,color="black",shape="box"];229 -> 355[label="",style="solid", color="black", weight=3]; 230[label="primCmpNat (Succ vwx3000) Zero",fontsize=16,color="black",shape="box"];230 -> 356[label="",style="solid", color="black", weight=3]; 231[label="primCmpNat Zero (Succ vwx4000)",fontsize=16,color="black",shape="box"];231 -> 357[label="",style="solid", color="black", weight=3]; 232[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];232 -> 358[label="",style="solid", color="black", weight=3]; 233[label="EQ",fontsize=16,color="green",shape="box"];234[label="compare1 LT EQ (LT <= EQ)",fontsize=16,color="black",shape="box"];234 -> 359[label="",style="solid", color="black", weight=3]; 235[label="compare1 LT GT (LT <= GT)",fontsize=16,color="black",shape="box"];235 -> 360[label="",style="solid", color="black", weight=3]; 236[label="compare1 EQ LT (EQ <= LT)",fontsize=16,color="black",shape="box"];236 -> 361[label="",style="solid", color="black", weight=3]; 237[label="EQ",fontsize=16,color="green",shape="box"];238[label="compare1 EQ GT (EQ <= GT)",fontsize=16,color="black",shape="box"];238 -> 362[label="",style="solid", color="black", weight=3]; 239[label="compare1 GT LT (GT <= LT)",fontsize=16,color="black",shape="box"];239 -> 363[label="",style="solid", color="black", weight=3]; 240[label="compare1 GT EQ (GT <= EQ)",fontsize=16,color="black",shape="box"];240 -> 364[label="",style="solid", color="black", weight=3]; 241[label="EQ",fontsize=16,color="green",shape="box"];242[label="vwx400",fontsize=16,color="green",shape="box"];243[label="Succ vwx3000",fontsize=16,color="green",shape="box"];244 -> 115[label="",style="dashed", color="red", weight=0]; 244[label="primCmpNat Zero (Succ vwx4000)",fontsize=16,color="magenta"];244 -> 365[label="",style="dashed", color="magenta", weight=3]; 244 -> 366[label="",style="dashed", color="magenta", weight=3]; 245[label="EQ",fontsize=16,color="green",shape="box"];246[label="GT",fontsize=16,color="green",shape="box"];247[label="EQ",fontsize=16,color="green",shape="box"];248[label="Succ vwx3000",fontsize=16,color="green",shape="box"];249[label="vwx400",fontsize=16,color="green",shape="box"];250[label="LT",fontsize=16,color="green",shape="box"];251[label="EQ",fontsize=16,color="green",shape="box"];252 -> 115[label="",style="dashed", color="red", weight=0]; 252[label="primCmpNat (Succ vwx4000) Zero",fontsize=16,color="magenta"];252 -> 367[label="",style="dashed", color="magenta", weight=3]; 252 -> 368[label="",style="dashed", color="magenta", weight=3]; 253[label="EQ",fontsize=16,color="green",shape="box"];254 -> 35[label="",style="dashed", color="red", weight=0]; 254[label="compare (vwx300 * Pos vwx4010) (Pos vwx3010 * vwx400)",fontsize=16,color="magenta"];254 -> 369[label="",style="dashed", color="magenta", weight=3]; 254 -> 370[label="",style="dashed", color="magenta", weight=3]; 255 -> 35[label="",style="dashed", color="red", weight=0]; 255[label="compare (vwx300 * Pos vwx4010) (Neg vwx3010 * vwx400)",fontsize=16,color="magenta"];255 -> 371[label="",style="dashed", color="magenta", weight=3]; 255 -> 372[label="",style="dashed", color="magenta", weight=3]; 256 -> 35[label="",style="dashed", color="red", weight=0]; 256[label="compare (vwx300 * Neg vwx4010) (Pos vwx3010 * vwx400)",fontsize=16,color="magenta"];256 -> 373[label="",style="dashed", color="magenta", weight=3]; 256 -> 374[label="",style="dashed", color="magenta", weight=3]; 257 -> 35[label="",style="dashed", color="red", weight=0]; 257[label="compare (vwx300 * Neg vwx4010) (Neg vwx3010 * vwx400)",fontsize=16,color="magenta"];257 -> 375[label="",style="dashed", color="magenta", weight=3]; 257 -> 376[label="",style="dashed", color="magenta", weight=3]; 258[label="Integer vwx4000 * Integer vwx3010",fontsize=16,color="black",shape="box"];258 -> 377[label="",style="solid", color="black", weight=3]; 259[label="primMulInt (Pos vwx4000) vwx301",fontsize=16,color="burlywood",shape="box"];2792[label="vwx301/Pos vwx3010",fontsize=10,color="white",style="solid",shape="box"];259 -> 2792[label="",style="solid", color="burlywood", weight=9]; 2792 -> 378[label="",style="solid", color="burlywood", weight=3]; 2793[label="vwx301/Neg vwx3010",fontsize=10,color="white",style="solid",shape="box"];259 -> 2793[label="",style="solid", color="burlywood", weight=9]; 2793 -> 379[label="",style="solid", color="burlywood", weight=3]; 260[label="primMulInt (Neg vwx4000) vwx301",fontsize=16,color="burlywood",shape="box"];2794[label="vwx301/Pos vwx3010",fontsize=10,color="white",style="solid",shape="box"];260 -> 2794[label="",style="solid", color="burlywood", weight=9]; 2794 -> 380[label="",style="solid", color="burlywood", weight=3]; 2795[label="vwx301/Neg vwx3010",fontsize=10,color="white",style="solid",shape="box"];260 -> 2795[label="",style="solid", color="burlywood", weight=9]; 2795 -> 381[label="",style="solid", color="burlywood", weight=3]; 694[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];2796[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];694 -> 2796[label="",style="solid", color="blue", weight=9]; 2796 -> 702[label="",style="solid", color="blue", weight=3]; 2797[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];694 -> 2797[label="",style="solid", color="blue", weight=9]; 2797 -> 703[label="",style="solid", color="blue", weight=3]; 2798[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];694 -> 2798[label="",style="solid", color="blue", weight=9]; 2798 -> 704[label="",style="solid", color="blue", weight=3]; 2799[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];694 -> 2799[label="",style="solid", color="blue", weight=9]; 2799 -> 705[label="",style="solid", color="blue", weight=3]; 2800[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];694 -> 2800[label="",style="solid", color="blue", weight=9]; 2800 -> 706[label="",style="solid", color="blue", weight=3]; 2801[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];694 -> 2801[label="",style="solid", color="blue", weight=9]; 2801 -> 707[label="",style="solid", color="blue", weight=3]; 2802[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];694 -> 2802[label="",style="solid", color="blue", weight=9]; 2802 -> 708[label="",style="solid", color="blue", weight=3]; 2803[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];694 -> 2803[label="",style="solid", color="blue", weight=9]; 2803 -> 709[label="",style="solid", color="blue", weight=3]; 2804[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];694 -> 2804[label="",style="solid", color="blue", weight=9]; 2804 -> 710[label="",style="solid", color="blue", weight=3]; 2805[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];694 -> 2805[label="",style="solid", color="blue", weight=9]; 2805 -> 711[label="",style="solid", color="blue", weight=3]; 2806[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];694 -> 2806[label="",style="solid", color="blue", weight=9]; 2806 -> 712[label="",style="solid", color="blue", weight=3]; 2807[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];694 -> 2807[label="",style="solid", color="blue", weight=9]; 2807 -> 713[label="",style="solid", color="blue", weight=3]; 2808[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];694 -> 2808[label="",style="solid", color="blue", weight=9]; 2808 -> 714[label="",style="solid", color="blue", weight=3]; 2809[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];694 -> 2809[label="",style="solid", color="blue", weight=9]; 2809 -> 715[label="",style="solid", color="blue", weight=3]; 695[label="vwx301 == vwx401",fontsize=16,color="blue",shape="box"];2810[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];695 -> 2810[label="",style="solid", color="blue", weight=9]; 2810 -> 716[label="",style="solid", color="blue", weight=3]; 2811[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];695 -> 2811[label="",style="solid", color="blue", weight=9]; 2811 -> 717[label="",style="solid", color="blue", weight=3]; 2812[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];695 -> 2812[label="",style="solid", color="blue", weight=9]; 2812 -> 718[label="",style="solid", color="blue", weight=3]; 2813[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];695 -> 2813[label="",style="solid", color="blue", weight=9]; 2813 -> 719[label="",style="solid", color="blue", weight=3]; 2814[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];695 -> 2814[label="",style="solid", color="blue", weight=9]; 2814 -> 720[label="",style="solid", color="blue", weight=3]; 2815[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];695 -> 2815[label="",style="solid", color="blue", weight=9]; 2815 -> 721[label="",style="solid", color="blue", weight=3]; 2816[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];695 -> 2816[label="",style="solid", color="blue", weight=9]; 2816 -> 722[label="",style="solid", color="blue", weight=3]; 2817[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];695 -> 2817[label="",style="solid", color="blue", weight=9]; 2817 -> 723[label="",style="solid", color="blue", weight=3]; 2818[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];695 -> 2818[label="",style="solid", color="blue", weight=9]; 2818 -> 724[label="",style="solid", color="blue", weight=3]; 2819[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];695 -> 2819[label="",style="solid", color="blue", weight=9]; 2819 -> 725[label="",style="solid", color="blue", weight=3]; 2820[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];695 -> 2820[label="",style="solid", color="blue", weight=9]; 2820 -> 726[label="",style="solid", color="blue", weight=3]; 2821[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];695 -> 2821[label="",style="solid", color="blue", weight=9]; 2821 -> 727[label="",style="solid", color="blue", weight=3]; 2822[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];695 -> 2822[label="",style="solid", color="blue", weight=9]; 2822 -> 728[label="",style="solid", color="blue", weight=3]; 2823[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];695 -> 2823[label="",style="solid", color="blue", weight=9]; 2823 -> 729[label="",style="solid", color="blue", weight=3]; 693[label="vwx81 && vwx82",fontsize=16,color="burlywood",shape="triangle"];2824[label="vwx81/False",fontsize=10,color="white",style="solid",shape="box"];693 -> 2824[label="",style="solid", color="burlywood", weight=9]; 2824 -> 730[label="",style="solid", color="burlywood", weight=3]; 2825[label="vwx81/True",fontsize=10,color="white",style="solid",shape="box"];693 -> 2825[label="",style="solid", color="burlywood", weight=9]; 2825 -> 731[label="",style="solid", color="burlywood", weight=3]; 636[label="compare2 (vwx64,vwx65) (vwx66,vwx67) False",fontsize=16,color="black",shape="box"];636 -> 732[label="",style="solid", color="black", weight=3]; 637[label="compare2 (vwx64,vwx65) (vwx66,vwx67) True",fontsize=16,color="black",shape="box"];637 -> 733[label="",style="solid", color="black", weight=3]; 277 -> 137[label="",style="dashed", color="red", weight=0]; 277[label="Pos vwx3010 * vwx400",fontsize=16,color="magenta"];277 -> 404[label="",style="dashed", color="magenta", weight=3]; 277 -> 405[label="",style="dashed", color="magenta", weight=3]; 278 -> 137[label="",style="dashed", color="red", weight=0]; 278[label="vwx300 * Pos vwx4010",fontsize=16,color="magenta"];278 -> 406[label="",style="dashed", color="magenta", weight=3]; 278 -> 407[label="",style="dashed", color="magenta", weight=3]; 279 -> 137[label="",style="dashed", color="red", weight=0]; 279[label="Neg vwx3010 * vwx400",fontsize=16,color="magenta"];279 -> 408[label="",style="dashed", color="magenta", weight=3]; 279 -> 409[label="",style="dashed", color="magenta", weight=3]; 280 -> 137[label="",style="dashed", color="red", weight=0]; 280[label="vwx300 * Pos vwx4010",fontsize=16,color="magenta"];280 -> 410[label="",style="dashed", color="magenta", weight=3]; 280 -> 411[label="",style="dashed", color="magenta", weight=3]; 281 -> 137[label="",style="dashed", color="red", weight=0]; 281[label="Pos vwx3010 * vwx400",fontsize=16,color="magenta"];281 -> 412[label="",style="dashed", color="magenta", weight=3]; 281 -> 413[label="",style="dashed", color="magenta", weight=3]; 282 -> 137[label="",style="dashed", color="red", weight=0]; 282[label="vwx300 * Neg vwx4010",fontsize=16,color="magenta"];282 -> 414[label="",style="dashed", color="magenta", weight=3]; 282 -> 415[label="",style="dashed", color="magenta", weight=3]; 283 -> 137[label="",style="dashed", color="red", weight=0]; 283[label="Neg vwx3010 * vwx400",fontsize=16,color="magenta"];283 -> 416[label="",style="dashed", color="magenta", weight=3]; 283 -> 417[label="",style="dashed", color="magenta", weight=3]; 284 -> 137[label="",style="dashed", color="red", weight=0]; 284[label="vwx300 * Neg vwx4010",fontsize=16,color="magenta"];284 -> 418[label="",style="dashed", color="magenta", weight=3]; 284 -> 419[label="",style="dashed", color="magenta", weight=3]; 285[label="compare1 Nothing (Just vwx400) True",fontsize=16,color="black",shape="box"];285 -> 420[label="",style="solid", color="black", weight=3]; 286[label="compare1 (Just vwx300) Nothing False",fontsize=16,color="black",shape="box"];286 -> 421[label="",style="solid", color="black", weight=3]; 287 -> 261[label="",style="dashed", color="red", weight=0]; 287[label="vwx300 == vwx400",fontsize=16,color="magenta"];287 -> 422[label="",style="dashed", color="magenta", weight=3]; 287 -> 423[label="",style="dashed", color="magenta", weight=3]; 288 -> 262[label="",style="dashed", color="red", weight=0]; 288[label="vwx300 == vwx400",fontsize=16,color="magenta"];288 -> 424[label="",style="dashed", color="magenta", weight=3]; 288 -> 425[label="",style="dashed", color="magenta", weight=3]; 289 -> 263[label="",style="dashed", color="red", weight=0]; 289[label="vwx300 == vwx400",fontsize=16,color="magenta"];289 -> 426[label="",style="dashed", color="magenta", weight=3]; 289 -> 427[label="",style="dashed", color="magenta", weight=3]; 290 -> 264[label="",style="dashed", color="red", weight=0]; 290[label="vwx300 == vwx400",fontsize=16,color="magenta"];290 -> 428[label="",style="dashed", color="magenta", weight=3]; 290 -> 429[label="",style="dashed", color="magenta", weight=3]; 291 -> 265[label="",style="dashed", color="red", weight=0]; 291[label="vwx300 == vwx400",fontsize=16,color="magenta"];291 -> 430[label="",style="dashed", color="magenta", weight=3]; 291 -> 431[label="",style="dashed", color="magenta", weight=3]; 292 -> 266[label="",style="dashed", color="red", weight=0]; 292[label="vwx300 == vwx400",fontsize=16,color="magenta"];292 -> 432[label="",style="dashed", color="magenta", weight=3]; 292 -> 433[label="",style="dashed", color="magenta", weight=3]; 293 -> 267[label="",style="dashed", color="red", weight=0]; 293[label="vwx300 == vwx400",fontsize=16,color="magenta"];293 -> 434[label="",style="dashed", color="magenta", weight=3]; 293 -> 435[label="",style="dashed", color="magenta", weight=3]; 294 -> 268[label="",style="dashed", color="red", weight=0]; 294[label="vwx300 == vwx400",fontsize=16,color="magenta"];294 -> 436[label="",style="dashed", color="magenta", weight=3]; 294 -> 437[label="",style="dashed", color="magenta", weight=3]; 295 -> 269[label="",style="dashed", color="red", weight=0]; 295[label="vwx300 == vwx400",fontsize=16,color="magenta"];295 -> 438[label="",style="dashed", color="magenta", weight=3]; 295 -> 439[label="",style="dashed", color="magenta", weight=3]; 296 -> 270[label="",style="dashed", color="red", weight=0]; 296[label="vwx300 == vwx400",fontsize=16,color="magenta"];296 -> 440[label="",style="dashed", color="magenta", weight=3]; 296 -> 441[label="",style="dashed", color="magenta", weight=3]; 297 -> 271[label="",style="dashed", color="red", weight=0]; 297[label="vwx300 == vwx400",fontsize=16,color="magenta"];297 -> 442[label="",style="dashed", color="magenta", weight=3]; 297 -> 443[label="",style="dashed", color="magenta", weight=3]; 298 -> 272[label="",style="dashed", color="red", weight=0]; 298[label="vwx300 == vwx400",fontsize=16,color="magenta"];298 -> 444[label="",style="dashed", color="magenta", weight=3]; 298 -> 445[label="",style="dashed", color="magenta", weight=3]; 299 -> 273[label="",style="dashed", color="red", weight=0]; 299[label="vwx300 == vwx400",fontsize=16,color="magenta"];299 -> 446[label="",style="dashed", color="magenta", weight=3]; 299 -> 447[label="",style="dashed", color="magenta", weight=3]; 300 -> 274[label="",style="dashed", color="red", weight=0]; 300[label="vwx300 == vwx400",fontsize=16,color="magenta"];300 -> 448[label="",style="dashed", color="magenta", weight=3]; 300 -> 449[label="",style="dashed", color="magenta", weight=3]; 301[label="compare2 (Just vwx26) (Just vwx27) False",fontsize=16,color="black",shape="box"];301 -> 450[label="",style="solid", color="black", weight=3]; 302[label="compare2 (Just vwx26) (Just vwx27) True",fontsize=16,color="black",shape="box"];302 -> 451[label="",style="solid", color="black", weight=3]; 303[label="compare1 False True True",fontsize=16,color="black",shape="box"];303 -> 452[label="",style="solid", color="black", weight=3]; 304[label="compare1 True False False",fontsize=16,color="black",shape="box"];304 -> 453[label="",style="solid", color="black", weight=3]; 305 -> 261[label="",style="dashed", color="red", weight=0]; 305[label="vwx300 == vwx400",fontsize=16,color="magenta"];305 -> 454[label="",style="dashed", color="magenta", weight=3]; 305 -> 455[label="",style="dashed", color="magenta", weight=3]; 306 -> 262[label="",style="dashed", color="red", weight=0]; 306[label="vwx300 == vwx400",fontsize=16,color="magenta"];306 -> 456[label="",style="dashed", color="magenta", weight=3]; 306 -> 457[label="",style="dashed", color="magenta", weight=3]; 307 -> 263[label="",style="dashed", color="red", weight=0]; 307[label="vwx300 == vwx400",fontsize=16,color="magenta"];307 -> 458[label="",style="dashed", color="magenta", weight=3]; 307 -> 459[label="",style="dashed", color="magenta", weight=3]; 308 -> 264[label="",style="dashed", color="red", weight=0]; 308[label="vwx300 == vwx400",fontsize=16,color="magenta"];308 -> 460[label="",style="dashed", color="magenta", weight=3]; 308 -> 461[label="",style="dashed", color="magenta", weight=3]; 309 -> 265[label="",style="dashed", color="red", weight=0]; 309[label="vwx300 == vwx400",fontsize=16,color="magenta"];309 -> 462[label="",style="dashed", color="magenta", weight=3]; 309 -> 463[label="",style="dashed", color="magenta", weight=3]; 310 -> 266[label="",style="dashed", color="red", weight=0]; 310[label="vwx300 == vwx400",fontsize=16,color="magenta"];310 -> 464[label="",style="dashed", color="magenta", weight=3]; 310 -> 465[label="",style="dashed", color="magenta", weight=3]; 311 -> 267[label="",style="dashed", color="red", weight=0]; 311[label="vwx300 == vwx400",fontsize=16,color="magenta"];311 -> 466[label="",style="dashed", color="magenta", weight=3]; 311 -> 467[label="",style="dashed", color="magenta", weight=3]; 312 -> 268[label="",style="dashed", color="red", weight=0]; 312[label="vwx300 == vwx400",fontsize=16,color="magenta"];312 -> 468[label="",style="dashed", color="magenta", weight=3]; 312 -> 469[label="",style="dashed", color="magenta", weight=3]; 313 -> 269[label="",style="dashed", color="red", weight=0]; 313[label="vwx300 == vwx400",fontsize=16,color="magenta"];313 -> 470[label="",style="dashed", color="magenta", weight=3]; 313 -> 471[label="",style="dashed", color="magenta", weight=3]; 314 -> 270[label="",style="dashed", color="red", weight=0]; 314[label="vwx300 == vwx400",fontsize=16,color="magenta"];314 -> 472[label="",style="dashed", color="magenta", weight=3]; 314 -> 473[label="",style="dashed", color="magenta", weight=3]; 315 -> 271[label="",style="dashed", color="red", weight=0]; 315[label="vwx300 == vwx400",fontsize=16,color="magenta"];315 -> 474[label="",style="dashed", color="magenta", weight=3]; 315 -> 475[label="",style="dashed", color="magenta", weight=3]; 316 -> 272[label="",style="dashed", color="red", weight=0]; 316[label="vwx300 == vwx400",fontsize=16,color="magenta"];316 -> 476[label="",style="dashed", color="magenta", weight=3]; 316 -> 477[label="",style="dashed", color="magenta", weight=3]; 317 -> 273[label="",style="dashed", color="red", weight=0]; 317[label="vwx300 == vwx400",fontsize=16,color="magenta"];317 -> 478[label="",style="dashed", color="magenta", weight=3]; 317 -> 479[label="",style="dashed", color="magenta", weight=3]; 318 -> 274[label="",style="dashed", color="red", weight=0]; 318[label="vwx300 == vwx400",fontsize=16,color="magenta"];318 -> 480[label="",style="dashed", color="magenta", weight=3]; 318 -> 481[label="",style="dashed", color="magenta", weight=3]; 319[label="compare2 (Left vwx33) (Left vwx34) False",fontsize=16,color="black",shape="box"];319 -> 482[label="",style="solid", color="black", weight=3]; 320[label="compare2 (Left vwx33) (Left vwx34) True",fontsize=16,color="black",shape="box"];320 -> 483[label="",style="solid", color="black", weight=3]; 321[label="compare1 (Left vwx300) (Right vwx400) True",fontsize=16,color="black",shape="box"];321 -> 484[label="",style="solid", color="black", weight=3]; 322[label="compare1 (Right vwx300) (Left vwx400) False",fontsize=16,color="black",shape="box"];322 -> 485[label="",style="solid", color="black", weight=3]; 323 -> 261[label="",style="dashed", color="red", weight=0]; 323[label="vwx300 == vwx400",fontsize=16,color="magenta"];323 -> 486[label="",style="dashed", color="magenta", weight=3]; 323 -> 487[label="",style="dashed", color="magenta", weight=3]; 324 -> 262[label="",style="dashed", color="red", weight=0]; 324[label="vwx300 == vwx400",fontsize=16,color="magenta"];324 -> 488[label="",style="dashed", color="magenta", weight=3]; 324 -> 489[label="",style="dashed", color="magenta", weight=3]; 325 -> 263[label="",style="dashed", color="red", weight=0]; 325[label="vwx300 == vwx400",fontsize=16,color="magenta"];325 -> 490[label="",style="dashed", color="magenta", weight=3]; 325 -> 491[label="",style="dashed", color="magenta", weight=3]; 326 -> 264[label="",style="dashed", color="red", weight=0]; 326[label="vwx300 == vwx400",fontsize=16,color="magenta"];326 -> 492[label="",style="dashed", color="magenta", weight=3]; 326 -> 493[label="",style="dashed", color="magenta", weight=3]; 327 -> 265[label="",style="dashed", color="red", weight=0]; 327[label="vwx300 == vwx400",fontsize=16,color="magenta"];327 -> 494[label="",style="dashed", color="magenta", weight=3]; 327 -> 495[label="",style="dashed", color="magenta", weight=3]; 328 -> 266[label="",style="dashed", color="red", weight=0]; 328[label="vwx300 == vwx400",fontsize=16,color="magenta"];328 -> 496[label="",style="dashed", color="magenta", weight=3]; 328 -> 497[label="",style="dashed", color="magenta", weight=3]; 329 -> 267[label="",style="dashed", color="red", weight=0]; 329[label="vwx300 == vwx400",fontsize=16,color="magenta"];329 -> 498[label="",style="dashed", color="magenta", weight=3]; 329 -> 499[label="",style="dashed", color="magenta", weight=3]; 330 -> 268[label="",style="dashed", color="red", weight=0]; 330[label="vwx300 == vwx400",fontsize=16,color="magenta"];330 -> 500[label="",style="dashed", color="magenta", weight=3]; 330 -> 501[label="",style="dashed", color="magenta", weight=3]; 331 -> 269[label="",style="dashed", color="red", weight=0]; 331[label="vwx300 == vwx400",fontsize=16,color="magenta"];331 -> 502[label="",style="dashed", color="magenta", weight=3]; 331 -> 503[label="",style="dashed", color="magenta", weight=3]; 332 -> 270[label="",style="dashed", color="red", weight=0]; 332[label="vwx300 == vwx400",fontsize=16,color="magenta"];332 -> 504[label="",style="dashed", color="magenta", weight=3]; 332 -> 505[label="",style="dashed", color="magenta", weight=3]; 333 -> 271[label="",style="dashed", color="red", weight=0]; 333[label="vwx300 == vwx400",fontsize=16,color="magenta"];333 -> 506[label="",style="dashed", color="magenta", weight=3]; 333 -> 507[label="",style="dashed", color="magenta", weight=3]; 334 -> 272[label="",style="dashed", color="red", weight=0]; 334[label="vwx300 == vwx400",fontsize=16,color="magenta"];334 -> 508[label="",style="dashed", color="magenta", weight=3]; 334 -> 509[label="",style="dashed", color="magenta", weight=3]; 335 -> 273[label="",style="dashed", color="red", weight=0]; 335[label="vwx300 == vwx400",fontsize=16,color="magenta"];335 -> 510[label="",style="dashed", color="magenta", weight=3]; 335 -> 511[label="",style="dashed", color="magenta", weight=3]; 336 -> 274[label="",style="dashed", color="red", weight=0]; 336[label="vwx300 == vwx400",fontsize=16,color="magenta"];336 -> 512[label="",style="dashed", color="magenta", weight=3]; 336 -> 513[label="",style="dashed", color="magenta", weight=3]; 337[label="compare2 (Right vwx40) (Right vwx41) False",fontsize=16,color="black",shape="box"];337 -> 514[label="",style="solid", color="black", weight=3]; 338[label="compare2 (Right vwx40) (Right vwx41) True",fontsize=16,color="black",shape="box"];338 -> 515[label="",style="solid", color="black", weight=3]; 696[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];2826[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];696 -> 2826[label="",style="solid", color="blue", weight=9]; 2826 -> 734[label="",style="solid", color="blue", weight=3]; 2827[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];696 -> 2827[label="",style="solid", color="blue", weight=9]; 2827 -> 735[label="",style="solid", color="blue", weight=3]; 2828[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];696 -> 2828[label="",style="solid", color="blue", weight=9]; 2828 -> 736[label="",style="solid", color="blue", weight=3]; 2829[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];696 -> 2829[label="",style="solid", color="blue", weight=9]; 2829 -> 737[label="",style="solid", color="blue", weight=3]; 2830[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];696 -> 2830[label="",style="solid", color="blue", weight=9]; 2830 -> 738[label="",style="solid", color="blue", weight=3]; 2831[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];696 -> 2831[label="",style="solid", color="blue", weight=9]; 2831 -> 739[label="",style="solid", color="blue", weight=3]; 2832[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];696 -> 2832[label="",style="solid", color="blue", weight=9]; 2832 -> 740[label="",style="solid", color="blue", weight=3]; 2833[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];696 -> 2833[label="",style="solid", color="blue", weight=9]; 2833 -> 741[label="",style="solid", color="blue", weight=3]; 2834[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];696 -> 2834[label="",style="solid", color="blue", weight=9]; 2834 -> 742[label="",style="solid", color="blue", weight=3]; 2835[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];696 -> 2835[label="",style="solid", color="blue", weight=9]; 2835 -> 743[label="",style="solid", color="blue", weight=3]; 2836[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];696 -> 2836[label="",style="solid", color="blue", weight=9]; 2836 -> 744[label="",style="solid", color="blue", weight=3]; 2837[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];696 -> 2837[label="",style="solid", color="blue", weight=9]; 2837 -> 745[label="",style="solid", color="blue", weight=3]; 2838[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];696 -> 2838[label="",style="solid", color="blue", weight=9]; 2838 -> 746[label="",style="solid", color="blue", weight=3]; 2839[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];696 -> 2839[label="",style="solid", color="blue", weight=9]; 2839 -> 747[label="",style="solid", color="blue", weight=3]; 697 -> 693[label="",style="dashed", color="red", weight=0]; 697[label="vwx301 == vwx401 && vwx302 == vwx402",fontsize=16,color="magenta"];697 -> 748[label="",style="dashed", color="magenta", weight=3]; 697 -> 749[label="",style="dashed", color="magenta", weight=3]; 677[label="compare2 (vwx51,vwx52,vwx53) (vwx54,vwx55,vwx56) False",fontsize=16,color="black",shape="box"];677 -> 750[label="",style="solid", color="black", weight=3]; 678[label="compare2 (vwx51,vwx52,vwx53) (vwx54,vwx55,vwx56) True",fontsize=16,color="black",shape="box"];678 -> 751[label="",style="solid", color="black", weight=3]; 355 -> 115[label="",style="dashed", color="red", weight=0]; 355[label="primCmpNat vwx3000 vwx4000",fontsize=16,color="magenta"];355 -> 546[label="",style="dashed", color="magenta", weight=3]; 355 -> 547[label="",style="dashed", color="magenta", weight=3]; 356[label="GT",fontsize=16,color="green",shape="box"];357[label="LT",fontsize=16,color="green",shape="box"];358[label="EQ",fontsize=16,color="green",shape="box"];359[label="compare1 LT EQ True",fontsize=16,color="black",shape="box"];359 -> 548[label="",style="solid", color="black", weight=3]; 360[label="compare1 LT GT True",fontsize=16,color="black",shape="box"];360 -> 549[label="",style="solid", color="black", weight=3]; 361[label="compare1 EQ LT False",fontsize=16,color="black",shape="box"];361 -> 550[label="",style="solid", color="black", weight=3]; 362[label="compare1 EQ GT True",fontsize=16,color="black",shape="box"];362 -> 551[label="",style="solid", color="black", weight=3]; 363[label="compare1 GT LT False",fontsize=16,color="black",shape="box"];363 -> 552[label="",style="solid", color="black", weight=3]; 364[label="compare1 GT EQ False",fontsize=16,color="black",shape="box"];364 -> 553[label="",style="solid", color="black", weight=3]; 365[label="Succ vwx4000",fontsize=16,color="green",shape="box"];366[label="Zero",fontsize=16,color="green",shape="box"];367[label="Zero",fontsize=16,color="green",shape="box"];368[label="Succ vwx4000",fontsize=16,color="green",shape="box"];369 -> 137[label="",style="dashed", color="red", weight=0]; 369[label="Pos vwx3010 * vwx400",fontsize=16,color="magenta"];369 -> 554[label="",style="dashed", color="magenta", weight=3]; 369 -> 555[label="",style="dashed", color="magenta", weight=3]; 370 -> 137[label="",style="dashed", color="red", weight=0]; 370[label="vwx300 * Pos vwx4010",fontsize=16,color="magenta"];370 -> 556[label="",style="dashed", color="magenta", weight=3]; 370 -> 557[label="",style="dashed", color="magenta", weight=3]; 371 -> 137[label="",style="dashed", color="red", weight=0]; 371[label="Neg vwx3010 * vwx400",fontsize=16,color="magenta"];371 -> 558[label="",style="dashed", color="magenta", weight=3]; 371 -> 559[label="",style="dashed", color="magenta", weight=3]; 372 -> 137[label="",style="dashed", color="red", weight=0]; 372[label="vwx300 * Pos vwx4010",fontsize=16,color="magenta"];372 -> 560[label="",style="dashed", color="magenta", weight=3]; 372 -> 561[label="",style="dashed", color="magenta", weight=3]; 373 -> 137[label="",style="dashed", color="red", weight=0]; 373[label="Pos vwx3010 * vwx400",fontsize=16,color="magenta"];373 -> 562[label="",style="dashed", color="magenta", weight=3]; 373 -> 563[label="",style="dashed", color="magenta", weight=3]; 374 -> 137[label="",style="dashed", color="red", weight=0]; 374[label="vwx300 * Neg vwx4010",fontsize=16,color="magenta"];374 -> 564[label="",style="dashed", color="magenta", weight=3]; 374 -> 565[label="",style="dashed", color="magenta", weight=3]; 375 -> 137[label="",style="dashed", color="red", weight=0]; 375[label="Neg vwx3010 * vwx400",fontsize=16,color="magenta"];375 -> 566[label="",style="dashed", color="magenta", weight=3]; 375 -> 567[label="",style="dashed", color="magenta", weight=3]; 376 -> 137[label="",style="dashed", color="red", weight=0]; 376[label="vwx300 * Neg vwx4010",fontsize=16,color="magenta"];376 -> 568[label="",style="dashed", color="magenta", weight=3]; 376 -> 569[label="",style="dashed", color="magenta", weight=3]; 377[label="Integer (primMulInt vwx4000 vwx3010)",fontsize=16,color="green",shape="box"];377 -> 570[label="",style="dashed", color="green", weight=3]; 378[label="primMulInt (Pos vwx4000) (Pos vwx3010)",fontsize=16,color="black",shape="box"];378 -> 571[label="",style="solid", color="black", weight=3]; 379[label="primMulInt (Pos vwx4000) (Neg vwx3010)",fontsize=16,color="black",shape="box"];379 -> 572[label="",style="solid", color="black", weight=3]; 380[label="primMulInt (Neg vwx4000) (Pos vwx3010)",fontsize=16,color="black",shape="box"];380 -> 573[label="",style="solid", color="black", weight=3]; 381[label="primMulInt (Neg vwx4000) (Neg vwx3010)",fontsize=16,color="black",shape="box"];381 -> 574[label="",style="solid", color="black", weight=3]; 702 -> 261[label="",style="dashed", color="red", weight=0]; 702[label="vwx300 == vwx400",fontsize=16,color="magenta"];703 -> 262[label="",style="dashed", color="red", weight=0]; 703[label="vwx300 == vwx400",fontsize=16,color="magenta"];704 -> 263[label="",style="dashed", color="red", weight=0]; 704[label="vwx300 == vwx400",fontsize=16,color="magenta"];705 -> 264[label="",style="dashed", color="red", weight=0]; 705[label="vwx300 == vwx400",fontsize=16,color="magenta"];706 -> 265[label="",style="dashed", color="red", weight=0]; 706[label="vwx300 == vwx400",fontsize=16,color="magenta"];707 -> 266[label="",style="dashed", color="red", weight=0]; 707[label="vwx300 == vwx400",fontsize=16,color="magenta"];708 -> 267[label="",style="dashed", color="red", weight=0]; 708[label="vwx300 == vwx400",fontsize=16,color="magenta"];709 -> 268[label="",style="dashed", color="red", weight=0]; 709[label="vwx300 == vwx400",fontsize=16,color="magenta"];710 -> 269[label="",style="dashed", color="red", weight=0]; 710[label="vwx300 == vwx400",fontsize=16,color="magenta"];711 -> 270[label="",style="dashed", color="red", weight=0]; 711[label="vwx300 == vwx400",fontsize=16,color="magenta"];712 -> 271[label="",style="dashed", color="red", weight=0]; 712[label="vwx300 == vwx400",fontsize=16,color="magenta"];713 -> 272[label="",style="dashed", color="red", weight=0]; 713[label="vwx300 == vwx400",fontsize=16,color="magenta"];714 -> 273[label="",style="dashed", color="red", weight=0]; 714[label="vwx300 == vwx400",fontsize=16,color="magenta"];715 -> 274[label="",style="dashed", color="red", weight=0]; 715[label="vwx300 == vwx400",fontsize=16,color="magenta"];716 -> 261[label="",style="dashed", color="red", weight=0]; 716[label="vwx301 == vwx401",fontsize=16,color="magenta"];716 -> 769[label="",style="dashed", color="magenta", weight=3]; 716 -> 770[label="",style="dashed", color="magenta", weight=3]; 717 -> 262[label="",style="dashed", color="red", weight=0]; 717[label="vwx301 == vwx401",fontsize=16,color="magenta"];717 -> 771[label="",style="dashed", color="magenta", weight=3]; 717 -> 772[label="",style="dashed", color="magenta", weight=3]; 718 -> 263[label="",style="dashed", color="red", weight=0]; 718[label="vwx301 == vwx401",fontsize=16,color="magenta"];718 -> 773[label="",style="dashed", color="magenta", weight=3]; 718 -> 774[label="",style="dashed", color="magenta", weight=3]; 719 -> 264[label="",style="dashed", color="red", weight=0]; 719[label="vwx301 == vwx401",fontsize=16,color="magenta"];719 -> 775[label="",style="dashed", color="magenta", weight=3]; 719 -> 776[label="",style="dashed", color="magenta", weight=3]; 720 -> 265[label="",style="dashed", color="red", weight=0]; 720[label="vwx301 == vwx401",fontsize=16,color="magenta"];720 -> 777[label="",style="dashed", color="magenta", weight=3]; 720 -> 778[label="",style="dashed", color="magenta", weight=3]; 721 -> 266[label="",style="dashed", color="red", weight=0]; 721[label="vwx301 == vwx401",fontsize=16,color="magenta"];721 -> 779[label="",style="dashed", color="magenta", weight=3]; 721 -> 780[label="",style="dashed", color="magenta", weight=3]; 722 -> 267[label="",style="dashed", color="red", weight=0]; 722[label="vwx301 == vwx401",fontsize=16,color="magenta"];722 -> 781[label="",style="dashed", color="magenta", weight=3]; 722 -> 782[label="",style="dashed", color="magenta", weight=3]; 723 -> 268[label="",style="dashed", color="red", weight=0]; 723[label="vwx301 == vwx401",fontsize=16,color="magenta"];723 -> 783[label="",style="dashed", color="magenta", weight=3]; 723 -> 784[label="",style="dashed", color="magenta", weight=3]; 724 -> 269[label="",style="dashed", color="red", weight=0]; 724[label="vwx301 == vwx401",fontsize=16,color="magenta"];724 -> 785[label="",style="dashed", color="magenta", weight=3]; 724 -> 786[label="",style="dashed", color="magenta", weight=3]; 725 -> 270[label="",style="dashed", color="red", weight=0]; 725[label="vwx301 == vwx401",fontsize=16,color="magenta"];725 -> 787[label="",style="dashed", color="magenta", weight=3]; 725 -> 788[label="",style="dashed", color="magenta", weight=3]; 726 -> 271[label="",style="dashed", color="red", weight=0]; 726[label="vwx301 == vwx401",fontsize=16,color="magenta"];726 -> 789[label="",style="dashed", color="magenta", weight=3]; 726 -> 790[label="",style="dashed", color="magenta", weight=3]; 727 -> 272[label="",style="dashed", color="red", weight=0]; 727[label="vwx301 == vwx401",fontsize=16,color="magenta"];727 -> 791[label="",style="dashed", color="magenta", weight=3]; 727 -> 792[label="",style="dashed", color="magenta", weight=3]; 728 -> 273[label="",style="dashed", color="red", weight=0]; 728[label="vwx301 == vwx401",fontsize=16,color="magenta"];728 -> 793[label="",style="dashed", color="magenta", weight=3]; 728 -> 794[label="",style="dashed", color="magenta", weight=3]; 729 -> 274[label="",style="dashed", color="red", weight=0]; 729[label="vwx301 == vwx401",fontsize=16,color="magenta"];729 -> 795[label="",style="dashed", color="magenta", weight=3]; 729 -> 796[label="",style="dashed", color="magenta", weight=3]; 730[label="False && vwx82",fontsize=16,color="black",shape="box"];730 -> 797[label="",style="solid", color="black", weight=3]; 731[label="True && vwx82",fontsize=16,color="black",shape="box"];731 -> 798[label="",style="solid", color="black", weight=3]; 732[label="compare1 (vwx64,vwx65) (vwx66,vwx67) ((vwx64,vwx65) <= (vwx66,vwx67))",fontsize=16,color="black",shape="box"];732 -> 799[label="",style="solid", color="black", weight=3]; 733[label="EQ",fontsize=16,color="green",shape="box"];404[label="vwx400",fontsize=16,color="green",shape="box"];405[label="Pos vwx3010",fontsize=16,color="green",shape="box"];406[label="Pos vwx4010",fontsize=16,color="green",shape="box"];407[label="vwx300",fontsize=16,color="green",shape="box"];408[label="vwx400",fontsize=16,color="green",shape="box"];409[label="Neg vwx3010",fontsize=16,color="green",shape="box"];410[label="Pos vwx4010",fontsize=16,color="green",shape="box"];411[label="vwx300",fontsize=16,color="green",shape="box"];412[label="vwx400",fontsize=16,color="green",shape="box"];413[label="Pos vwx3010",fontsize=16,color="green",shape="box"];414[label="Neg vwx4010",fontsize=16,color="green",shape="box"];415[label="vwx300",fontsize=16,color="green",shape="box"];416[label="vwx400",fontsize=16,color="green",shape="box"];417[label="Neg vwx3010",fontsize=16,color="green",shape="box"];418[label="Neg vwx4010",fontsize=16,color="green",shape="box"];419[label="vwx300",fontsize=16,color="green",shape="box"];420[label="LT",fontsize=16,color="green",shape="box"];421[label="compare0 (Just vwx300) Nothing otherwise",fontsize=16,color="black",shape="box"];421 -> 654[label="",style="solid", color="black", weight=3]; 422[label="vwx400",fontsize=16,color="green",shape="box"];423[label="vwx300",fontsize=16,color="green",shape="box"];261[label="vwx300 == vwx400",fontsize=16,color="burlywood",shape="triangle"];2840[label="vwx300/False",fontsize=10,color="white",style="solid",shape="box"];261 -> 2840[label="",style="solid", color="burlywood", weight=9]; 2840 -> 382[label="",style="solid", color="burlywood", weight=3]; 2841[label="vwx300/True",fontsize=10,color="white",style="solid",shape="box"];261 -> 2841[label="",style="solid", color="burlywood", weight=9]; 2841 -> 383[label="",style="solid", color="burlywood", weight=3]; 424[label="vwx400",fontsize=16,color="green",shape="box"];425[label="vwx300",fontsize=16,color="green",shape="box"];262[label="vwx300 == vwx400",fontsize=16,color="burlywood",shape="triangle"];2842[label="vwx300/LT",fontsize=10,color="white",style="solid",shape="box"];262 -> 2842[label="",style="solid", color="burlywood", weight=9]; 2842 -> 384[label="",style="solid", color="burlywood", weight=3]; 2843[label="vwx300/EQ",fontsize=10,color="white",style="solid",shape="box"];262 -> 2843[label="",style="solid", color="burlywood", weight=9]; 2843 -> 385[label="",style="solid", color="burlywood", weight=3]; 2844[label="vwx300/GT",fontsize=10,color="white",style="solid",shape="box"];262 -> 2844[label="",style="solid", color="burlywood", weight=9]; 2844 -> 386[label="",style="solid", color="burlywood", weight=3]; 426[label="vwx400",fontsize=16,color="green",shape="box"];427[label="vwx300",fontsize=16,color="green",shape="box"];263[label="vwx300 == vwx400",fontsize=16,color="burlywood",shape="triangle"];2845[label="vwx300/Integer vwx3000",fontsize=10,color="white",style="solid",shape="box"];263 -> 2845[label="",style="solid", color="burlywood", weight=9]; 2845 -> 387[label="",style="solid", color="burlywood", weight=3]; 428[label="vwx400",fontsize=16,color="green",shape="box"];429[label="vwx300",fontsize=16,color="green",shape="box"];264[label="vwx300 == vwx400",fontsize=16,color="black",shape="triangle"];264 -> 388[label="",style="solid", color="black", weight=3]; 430[label="vwx400",fontsize=16,color="green",shape="box"];431[label="vwx300",fontsize=16,color="green",shape="box"];265[label="vwx300 == vwx400",fontsize=16,color="burlywood",shape="triangle"];2846[label="vwx300/vwx3000 : vwx3001",fontsize=10,color="white",style="solid",shape="box"];265 -> 2846[label="",style="solid", color="burlywood", weight=9]; 2846 -> 389[label="",style="solid", color="burlywood", weight=3]; 2847[label="vwx300/[]",fontsize=10,color="white",style="solid",shape="box"];265 -> 2847[label="",style="solid", color="burlywood", weight=9]; 2847 -> 390[label="",style="solid", color="burlywood", weight=3]; 432[label="vwx400",fontsize=16,color="green",shape="box"];433[label="vwx300",fontsize=16,color="green",shape="box"];266[label="vwx300 == vwx400",fontsize=16,color="burlywood",shape="triangle"];2848[label="vwx300/Left vwx3000",fontsize=10,color="white",style="solid",shape="box"];266 -> 2848[label="",style="solid", color="burlywood", weight=9]; 2848 -> 391[label="",style="solid", color="burlywood", weight=3]; 2849[label="vwx300/Right vwx3000",fontsize=10,color="white",style="solid",shape="box"];266 -> 2849[label="",style="solid", color="burlywood", weight=9]; 2849 -> 392[label="",style="solid", color="burlywood", weight=3]; 434[label="vwx400",fontsize=16,color="green",shape="box"];435[label="vwx300",fontsize=16,color="green",shape="box"];267[label="vwx300 == vwx400",fontsize=16,color="burlywood",shape="triangle"];2850[label="vwx300/()",fontsize=10,color="white",style="solid",shape="box"];267 -> 2850[label="",style="solid", color="burlywood", weight=9]; 2850 -> 393[label="",style="solid", color="burlywood", weight=3]; 436[label="vwx400",fontsize=16,color="green",shape="box"];437[label="vwx300",fontsize=16,color="green",shape="box"];268[label="vwx300 == vwx400",fontsize=16,color="burlywood",shape="triangle"];2851[label="vwx300/vwx3000 :% vwx3001",fontsize=10,color="white",style="solid",shape="box"];268 -> 2851[label="",style="solid", color="burlywood", weight=9]; 2851 -> 394[label="",style="solid", color="burlywood", weight=3]; 438[label="vwx400",fontsize=16,color="green",shape="box"];439[label="vwx300",fontsize=16,color="green",shape="box"];269[label="vwx300 == vwx400",fontsize=16,color="burlywood",shape="triangle"];2852[label="vwx300/(vwx3000,vwx3001)",fontsize=10,color="white",style="solid",shape="box"];269 -> 2852[label="",style="solid", color="burlywood", weight=9]; 2852 -> 395[label="",style="solid", color="burlywood", weight=3]; 440[label="vwx400",fontsize=16,color="green",shape="box"];441[label="vwx300",fontsize=16,color="green",shape="box"];270[label="vwx300 == vwx400",fontsize=16,color="burlywood",shape="triangle"];2853[label="vwx300/Nothing",fontsize=10,color="white",style="solid",shape="box"];270 -> 2853[label="",style="solid", color="burlywood", weight=9]; 2853 -> 396[label="",style="solid", color="burlywood", weight=3]; 2854[label="vwx300/Just vwx3000",fontsize=10,color="white",style="solid",shape="box"];270 -> 2854[label="",style="solid", color="burlywood", weight=9]; 2854 -> 397[label="",style="solid", color="burlywood", weight=3]; 442[label="vwx400",fontsize=16,color="green",shape="box"];443[label="vwx300",fontsize=16,color="green",shape="box"];271[label="vwx300 == vwx400",fontsize=16,color="black",shape="triangle"];271 -> 398[label="",style="solid", color="black", weight=3]; 444[label="vwx400",fontsize=16,color="green",shape="box"];445[label="vwx300",fontsize=16,color="green",shape="box"];272[label="vwx300 == vwx400",fontsize=16,color="black",shape="triangle"];272 -> 399[label="",style="solid", color="black", weight=3]; 446[label="vwx400",fontsize=16,color="green",shape="box"];447[label="vwx300",fontsize=16,color="green",shape="box"];273[label="vwx300 == vwx400",fontsize=16,color="burlywood",shape="triangle"];2855[label="vwx300/(vwx3000,vwx3001,vwx3002)",fontsize=10,color="white",style="solid",shape="box"];273 -> 2855[label="",style="solid", color="burlywood", weight=9]; 2855 -> 400[label="",style="solid", color="burlywood", weight=3]; 448[label="vwx400",fontsize=16,color="green",shape="box"];449[label="vwx300",fontsize=16,color="green",shape="box"];274[label="vwx300 == vwx400",fontsize=16,color="black",shape="triangle"];274 -> 401[label="",style="solid", color="black", weight=3]; 450 -> 762[label="",style="dashed", color="red", weight=0]; 450[label="compare1 (Just vwx26) (Just vwx27) (Just vwx26 <= Just vwx27)",fontsize=16,color="magenta"];450 -> 763[label="",style="dashed", color="magenta", weight=3]; 450 -> 764[label="",style="dashed", color="magenta", weight=3]; 450 -> 765[label="",style="dashed", color="magenta", weight=3]; 451[label="EQ",fontsize=16,color="green",shape="box"];452[label="LT",fontsize=16,color="green",shape="box"];453[label="compare0 True False otherwise",fontsize=16,color="black",shape="box"];453 -> 656[label="",style="solid", color="black", weight=3]; 454[label="vwx400",fontsize=16,color="green",shape="box"];455[label="vwx300",fontsize=16,color="green",shape="box"];456[label="vwx400",fontsize=16,color="green",shape="box"];457[label="vwx300",fontsize=16,color="green",shape="box"];458[label="vwx400",fontsize=16,color="green",shape="box"];459[label="vwx300",fontsize=16,color="green",shape="box"];460[label="vwx400",fontsize=16,color="green",shape="box"];461[label="vwx300",fontsize=16,color="green",shape="box"];462[label="vwx400",fontsize=16,color="green",shape="box"];463[label="vwx300",fontsize=16,color="green",shape="box"];464[label="vwx400",fontsize=16,color="green",shape="box"];465[label="vwx300",fontsize=16,color="green",shape="box"];466[label="vwx400",fontsize=16,color="green",shape="box"];467[label="vwx300",fontsize=16,color="green",shape="box"];468[label="vwx400",fontsize=16,color="green",shape="box"];469[label="vwx300",fontsize=16,color="green",shape="box"];470[label="vwx400",fontsize=16,color="green",shape="box"];471[label="vwx300",fontsize=16,color="green",shape="box"];472[label="vwx400",fontsize=16,color="green",shape="box"];473[label="vwx300",fontsize=16,color="green",shape="box"];474[label="vwx400",fontsize=16,color="green",shape="box"];475[label="vwx300",fontsize=16,color="green",shape="box"];476[label="vwx400",fontsize=16,color="green",shape="box"];477[label="vwx300",fontsize=16,color="green",shape="box"];478[label="vwx400",fontsize=16,color="green",shape="box"];479[label="vwx300",fontsize=16,color="green",shape="box"];480[label="vwx400",fontsize=16,color="green",shape="box"];481[label="vwx300",fontsize=16,color="green",shape="box"];482 -> 861[label="",style="dashed", color="red", weight=0]; 482[label="compare1 (Left vwx33) (Left vwx34) (Left vwx33 <= Left vwx34)",fontsize=16,color="magenta"];482 -> 862[label="",style="dashed", color="magenta", weight=3]; 482 -> 863[label="",style="dashed", color="magenta", weight=3]; 482 -> 864[label="",style="dashed", color="magenta", weight=3]; 483[label="EQ",fontsize=16,color="green",shape="box"];484[label="LT",fontsize=16,color="green",shape="box"];485[label="compare0 (Right vwx300) (Left vwx400) otherwise",fontsize=16,color="black",shape="box"];485 -> 658[label="",style="solid", color="black", weight=3]; 486[label="vwx400",fontsize=16,color="green",shape="box"];487[label="vwx300",fontsize=16,color="green",shape="box"];488[label="vwx400",fontsize=16,color="green",shape="box"];489[label="vwx300",fontsize=16,color="green",shape="box"];490[label="vwx400",fontsize=16,color="green",shape="box"];491[label="vwx300",fontsize=16,color="green",shape="box"];492[label="vwx400",fontsize=16,color="green",shape="box"];493[label="vwx300",fontsize=16,color="green",shape="box"];494[label="vwx400",fontsize=16,color="green",shape="box"];495[label="vwx300",fontsize=16,color="green",shape="box"];496[label="vwx400",fontsize=16,color="green",shape="box"];497[label="vwx300",fontsize=16,color="green",shape="box"];498[label="vwx400",fontsize=16,color="green",shape="box"];499[label="vwx300",fontsize=16,color="green",shape="box"];500[label="vwx400",fontsize=16,color="green",shape="box"];501[label="vwx300",fontsize=16,color="green",shape="box"];502[label="vwx400",fontsize=16,color="green",shape="box"];503[label="vwx300",fontsize=16,color="green",shape="box"];504[label="vwx400",fontsize=16,color="green",shape="box"];505[label="vwx300",fontsize=16,color="green",shape="box"];506[label="vwx400",fontsize=16,color="green",shape="box"];507[label="vwx300",fontsize=16,color="green",shape="box"];508[label="vwx400",fontsize=16,color="green",shape="box"];509[label="vwx300",fontsize=16,color="green",shape="box"];510[label="vwx400",fontsize=16,color="green",shape="box"];511[label="vwx300",fontsize=16,color="green",shape="box"];512[label="vwx400",fontsize=16,color="green",shape="box"];513[label="vwx300",fontsize=16,color="green",shape="box"];514 -> 874[label="",style="dashed", color="red", weight=0]; 514[label="compare1 (Right vwx40) (Right vwx41) (Right vwx40 <= Right vwx41)",fontsize=16,color="magenta"];514 -> 875[label="",style="dashed", color="magenta", weight=3]; 514 -> 876[label="",style="dashed", color="magenta", weight=3]; 514 -> 877[label="",style="dashed", color="magenta", weight=3]; 515[label="EQ",fontsize=16,color="green",shape="box"];734 -> 261[label="",style="dashed", color="red", weight=0]; 734[label="vwx300 == vwx400",fontsize=16,color="magenta"];734 -> 800[label="",style="dashed", color="magenta", weight=3]; 734 -> 801[label="",style="dashed", color="magenta", weight=3]; 735 -> 262[label="",style="dashed", color="red", weight=0]; 735[label="vwx300 == vwx400",fontsize=16,color="magenta"];735 -> 802[label="",style="dashed", color="magenta", weight=3]; 735 -> 803[label="",style="dashed", color="magenta", weight=3]; 736 -> 263[label="",style="dashed", color="red", weight=0]; 736[label="vwx300 == vwx400",fontsize=16,color="magenta"];736 -> 804[label="",style="dashed", color="magenta", weight=3]; 736 -> 805[label="",style="dashed", color="magenta", weight=3]; 737 -> 264[label="",style="dashed", color="red", weight=0]; 737[label="vwx300 == vwx400",fontsize=16,color="magenta"];737 -> 806[label="",style="dashed", color="magenta", weight=3]; 737 -> 807[label="",style="dashed", color="magenta", weight=3]; 738 -> 265[label="",style="dashed", color="red", weight=0]; 738[label="vwx300 == vwx400",fontsize=16,color="magenta"];738 -> 808[label="",style="dashed", color="magenta", weight=3]; 738 -> 809[label="",style="dashed", color="magenta", weight=3]; 739 -> 266[label="",style="dashed", color="red", weight=0]; 739[label="vwx300 == vwx400",fontsize=16,color="magenta"];739 -> 810[label="",style="dashed", color="magenta", weight=3]; 739 -> 811[label="",style="dashed", color="magenta", weight=3]; 740 -> 267[label="",style="dashed", color="red", weight=0]; 740[label="vwx300 == vwx400",fontsize=16,color="magenta"];740 -> 812[label="",style="dashed", color="magenta", weight=3]; 740 -> 813[label="",style="dashed", color="magenta", weight=3]; 741 -> 268[label="",style="dashed", color="red", weight=0]; 741[label="vwx300 == vwx400",fontsize=16,color="magenta"];741 -> 814[label="",style="dashed", color="magenta", weight=3]; 741 -> 815[label="",style="dashed", color="magenta", weight=3]; 742 -> 269[label="",style="dashed", color="red", weight=0]; 742[label="vwx300 == vwx400",fontsize=16,color="magenta"];742 -> 816[label="",style="dashed", color="magenta", weight=3]; 742 -> 817[label="",style="dashed", color="magenta", weight=3]; 743 -> 270[label="",style="dashed", color="red", weight=0]; 743[label="vwx300 == vwx400",fontsize=16,color="magenta"];743 -> 818[label="",style="dashed", color="magenta", weight=3]; 743 -> 819[label="",style="dashed", color="magenta", weight=3]; 744 -> 271[label="",style="dashed", color="red", weight=0]; 744[label="vwx300 == vwx400",fontsize=16,color="magenta"];744 -> 820[label="",style="dashed", color="magenta", weight=3]; 744 -> 821[label="",style="dashed", color="magenta", weight=3]; 745 -> 272[label="",style="dashed", color="red", weight=0]; 745[label="vwx300 == vwx400",fontsize=16,color="magenta"];745 -> 822[label="",style="dashed", color="magenta", weight=3]; 745 -> 823[label="",style="dashed", color="magenta", weight=3]; 746 -> 273[label="",style="dashed", color="red", weight=0]; 746[label="vwx300 == vwx400",fontsize=16,color="magenta"];746 -> 824[label="",style="dashed", color="magenta", weight=3]; 746 -> 825[label="",style="dashed", color="magenta", weight=3]; 747 -> 274[label="",style="dashed", color="red", weight=0]; 747[label="vwx300 == vwx400",fontsize=16,color="magenta"];747 -> 826[label="",style="dashed", color="magenta", weight=3]; 747 -> 827[label="",style="dashed", color="magenta", weight=3]; 748[label="vwx301 == vwx401",fontsize=16,color="blue",shape="box"];2856[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];748 -> 2856[label="",style="solid", color="blue", weight=9]; 2856 -> 828[label="",style="solid", color="blue", weight=3]; 2857[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];748 -> 2857[label="",style="solid", color="blue", weight=9]; 2857 -> 829[label="",style="solid", color="blue", weight=3]; 2858[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];748 -> 2858[label="",style="solid", color="blue", weight=9]; 2858 -> 830[label="",style="solid", color="blue", weight=3]; 2859[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];748 -> 2859[label="",style="solid", color="blue", weight=9]; 2859 -> 831[label="",style="solid", color="blue", weight=3]; 2860[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];748 -> 2860[label="",style="solid", color="blue", weight=9]; 2860 -> 832[label="",style="solid", color="blue", weight=3]; 2861[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];748 -> 2861[label="",style="solid", color="blue", weight=9]; 2861 -> 833[label="",style="solid", color="blue", weight=3]; 2862[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];748 -> 2862[label="",style="solid", color="blue", weight=9]; 2862 -> 834[label="",style="solid", color="blue", weight=3]; 2863[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];748 -> 2863[label="",style="solid", color="blue", weight=9]; 2863 -> 835[label="",style="solid", color="blue", weight=3]; 2864[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];748 -> 2864[label="",style="solid", color="blue", weight=9]; 2864 -> 836[label="",style="solid", color="blue", weight=3]; 2865[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];748 -> 2865[label="",style="solid", color="blue", weight=9]; 2865 -> 837[label="",style="solid", color="blue", weight=3]; 2866[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];748 -> 2866[label="",style="solid", color="blue", weight=9]; 2866 -> 838[label="",style="solid", color="blue", weight=3]; 2867[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];748 -> 2867[label="",style="solid", color="blue", weight=9]; 2867 -> 839[label="",style="solid", color="blue", weight=3]; 2868[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];748 -> 2868[label="",style="solid", color="blue", weight=9]; 2868 -> 840[label="",style="solid", color="blue", weight=3]; 2869[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];748 -> 2869[label="",style="solid", color="blue", weight=9]; 2869 -> 841[label="",style="solid", color="blue", weight=3]; 749[label="vwx302 == vwx402",fontsize=16,color="blue",shape="box"];2870[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];749 -> 2870[label="",style="solid", color="blue", weight=9]; 2870 -> 842[label="",style="solid", color="blue", weight=3]; 2871[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];749 -> 2871[label="",style="solid", color="blue", weight=9]; 2871 -> 843[label="",style="solid", color="blue", weight=3]; 2872[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];749 -> 2872[label="",style="solid", color="blue", weight=9]; 2872 -> 844[label="",style="solid", color="blue", weight=3]; 2873[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];749 -> 2873[label="",style="solid", color="blue", weight=9]; 2873 -> 845[label="",style="solid", color="blue", weight=3]; 2874[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];749 -> 2874[label="",style="solid", color="blue", weight=9]; 2874 -> 846[label="",style="solid", color="blue", weight=3]; 2875[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];749 -> 2875[label="",style="solid", color="blue", weight=9]; 2875 -> 847[label="",style="solid", color="blue", weight=3]; 2876[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];749 -> 2876[label="",style="solid", color="blue", weight=9]; 2876 -> 848[label="",style="solid", color="blue", weight=3]; 2877[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];749 -> 2877[label="",style="solid", color="blue", weight=9]; 2877 -> 849[label="",style="solid", color="blue", weight=3]; 2878[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];749 -> 2878[label="",style="solid", color="blue", weight=9]; 2878 -> 850[label="",style="solid", color="blue", weight=3]; 2879[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];749 -> 2879[label="",style="solid", color="blue", weight=9]; 2879 -> 851[label="",style="solid", color="blue", weight=3]; 2880[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];749 -> 2880[label="",style="solid", color="blue", weight=9]; 2880 -> 852[label="",style="solid", color="blue", weight=3]; 2881[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];749 -> 2881[label="",style="solid", color="blue", weight=9]; 2881 -> 853[label="",style="solid", color="blue", weight=3]; 2882[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];749 -> 2882[label="",style="solid", color="blue", weight=9]; 2882 -> 854[label="",style="solid", color="blue", weight=3]; 2883[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];749 -> 2883[label="",style="solid", color="blue", weight=9]; 2883 -> 855[label="",style="solid", color="blue", weight=3]; 750[label="compare1 (vwx51,vwx52,vwx53) (vwx54,vwx55,vwx56) ((vwx51,vwx52,vwx53) <= (vwx54,vwx55,vwx56))",fontsize=16,color="black",shape="box"];750 -> 856[label="",style="solid", color="black", weight=3]; 751[label="EQ",fontsize=16,color="green",shape="box"];546[label="vwx4000",fontsize=16,color="green",shape="box"];547[label="vwx3000",fontsize=16,color="green",shape="box"];548[label="LT",fontsize=16,color="green",shape="box"];549[label="LT",fontsize=16,color="green",shape="box"];550[label="compare0 EQ LT otherwise",fontsize=16,color="black",shape="box"];550 -> 752[label="",style="solid", color="black", weight=3]; 551[label="LT",fontsize=16,color="green",shape="box"];552[label="compare0 GT LT otherwise",fontsize=16,color="black",shape="box"];552 -> 753[label="",style="solid", color="black", weight=3]; 553[label="compare0 GT EQ otherwise",fontsize=16,color="black",shape="box"];553 -> 754[label="",style="solid", color="black", weight=3]; 554[label="vwx400",fontsize=16,color="green",shape="box"];555[label="Pos vwx3010",fontsize=16,color="green",shape="box"];556[label="Pos vwx4010",fontsize=16,color="green",shape="box"];557[label="vwx300",fontsize=16,color="green",shape="box"];558[label="vwx400",fontsize=16,color="green",shape="box"];559[label="Neg vwx3010",fontsize=16,color="green",shape="box"];560[label="Pos vwx4010",fontsize=16,color="green",shape="box"];561[label="vwx300",fontsize=16,color="green",shape="box"];562[label="vwx400",fontsize=16,color="green",shape="box"];563[label="Pos vwx3010",fontsize=16,color="green",shape="box"];564[label="Neg vwx4010",fontsize=16,color="green",shape="box"];565[label="vwx300",fontsize=16,color="green",shape="box"];566[label="vwx400",fontsize=16,color="green",shape="box"];567[label="Neg vwx3010",fontsize=16,color="green",shape="box"];568[label="Neg vwx4010",fontsize=16,color="green",shape="box"];569[label="vwx300",fontsize=16,color="green",shape="box"];570 -> 187[label="",style="dashed", color="red", weight=0]; 570[label="primMulInt vwx4000 vwx3010",fontsize=16,color="magenta"];570 -> 755[label="",style="dashed", color="magenta", weight=3]; 570 -> 756[label="",style="dashed", color="magenta", weight=3]; 571[label="Pos (primMulNat vwx4000 vwx3010)",fontsize=16,color="green",shape="box"];571 -> 757[label="",style="dashed", color="green", weight=3]; 572[label="Neg (primMulNat vwx4000 vwx3010)",fontsize=16,color="green",shape="box"];572 -> 758[label="",style="dashed", color="green", weight=3]; 573[label="Neg (primMulNat vwx4000 vwx3010)",fontsize=16,color="green",shape="box"];573 -> 759[label="",style="dashed", color="green", weight=3]; 574[label="Pos (primMulNat vwx4000 vwx3010)",fontsize=16,color="green",shape="box"];574 -> 760[label="",style="dashed", color="green", weight=3]; 769[label="vwx401",fontsize=16,color="green",shape="box"];770[label="vwx301",fontsize=16,color="green",shape="box"];771[label="vwx401",fontsize=16,color="green",shape="box"];772[label="vwx301",fontsize=16,color="green",shape="box"];773[label="vwx401",fontsize=16,color="green",shape="box"];774[label="vwx301",fontsize=16,color="green",shape="box"];775[label="vwx401",fontsize=16,color="green",shape="box"];776[label="vwx301",fontsize=16,color="green",shape="box"];777[label="vwx401",fontsize=16,color="green",shape="box"];778[label="vwx301",fontsize=16,color="green",shape="box"];779[label="vwx401",fontsize=16,color="green",shape="box"];780[label="vwx301",fontsize=16,color="green",shape="box"];781[label="vwx401",fontsize=16,color="green",shape="box"];782[label="vwx301",fontsize=16,color="green",shape="box"];783[label="vwx401",fontsize=16,color="green",shape="box"];784[label="vwx301",fontsize=16,color="green",shape="box"];785[label="vwx401",fontsize=16,color="green",shape="box"];786[label="vwx301",fontsize=16,color="green",shape="box"];787[label="vwx401",fontsize=16,color="green",shape="box"];788[label="vwx301",fontsize=16,color="green",shape="box"];789[label="vwx401",fontsize=16,color="green",shape="box"];790[label="vwx301",fontsize=16,color="green",shape="box"];791[label="vwx401",fontsize=16,color="green",shape="box"];792[label="vwx301",fontsize=16,color="green",shape="box"];793[label="vwx401",fontsize=16,color="green",shape="box"];794[label="vwx301",fontsize=16,color="green",shape="box"];795[label="vwx401",fontsize=16,color="green",shape="box"];796[label="vwx301",fontsize=16,color="green",shape="box"];797[label="False",fontsize=16,color="green",shape="box"];798[label="vwx82",fontsize=16,color="green",shape="box"];799 -> 953[label="",style="dashed", color="red", weight=0]; 799[label="compare1 (vwx64,vwx65) (vwx66,vwx67) (vwx64 < vwx66 || vwx64 == vwx66 && vwx65 <= vwx67)",fontsize=16,color="magenta"];799 -> 954[label="",style="dashed", color="magenta", weight=3]; 799 -> 955[label="",style="dashed", color="magenta", weight=3]; 799 -> 956[label="",style="dashed", color="magenta", weight=3]; 799 -> 957[label="",style="dashed", color="magenta", weight=3]; 799 -> 958[label="",style="dashed", color="magenta", weight=3]; 799 -> 959[label="",style="dashed", color="magenta", weight=3]; 654[label="compare0 (Just vwx300) Nothing True",fontsize=16,color="black",shape="box"];654 -> 761[label="",style="solid", color="black", weight=3]; 382[label="False == vwx400",fontsize=16,color="burlywood",shape="box"];2884[label="vwx400/False",fontsize=10,color="white",style="solid",shape="box"];382 -> 2884[label="",style="solid", color="burlywood", weight=9]; 2884 -> 575[label="",style="solid", color="burlywood", weight=3]; 2885[label="vwx400/True",fontsize=10,color="white",style="solid",shape="box"];382 -> 2885[label="",style="solid", color="burlywood", weight=9]; 2885 -> 576[label="",style="solid", color="burlywood", weight=3]; 383[label="True == vwx400",fontsize=16,color="burlywood",shape="box"];2886[label="vwx400/False",fontsize=10,color="white",style="solid",shape="box"];383 -> 2886[label="",style="solid", color="burlywood", weight=9]; 2886 -> 577[label="",style="solid", color="burlywood", weight=3]; 2887[label="vwx400/True",fontsize=10,color="white",style="solid",shape="box"];383 -> 2887[label="",style="solid", color="burlywood", weight=9]; 2887 -> 578[label="",style="solid", color="burlywood", weight=3]; 384[label="LT == vwx400",fontsize=16,color="burlywood",shape="box"];2888[label="vwx400/LT",fontsize=10,color="white",style="solid",shape="box"];384 -> 2888[label="",style="solid", color="burlywood", weight=9]; 2888 -> 579[label="",style="solid", color="burlywood", weight=3]; 2889[label="vwx400/EQ",fontsize=10,color="white",style="solid",shape="box"];384 -> 2889[label="",style="solid", color="burlywood", weight=9]; 2889 -> 580[label="",style="solid", color="burlywood", weight=3]; 2890[label="vwx400/GT",fontsize=10,color="white",style="solid",shape="box"];384 -> 2890[label="",style="solid", color="burlywood", weight=9]; 2890 -> 581[label="",style="solid", color="burlywood", weight=3]; 385[label="EQ == vwx400",fontsize=16,color="burlywood",shape="box"];2891[label="vwx400/LT",fontsize=10,color="white",style="solid",shape="box"];385 -> 2891[label="",style="solid", color="burlywood", weight=9]; 2891 -> 582[label="",style="solid", color="burlywood", weight=3]; 2892[label="vwx400/EQ",fontsize=10,color="white",style="solid",shape="box"];385 -> 2892[label="",style="solid", color="burlywood", weight=9]; 2892 -> 583[label="",style="solid", color="burlywood", weight=3]; 2893[label="vwx400/GT",fontsize=10,color="white",style="solid",shape="box"];385 -> 2893[label="",style="solid", color="burlywood", weight=9]; 2893 -> 584[label="",style="solid", color="burlywood", weight=3]; 386[label="GT == vwx400",fontsize=16,color="burlywood",shape="box"];2894[label="vwx400/LT",fontsize=10,color="white",style="solid",shape="box"];386 -> 2894[label="",style="solid", color="burlywood", weight=9]; 2894 -> 585[label="",style="solid", color="burlywood", weight=3]; 2895[label="vwx400/EQ",fontsize=10,color="white",style="solid",shape="box"];386 -> 2895[label="",style="solid", color="burlywood", weight=9]; 2895 -> 586[label="",style="solid", color="burlywood", weight=3]; 2896[label="vwx400/GT",fontsize=10,color="white",style="solid",shape="box"];386 -> 2896[label="",style="solid", color="burlywood", weight=9]; 2896 -> 587[label="",style="solid", color="burlywood", weight=3]; 387[label="Integer vwx3000 == vwx400",fontsize=16,color="burlywood",shape="box"];2897[label="vwx400/Integer vwx4000",fontsize=10,color="white",style="solid",shape="box"];387 -> 2897[label="",style="solid", color="burlywood", weight=9]; 2897 -> 588[label="",style="solid", color="burlywood", weight=3]; 388[label="primEqChar vwx300 vwx400",fontsize=16,color="burlywood",shape="box"];2898[label="vwx300/Char vwx3000",fontsize=10,color="white",style="solid",shape="box"];388 -> 2898[label="",style="solid", color="burlywood", weight=9]; 2898 -> 589[label="",style="solid", color="burlywood", weight=3]; 389[label="vwx3000 : vwx3001 == vwx400",fontsize=16,color="burlywood",shape="box"];2899[label="vwx400/vwx4000 : vwx4001",fontsize=10,color="white",style="solid",shape="box"];389 -> 2899[label="",style="solid", color="burlywood", weight=9]; 2899 -> 590[label="",style="solid", color="burlywood", weight=3]; 2900[label="vwx400/[]",fontsize=10,color="white",style="solid",shape="box"];389 -> 2900[label="",style="solid", color="burlywood", weight=9]; 2900 -> 591[label="",style="solid", color="burlywood", weight=3]; 390[label="[] == vwx400",fontsize=16,color="burlywood",shape="box"];2901[label="vwx400/vwx4000 : vwx4001",fontsize=10,color="white",style="solid",shape="box"];390 -> 2901[label="",style="solid", color="burlywood", weight=9]; 2901 -> 592[label="",style="solid", color="burlywood", weight=3]; 2902[label="vwx400/[]",fontsize=10,color="white",style="solid",shape="box"];390 -> 2902[label="",style="solid", color="burlywood", weight=9]; 2902 -> 593[label="",style="solid", color="burlywood", weight=3]; 391[label="Left vwx3000 == vwx400",fontsize=16,color="burlywood",shape="box"];2903[label="vwx400/Left vwx4000",fontsize=10,color="white",style="solid",shape="box"];391 -> 2903[label="",style="solid", color="burlywood", weight=9]; 2903 -> 594[label="",style="solid", color="burlywood", weight=3]; 2904[label="vwx400/Right vwx4000",fontsize=10,color="white",style="solid",shape="box"];391 -> 2904[label="",style="solid", color="burlywood", weight=9]; 2904 -> 595[label="",style="solid", color="burlywood", weight=3]; 392[label="Right vwx3000 == vwx400",fontsize=16,color="burlywood",shape="box"];2905[label="vwx400/Left vwx4000",fontsize=10,color="white",style="solid",shape="box"];392 -> 2905[label="",style="solid", color="burlywood", weight=9]; 2905 -> 596[label="",style="solid", color="burlywood", weight=3]; 2906[label="vwx400/Right vwx4000",fontsize=10,color="white",style="solid",shape="box"];392 -> 2906[label="",style="solid", color="burlywood", weight=9]; 2906 -> 597[label="",style="solid", color="burlywood", weight=3]; 393[label="() == vwx400",fontsize=16,color="burlywood",shape="box"];2907[label="vwx400/()",fontsize=10,color="white",style="solid",shape="box"];393 -> 2907[label="",style="solid", color="burlywood", weight=9]; 2907 -> 598[label="",style="solid", color="burlywood", weight=3]; 394[label="vwx3000 :% vwx3001 == vwx400",fontsize=16,color="burlywood",shape="box"];2908[label="vwx400/vwx4000 :% vwx4001",fontsize=10,color="white",style="solid",shape="box"];394 -> 2908[label="",style="solid", color="burlywood", weight=9]; 2908 -> 599[label="",style="solid", color="burlywood", weight=3]; 395[label="(vwx3000,vwx3001) == vwx400",fontsize=16,color="burlywood",shape="box"];2909[label="vwx400/(vwx4000,vwx4001)",fontsize=10,color="white",style="solid",shape="box"];395 -> 2909[label="",style="solid", color="burlywood", weight=9]; 2909 -> 600[label="",style="solid", color="burlywood", weight=3]; 396[label="Nothing == vwx400",fontsize=16,color="burlywood",shape="box"];2910[label="vwx400/Nothing",fontsize=10,color="white",style="solid",shape="box"];396 -> 2910[label="",style="solid", color="burlywood", weight=9]; 2910 -> 601[label="",style="solid", color="burlywood", weight=3]; 2911[label="vwx400/Just vwx4000",fontsize=10,color="white",style="solid",shape="box"];396 -> 2911[label="",style="solid", color="burlywood", weight=9]; 2911 -> 602[label="",style="solid", color="burlywood", weight=3]; 397[label="Just vwx3000 == vwx400",fontsize=16,color="burlywood",shape="box"];2912[label="vwx400/Nothing",fontsize=10,color="white",style="solid",shape="box"];397 -> 2912[label="",style="solid", color="burlywood", weight=9]; 2912 -> 603[label="",style="solid", color="burlywood", weight=3]; 2913[label="vwx400/Just vwx4000",fontsize=10,color="white",style="solid",shape="box"];397 -> 2913[label="",style="solid", color="burlywood", weight=9]; 2913 -> 604[label="",style="solid", color="burlywood", weight=3]; 398[label="primEqDouble vwx300 vwx400",fontsize=16,color="burlywood",shape="box"];2914[label="vwx300/Double vwx3000 vwx3001",fontsize=10,color="white",style="solid",shape="box"];398 -> 2914[label="",style="solid", color="burlywood", weight=9]; 2914 -> 605[label="",style="solid", color="burlywood", weight=3]; 399[label="primEqInt vwx300 vwx400",fontsize=16,color="burlywood",shape="triangle"];2915[label="vwx300/Pos vwx3000",fontsize=10,color="white",style="solid",shape="box"];399 -> 2915[label="",style="solid", color="burlywood", weight=9]; 2915 -> 606[label="",style="solid", color="burlywood", weight=3]; 2916[label="vwx300/Neg vwx3000",fontsize=10,color="white",style="solid",shape="box"];399 -> 2916[label="",style="solid", color="burlywood", weight=9]; 2916 -> 607[label="",style="solid", color="burlywood", weight=3]; 400[label="(vwx3000,vwx3001,vwx3002) == vwx400",fontsize=16,color="burlywood",shape="box"];2917[label="vwx400/(vwx4000,vwx4001,vwx4002)",fontsize=10,color="white",style="solid",shape="box"];400 -> 2917[label="",style="solid", color="burlywood", weight=9]; 2917 -> 608[label="",style="solid", color="burlywood", weight=3]; 401[label="primEqFloat vwx300 vwx400",fontsize=16,color="burlywood",shape="box"];2918[label="vwx300/Float vwx3000 vwx3001",fontsize=10,color="white",style="solid",shape="box"];401 -> 2918[label="",style="solid", color="burlywood", weight=9]; 2918 -> 609[label="",style="solid", color="burlywood", weight=3]; 763[label="vwx27",fontsize=16,color="green",shape="box"];764[label="vwx26",fontsize=16,color="green",shape="box"];765[label="Just vwx26 <= Just vwx27",fontsize=16,color="black",shape="box"];765 -> 857[label="",style="solid", color="black", weight=3]; 762[label="compare1 (Just vwx87) (Just vwx88) vwx89",fontsize=16,color="burlywood",shape="triangle"];2919[label="vwx89/False",fontsize=10,color="white",style="solid",shape="box"];762 -> 2919[label="",style="solid", color="burlywood", weight=9]; 2919 -> 858[label="",style="solid", color="burlywood", weight=3]; 2920[label="vwx89/True",fontsize=10,color="white",style="solid",shape="box"];762 -> 2920[label="",style="solid", color="burlywood", weight=9]; 2920 -> 859[label="",style="solid", color="burlywood", weight=3]; 656[label="compare0 True False True",fontsize=16,color="black",shape="box"];656 -> 860[label="",style="solid", color="black", weight=3]; 862[label="vwx33",fontsize=16,color="green",shape="box"];863[label="Left vwx33 <= Left vwx34",fontsize=16,color="black",shape="box"];863 -> 870[label="",style="solid", color="black", weight=3]; 864[label="vwx34",fontsize=16,color="green",shape="box"];861[label="compare1 (Left vwx94) (Left vwx95) vwx96",fontsize=16,color="burlywood",shape="triangle"];2921[label="vwx96/False",fontsize=10,color="white",style="solid",shape="box"];861 -> 2921[label="",style="solid", color="burlywood", weight=9]; 2921 -> 871[label="",style="solid", color="burlywood", weight=3]; 2922[label="vwx96/True",fontsize=10,color="white",style="solid",shape="box"];861 -> 2922[label="",style="solid", color="burlywood", weight=9]; 2922 -> 872[label="",style="solid", color="burlywood", weight=3]; 658[label="compare0 (Right vwx300) (Left vwx400) True",fontsize=16,color="black",shape="box"];658 -> 873[label="",style="solid", color="black", weight=3]; 875[label="vwx40",fontsize=16,color="green",shape="box"];876[label="vwx41",fontsize=16,color="green",shape="box"];877[label="Right vwx40 <= Right vwx41",fontsize=16,color="black",shape="box"];877 -> 881[label="",style="solid", color="black", weight=3]; 874[label="compare1 (Right vwx102) (Right vwx103) vwx104",fontsize=16,color="burlywood",shape="triangle"];2923[label="vwx104/False",fontsize=10,color="white",style="solid",shape="box"];874 -> 2923[label="",style="solid", color="burlywood", weight=9]; 2923 -> 882[label="",style="solid", color="burlywood", weight=3]; 2924[label="vwx104/True",fontsize=10,color="white",style="solid",shape="box"];874 -> 2924[label="",style="solid", color="burlywood", weight=9]; 2924 -> 883[label="",style="solid", color="burlywood", weight=3]; 800[label="vwx400",fontsize=16,color="green",shape="box"];801[label="vwx300",fontsize=16,color="green",shape="box"];802[label="vwx400",fontsize=16,color="green",shape="box"];803[label="vwx300",fontsize=16,color="green",shape="box"];804[label="vwx400",fontsize=16,color="green",shape="box"];805[label="vwx300",fontsize=16,color="green",shape="box"];806[label="vwx400",fontsize=16,color="green",shape="box"];807[label="vwx300",fontsize=16,color="green",shape="box"];808[label="vwx400",fontsize=16,color="green",shape="box"];809[label="vwx300",fontsize=16,color="green",shape="box"];810[label="vwx400",fontsize=16,color="green",shape="box"];811[label="vwx300",fontsize=16,color="green",shape="box"];812[label="vwx400",fontsize=16,color="green",shape="box"];813[label="vwx300",fontsize=16,color="green",shape="box"];814[label="vwx400",fontsize=16,color="green",shape="box"];815[label="vwx300",fontsize=16,color="green",shape="box"];816[label="vwx400",fontsize=16,color="green",shape="box"];817[label="vwx300",fontsize=16,color="green",shape="box"];818[label="vwx400",fontsize=16,color="green",shape="box"];819[label="vwx300",fontsize=16,color="green",shape="box"];820[label="vwx400",fontsize=16,color="green",shape="box"];821[label="vwx300",fontsize=16,color="green",shape="box"];822[label="vwx400",fontsize=16,color="green",shape="box"];823[label="vwx300",fontsize=16,color="green",shape="box"];824[label="vwx400",fontsize=16,color="green",shape="box"];825[label="vwx300",fontsize=16,color="green",shape="box"];826[label="vwx400",fontsize=16,color="green",shape="box"];827[label="vwx300",fontsize=16,color="green",shape="box"];828 -> 261[label="",style="dashed", color="red", weight=0]; 828[label="vwx301 == vwx401",fontsize=16,color="magenta"];828 -> 884[label="",style="dashed", color="magenta", weight=3]; 828 -> 885[label="",style="dashed", color="magenta", weight=3]; 829 -> 262[label="",style="dashed", color="red", weight=0]; 829[label="vwx301 == vwx401",fontsize=16,color="magenta"];829 -> 886[label="",style="dashed", color="magenta", weight=3]; 829 -> 887[label="",style="dashed", color="magenta", weight=3]; 830 -> 263[label="",style="dashed", color="red", weight=0]; 830[label="vwx301 == vwx401",fontsize=16,color="magenta"];830 -> 888[label="",style="dashed", color="magenta", weight=3]; 830 -> 889[label="",style="dashed", color="magenta", weight=3]; 831 -> 264[label="",style="dashed", color="red", weight=0]; 831[label="vwx301 == vwx401",fontsize=16,color="magenta"];831 -> 890[label="",style="dashed", color="magenta", weight=3]; 831 -> 891[label="",style="dashed", color="magenta", weight=3]; 832 -> 265[label="",style="dashed", color="red", weight=0]; 832[label="vwx301 == vwx401",fontsize=16,color="magenta"];832 -> 892[label="",style="dashed", color="magenta", weight=3]; 832 -> 893[label="",style="dashed", color="magenta", weight=3]; 833 -> 266[label="",style="dashed", color="red", weight=0]; 833[label="vwx301 == vwx401",fontsize=16,color="magenta"];833 -> 894[label="",style="dashed", color="magenta", weight=3]; 833 -> 895[label="",style="dashed", color="magenta", weight=3]; 834 -> 267[label="",style="dashed", color="red", weight=0]; 834[label="vwx301 == vwx401",fontsize=16,color="magenta"];834 -> 896[label="",style="dashed", color="magenta", weight=3]; 834 -> 897[label="",style="dashed", color="magenta", weight=3]; 835 -> 268[label="",style="dashed", color="red", weight=0]; 835[label="vwx301 == vwx401",fontsize=16,color="magenta"];835 -> 898[label="",style="dashed", color="magenta", weight=3]; 835 -> 899[label="",style="dashed", color="magenta", weight=3]; 836 -> 269[label="",style="dashed", color="red", weight=0]; 836[label="vwx301 == vwx401",fontsize=16,color="magenta"];836 -> 900[label="",style="dashed", color="magenta", weight=3]; 836 -> 901[label="",style="dashed", color="magenta", weight=3]; 837 -> 270[label="",style="dashed", color="red", weight=0]; 837[label="vwx301 == vwx401",fontsize=16,color="magenta"];837 -> 902[label="",style="dashed", color="magenta", weight=3]; 837 -> 903[label="",style="dashed", color="magenta", weight=3]; 838 -> 271[label="",style="dashed", color="red", weight=0]; 838[label="vwx301 == vwx401",fontsize=16,color="magenta"];838 -> 904[label="",style="dashed", color="magenta", weight=3]; 838 -> 905[label="",style="dashed", color="magenta", weight=3]; 839 -> 272[label="",style="dashed", color="red", weight=0]; 839[label="vwx301 == vwx401",fontsize=16,color="magenta"];839 -> 906[label="",style="dashed", color="magenta", weight=3]; 839 -> 907[label="",style="dashed", color="magenta", weight=3]; 840 -> 273[label="",style="dashed", color="red", weight=0]; 840[label="vwx301 == vwx401",fontsize=16,color="magenta"];840 -> 908[label="",style="dashed", color="magenta", weight=3]; 840 -> 909[label="",style="dashed", color="magenta", weight=3]; 841 -> 274[label="",style="dashed", color="red", weight=0]; 841[label="vwx301 == vwx401",fontsize=16,color="magenta"];841 -> 910[label="",style="dashed", color="magenta", weight=3]; 841 -> 911[label="",style="dashed", color="magenta", weight=3]; 842 -> 261[label="",style="dashed", color="red", weight=0]; 842[label="vwx302 == vwx402",fontsize=16,color="magenta"];842 -> 912[label="",style="dashed", color="magenta", weight=3]; 842 -> 913[label="",style="dashed", color="magenta", weight=3]; 843 -> 262[label="",style="dashed", color="red", weight=0]; 843[label="vwx302 == vwx402",fontsize=16,color="magenta"];843 -> 914[label="",style="dashed", color="magenta", weight=3]; 843 -> 915[label="",style="dashed", color="magenta", weight=3]; 844 -> 263[label="",style="dashed", color="red", weight=0]; 844[label="vwx302 == vwx402",fontsize=16,color="magenta"];844 -> 916[label="",style="dashed", color="magenta", weight=3]; 844 -> 917[label="",style="dashed", color="magenta", weight=3]; 845 -> 264[label="",style="dashed", color="red", weight=0]; 845[label="vwx302 == vwx402",fontsize=16,color="magenta"];845 -> 918[label="",style="dashed", color="magenta", weight=3]; 845 -> 919[label="",style="dashed", color="magenta", weight=3]; 846 -> 265[label="",style="dashed", color="red", weight=0]; 846[label="vwx302 == vwx402",fontsize=16,color="magenta"];846 -> 920[label="",style="dashed", color="magenta", weight=3]; 846 -> 921[label="",style="dashed", color="magenta", weight=3]; 847 -> 266[label="",style="dashed", color="red", weight=0]; 847[label="vwx302 == vwx402",fontsize=16,color="magenta"];847 -> 922[label="",style="dashed", color="magenta", weight=3]; 847 -> 923[label="",style="dashed", color="magenta", weight=3]; 848 -> 267[label="",style="dashed", color="red", weight=0]; 848[label="vwx302 == vwx402",fontsize=16,color="magenta"];848 -> 924[label="",style="dashed", color="magenta", weight=3]; 848 -> 925[label="",style="dashed", color="magenta", weight=3]; 849 -> 268[label="",style="dashed", color="red", weight=0]; 849[label="vwx302 == vwx402",fontsize=16,color="magenta"];849 -> 926[label="",style="dashed", color="magenta", weight=3]; 849 -> 927[label="",style="dashed", color="magenta", weight=3]; 850 -> 269[label="",style="dashed", color="red", weight=0]; 850[label="vwx302 == vwx402",fontsize=16,color="magenta"];850 -> 928[label="",style="dashed", color="magenta", weight=3]; 850 -> 929[label="",style="dashed", color="magenta", weight=3]; 851 -> 270[label="",style="dashed", color="red", weight=0]; 851[label="vwx302 == vwx402",fontsize=16,color="magenta"];851 -> 930[label="",style="dashed", color="magenta", weight=3]; 851 -> 931[label="",style="dashed", color="magenta", weight=3]; 852 -> 271[label="",style="dashed", color="red", weight=0]; 852[label="vwx302 == vwx402",fontsize=16,color="magenta"];852 -> 932[label="",style="dashed", color="magenta", weight=3]; 852 -> 933[label="",style="dashed", color="magenta", weight=3]; 853 -> 272[label="",style="dashed", color="red", weight=0]; 853[label="vwx302 == vwx402",fontsize=16,color="magenta"];853 -> 934[label="",style="dashed", color="magenta", weight=3]; 853 -> 935[label="",style="dashed", color="magenta", weight=3]; 854 -> 273[label="",style="dashed", color="red", weight=0]; 854[label="vwx302 == vwx402",fontsize=16,color="magenta"];854 -> 936[label="",style="dashed", color="magenta", weight=3]; 854 -> 937[label="",style="dashed", color="magenta", weight=3]; 855 -> 274[label="",style="dashed", color="red", weight=0]; 855[label="vwx302 == vwx402",fontsize=16,color="magenta"];855 -> 938[label="",style="dashed", color="magenta", weight=3]; 855 -> 939[label="",style="dashed", color="magenta", weight=3]; 856 -> 1071[label="",style="dashed", color="red", weight=0]; 856[label="compare1 (vwx51,vwx52,vwx53) (vwx54,vwx55,vwx56) (vwx51 < vwx54 || vwx51 == vwx54 && (vwx52 < vwx55 || vwx52 == vwx55 && vwx53 <= vwx56))",fontsize=16,color="magenta"];856 -> 1072[label="",style="dashed", color="magenta", weight=3]; 856 -> 1073[label="",style="dashed", color="magenta", weight=3]; 856 -> 1074[label="",style="dashed", color="magenta", weight=3]; 856 -> 1075[label="",style="dashed", color="magenta", weight=3]; 856 -> 1076[label="",style="dashed", color="magenta", weight=3]; 856 -> 1077[label="",style="dashed", color="magenta", weight=3]; 856 -> 1078[label="",style="dashed", color="magenta", weight=3]; 856 -> 1079[label="",style="dashed", color="magenta", weight=3]; 752[label="compare0 EQ LT True",fontsize=16,color="black",shape="box"];752 -> 942[label="",style="solid", color="black", weight=3]; 753[label="compare0 GT LT True",fontsize=16,color="black",shape="box"];753 -> 943[label="",style="solid", color="black", weight=3]; 754[label="compare0 GT EQ True",fontsize=16,color="black",shape="box"];754 -> 944[label="",style="solid", color="black", weight=3]; 755[label="vwx3010",fontsize=16,color="green",shape="box"];756[label="vwx4000",fontsize=16,color="green",shape="box"];757[label="primMulNat vwx4000 vwx3010",fontsize=16,color="burlywood",shape="triangle"];2925[label="vwx4000/Succ vwx40000",fontsize=10,color="white",style="solid",shape="box"];757 -> 2925[label="",style="solid", color="burlywood", weight=9]; 2925 -> 945[label="",style="solid", color="burlywood", weight=3]; 2926[label="vwx4000/Zero",fontsize=10,color="white",style="solid",shape="box"];757 -> 2926[label="",style="solid", color="burlywood", weight=9]; 2926 -> 946[label="",style="solid", color="burlywood", weight=3]; 758 -> 757[label="",style="dashed", color="red", weight=0]; 758[label="primMulNat vwx4000 vwx3010",fontsize=16,color="magenta"];758 -> 947[label="",style="dashed", color="magenta", weight=3]; 759 -> 757[label="",style="dashed", color="red", weight=0]; 759[label="primMulNat vwx4000 vwx3010",fontsize=16,color="magenta"];759 -> 948[label="",style="dashed", color="magenta", weight=3]; 760 -> 757[label="",style="dashed", color="red", weight=0]; 760[label="primMulNat vwx4000 vwx3010",fontsize=16,color="magenta"];760 -> 949[label="",style="dashed", color="magenta", weight=3]; 760 -> 950[label="",style="dashed", color="magenta", weight=3]; 954[label="vwx66",fontsize=16,color="green",shape="box"];955 -> 693[label="",style="dashed", color="red", weight=0]; 955[label="vwx64 == vwx66 && vwx65 <= vwx67",fontsize=16,color="magenta"];955 -> 966[label="",style="dashed", color="magenta", weight=3]; 955 -> 967[label="",style="dashed", color="magenta", weight=3]; 956[label="vwx64 < vwx66",fontsize=16,color="blue",shape="box"];2927[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];956 -> 2927[label="",style="solid", color="blue", weight=9]; 2927 -> 968[label="",style="solid", color="blue", weight=3]; 2928[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];956 -> 2928[label="",style="solid", color="blue", weight=9]; 2928 -> 969[label="",style="solid", color="blue", weight=3]; 2929[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];956 -> 2929[label="",style="solid", color="blue", weight=9]; 2929 -> 970[label="",style="solid", color="blue", weight=3]; 2930[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];956 -> 2930[label="",style="solid", color="blue", weight=9]; 2930 -> 971[label="",style="solid", color="blue", weight=3]; 2931[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];956 -> 2931[label="",style="solid", color="blue", weight=9]; 2931 -> 972[label="",style="solid", color="blue", weight=3]; 2932[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];956 -> 2932[label="",style="solid", color="blue", weight=9]; 2932 -> 973[label="",style="solid", color="blue", weight=3]; 2933[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];956 -> 2933[label="",style="solid", color="blue", weight=9]; 2933 -> 974[label="",style="solid", color="blue", weight=3]; 2934[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];956 -> 2934[label="",style="solid", color="blue", weight=9]; 2934 -> 975[label="",style="solid", color="blue", weight=3]; 2935[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];956 -> 2935[label="",style="solid", color="blue", weight=9]; 2935 -> 976[label="",style="solid", color="blue", weight=3]; 2936[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];956 -> 2936[label="",style="solid", color="blue", weight=9]; 2936 -> 977[label="",style="solid", color="blue", weight=3]; 2937[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];956 -> 2937[label="",style="solid", color="blue", weight=9]; 2937 -> 978[label="",style="solid", color="blue", weight=3]; 2938[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];956 -> 2938[label="",style="solid", color="blue", weight=9]; 2938 -> 979[label="",style="solid", color="blue", weight=3]; 2939[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];956 -> 2939[label="",style="solid", color="blue", weight=9]; 2939 -> 980[label="",style="solid", color="blue", weight=3]; 2940[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];956 -> 2940[label="",style="solid", color="blue", weight=9]; 2940 -> 981[label="",style="solid", color="blue", weight=3]; 957[label="vwx64",fontsize=16,color="green",shape="box"];958[label="vwx65",fontsize=16,color="green",shape="box"];959[label="vwx67",fontsize=16,color="green",shape="box"];953[label="compare1 (vwx114,vwx115) (vwx116,vwx117) (vwx118 || vwx119)",fontsize=16,color="burlywood",shape="triangle"];2941[label="vwx118/False",fontsize=10,color="white",style="solid",shape="box"];953 -> 2941[label="",style="solid", color="burlywood", weight=9]; 2941 -> 982[label="",style="solid", color="burlywood", weight=3]; 2942[label="vwx118/True",fontsize=10,color="white",style="solid",shape="box"];953 -> 2942[label="",style="solid", color="burlywood", weight=9]; 2942 -> 983[label="",style="solid", color="burlywood", weight=3]; 761[label="GT",fontsize=16,color="green",shape="box"];575[label="False == False",fontsize=16,color="black",shape="box"];575 -> 984[label="",style="solid", color="black", weight=3]; 576[label="False == True",fontsize=16,color="black",shape="box"];576 -> 985[label="",style="solid", color="black", weight=3]; 577[label="True == False",fontsize=16,color="black",shape="box"];577 -> 986[label="",style="solid", color="black", weight=3]; 578[label="True == True",fontsize=16,color="black",shape="box"];578 -> 987[label="",style="solid", color="black", weight=3]; 579[label="LT == LT",fontsize=16,color="black",shape="box"];579 -> 988[label="",style="solid", color="black", weight=3]; 580[label="LT == EQ",fontsize=16,color="black",shape="box"];580 -> 989[label="",style="solid", color="black", weight=3]; 581[label="LT == GT",fontsize=16,color="black",shape="box"];581 -> 990[label="",style="solid", color="black", weight=3]; 582[label="EQ == LT",fontsize=16,color="black",shape="box"];582 -> 991[label="",style="solid", color="black", weight=3]; 583[label="EQ == EQ",fontsize=16,color="black",shape="box"];583 -> 992[label="",style="solid", color="black", weight=3]; 584[label="EQ == GT",fontsize=16,color="black",shape="box"];584 -> 993[label="",style="solid", color="black", weight=3]; 585[label="GT == LT",fontsize=16,color="black",shape="box"];585 -> 994[label="",style="solid", color="black", weight=3]; 586[label="GT == EQ",fontsize=16,color="black",shape="box"];586 -> 995[label="",style="solid", color="black", weight=3]; 587[label="GT == GT",fontsize=16,color="black",shape="box"];587 -> 996[label="",style="solid", color="black", weight=3]; 588[label="Integer vwx3000 == Integer vwx4000",fontsize=16,color="black",shape="box"];588 -> 997[label="",style="solid", color="black", weight=3]; 589[label="primEqChar (Char vwx3000) vwx400",fontsize=16,color="burlywood",shape="box"];2943[label="vwx400/Char vwx4000",fontsize=10,color="white",style="solid",shape="box"];589 -> 2943[label="",style="solid", color="burlywood", weight=9]; 2943 -> 998[label="",style="solid", color="burlywood", weight=3]; 590[label="vwx3000 : vwx3001 == vwx4000 : vwx4001",fontsize=16,color="black",shape="box"];590 -> 999[label="",style="solid", color="black", weight=3]; 591[label="vwx3000 : vwx3001 == []",fontsize=16,color="black",shape="box"];591 -> 1000[label="",style="solid", color="black", weight=3]; 592[label="[] == vwx4000 : vwx4001",fontsize=16,color="black",shape="box"];592 -> 1001[label="",style="solid", color="black", weight=3]; 593[label="[] == []",fontsize=16,color="black",shape="box"];593 -> 1002[label="",style="solid", color="black", weight=3]; 594[label="Left vwx3000 == Left vwx4000",fontsize=16,color="black",shape="box"];594 -> 1003[label="",style="solid", color="black", weight=3]; 595[label="Left vwx3000 == Right vwx4000",fontsize=16,color="black",shape="box"];595 -> 1004[label="",style="solid", color="black", weight=3]; 596[label="Right vwx3000 == Left vwx4000",fontsize=16,color="black",shape="box"];596 -> 1005[label="",style="solid", color="black", weight=3]; 597[label="Right vwx3000 == Right vwx4000",fontsize=16,color="black",shape="box"];597 -> 1006[label="",style="solid", color="black", weight=3]; 598[label="() == ()",fontsize=16,color="black",shape="box"];598 -> 1007[label="",style="solid", color="black", weight=3]; 599[label="vwx3000 :% vwx3001 == vwx4000 :% vwx4001",fontsize=16,color="black",shape="box"];599 -> 1008[label="",style="solid", color="black", weight=3]; 600[label="(vwx3000,vwx3001) == (vwx4000,vwx4001)",fontsize=16,color="black",shape="box"];600 -> 1009[label="",style="solid", color="black", weight=3]; 601[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];601 -> 1010[label="",style="solid", color="black", weight=3]; 602[label="Nothing == Just vwx4000",fontsize=16,color="black",shape="box"];602 -> 1011[label="",style="solid", color="black", weight=3]; 603[label="Just vwx3000 == Nothing",fontsize=16,color="black",shape="box"];603 -> 1012[label="",style="solid", color="black", weight=3]; 604[label="Just vwx3000 == Just vwx4000",fontsize=16,color="black",shape="box"];604 -> 1013[label="",style="solid", color="black", weight=3]; 605[label="primEqDouble (Double vwx3000 vwx3001) vwx400",fontsize=16,color="burlywood",shape="box"];2944[label="vwx400/Double vwx4000 vwx4001",fontsize=10,color="white",style="solid",shape="box"];605 -> 2944[label="",style="solid", color="burlywood", weight=9]; 2944 -> 1014[label="",style="solid", color="burlywood", weight=3]; 606[label="primEqInt (Pos vwx3000) vwx400",fontsize=16,color="burlywood",shape="box"];2945[label="vwx3000/Succ vwx30000",fontsize=10,color="white",style="solid",shape="box"];606 -> 2945[label="",style="solid", color="burlywood", weight=9]; 2945 -> 1015[label="",style="solid", color="burlywood", weight=3]; 2946[label="vwx3000/Zero",fontsize=10,color="white",style="solid",shape="box"];606 -> 2946[label="",style="solid", color="burlywood", weight=9]; 2946 -> 1016[label="",style="solid", color="burlywood", weight=3]; 607[label="primEqInt (Neg vwx3000) vwx400",fontsize=16,color="burlywood",shape="box"];2947[label="vwx3000/Succ vwx30000",fontsize=10,color="white",style="solid",shape="box"];607 -> 2947[label="",style="solid", color="burlywood", weight=9]; 2947 -> 1017[label="",style="solid", color="burlywood", weight=3]; 2948[label="vwx3000/Zero",fontsize=10,color="white",style="solid",shape="box"];607 -> 2948[label="",style="solid", color="burlywood", weight=9]; 2948 -> 1018[label="",style="solid", color="burlywood", weight=3]; 608[label="(vwx3000,vwx3001,vwx3002) == (vwx4000,vwx4001,vwx4002)",fontsize=16,color="black",shape="box"];608 -> 1019[label="",style="solid", color="black", weight=3]; 609[label="primEqFloat (Float vwx3000 vwx3001) vwx400",fontsize=16,color="burlywood",shape="box"];2949[label="vwx400/Float vwx4000 vwx4001",fontsize=10,color="white",style="solid",shape="box"];609 -> 2949[label="",style="solid", color="burlywood", weight=9]; 2949 -> 1020[label="",style="solid", color="burlywood", weight=3]; 857[label="vwx26 <= vwx27",fontsize=16,color="blue",shape="box"];2950[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];857 -> 2950[label="",style="solid", color="blue", weight=9]; 2950 -> 1021[label="",style="solid", color="blue", weight=3]; 2951[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];857 -> 2951[label="",style="solid", color="blue", weight=9]; 2951 -> 1022[label="",style="solid", color="blue", weight=3]; 2952[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];857 -> 2952[label="",style="solid", color="blue", weight=9]; 2952 -> 1023[label="",style="solid", color="blue", weight=3]; 2953[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];857 -> 2953[label="",style="solid", color="blue", weight=9]; 2953 -> 1024[label="",style="solid", color="blue", weight=3]; 2954[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];857 -> 2954[label="",style="solid", color="blue", weight=9]; 2954 -> 1025[label="",style="solid", color="blue", weight=3]; 2955[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];857 -> 2955[label="",style="solid", color="blue", weight=9]; 2955 -> 1026[label="",style="solid", color="blue", weight=3]; 2956[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];857 -> 2956[label="",style="solid", color="blue", weight=9]; 2956 -> 1027[label="",style="solid", color="blue", weight=3]; 2957[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];857 -> 2957[label="",style="solid", color="blue", weight=9]; 2957 -> 1028[label="",style="solid", color="blue", weight=3]; 2958[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];857 -> 2958[label="",style="solid", color="blue", weight=9]; 2958 -> 1029[label="",style="solid", color="blue", weight=3]; 2959[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];857 -> 2959[label="",style="solid", color="blue", weight=9]; 2959 -> 1030[label="",style="solid", color="blue", weight=3]; 2960[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];857 -> 2960[label="",style="solid", color="blue", weight=9]; 2960 -> 1031[label="",style="solid", color="blue", weight=3]; 2961[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];857 -> 2961[label="",style="solid", color="blue", weight=9]; 2961 -> 1032[label="",style="solid", color="blue", weight=3]; 2962[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];857 -> 2962[label="",style="solid", color="blue", weight=9]; 2962 -> 1033[label="",style="solid", color="blue", weight=3]; 2963[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];857 -> 2963[label="",style="solid", color="blue", weight=9]; 2963 -> 1034[label="",style="solid", color="blue", weight=3]; 858[label="compare1 (Just vwx87) (Just vwx88) False",fontsize=16,color="black",shape="box"];858 -> 1035[label="",style="solid", color="black", weight=3]; 859[label="compare1 (Just vwx87) (Just vwx88) True",fontsize=16,color="black",shape="box"];859 -> 1036[label="",style="solid", color="black", weight=3]; 860[label="GT",fontsize=16,color="green",shape="box"];870[label="vwx33 <= vwx34",fontsize=16,color="blue",shape="box"];2964[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];870 -> 2964[label="",style="solid", color="blue", weight=9]; 2964 -> 1037[label="",style="solid", color="blue", weight=3]; 2965[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];870 -> 2965[label="",style="solid", color="blue", weight=9]; 2965 -> 1038[label="",style="solid", color="blue", weight=3]; 2966[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];870 -> 2966[label="",style="solid", color="blue", weight=9]; 2966 -> 1039[label="",style="solid", color="blue", weight=3]; 2967[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];870 -> 2967[label="",style="solid", color="blue", weight=9]; 2967 -> 1040[label="",style="solid", color="blue", weight=3]; 2968[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];870 -> 2968[label="",style="solid", color="blue", weight=9]; 2968 -> 1041[label="",style="solid", color="blue", weight=3]; 2969[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];870 -> 2969[label="",style="solid", color="blue", weight=9]; 2969 -> 1042[label="",style="solid", color="blue", weight=3]; 2970[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];870 -> 2970[label="",style="solid", color="blue", weight=9]; 2970 -> 1043[label="",style="solid", color="blue", weight=3]; 2971[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];870 -> 2971[label="",style="solid", color="blue", weight=9]; 2971 -> 1044[label="",style="solid", color="blue", weight=3]; 2972[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];870 -> 2972[label="",style="solid", color="blue", weight=9]; 2972 -> 1045[label="",style="solid", color="blue", weight=3]; 2973[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];870 -> 2973[label="",style="solid", color="blue", weight=9]; 2973 -> 1046[label="",style="solid", color="blue", weight=3]; 2974[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];870 -> 2974[label="",style="solid", color="blue", weight=9]; 2974 -> 1047[label="",style="solid", color="blue", weight=3]; 2975[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];870 -> 2975[label="",style="solid", color="blue", weight=9]; 2975 -> 1048[label="",style="solid", color="blue", weight=3]; 2976[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];870 -> 2976[label="",style="solid", color="blue", weight=9]; 2976 -> 1049[label="",style="solid", color="blue", weight=3]; 2977[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];870 -> 2977[label="",style="solid", color="blue", weight=9]; 2977 -> 1050[label="",style="solid", color="blue", weight=3]; 871[label="compare1 (Left vwx94) (Left vwx95) False",fontsize=16,color="black",shape="box"];871 -> 1051[label="",style="solid", color="black", weight=3]; 872[label="compare1 (Left vwx94) (Left vwx95) True",fontsize=16,color="black",shape="box"];872 -> 1052[label="",style="solid", color="black", weight=3]; 873[label="GT",fontsize=16,color="green",shape="box"];881[label="vwx40 <= vwx41",fontsize=16,color="blue",shape="box"];2978[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];881 -> 2978[label="",style="solid", color="blue", weight=9]; 2978 -> 1053[label="",style="solid", color="blue", weight=3]; 2979[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];881 -> 2979[label="",style="solid", color="blue", weight=9]; 2979 -> 1054[label="",style="solid", color="blue", weight=3]; 2980[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];881 -> 2980[label="",style="solid", color="blue", weight=9]; 2980 -> 1055[label="",style="solid", color="blue", weight=3]; 2981[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];881 -> 2981[label="",style="solid", color="blue", weight=9]; 2981 -> 1056[label="",style="solid", color="blue", weight=3]; 2982[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];881 -> 2982[label="",style="solid", color="blue", weight=9]; 2982 -> 1057[label="",style="solid", color="blue", weight=3]; 2983[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];881 -> 2983[label="",style="solid", color="blue", weight=9]; 2983 -> 1058[label="",style="solid", color="blue", weight=3]; 2984[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];881 -> 2984[label="",style="solid", color="blue", weight=9]; 2984 -> 1059[label="",style="solid", color="blue", weight=3]; 2985[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];881 -> 2985[label="",style="solid", color="blue", weight=9]; 2985 -> 1060[label="",style="solid", color="blue", weight=3]; 2986[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];881 -> 2986[label="",style="solid", color="blue", weight=9]; 2986 -> 1061[label="",style="solid", color="blue", weight=3]; 2987[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];881 -> 2987[label="",style="solid", color="blue", weight=9]; 2987 -> 1062[label="",style="solid", color="blue", weight=3]; 2988[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];881 -> 2988[label="",style="solid", color="blue", weight=9]; 2988 -> 1063[label="",style="solid", color="blue", weight=3]; 2989[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];881 -> 2989[label="",style="solid", color="blue", weight=9]; 2989 -> 1064[label="",style="solid", color="blue", weight=3]; 2990[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];881 -> 2990[label="",style="solid", color="blue", weight=9]; 2990 -> 1065[label="",style="solid", color="blue", weight=3]; 2991[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];881 -> 2991[label="",style="solid", color="blue", weight=9]; 2991 -> 1066[label="",style="solid", color="blue", weight=3]; 882[label="compare1 (Right vwx102) (Right vwx103) False",fontsize=16,color="black",shape="box"];882 -> 1067[label="",style="solid", color="black", weight=3]; 883[label="compare1 (Right vwx102) (Right vwx103) True",fontsize=16,color="black",shape="box"];883 -> 1068[label="",style="solid", color="black", weight=3]; 884[label="vwx401",fontsize=16,color="green",shape="box"];885[label="vwx301",fontsize=16,color="green",shape="box"];886[label="vwx401",fontsize=16,color="green",shape="box"];887[label="vwx301",fontsize=16,color="green",shape="box"];888[label="vwx401",fontsize=16,color="green",shape="box"];889[label="vwx301",fontsize=16,color="green",shape="box"];890[label="vwx401",fontsize=16,color="green",shape="box"];891[label="vwx301",fontsize=16,color="green",shape="box"];892[label="vwx401",fontsize=16,color="green",shape="box"];893[label="vwx301",fontsize=16,color="green",shape="box"];894[label="vwx401",fontsize=16,color="green",shape="box"];895[label="vwx301",fontsize=16,color="green",shape="box"];896[label="vwx401",fontsize=16,color="green",shape="box"];897[label="vwx301",fontsize=16,color="green",shape="box"];898[label="vwx401",fontsize=16,color="green",shape="box"];899[label="vwx301",fontsize=16,color="green",shape="box"];900[label="vwx401",fontsize=16,color="green",shape="box"];901[label="vwx301",fontsize=16,color="green",shape="box"];902[label="vwx401",fontsize=16,color="green",shape="box"];903[label="vwx301",fontsize=16,color="green",shape="box"];904[label="vwx401",fontsize=16,color="green",shape="box"];905[label="vwx301",fontsize=16,color="green",shape="box"];906[label="vwx401",fontsize=16,color="green",shape="box"];907[label="vwx301",fontsize=16,color="green",shape="box"];908[label="vwx401",fontsize=16,color="green",shape="box"];909[label="vwx301",fontsize=16,color="green",shape="box"];910[label="vwx401",fontsize=16,color="green",shape="box"];911[label="vwx301",fontsize=16,color="green",shape="box"];912[label="vwx402",fontsize=16,color="green",shape="box"];913[label="vwx302",fontsize=16,color="green",shape="box"];914[label="vwx402",fontsize=16,color="green",shape="box"];915[label="vwx302",fontsize=16,color="green",shape="box"];916[label="vwx402",fontsize=16,color="green",shape="box"];917[label="vwx302",fontsize=16,color="green",shape="box"];918[label="vwx402",fontsize=16,color="green",shape="box"];919[label="vwx302",fontsize=16,color="green",shape="box"];920[label="vwx402",fontsize=16,color="green",shape="box"];921[label="vwx302",fontsize=16,color="green",shape="box"];922[label="vwx402",fontsize=16,color="green",shape="box"];923[label="vwx302",fontsize=16,color="green",shape="box"];924[label="vwx402",fontsize=16,color="green",shape="box"];925[label="vwx302",fontsize=16,color="green",shape="box"];926[label="vwx402",fontsize=16,color="green",shape="box"];927[label="vwx302",fontsize=16,color="green",shape="box"];928[label="vwx402",fontsize=16,color="green",shape="box"];929[label="vwx302",fontsize=16,color="green",shape="box"];930[label="vwx402",fontsize=16,color="green",shape="box"];931[label="vwx302",fontsize=16,color="green",shape="box"];932[label="vwx402",fontsize=16,color="green",shape="box"];933[label="vwx302",fontsize=16,color="green",shape="box"];934[label="vwx402",fontsize=16,color="green",shape="box"];935[label="vwx302",fontsize=16,color="green",shape="box"];936[label="vwx402",fontsize=16,color="green",shape="box"];937[label="vwx302",fontsize=16,color="green",shape="box"];938[label="vwx402",fontsize=16,color="green",shape="box"];939[label="vwx302",fontsize=16,color="green",shape="box"];1072[label="vwx55",fontsize=16,color="green",shape="box"];1073[label="vwx51",fontsize=16,color="green",shape="box"];1074 -> 693[label="",style="dashed", color="red", weight=0]; 1074[label="vwx51 == vwx54 && (vwx52 < vwx55 || vwx52 == vwx55 && vwx53 <= vwx56)",fontsize=16,color="magenta"];1074 -> 1088[label="",style="dashed", color="magenta", weight=3]; 1074 -> 1089[label="",style="dashed", color="magenta", weight=3]; 1075[label="vwx54",fontsize=16,color="green",shape="box"];1076[label="vwx56",fontsize=16,color="green",shape="box"];1077[label="vwx53",fontsize=16,color="green",shape="box"];1078[label="vwx52",fontsize=16,color="green",shape="box"];1079[label="vwx51 < vwx54",fontsize=16,color="blue",shape="box"];2992[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1079 -> 2992[label="",style="solid", color="blue", weight=9]; 2992 -> 1090[label="",style="solid", color="blue", weight=3]; 2993[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1079 -> 2993[label="",style="solid", color="blue", weight=9]; 2993 -> 1091[label="",style="solid", color="blue", weight=3]; 2994[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1079 -> 2994[label="",style="solid", color="blue", weight=9]; 2994 -> 1092[label="",style="solid", color="blue", weight=3]; 2995[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1079 -> 2995[label="",style="solid", color="blue", weight=9]; 2995 -> 1093[label="",style="solid", color="blue", weight=3]; 2996[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1079 -> 2996[label="",style="solid", color="blue", weight=9]; 2996 -> 1094[label="",style="solid", color="blue", weight=3]; 2997[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1079 -> 2997[label="",style="solid", color="blue", weight=9]; 2997 -> 1095[label="",style="solid", color="blue", weight=3]; 2998[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1079 -> 2998[label="",style="solid", color="blue", weight=9]; 2998 -> 1096[label="",style="solid", color="blue", weight=3]; 2999[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1079 -> 2999[label="",style="solid", color="blue", weight=9]; 2999 -> 1097[label="",style="solid", color="blue", weight=3]; 3000[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1079 -> 3000[label="",style="solid", color="blue", weight=9]; 3000 -> 1098[label="",style="solid", color="blue", weight=3]; 3001[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1079 -> 3001[label="",style="solid", color="blue", weight=9]; 3001 -> 1099[label="",style="solid", color="blue", weight=3]; 3002[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1079 -> 3002[label="",style="solid", color="blue", weight=9]; 3002 -> 1100[label="",style="solid", color="blue", weight=3]; 3003[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1079 -> 3003[label="",style="solid", color="blue", weight=9]; 3003 -> 1101[label="",style="solid", color="blue", weight=3]; 3004[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1079 -> 3004[label="",style="solid", color="blue", weight=9]; 3004 -> 1102[label="",style="solid", color="blue", weight=3]; 3005[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1079 -> 3005[label="",style="solid", color="blue", weight=9]; 3005 -> 1103[label="",style="solid", color="blue", weight=3]; 1071[label="compare1 (vwx129,vwx130,vwx131) (vwx132,vwx133,vwx134) (vwx135 || vwx136)",fontsize=16,color="burlywood",shape="triangle"];3006[label="vwx135/False",fontsize=10,color="white",style="solid",shape="box"];1071 -> 3006[label="",style="solid", color="burlywood", weight=9]; 3006 -> 1104[label="",style="solid", color="burlywood", weight=3]; 3007[label="vwx135/True",fontsize=10,color="white",style="solid",shape="box"];1071 -> 3007[label="",style="solid", color="burlywood", weight=9]; 3007 -> 1105[label="",style="solid", color="burlywood", weight=3]; 942[label="GT",fontsize=16,color="green",shape="box"];943[label="GT",fontsize=16,color="green",shape="box"];944[label="GT",fontsize=16,color="green",shape="box"];945[label="primMulNat (Succ vwx40000) vwx3010",fontsize=16,color="burlywood",shape="box"];3008[label="vwx3010/Succ vwx30100",fontsize=10,color="white",style="solid",shape="box"];945 -> 3008[label="",style="solid", color="burlywood", weight=9]; 3008 -> 1106[label="",style="solid", color="burlywood", weight=3]; 3009[label="vwx3010/Zero",fontsize=10,color="white",style="solid",shape="box"];945 -> 3009[label="",style="solid", color="burlywood", weight=9]; 3009 -> 1107[label="",style="solid", color="burlywood", weight=3]; 946[label="primMulNat Zero vwx3010",fontsize=16,color="burlywood",shape="box"];3010[label="vwx3010/Succ vwx30100",fontsize=10,color="white",style="solid",shape="box"];946 -> 3010[label="",style="solid", color="burlywood", weight=9]; 3010 -> 1108[label="",style="solid", color="burlywood", weight=3]; 3011[label="vwx3010/Zero",fontsize=10,color="white",style="solid",shape="box"];946 -> 3011[label="",style="solid", color="burlywood", weight=9]; 3011 -> 1109[label="",style="solid", color="burlywood", weight=3]; 947[label="vwx3010",fontsize=16,color="green",shape="box"];948[label="vwx4000",fontsize=16,color="green",shape="box"];949[label="vwx4000",fontsize=16,color="green",shape="box"];950[label="vwx3010",fontsize=16,color="green",shape="box"];966[label="vwx64 == vwx66",fontsize=16,color="blue",shape="box"];3012[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];966 -> 3012[label="",style="solid", color="blue", weight=9]; 3012 -> 1110[label="",style="solid", color="blue", weight=3]; 3013[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];966 -> 3013[label="",style="solid", color="blue", weight=9]; 3013 -> 1111[label="",style="solid", color="blue", weight=3]; 3014[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];966 -> 3014[label="",style="solid", color="blue", weight=9]; 3014 -> 1112[label="",style="solid", color="blue", weight=3]; 3015[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];966 -> 3015[label="",style="solid", color="blue", weight=9]; 3015 -> 1113[label="",style="solid", color="blue", weight=3]; 3016[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];966 -> 3016[label="",style="solid", color="blue", weight=9]; 3016 -> 1114[label="",style="solid", color="blue", weight=3]; 3017[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];966 -> 3017[label="",style="solid", color="blue", weight=9]; 3017 -> 1115[label="",style="solid", color="blue", weight=3]; 3018[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];966 -> 3018[label="",style="solid", color="blue", weight=9]; 3018 -> 1116[label="",style="solid", color="blue", weight=3]; 3019[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];966 -> 3019[label="",style="solid", color="blue", weight=9]; 3019 -> 1117[label="",style="solid", color="blue", weight=3]; 3020[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];966 -> 3020[label="",style="solid", color="blue", weight=9]; 3020 -> 1118[label="",style="solid", color="blue", weight=3]; 3021[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];966 -> 3021[label="",style="solid", color="blue", weight=9]; 3021 -> 1119[label="",style="solid", color="blue", weight=3]; 3022[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];966 -> 3022[label="",style="solid", color="blue", weight=9]; 3022 -> 1120[label="",style="solid", color="blue", weight=3]; 3023[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];966 -> 3023[label="",style="solid", color="blue", weight=9]; 3023 -> 1121[label="",style="solid", color="blue", weight=3]; 3024[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];966 -> 3024[label="",style="solid", color="blue", weight=9]; 3024 -> 1122[label="",style="solid", color="blue", weight=3]; 3025[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];966 -> 3025[label="",style="solid", color="blue", weight=9]; 3025 -> 1123[label="",style="solid", color="blue", weight=3]; 967[label="vwx65 <= vwx67",fontsize=16,color="blue",shape="box"];3026[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];967 -> 3026[label="",style="solid", color="blue", weight=9]; 3026 -> 1124[label="",style="solid", color="blue", weight=3]; 3027[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];967 -> 3027[label="",style="solid", color="blue", weight=9]; 3027 -> 1125[label="",style="solid", color="blue", weight=3]; 3028[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];967 -> 3028[label="",style="solid", color="blue", weight=9]; 3028 -> 1126[label="",style="solid", color="blue", weight=3]; 3029[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];967 -> 3029[label="",style="solid", color="blue", weight=9]; 3029 -> 1127[label="",style="solid", color="blue", weight=3]; 3030[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];967 -> 3030[label="",style="solid", color="blue", weight=9]; 3030 -> 1128[label="",style="solid", color="blue", weight=3]; 3031[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];967 -> 3031[label="",style="solid", color="blue", weight=9]; 3031 -> 1129[label="",style="solid", color="blue", weight=3]; 3032[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];967 -> 3032[label="",style="solid", color="blue", weight=9]; 3032 -> 1130[label="",style="solid", color="blue", weight=3]; 3033[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];967 -> 3033[label="",style="solid", color="blue", weight=9]; 3033 -> 1131[label="",style="solid", color="blue", weight=3]; 3034[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];967 -> 3034[label="",style="solid", color="blue", weight=9]; 3034 -> 1132[label="",style="solid", color="blue", weight=3]; 3035[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];967 -> 3035[label="",style="solid", color="blue", weight=9]; 3035 -> 1133[label="",style="solid", color="blue", weight=3]; 3036[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];967 -> 3036[label="",style="solid", color="blue", weight=9]; 3036 -> 1134[label="",style="solid", color="blue", weight=3]; 3037[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];967 -> 3037[label="",style="solid", color="blue", weight=9]; 3037 -> 1135[label="",style="solid", color="blue", weight=3]; 3038[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];967 -> 3038[label="",style="solid", color="blue", weight=9]; 3038 -> 1136[label="",style="solid", color="blue", weight=3]; 3039[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];967 -> 3039[label="",style="solid", color="blue", weight=9]; 3039 -> 1137[label="",style="solid", color="blue", weight=3]; 968[label="vwx64 < vwx66",fontsize=16,color="black",shape="triangle"];968 -> 1138[label="",style="solid", color="black", weight=3]; 969[label="vwx64 < vwx66",fontsize=16,color="black",shape="triangle"];969 -> 1139[label="",style="solid", color="black", weight=3]; 970[label="vwx64 < vwx66",fontsize=16,color="black",shape="triangle"];970 -> 1140[label="",style="solid", color="black", weight=3]; 971[label="vwx64 < vwx66",fontsize=16,color="black",shape="triangle"];971 -> 1141[label="",style="solid", color="black", weight=3]; 972[label="vwx64 < vwx66",fontsize=16,color="black",shape="triangle"];972 -> 1142[label="",style="solid", color="black", weight=3]; 973[label="vwx64 < vwx66",fontsize=16,color="black",shape="triangle"];973 -> 1143[label="",style="solid", color="black", weight=3]; 974[label="vwx64 < vwx66",fontsize=16,color="black",shape="triangle"];974 -> 1144[label="",style="solid", color="black", weight=3]; 975[label="vwx64 < vwx66",fontsize=16,color="black",shape="triangle"];975 -> 1145[label="",style="solid", color="black", weight=3]; 976[label="vwx64 < vwx66",fontsize=16,color="black",shape="triangle"];976 -> 1146[label="",style="solid", color="black", weight=3]; 977[label="vwx64 < vwx66",fontsize=16,color="black",shape="triangle"];977 -> 1147[label="",style="solid", color="black", weight=3]; 978[label="vwx64 < vwx66",fontsize=16,color="black",shape="triangle"];978 -> 1148[label="",style="solid", color="black", weight=3]; 979[label="vwx64 < vwx66",fontsize=16,color="black",shape="triangle"];979 -> 1149[label="",style="solid", color="black", weight=3]; 980[label="vwx64 < vwx66",fontsize=16,color="black",shape="triangle"];980 -> 1150[label="",style="solid", color="black", weight=3]; 981[label="vwx64 < vwx66",fontsize=16,color="black",shape="triangle"];981 -> 1151[label="",style="solid", color="black", weight=3]; 982[label="compare1 (vwx114,vwx115) (vwx116,vwx117) (False || vwx119)",fontsize=16,color="black",shape="box"];982 -> 1152[label="",style="solid", color="black", weight=3]; 983[label="compare1 (vwx114,vwx115) (vwx116,vwx117) (True || vwx119)",fontsize=16,color="black",shape="box"];983 -> 1153[label="",style="solid", color="black", weight=3]; 984[label="True",fontsize=16,color="green",shape="box"];985[label="False",fontsize=16,color="green",shape="box"];986[label="False",fontsize=16,color="green",shape="box"];987[label="True",fontsize=16,color="green",shape="box"];988[label="True",fontsize=16,color="green",shape="box"];989[label="False",fontsize=16,color="green",shape="box"];990[label="False",fontsize=16,color="green",shape="box"];991[label="False",fontsize=16,color="green",shape="box"];992[label="True",fontsize=16,color="green",shape="box"];993[label="False",fontsize=16,color="green",shape="box"];994[label="False",fontsize=16,color="green",shape="box"];995[label="False",fontsize=16,color="green",shape="box"];996[label="True",fontsize=16,color="green",shape="box"];997 -> 399[label="",style="dashed", color="red", weight=0]; 997[label="primEqInt vwx3000 vwx4000",fontsize=16,color="magenta"];997 -> 1154[label="",style="dashed", color="magenta", weight=3]; 997 -> 1155[label="",style="dashed", color="magenta", weight=3]; 998[label="primEqChar (Char vwx3000) (Char vwx4000)",fontsize=16,color="black",shape="box"];998 -> 1156[label="",style="solid", color="black", weight=3]; 999 -> 693[label="",style="dashed", color="red", weight=0]; 999[label="vwx3000 == vwx4000 && vwx3001 == vwx4001",fontsize=16,color="magenta"];999 -> 1157[label="",style="dashed", color="magenta", weight=3]; 999 -> 1158[label="",style="dashed", color="magenta", weight=3]; 1000[label="False",fontsize=16,color="green",shape="box"];1001[label="False",fontsize=16,color="green",shape="box"];1002[label="True",fontsize=16,color="green",shape="box"];1003[label="vwx3000 == vwx4000",fontsize=16,color="blue",shape="box"];3040[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1003 -> 3040[label="",style="solid", color="blue", weight=9]; 3040 -> 1159[label="",style="solid", color="blue", weight=3]; 3041[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1003 -> 3041[label="",style="solid", color="blue", weight=9]; 3041 -> 1160[label="",style="solid", color="blue", weight=3]; 3042[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1003 -> 3042[label="",style="solid", color="blue", weight=9]; 3042 -> 1161[label="",style="solid", color="blue", weight=3]; 3043[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1003 -> 3043[label="",style="solid", color="blue", weight=9]; 3043 -> 1162[label="",style="solid", color="blue", weight=3]; 3044[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1003 -> 3044[label="",style="solid", color="blue", weight=9]; 3044 -> 1163[label="",style="solid", color="blue", weight=3]; 3045[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1003 -> 3045[label="",style="solid", color="blue", weight=9]; 3045 -> 1164[label="",style="solid", color="blue", weight=3]; 3046[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1003 -> 3046[label="",style="solid", color="blue", weight=9]; 3046 -> 1165[label="",style="solid", color="blue", weight=3]; 3047[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1003 -> 3047[label="",style="solid", color="blue", weight=9]; 3047 -> 1166[label="",style="solid", color="blue", weight=3]; 3048[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1003 -> 3048[label="",style="solid", color="blue", weight=9]; 3048 -> 1167[label="",style="solid", color="blue", weight=3]; 3049[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1003 -> 3049[label="",style="solid", color="blue", weight=9]; 3049 -> 1168[label="",style="solid", color="blue", weight=3]; 3050[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1003 -> 3050[label="",style="solid", color="blue", weight=9]; 3050 -> 1169[label="",style="solid", color="blue", weight=3]; 3051[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1003 -> 3051[label="",style="solid", color="blue", weight=9]; 3051 -> 1170[label="",style="solid", color="blue", weight=3]; 3052[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1003 -> 3052[label="",style="solid", color="blue", weight=9]; 3052 -> 1171[label="",style="solid", color="blue", weight=3]; 3053[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1003 -> 3053[label="",style="solid", color="blue", weight=9]; 3053 -> 1172[label="",style="solid", color="blue", weight=3]; 1004[label="False",fontsize=16,color="green",shape="box"];1005[label="False",fontsize=16,color="green",shape="box"];1006[label="vwx3000 == vwx4000",fontsize=16,color="blue",shape="box"];3054[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1006 -> 3054[label="",style="solid", color="blue", weight=9]; 3054 -> 1173[label="",style="solid", color="blue", weight=3]; 3055[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1006 -> 3055[label="",style="solid", color="blue", weight=9]; 3055 -> 1174[label="",style="solid", color="blue", weight=3]; 3056[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1006 -> 3056[label="",style="solid", color="blue", weight=9]; 3056 -> 1175[label="",style="solid", color="blue", weight=3]; 3057[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1006 -> 3057[label="",style="solid", color="blue", weight=9]; 3057 -> 1176[label="",style="solid", color="blue", weight=3]; 3058[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1006 -> 3058[label="",style="solid", color="blue", weight=9]; 3058 -> 1177[label="",style="solid", color="blue", weight=3]; 3059[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1006 -> 3059[label="",style="solid", color="blue", weight=9]; 3059 -> 1178[label="",style="solid", color="blue", weight=3]; 3060[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1006 -> 3060[label="",style="solid", color="blue", weight=9]; 3060 -> 1179[label="",style="solid", color="blue", weight=3]; 3061[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1006 -> 3061[label="",style="solid", color="blue", weight=9]; 3061 -> 1180[label="",style="solid", color="blue", weight=3]; 3062[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1006 -> 3062[label="",style="solid", color="blue", weight=9]; 3062 -> 1181[label="",style="solid", color="blue", weight=3]; 3063[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1006 -> 3063[label="",style="solid", color="blue", weight=9]; 3063 -> 1182[label="",style="solid", color="blue", weight=3]; 3064[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1006 -> 3064[label="",style="solid", color="blue", weight=9]; 3064 -> 1183[label="",style="solid", color="blue", weight=3]; 3065[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1006 -> 3065[label="",style="solid", color="blue", weight=9]; 3065 -> 1184[label="",style="solid", color="blue", weight=3]; 3066[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1006 -> 3066[label="",style="solid", color="blue", weight=9]; 3066 -> 1185[label="",style="solid", color="blue", weight=3]; 3067[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1006 -> 3067[label="",style="solid", color="blue", weight=9]; 3067 -> 1186[label="",style="solid", color="blue", weight=3]; 1007[label="True",fontsize=16,color="green",shape="box"];1008 -> 693[label="",style="dashed", color="red", weight=0]; 1008[label="vwx3000 == vwx4000 && vwx3001 == vwx4001",fontsize=16,color="magenta"];1008 -> 1187[label="",style="dashed", color="magenta", weight=3]; 1008 -> 1188[label="",style="dashed", color="magenta", weight=3]; 1009 -> 693[label="",style="dashed", color="red", weight=0]; 1009[label="vwx3000 == vwx4000 && vwx3001 == vwx4001",fontsize=16,color="magenta"];1009 -> 1189[label="",style="dashed", color="magenta", weight=3]; 1009 -> 1190[label="",style="dashed", color="magenta", weight=3]; 1010[label="True",fontsize=16,color="green",shape="box"];1011[label="False",fontsize=16,color="green",shape="box"];1012[label="False",fontsize=16,color="green",shape="box"];1013[label="vwx3000 == vwx4000",fontsize=16,color="blue",shape="box"];3068[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1013 -> 3068[label="",style="solid", color="blue", weight=9]; 3068 -> 1191[label="",style="solid", color="blue", weight=3]; 3069[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1013 -> 3069[label="",style="solid", color="blue", weight=9]; 3069 -> 1192[label="",style="solid", color="blue", weight=3]; 3070[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1013 -> 3070[label="",style="solid", color="blue", weight=9]; 3070 -> 1193[label="",style="solid", color="blue", weight=3]; 3071[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1013 -> 3071[label="",style="solid", color="blue", weight=9]; 3071 -> 1194[label="",style="solid", color="blue", weight=3]; 3072[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1013 -> 3072[label="",style="solid", color="blue", weight=9]; 3072 -> 1195[label="",style="solid", color="blue", weight=3]; 3073[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1013 -> 3073[label="",style="solid", color="blue", weight=9]; 3073 -> 1196[label="",style="solid", color="blue", weight=3]; 3074[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1013 -> 3074[label="",style="solid", color="blue", weight=9]; 3074 -> 1197[label="",style="solid", color="blue", weight=3]; 3075[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1013 -> 3075[label="",style="solid", color="blue", weight=9]; 3075 -> 1198[label="",style="solid", color="blue", weight=3]; 3076[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1013 -> 3076[label="",style="solid", color="blue", weight=9]; 3076 -> 1199[label="",style="solid", color="blue", weight=3]; 3077[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1013 -> 3077[label="",style="solid", color="blue", weight=9]; 3077 -> 1200[label="",style="solid", color="blue", weight=3]; 3078[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1013 -> 3078[label="",style="solid", color="blue", weight=9]; 3078 -> 1201[label="",style="solid", color="blue", weight=3]; 3079[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1013 -> 3079[label="",style="solid", color="blue", weight=9]; 3079 -> 1202[label="",style="solid", color="blue", weight=3]; 3080[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1013 -> 3080[label="",style="solid", color="blue", weight=9]; 3080 -> 1203[label="",style="solid", color="blue", weight=3]; 3081[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1013 -> 3081[label="",style="solid", color="blue", weight=9]; 3081 -> 1204[label="",style="solid", color="blue", weight=3]; 1014[label="primEqDouble (Double vwx3000 vwx3001) (Double vwx4000 vwx4001)",fontsize=16,color="black",shape="box"];1014 -> 1205[label="",style="solid", color="black", weight=3]; 1015[label="primEqInt (Pos (Succ vwx30000)) vwx400",fontsize=16,color="burlywood",shape="box"];3082[label="vwx400/Pos vwx4000",fontsize=10,color="white",style="solid",shape="box"];1015 -> 3082[label="",style="solid", color="burlywood", weight=9]; 3082 -> 1206[label="",style="solid", color="burlywood", weight=3]; 3083[label="vwx400/Neg vwx4000",fontsize=10,color="white",style="solid",shape="box"];1015 -> 3083[label="",style="solid", color="burlywood", weight=9]; 3083 -> 1207[label="",style="solid", color="burlywood", weight=3]; 1016[label="primEqInt (Pos Zero) vwx400",fontsize=16,color="burlywood",shape="box"];3084[label="vwx400/Pos vwx4000",fontsize=10,color="white",style="solid",shape="box"];1016 -> 3084[label="",style="solid", color="burlywood", weight=9]; 3084 -> 1208[label="",style="solid", color="burlywood", weight=3]; 3085[label="vwx400/Neg vwx4000",fontsize=10,color="white",style="solid",shape="box"];1016 -> 3085[label="",style="solid", color="burlywood", weight=9]; 3085 -> 1209[label="",style="solid", color="burlywood", weight=3]; 1017[label="primEqInt (Neg (Succ vwx30000)) vwx400",fontsize=16,color="burlywood",shape="box"];3086[label="vwx400/Pos vwx4000",fontsize=10,color="white",style="solid",shape="box"];1017 -> 3086[label="",style="solid", color="burlywood", weight=9]; 3086 -> 1210[label="",style="solid", color="burlywood", weight=3]; 3087[label="vwx400/Neg vwx4000",fontsize=10,color="white",style="solid",shape="box"];1017 -> 3087[label="",style="solid", color="burlywood", weight=9]; 3087 -> 1211[label="",style="solid", color="burlywood", weight=3]; 1018[label="primEqInt (Neg Zero) vwx400",fontsize=16,color="burlywood",shape="box"];3088[label="vwx400/Pos vwx4000",fontsize=10,color="white",style="solid",shape="box"];1018 -> 3088[label="",style="solid", color="burlywood", weight=9]; 3088 -> 1212[label="",style="solid", color="burlywood", weight=3]; 3089[label="vwx400/Neg vwx4000",fontsize=10,color="white",style="solid",shape="box"];1018 -> 3089[label="",style="solid", color="burlywood", weight=9]; 3089 -> 1213[label="",style="solid", color="burlywood", weight=3]; 1019 -> 693[label="",style="dashed", color="red", weight=0]; 1019[label="vwx3000 == vwx4000 && vwx3001 == vwx4001 && vwx3002 == vwx4002",fontsize=16,color="magenta"];1019 -> 1214[label="",style="dashed", color="magenta", weight=3]; 1019 -> 1215[label="",style="dashed", color="magenta", weight=3]; 1020[label="primEqFloat (Float vwx3000 vwx3001) (Float vwx4000 vwx4001)",fontsize=16,color="black",shape="box"];1020 -> 1216[label="",style="solid", color="black", weight=3]; 1021[label="vwx26 <= vwx27",fontsize=16,color="black",shape="triangle"];1021 -> 1217[label="",style="solid", color="black", weight=3]; 1022[label="vwx26 <= vwx27",fontsize=16,color="black",shape="triangle"];1022 -> 1218[label="",style="solid", color="black", weight=3]; 1023[label="vwx26 <= vwx27",fontsize=16,color="burlywood",shape="triangle"];3090[label="vwx26/(vwx260,vwx261)",fontsize=10,color="white",style="solid",shape="box"];1023 -> 3090[label="",style="solid", color="burlywood", weight=9]; 3090 -> 1219[label="",style="solid", color="burlywood", weight=3]; 1024[label="vwx26 <= vwx27",fontsize=16,color="black",shape="triangle"];1024 -> 1220[label="",style="solid", color="black", weight=3]; 1025[label="vwx26 <= vwx27",fontsize=16,color="black",shape="triangle"];1025 -> 1221[label="",style="solid", color="black", weight=3]; 1026[label="vwx26 <= vwx27",fontsize=16,color="burlywood",shape="triangle"];3091[label="vwx26/Nothing",fontsize=10,color="white",style="solid",shape="box"];1026 -> 3091[label="",style="solid", color="burlywood", weight=9]; 3091 -> 1222[label="",style="solid", color="burlywood", weight=3]; 3092[label="vwx26/Just vwx260",fontsize=10,color="white",style="solid",shape="box"];1026 -> 3092[label="",style="solid", color="burlywood", weight=9]; 3092 -> 1223[label="",style="solid", color="burlywood", weight=3]; 1027[label="vwx26 <= vwx27",fontsize=16,color="burlywood",shape="triangle"];3093[label="vwx26/False",fontsize=10,color="white",style="solid",shape="box"];1027 -> 3093[label="",style="solid", color="burlywood", weight=9]; 3093 -> 1224[label="",style="solid", color="burlywood", weight=3]; 3094[label="vwx26/True",fontsize=10,color="white",style="solid",shape="box"];1027 -> 3094[label="",style="solid", color="burlywood", weight=9]; 3094 -> 1225[label="",style="solid", color="burlywood", weight=3]; 1028[label="vwx26 <= vwx27",fontsize=16,color="black",shape="triangle"];1028 -> 1226[label="",style="solid", color="black", weight=3]; 1029[label="vwx26 <= vwx27",fontsize=16,color="burlywood",shape="triangle"];3095[label="vwx26/Left vwx260",fontsize=10,color="white",style="solid",shape="box"];1029 -> 3095[label="",style="solid", color="burlywood", weight=9]; 3095 -> 1227[label="",style="solid", color="burlywood", weight=3]; 3096[label="vwx26/Right vwx260",fontsize=10,color="white",style="solid",shape="box"];1029 -> 3096[label="",style="solid", color="burlywood", weight=9]; 3096 -> 1228[label="",style="solid", color="burlywood", weight=3]; 1030[label="vwx26 <= vwx27",fontsize=16,color="burlywood",shape="triangle"];3097[label="vwx26/(vwx260,vwx261,vwx262)",fontsize=10,color="white",style="solid",shape="box"];1030 -> 3097[label="",style="solid", color="burlywood", weight=9]; 3097 -> 1229[label="",style="solid", color="burlywood", weight=3]; 1031[label="vwx26 <= vwx27",fontsize=16,color="black",shape="triangle"];1031 -> 1230[label="",style="solid", color="black", weight=3]; 1032[label="vwx26 <= vwx27",fontsize=16,color="burlywood",shape="triangle"];3098[label="vwx26/LT",fontsize=10,color="white",style="solid",shape="box"];1032 -> 3098[label="",style="solid", color="burlywood", weight=9]; 3098 -> 1231[label="",style="solid", color="burlywood", weight=3]; 3099[label="vwx26/EQ",fontsize=10,color="white",style="solid",shape="box"];1032 -> 3099[label="",style="solid", color="burlywood", weight=9]; 3099 -> 1232[label="",style="solid", color="burlywood", weight=3]; 3100[label="vwx26/GT",fontsize=10,color="white",style="solid",shape="box"];1032 -> 3100[label="",style="solid", color="burlywood", weight=9]; 3100 -> 1233[label="",style="solid", color="burlywood", weight=3]; 1033[label="vwx26 <= vwx27",fontsize=16,color="black",shape="triangle"];1033 -> 1234[label="",style="solid", color="black", weight=3]; 1034[label="vwx26 <= vwx27",fontsize=16,color="black",shape="triangle"];1034 -> 1235[label="",style="solid", color="black", weight=3]; 1035[label="compare0 (Just vwx87) (Just vwx88) otherwise",fontsize=16,color="black",shape="box"];1035 -> 1236[label="",style="solid", color="black", weight=3]; 1036[label="LT",fontsize=16,color="green",shape="box"];1037 -> 1021[label="",style="dashed", color="red", weight=0]; 1037[label="vwx33 <= vwx34",fontsize=16,color="magenta"];1037 -> 1237[label="",style="dashed", color="magenta", weight=3]; 1037 -> 1238[label="",style="dashed", color="magenta", weight=3]; 1038 -> 1022[label="",style="dashed", color="red", weight=0]; 1038[label="vwx33 <= vwx34",fontsize=16,color="magenta"];1038 -> 1239[label="",style="dashed", color="magenta", weight=3]; 1038 -> 1240[label="",style="dashed", color="magenta", weight=3]; 1039 -> 1023[label="",style="dashed", color="red", weight=0]; 1039[label="vwx33 <= vwx34",fontsize=16,color="magenta"];1039 -> 1241[label="",style="dashed", color="magenta", weight=3]; 1039 -> 1242[label="",style="dashed", color="magenta", weight=3]; 1040 -> 1024[label="",style="dashed", color="red", weight=0]; 1040[label="vwx33 <= vwx34",fontsize=16,color="magenta"];1040 -> 1243[label="",style="dashed", color="magenta", weight=3]; 1040 -> 1244[label="",style="dashed", color="magenta", weight=3]; 1041 -> 1025[label="",style="dashed", color="red", weight=0]; 1041[label="vwx33 <= vwx34",fontsize=16,color="magenta"];1041 -> 1245[label="",style="dashed", color="magenta", weight=3]; 1041 -> 1246[label="",style="dashed", color="magenta", weight=3]; 1042 -> 1026[label="",style="dashed", color="red", weight=0]; 1042[label="vwx33 <= vwx34",fontsize=16,color="magenta"];1042 -> 1247[label="",style="dashed", color="magenta", weight=3]; 1042 -> 1248[label="",style="dashed", color="magenta", weight=3]; 1043 -> 1027[label="",style="dashed", color="red", weight=0]; 1043[label="vwx33 <= vwx34",fontsize=16,color="magenta"];1043 -> 1249[label="",style="dashed", color="magenta", weight=3]; 1043 -> 1250[label="",style="dashed", color="magenta", weight=3]; 1044 -> 1028[label="",style="dashed", color="red", weight=0]; 1044[label="vwx33 <= vwx34",fontsize=16,color="magenta"];1044 -> 1251[label="",style="dashed", color="magenta", weight=3]; 1044 -> 1252[label="",style="dashed", color="magenta", weight=3]; 1045 -> 1029[label="",style="dashed", color="red", weight=0]; 1045[label="vwx33 <= vwx34",fontsize=16,color="magenta"];1045 -> 1253[label="",style="dashed", color="magenta", weight=3]; 1045 -> 1254[label="",style="dashed", color="magenta", weight=3]; 1046 -> 1030[label="",style="dashed", color="red", weight=0]; 1046[label="vwx33 <= vwx34",fontsize=16,color="magenta"];1046 -> 1255[label="",style="dashed", color="magenta", weight=3]; 1046 -> 1256[label="",style="dashed", color="magenta", weight=3]; 1047 -> 1031[label="",style="dashed", color="red", weight=0]; 1047[label="vwx33 <= vwx34",fontsize=16,color="magenta"];1047 -> 1257[label="",style="dashed", color="magenta", weight=3]; 1047 -> 1258[label="",style="dashed", color="magenta", weight=3]; 1048 -> 1032[label="",style="dashed", color="red", weight=0]; 1048[label="vwx33 <= vwx34",fontsize=16,color="magenta"];1048 -> 1259[label="",style="dashed", color="magenta", weight=3]; 1048 -> 1260[label="",style="dashed", color="magenta", weight=3]; 1049 -> 1033[label="",style="dashed", color="red", weight=0]; 1049[label="vwx33 <= vwx34",fontsize=16,color="magenta"];1049 -> 1261[label="",style="dashed", color="magenta", weight=3]; 1049 -> 1262[label="",style="dashed", color="magenta", weight=3]; 1050 -> 1034[label="",style="dashed", color="red", weight=0]; 1050[label="vwx33 <= vwx34",fontsize=16,color="magenta"];1050 -> 1263[label="",style="dashed", color="magenta", weight=3]; 1050 -> 1264[label="",style="dashed", color="magenta", weight=3]; 1051[label="compare0 (Left vwx94) (Left vwx95) otherwise",fontsize=16,color="black",shape="box"];1051 -> 1265[label="",style="solid", color="black", weight=3]; 1052[label="LT",fontsize=16,color="green",shape="box"];1053 -> 1021[label="",style="dashed", color="red", weight=0]; 1053[label="vwx40 <= vwx41",fontsize=16,color="magenta"];1053 -> 1266[label="",style="dashed", color="magenta", weight=3]; 1053 -> 1267[label="",style="dashed", color="magenta", weight=3]; 1054 -> 1022[label="",style="dashed", color="red", weight=0]; 1054[label="vwx40 <= vwx41",fontsize=16,color="magenta"];1054 -> 1268[label="",style="dashed", color="magenta", weight=3]; 1054 -> 1269[label="",style="dashed", color="magenta", weight=3]; 1055 -> 1023[label="",style="dashed", color="red", weight=0]; 1055[label="vwx40 <= vwx41",fontsize=16,color="magenta"];1055 -> 1270[label="",style="dashed", color="magenta", weight=3]; 1055 -> 1271[label="",style="dashed", color="magenta", weight=3]; 1056 -> 1024[label="",style="dashed", color="red", weight=0]; 1056[label="vwx40 <= vwx41",fontsize=16,color="magenta"];1056 -> 1272[label="",style="dashed", color="magenta", weight=3]; 1056 -> 1273[label="",style="dashed", color="magenta", weight=3]; 1057 -> 1025[label="",style="dashed", color="red", weight=0]; 1057[label="vwx40 <= vwx41",fontsize=16,color="magenta"];1057 -> 1274[label="",style="dashed", color="magenta", weight=3]; 1057 -> 1275[label="",style="dashed", color="magenta", weight=3]; 1058 -> 1026[label="",style="dashed", color="red", weight=0]; 1058[label="vwx40 <= vwx41",fontsize=16,color="magenta"];1058 -> 1276[label="",style="dashed", color="magenta", weight=3]; 1058 -> 1277[label="",style="dashed", color="magenta", weight=3]; 1059 -> 1027[label="",style="dashed", color="red", weight=0]; 1059[label="vwx40 <= vwx41",fontsize=16,color="magenta"];1059 -> 1278[label="",style="dashed", color="magenta", weight=3]; 1059 -> 1279[label="",style="dashed", color="magenta", weight=3]; 1060 -> 1028[label="",style="dashed", color="red", weight=0]; 1060[label="vwx40 <= vwx41",fontsize=16,color="magenta"];1060 -> 1280[label="",style="dashed", color="magenta", weight=3]; 1060 -> 1281[label="",style="dashed", color="magenta", weight=3]; 1061 -> 1029[label="",style="dashed", color="red", weight=0]; 1061[label="vwx40 <= vwx41",fontsize=16,color="magenta"];1061 -> 1282[label="",style="dashed", color="magenta", weight=3]; 1061 -> 1283[label="",style="dashed", color="magenta", weight=3]; 1062 -> 1030[label="",style="dashed", color="red", weight=0]; 1062[label="vwx40 <= vwx41",fontsize=16,color="magenta"];1062 -> 1284[label="",style="dashed", color="magenta", weight=3]; 1062 -> 1285[label="",style="dashed", color="magenta", weight=3]; 1063 -> 1031[label="",style="dashed", color="red", weight=0]; 1063[label="vwx40 <= vwx41",fontsize=16,color="magenta"];1063 -> 1286[label="",style="dashed", color="magenta", weight=3]; 1063 -> 1287[label="",style="dashed", color="magenta", weight=3]; 1064 -> 1032[label="",style="dashed", color="red", weight=0]; 1064[label="vwx40 <= vwx41",fontsize=16,color="magenta"];1064 -> 1288[label="",style="dashed", color="magenta", weight=3]; 1064 -> 1289[label="",style="dashed", color="magenta", weight=3]; 1065 -> 1033[label="",style="dashed", color="red", weight=0]; 1065[label="vwx40 <= vwx41",fontsize=16,color="magenta"];1065 -> 1290[label="",style="dashed", color="magenta", weight=3]; 1065 -> 1291[label="",style="dashed", color="magenta", weight=3]; 1066 -> 1034[label="",style="dashed", color="red", weight=0]; 1066[label="vwx40 <= vwx41",fontsize=16,color="magenta"];1066 -> 1292[label="",style="dashed", color="magenta", weight=3]; 1066 -> 1293[label="",style="dashed", color="magenta", weight=3]; 1067[label="compare0 (Right vwx102) (Right vwx103) otherwise",fontsize=16,color="black",shape="box"];1067 -> 1294[label="",style="solid", color="black", weight=3]; 1068[label="LT",fontsize=16,color="green",shape="box"];1088[label="vwx51 == vwx54",fontsize=16,color="blue",shape="box"];3101[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1088 -> 3101[label="",style="solid", color="blue", weight=9]; 3101 -> 1295[label="",style="solid", color="blue", weight=3]; 3102[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1088 -> 3102[label="",style="solid", color="blue", weight=9]; 3102 -> 1296[label="",style="solid", color="blue", weight=3]; 3103[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1088 -> 3103[label="",style="solid", color="blue", weight=9]; 3103 -> 1297[label="",style="solid", color="blue", weight=3]; 3104[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1088 -> 3104[label="",style="solid", color="blue", weight=9]; 3104 -> 1298[label="",style="solid", color="blue", weight=3]; 3105[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1088 -> 3105[label="",style="solid", color="blue", weight=9]; 3105 -> 1299[label="",style="solid", color="blue", weight=3]; 3106[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1088 -> 3106[label="",style="solid", color="blue", weight=9]; 3106 -> 1300[label="",style="solid", color="blue", weight=3]; 3107[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1088 -> 3107[label="",style="solid", color="blue", weight=9]; 3107 -> 1301[label="",style="solid", color="blue", weight=3]; 3108[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1088 -> 3108[label="",style="solid", color="blue", weight=9]; 3108 -> 1302[label="",style="solid", color="blue", weight=3]; 3109[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1088 -> 3109[label="",style="solid", color="blue", weight=9]; 3109 -> 1303[label="",style="solid", color="blue", weight=3]; 3110[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1088 -> 3110[label="",style="solid", color="blue", weight=9]; 3110 -> 1304[label="",style="solid", color="blue", weight=3]; 3111[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1088 -> 3111[label="",style="solid", color="blue", weight=9]; 3111 -> 1305[label="",style="solid", color="blue", weight=3]; 3112[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1088 -> 3112[label="",style="solid", color="blue", weight=9]; 3112 -> 1306[label="",style="solid", color="blue", weight=3]; 3113[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1088 -> 3113[label="",style="solid", color="blue", weight=9]; 3113 -> 1307[label="",style="solid", color="blue", weight=3]; 3114[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1088 -> 3114[label="",style="solid", color="blue", weight=9]; 3114 -> 1308[label="",style="solid", color="blue", weight=3]; 1089 -> 1665[label="",style="dashed", color="red", weight=0]; 1089[label="vwx52 < vwx55 || vwx52 == vwx55 && vwx53 <= vwx56",fontsize=16,color="magenta"];1089 -> 1666[label="",style="dashed", color="magenta", weight=3]; 1089 -> 1667[label="",style="dashed", color="magenta", weight=3]; 1090 -> 968[label="",style="dashed", color="red", weight=0]; 1090[label="vwx51 < vwx54",fontsize=16,color="magenta"];1090 -> 1311[label="",style="dashed", color="magenta", weight=3]; 1090 -> 1312[label="",style="dashed", color="magenta", weight=3]; 1091 -> 969[label="",style="dashed", color="red", weight=0]; 1091[label="vwx51 < vwx54",fontsize=16,color="magenta"];1091 -> 1313[label="",style="dashed", color="magenta", weight=3]; 1091 -> 1314[label="",style="dashed", color="magenta", weight=3]; 1092 -> 970[label="",style="dashed", color="red", weight=0]; 1092[label="vwx51 < vwx54",fontsize=16,color="magenta"];1092 -> 1315[label="",style="dashed", color="magenta", weight=3]; 1092 -> 1316[label="",style="dashed", color="magenta", weight=3]; 1093 -> 971[label="",style="dashed", color="red", weight=0]; 1093[label="vwx51 < vwx54",fontsize=16,color="magenta"];1093 -> 1317[label="",style="dashed", color="magenta", weight=3]; 1093 -> 1318[label="",style="dashed", color="magenta", weight=3]; 1094 -> 972[label="",style="dashed", color="red", weight=0]; 1094[label="vwx51 < vwx54",fontsize=16,color="magenta"];1094 -> 1319[label="",style="dashed", color="magenta", weight=3]; 1094 -> 1320[label="",style="dashed", color="magenta", weight=3]; 1095 -> 973[label="",style="dashed", color="red", weight=0]; 1095[label="vwx51 < vwx54",fontsize=16,color="magenta"];1095 -> 1321[label="",style="dashed", color="magenta", weight=3]; 1095 -> 1322[label="",style="dashed", color="magenta", weight=3]; 1096 -> 974[label="",style="dashed", color="red", weight=0]; 1096[label="vwx51 < vwx54",fontsize=16,color="magenta"];1096 -> 1323[label="",style="dashed", color="magenta", weight=3]; 1096 -> 1324[label="",style="dashed", color="magenta", weight=3]; 1097 -> 975[label="",style="dashed", color="red", weight=0]; 1097[label="vwx51 < vwx54",fontsize=16,color="magenta"];1097 -> 1325[label="",style="dashed", color="magenta", weight=3]; 1097 -> 1326[label="",style="dashed", color="magenta", weight=3]; 1098 -> 976[label="",style="dashed", color="red", weight=0]; 1098[label="vwx51 < vwx54",fontsize=16,color="magenta"];1098 -> 1327[label="",style="dashed", color="magenta", weight=3]; 1098 -> 1328[label="",style="dashed", color="magenta", weight=3]; 1099 -> 977[label="",style="dashed", color="red", weight=0]; 1099[label="vwx51 < vwx54",fontsize=16,color="magenta"];1099 -> 1329[label="",style="dashed", color="magenta", weight=3]; 1099 -> 1330[label="",style="dashed", color="magenta", weight=3]; 1100 -> 978[label="",style="dashed", color="red", weight=0]; 1100[label="vwx51 < vwx54",fontsize=16,color="magenta"];1100 -> 1331[label="",style="dashed", color="magenta", weight=3]; 1100 -> 1332[label="",style="dashed", color="magenta", weight=3]; 1101 -> 979[label="",style="dashed", color="red", weight=0]; 1101[label="vwx51 < vwx54",fontsize=16,color="magenta"];1101 -> 1333[label="",style="dashed", color="magenta", weight=3]; 1101 -> 1334[label="",style="dashed", color="magenta", weight=3]; 1102 -> 980[label="",style="dashed", color="red", weight=0]; 1102[label="vwx51 < vwx54",fontsize=16,color="magenta"];1102 -> 1335[label="",style="dashed", color="magenta", weight=3]; 1102 -> 1336[label="",style="dashed", color="magenta", weight=3]; 1103 -> 981[label="",style="dashed", color="red", weight=0]; 1103[label="vwx51 < vwx54",fontsize=16,color="magenta"];1103 -> 1337[label="",style="dashed", color="magenta", weight=3]; 1103 -> 1338[label="",style="dashed", color="magenta", weight=3]; 1104[label="compare1 (vwx129,vwx130,vwx131) (vwx132,vwx133,vwx134) (False || vwx136)",fontsize=16,color="black",shape="box"];1104 -> 1339[label="",style="solid", color="black", weight=3]; 1105[label="compare1 (vwx129,vwx130,vwx131) (vwx132,vwx133,vwx134) (True || vwx136)",fontsize=16,color="black",shape="box"];1105 -> 1340[label="",style="solid", color="black", weight=3]; 1106[label="primMulNat (Succ vwx40000) (Succ vwx30100)",fontsize=16,color="black",shape="box"];1106 -> 1341[label="",style="solid", color="black", weight=3]; 1107[label="primMulNat (Succ vwx40000) Zero",fontsize=16,color="black",shape="box"];1107 -> 1342[label="",style="solid", color="black", weight=3]; 1108[label="primMulNat Zero (Succ vwx30100)",fontsize=16,color="black",shape="box"];1108 -> 1343[label="",style="solid", color="black", weight=3]; 1109[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];1109 -> 1344[label="",style="solid", color="black", weight=3]; 1110 -> 268[label="",style="dashed", color="red", weight=0]; 1110[label="vwx64 == vwx66",fontsize=16,color="magenta"];1110 -> 1345[label="",style="dashed", color="magenta", weight=3]; 1110 -> 1346[label="",style="dashed", color="magenta", weight=3]; 1111 -> 263[label="",style="dashed", color="red", weight=0]; 1111[label="vwx64 == vwx66",fontsize=16,color="magenta"];1111 -> 1347[label="",style="dashed", color="magenta", weight=3]; 1111 -> 1348[label="",style="dashed", color="magenta", weight=3]; 1112 -> 269[label="",style="dashed", color="red", weight=0]; 1112[label="vwx64 == vwx66",fontsize=16,color="magenta"];1112 -> 1349[label="",style="dashed", color="magenta", weight=3]; 1112 -> 1350[label="",style="dashed", color="magenta", weight=3]; 1113 -> 265[label="",style="dashed", color="red", weight=0]; 1113[label="vwx64 == vwx66",fontsize=16,color="magenta"];1113 -> 1351[label="",style="dashed", color="magenta", weight=3]; 1113 -> 1352[label="",style="dashed", color="magenta", weight=3]; 1114 -> 274[label="",style="dashed", color="red", weight=0]; 1114[label="vwx64 == vwx66",fontsize=16,color="magenta"];1114 -> 1353[label="",style="dashed", color="magenta", weight=3]; 1114 -> 1354[label="",style="dashed", color="magenta", weight=3]; 1115 -> 270[label="",style="dashed", color="red", weight=0]; 1115[label="vwx64 == vwx66",fontsize=16,color="magenta"];1115 -> 1355[label="",style="dashed", color="magenta", weight=3]; 1115 -> 1356[label="",style="dashed", color="magenta", weight=3]; 1116 -> 261[label="",style="dashed", color="red", weight=0]; 1116[label="vwx64 == vwx66",fontsize=16,color="magenta"];1116 -> 1357[label="",style="dashed", color="magenta", weight=3]; 1116 -> 1358[label="",style="dashed", color="magenta", weight=3]; 1117 -> 267[label="",style="dashed", color="red", weight=0]; 1117[label="vwx64 == vwx66",fontsize=16,color="magenta"];1117 -> 1359[label="",style="dashed", color="magenta", weight=3]; 1117 -> 1360[label="",style="dashed", color="magenta", weight=3]; 1118 -> 266[label="",style="dashed", color="red", weight=0]; 1118[label="vwx64 == vwx66",fontsize=16,color="magenta"];1118 -> 1361[label="",style="dashed", color="magenta", weight=3]; 1118 -> 1362[label="",style="dashed", color="magenta", weight=3]; 1119 -> 273[label="",style="dashed", color="red", weight=0]; 1119[label="vwx64 == vwx66",fontsize=16,color="magenta"];1119 -> 1363[label="",style="dashed", color="magenta", weight=3]; 1119 -> 1364[label="",style="dashed", color="magenta", weight=3]; 1120 -> 264[label="",style="dashed", color="red", weight=0]; 1120[label="vwx64 == vwx66",fontsize=16,color="magenta"];1120 -> 1365[label="",style="dashed", color="magenta", weight=3]; 1120 -> 1366[label="",style="dashed", color="magenta", weight=3]; 1121 -> 262[label="",style="dashed", color="red", weight=0]; 1121[label="vwx64 == vwx66",fontsize=16,color="magenta"];1121 -> 1367[label="",style="dashed", color="magenta", weight=3]; 1121 -> 1368[label="",style="dashed", color="magenta", weight=3]; 1122 -> 272[label="",style="dashed", color="red", weight=0]; 1122[label="vwx64 == vwx66",fontsize=16,color="magenta"];1122 -> 1369[label="",style="dashed", color="magenta", weight=3]; 1122 -> 1370[label="",style="dashed", color="magenta", weight=3]; 1123 -> 271[label="",style="dashed", color="red", weight=0]; 1123[label="vwx64 == vwx66",fontsize=16,color="magenta"];1123 -> 1371[label="",style="dashed", color="magenta", weight=3]; 1123 -> 1372[label="",style="dashed", color="magenta", weight=3]; 1124 -> 1021[label="",style="dashed", color="red", weight=0]; 1124[label="vwx65 <= vwx67",fontsize=16,color="magenta"];1124 -> 1373[label="",style="dashed", color="magenta", weight=3]; 1124 -> 1374[label="",style="dashed", color="magenta", weight=3]; 1125 -> 1022[label="",style="dashed", color="red", weight=0]; 1125[label="vwx65 <= vwx67",fontsize=16,color="magenta"];1125 -> 1375[label="",style="dashed", color="magenta", weight=3]; 1125 -> 1376[label="",style="dashed", color="magenta", weight=3]; 1126 -> 1023[label="",style="dashed", color="red", weight=0]; 1126[label="vwx65 <= vwx67",fontsize=16,color="magenta"];1126 -> 1377[label="",style="dashed", color="magenta", weight=3]; 1126 -> 1378[label="",style="dashed", color="magenta", weight=3]; 1127 -> 1024[label="",style="dashed", color="red", weight=0]; 1127[label="vwx65 <= vwx67",fontsize=16,color="magenta"];1127 -> 1379[label="",style="dashed", color="magenta", weight=3]; 1127 -> 1380[label="",style="dashed", color="magenta", weight=3]; 1128 -> 1025[label="",style="dashed", color="red", weight=0]; 1128[label="vwx65 <= vwx67",fontsize=16,color="magenta"];1128 -> 1381[label="",style="dashed", color="magenta", weight=3]; 1128 -> 1382[label="",style="dashed", color="magenta", weight=3]; 1129 -> 1026[label="",style="dashed", color="red", weight=0]; 1129[label="vwx65 <= vwx67",fontsize=16,color="magenta"];1129 -> 1383[label="",style="dashed", color="magenta", weight=3]; 1129 -> 1384[label="",style="dashed", color="magenta", weight=3]; 1130 -> 1027[label="",style="dashed", color="red", weight=0]; 1130[label="vwx65 <= vwx67",fontsize=16,color="magenta"];1130 -> 1385[label="",style="dashed", color="magenta", weight=3]; 1130 -> 1386[label="",style="dashed", color="magenta", weight=3]; 1131 -> 1028[label="",style="dashed", color="red", weight=0]; 1131[label="vwx65 <= vwx67",fontsize=16,color="magenta"];1131 -> 1387[label="",style="dashed", color="magenta", weight=3]; 1131 -> 1388[label="",style="dashed", color="magenta", weight=3]; 1132 -> 1029[label="",style="dashed", color="red", weight=0]; 1132[label="vwx65 <= vwx67",fontsize=16,color="magenta"];1132 -> 1389[label="",style="dashed", color="magenta", weight=3]; 1132 -> 1390[label="",style="dashed", color="magenta", weight=3]; 1133 -> 1030[label="",style="dashed", color="red", weight=0]; 1133[label="vwx65 <= vwx67",fontsize=16,color="magenta"];1133 -> 1391[label="",style="dashed", color="magenta", weight=3]; 1133 -> 1392[label="",style="dashed", color="magenta", weight=3]; 1134 -> 1031[label="",style="dashed", color="red", weight=0]; 1134[label="vwx65 <= vwx67",fontsize=16,color="magenta"];1134 -> 1393[label="",style="dashed", color="magenta", weight=3]; 1134 -> 1394[label="",style="dashed", color="magenta", weight=3]; 1135 -> 1032[label="",style="dashed", color="red", weight=0]; 1135[label="vwx65 <= vwx67",fontsize=16,color="magenta"];1135 -> 1395[label="",style="dashed", color="magenta", weight=3]; 1135 -> 1396[label="",style="dashed", color="magenta", weight=3]; 1136 -> 1033[label="",style="dashed", color="red", weight=0]; 1136[label="vwx65 <= vwx67",fontsize=16,color="magenta"];1136 -> 1397[label="",style="dashed", color="magenta", weight=3]; 1136 -> 1398[label="",style="dashed", color="magenta", weight=3]; 1137 -> 1034[label="",style="dashed", color="red", weight=0]; 1137[label="vwx65 <= vwx67",fontsize=16,color="magenta"];1137 -> 1399[label="",style="dashed", color="magenta", weight=3]; 1137 -> 1400[label="",style="dashed", color="magenta", weight=3]; 1138 -> 262[label="",style="dashed", color="red", weight=0]; 1138[label="compare vwx64 vwx66 == LT",fontsize=16,color="magenta"];1138 -> 1401[label="",style="dashed", color="magenta", weight=3]; 1138 -> 1402[label="",style="dashed", color="magenta", weight=3]; 1139 -> 262[label="",style="dashed", color="red", weight=0]; 1139[label="compare vwx64 vwx66 == LT",fontsize=16,color="magenta"];1139 -> 1403[label="",style="dashed", color="magenta", weight=3]; 1139 -> 1404[label="",style="dashed", color="magenta", weight=3]; 1140 -> 262[label="",style="dashed", color="red", weight=0]; 1140[label="compare vwx64 vwx66 == LT",fontsize=16,color="magenta"];1140 -> 1405[label="",style="dashed", color="magenta", weight=3]; 1140 -> 1406[label="",style="dashed", color="magenta", weight=3]; 1141 -> 262[label="",style="dashed", color="red", weight=0]; 1141[label="compare vwx64 vwx66 == LT",fontsize=16,color="magenta"];1141 -> 1407[label="",style="dashed", color="magenta", weight=3]; 1141 -> 1408[label="",style="dashed", color="magenta", weight=3]; 1142 -> 262[label="",style="dashed", color="red", weight=0]; 1142[label="compare vwx64 vwx66 == LT",fontsize=16,color="magenta"];1142 -> 1409[label="",style="dashed", color="magenta", weight=3]; 1142 -> 1410[label="",style="dashed", color="magenta", weight=3]; 1143 -> 262[label="",style="dashed", color="red", weight=0]; 1143[label="compare vwx64 vwx66 == LT",fontsize=16,color="magenta"];1143 -> 1411[label="",style="dashed", color="magenta", weight=3]; 1143 -> 1412[label="",style="dashed", color="magenta", weight=3]; 1144 -> 262[label="",style="dashed", color="red", weight=0]; 1144[label="compare vwx64 vwx66 == LT",fontsize=16,color="magenta"];1144 -> 1413[label="",style="dashed", color="magenta", weight=3]; 1144 -> 1414[label="",style="dashed", color="magenta", weight=3]; 1145 -> 262[label="",style="dashed", color="red", weight=0]; 1145[label="compare vwx64 vwx66 == LT",fontsize=16,color="magenta"];1145 -> 1415[label="",style="dashed", color="magenta", weight=3]; 1145 -> 1416[label="",style="dashed", color="magenta", weight=3]; 1146 -> 262[label="",style="dashed", color="red", weight=0]; 1146[label="compare vwx64 vwx66 == LT",fontsize=16,color="magenta"];1146 -> 1417[label="",style="dashed", color="magenta", weight=3]; 1146 -> 1418[label="",style="dashed", color="magenta", weight=3]; 1147 -> 262[label="",style="dashed", color="red", weight=0]; 1147[label="compare vwx64 vwx66 == LT",fontsize=16,color="magenta"];1147 -> 1419[label="",style="dashed", color="magenta", weight=3]; 1147 -> 1420[label="",style="dashed", color="magenta", weight=3]; 1148 -> 262[label="",style="dashed", color="red", weight=0]; 1148[label="compare vwx64 vwx66 == LT",fontsize=16,color="magenta"];1148 -> 1421[label="",style="dashed", color="magenta", weight=3]; 1148 -> 1422[label="",style="dashed", color="magenta", weight=3]; 1149 -> 262[label="",style="dashed", color="red", weight=0]; 1149[label="compare vwx64 vwx66 == LT",fontsize=16,color="magenta"];1149 -> 1423[label="",style="dashed", color="magenta", weight=3]; 1149 -> 1424[label="",style="dashed", color="magenta", weight=3]; 1150 -> 262[label="",style="dashed", color="red", weight=0]; 1150[label="compare vwx64 vwx66 == LT",fontsize=16,color="magenta"];1150 -> 1425[label="",style="dashed", color="magenta", weight=3]; 1150 -> 1426[label="",style="dashed", color="magenta", weight=3]; 1151 -> 262[label="",style="dashed", color="red", weight=0]; 1151[label="compare vwx64 vwx66 == LT",fontsize=16,color="magenta"];1151 -> 1427[label="",style="dashed", color="magenta", weight=3]; 1151 -> 1428[label="",style="dashed", color="magenta", weight=3]; 1152[label="compare1 (vwx114,vwx115) (vwx116,vwx117) vwx119",fontsize=16,color="burlywood",shape="triangle"];3115[label="vwx119/False",fontsize=10,color="white",style="solid",shape="box"];1152 -> 3115[label="",style="solid", color="burlywood", weight=9]; 3115 -> 1429[label="",style="solid", color="burlywood", weight=3]; 3116[label="vwx119/True",fontsize=10,color="white",style="solid",shape="box"];1152 -> 3116[label="",style="solid", color="burlywood", weight=9]; 3116 -> 1430[label="",style="solid", color="burlywood", weight=3]; 1153 -> 1152[label="",style="dashed", color="red", weight=0]; 1153[label="compare1 (vwx114,vwx115) (vwx116,vwx117) True",fontsize=16,color="magenta"];1153 -> 1431[label="",style="dashed", color="magenta", weight=3]; 1154[label="vwx4000",fontsize=16,color="green",shape="box"];1155[label="vwx3000",fontsize=16,color="green",shape="box"];1156[label="primEqNat vwx3000 vwx4000",fontsize=16,color="burlywood",shape="triangle"];3117[label="vwx3000/Succ vwx30000",fontsize=10,color="white",style="solid",shape="box"];1156 -> 3117[label="",style="solid", color="burlywood", weight=9]; 3117 -> 1432[label="",style="solid", color="burlywood", weight=3]; 3118[label="vwx3000/Zero",fontsize=10,color="white",style="solid",shape="box"];1156 -> 3118[label="",style="solid", color="burlywood", weight=9]; 3118 -> 1433[label="",style="solid", color="burlywood", weight=3]; 1157[label="vwx3000 == vwx4000",fontsize=16,color="blue",shape="box"];3119[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1157 -> 3119[label="",style="solid", color="blue", weight=9]; 3119 -> 1434[label="",style="solid", color="blue", weight=3]; 3120[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1157 -> 3120[label="",style="solid", color="blue", weight=9]; 3120 -> 1435[label="",style="solid", color="blue", weight=3]; 3121[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1157 -> 3121[label="",style="solid", color="blue", weight=9]; 3121 -> 1436[label="",style="solid", color="blue", weight=3]; 3122[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1157 -> 3122[label="",style="solid", color="blue", weight=9]; 3122 -> 1437[label="",style="solid", color="blue", weight=3]; 3123[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1157 -> 3123[label="",style="solid", color="blue", weight=9]; 3123 -> 1438[label="",style="solid", color="blue", weight=3]; 3124[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1157 -> 3124[label="",style="solid", color="blue", weight=9]; 3124 -> 1439[label="",style="solid", color="blue", weight=3]; 3125[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1157 -> 3125[label="",style="solid", color="blue", weight=9]; 3125 -> 1440[label="",style="solid", color="blue", weight=3]; 3126[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1157 -> 3126[label="",style="solid", color="blue", weight=9]; 3126 -> 1441[label="",style="solid", color="blue", weight=3]; 3127[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1157 -> 3127[label="",style="solid", color="blue", weight=9]; 3127 -> 1442[label="",style="solid", color="blue", weight=3]; 3128[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1157 -> 3128[label="",style="solid", color="blue", weight=9]; 3128 -> 1443[label="",style="solid", color="blue", weight=3]; 3129[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1157 -> 3129[label="",style="solid", color="blue", weight=9]; 3129 -> 1444[label="",style="solid", color="blue", weight=3]; 3130[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1157 -> 3130[label="",style="solid", color="blue", weight=9]; 3130 -> 1445[label="",style="solid", color="blue", weight=3]; 3131[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1157 -> 3131[label="",style="solid", color="blue", weight=9]; 3131 -> 1446[label="",style="solid", color="blue", weight=3]; 3132[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1157 -> 3132[label="",style="solid", color="blue", weight=9]; 3132 -> 1447[label="",style="solid", color="blue", weight=3]; 1158 -> 265[label="",style="dashed", color="red", weight=0]; 1158[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];1158 -> 1448[label="",style="dashed", color="magenta", weight=3]; 1158 -> 1449[label="",style="dashed", color="magenta", weight=3]; 1159 -> 261[label="",style="dashed", color="red", weight=0]; 1159[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1159 -> 1450[label="",style="dashed", color="magenta", weight=3]; 1159 -> 1451[label="",style="dashed", color="magenta", weight=3]; 1160 -> 262[label="",style="dashed", color="red", weight=0]; 1160[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1160 -> 1452[label="",style="dashed", color="magenta", weight=3]; 1160 -> 1453[label="",style="dashed", color="magenta", weight=3]; 1161 -> 263[label="",style="dashed", color="red", weight=0]; 1161[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1161 -> 1454[label="",style="dashed", color="magenta", weight=3]; 1161 -> 1455[label="",style="dashed", color="magenta", weight=3]; 1162 -> 264[label="",style="dashed", color="red", weight=0]; 1162[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1162 -> 1456[label="",style="dashed", color="magenta", weight=3]; 1162 -> 1457[label="",style="dashed", color="magenta", weight=3]; 1163 -> 265[label="",style="dashed", color="red", weight=0]; 1163[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1163 -> 1458[label="",style="dashed", color="magenta", weight=3]; 1163 -> 1459[label="",style="dashed", color="magenta", weight=3]; 1164 -> 266[label="",style="dashed", color="red", weight=0]; 1164[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1164 -> 1460[label="",style="dashed", color="magenta", weight=3]; 1164 -> 1461[label="",style="dashed", color="magenta", weight=3]; 1165 -> 267[label="",style="dashed", color="red", weight=0]; 1165[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1165 -> 1462[label="",style="dashed", color="magenta", weight=3]; 1165 -> 1463[label="",style="dashed", color="magenta", weight=3]; 1166 -> 268[label="",style="dashed", color="red", weight=0]; 1166[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1166 -> 1464[label="",style="dashed", color="magenta", weight=3]; 1166 -> 1465[label="",style="dashed", color="magenta", weight=3]; 1167 -> 269[label="",style="dashed", color="red", weight=0]; 1167[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1167 -> 1466[label="",style="dashed", color="magenta", weight=3]; 1167 -> 1467[label="",style="dashed", color="magenta", weight=3]; 1168 -> 270[label="",style="dashed", color="red", weight=0]; 1168[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1168 -> 1468[label="",style="dashed", color="magenta", weight=3]; 1168 -> 1469[label="",style="dashed", color="magenta", weight=3]; 1169 -> 271[label="",style="dashed", color="red", weight=0]; 1169[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1169 -> 1470[label="",style="dashed", color="magenta", weight=3]; 1169 -> 1471[label="",style="dashed", color="magenta", weight=3]; 1170 -> 272[label="",style="dashed", color="red", weight=0]; 1170[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1170 -> 1472[label="",style="dashed", color="magenta", weight=3]; 1170 -> 1473[label="",style="dashed", color="magenta", weight=3]; 1171 -> 273[label="",style="dashed", color="red", weight=0]; 1171[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1171 -> 1474[label="",style="dashed", color="magenta", weight=3]; 1171 -> 1475[label="",style="dashed", color="magenta", weight=3]; 1172 -> 274[label="",style="dashed", color="red", weight=0]; 1172[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1172 -> 1476[label="",style="dashed", color="magenta", weight=3]; 1172 -> 1477[label="",style="dashed", color="magenta", weight=3]; 1173 -> 261[label="",style="dashed", color="red", weight=0]; 1173[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1173 -> 1478[label="",style="dashed", color="magenta", weight=3]; 1173 -> 1479[label="",style="dashed", color="magenta", weight=3]; 1174 -> 262[label="",style="dashed", color="red", weight=0]; 1174[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1174 -> 1480[label="",style="dashed", color="magenta", weight=3]; 1174 -> 1481[label="",style="dashed", color="magenta", weight=3]; 1175 -> 263[label="",style="dashed", color="red", weight=0]; 1175[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1175 -> 1482[label="",style="dashed", color="magenta", weight=3]; 1175 -> 1483[label="",style="dashed", color="magenta", weight=3]; 1176 -> 264[label="",style="dashed", color="red", weight=0]; 1176[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1176 -> 1484[label="",style="dashed", color="magenta", weight=3]; 1176 -> 1485[label="",style="dashed", color="magenta", weight=3]; 1177 -> 265[label="",style="dashed", color="red", weight=0]; 1177[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1177 -> 1486[label="",style="dashed", color="magenta", weight=3]; 1177 -> 1487[label="",style="dashed", color="magenta", weight=3]; 1178 -> 266[label="",style="dashed", color="red", weight=0]; 1178[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1178 -> 1488[label="",style="dashed", color="magenta", weight=3]; 1178 -> 1489[label="",style="dashed", color="magenta", weight=3]; 1179 -> 267[label="",style="dashed", color="red", weight=0]; 1179[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1179 -> 1490[label="",style="dashed", color="magenta", weight=3]; 1179 -> 1491[label="",style="dashed", color="magenta", weight=3]; 1180 -> 268[label="",style="dashed", color="red", weight=0]; 1180[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1180 -> 1492[label="",style="dashed", color="magenta", weight=3]; 1180 -> 1493[label="",style="dashed", color="magenta", weight=3]; 1181 -> 269[label="",style="dashed", color="red", weight=0]; 1181[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1181 -> 1494[label="",style="dashed", color="magenta", weight=3]; 1181 -> 1495[label="",style="dashed", color="magenta", weight=3]; 1182 -> 270[label="",style="dashed", color="red", weight=0]; 1182[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1182 -> 1496[label="",style="dashed", color="magenta", weight=3]; 1182 -> 1497[label="",style="dashed", color="magenta", weight=3]; 1183 -> 271[label="",style="dashed", color="red", weight=0]; 1183[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1183 -> 1498[label="",style="dashed", color="magenta", weight=3]; 1183 -> 1499[label="",style="dashed", color="magenta", weight=3]; 1184 -> 272[label="",style="dashed", color="red", weight=0]; 1184[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1184 -> 1500[label="",style="dashed", color="magenta", weight=3]; 1184 -> 1501[label="",style="dashed", color="magenta", weight=3]; 1185 -> 273[label="",style="dashed", color="red", weight=0]; 1185[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1185 -> 1502[label="",style="dashed", color="magenta", weight=3]; 1185 -> 1503[label="",style="dashed", color="magenta", weight=3]; 1186 -> 274[label="",style="dashed", color="red", weight=0]; 1186[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1186 -> 1504[label="",style="dashed", color="magenta", weight=3]; 1186 -> 1505[label="",style="dashed", color="magenta", weight=3]; 1187[label="vwx3000 == vwx4000",fontsize=16,color="blue",shape="box"];3133[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1187 -> 3133[label="",style="solid", color="blue", weight=9]; 3133 -> 1506[label="",style="solid", color="blue", weight=3]; 3134[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1187 -> 3134[label="",style="solid", color="blue", weight=9]; 3134 -> 1507[label="",style="solid", color="blue", weight=3]; 1188[label="vwx3001 == vwx4001",fontsize=16,color="blue",shape="box"];3135[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1188 -> 3135[label="",style="solid", color="blue", weight=9]; 3135 -> 1508[label="",style="solid", color="blue", weight=3]; 3136[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1188 -> 3136[label="",style="solid", color="blue", weight=9]; 3136 -> 1509[label="",style="solid", color="blue", weight=3]; 1189[label="vwx3000 == vwx4000",fontsize=16,color="blue",shape="box"];3137[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1189 -> 3137[label="",style="solid", color="blue", weight=9]; 3137 -> 1510[label="",style="solid", color="blue", weight=3]; 3138[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1189 -> 3138[label="",style="solid", color="blue", weight=9]; 3138 -> 1511[label="",style="solid", color="blue", weight=3]; 3139[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1189 -> 3139[label="",style="solid", color="blue", weight=9]; 3139 -> 1512[label="",style="solid", color="blue", weight=3]; 3140[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1189 -> 3140[label="",style="solid", color="blue", weight=9]; 3140 -> 1513[label="",style="solid", color="blue", weight=3]; 3141[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1189 -> 3141[label="",style="solid", color="blue", weight=9]; 3141 -> 1514[label="",style="solid", color="blue", weight=3]; 3142[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1189 -> 3142[label="",style="solid", color="blue", weight=9]; 3142 -> 1515[label="",style="solid", color="blue", weight=3]; 3143[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1189 -> 3143[label="",style="solid", color="blue", weight=9]; 3143 -> 1516[label="",style="solid", color="blue", weight=3]; 3144[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1189 -> 3144[label="",style="solid", color="blue", weight=9]; 3144 -> 1517[label="",style="solid", color="blue", weight=3]; 3145[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1189 -> 3145[label="",style="solid", color="blue", weight=9]; 3145 -> 1518[label="",style="solid", color="blue", weight=3]; 3146[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1189 -> 3146[label="",style="solid", color="blue", weight=9]; 3146 -> 1519[label="",style="solid", color="blue", weight=3]; 3147[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1189 -> 3147[label="",style="solid", color="blue", weight=9]; 3147 -> 1520[label="",style="solid", color="blue", weight=3]; 3148[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1189 -> 3148[label="",style="solid", color="blue", weight=9]; 3148 -> 1521[label="",style="solid", color="blue", weight=3]; 3149[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1189 -> 3149[label="",style="solid", color="blue", weight=9]; 3149 -> 1522[label="",style="solid", color="blue", weight=3]; 3150[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1189 -> 3150[label="",style="solid", color="blue", weight=9]; 3150 -> 1523[label="",style="solid", color="blue", weight=3]; 1190[label="vwx3001 == vwx4001",fontsize=16,color="blue",shape="box"];3151[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1190 -> 3151[label="",style="solid", color="blue", weight=9]; 3151 -> 1524[label="",style="solid", color="blue", weight=3]; 3152[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1190 -> 3152[label="",style="solid", color="blue", weight=9]; 3152 -> 1525[label="",style="solid", color="blue", weight=3]; 3153[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1190 -> 3153[label="",style="solid", color="blue", weight=9]; 3153 -> 1526[label="",style="solid", color="blue", weight=3]; 3154[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1190 -> 3154[label="",style="solid", color="blue", weight=9]; 3154 -> 1527[label="",style="solid", color="blue", weight=3]; 3155[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1190 -> 3155[label="",style="solid", color="blue", weight=9]; 3155 -> 1528[label="",style="solid", color="blue", weight=3]; 3156[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1190 -> 3156[label="",style="solid", color="blue", weight=9]; 3156 -> 1529[label="",style="solid", color="blue", weight=3]; 3157[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1190 -> 3157[label="",style="solid", color="blue", weight=9]; 3157 -> 1530[label="",style="solid", color="blue", weight=3]; 3158[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1190 -> 3158[label="",style="solid", color="blue", weight=9]; 3158 -> 1531[label="",style="solid", color="blue", weight=3]; 3159[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1190 -> 3159[label="",style="solid", color="blue", weight=9]; 3159 -> 1532[label="",style="solid", color="blue", weight=3]; 3160[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1190 -> 3160[label="",style="solid", color="blue", weight=9]; 3160 -> 1533[label="",style="solid", color="blue", weight=3]; 3161[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1190 -> 3161[label="",style="solid", color="blue", weight=9]; 3161 -> 1534[label="",style="solid", color="blue", weight=3]; 3162[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1190 -> 3162[label="",style="solid", color="blue", weight=9]; 3162 -> 1535[label="",style="solid", color="blue", weight=3]; 3163[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1190 -> 3163[label="",style="solid", color="blue", weight=9]; 3163 -> 1536[label="",style="solid", color="blue", weight=3]; 3164[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1190 -> 3164[label="",style="solid", color="blue", weight=9]; 3164 -> 1537[label="",style="solid", color="blue", weight=3]; 1191 -> 261[label="",style="dashed", color="red", weight=0]; 1191[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1191 -> 1538[label="",style="dashed", color="magenta", weight=3]; 1191 -> 1539[label="",style="dashed", color="magenta", weight=3]; 1192 -> 262[label="",style="dashed", color="red", weight=0]; 1192[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1192 -> 1540[label="",style="dashed", color="magenta", weight=3]; 1192 -> 1541[label="",style="dashed", color="magenta", weight=3]; 1193 -> 263[label="",style="dashed", color="red", weight=0]; 1193[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1193 -> 1542[label="",style="dashed", color="magenta", weight=3]; 1193 -> 1543[label="",style="dashed", color="magenta", weight=3]; 1194 -> 264[label="",style="dashed", color="red", weight=0]; 1194[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1194 -> 1544[label="",style="dashed", color="magenta", weight=3]; 1194 -> 1545[label="",style="dashed", color="magenta", weight=3]; 1195 -> 265[label="",style="dashed", color="red", weight=0]; 1195[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1195 -> 1546[label="",style="dashed", color="magenta", weight=3]; 1195 -> 1547[label="",style="dashed", color="magenta", weight=3]; 1196 -> 266[label="",style="dashed", color="red", weight=0]; 1196[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1196 -> 1548[label="",style="dashed", color="magenta", weight=3]; 1196 -> 1549[label="",style="dashed", color="magenta", weight=3]; 1197 -> 267[label="",style="dashed", color="red", weight=0]; 1197[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1197 -> 1550[label="",style="dashed", color="magenta", weight=3]; 1197 -> 1551[label="",style="dashed", color="magenta", weight=3]; 1198 -> 268[label="",style="dashed", color="red", weight=0]; 1198[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1198 -> 1552[label="",style="dashed", color="magenta", weight=3]; 1198 -> 1553[label="",style="dashed", color="magenta", weight=3]; 1199 -> 269[label="",style="dashed", color="red", weight=0]; 1199[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1199 -> 1554[label="",style="dashed", color="magenta", weight=3]; 1199 -> 1555[label="",style="dashed", color="magenta", weight=3]; 1200 -> 270[label="",style="dashed", color="red", weight=0]; 1200[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1200 -> 1556[label="",style="dashed", color="magenta", weight=3]; 1200 -> 1557[label="",style="dashed", color="magenta", weight=3]; 1201 -> 271[label="",style="dashed", color="red", weight=0]; 1201[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1201 -> 1558[label="",style="dashed", color="magenta", weight=3]; 1201 -> 1559[label="",style="dashed", color="magenta", weight=3]; 1202 -> 272[label="",style="dashed", color="red", weight=0]; 1202[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1202 -> 1560[label="",style="dashed", color="magenta", weight=3]; 1202 -> 1561[label="",style="dashed", color="magenta", weight=3]; 1203 -> 273[label="",style="dashed", color="red", weight=0]; 1203[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1203 -> 1562[label="",style="dashed", color="magenta", weight=3]; 1203 -> 1563[label="",style="dashed", color="magenta", weight=3]; 1204 -> 274[label="",style="dashed", color="red", weight=0]; 1204[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1204 -> 1564[label="",style="dashed", color="magenta", weight=3]; 1204 -> 1565[label="",style="dashed", color="magenta", weight=3]; 1205 -> 272[label="",style="dashed", color="red", weight=0]; 1205[label="vwx3000 * vwx4001 == vwx3001 * vwx4000",fontsize=16,color="magenta"];1205 -> 1566[label="",style="dashed", color="magenta", weight=3]; 1205 -> 1567[label="",style="dashed", color="magenta", weight=3]; 1206[label="primEqInt (Pos (Succ vwx30000)) (Pos vwx4000)",fontsize=16,color="burlywood",shape="box"];3165[label="vwx4000/Succ vwx40000",fontsize=10,color="white",style="solid",shape="box"];1206 -> 3165[label="",style="solid", color="burlywood", weight=9]; 3165 -> 1568[label="",style="solid", color="burlywood", weight=3]; 3166[label="vwx4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1206 -> 3166[label="",style="solid", color="burlywood", weight=9]; 3166 -> 1569[label="",style="solid", color="burlywood", weight=3]; 1207[label="primEqInt (Pos (Succ vwx30000)) (Neg vwx4000)",fontsize=16,color="black",shape="box"];1207 -> 1570[label="",style="solid", color="black", weight=3]; 1208[label="primEqInt (Pos Zero) (Pos vwx4000)",fontsize=16,color="burlywood",shape="box"];3167[label="vwx4000/Succ vwx40000",fontsize=10,color="white",style="solid",shape="box"];1208 -> 3167[label="",style="solid", color="burlywood", weight=9]; 3167 -> 1571[label="",style="solid", color="burlywood", weight=3]; 3168[label="vwx4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1208 -> 3168[label="",style="solid", color="burlywood", weight=9]; 3168 -> 1572[label="",style="solid", color="burlywood", weight=3]; 1209[label="primEqInt (Pos Zero) (Neg vwx4000)",fontsize=16,color="burlywood",shape="box"];3169[label="vwx4000/Succ vwx40000",fontsize=10,color="white",style="solid",shape="box"];1209 -> 3169[label="",style="solid", color="burlywood", weight=9]; 3169 -> 1573[label="",style="solid", color="burlywood", weight=3]; 3170[label="vwx4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1209 -> 3170[label="",style="solid", color="burlywood", weight=9]; 3170 -> 1574[label="",style="solid", color="burlywood", weight=3]; 1210[label="primEqInt (Neg (Succ vwx30000)) (Pos vwx4000)",fontsize=16,color="black",shape="box"];1210 -> 1575[label="",style="solid", color="black", weight=3]; 1211[label="primEqInt (Neg (Succ vwx30000)) (Neg vwx4000)",fontsize=16,color="burlywood",shape="box"];3171[label="vwx4000/Succ vwx40000",fontsize=10,color="white",style="solid",shape="box"];1211 -> 3171[label="",style="solid", color="burlywood", weight=9]; 3171 -> 1576[label="",style="solid", color="burlywood", weight=3]; 3172[label="vwx4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1211 -> 3172[label="",style="solid", color="burlywood", weight=9]; 3172 -> 1577[label="",style="solid", color="burlywood", weight=3]; 1212[label="primEqInt (Neg Zero) (Pos vwx4000)",fontsize=16,color="burlywood",shape="box"];3173[label="vwx4000/Succ vwx40000",fontsize=10,color="white",style="solid",shape="box"];1212 -> 3173[label="",style="solid", color="burlywood", weight=9]; 3173 -> 1578[label="",style="solid", color="burlywood", weight=3]; 3174[label="vwx4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1212 -> 3174[label="",style="solid", color="burlywood", weight=9]; 3174 -> 1579[label="",style="solid", color="burlywood", weight=3]; 1213[label="primEqInt (Neg Zero) (Neg vwx4000)",fontsize=16,color="burlywood",shape="box"];3175[label="vwx4000/Succ vwx40000",fontsize=10,color="white",style="solid",shape="box"];1213 -> 3175[label="",style="solid", color="burlywood", weight=9]; 3175 -> 1580[label="",style="solid", color="burlywood", weight=3]; 3176[label="vwx4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1213 -> 3176[label="",style="solid", color="burlywood", weight=9]; 3176 -> 1581[label="",style="solid", color="burlywood", weight=3]; 1214[label="vwx3000 == vwx4000",fontsize=16,color="blue",shape="box"];3177[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1214 -> 3177[label="",style="solid", color="blue", weight=9]; 3177 -> 1582[label="",style="solid", color="blue", weight=3]; 3178[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1214 -> 3178[label="",style="solid", color="blue", weight=9]; 3178 -> 1583[label="",style="solid", color="blue", weight=3]; 3179[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1214 -> 3179[label="",style="solid", color="blue", weight=9]; 3179 -> 1584[label="",style="solid", color="blue", weight=3]; 3180[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1214 -> 3180[label="",style="solid", color="blue", weight=9]; 3180 -> 1585[label="",style="solid", color="blue", weight=3]; 3181[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1214 -> 3181[label="",style="solid", color="blue", weight=9]; 3181 -> 1586[label="",style="solid", color="blue", weight=3]; 3182[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1214 -> 3182[label="",style="solid", color="blue", weight=9]; 3182 -> 1587[label="",style="solid", color="blue", weight=3]; 3183[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1214 -> 3183[label="",style="solid", color="blue", weight=9]; 3183 -> 1588[label="",style="solid", color="blue", weight=3]; 3184[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1214 -> 3184[label="",style="solid", color="blue", weight=9]; 3184 -> 1589[label="",style="solid", color="blue", weight=3]; 3185[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1214 -> 3185[label="",style="solid", color="blue", weight=9]; 3185 -> 1590[label="",style="solid", color="blue", weight=3]; 3186[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1214 -> 3186[label="",style="solid", color="blue", weight=9]; 3186 -> 1591[label="",style="solid", color="blue", weight=3]; 3187[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1214 -> 3187[label="",style="solid", color="blue", weight=9]; 3187 -> 1592[label="",style="solid", color="blue", weight=3]; 3188[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1214 -> 3188[label="",style="solid", color="blue", weight=9]; 3188 -> 1593[label="",style="solid", color="blue", weight=3]; 3189[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1214 -> 3189[label="",style="solid", color="blue", weight=9]; 3189 -> 1594[label="",style="solid", color="blue", weight=3]; 3190[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1214 -> 3190[label="",style="solid", color="blue", weight=9]; 3190 -> 1595[label="",style="solid", color="blue", weight=3]; 1215 -> 693[label="",style="dashed", color="red", weight=0]; 1215[label="vwx3001 == vwx4001 && vwx3002 == vwx4002",fontsize=16,color="magenta"];1215 -> 1596[label="",style="dashed", color="magenta", weight=3]; 1215 -> 1597[label="",style="dashed", color="magenta", weight=3]; 1216 -> 272[label="",style="dashed", color="red", weight=0]; 1216[label="vwx3000 * vwx4001 == vwx3001 * vwx4000",fontsize=16,color="magenta"];1216 -> 1598[label="",style="dashed", color="magenta", weight=3]; 1216 -> 1599[label="",style="dashed", color="magenta", weight=3]; 1217 -> 1600[label="",style="dashed", color="red", weight=0]; 1217[label="compare vwx26 vwx27 /= GT",fontsize=16,color="magenta"];1217 -> 1601[label="",style="dashed", color="magenta", weight=3]; 1218 -> 1600[label="",style="dashed", color="red", weight=0]; 1218[label="compare vwx26 vwx27 /= GT",fontsize=16,color="magenta"];1218 -> 1602[label="",style="dashed", color="magenta", weight=3]; 1219[label="(vwx260,vwx261) <= vwx27",fontsize=16,color="burlywood",shape="box"];3191[label="vwx27/(vwx270,vwx271)",fontsize=10,color="white",style="solid",shape="box"];1219 -> 3191[label="",style="solid", color="burlywood", weight=9]; 3191 -> 1609[label="",style="solid", color="burlywood", weight=3]; 1220 -> 1600[label="",style="dashed", color="red", weight=0]; 1220[label="compare vwx26 vwx27 /= GT",fontsize=16,color="magenta"];1220 -> 1603[label="",style="dashed", color="magenta", weight=3]; 1221 -> 1600[label="",style="dashed", color="red", weight=0]; 1221[label="compare vwx26 vwx27 /= GT",fontsize=16,color="magenta"];1221 -> 1604[label="",style="dashed", color="magenta", weight=3]; 1222[label="Nothing <= vwx27",fontsize=16,color="burlywood",shape="box"];3192[label="vwx27/Nothing",fontsize=10,color="white",style="solid",shape="box"];1222 -> 3192[label="",style="solid", color="burlywood", weight=9]; 3192 -> 1610[label="",style="solid", color="burlywood", weight=3]; 3193[label="vwx27/Just vwx270",fontsize=10,color="white",style="solid",shape="box"];1222 -> 3193[label="",style="solid", color="burlywood", weight=9]; 3193 -> 1611[label="",style="solid", color="burlywood", weight=3]; 1223[label="Just vwx260 <= vwx27",fontsize=16,color="burlywood",shape="box"];3194[label="vwx27/Nothing",fontsize=10,color="white",style="solid",shape="box"];1223 -> 3194[label="",style="solid", color="burlywood", weight=9]; 3194 -> 1612[label="",style="solid", color="burlywood", weight=3]; 3195[label="vwx27/Just vwx270",fontsize=10,color="white",style="solid",shape="box"];1223 -> 3195[label="",style="solid", color="burlywood", weight=9]; 3195 -> 1613[label="",style="solid", color="burlywood", weight=3]; 1224[label="False <= vwx27",fontsize=16,color="burlywood",shape="box"];3196[label="vwx27/False",fontsize=10,color="white",style="solid",shape="box"];1224 -> 3196[label="",style="solid", color="burlywood", weight=9]; 3196 -> 1614[label="",style="solid", color="burlywood", weight=3]; 3197[label="vwx27/True",fontsize=10,color="white",style="solid",shape="box"];1224 -> 3197[label="",style="solid", color="burlywood", weight=9]; 3197 -> 1615[label="",style="solid", color="burlywood", weight=3]; 1225[label="True <= vwx27",fontsize=16,color="burlywood",shape="box"];3198[label="vwx27/False",fontsize=10,color="white",style="solid",shape="box"];1225 -> 3198[label="",style="solid", color="burlywood", weight=9]; 3198 -> 1616[label="",style="solid", color="burlywood", weight=3]; 3199[label="vwx27/True",fontsize=10,color="white",style="solid",shape="box"];1225 -> 3199[label="",style="solid", color="burlywood", weight=9]; 3199 -> 1617[label="",style="solid", color="burlywood", weight=3]; 1226 -> 1600[label="",style="dashed", color="red", weight=0]; 1226[label="compare vwx26 vwx27 /= GT",fontsize=16,color="magenta"];1226 -> 1605[label="",style="dashed", color="magenta", weight=3]; 1227[label="Left vwx260 <= vwx27",fontsize=16,color="burlywood",shape="box"];3200[label="vwx27/Left vwx270",fontsize=10,color="white",style="solid",shape="box"];1227 -> 3200[label="",style="solid", color="burlywood", weight=9]; 3200 -> 1618[label="",style="solid", color="burlywood", weight=3]; 3201[label="vwx27/Right vwx270",fontsize=10,color="white",style="solid",shape="box"];1227 -> 3201[label="",style="solid", color="burlywood", weight=9]; 3201 -> 1619[label="",style="solid", color="burlywood", weight=3]; 1228[label="Right vwx260 <= vwx27",fontsize=16,color="burlywood",shape="box"];3202[label="vwx27/Left vwx270",fontsize=10,color="white",style="solid",shape="box"];1228 -> 3202[label="",style="solid", color="burlywood", weight=9]; 3202 -> 1620[label="",style="solid", color="burlywood", weight=3]; 3203[label="vwx27/Right vwx270",fontsize=10,color="white",style="solid",shape="box"];1228 -> 3203[label="",style="solid", color="burlywood", weight=9]; 3203 -> 1621[label="",style="solid", color="burlywood", weight=3]; 1229[label="(vwx260,vwx261,vwx262) <= vwx27",fontsize=16,color="burlywood",shape="box"];3204[label="vwx27/(vwx270,vwx271,vwx272)",fontsize=10,color="white",style="solid",shape="box"];1229 -> 3204[label="",style="solid", color="burlywood", weight=9]; 3204 -> 1622[label="",style="solid", color="burlywood", weight=3]; 1230 -> 1600[label="",style="dashed", color="red", weight=0]; 1230[label="compare vwx26 vwx27 /= GT",fontsize=16,color="magenta"];1230 -> 1606[label="",style="dashed", color="magenta", weight=3]; 1231[label="LT <= vwx27",fontsize=16,color="burlywood",shape="box"];3205[label="vwx27/LT",fontsize=10,color="white",style="solid",shape="box"];1231 -> 3205[label="",style="solid", color="burlywood", weight=9]; 3205 -> 1623[label="",style="solid", color="burlywood", weight=3]; 3206[label="vwx27/EQ",fontsize=10,color="white",style="solid",shape="box"];1231 -> 3206[label="",style="solid", color="burlywood", weight=9]; 3206 -> 1624[label="",style="solid", color="burlywood", weight=3]; 3207[label="vwx27/GT",fontsize=10,color="white",style="solid",shape="box"];1231 -> 3207[label="",style="solid", color="burlywood", weight=9]; 3207 -> 1625[label="",style="solid", color="burlywood", weight=3]; 1232[label="EQ <= vwx27",fontsize=16,color="burlywood",shape="box"];3208[label="vwx27/LT",fontsize=10,color="white",style="solid",shape="box"];1232 -> 3208[label="",style="solid", color="burlywood", weight=9]; 3208 -> 1626[label="",style="solid", color="burlywood", weight=3]; 3209[label="vwx27/EQ",fontsize=10,color="white",style="solid",shape="box"];1232 -> 3209[label="",style="solid", color="burlywood", weight=9]; 3209 -> 1627[label="",style="solid", color="burlywood", weight=3]; 3210[label="vwx27/GT",fontsize=10,color="white",style="solid",shape="box"];1232 -> 3210[label="",style="solid", color="burlywood", weight=9]; 3210 -> 1628[label="",style="solid", color="burlywood", weight=3]; 1233[label="GT <= vwx27",fontsize=16,color="burlywood",shape="box"];3211[label="vwx27/LT",fontsize=10,color="white",style="solid",shape="box"];1233 -> 3211[label="",style="solid", color="burlywood", weight=9]; 3211 -> 1629[label="",style="solid", color="burlywood", weight=3]; 3212[label="vwx27/EQ",fontsize=10,color="white",style="solid",shape="box"];1233 -> 3212[label="",style="solid", color="burlywood", weight=9]; 3212 -> 1630[label="",style="solid", color="burlywood", weight=3]; 3213[label="vwx27/GT",fontsize=10,color="white",style="solid",shape="box"];1233 -> 3213[label="",style="solid", color="burlywood", weight=9]; 3213 -> 1631[label="",style="solid", color="burlywood", weight=3]; 1234 -> 1600[label="",style="dashed", color="red", weight=0]; 1234[label="compare vwx26 vwx27 /= GT",fontsize=16,color="magenta"];1234 -> 1607[label="",style="dashed", color="magenta", weight=3]; 1235 -> 1600[label="",style="dashed", color="red", weight=0]; 1235[label="compare vwx26 vwx27 /= GT",fontsize=16,color="magenta"];1235 -> 1608[label="",style="dashed", color="magenta", weight=3]; 1236[label="compare0 (Just vwx87) (Just vwx88) True",fontsize=16,color="black",shape="box"];1236 -> 1632[label="",style="solid", color="black", weight=3]; 1237[label="vwx34",fontsize=16,color="green",shape="box"];1238[label="vwx33",fontsize=16,color="green",shape="box"];1239[label="vwx34",fontsize=16,color="green",shape="box"];1240[label="vwx33",fontsize=16,color="green",shape="box"];1241[label="vwx34",fontsize=16,color="green",shape="box"];1242[label="vwx33",fontsize=16,color="green",shape="box"];1243[label="vwx34",fontsize=16,color="green",shape="box"];1244[label="vwx33",fontsize=16,color="green",shape="box"];1245[label="vwx34",fontsize=16,color="green",shape="box"];1246[label="vwx33",fontsize=16,color="green",shape="box"];1247[label="vwx34",fontsize=16,color="green",shape="box"];1248[label="vwx33",fontsize=16,color="green",shape="box"];1249[label="vwx34",fontsize=16,color="green",shape="box"];1250[label="vwx33",fontsize=16,color="green",shape="box"];1251[label="vwx34",fontsize=16,color="green",shape="box"];1252[label="vwx33",fontsize=16,color="green",shape="box"];1253[label="vwx34",fontsize=16,color="green",shape="box"];1254[label="vwx33",fontsize=16,color="green",shape="box"];1255[label="vwx34",fontsize=16,color="green",shape="box"];1256[label="vwx33",fontsize=16,color="green",shape="box"];1257[label="vwx34",fontsize=16,color="green",shape="box"];1258[label="vwx33",fontsize=16,color="green",shape="box"];1259[label="vwx34",fontsize=16,color="green",shape="box"];1260[label="vwx33",fontsize=16,color="green",shape="box"];1261[label="vwx34",fontsize=16,color="green",shape="box"];1262[label="vwx33",fontsize=16,color="green",shape="box"];1263[label="vwx34",fontsize=16,color="green",shape="box"];1264[label="vwx33",fontsize=16,color="green",shape="box"];1265[label="compare0 (Left vwx94) (Left vwx95) True",fontsize=16,color="black",shape="box"];1265 -> 1633[label="",style="solid", color="black", weight=3]; 1266[label="vwx41",fontsize=16,color="green",shape="box"];1267[label="vwx40",fontsize=16,color="green",shape="box"];1268[label="vwx41",fontsize=16,color="green",shape="box"];1269[label="vwx40",fontsize=16,color="green",shape="box"];1270[label="vwx41",fontsize=16,color="green",shape="box"];1271[label="vwx40",fontsize=16,color="green",shape="box"];1272[label="vwx41",fontsize=16,color="green",shape="box"];1273[label="vwx40",fontsize=16,color="green",shape="box"];1274[label="vwx41",fontsize=16,color="green",shape="box"];1275[label="vwx40",fontsize=16,color="green",shape="box"];1276[label="vwx41",fontsize=16,color="green",shape="box"];1277[label="vwx40",fontsize=16,color="green",shape="box"];1278[label="vwx41",fontsize=16,color="green",shape="box"];1279[label="vwx40",fontsize=16,color="green",shape="box"];1280[label="vwx41",fontsize=16,color="green",shape="box"];1281[label="vwx40",fontsize=16,color="green",shape="box"];1282[label="vwx41",fontsize=16,color="green",shape="box"];1283[label="vwx40",fontsize=16,color="green",shape="box"];1284[label="vwx41",fontsize=16,color="green",shape="box"];1285[label="vwx40",fontsize=16,color="green",shape="box"];1286[label="vwx41",fontsize=16,color="green",shape="box"];1287[label="vwx40",fontsize=16,color="green",shape="box"];1288[label="vwx41",fontsize=16,color="green",shape="box"];1289[label="vwx40",fontsize=16,color="green",shape="box"];1290[label="vwx41",fontsize=16,color="green",shape="box"];1291[label="vwx40",fontsize=16,color="green",shape="box"];1292[label="vwx41",fontsize=16,color="green",shape="box"];1293[label="vwx40",fontsize=16,color="green",shape="box"];1294[label="compare0 (Right vwx102) (Right vwx103) True",fontsize=16,color="black",shape="box"];1294 -> 1634[label="",style="solid", color="black", weight=3]; 1295 -> 268[label="",style="dashed", color="red", weight=0]; 1295[label="vwx51 == vwx54",fontsize=16,color="magenta"];1295 -> 1635[label="",style="dashed", color="magenta", weight=3]; 1295 -> 1636[label="",style="dashed", color="magenta", weight=3]; 1296 -> 263[label="",style="dashed", color="red", weight=0]; 1296[label="vwx51 == vwx54",fontsize=16,color="magenta"];1296 -> 1637[label="",style="dashed", color="magenta", weight=3]; 1296 -> 1638[label="",style="dashed", color="magenta", weight=3]; 1297 -> 269[label="",style="dashed", color="red", weight=0]; 1297[label="vwx51 == vwx54",fontsize=16,color="magenta"];1297 -> 1639[label="",style="dashed", color="magenta", weight=3]; 1297 -> 1640[label="",style="dashed", color="magenta", weight=3]; 1298 -> 265[label="",style="dashed", color="red", weight=0]; 1298[label="vwx51 == vwx54",fontsize=16,color="magenta"];1298 -> 1641[label="",style="dashed", color="magenta", weight=3]; 1298 -> 1642[label="",style="dashed", color="magenta", weight=3]; 1299 -> 274[label="",style="dashed", color="red", weight=0]; 1299[label="vwx51 == vwx54",fontsize=16,color="magenta"];1299 -> 1643[label="",style="dashed", color="magenta", weight=3]; 1299 -> 1644[label="",style="dashed", color="magenta", weight=3]; 1300 -> 270[label="",style="dashed", color="red", weight=0]; 1300[label="vwx51 == vwx54",fontsize=16,color="magenta"];1300 -> 1645[label="",style="dashed", color="magenta", weight=3]; 1300 -> 1646[label="",style="dashed", color="magenta", weight=3]; 1301 -> 261[label="",style="dashed", color="red", weight=0]; 1301[label="vwx51 == vwx54",fontsize=16,color="magenta"];1301 -> 1647[label="",style="dashed", color="magenta", weight=3]; 1301 -> 1648[label="",style="dashed", color="magenta", weight=3]; 1302 -> 267[label="",style="dashed", color="red", weight=0]; 1302[label="vwx51 == vwx54",fontsize=16,color="magenta"];1302 -> 1649[label="",style="dashed", color="magenta", weight=3]; 1302 -> 1650[label="",style="dashed", color="magenta", weight=3]; 1303 -> 266[label="",style="dashed", color="red", weight=0]; 1303[label="vwx51 == vwx54",fontsize=16,color="magenta"];1303 -> 1651[label="",style="dashed", color="magenta", weight=3]; 1303 -> 1652[label="",style="dashed", color="magenta", weight=3]; 1304 -> 273[label="",style="dashed", color="red", weight=0]; 1304[label="vwx51 == vwx54",fontsize=16,color="magenta"];1304 -> 1653[label="",style="dashed", color="magenta", weight=3]; 1304 -> 1654[label="",style="dashed", color="magenta", weight=3]; 1305 -> 264[label="",style="dashed", color="red", weight=0]; 1305[label="vwx51 == vwx54",fontsize=16,color="magenta"];1305 -> 1655[label="",style="dashed", color="magenta", weight=3]; 1305 -> 1656[label="",style="dashed", color="magenta", weight=3]; 1306 -> 262[label="",style="dashed", color="red", weight=0]; 1306[label="vwx51 == vwx54",fontsize=16,color="magenta"];1306 -> 1657[label="",style="dashed", color="magenta", weight=3]; 1306 -> 1658[label="",style="dashed", color="magenta", weight=3]; 1307 -> 272[label="",style="dashed", color="red", weight=0]; 1307[label="vwx51 == vwx54",fontsize=16,color="magenta"];1307 -> 1659[label="",style="dashed", color="magenta", weight=3]; 1307 -> 1660[label="",style="dashed", color="magenta", weight=3]; 1308 -> 271[label="",style="dashed", color="red", weight=0]; 1308[label="vwx51 == vwx54",fontsize=16,color="magenta"];1308 -> 1661[label="",style="dashed", color="magenta", weight=3]; 1308 -> 1662[label="",style="dashed", color="magenta", weight=3]; 1666[label="vwx52 < vwx55",fontsize=16,color="blue",shape="box"];3214[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1666 -> 3214[label="",style="solid", color="blue", weight=9]; 3214 -> 1670[label="",style="solid", color="blue", weight=3]; 3215[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1666 -> 3215[label="",style="solid", color="blue", weight=9]; 3215 -> 1671[label="",style="solid", color="blue", weight=3]; 3216[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1666 -> 3216[label="",style="solid", color="blue", weight=9]; 3216 -> 1672[label="",style="solid", color="blue", weight=3]; 3217[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1666 -> 3217[label="",style="solid", color="blue", weight=9]; 3217 -> 1673[label="",style="solid", color="blue", weight=3]; 3218[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1666 -> 3218[label="",style="solid", color="blue", weight=9]; 3218 -> 1674[label="",style="solid", color="blue", weight=3]; 3219[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1666 -> 3219[label="",style="solid", color="blue", weight=9]; 3219 -> 1675[label="",style="solid", color="blue", weight=3]; 3220[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1666 -> 3220[label="",style="solid", color="blue", weight=9]; 3220 -> 1676[label="",style="solid", color="blue", weight=3]; 3221[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1666 -> 3221[label="",style="solid", color="blue", weight=9]; 3221 -> 1677[label="",style="solid", color="blue", weight=3]; 3222[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1666 -> 3222[label="",style="solid", color="blue", weight=9]; 3222 -> 1678[label="",style="solid", color="blue", weight=3]; 3223[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1666 -> 3223[label="",style="solid", color="blue", weight=9]; 3223 -> 1679[label="",style="solid", color="blue", weight=3]; 3224[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1666 -> 3224[label="",style="solid", color="blue", weight=9]; 3224 -> 1680[label="",style="solid", color="blue", weight=3]; 3225[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1666 -> 3225[label="",style="solid", color="blue", weight=9]; 3225 -> 1681[label="",style="solid", color="blue", weight=3]; 3226[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1666 -> 3226[label="",style="solid", color="blue", weight=9]; 3226 -> 1682[label="",style="solid", color="blue", weight=3]; 3227[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1666 -> 3227[label="",style="solid", color="blue", weight=9]; 3227 -> 1683[label="",style="solid", color="blue", weight=3]; 1667 -> 693[label="",style="dashed", color="red", weight=0]; 1667[label="vwx52 == vwx55 && vwx53 <= vwx56",fontsize=16,color="magenta"];1667 -> 1684[label="",style="dashed", color="magenta", weight=3]; 1667 -> 1685[label="",style="dashed", color="magenta", weight=3]; 1665[label="vwx142 || vwx143",fontsize=16,color="burlywood",shape="triangle"];3228[label="vwx142/False",fontsize=10,color="white",style="solid",shape="box"];1665 -> 3228[label="",style="solid", color="burlywood", weight=9]; 3228 -> 1686[label="",style="solid", color="burlywood", weight=3]; 3229[label="vwx142/True",fontsize=10,color="white",style="solid",shape="box"];1665 -> 3229[label="",style="solid", color="burlywood", weight=9]; 3229 -> 1687[label="",style="solid", color="burlywood", weight=3]; 1311[label="vwx54",fontsize=16,color="green",shape="box"];1312[label="vwx51",fontsize=16,color="green",shape="box"];1313[label="vwx54",fontsize=16,color="green",shape="box"];1314[label="vwx51",fontsize=16,color="green",shape="box"];1315[label="vwx54",fontsize=16,color="green",shape="box"];1316[label="vwx51",fontsize=16,color="green",shape="box"];1317[label="vwx54",fontsize=16,color="green",shape="box"];1318[label="vwx51",fontsize=16,color="green",shape="box"];1319[label="vwx54",fontsize=16,color="green",shape="box"];1320[label="vwx51",fontsize=16,color="green",shape="box"];1321[label="vwx54",fontsize=16,color="green",shape="box"];1322[label="vwx51",fontsize=16,color="green",shape="box"];1323[label="vwx54",fontsize=16,color="green",shape="box"];1324[label="vwx51",fontsize=16,color="green",shape="box"];1325[label="vwx54",fontsize=16,color="green",shape="box"];1326[label="vwx51",fontsize=16,color="green",shape="box"];1327[label="vwx54",fontsize=16,color="green",shape="box"];1328[label="vwx51",fontsize=16,color="green",shape="box"];1329[label="vwx54",fontsize=16,color="green",shape="box"];1330[label="vwx51",fontsize=16,color="green",shape="box"];1331[label="vwx54",fontsize=16,color="green",shape="box"];1332[label="vwx51",fontsize=16,color="green",shape="box"];1333[label="vwx54",fontsize=16,color="green",shape="box"];1334[label="vwx51",fontsize=16,color="green",shape="box"];1335[label="vwx54",fontsize=16,color="green",shape="box"];1336[label="vwx51",fontsize=16,color="green",shape="box"];1337[label="vwx54",fontsize=16,color="green",shape="box"];1338[label="vwx51",fontsize=16,color="green",shape="box"];1339[label="compare1 (vwx129,vwx130,vwx131) (vwx132,vwx133,vwx134) vwx136",fontsize=16,color="burlywood",shape="triangle"];3230[label="vwx136/False",fontsize=10,color="white",style="solid",shape="box"];1339 -> 3230[label="",style="solid", color="burlywood", weight=9]; 3230 -> 1688[label="",style="solid", color="burlywood", weight=3]; 3231[label="vwx136/True",fontsize=10,color="white",style="solid",shape="box"];1339 -> 3231[label="",style="solid", color="burlywood", weight=9]; 3231 -> 1689[label="",style="solid", color="burlywood", weight=3]; 1340 -> 1339[label="",style="dashed", color="red", weight=0]; 1340[label="compare1 (vwx129,vwx130,vwx131) (vwx132,vwx133,vwx134) True",fontsize=16,color="magenta"];1340 -> 1690[label="",style="dashed", color="magenta", weight=3]; 1341 -> 1691[label="",style="dashed", color="red", weight=0]; 1341[label="primPlusNat (primMulNat vwx40000 (Succ vwx30100)) (Succ vwx30100)",fontsize=16,color="magenta"];1341 -> 1692[label="",style="dashed", color="magenta", weight=3]; 1342[label="Zero",fontsize=16,color="green",shape="box"];1343[label="Zero",fontsize=16,color="green",shape="box"];1344[label="Zero",fontsize=16,color="green",shape="box"];1345[label="vwx66",fontsize=16,color="green",shape="box"];1346[label="vwx64",fontsize=16,color="green",shape="box"];1347[label="vwx66",fontsize=16,color="green",shape="box"];1348[label="vwx64",fontsize=16,color="green",shape="box"];1349[label="vwx66",fontsize=16,color="green",shape="box"];1350[label="vwx64",fontsize=16,color="green",shape="box"];1351[label="vwx66",fontsize=16,color="green",shape="box"];1352[label="vwx64",fontsize=16,color="green",shape="box"];1353[label="vwx66",fontsize=16,color="green",shape="box"];1354[label="vwx64",fontsize=16,color="green",shape="box"];1355[label="vwx66",fontsize=16,color="green",shape="box"];1356[label="vwx64",fontsize=16,color="green",shape="box"];1357[label="vwx66",fontsize=16,color="green",shape="box"];1358[label="vwx64",fontsize=16,color="green",shape="box"];1359[label="vwx66",fontsize=16,color="green",shape="box"];1360[label="vwx64",fontsize=16,color="green",shape="box"];1361[label="vwx66",fontsize=16,color="green",shape="box"];1362[label="vwx64",fontsize=16,color="green",shape="box"];1363[label="vwx66",fontsize=16,color="green",shape="box"];1364[label="vwx64",fontsize=16,color="green",shape="box"];1365[label="vwx66",fontsize=16,color="green",shape="box"];1366[label="vwx64",fontsize=16,color="green",shape="box"];1367[label="vwx66",fontsize=16,color="green",shape="box"];1368[label="vwx64",fontsize=16,color="green",shape="box"];1369[label="vwx66",fontsize=16,color="green",shape="box"];1370[label="vwx64",fontsize=16,color="green",shape="box"];1371[label="vwx66",fontsize=16,color="green",shape="box"];1372[label="vwx64",fontsize=16,color="green",shape="box"];1373[label="vwx67",fontsize=16,color="green",shape="box"];1374[label="vwx65",fontsize=16,color="green",shape="box"];1375[label="vwx67",fontsize=16,color="green",shape="box"];1376[label="vwx65",fontsize=16,color="green",shape="box"];1377[label="vwx67",fontsize=16,color="green",shape="box"];1378[label="vwx65",fontsize=16,color="green",shape="box"];1379[label="vwx67",fontsize=16,color="green",shape="box"];1380[label="vwx65",fontsize=16,color="green",shape="box"];1381[label="vwx67",fontsize=16,color="green",shape="box"];1382[label="vwx65",fontsize=16,color="green",shape="box"];1383[label="vwx67",fontsize=16,color="green",shape="box"];1384[label="vwx65",fontsize=16,color="green",shape="box"];1385[label="vwx67",fontsize=16,color="green",shape="box"];1386[label="vwx65",fontsize=16,color="green",shape="box"];1387[label="vwx67",fontsize=16,color="green",shape="box"];1388[label="vwx65",fontsize=16,color="green",shape="box"];1389[label="vwx67",fontsize=16,color="green",shape="box"];1390[label="vwx65",fontsize=16,color="green",shape="box"];1391[label="vwx67",fontsize=16,color="green",shape="box"];1392[label="vwx65",fontsize=16,color="green",shape="box"];1393[label="vwx67",fontsize=16,color="green",shape="box"];1394[label="vwx65",fontsize=16,color="green",shape="box"];1395[label="vwx67",fontsize=16,color="green",shape="box"];1396[label="vwx65",fontsize=16,color="green",shape="box"];1397[label="vwx67",fontsize=16,color="green",shape="box"];1398[label="vwx65",fontsize=16,color="green",shape="box"];1399[label="vwx67",fontsize=16,color="green",shape="box"];1400[label="vwx65",fontsize=16,color="green",shape="box"];1401[label="LT",fontsize=16,color="green",shape="box"];1402 -> 23[label="",style="dashed", color="red", weight=0]; 1402[label="compare vwx64 vwx66",fontsize=16,color="magenta"];1402 -> 1693[label="",style="dashed", color="magenta", weight=3]; 1402 -> 1694[label="",style="dashed", color="magenta", weight=3]; 1403[label="LT",fontsize=16,color="green",shape="box"];1404 -> 24[label="",style="dashed", color="red", weight=0]; 1404[label="compare vwx64 vwx66",fontsize=16,color="magenta"];1404 -> 1695[label="",style="dashed", color="magenta", weight=3]; 1404 -> 1696[label="",style="dashed", color="magenta", weight=3]; 1405[label="LT",fontsize=16,color="green",shape="box"];1406 -> 25[label="",style="dashed", color="red", weight=0]; 1406[label="compare vwx64 vwx66",fontsize=16,color="magenta"];1406 -> 1697[label="",style="dashed", color="magenta", weight=3]; 1406 -> 1698[label="",style="dashed", color="magenta", weight=3]; 1407[label="LT",fontsize=16,color="green",shape="box"];1408 -> 4[label="",style="dashed", color="red", weight=0]; 1408[label="compare vwx64 vwx66",fontsize=16,color="magenta"];1408 -> 1699[label="",style="dashed", color="magenta", weight=3]; 1408 -> 1700[label="",style="dashed", color="magenta", weight=3]; 1409[label="LT",fontsize=16,color="green",shape="box"];1410 -> 27[label="",style="dashed", color="red", weight=0]; 1410[label="compare vwx64 vwx66",fontsize=16,color="magenta"];1410 -> 1701[label="",style="dashed", color="magenta", weight=3]; 1410 -> 1702[label="",style="dashed", color="magenta", weight=3]; 1411[label="LT",fontsize=16,color="green",shape="box"];1412 -> 28[label="",style="dashed", color="red", weight=0]; 1412[label="compare vwx64 vwx66",fontsize=16,color="magenta"];1412 -> 1703[label="",style="dashed", color="magenta", weight=3]; 1412 -> 1704[label="",style="dashed", color="magenta", weight=3]; 1413[label="LT",fontsize=16,color="green",shape="box"];1414 -> 29[label="",style="dashed", color="red", weight=0]; 1414[label="compare vwx64 vwx66",fontsize=16,color="magenta"];1414 -> 1705[label="",style="dashed", color="magenta", weight=3]; 1414 -> 1706[label="",style="dashed", color="magenta", weight=3]; 1415[label="LT",fontsize=16,color="green",shape="box"];1416 -> 30[label="",style="dashed", color="red", weight=0]; 1416[label="compare vwx64 vwx66",fontsize=16,color="magenta"];1416 -> 1707[label="",style="dashed", color="magenta", weight=3]; 1416 -> 1708[label="",style="dashed", color="magenta", weight=3]; 1417[label="LT",fontsize=16,color="green",shape="box"];1418 -> 31[label="",style="dashed", color="red", weight=0]; 1418[label="compare vwx64 vwx66",fontsize=16,color="magenta"];1418 -> 1709[label="",style="dashed", color="magenta", weight=3]; 1418 -> 1710[label="",style="dashed", color="magenta", weight=3]; 1419[label="LT",fontsize=16,color="green",shape="box"];1420 -> 32[label="",style="dashed", color="red", weight=0]; 1420[label="compare vwx64 vwx66",fontsize=16,color="magenta"];1420 -> 1711[label="",style="dashed", color="magenta", weight=3]; 1420 -> 1712[label="",style="dashed", color="magenta", weight=3]; 1421[label="LT",fontsize=16,color="green",shape="box"];1422 -> 33[label="",style="dashed", color="red", weight=0]; 1422[label="compare vwx64 vwx66",fontsize=16,color="magenta"];1422 -> 1713[label="",style="dashed", color="magenta", weight=3]; 1422 -> 1714[label="",style="dashed", color="magenta", weight=3]; 1423[label="LT",fontsize=16,color="green",shape="box"];1424 -> 34[label="",style="dashed", color="red", weight=0]; 1424[label="compare vwx64 vwx66",fontsize=16,color="magenta"];1424 -> 1715[label="",style="dashed", color="magenta", weight=3]; 1424 -> 1716[label="",style="dashed", color="magenta", weight=3]; 1425[label="LT",fontsize=16,color="green",shape="box"];1426 -> 35[label="",style="dashed", color="red", weight=0]; 1426[label="compare vwx64 vwx66",fontsize=16,color="magenta"];1426 -> 1717[label="",style="dashed", color="magenta", weight=3]; 1426 -> 1718[label="",style="dashed", color="magenta", weight=3]; 1427[label="LT",fontsize=16,color="green",shape="box"];1428 -> 36[label="",style="dashed", color="red", weight=0]; 1428[label="compare vwx64 vwx66",fontsize=16,color="magenta"];1428 -> 1719[label="",style="dashed", color="magenta", weight=3]; 1428 -> 1720[label="",style="dashed", color="magenta", weight=3]; 1429[label="compare1 (vwx114,vwx115) (vwx116,vwx117) False",fontsize=16,color="black",shape="box"];1429 -> 1721[label="",style="solid", color="black", weight=3]; 1430[label="compare1 (vwx114,vwx115) (vwx116,vwx117) True",fontsize=16,color="black",shape="box"];1430 -> 1722[label="",style="solid", color="black", weight=3]; 1431[label="True",fontsize=16,color="green",shape="box"];1432[label="primEqNat (Succ vwx30000) vwx4000",fontsize=16,color="burlywood",shape="box"];3232[label="vwx4000/Succ vwx40000",fontsize=10,color="white",style="solid",shape="box"];1432 -> 3232[label="",style="solid", color="burlywood", weight=9]; 3232 -> 1723[label="",style="solid", color="burlywood", weight=3]; 3233[label="vwx4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1432 -> 3233[label="",style="solid", color="burlywood", weight=9]; 3233 -> 1724[label="",style="solid", color="burlywood", weight=3]; 1433[label="primEqNat Zero vwx4000",fontsize=16,color="burlywood",shape="box"];3234[label="vwx4000/Succ vwx40000",fontsize=10,color="white",style="solid",shape="box"];1433 -> 3234[label="",style="solid", color="burlywood", weight=9]; 3234 -> 1725[label="",style="solid", color="burlywood", weight=3]; 3235[label="vwx4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1433 -> 3235[label="",style="solid", color="burlywood", weight=9]; 3235 -> 1726[label="",style="solid", color="burlywood", weight=3]; 1434 -> 261[label="",style="dashed", color="red", weight=0]; 1434[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1434 -> 1727[label="",style="dashed", color="magenta", weight=3]; 1434 -> 1728[label="",style="dashed", color="magenta", weight=3]; 1435 -> 262[label="",style="dashed", color="red", weight=0]; 1435[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1435 -> 1729[label="",style="dashed", color="magenta", weight=3]; 1435 -> 1730[label="",style="dashed", color="magenta", weight=3]; 1436 -> 263[label="",style="dashed", color="red", weight=0]; 1436[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1436 -> 1731[label="",style="dashed", color="magenta", weight=3]; 1436 -> 1732[label="",style="dashed", color="magenta", weight=3]; 1437 -> 264[label="",style="dashed", color="red", weight=0]; 1437[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1437 -> 1733[label="",style="dashed", color="magenta", weight=3]; 1437 -> 1734[label="",style="dashed", color="magenta", weight=3]; 1438 -> 265[label="",style="dashed", color="red", weight=0]; 1438[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1438 -> 1735[label="",style="dashed", color="magenta", weight=3]; 1438 -> 1736[label="",style="dashed", color="magenta", weight=3]; 1439 -> 266[label="",style="dashed", color="red", weight=0]; 1439[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1439 -> 1737[label="",style="dashed", color="magenta", weight=3]; 1439 -> 1738[label="",style="dashed", color="magenta", weight=3]; 1440 -> 267[label="",style="dashed", color="red", weight=0]; 1440[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1440 -> 1739[label="",style="dashed", color="magenta", weight=3]; 1440 -> 1740[label="",style="dashed", color="magenta", weight=3]; 1441 -> 268[label="",style="dashed", color="red", weight=0]; 1441[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1441 -> 1741[label="",style="dashed", color="magenta", weight=3]; 1441 -> 1742[label="",style="dashed", color="magenta", weight=3]; 1442 -> 269[label="",style="dashed", color="red", weight=0]; 1442[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1442 -> 1743[label="",style="dashed", color="magenta", weight=3]; 1442 -> 1744[label="",style="dashed", color="magenta", weight=3]; 1443 -> 270[label="",style="dashed", color="red", weight=0]; 1443[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1443 -> 1745[label="",style="dashed", color="magenta", weight=3]; 1443 -> 1746[label="",style="dashed", color="magenta", weight=3]; 1444 -> 271[label="",style="dashed", color="red", weight=0]; 1444[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1444 -> 1747[label="",style="dashed", color="magenta", weight=3]; 1444 -> 1748[label="",style="dashed", color="magenta", weight=3]; 1445 -> 272[label="",style="dashed", color="red", weight=0]; 1445[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1445 -> 1749[label="",style="dashed", color="magenta", weight=3]; 1445 -> 1750[label="",style="dashed", color="magenta", weight=3]; 1446 -> 273[label="",style="dashed", color="red", weight=0]; 1446[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1446 -> 1751[label="",style="dashed", color="magenta", weight=3]; 1446 -> 1752[label="",style="dashed", color="magenta", weight=3]; 1447 -> 274[label="",style="dashed", color="red", weight=0]; 1447[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1447 -> 1753[label="",style="dashed", color="magenta", weight=3]; 1447 -> 1754[label="",style="dashed", color="magenta", weight=3]; 1448[label="vwx4001",fontsize=16,color="green",shape="box"];1449[label="vwx3001",fontsize=16,color="green",shape="box"];1450[label="vwx4000",fontsize=16,color="green",shape="box"];1451[label="vwx3000",fontsize=16,color="green",shape="box"];1452[label="vwx4000",fontsize=16,color="green",shape="box"];1453[label="vwx3000",fontsize=16,color="green",shape="box"];1454[label="vwx4000",fontsize=16,color="green",shape="box"];1455[label="vwx3000",fontsize=16,color="green",shape="box"];1456[label="vwx4000",fontsize=16,color="green",shape="box"];1457[label="vwx3000",fontsize=16,color="green",shape="box"];1458[label="vwx4000",fontsize=16,color="green",shape="box"];1459[label="vwx3000",fontsize=16,color="green",shape="box"];1460[label="vwx4000",fontsize=16,color="green",shape="box"];1461[label="vwx3000",fontsize=16,color="green",shape="box"];1462[label="vwx4000",fontsize=16,color="green",shape="box"];1463[label="vwx3000",fontsize=16,color="green",shape="box"];1464[label="vwx4000",fontsize=16,color="green",shape="box"];1465[label="vwx3000",fontsize=16,color="green",shape="box"];1466[label="vwx4000",fontsize=16,color="green",shape="box"];1467[label="vwx3000",fontsize=16,color="green",shape="box"];1468[label="vwx4000",fontsize=16,color="green",shape="box"];1469[label="vwx3000",fontsize=16,color="green",shape="box"];1470[label="vwx4000",fontsize=16,color="green",shape="box"];1471[label="vwx3000",fontsize=16,color="green",shape="box"];1472[label="vwx4000",fontsize=16,color="green",shape="box"];1473[label="vwx3000",fontsize=16,color="green",shape="box"];1474[label="vwx4000",fontsize=16,color="green",shape="box"];1475[label="vwx3000",fontsize=16,color="green",shape="box"];1476[label="vwx4000",fontsize=16,color="green",shape="box"];1477[label="vwx3000",fontsize=16,color="green",shape="box"];1478[label="vwx4000",fontsize=16,color="green",shape="box"];1479[label="vwx3000",fontsize=16,color="green",shape="box"];1480[label="vwx4000",fontsize=16,color="green",shape="box"];1481[label="vwx3000",fontsize=16,color="green",shape="box"];1482[label="vwx4000",fontsize=16,color="green",shape="box"];1483[label="vwx3000",fontsize=16,color="green",shape="box"];1484[label="vwx4000",fontsize=16,color="green",shape="box"];1485[label="vwx3000",fontsize=16,color="green",shape="box"];1486[label="vwx4000",fontsize=16,color="green",shape="box"];1487[label="vwx3000",fontsize=16,color="green",shape="box"];1488[label="vwx4000",fontsize=16,color="green",shape="box"];1489[label="vwx3000",fontsize=16,color="green",shape="box"];1490[label="vwx4000",fontsize=16,color="green",shape="box"];1491[label="vwx3000",fontsize=16,color="green",shape="box"];1492[label="vwx4000",fontsize=16,color="green",shape="box"];1493[label="vwx3000",fontsize=16,color="green",shape="box"];1494[label="vwx4000",fontsize=16,color="green",shape="box"];1495[label="vwx3000",fontsize=16,color="green",shape="box"];1496[label="vwx4000",fontsize=16,color="green",shape="box"];1497[label="vwx3000",fontsize=16,color="green",shape="box"];1498[label="vwx4000",fontsize=16,color="green",shape="box"];1499[label="vwx3000",fontsize=16,color="green",shape="box"];1500[label="vwx4000",fontsize=16,color="green",shape="box"];1501[label="vwx3000",fontsize=16,color="green",shape="box"];1502[label="vwx4000",fontsize=16,color="green",shape="box"];1503[label="vwx3000",fontsize=16,color="green",shape="box"];1504[label="vwx4000",fontsize=16,color="green",shape="box"];1505[label="vwx3000",fontsize=16,color="green",shape="box"];1506 -> 263[label="",style="dashed", color="red", weight=0]; 1506[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1506 -> 1755[label="",style="dashed", color="magenta", weight=3]; 1506 -> 1756[label="",style="dashed", color="magenta", weight=3]; 1507 -> 272[label="",style="dashed", color="red", weight=0]; 1507[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1507 -> 1757[label="",style="dashed", color="magenta", weight=3]; 1507 -> 1758[label="",style="dashed", color="magenta", weight=3]; 1508 -> 263[label="",style="dashed", color="red", weight=0]; 1508[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];1508 -> 1759[label="",style="dashed", color="magenta", weight=3]; 1508 -> 1760[label="",style="dashed", color="magenta", weight=3]; 1509 -> 272[label="",style="dashed", color="red", weight=0]; 1509[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];1509 -> 1761[label="",style="dashed", color="magenta", weight=3]; 1509 -> 1762[label="",style="dashed", color="magenta", weight=3]; 1510 -> 261[label="",style="dashed", color="red", weight=0]; 1510[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1510 -> 1763[label="",style="dashed", color="magenta", weight=3]; 1510 -> 1764[label="",style="dashed", color="magenta", weight=3]; 1511 -> 262[label="",style="dashed", color="red", weight=0]; 1511[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1511 -> 1765[label="",style="dashed", color="magenta", weight=3]; 1511 -> 1766[label="",style="dashed", color="magenta", weight=3]; 1512 -> 263[label="",style="dashed", color="red", weight=0]; 1512[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1512 -> 1767[label="",style="dashed", color="magenta", weight=3]; 1512 -> 1768[label="",style="dashed", color="magenta", weight=3]; 1513 -> 264[label="",style="dashed", color="red", weight=0]; 1513[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1513 -> 1769[label="",style="dashed", color="magenta", weight=3]; 1513 -> 1770[label="",style="dashed", color="magenta", weight=3]; 1514 -> 265[label="",style="dashed", color="red", weight=0]; 1514[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1514 -> 1771[label="",style="dashed", color="magenta", weight=3]; 1514 -> 1772[label="",style="dashed", color="magenta", weight=3]; 1515 -> 266[label="",style="dashed", color="red", weight=0]; 1515[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1515 -> 1773[label="",style="dashed", color="magenta", weight=3]; 1515 -> 1774[label="",style="dashed", color="magenta", weight=3]; 1516 -> 267[label="",style="dashed", color="red", weight=0]; 1516[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1516 -> 1775[label="",style="dashed", color="magenta", weight=3]; 1516 -> 1776[label="",style="dashed", color="magenta", weight=3]; 1517 -> 268[label="",style="dashed", color="red", weight=0]; 1517[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1517 -> 1777[label="",style="dashed", color="magenta", weight=3]; 1517 -> 1778[label="",style="dashed", color="magenta", weight=3]; 1518 -> 269[label="",style="dashed", color="red", weight=0]; 1518[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1518 -> 1779[label="",style="dashed", color="magenta", weight=3]; 1518 -> 1780[label="",style="dashed", color="magenta", weight=3]; 1519 -> 270[label="",style="dashed", color="red", weight=0]; 1519[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1519 -> 1781[label="",style="dashed", color="magenta", weight=3]; 1519 -> 1782[label="",style="dashed", color="magenta", weight=3]; 1520 -> 271[label="",style="dashed", color="red", weight=0]; 1520[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1520 -> 1783[label="",style="dashed", color="magenta", weight=3]; 1520 -> 1784[label="",style="dashed", color="magenta", weight=3]; 1521 -> 272[label="",style="dashed", color="red", weight=0]; 1521[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1521 -> 1785[label="",style="dashed", color="magenta", weight=3]; 1521 -> 1786[label="",style="dashed", color="magenta", weight=3]; 1522 -> 273[label="",style="dashed", color="red", weight=0]; 1522[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1522 -> 1787[label="",style="dashed", color="magenta", weight=3]; 1522 -> 1788[label="",style="dashed", color="magenta", weight=3]; 1523 -> 274[label="",style="dashed", color="red", weight=0]; 1523[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1523 -> 1789[label="",style="dashed", color="magenta", weight=3]; 1523 -> 1790[label="",style="dashed", color="magenta", weight=3]; 1524 -> 261[label="",style="dashed", color="red", weight=0]; 1524[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];1524 -> 1791[label="",style="dashed", color="magenta", weight=3]; 1524 -> 1792[label="",style="dashed", color="magenta", weight=3]; 1525 -> 262[label="",style="dashed", color="red", weight=0]; 1525[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];1525 -> 1793[label="",style="dashed", color="magenta", weight=3]; 1525 -> 1794[label="",style="dashed", color="magenta", weight=3]; 1526 -> 263[label="",style="dashed", color="red", weight=0]; 1526[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];1526 -> 1795[label="",style="dashed", color="magenta", weight=3]; 1526 -> 1796[label="",style="dashed", color="magenta", weight=3]; 1527 -> 264[label="",style="dashed", color="red", weight=0]; 1527[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];1527 -> 1797[label="",style="dashed", color="magenta", weight=3]; 1527 -> 1798[label="",style="dashed", color="magenta", weight=3]; 1528 -> 265[label="",style="dashed", color="red", weight=0]; 1528[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];1528 -> 1799[label="",style="dashed", color="magenta", weight=3]; 1528 -> 1800[label="",style="dashed", color="magenta", weight=3]; 1529 -> 266[label="",style="dashed", color="red", weight=0]; 1529[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];1529 -> 1801[label="",style="dashed", color="magenta", weight=3]; 1529 -> 1802[label="",style="dashed", color="magenta", weight=3]; 1530 -> 267[label="",style="dashed", color="red", weight=0]; 1530[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];1530 -> 1803[label="",style="dashed", color="magenta", weight=3]; 1530 -> 1804[label="",style="dashed", color="magenta", weight=3]; 1531 -> 268[label="",style="dashed", color="red", weight=0]; 1531[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];1531 -> 1805[label="",style="dashed", color="magenta", weight=3]; 1531 -> 1806[label="",style="dashed", color="magenta", weight=3]; 1532 -> 269[label="",style="dashed", color="red", weight=0]; 1532[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];1532 -> 1807[label="",style="dashed", color="magenta", weight=3]; 1532 -> 1808[label="",style="dashed", color="magenta", weight=3]; 1533 -> 270[label="",style="dashed", color="red", weight=0]; 1533[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];1533 -> 1809[label="",style="dashed", color="magenta", weight=3]; 1533 -> 1810[label="",style="dashed", color="magenta", weight=3]; 1534 -> 271[label="",style="dashed", color="red", weight=0]; 1534[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];1534 -> 1811[label="",style="dashed", color="magenta", weight=3]; 1534 -> 1812[label="",style="dashed", color="magenta", weight=3]; 1535 -> 272[label="",style="dashed", color="red", weight=0]; 1535[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];1535 -> 1813[label="",style="dashed", color="magenta", weight=3]; 1535 -> 1814[label="",style="dashed", color="magenta", weight=3]; 1536 -> 273[label="",style="dashed", color="red", weight=0]; 1536[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];1536 -> 1815[label="",style="dashed", color="magenta", weight=3]; 1536 -> 1816[label="",style="dashed", color="magenta", weight=3]; 1537 -> 274[label="",style="dashed", color="red", weight=0]; 1537[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];1537 -> 1817[label="",style="dashed", color="magenta", weight=3]; 1537 -> 1818[label="",style="dashed", color="magenta", weight=3]; 1538[label="vwx4000",fontsize=16,color="green",shape="box"];1539[label="vwx3000",fontsize=16,color="green",shape="box"];1540[label="vwx4000",fontsize=16,color="green",shape="box"];1541[label="vwx3000",fontsize=16,color="green",shape="box"];1542[label="vwx4000",fontsize=16,color="green",shape="box"];1543[label="vwx3000",fontsize=16,color="green",shape="box"];1544[label="vwx4000",fontsize=16,color="green",shape="box"];1545[label="vwx3000",fontsize=16,color="green",shape="box"];1546[label="vwx4000",fontsize=16,color="green",shape="box"];1547[label="vwx3000",fontsize=16,color="green",shape="box"];1548[label="vwx4000",fontsize=16,color="green",shape="box"];1549[label="vwx3000",fontsize=16,color="green",shape="box"];1550[label="vwx4000",fontsize=16,color="green",shape="box"];1551[label="vwx3000",fontsize=16,color="green",shape="box"];1552[label="vwx4000",fontsize=16,color="green",shape="box"];1553[label="vwx3000",fontsize=16,color="green",shape="box"];1554[label="vwx4000",fontsize=16,color="green",shape="box"];1555[label="vwx3000",fontsize=16,color="green",shape="box"];1556[label="vwx4000",fontsize=16,color="green",shape="box"];1557[label="vwx3000",fontsize=16,color="green",shape="box"];1558[label="vwx4000",fontsize=16,color="green",shape="box"];1559[label="vwx3000",fontsize=16,color="green",shape="box"];1560[label="vwx4000",fontsize=16,color="green",shape="box"];1561[label="vwx3000",fontsize=16,color="green",shape="box"];1562[label="vwx4000",fontsize=16,color="green",shape="box"];1563[label="vwx3000",fontsize=16,color="green",shape="box"];1564[label="vwx4000",fontsize=16,color="green",shape="box"];1565[label="vwx3000",fontsize=16,color="green",shape="box"];1566 -> 137[label="",style="dashed", color="red", weight=0]; 1566[label="vwx3001 * vwx4000",fontsize=16,color="magenta"];1566 -> 1819[label="",style="dashed", color="magenta", weight=3]; 1566 -> 1820[label="",style="dashed", color="magenta", weight=3]; 1567 -> 137[label="",style="dashed", color="red", weight=0]; 1567[label="vwx3000 * vwx4001",fontsize=16,color="magenta"];1567 -> 1821[label="",style="dashed", color="magenta", weight=3]; 1567 -> 1822[label="",style="dashed", color="magenta", weight=3]; 1568[label="primEqInt (Pos (Succ vwx30000)) (Pos (Succ vwx40000))",fontsize=16,color="black",shape="box"];1568 -> 1823[label="",style="solid", color="black", weight=3]; 1569[label="primEqInt (Pos (Succ vwx30000)) (Pos Zero)",fontsize=16,color="black",shape="box"];1569 -> 1824[label="",style="solid", color="black", weight=3]; 1570[label="False",fontsize=16,color="green",shape="box"];1571[label="primEqInt (Pos Zero) (Pos (Succ vwx40000))",fontsize=16,color="black",shape="box"];1571 -> 1825[label="",style="solid", color="black", weight=3]; 1572[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1572 -> 1826[label="",style="solid", color="black", weight=3]; 1573[label="primEqInt (Pos Zero) (Neg (Succ vwx40000))",fontsize=16,color="black",shape="box"];1573 -> 1827[label="",style="solid", color="black", weight=3]; 1574[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1574 -> 1828[label="",style="solid", color="black", weight=3]; 1575[label="False",fontsize=16,color="green",shape="box"];1576[label="primEqInt (Neg (Succ vwx30000)) (Neg (Succ vwx40000))",fontsize=16,color="black",shape="box"];1576 -> 1829[label="",style="solid", color="black", weight=3]; 1577[label="primEqInt (Neg (Succ vwx30000)) (Neg Zero)",fontsize=16,color="black",shape="box"];1577 -> 1830[label="",style="solid", color="black", weight=3]; 1578[label="primEqInt (Neg Zero) (Pos (Succ vwx40000))",fontsize=16,color="black",shape="box"];1578 -> 1831[label="",style="solid", color="black", weight=3]; 1579[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1579 -> 1832[label="",style="solid", color="black", weight=3]; 1580[label="primEqInt (Neg Zero) (Neg (Succ vwx40000))",fontsize=16,color="black",shape="box"];1580 -> 1833[label="",style="solid", color="black", weight=3]; 1581[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1581 -> 1834[label="",style="solid", color="black", weight=3]; 1582 -> 261[label="",style="dashed", color="red", weight=0]; 1582[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1582 -> 1835[label="",style="dashed", color="magenta", weight=3]; 1582 -> 1836[label="",style="dashed", color="magenta", weight=3]; 1583 -> 262[label="",style="dashed", color="red", weight=0]; 1583[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1583 -> 1837[label="",style="dashed", color="magenta", weight=3]; 1583 -> 1838[label="",style="dashed", color="magenta", weight=3]; 1584 -> 263[label="",style="dashed", color="red", weight=0]; 1584[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1584 -> 1839[label="",style="dashed", color="magenta", weight=3]; 1584 -> 1840[label="",style="dashed", color="magenta", weight=3]; 1585 -> 264[label="",style="dashed", color="red", weight=0]; 1585[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1585 -> 1841[label="",style="dashed", color="magenta", weight=3]; 1585 -> 1842[label="",style="dashed", color="magenta", weight=3]; 1586 -> 265[label="",style="dashed", color="red", weight=0]; 1586[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1586 -> 1843[label="",style="dashed", color="magenta", weight=3]; 1586 -> 1844[label="",style="dashed", color="magenta", weight=3]; 1587 -> 266[label="",style="dashed", color="red", weight=0]; 1587[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1587 -> 1845[label="",style="dashed", color="magenta", weight=3]; 1587 -> 1846[label="",style="dashed", color="magenta", weight=3]; 1588 -> 267[label="",style="dashed", color="red", weight=0]; 1588[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1588 -> 1847[label="",style="dashed", color="magenta", weight=3]; 1588 -> 1848[label="",style="dashed", color="magenta", weight=3]; 1589 -> 268[label="",style="dashed", color="red", weight=0]; 1589[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1589 -> 1849[label="",style="dashed", color="magenta", weight=3]; 1589 -> 1850[label="",style="dashed", color="magenta", weight=3]; 1590 -> 269[label="",style="dashed", color="red", weight=0]; 1590[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1590 -> 1851[label="",style="dashed", color="magenta", weight=3]; 1590 -> 1852[label="",style="dashed", color="magenta", weight=3]; 1591 -> 270[label="",style="dashed", color="red", weight=0]; 1591[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1591 -> 1853[label="",style="dashed", color="magenta", weight=3]; 1591 -> 1854[label="",style="dashed", color="magenta", weight=3]; 1592 -> 271[label="",style="dashed", color="red", weight=0]; 1592[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1592 -> 1855[label="",style="dashed", color="magenta", weight=3]; 1592 -> 1856[label="",style="dashed", color="magenta", weight=3]; 1593 -> 272[label="",style="dashed", color="red", weight=0]; 1593[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1593 -> 1857[label="",style="dashed", color="magenta", weight=3]; 1593 -> 1858[label="",style="dashed", color="magenta", weight=3]; 1594 -> 273[label="",style="dashed", color="red", weight=0]; 1594[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1594 -> 1859[label="",style="dashed", color="magenta", weight=3]; 1594 -> 1860[label="",style="dashed", color="magenta", weight=3]; 1595 -> 274[label="",style="dashed", color="red", weight=0]; 1595[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1595 -> 1861[label="",style="dashed", color="magenta", weight=3]; 1595 -> 1862[label="",style="dashed", color="magenta", weight=3]; 1596[label="vwx3001 == vwx4001",fontsize=16,color="blue",shape="box"];3236[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1596 -> 3236[label="",style="solid", color="blue", weight=9]; 3236 -> 1863[label="",style="solid", color="blue", weight=3]; 3237[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1596 -> 3237[label="",style="solid", color="blue", weight=9]; 3237 -> 1864[label="",style="solid", color="blue", weight=3]; 3238[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1596 -> 3238[label="",style="solid", color="blue", weight=9]; 3238 -> 1865[label="",style="solid", color="blue", weight=3]; 3239[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1596 -> 3239[label="",style="solid", color="blue", weight=9]; 3239 -> 1866[label="",style="solid", color="blue", weight=3]; 3240[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1596 -> 3240[label="",style="solid", color="blue", weight=9]; 3240 -> 1867[label="",style="solid", color="blue", weight=3]; 3241[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1596 -> 3241[label="",style="solid", color="blue", weight=9]; 3241 -> 1868[label="",style="solid", color="blue", weight=3]; 3242[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1596 -> 3242[label="",style="solid", color="blue", weight=9]; 3242 -> 1869[label="",style="solid", color="blue", weight=3]; 3243[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1596 -> 3243[label="",style="solid", color="blue", weight=9]; 3243 -> 1870[label="",style="solid", color="blue", weight=3]; 3244[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1596 -> 3244[label="",style="solid", color="blue", weight=9]; 3244 -> 1871[label="",style="solid", color="blue", weight=3]; 3245[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1596 -> 3245[label="",style="solid", color="blue", weight=9]; 3245 -> 1872[label="",style="solid", color="blue", weight=3]; 3246[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1596 -> 3246[label="",style="solid", color="blue", weight=9]; 3246 -> 1873[label="",style="solid", color="blue", weight=3]; 3247[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1596 -> 3247[label="",style="solid", color="blue", weight=9]; 3247 -> 1874[label="",style="solid", color="blue", weight=3]; 3248[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1596 -> 3248[label="",style="solid", color="blue", weight=9]; 3248 -> 1875[label="",style="solid", color="blue", weight=3]; 3249[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1596 -> 3249[label="",style="solid", color="blue", weight=9]; 3249 -> 1876[label="",style="solid", color="blue", weight=3]; 1597[label="vwx3002 == vwx4002",fontsize=16,color="blue",shape="box"];3250[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1597 -> 3250[label="",style="solid", color="blue", weight=9]; 3250 -> 1877[label="",style="solid", color="blue", weight=3]; 3251[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1597 -> 3251[label="",style="solid", color="blue", weight=9]; 3251 -> 1878[label="",style="solid", color="blue", weight=3]; 3252[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1597 -> 3252[label="",style="solid", color="blue", weight=9]; 3252 -> 1879[label="",style="solid", color="blue", weight=3]; 3253[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1597 -> 3253[label="",style="solid", color="blue", weight=9]; 3253 -> 1880[label="",style="solid", color="blue", weight=3]; 3254[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1597 -> 3254[label="",style="solid", color="blue", weight=9]; 3254 -> 1881[label="",style="solid", color="blue", weight=3]; 3255[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1597 -> 3255[label="",style="solid", color="blue", weight=9]; 3255 -> 1882[label="",style="solid", color="blue", weight=3]; 3256[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1597 -> 3256[label="",style="solid", color="blue", weight=9]; 3256 -> 1883[label="",style="solid", color="blue", weight=3]; 3257[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1597 -> 3257[label="",style="solid", color="blue", weight=9]; 3257 -> 1884[label="",style="solid", color="blue", weight=3]; 3258[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1597 -> 3258[label="",style="solid", color="blue", weight=9]; 3258 -> 1885[label="",style="solid", color="blue", weight=3]; 3259[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1597 -> 3259[label="",style="solid", color="blue", weight=9]; 3259 -> 1886[label="",style="solid", color="blue", weight=3]; 3260[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1597 -> 3260[label="",style="solid", color="blue", weight=9]; 3260 -> 1887[label="",style="solid", color="blue", weight=3]; 3261[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1597 -> 3261[label="",style="solid", color="blue", weight=9]; 3261 -> 1888[label="",style="solid", color="blue", weight=3]; 3262[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1597 -> 3262[label="",style="solid", color="blue", weight=9]; 3262 -> 1889[label="",style="solid", color="blue", weight=3]; 3263[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1597 -> 3263[label="",style="solid", color="blue", weight=9]; 3263 -> 1890[label="",style="solid", color="blue", weight=3]; 1598 -> 137[label="",style="dashed", color="red", weight=0]; 1598[label="vwx3001 * vwx4000",fontsize=16,color="magenta"];1598 -> 1891[label="",style="dashed", color="magenta", weight=3]; 1598 -> 1892[label="",style="dashed", color="magenta", weight=3]; 1599 -> 137[label="",style="dashed", color="red", weight=0]; 1599[label="vwx3000 * vwx4001",fontsize=16,color="magenta"];1599 -> 1893[label="",style="dashed", color="magenta", weight=3]; 1599 -> 1894[label="",style="dashed", color="magenta", weight=3]; 1601 -> 23[label="",style="dashed", color="red", weight=0]; 1601[label="compare vwx26 vwx27",fontsize=16,color="magenta"];1601 -> 1895[label="",style="dashed", color="magenta", weight=3]; 1601 -> 1896[label="",style="dashed", color="magenta", weight=3]; 1600[label="vwx138 /= GT",fontsize=16,color="black",shape="triangle"];1600 -> 1897[label="",style="solid", color="black", weight=3]; 1602 -> 24[label="",style="dashed", color="red", weight=0]; 1602[label="compare vwx26 vwx27",fontsize=16,color="magenta"];1602 -> 1898[label="",style="dashed", color="magenta", weight=3]; 1602 -> 1899[label="",style="dashed", color="magenta", weight=3]; 1609[label="(vwx260,vwx261) <= (vwx270,vwx271)",fontsize=16,color="black",shape="box"];1609 -> 1900[label="",style="solid", color="black", weight=3]; 1603 -> 4[label="",style="dashed", color="red", weight=0]; 1603[label="compare vwx26 vwx27",fontsize=16,color="magenta"];1603 -> 1901[label="",style="dashed", color="magenta", weight=3]; 1603 -> 1902[label="",style="dashed", color="magenta", weight=3]; 1604 -> 27[label="",style="dashed", color="red", weight=0]; 1604[label="compare vwx26 vwx27",fontsize=16,color="magenta"];1604 -> 1903[label="",style="dashed", color="magenta", weight=3]; 1604 -> 1904[label="",style="dashed", color="magenta", weight=3]; 1610[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];1610 -> 1905[label="",style="solid", color="black", weight=3]; 1611[label="Nothing <= Just vwx270",fontsize=16,color="black",shape="box"];1611 -> 1906[label="",style="solid", color="black", weight=3]; 1612[label="Just vwx260 <= Nothing",fontsize=16,color="black",shape="box"];1612 -> 1907[label="",style="solid", color="black", weight=3]; 1613[label="Just vwx260 <= Just vwx270",fontsize=16,color="black",shape="box"];1613 -> 1908[label="",style="solid", color="black", weight=3]; 1614[label="False <= False",fontsize=16,color="black",shape="box"];1614 -> 1909[label="",style="solid", color="black", weight=3]; 1615[label="False <= True",fontsize=16,color="black",shape="box"];1615 -> 1910[label="",style="solid", color="black", weight=3]; 1616[label="True <= False",fontsize=16,color="black",shape="box"];1616 -> 1911[label="",style="solid", color="black", weight=3]; 1617[label="True <= True",fontsize=16,color="black",shape="box"];1617 -> 1912[label="",style="solid", color="black", weight=3]; 1605 -> 30[label="",style="dashed", color="red", weight=0]; 1605[label="compare vwx26 vwx27",fontsize=16,color="magenta"];1605 -> 1913[label="",style="dashed", color="magenta", weight=3]; 1605 -> 1914[label="",style="dashed", color="magenta", weight=3]; 1618[label="Left vwx260 <= Left vwx270",fontsize=16,color="black",shape="box"];1618 -> 1915[label="",style="solid", color="black", weight=3]; 1619[label="Left vwx260 <= Right vwx270",fontsize=16,color="black",shape="box"];1619 -> 1916[label="",style="solid", color="black", weight=3]; 1620[label="Right vwx260 <= Left vwx270",fontsize=16,color="black",shape="box"];1620 -> 1917[label="",style="solid", color="black", weight=3]; 1621[label="Right vwx260 <= Right vwx270",fontsize=16,color="black",shape="box"];1621 -> 1918[label="",style="solid", color="black", weight=3]; 1622[label="(vwx260,vwx261,vwx262) <= (vwx270,vwx271,vwx272)",fontsize=16,color="black",shape="box"];1622 -> 1919[label="",style="solid", color="black", weight=3]; 1606 -> 33[label="",style="dashed", color="red", weight=0]; 1606[label="compare vwx26 vwx27",fontsize=16,color="magenta"];1606 -> 1920[label="",style="dashed", color="magenta", weight=3]; 1606 -> 1921[label="",style="dashed", color="magenta", weight=3]; 1623[label="LT <= LT",fontsize=16,color="black",shape="box"];1623 -> 1922[label="",style="solid", color="black", weight=3]; 1624[label="LT <= EQ",fontsize=16,color="black",shape="box"];1624 -> 1923[label="",style="solid", color="black", weight=3]; 1625[label="LT <= GT",fontsize=16,color="black",shape="box"];1625 -> 1924[label="",style="solid", color="black", weight=3]; 1626[label="EQ <= LT",fontsize=16,color="black",shape="box"];1626 -> 1925[label="",style="solid", color="black", weight=3]; 1627[label="EQ <= EQ",fontsize=16,color="black",shape="box"];1627 -> 1926[label="",style="solid", color="black", weight=3]; 1628[label="EQ <= GT",fontsize=16,color="black",shape="box"];1628 -> 1927[label="",style="solid", color="black", weight=3]; 1629[label="GT <= LT",fontsize=16,color="black",shape="box"];1629 -> 1928[label="",style="solid", color="black", weight=3]; 1630[label="GT <= EQ",fontsize=16,color="black",shape="box"];1630 -> 1929[label="",style="solid", color="black", weight=3]; 1631[label="GT <= GT",fontsize=16,color="black",shape="box"];1631 -> 1930[label="",style="solid", color="black", weight=3]; 1607 -> 35[label="",style="dashed", color="red", weight=0]; 1607[label="compare vwx26 vwx27",fontsize=16,color="magenta"];1607 -> 1931[label="",style="dashed", color="magenta", weight=3]; 1607 -> 1932[label="",style="dashed", color="magenta", weight=3]; 1608 -> 36[label="",style="dashed", color="red", weight=0]; 1608[label="compare vwx26 vwx27",fontsize=16,color="magenta"];1608 -> 1933[label="",style="dashed", color="magenta", weight=3]; 1608 -> 1934[label="",style="dashed", color="magenta", weight=3]; 1632[label="GT",fontsize=16,color="green",shape="box"];1633[label="GT",fontsize=16,color="green",shape="box"];1634[label="GT",fontsize=16,color="green",shape="box"];1635[label="vwx54",fontsize=16,color="green",shape="box"];1636[label="vwx51",fontsize=16,color="green",shape="box"];1637[label="vwx54",fontsize=16,color="green",shape="box"];1638[label="vwx51",fontsize=16,color="green",shape="box"];1639[label="vwx54",fontsize=16,color="green",shape="box"];1640[label="vwx51",fontsize=16,color="green",shape="box"];1641[label="vwx54",fontsize=16,color="green",shape="box"];1642[label="vwx51",fontsize=16,color="green",shape="box"];1643[label="vwx54",fontsize=16,color="green",shape="box"];1644[label="vwx51",fontsize=16,color="green",shape="box"];1645[label="vwx54",fontsize=16,color="green",shape="box"];1646[label="vwx51",fontsize=16,color="green",shape="box"];1647[label="vwx54",fontsize=16,color="green",shape="box"];1648[label="vwx51",fontsize=16,color="green",shape="box"];1649[label="vwx54",fontsize=16,color="green",shape="box"];1650[label="vwx51",fontsize=16,color="green",shape="box"];1651[label="vwx54",fontsize=16,color="green",shape="box"];1652[label="vwx51",fontsize=16,color="green",shape="box"];1653[label="vwx54",fontsize=16,color="green",shape="box"];1654[label="vwx51",fontsize=16,color="green",shape="box"];1655[label="vwx54",fontsize=16,color="green",shape="box"];1656[label="vwx51",fontsize=16,color="green",shape="box"];1657[label="vwx54",fontsize=16,color="green",shape="box"];1658[label="vwx51",fontsize=16,color="green",shape="box"];1659[label="vwx54",fontsize=16,color="green",shape="box"];1660[label="vwx51",fontsize=16,color="green",shape="box"];1661[label="vwx54",fontsize=16,color="green",shape="box"];1662[label="vwx51",fontsize=16,color="green",shape="box"];1670 -> 968[label="",style="dashed", color="red", weight=0]; 1670[label="vwx52 < vwx55",fontsize=16,color="magenta"];1670 -> 1935[label="",style="dashed", color="magenta", weight=3]; 1670 -> 1936[label="",style="dashed", color="magenta", weight=3]; 1671 -> 969[label="",style="dashed", color="red", weight=0]; 1671[label="vwx52 < vwx55",fontsize=16,color="magenta"];1671 -> 1937[label="",style="dashed", color="magenta", weight=3]; 1671 -> 1938[label="",style="dashed", color="magenta", weight=3]; 1672 -> 970[label="",style="dashed", color="red", weight=0]; 1672[label="vwx52 < vwx55",fontsize=16,color="magenta"];1672 -> 1939[label="",style="dashed", color="magenta", weight=3]; 1672 -> 1940[label="",style="dashed", color="magenta", weight=3]; 1673 -> 971[label="",style="dashed", color="red", weight=0]; 1673[label="vwx52 < vwx55",fontsize=16,color="magenta"];1673 -> 1941[label="",style="dashed", color="magenta", weight=3]; 1673 -> 1942[label="",style="dashed", color="magenta", weight=3]; 1674 -> 972[label="",style="dashed", color="red", weight=0]; 1674[label="vwx52 < vwx55",fontsize=16,color="magenta"];1674 -> 1943[label="",style="dashed", color="magenta", weight=3]; 1674 -> 1944[label="",style="dashed", color="magenta", weight=3]; 1675 -> 973[label="",style="dashed", color="red", weight=0]; 1675[label="vwx52 < vwx55",fontsize=16,color="magenta"];1675 -> 1945[label="",style="dashed", color="magenta", weight=3]; 1675 -> 1946[label="",style="dashed", color="magenta", weight=3]; 1676 -> 974[label="",style="dashed", color="red", weight=0]; 1676[label="vwx52 < vwx55",fontsize=16,color="magenta"];1676 -> 1947[label="",style="dashed", color="magenta", weight=3]; 1676 -> 1948[label="",style="dashed", color="magenta", weight=3]; 1677 -> 975[label="",style="dashed", color="red", weight=0]; 1677[label="vwx52 < vwx55",fontsize=16,color="magenta"];1677 -> 1949[label="",style="dashed", color="magenta", weight=3]; 1677 -> 1950[label="",style="dashed", color="magenta", weight=3]; 1678 -> 976[label="",style="dashed", color="red", weight=0]; 1678[label="vwx52 < vwx55",fontsize=16,color="magenta"];1678 -> 1951[label="",style="dashed", color="magenta", weight=3]; 1678 -> 1952[label="",style="dashed", color="magenta", weight=3]; 1679 -> 977[label="",style="dashed", color="red", weight=0]; 1679[label="vwx52 < vwx55",fontsize=16,color="magenta"];1679 -> 1953[label="",style="dashed", color="magenta", weight=3]; 1679 -> 1954[label="",style="dashed", color="magenta", weight=3]; 1680 -> 978[label="",style="dashed", color="red", weight=0]; 1680[label="vwx52 < vwx55",fontsize=16,color="magenta"];1680 -> 1955[label="",style="dashed", color="magenta", weight=3]; 1680 -> 1956[label="",style="dashed", color="magenta", weight=3]; 1681 -> 979[label="",style="dashed", color="red", weight=0]; 1681[label="vwx52 < vwx55",fontsize=16,color="magenta"];1681 -> 1957[label="",style="dashed", color="magenta", weight=3]; 1681 -> 1958[label="",style="dashed", color="magenta", weight=3]; 1682 -> 980[label="",style="dashed", color="red", weight=0]; 1682[label="vwx52 < vwx55",fontsize=16,color="magenta"];1682 -> 1959[label="",style="dashed", color="magenta", weight=3]; 1682 -> 1960[label="",style="dashed", color="magenta", weight=3]; 1683 -> 981[label="",style="dashed", color="red", weight=0]; 1683[label="vwx52 < vwx55",fontsize=16,color="magenta"];1683 -> 1961[label="",style="dashed", color="magenta", weight=3]; 1683 -> 1962[label="",style="dashed", color="magenta", weight=3]; 1684[label="vwx52 == vwx55",fontsize=16,color="blue",shape="box"];3264[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1684 -> 3264[label="",style="solid", color="blue", weight=9]; 3264 -> 1963[label="",style="solid", color="blue", weight=3]; 3265[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1684 -> 3265[label="",style="solid", color="blue", weight=9]; 3265 -> 1964[label="",style="solid", color="blue", weight=3]; 3266[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1684 -> 3266[label="",style="solid", color="blue", weight=9]; 3266 -> 1965[label="",style="solid", color="blue", weight=3]; 3267[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1684 -> 3267[label="",style="solid", color="blue", weight=9]; 3267 -> 1966[label="",style="solid", color="blue", weight=3]; 3268[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1684 -> 3268[label="",style="solid", color="blue", weight=9]; 3268 -> 1967[label="",style="solid", color="blue", weight=3]; 3269[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1684 -> 3269[label="",style="solid", color="blue", weight=9]; 3269 -> 1968[label="",style="solid", color="blue", weight=3]; 3270[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1684 -> 3270[label="",style="solid", color="blue", weight=9]; 3270 -> 1969[label="",style="solid", color="blue", weight=3]; 3271[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1684 -> 3271[label="",style="solid", color="blue", weight=9]; 3271 -> 1970[label="",style="solid", color="blue", weight=3]; 3272[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1684 -> 3272[label="",style="solid", color="blue", weight=9]; 3272 -> 1971[label="",style="solid", color="blue", weight=3]; 3273[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1684 -> 3273[label="",style="solid", color="blue", weight=9]; 3273 -> 1972[label="",style="solid", color="blue", weight=3]; 3274[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1684 -> 3274[label="",style="solid", color="blue", weight=9]; 3274 -> 1973[label="",style="solid", color="blue", weight=3]; 3275[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1684 -> 3275[label="",style="solid", color="blue", weight=9]; 3275 -> 1974[label="",style="solid", color="blue", weight=3]; 3276[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1684 -> 3276[label="",style="solid", color="blue", weight=9]; 3276 -> 1975[label="",style="solid", color="blue", weight=3]; 3277[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1684 -> 3277[label="",style="solid", color="blue", weight=9]; 3277 -> 1976[label="",style="solid", color="blue", weight=3]; 1685[label="vwx53 <= vwx56",fontsize=16,color="blue",shape="box"];3278[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1685 -> 3278[label="",style="solid", color="blue", weight=9]; 3278 -> 1977[label="",style="solid", color="blue", weight=3]; 3279[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1685 -> 3279[label="",style="solid", color="blue", weight=9]; 3279 -> 1978[label="",style="solid", color="blue", weight=3]; 3280[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1685 -> 3280[label="",style="solid", color="blue", weight=9]; 3280 -> 1979[label="",style="solid", color="blue", weight=3]; 3281[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1685 -> 3281[label="",style="solid", color="blue", weight=9]; 3281 -> 1980[label="",style="solid", color="blue", weight=3]; 3282[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1685 -> 3282[label="",style="solid", color="blue", weight=9]; 3282 -> 1981[label="",style="solid", color="blue", weight=3]; 3283[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1685 -> 3283[label="",style="solid", color="blue", weight=9]; 3283 -> 1982[label="",style="solid", color="blue", weight=3]; 3284[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1685 -> 3284[label="",style="solid", color="blue", weight=9]; 3284 -> 1983[label="",style="solid", color="blue", weight=3]; 3285[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1685 -> 3285[label="",style="solid", color="blue", weight=9]; 3285 -> 1984[label="",style="solid", color="blue", weight=3]; 3286[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1685 -> 3286[label="",style="solid", color="blue", weight=9]; 3286 -> 1985[label="",style="solid", color="blue", weight=3]; 3287[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1685 -> 3287[label="",style="solid", color="blue", weight=9]; 3287 -> 1986[label="",style="solid", color="blue", weight=3]; 3288[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1685 -> 3288[label="",style="solid", color="blue", weight=9]; 3288 -> 1987[label="",style="solid", color="blue", weight=3]; 3289[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1685 -> 3289[label="",style="solid", color="blue", weight=9]; 3289 -> 1988[label="",style="solid", color="blue", weight=3]; 3290[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1685 -> 3290[label="",style="solid", color="blue", weight=9]; 3290 -> 1989[label="",style="solid", color="blue", weight=3]; 3291[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1685 -> 3291[label="",style="solid", color="blue", weight=9]; 3291 -> 1990[label="",style="solid", color="blue", weight=3]; 1686[label="False || vwx143",fontsize=16,color="black",shape="box"];1686 -> 1991[label="",style="solid", color="black", weight=3]; 1687[label="True || vwx143",fontsize=16,color="black",shape="box"];1687 -> 1992[label="",style="solid", color="black", weight=3]; 1688[label="compare1 (vwx129,vwx130,vwx131) (vwx132,vwx133,vwx134) False",fontsize=16,color="black",shape="box"];1688 -> 1993[label="",style="solid", color="black", weight=3]; 1689[label="compare1 (vwx129,vwx130,vwx131) (vwx132,vwx133,vwx134) True",fontsize=16,color="black",shape="box"];1689 -> 1994[label="",style="solid", color="black", weight=3]; 1690[label="True",fontsize=16,color="green",shape="box"];1692 -> 757[label="",style="dashed", color="red", weight=0]; 1692[label="primMulNat vwx40000 (Succ vwx30100)",fontsize=16,color="magenta"];1692 -> 1995[label="",style="dashed", color="magenta", weight=3]; 1692 -> 1996[label="",style="dashed", color="magenta", weight=3]; 1691[label="primPlusNat vwx144 (Succ vwx30100)",fontsize=16,color="burlywood",shape="triangle"];3292[label="vwx144/Succ vwx1440",fontsize=10,color="white",style="solid",shape="box"];1691 -> 3292[label="",style="solid", color="burlywood", weight=9]; 3292 -> 1997[label="",style="solid", color="burlywood", weight=3]; 3293[label="vwx144/Zero",fontsize=10,color="white",style="solid",shape="box"];1691 -> 3293[label="",style="solid", color="burlywood", weight=9]; 3293 -> 1998[label="",style="solid", color="burlywood", weight=3]; 1693[label="vwx66",fontsize=16,color="green",shape="box"];1694[label="vwx64",fontsize=16,color="green",shape="box"];1695[label="vwx66",fontsize=16,color="green",shape="box"];1696[label="vwx64",fontsize=16,color="green",shape="box"];1697[label="vwx66",fontsize=16,color="green",shape="box"];1698[label="vwx64",fontsize=16,color="green",shape="box"];1699[label="vwx64",fontsize=16,color="green",shape="box"];1700[label="vwx66",fontsize=16,color="green",shape="box"];1701[label="vwx66",fontsize=16,color="green",shape="box"];1702[label="vwx64",fontsize=16,color="green",shape="box"];1703[label="vwx66",fontsize=16,color="green",shape="box"];1704[label="vwx64",fontsize=16,color="green",shape="box"];1705[label="vwx66",fontsize=16,color="green",shape="box"];1706[label="vwx64",fontsize=16,color="green",shape="box"];1707[label="vwx66",fontsize=16,color="green",shape="box"];1708[label="vwx64",fontsize=16,color="green",shape="box"];1709[label="vwx66",fontsize=16,color="green",shape="box"];1710[label="vwx64",fontsize=16,color="green",shape="box"];1711[label="vwx66",fontsize=16,color="green",shape="box"];1712[label="vwx64",fontsize=16,color="green",shape="box"];1713[label="vwx66",fontsize=16,color="green",shape="box"];1714[label="vwx64",fontsize=16,color="green",shape="box"];1715[label="vwx66",fontsize=16,color="green",shape="box"];1716[label="vwx64",fontsize=16,color="green",shape="box"];1717[label="vwx66",fontsize=16,color="green",shape="box"];1718[label="vwx64",fontsize=16,color="green",shape="box"];1719[label="vwx66",fontsize=16,color="green",shape="box"];1720[label="vwx64",fontsize=16,color="green",shape="box"];1721[label="compare0 (vwx114,vwx115) (vwx116,vwx117) otherwise",fontsize=16,color="black",shape="box"];1721 -> 1999[label="",style="solid", color="black", weight=3]; 1722[label="LT",fontsize=16,color="green",shape="box"];1723[label="primEqNat (Succ vwx30000) (Succ vwx40000)",fontsize=16,color="black",shape="box"];1723 -> 2000[label="",style="solid", color="black", weight=3]; 1724[label="primEqNat (Succ vwx30000) Zero",fontsize=16,color="black",shape="box"];1724 -> 2001[label="",style="solid", color="black", weight=3]; 1725[label="primEqNat Zero (Succ vwx40000)",fontsize=16,color="black",shape="box"];1725 -> 2002[label="",style="solid", color="black", weight=3]; 1726[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];1726 -> 2003[label="",style="solid", color="black", weight=3]; 1727[label="vwx4000",fontsize=16,color="green",shape="box"];1728[label="vwx3000",fontsize=16,color="green",shape="box"];1729[label="vwx4000",fontsize=16,color="green",shape="box"];1730[label="vwx3000",fontsize=16,color="green",shape="box"];1731[label="vwx4000",fontsize=16,color="green",shape="box"];1732[label="vwx3000",fontsize=16,color="green",shape="box"];1733[label="vwx4000",fontsize=16,color="green",shape="box"];1734[label="vwx3000",fontsize=16,color="green",shape="box"];1735[label="vwx4000",fontsize=16,color="green",shape="box"];1736[label="vwx3000",fontsize=16,color="green",shape="box"];1737[label="vwx4000",fontsize=16,color="green",shape="box"];1738[label="vwx3000",fontsize=16,color="green",shape="box"];1739[label="vwx4000",fontsize=16,color="green",shape="box"];1740[label="vwx3000",fontsize=16,color="green",shape="box"];1741[label="vwx4000",fontsize=16,color="green",shape="box"];1742[label="vwx3000",fontsize=16,color="green",shape="box"];1743[label="vwx4000",fontsize=16,color="green",shape="box"];1744[label="vwx3000",fontsize=16,color="green",shape="box"];1745[label="vwx4000",fontsize=16,color="green",shape="box"];1746[label="vwx3000",fontsize=16,color="green",shape="box"];1747[label="vwx4000",fontsize=16,color="green",shape="box"];1748[label="vwx3000",fontsize=16,color="green",shape="box"];1749[label="vwx4000",fontsize=16,color="green",shape="box"];1750[label="vwx3000",fontsize=16,color="green",shape="box"];1751[label="vwx4000",fontsize=16,color="green",shape="box"];1752[label="vwx3000",fontsize=16,color="green",shape="box"];1753[label="vwx4000",fontsize=16,color="green",shape="box"];1754[label="vwx3000",fontsize=16,color="green",shape="box"];1755[label="vwx4000",fontsize=16,color="green",shape="box"];1756[label="vwx3000",fontsize=16,color="green",shape="box"];1757[label="vwx4000",fontsize=16,color="green",shape="box"];1758[label="vwx3000",fontsize=16,color="green",shape="box"];1759[label="vwx4001",fontsize=16,color="green",shape="box"];1760[label="vwx3001",fontsize=16,color="green",shape="box"];1761[label="vwx4001",fontsize=16,color="green",shape="box"];1762[label="vwx3001",fontsize=16,color="green",shape="box"];1763[label="vwx4000",fontsize=16,color="green",shape="box"];1764[label="vwx3000",fontsize=16,color="green",shape="box"];1765[label="vwx4000",fontsize=16,color="green",shape="box"];1766[label="vwx3000",fontsize=16,color="green",shape="box"];1767[label="vwx4000",fontsize=16,color="green",shape="box"];1768[label="vwx3000",fontsize=16,color="green",shape="box"];1769[label="vwx4000",fontsize=16,color="green",shape="box"];1770[label="vwx3000",fontsize=16,color="green",shape="box"];1771[label="vwx4000",fontsize=16,color="green",shape="box"];1772[label="vwx3000",fontsize=16,color="green",shape="box"];1773[label="vwx4000",fontsize=16,color="green",shape="box"];1774[label="vwx3000",fontsize=16,color="green",shape="box"];1775[label="vwx4000",fontsize=16,color="green",shape="box"];1776[label="vwx3000",fontsize=16,color="green",shape="box"];1777[label="vwx4000",fontsize=16,color="green",shape="box"];1778[label="vwx3000",fontsize=16,color="green",shape="box"];1779[label="vwx4000",fontsize=16,color="green",shape="box"];1780[label="vwx3000",fontsize=16,color="green",shape="box"];1781[label="vwx4000",fontsize=16,color="green",shape="box"];1782[label="vwx3000",fontsize=16,color="green",shape="box"];1783[label="vwx4000",fontsize=16,color="green",shape="box"];1784[label="vwx3000",fontsize=16,color="green",shape="box"];1785[label="vwx4000",fontsize=16,color="green",shape="box"];1786[label="vwx3000",fontsize=16,color="green",shape="box"];1787[label="vwx4000",fontsize=16,color="green",shape="box"];1788[label="vwx3000",fontsize=16,color="green",shape="box"];1789[label="vwx4000",fontsize=16,color="green",shape="box"];1790[label="vwx3000",fontsize=16,color="green",shape="box"];1791[label="vwx4001",fontsize=16,color="green",shape="box"];1792[label="vwx3001",fontsize=16,color="green",shape="box"];1793[label="vwx4001",fontsize=16,color="green",shape="box"];1794[label="vwx3001",fontsize=16,color="green",shape="box"];1795[label="vwx4001",fontsize=16,color="green",shape="box"];1796[label="vwx3001",fontsize=16,color="green",shape="box"];1797[label="vwx4001",fontsize=16,color="green",shape="box"];1798[label="vwx3001",fontsize=16,color="green",shape="box"];1799[label="vwx4001",fontsize=16,color="green",shape="box"];1800[label="vwx3001",fontsize=16,color="green",shape="box"];1801[label="vwx4001",fontsize=16,color="green",shape="box"];1802[label="vwx3001",fontsize=16,color="green",shape="box"];1803[label="vwx4001",fontsize=16,color="green",shape="box"];1804[label="vwx3001",fontsize=16,color="green",shape="box"];1805[label="vwx4001",fontsize=16,color="green",shape="box"];1806[label="vwx3001",fontsize=16,color="green",shape="box"];1807[label="vwx4001",fontsize=16,color="green",shape="box"];1808[label="vwx3001",fontsize=16,color="green",shape="box"];1809[label="vwx4001",fontsize=16,color="green",shape="box"];1810[label="vwx3001",fontsize=16,color="green",shape="box"];1811[label="vwx4001",fontsize=16,color="green",shape="box"];1812[label="vwx3001",fontsize=16,color="green",shape="box"];1813[label="vwx4001",fontsize=16,color="green",shape="box"];1814[label="vwx3001",fontsize=16,color="green",shape="box"];1815[label="vwx4001",fontsize=16,color="green",shape="box"];1816[label="vwx3001",fontsize=16,color="green",shape="box"];1817[label="vwx4001",fontsize=16,color="green",shape="box"];1818[label="vwx3001",fontsize=16,color="green",shape="box"];1819[label="vwx4000",fontsize=16,color="green",shape="box"];1820[label="vwx3001",fontsize=16,color="green",shape="box"];1821[label="vwx4001",fontsize=16,color="green",shape="box"];1822[label="vwx3000",fontsize=16,color="green",shape="box"];1823 -> 1156[label="",style="dashed", color="red", weight=0]; 1823[label="primEqNat vwx30000 vwx40000",fontsize=16,color="magenta"];1823 -> 2004[label="",style="dashed", color="magenta", weight=3]; 1823 -> 2005[label="",style="dashed", color="magenta", weight=3]; 1824[label="False",fontsize=16,color="green",shape="box"];1825[label="False",fontsize=16,color="green",shape="box"];1826[label="True",fontsize=16,color="green",shape="box"];1827[label="False",fontsize=16,color="green",shape="box"];1828[label="True",fontsize=16,color="green",shape="box"];1829 -> 1156[label="",style="dashed", color="red", weight=0]; 1829[label="primEqNat vwx30000 vwx40000",fontsize=16,color="magenta"];1829 -> 2006[label="",style="dashed", color="magenta", weight=3]; 1829 -> 2007[label="",style="dashed", color="magenta", weight=3]; 1830[label="False",fontsize=16,color="green",shape="box"];1831[label="False",fontsize=16,color="green",shape="box"];1832[label="True",fontsize=16,color="green",shape="box"];1833[label="False",fontsize=16,color="green",shape="box"];1834[label="True",fontsize=16,color="green",shape="box"];1835[label="vwx4000",fontsize=16,color="green",shape="box"];1836[label="vwx3000",fontsize=16,color="green",shape="box"];1837[label="vwx4000",fontsize=16,color="green",shape="box"];1838[label="vwx3000",fontsize=16,color="green",shape="box"];1839[label="vwx4000",fontsize=16,color="green",shape="box"];1840[label="vwx3000",fontsize=16,color="green",shape="box"];1841[label="vwx4000",fontsize=16,color="green",shape="box"];1842[label="vwx3000",fontsize=16,color="green",shape="box"];1843[label="vwx4000",fontsize=16,color="green",shape="box"];1844[label="vwx3000",fontsize=16,color="green",shape="box"];1845[label="vwx4000",fontsize=16,color="green",shape="box"];1846[label="vwx3000",fontsize=16,color="green",shape="box"];1847[label="vwx4000",fontsize=16,color="green",shape="box"];1848[label="vwx3000",fontsize=16,color="green",shape="box"];1849[label="vwx4000",fontsize=16,color="green",shape="box"];1850[label="vwx3000",fontsize=16,color="green",shape="box"];1851[label="vwx4000",fontsize=16,color="green",shape="box"];1852[label="vwx3000",fontsize=16,color="green",shape="box"];1853[label="vwx4000",fontsize=16,color="green",shape="box"];1854[label="vwx3000",fontsize=16,color="green",shape="box"];1855[label="vwx4000",fontsize=16,color="green",shape="box"];1856[label="vwx3000",fontsize=16,color="green",shape="box"];1857[label="vwx4000",fontsize=16,color="green",shape="box"];1858[label="vwx3000",fontsize=16,color="green",shape="box"];1859[label="vwx4000",fontsize=16,color="green",shape="box"];1860[label="vwx3000",fontsize=16,color="green",shape="box"];1861[label="vwx4000",fontsize=16,color="green",shape="box"];1862[label="vwx3000",fontsize=16,color="green",shape="box"];1863 -> 261[label="",style="dashed", color="red", weight=0]; 1863[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];1863 -> 2008[label="",style="dashed", color="magenta", weight=3]; 1863 -> 2009[label="",style="dashed", color="magenta", weight=3]; 1864 -> 262[label="",style="dashed", color="red", weight=0]; 1864[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];1864 -> 2010[label="",style="dashed", color="magenta", weight=3]; 1864 -> 2011[label="",style="dashed", color="magenta", weight=3]; 1865 -> 263[label="",style="dashed", color="red", weight=0]; 1865[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];1865 -> 2012[label="",style="dashed", color="magenta", weight=3]; 1865 -> 2013[label="",style="dashed", color="magenta", weight=3]; 1866 -> 264[label="",style="dashed", color="red", weight=0]; 1866[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];1866 -> 2014[label="",style="dashed", color="magenta", weight=3]; 1866 -> 2015[label="",style="dashed", color="magenta", weight=3]; 1867 -> 265[label="",style="dashed", color="red", weight=0]; 1867[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];1867 -> 2016[label="",style="dashed", color="magenta", weight=3]; 1867 -> 2017[label="",style="dashed", color="magenta", weight=3]; 1868 -> 266[label="",style="dashed", color="red", weight=0]; 1868[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];1868 -> 2018[label="",style="dashed", color="magenta", weight=3]; 1868 -> 2019[label="",style="dashed", color="magenta", weight=3]; 1869 -> 267[label="",style="dashed", color="red", weight=0]; 1869[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];1869 -> 2020[label="",style="dashed", color="magenta", weight=3]; 1869 -> 2021[label="",style="dashed", color="magenta", weight=3]; 1870 -> 268[label="",style="dashed", color="red", weight=0]; 1870[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];1870 -> 2022[label="",style="dashed", color="magenta", weight=3]; 1870 -> 2023[label="",style="dashed", color="magenta", weight=3]; 1871 -> 269[label="",style="dashed", color="red", weight=0]; 1871[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];1871 -> 2024[label="",style="dashed", color="magenta", weight=3]; 1871 -> 2025[label="",style="dashed", color="magenta", weight=3]; 1872 -> 270[label="",style="dashed", color="red", weight=0]; 1872[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];1872 -> 2026[label="",style="dashed", color="magenta", weight=3]; 1872 -> 2027[label="",style="dashed", color="magenta", weight=3]; 1873 -> 271[label="",style="dashed", color="red", weight=0]; 1873[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];1873 -> 2028[label="",style="dashed", color="magenta", weight=3]; 1873 -> 2029[label="",style="dashed", color="magenta", weight=3]; 1874 -> 272[label="",style="dashed", color="red", weight=0]; 1874[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];1874 -> 2030[label="",style="dashed", color="magenta", weight=3]; 1874 -> 2031[label="",style="dashed", color="magenta", weight=3]; 1875 -> 273[label="",style="dashed", color="red", weight=0]; 1875[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];1875 -> 2032[label="",style="dashed", color="magenta", weight=3]; 1875 -> 2033[label="",style="dashed", color="magenta", weight=3]; 1876 -> 274[label="",style="dashed", color="red", weight=0]; 1876[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];1876 -> 2034[label="",style="dashed", color="magenta", weight=3]; 1876 -> 2035[label="",style="dashed", color="magenta", weight=3]; 1877 -> 261[label="",style="dashed", color="red", weight=0]; 1877[label="vwx3002 == vwx4002",fontsize=16,color="magenta"];1877 -> 2036[label="",style="dashed", color="magenta", weight=3]; 1877 -> 2037[label="",style="dashed", color="magenta", weight=3]; 1878 -> 262[label="",style="dashed", color="red", weight=0]; 1878[label="vwx3002 == vwx4002",fontsize=16,color="magenta"];1878 -> 2038[label="",style="dashed", color="magenta", weight=3]; 1878 -> 2039[label="",style="dashed", color="magenta", weight=3]; 1879 -> 263[label="",style="dashed", color="red", weight=0]; 1879[label="vwx3002 == vwx4002",fontsize=16,color="magenta"];1879 -> 2040[label="",style="dashed", color="magenta", weight=3]; 1879 -> 2041[label="",style="dashed", color="magenta", weight=3]; 1880 -> 264[label="",style="dashed", color="red", weight=0]; 1880[label="vwx3002 == vwx4002",fontsize=16,color="magenta"];1880 -> 2042[label="",style="dashed", color="magenta", weight=3]; 1880 -> 2043[label="",style="dashed", color="magenta", weight=3]; 1881 -> 265[label="",style="dashed", color="red", weight=0]; 1881[label="vwx3002 == vwx4002",fontsize=16,color="magenta"];1881 -> 2044[label="",style="dashed", color="magenta", weight=3]; 1881 -> 2045[label="",style="dashed", color="magenta", weight=3]; 1882 -> 266[label="",style="dashed", color="red", weight=0]; 1882[label="vwx3002 == vwx4002",fontsize=16,color="magenta"];1882 -> 2046[label="",style="dashed", color="magenta", weight=3]; 1882 -> 2047[label="",style="dashed", color="magenta", weight=3]; 1883 -> 267[label="",style="dashed", color="red", weight=0]; 1883[label="vwx3002 == vwx4002",fontsize=16,color="magenta"];1883 -> 2048[label="",style="dashed", color="magenta", weight=3]; 1883 -> 2049[label="",style="dashed", color="magenta", weight=3]; 1884 -> 268[label="",style="dashed", color="red", weight=0]; 1884[label="vwx3002 == vwx4002",fontsize=16,color="magenta"];1884 -> 2050[label="",style="dashed", color="magenta", weight=3]; 1884 -> 2051[label="",style="dashed", color="magenta", weight=3]; 1885 -> 269[label="",style="dashed", color="red", weight=0]; 1885[label="vwx3002 == vwx4002",fontsize=16,color="magenta"];1885 -> 2052[label="",style="dashed", color="magenta", weight=3]; 1885 -> 2053[label="",style="dashed", color="magenta", weight=3]; 1886 -> 270[label="",style="dashed", color="red", weight=0]; 1886[label="vwx3002 == vwx4002",fontsize=16,color="magenta"];1886 -> 2054[label="",style="dashed", color="magenta", weight=3]; 1886 -> 2055[label="",style="dashed", color="magenta", weight=3]; 1887 -> 271[label="",style="dashed", color="red", weight=0]; 1887[label="vwx3002 == vwx4002",fontsize=16,color="magenta"];1887 -> 2056[label="",style="dashed", color="magenta", weight=3]; 1887 -> 2057[label="",style="dashed", color="magenta", weight=3]; 1888 -> 272[label="",style="dashed", color="red", weight=0]; 1888[label="vwx3002 == vwx4002",fontsize=16,color="magenta"];1888 -> 2058[label="",style="dashed", color="magenta", weight=3]; 1888 -> 2059[label="",style="dashed", color="magenta", weight=3]; 1889 -> 273[label="",style="dashed", color="red", weight=0]; 1889[label="vwx3002 == vwx4002",fontsize=16,color="magenta"];1889 -> 2060[label="",style="dashed", color="magenta", weight=3]; 1889 -> 2061[label="",style="dashed", color="magenta", weight=3]; 1890 -> 274[label="",style="dashed", color="red", weight=0]; 1890[label="vwx3002 == vwx4002",fontsize=16,color="magenta"];1890 -> 2062[label="",style="dashed", color="magenta", weight=3]; 1890 -> 2063[label="",style="dashed", color="magenta", weight=3]; 1891[label="vwx4000",fontsize=16,color="green",shape="box"];1892[label="vwx3001",fontsize=16,color="green",shape="box"];1893[label="vwx4001",fontsize=16,color="green",shape="box"];1894[label="vwx3000",fontsize=16,color="green",shape="box"];1895[label="vwx27",fontsize=16,color="green",shape="box"];1896[label="vwx26",fontsize=16,color="green",shape="box"];1897 -> 2064[label="",style="dashed", color="red", weight=0]; 1897[label="not (vwx138 == GT)",fontsize=16,color="magenta"];1897 -> 2065[label="",style="dashed", color="magenta", weight=3]; 1898[label="vwx27",fontsize=16,color="green",shape="box"];1899[label="vwx26",fontsize=16,color="green",shape="box"];1900 -> 1665[label="",style="dashed", color="red", weight=0]; 1900[label="vwx260 < vwx270 || vwx260 == vwx270 && vwx261 <= vwx271",fontsize=16,color="magenta"];1900 -> 2066[label="",style="dashed", color="magenta", weight=3]; 1900 -> 2067[label="",style="dashed", color="magenta", weight=3]; 1901[label="vwx26",fontsize=16,color="green",shape="box"];1902[label="vwx27",fontsize=16,color="green",shape="box"];1903[label="vwx27",fontsize=16,color="green",shape="box"];1904[label="vwx26",fontsize=16,color="green",shape="box"];1905[label="True",fontsize=16,color="green",shape="box"];1906[label="True",fontsize=16,color="green",shape="box"];1907[label="False",fontsize=16,color="green",shape="box"];1908[label="vwx260 <= vwx270",fontsize=16,color="blue",shape="box"];3294[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1908 -> 3294[label="",style="solid", color="blue", weight=9]; 3294 -> 2068[label="",style="solid", color="blue", weight=3]; 3295[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1908 -> 3295[label="",style="solid", color="blue", weight=9]; 3295 -> 2069[label="",style="solid", color="blue", weight=3]; 3296[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1908 -> 3296[label="",style="solid", color="blue", weight=9]; 3296 -> 2070[label="",style="solid", color="blue", weight=3]; 3297[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1908 -> 3297[label="",style="solid", color="blue", weight=9]; 3297 -> 2071[label="",style="solid", color="blue", weight=3]; 3298[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1908 -> 3298[label="",style="solid", color="blue", weight=9]; 3298 -> 2072[label="",style="solid", color="blue", weight=3]; 3299[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1908 -> 3299[label="",style="solid", color="blue", weight=9]; 3299 -> 2073[label="",style="solid", color="blue", weight=3]; 3300[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1908 -> 3300[label="",style="solid", color="blue", weight=9]; 3300 -> 2074[label="",style="solid", color="blue", weight=3]; 3301[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1908 -> 3301[label="",style="solid", color="blue", weight=9]; 3301 -> 2075[label="",style="solid", color="blue", weight=3]; 3302[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1908 -> 3302[label="",style="solid", color="blue", weight=9]; 3302 -> 2076[label="",style="solid", color="blue", weight=3]; 3303[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1908 -> 3303[label="",style="solid", color="blue", weight=9]; 3303 -> 2077[label="",style="solid", color="blue", weight=3]; 3304[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1908 -> 3304[label="",style="solid", color="blue", weight=9]; 3304 -> 2078[label="",style="solid", color="blue", weight=3]; 3305[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1908 -> 3305[label="",style="solid", color="blue", weight=9]; 3305 -> 2079[label="",style="solid", color="blue", weight=3]; 3306[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1908 -> 3306[label="",style="solid", color="blue", weight=9]; 3306 -> 2080[label="",style="solid", color="blue", weight=3]; 3307[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1908 -> 3307[label="",style="solid", color="blue", weight=9]; 3307 -> 2081[label="",style="solid", color="blue", weight=3]; 1909[label="True",fontsize=16,color="green",shape="box"];1910[label="True",fontsize=16,color="green",shape="box"];1911[label="False",fontsize=16,color="green",shape="box"];1912[label="True",fontsize=16,color="green",shape="box"];1913[label="vwx27",fontsize=16,color="green",shape="box"];1914[label="vwx26",fontsize=16,color="green",shape="box"];1915[label="vwx260 <= vwx270",fontsize=16,color="blue",shape="box"];3308[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1915 -> 3308[label="",style="solid", color="blue", weight=9]; 3308 -> 2082[label="",style="solid", color="blue", weight=3]; 3309[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1915 -> 3309[label="",style="solid", color="blue", weight=9]; 3309 -> 2083[label="",style="solid", color="blue", weight=3]; 3310[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1915 -> 3310[label="",style="solid", color="blue", weight=9]; 3310 -> 2084[label="",style="solid", color="blue", weight=3]; 3311[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1915 -> 3311[label="",style="solid", color="blue", weight=9]; 3311 -> 2085[label="",style="solid", color="blue", weight=3]; 3312[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1915 -> 3312[label="",style="solid", color="blue", weight=9]; 3312 -> 2086[label="",style="solid", color="blue", weight=3]; 3313[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1915 -> 3313[label="",style="solid", color="blue", weight=9]; 3313 -> 2087[label="",style="solid", color="blue", weight=3]; 3314[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1915 -> 3314[label="",style="solid", color="blue", weight=9]; 3314 -> 2088[label="",style="solid", color="blue", weight=3]; 3315[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1915 -> 3315[label="",style="solid", color="blue", weight=9]; 3315 -> 2089[label="",style="solid", color="blue", weight=3]; 3316[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1915 -> 3316[label="",style="solid", color="blue", weight=9]; 3316 -> 2090[label="",style="solid", color="blue", weight=3]; 3317[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1915 -> 3317[label="",style="solid", color="blue", weight=9]; 3317 -> 2091[label="",style="solid", color="blue", weight=3]; 3318[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1915 -> 3318[label="",style="solid", color="blue", weight=9]; 3318 -> 2092[label="",style="solid", color="blue", weight=3]; 3319[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1915 -> 3319[label="",style="solid", color="blue", weight=9]; 3319 -> 2093[label="",style="solid", color="blue", weight=3]; 3320[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1915 -> 3320[label="",style="solid", color="blue", weight=9]; 3320 -> 2094[label="",style="solid", color="blue", weight=3]; 3321[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1915 -> 3321[label="",style="solid", color="blue", weight=9]; 3321 -> 2095[label="",style="solid", color="blue", weight=3]; 1916[label="True",fontsize=16,color="green",shape="box"];1917[label="False",fontsize=16,color="green",shape="box"];1918[label="vwx260 <= vwx270",fontsize=16,color="blue",shape="box"];3322[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1918 -> 3322[label="",style="solid", color="blue", weight=9]; 3322 -> 2096[label="",style="solid", color="blue", weight=3]; 3323[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1918 -> 3323[label="",style="solid", color="blue", weight=9]; 3323 -> 2097[label="",style="solid", color="blue", weight=3]; 3324[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1918 -> 3324[label="",style="solid", color="blue", weight=9]; 3324 -> 2098[label="",style="solid", color="blue", weight=3]; 3325[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1918 -> 3325[label="",style="solid", color="blue", weight=9]; 3325 -> 2099[label="",style="solid", color="blue", weight=3]; 3326[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1918 -> 3326[label="",style="solid", color="blue", weight=9]; 3326 -> 2100[label="",style="solid", color="blue", weight=3]; 3327[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1918 -> 3327[label="",style="solid", color="blue", weight=9]; 3327 -> 2101[label="",style="solid", color="blue", weight=3]; 3328[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1918 -> 3328[label="",style="solid", color="blue", weight=9]; 3328 -> 2102[label="",style="solid", color="blue", weight=3]; 3329[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1918 -> 3329[label="",style="solid", color="blue", weight=9]; 3329 -> 2103[label="",style="solid", color="blue", weight=3]; 3330[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1918 -> 3330[label="",style="solid", color="blue", weight=9]; 3330 -> 2104[label="",style="solid", color="blue", weight=3]; 3331[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1918 -> 3331[label="",style="solid", color="blue", weight=9]; 3331 -> 2105[label="",style="solid", color="blue", weight=3]; 3332[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1918 -> 3332[label="",style="solid", color="blue", weight=9]; 3332 -> 2106[label="",style="solid", color="blue", weight=3]; 3333[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1918 -> 3333[label="",style="solid", color="blue", weight=9]; 3333 -> 2107[label="",style="solid", color="blue", weight=3]; 3334[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1918 -> 3334[label="",style="solid", color="blue", weight=9]; 3334 -> 2108[label="",style="solid", color="blue", weight=3]; 3335[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1918 -> 3335[label="",style="solid", color="blue", weight=9]; 3335 -> 2109[label="",style="solid", color="blue", weight=3]; 1919 -> 1665[label="",style="dashed", color="red", weight=0]; 1919[label="vwx260 < vwx270 || vwx260 == vwx270 && (vwx261 < vwx271 || vwx261 == vwx271 && vwx262 <= vwx272)",fontsize=16,color="magenta"];1919 -> 2110[label="",style="dashed", color="magenta", weight=3]; 1919 -> 2111[label="",style="dashed", color="magenta", weight=3]; 1920[label="vwx27",fontsize=16,color="green",shape="box"];1921[label="vwx26",fontsize=16,color="green",shape="box"];1922[label="True",fontsize=16,color="green",shape="box"];1923[label="True",fontsize=16,color="green",shape="box"];1924[label="True",fontsize=16,color="green",shape="box"];1925[label="False",fontsize=16,color="green",shape="box"];1926[label="True",fontsize=16,color="green",shape="box"];1927[label="True",fontsize=16,color="green",shape="box"];1928[label="False",fontsize=16,color="green",shape="box"];1929[label="False",fontsize=16,color="green",shape="box"];1930[label="True",fontsize=16,color="green",shape="box"];1931[label="vwx27",fontsize=16,color="green",shape="box"];1932[label="vwx26",fontsize=16,color="green",shape="box"];1933[label="vwx27",fontsize=16,color="green",shape="box"];1934[label="vwx26",fontsize=16,color="green",shape="box"];1935[label="vwx55",fontsize=16,color="green",shape="box"];1936[label="vwx52",fontsize=16,color="green",shape="box"];1937[label="vwx55",fontsize=16,color="green",shape="box"];1938[label="vwx52",fontsize=16,color="green",shape="box"];1939[label="vwx55",fontsize=16,color="green",shape="box"];1940[label="vwx52",fontsize=16,color="green",shape="box"];1941[label="vwx55",fontsize=16,color="green",shape="box"];1942[label="vwx52",fontsize=16,color="green",shape="box"];1943[label="vwx55",fontsize=16,color="green",shape="box"];1944[label="vwx52",fontsize=16,color="green",shape="box"];1945[label="vwx55",fontsize=16,color="green",shape="box"];1946[label="vwx52",fontsize=16,color="green",shape="box"];1947[label="vwx55",fontsize=16,color="green",shape="box"];1948[label="vwx52",fontsize=16,color="green",shape="box"];1949[label="vwx55",fontsize=16,color="green",shape="box"];1950[label="vwx52",fontsize=16,color="green",shape="box"];1951[label="vwx55",fontsize=16,color="green",shape="box"];1952[label="vwx52",fontsize=16,color="green",shape="box"];1953[label="vwx55",fontsize=16,color="green",shape="box"];1954[label="vwx52",fontsize=16,color="green",shape="box"];1955[label="vwx55",fontsize=16,color="green",shape="box"];1956[label="vwx52",fontsize=16,color="green",shape="box"];1957[label="vwx55",fontsize=16,color="green",shape="box"];1958[label="vwx52",fontsize=16,color="green",shape="box"];1959[label="vwx55",fontsize=16,color="green",shape="box"];1960[label="vwx52",fontsize=16,color="green",shape="box"];1961[label="vwx55",fontsize=16,color="green",shape="box"];1962[label="vwx52",fontsize=16,color="green",shape="box"];1963 -> 268[label="",style="dashed", color="red", weight=0]; 1963[label="vwx52 == vwx55",fontsize=16,color="magenta"];1963 -> 2112[label="",style="dashed", color="magenta", weight=3]; 1963 -> 2113[label="",style="dashed", color="magenta", weight=3]; 1964 -> 263[label="",style="dashed", color="red", weight=0]; 1964[label="vwx52 == vwx55",fontsize=16,color="magenta"];1964 -> 2114[label="",style="dashed", color="magenta", weight=3]; 1964 -> 2115[label="",style="dashed", color="magenta", weight=3]; 1965 -> 269[label="",style="dashed", color="red", weight=0]; 1965[label="vwx52 == vwx55",fontsize=16,color="magenta"];1965 -> 2116[label="",style="dashed", color="magenta", weight=3]; 1965 -> 2117[label="",style="dashed", color="magenta", weight=3]; 1966 -> 265[label="",style="dashed", color="red", weight=0]; 1966[label="vwx52 == vwx55",fontsize=16,color="magenta"];1966 -> 2118[label="",style="dashed", color="magenta", weight=3]; 1966 -> 2119[label="",style="dashed", color="magenta", weight=3]; 1967 -> 274[label="",style="dashed", color="red", weight=0]; 1967[label="vwx52 == vwx55",fontsize=16,color="magenta"];1967 -> 2120[label="",style="dashed", color="magenta", weight=3]; 1967 -> 2121[label="",style="dashed", color="magenta", weight=3]; 1968 -> 270[label="",style="dashed", color="red", weight=0]; 1968[label="vwx52 == vwx55",fontsize=16,color="magenta"];1968 -> 2122[label="",style="dashed", color="magenta", weight=3]; 1968 -> 2123[label="",style="dashed", color="magenta", weight=3]; 1969 -> 261[label="",style="dashed", color="red", weight=0]; 1969[label="vwx52 == vwx55",fontsize=16,color="magenta"];1969 -> 2124[label="",style="dashed", color="magenta", weight=3]; 1969 -> 2125[label="",style="dashed", color="magenta", weight=3]; 1970 -> 267[label="",style="dashed", color="red", weight=0]; 1970[label="vwx52 == vwx55",fontsize=16,color="magenta"];1970 -> 2126[label="",style="dashed", color="magenta", weight=3]; 1970 -> 2127[label="",style="dashed", color="magenta", weight=3]; 1971 -> 266[label="",style="dashed", color="red", weight=0]; 1971[label="vwx52 == vwx55",fontsize=16,color="magenta"];1971 -> 2128[label="",style="dashed", color="magenta", weight=3]; 1971 -> 2129[label="",style="dashed", color="magenta", weight=3]; 1972 -> 273[label="",style="dashed", color="red", weight=0]; 1972[label="vwx52 == vwx55",fontsize=16,color="magenta"];1972 -> 2130[label="",style="dashed", color="magenta", weight=3]; 1972 -> 2131[label="",style="dashed", color="magenta", weight=3]; 1973 -> 264[label="",style="dashed", color="red", weight=0]; 1973[label="vwx52 == vwx55",fontsize=16,color="magenta"];1973 -> 2132[label="",style="dashed", color="magenta", weight=3]; 1973 -> 2133[label="",style="dashed", color="magenta", weight=3]; 1974 -> 262[label="",style="dashed", color="red", weight=0]; 1974[label="vwx52 == vwx55",fontsize=16,color="magenta"];1974 -> 2134[label="",style="dashed", color="magenta", weight=3]; 1974 -> 2135[label="",style="dashed", color="magenta", weight=3]; 1975 -> 272[label="",style="dashed", color="red", weight=0]; 1975[label="vwx52 == vwx55",fontsize=16,color="magenta"];1975 -> 2136[label="",style="dashed", color="magenta", weight=3]; 1975 -> 2137[label="",style="dashed", color="magenta", weight=3]; 1976 -> 271[label="",style="dashed", color="red", weight=0]; 1976[label="vwx52 == vwx55",fontsize=16,color="magenta"];1976 -> 2138[label="",style="dashed", color="magenta", weight=3]; 1976 -> 2139[label="",style="dashed", color="magenta", weight=3]; 1977 -> 1021[label="",style="dashed", color="red", weight=0]; 1977[label="vwx53 <= vwx56",fontsize=16,color="magenta"];1977 -> 2140[label="",style="dashed", color="magenta", weight=3]; 1977 -> 2141[label="",style="dashed", color="magenta", weight=3]; 1978 -> 1022[label="",style="dashed", color="red", weight=0]; 1978[label="vwx53 <= vwx56",fontsize=16,color="magenta"];1978 -> 2142[label="",style="dashed", color="magenta", weight=3]; 1978 -> 2143[label="",style="dashed", color="magenta", weight=3]; 1979 -> 1023[label="",style="dashed", color="red", weight=0]; 1979[label="vwx53 <= vwx56",fontsize=16,color="magenta"];1979 -> 2144[label="",style="dashed", color="magenta", weight=3]; 1979 -> 2145[label="",style="dashed", color="magenta", weight=3]; 1980 -> 1024[label="",style="dashed", color="red", weight=0]; 1980[label="vwx53 <= vwx56",fontsize=16,color="magenta"];1980 -> 2146[label="",style="dashed", color="magenta", weight=3]; 1980 -> 2147[label="",style="dashed", color="magenta", weight=3]; 1981 -> 1025[label="",style="dashed", color="red", weight=0]; 1981[label="vwx53 <= vwx56",fontsize=16,color="magenta"];1981 -> 2148[label="",style="dashed", color="magenta", weight=3]; 1981 -> 2149[label="",style="dashed", color="magenta", weight=3]; 1982 -> 1026[label="",style="dashed", color="red", weight=0]; 1982[label="vwx53 <= vwx56",fontsize=16,color="magenta"];1982 -> 2150[label="",style="dashed", color="magenta", weight=3]; 1982 -> 2151[label="",style="dashed", color="magenta", weight=3]; 1983 -> 1027[label="",style="dashed", color="red", weight=0]; 1983[label="vwx53 <= vwx56",fontsize=16,color="magenta"];1983 -> 2152[label="",style="dashed", color="magenta", weight=3]; 1983 -> 2153[label="",style="dashed", color="magenta", weight=3]; 1984 -> 1028[label="",style="dashed", color="red", weight=0]; 1984[label="vwx53 <= vwx56",fontsize=16,color="magenta"];1984 -> 2154[label="",style="dashed", color="magenta", weight=3]; 1984 -> 2155[label="",style="dashed", color="magenta", weight=3]; 1985 -> 1029[label="",style="dashed", color="red", weight=0]; 1985[label="vwx53 <= vwx56",fontsize=16,color="magenta"];1985 -> 2156[label="",style="dashed", color="magenta", weight=3]; 1985 -> 2157[label="",style="dashed", color="magenta", weight=3]; 1986 -> 1030[label="",style="dashed", color="red", weight=0]; 1986[label="vwx53 <= vwx56",fontsize=16,color="magenta"];1986 -> 2158[label="",style="dashed", color="magenta", weight=3]; 1986 -> 2159[label="",style="dashed", color="magenta", weight=3]; 1987 -> 1031[label="",style="dashed", color="red", weight=0]; 1987[label="vwx53 <= vwx56",fontsize=16,color="magenta"];1987 -> 2160[label="",style="dashed", color="magenta", weight=3]; 1987 -> 2161[label="",style="dashed", color="magenta", weight=3]; 1988 -> 1032[label="",style="dashed", color="red", weight=0]; 1988[label="vwx53 <= vwx56",fontsize=16,color="magenta"];1988 -> 2162[label="",style="dashed", color="magenta", weight=3]; 1988 -> 2163[label="",style="dashed", color="magenta", weight=3]; 1989 -> 1033[label="",style="dashed", color="red", weight=0]; 1989[label="vwx53 <= vwx56",fontsize=16,color="magenta"];1989 -> 2164[label="",style="dashed", color="magenta", weight=3]; 1989 -> 2165[label="",style="dashed", color="magenta", weight=3]; 1990 -> 1034[label="",style="dashed", color="red", weight=0]; 1990[label="vwx53 <= vwx56",fontsize=16,color="magenta"];1990 -> 2166[label="",style="dashed", color="magenta", weight=3]; 1990 -> 2167[label="",style="dashed", color="magenta", weight=3]; 1991[label="vwx143",fontsize=16,color="green",shape="box"];1992[label="True",fontsize=16,color="green",shape="box"];1993[label="compare0 (vwx129,vwx130,vwx131) (vwx132,vwx133,vwx134) otherwise",fontsize=16,color="black",shape="box"];1993 -> 2168[label="",style="solid", color="black", weight=3]; 1994[label="LT",fontsize=16,color="green",shape="box"];1995[label="vwx40000",fontsize=16,color="green",shape="box"];1996[label="Succ vwx30100",fontsize=16,color="green",shape="box"];1997[label="primPlusNat (Succ vwx1440) (Succ vwx30100)",fontsize=16,color="black",shape="box"];1997 -> 2169[label="",style="solid", color="black", weight=3]; 1998[label="primPlusNat Zero (Succ vwx30100)",fontsize=16,color="black",shape="box"];1998 -> 2170[label="",style="solid", color="black", weight=3]; 1999[label="compare0 (vwx114,vwx115) (vwx116,vwx117) True",fontsize=16,color="black",shape="box"];1999 -> 2171[label="",style="solid", color="black", weight=3]; 2000 -> 1156[label="",style="dashed", color="red", weight=0]; 2000[label="primEqNat vwx30000 vwx40000",fontsize=16,color="magenta"];2000 -> 2172[label="",style="dashed", color="magenta", weight=3]; 2000 -> 2173[label="",style="dashed", color="magenta", weight=3]; 2001[label="False",fontsize=16,color="green",shape="box"];2002[label="False",fontsize=16,color="green",shape="box"];2003[label="True",fontsize=16,color="green",shape="box"];2004[label="vwx40000",fontsize=16,color="green",shape="box"];2005[label="vwx30000",fontsize=16,color="green",shape="box"];2006[label="vwx40000",fontsize=16,color="green",shape="box"];2007[label="vwx30000",fontsize=16,color="green",shape="box"];2008[label="vwx4001",fontsize=16,color="green",shape="box"];2009[label="vwx3001",fontsize=16,color="green",shape="box"];2010[label="vwx4001",fontsize=16,color="green",shape="box"];2011[label="vwx3001",fontsize=16,color="green",shape="box"];2012[label="vwx4001",fontsize=16,color="green",shape="box"];2013[label="vwx3001",fontsize=16,color="green",shape="box"];2014[label="vwx4001",fontsize=16,color="green",shape="box"];2015[label="vwx3001",fontsize=16,color="green",shape="box"];2016[label="vwx4001",fontsize=16,color="green",shape="box"];2017[label="vwx3001",fontsize=16,color="green",shape="box"];2018[label="vwx4001",fontsize=16,color="green",shape="box"];2019[label="vwx3001",fontsize=16,color="green",shape="box"];2020[label="vwx4001",fontsize=16,color="green",shape="box"];2021[label="vwx3001",fontsize=16,color="green",shape="box"];2022[label="vwx4001",fontsize=16,color="green",shape="box"];2023[label="vwx3001",fontsize=16,color="green",shape="box"];2024[label="vwx4001",fontsize=16,color="green",shape="box"];2025[label="vwx3001",fontsize=16,color="green",shape="box"];2026[label="vwx4001",fontsize=16,color="green",shape="box"];2027[label="vwx3001",fontsize=16,color="green",shape="box"];2028[label="vwx4001",fontsize=16,color="green",shape="box"];2029[label="vwx3001",fontsize=16,color="green",shape="box"];2030[label="vwx4001",fontsize=16,color="green",shape="box"];2031[label="vwx3001",fontsize=16,color="green",shape="box"];2032[label="vwx4001",fontsize=16,color="green",shape="box"];2033[label="vwx3001",fontsize=16,color="green",shape="box"];2034[label="vwx4001",fontsize=16,color="green",shape="box"];2035[label="vwx3001",fontsize=16,color="green",shape="box"];2036[label="vwx4002",fontsize=16,color="green",shape="box"];2037[label="vwx3002",fontsize=16,color="green",shape="box"];2038[label="vwx4002",fontsize=16,color="green",shape="box"];2039[label="vwx3002",fontsize=16,color="green",shape="box"];2040[label="vwx4002",fontsize=16,color="green",shape="box"];2041[label="vwx3002",fontsize=16,color="green",shape="box"];2042[label="vwx4002",fontsize=16,color="green",shape="box"];2043[label="vwx3002",fontsize=16,color="green",shape="box"];2044[label="vwx4002",fontsize=16,color="green",shape="box"];2045[label="vwx3002",fontsize=16,color="green",shape="box"];2046[label="vwx4002",fontsize=16,color="green",shape="box"];2047[label="vwx3002",fontsize=16,color="green",shape="box"];2048[label="vwx4002",fontsize=16,color="green",shape="box"];2049[label="vwx3002",fontsize=16,color="green",shape="box"];2050[label="vwx4002",fontsize=16,color="green",shape="box"];2051[label="vwx3002",fontsize=16,color="green",shape="box"];2052[label="vwx4002",fontsize=16,color="green",shape="box"];2053[label="vwx3002",fontsize=16,color="green",shape="box"];2054[label="vwx4002",fontsize=16,color="green",shape="box"];2055[label="vwx3002",fontsize=16,color="green",shape="box"];2056[label="vwx4002",fontsize=16,color="green",shape="box"];2057[label="vwx3002",fontsize=16,color="green",shape="box"];2058[label="vwx4002",fontsize=16,color="green",shape="box"];2059[label="vwx3002",fontsize=16,color="green",shape="box"];2060[label="vwx4002",fontsize=16,color="green",shape="box"];2061[label="vwx3002",fontsize=16,color="green",shape="box"];2062[label="vwx4002",fontsize=16,color="green",shape="box"];2063[label="vwx3002",fontsize=16,color="green",shape="box"];2065 -> 262[label="",style="dashed", color="red", weight=0]; 2065[label="vwx138 == GT",fontsize=16,color="magenta"];2065 -> 2174[label="",style="dashed", color="magenta", weight=3]; 2065 -> 2175[label="",style="dashed", color="magenta", weight=3]; 2064[label="not vwx145",fontsize=16,color="burlywood",shape="triangle"];3336[label="vwx145/False",fontsize=10,color="white",style="solid",shape="box"];2064 -> 3336[label="",style="solid", color="burlywood", weight=9]; 3336 -> 2176[label="",style="solid", color="burlywood", weight=3]; 3337[label="vwx145/True",fontsize=10,color="white",style="solid",shape="box"];2064 -> 3337[label="",style="solid", color="burlywood", weight=9]; 3337 -> 2177[label="",style="solid", color="burlywood", weight=3]; 2066[label="vwx260 < vwx270",fontsize=16,color="blue",shape="box"];3338[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2066 -> 3338[label="",style="solid", color="blue", weight=9]; 3338 -> 2178[label="",style="solid", color="blue", weight=3]; 3339[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2066 -> 3339[label="",style="solid", color="blue", weight=9]; 3339 -> 2179[label="",style="solid", color="blue", weight=3]; 3340[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2066 -> 3340[label="",style="solid", color="blue", weight=9]; 3340 -> 2180[label="",style="solid", color="blue", weight=3]; 3341[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2066 -> 3341[label="",style="solid", color="blue", weight=9]; 3341 -> 2181[label="",style="solid", color="blue", weight=3]; 3342[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2066 -> 3342[label="",style="solid", color="blue", weight=9]; 3342 -> 2182[label="",style="solid", color="blue", weight=3]; 3343[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2066 -> 3343[label="",style="solid", color="blue", weight=9]; 3343 -> 2183[label="",style="solid", color="blue", weight=3]; 3344[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2066 -> 3344[label="",style="solid", color="blue", weight=9]; 3344 -> 2184[label="",style="solid", color="blue", weight=3]; 3345[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2066 -> 3345[label="",style="solid", color="blue", weight=9]; 3345 -> 2185[label="",style="solid", color="blue", weight=3]; 3346[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2066 -> 3346[label="",style="solid", color="blue", weight=9]; 3346 -> 2186[label="",style="solid", color="blue", weight=3]; 3347[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2066 -> 3347[label="",style="solid", color="blue", weight=9]; 3347 -> 2187[label="",style="solid", color="blue", weight=3]; 3348[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2066 -> 3348[label="",style="solid", color="blue", weight=9]; 3348 -> 2188[label="",style="solid", color="blue", weight=3]; 3349[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2066 -> 3349[label="",style="solid", color="blue", weight=9]; 3349 -> 2189[label="",style="solid", color="blue", weight=3]; 3350[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2066 -> 3350[label="",style="solid", color="blue", weight=9]; 3350 -> 2190[label="",style="solid", color="blue", weight=3]; 3351[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2066 -> 3351[label="",style="solid", color="blue", weight=9]; 3351 -> 2191[label="",style="solid", color="blue", weight=3]; 2067 -> 693[label="",style="dashed", color="red", weight=0]; 2067[label="vwx260 == vwx270 && vwx261 <= vwx271",fontsize=16,color="magenta"];2067 -> 2192[label="",style="dashed", color="magenta", weight=3]; 2067 -> 2193[label="",style="dashed", color="magenta", weight=3]; 2068 -> 1021[label="",style="dashed", color="red", weight=0]; 2068[label="vwx260 <= vwx270",fontsize=16,color="magenta"];2068 -> 2194[label="",style="dashed", color="magenta", weight=3]; 2068 -> 2195[label="",style="dashed", color="magenta", weight=3]; 2069 -> 1022[label="",style="dashed", color="red", weight=0]; 2069[label="vwx260 <= vwx270",fontsize=16,color="magenta"];2069 -> 2196[label="",style="dashed", color="magenta", weight=3]; 2069 -> 2197[label="",style="dashed", color="magenta", weight=3]; 2070 -> 1023[label="",style="dashed", color="red", weight=0]; 2070[label="vwx260 <= vwx270",fontsize=16,color="magenta"];2070 -> 2198[label="",style="dashed", color="magenta", weight=3]; 2070 -> 2199[label="",style="dashed", color="magenta", weight=3]; 2071 -> 1024[label="",style="dashed", color="red", weight=0]; 2071[label="vwx260 <= vwx270",fontsize=16,color="magenta"];2071 -> 2200[label="",style="dashed", color="magenta", weight=3]; 2071 -> 2201[label="",style="dashed", color="magenta", weight=3]; 2072 -> 1025[label="",style="dashed", color="red", weight=0]; 2072[label="vwx260 <= vwx270",fontsize=16,color="magenta"];2072 -> 2202[label="",style="dashed", color="magenta", weight=3]; 2072 -> 2203[label="",style="dashed", color="magenta", weight=3]; 2073 -> 1026[label="",style="dashed", color="red", weight=0]; 2073[label="vwx260 <= vwx270",fontsize=16,color="magenta"];2073 -> 2204[label="",style="dashed", color="magenta", weight=3]; 2073 -> 2205[label="",style="dashed", color="magenta", weight=3]; 2074 -> 1027[label="",style="dashed", color="red", weight=0]; 2074[label="vwx260 <= vwx270",fontsize=16,color="magenta"];2074 -> 2206[label="",style="dashed", color="magenta", weight=3]; 2074 -> 2207[label="",style="dashed", color="magenta", weight=3]; 2075 -> 1028[label="",style="dashed", color="red", weight=0]; 2075[label="vwx260 <= vwx270",fontsize=16,color="magenta"];2075 -> 2208[label="",style="dashed", color="magenta", weight=3]; 2075 -> 2209[label="",style="dashed", color="magenta", weight=3]; 2076 -> 1029[label="",style="dashed", color="red", weight=0]; 2076[label="vwx260 <= vwx270",fontsize=16,color="magenta"];2076 -> 2210[label="",style="dashed", color="magenta", weight=3]; 2076 -> 2211[label="",style="dashed", color="magenta", weight=3]; 2077 -> 1030[label="",style="dashed", color="red", weight=0]; 2077[label="vwx260 <= vwx270",fontsize=16,color="magenta"];2077 -> 2212[label="",style="dashed", color="magenta", weight=3]; 2077 -> 2213[label="",style="dashed", color="magenta", weight=3]; 2078 -> 1031[label="",style="dashed", color="red", weight=0]; 2078[label="vwx260 <= vwx270",fontsize=16,color="magenta"];2078 -> 2214[label="",style="dashed", color="magenta", weight=3]; 2078 -> 2215[label="",style="dashed", color="magenta", weight=3]; 2079 -> 1032[label="",style="dashed", color="red", weight=0]; 2079[label="vwx260 <= vwx270",fontsize=16,color="magenta"];2079 -> 2216[label="",style="dashed", color="magenta", weight=3]; 2079 -> 2217[label="",style="dashed", color="magenta", weight=3]; 2080 -> 1033[label="",style="dashed", color="red", weight=0]; 2080[label="vwx260 <= vwx270",fontsize=16,color="magenta"];2080 -> 2218[label="",style="dashed", color="magenta", weight=3]; 2080 -> 2219[label="",style="dashed", color="magenta", weight=3]; 2081 -> 1034[label="",style="dashed", color="red", weight=0]; 2081[label="vwx260 <= vwx270",fontsize=16,color="magenta"];2081 -> 2220[label="",style="dashed", color="magenta", weight=3]; 2081 -> 2221[label="",style="dashed", color="magenta", weight=3]; 2082 -> 1021[label="",style="dashed", color="red", weight=0]; 2082[label="vwx260 <= vwx270",fontsize=16,color="magenta"];2082 -> 2222[label="",style="dashed", color="magenta", weight=3]; 2082 -> 2223[label="",style="dashed", color="magenta", weight=3]; 2083 -> 1022[label="",style="dashed", color="red", weight=0]; 2083[label="vwx260 <= vwx270",fontsize=16,color="magenta"];2083 -> 2224[label="",style="dashed", color="magenta", weight=3]; 2083 -> 2225[label="",style="dashed", color="magenta", weight=3]; 2084 -> 1023[label="",style="dashed", color="red", weight=0]; 2084[label="vwx260 <= vwx270",fontsize=16,color="magenta"];2084 -> 2226[label="",style="dashed", color="magenta", weight=3]; 2084 -> 2227[label="",style="dashed", color="magenta", weight=3]; 2085 -> 1024[label="",style="dashed", color="red", weight=0]; 2085[label="vwx260 <= vwx270",fontsize=16,color="magenta"];2085 -> 2228[label="",style="dashed", color="magenta", weight=3]; 2085 -> 2229[label="",style="dashed", color="magenta", weight=3]; 2086 -> 1025[label="",style="dashed", color="red", weight=0]; 2086[label="vwx260 <= vwx270",fontsize=16,color="magenta"];2086 -> 2230[label="",style="dashed", color="magenta", weight=3]; 2086 -> 2231[label="",style="dashed", color="magenta", weight=3]; 2087 -> 1026[label="",style="dashed", color="red", weight=0]; 2087[label="vwx260 <= vwx270",fontsize=16,color="magenta"];2087 -> 2232[label="",style="dashed", color="magenta", weight=3]; 2087 -> 2233[label="",style="dashed", color="magenta", weight=3]; 2088 -> 1027[label="",style="dashed", color="red", weight=0]; 2088[label="vwx260 <= vwx270",fontsize=16,color="magenta"];2088 -> 2234[label="",style="dashed", color="magenta", weight=3]; 2088 -> 2235[label="",style="dashed", color="magenta", weight=3]; 2089 -> 1028[label="",style="dashed", color="red", weight=0]; 2089[label="vwx260 <= vwx270",fontsize=16,color="magenta"];2089 -> 2236[label="",style="dashed", color="magenta", weight=3]; 2089 -> 2237[label="",style="dashed", color="magenta", weight=3]; 2090 -> 1029[label="",style="dashed", color="red", weight=0]; 2090[label="vwx260 <= vwx270",fontsize=16,color="magenta"];2090 -> 2238[label="",style="dashed", color="magenta", weight=3]; 2090 -> 2239[label="",style="dashed", color="magenta", weight=3]; 2091 -> 1030[label="",style="dashed", color="red", weight=0]; 2091[label="vwx260 <= vwx270",fontsize=16,color="magenta"];2091 -> 2240[label="",style="dashed", color="magenta", weight=3]; 2091 -> 2241[label="",style="dashed", color="magenta", weight=3]; 2092 -> 1031[label="",style="dashed", color="red", weight=0]; 2092[label="vwx260 <= vwx270",fontsize=16,color="magenta"];2092 -> 2242[label="",style="dashed", color="magenta", weight=3]; 2092 -> 2243[label="",style="dashed", color="magenta", weight=3]; 2093 -> 1032[label="",style="dashed", color="red", weight=0]; 2093[label="vwx260 <= vwx270",fontsize=16,color="magenta"];2093 -> 2244[label="",style="dashed", color="magenta", weight=3]; 2093 -> 2245[label="",style="dashed", color="magenta", weight=3]; 2094 -> 1033[label="",style="dashed", color="red", weight=0]; 2094[label="vwx260 <= vwx270",fontsize=16,color="magenta"];2094 -> 2246[label="",style="dashed", color="magenta", weight=3]; 2094 -> 2247[label="",style="dashed", color="magenta", weight=3]; 2095 -> 1034[label="",style="dashed", color="red", weight=0]; 2095[label="vwx260 <= vwx270",fontsize=16,color="magenta"];2095 -> 2248[label="",style="dashed", color="magenta", weight=3]; 2095 -> 2249[label="",style="dashed", color="magenta", weight=3]; 2096 -> 1021[label="",style="dashed", color="red", weight=0]; 2096[label="vwx260 <= vwx270",fontsize=16,color="magenta"];2096 -> 2250[label="",style="dashed", color="magenta", weight=3]; 2096 -> 2251[label="",style="dashed", color="magenta", weight=3]; 2097 -> 1022[label="",style="dashed", color="red", weight=0]; 2097[label="vwx260 <= vwx270",fontsize=16,color="magenta"];2097 -> 2252[label="",style="dashed", color="magenta", weight=3]; 2097 -> 2253[label="",style="dashed", color="magenta", weight=3]; 2098 -> 1023[label="",style="dashed", color="red", weight=0]; 2098[label="vwx260 <= vwx270",fontsize=16,color="magenta"];2098 -> 2254[label="",style="dashed", color="magenta", weight=3]; 2098 -> 2255[label="",style="dashed", color="magenta", weight=3]; 2099 -> 1024[label="",style="dashed", color="red", weight=0]; 2099[label="vwx260 <= vwx270",fontsize=16,color="magenta"];2099 -> 2256[label="",style="dashed", color="magenta", weight=3]; 2099 -> 2257[label="",style="dashed", color="magenta", weight=3]; 2100 -> 1025[label="",style="dashed", color="red", weight=0]; 2100[label="vwx260 <= vwx270",fontsize=16,color="magenta"];2100 -> 2258[label="",style="dashed", color="magenta", weight=3]; 2100 -> 2259[label="",style="dashed", color="magenta", weight=3]; 2101 -> 1026[label="",style="dashed", color="red", weight=0]; 2101[label="vwx260 <= vwx270",fontsize=16,color="magenta"];2101 -> 2260[label="",style="dashed", color="magenta", weight=3]; 2101 -> 2261[label="",style="dashed", color="magenta", weight=3]; 2102 -> 1027[label="",style="dashed", color="red", weight=0]; 2102[label="vwx260 <= vwx270",fontsize=16,color="magenta"];2102 -> 2262[label="",style="dashed", color="magenta", weight=3]; 2102 -> 2263[label="",style="dashed", color="magenta", weight=3]; 2103 -> 1028[label="",style="dashed", color="red", weight=0]; 2103[label="vwx260 <= vwx270",fontsize=16,color="magenta"];2103 -> 2264[label="",style="dashed", color="magenta", weight=3]; 2103 -> 2265[label="",style="dashed", color="magenta", weight=3]; 2104 -> 1029[label="",style="dashed", color="red", weight=0]; 2104[label="vwx260 <= vwx270",fontsize=16,color="magenta"];2104 -> 2266[label="",style="dashed", color="magenta", weight=3]; 2104 -> 2267[label="",style="dashed", color="magenta", weight=3]; 2105 -> 1030[label="",style="dashed", color="red", weight=0]; 2105[label="vwx260 <= vwx270",fontsize=16,color="magenta"];2105 -> 2268[label="",style="dashed", color="magenta", weight=3]; 2105 -> 2269[label="",style="dashed", color="magenta", weight=3]; 2106 -> 1031[label="",style="dashed", color="red", weight=0]; 2106[label="vwx260 <= vwx270",fontsize=16,color="magenta"];2106 -> 2270[label="",style="dashed", color="magenta", weight=3]; 2106 -> 2271[label="",style="dashed", color="magenta", weight=3]; 2107 -> 1032[label="",style="dashed", color="red", weight=0]; 2107[label="vwx260 <= vwx270",fontsize=16,color="magenta"];2107 -> 2272[label="",style="dashed", color="magenta", weight=3]; 2107 -> 2273[label="",style="dashed", color="magenta", weight=3]; 2108 -> 1033[label="",style="dashed", color="red", weight=0]; 2108[label="vwx260 <= vwx270",fontsize=16,color="magenta"];2108 -> 2274[label="",style="dashed", color="magenta", weight=3]; 2108 -> 2275[label="",style="dashed", color="magenta", weight=3]; 2109 -> 1034[label="",style="dashed", color="red", weight=0]; 2109[label="vwx260 <= vwx270",fontsize=16,color="magenta"];2109 -> 2276[label="",style="dashed", color="magenta", weight=3]; 2109 -> 2277[label="",style="dashed", color="magenta", weight=3]; 2110[label="vwx260 < vwx270",fontsize=16,color="blue",shape="box"];3352[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2110 -> 3352[label="",style="solid", color="blue", weight=9]; 3352 -> 2278[label="",style="solid", color="blue", weight=3]; 3353[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2110 -> 3353[label="",style="solid", color="blue", weight=9]; 3353 -> 2279[label="",style="solid", color="blue", weight=3]; 3354[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2110 -> 3354[label="",style="solid", color="blue", weight=9]; 3354 -> 2280[label="",style="solid", color="blue", weight=3]; 3355[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2110 -> 3355[label="",style="solid", color="blue", weight=9]; 3355 -> 2281[label="",style="solid", color="blue", weight=3]; 3356[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2110 -> 3356[label="",style="solid", color="blue", weight=9]; 3356 -> 2282[label="",style="solid", color="blue", weight=3]; 3357[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2110 -> 3357[label="",style="solid", color="blue", weight=9]; 3357 -> 2283[label="",style="solid", color="blue", weight=3]; 3358[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2110 -> 3358[label="",style="solid", color="blue", weight=9]; 3358 -> 2284[label="",style="solid", color="blue", weight=3]; 3359[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2110 -> 3359[label="",style="solid", color="blue", weight=9]; 3359 -> 2285[label="",style="solid", color="blue", weight=3]; 3360[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2110 -> 3360[label="",style="solid", color="blue", weight=9]; 3360 -> 2286[label="",style="solid", color="blue", weight=3]; 3361[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2110 -> 3361[label="",style="solid", color="blue", weight=9]; 3361 -> 2287[label="",style="solid", color="blue", weight=3]; 3362[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2110 -> 3362[label="",style="solid", color="blue", weight=9]; 3362 -> 2288[label="",style="solid", color="blue", weight=3]; 3363[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2110 -> 3363[label="",style="solid", color="blue", weight=9]; 3363 -> 2289[label="",style="solid", color="blue", weight=3]; 3364[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2110 -> 3364[label="",style="solid", color="blue", weight=9]; 3364 -> 2290[label="",style="solid", color="blue", weight=3]; 3365[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2110 -> 3365[label="",style="solid", color="blue", weight=9]; 3365 -> 2291[label="",style="solid", color="blue", weight=3]; 2111 -> 693[label="",style="dashed", color="red", weight=0]; 2111[label="vwx260 == vwx270 && (vwx261 < vwx271 || vwx261 == vwx271 && vwx262 <= vwx272)",fontsize=16,color="magenta"];2111 -> 2292[label="",style="dashed", color="magenta", weight=3]; 2111 -> 2293[label="",style="dashed", color="magenta", weight=3]; 2112[label="vwx55",fontsize=16,color="green",shape="box"];2113[label="vwx52",fontsize=16,color="green",shape="box"];2114[label="vwx55",fontsize=16,color="green",shape="box"];2115[label="vwx52",fontsize=16,color="green",shape="box"];2116[label="vwx55",fontsize=16,color="green",shape="box"];2117[label="vwx52",fontsize=16,color="green",shape="box"];2118[label="vwx55",fontsize=16,color="green",shape="box"];2119[label="vwx52",fontsize=16,color="green",shape="box"];2120[label="vwx55",fontsize=16,color="green",shape="box"];2121[label="vwx52",fontsize=16,color="green",shape="box"];2122[label="vwx55",fontsize=16,color="green",shape="box"];2123[label="vwx52",fontsize=16,color="green",shape="box"];2124[label="vwx55",fontsize=16,color="green",shape="box"];2125[label="vwx52",fontsize=16,color="green",shape="box"];2126[label="vwx55",fontsize=16,color="green",shape="box"];2127[label="vwx52",fontsize=16,color="green",shape="box"];2128[label="vwx55",fontsize=16,color="green",shape="box"];2129[label="vwx52",fontsize=16,color="green",shape="box"];2130[label="vwx55",fontsize=16,color="green",shape="box"];2131[label="vwx52",fontsize=16,color="green",shape="box"];2132[label="vwx55",fontsize=16,color="green",shape="box"];2133[label="vwx52",fontsize=16,color="green",shape="box"];2134[label="vwx55",fontsize=16,color="green",shape="box"];2135[label="vwx52",fontsize=16,color="green",shape="box"];2136[label="vwx55",fontsize=16,color="green",shape="box"];2137[label="vwx52",fontsize=16,color="green",shape="box"];2138[label="vwx55",fontsize=16,color="green",shape="box"];2139[label="vwx52",fontsize=16,color="green",shape="box"];2140[label="vwx56",fontsize=16,color="green",shape="box"];2141[label="vwx53",fontsize=16,color="green",shape="box"];2142[label="vwx56",fontsize=16,color="green",shape="box"];2143[label="vwx53",fontsize=16,color="green",shape="box"];2144[label="vwx56",fontsize=16,color="green",shape="box"];2145[label="vwx53",fontsize=16,color="green",shape="box"];2146[label="vwx56",fontsize=16,color="green",shape="box"];2147[label="vwx53",fontsize=16,color="green",shape="box"];2148[label="vwx56",fontsize=16,color="green",shape="box"];2149[label="vwx53",fontsize=16,color="green",shape="box"];2150[label="vwx56",fontsize=16,color="green",shape="box"];2151[label="vwx53",fontsize=16,color="green",shape="box"];2152[label="vwx56",fontsize=16,color="green",shape="box"];2153[label="vwx53",fontsize=16,color="green",shape="box"];2154[label="vwx56",fontsize=16,color="green",shape="box"];2155[label="vwx53",fontsize=16,color="green",shape="box"];2156[label="vwx56",fontsize=16,color="green",shape="box"];2157[label="vwx53",fontsize=16,color="green",shape="box"];2158[label="vwx56",fontsize=16,color="green",shape="box"];2159[label="vwx53",fontsize=16,color="green",shape="box"];2160[label="vwx56",fontsize=16,color="green",shape="box"];2161[label="vwx53",fontsize=16,color="green",shape="box"];2162[label="vwx56",fontsize=16,color="green",shape="box"];2163[label="vwx53",fontsize=16,color="green",shape="box"];2164[label="vwx56",fontsize=16,color="green",shape="box"];2165[label="vwx53",fontsize=16,color="green",shape="box"];2166[label="vwx56",fontsize=16,color="green",shape="box"];2167[label="vwx53",fontsize=16,color="green",shape="box"];2168[label="compare0 (vwx129,vwx130,vwx131) (vwx132,vwx133,vwx134) True",fontsize=16,color="black",shape="box"];2168 -> 2294[label="",style="solid", color="black", weight=3]; 2169[label="Succ (Succ (primPlusNat vwx1440 vwx30100))",fontsize=16,color="green",shape="box"];2169 -> 2295[label="",style="dashed", color="green", weight=3]; 2170[label="Succ vwx30100",fontsize=16,color="green",shape="box"];2171[label="GT",fontsize=16,color="green",shape="box"];2172[label="vwx40000",fontsize=16,color="green",shape="box"];2173[label="vwx30000",fontsize=16,color="green",shape="box"];2174[label="GT",fontsize=16,color="green",shape="box"];2175[label="vwx138",fontsize=16,color="green",shape="box"];2176[label="not False",fontsize=16,color="black",shape="box"];2176 -> 2296[label="",style="solid", color="black", weight=3]; 2177[label="not True",fontsize=16,color="black",shape="box"];2177 -> 2297[label="",style="solid", color="black", weight=3]; 2178 -> 968[label="",style="dashed", color="red", weight=0]; 2178[label="vwx260 < vwx270",fontsize=16,color="magenta"];2178 -> 2298[label="",style="dashed", color="magenta", weight=3]; 2178 -> 2299[label="",style="dashed", color="magenta", weight=3]; 2179 -> 969[label="",style="dashed", color="red", weight=0]; 2179[label="vwx260 < vwx270",fontsize=16,color="magenta"];2179 -> 2300[label="",style="dashed", color="magenta", weight=3]; 2179 -> 2301[label="",style="dashed", color="magenta", weight=3]; 2180 -> 970[label="",style="dashed", color="red", weight=0]; 2180[label="vwx260 < vwx270",fontsize=16,color="magenta"];2180 -> 2302[label="",style="dashed", color="magenta", weight=3]; 2180 -> 2303[label="",style="dashed", color="magenta", weight=3]; 2181 -> 971[label="",style="dashed", color="red", weight=0]; 2181[label="vwx260 < vwx270",fontsize=16,color="magenta"];2181 -> 2304[label="",style="dashed", color="magenta", weight=3]; 2181 -> 2305[label="",style="dashed", color="magenta", weight=3]; 2182 -> 972[label="",style="dashed", color="red", weight=0]; 2182[label="vwx260 < vwx270",fontsize=16,color="magenta"];2182 -> 2306[label="",style="dashed", color="magenta", weight=3]; 2182 -> 2307[label="",style="dashed", color="magenta", weight=3]; 2183 -> 973[label="",style="dashed", color="red", weight=0]; 2183[label="vwx260 < vwx270",fontsize=16,color="magenta"];2183 -> 2308[label="",style="dashed", color="magenta", weight=3]; 2183 -> 2309[label="",style="dashed", color="magenta", weight=3]; 2184 -> 974[label="",style="dashed", color="red", weight=0]; 2184[label="vwx260 < vwx270",fontsize=16,color="magenta"];2184 -> 2310[label="",style="dashed", color="magenta", weight=3]; 2184 -> 2311[label="",style="dashed", color="magenta", weight=3]; 2185 -> 975[label="",style="dashed", color="red", weight=0]; 2185[label="vwx260 < vwx270",fontsize=16,color="magenta"];2185 -> 2312[label="",style="dashed", color="magenta", weight=3]; 2185 -> 2313[label="",style="dashed", color="magenta", weight=3]; 2186 -> 976[label="",style="dashed", color="red", weight=0]; 2186[label="vwx260 < vwx270",fontsize=16,color="magenta"];2186 -> 2314[label="",style="dashed", color="magenta", weight=3]; 2186 -> 2315[label="",style="dashed", color="magenta", weight=3]; 2187 -> 977[label="",style="dashed", color="red", weight=0]; 2187[label="vwx260 < vwx270",fontsize=16,color="magenta"];2187 -> 2316[label="",style="dashed", color="magenta", weight=3]; 2187 -> 2317[label="",style="dashed", color="magenta", weight=3]; 2188 -> 978[label="",style="dashed", color="red", weight=0]; 2188[label="vwx260 < vwx270",fontsize=16,color="magenta"];2188 -> 2318[label="",style="dashed", color="magenta", weight=3]; 2188 -> 2319[label="",style="dashed", color="magenta", weight=3]; 2189 -> 979[label="",style="dashed", color="red", weight=0]; 2189[label="vwx260 < vwx270",fontsize=16,color="magenta"];2189 -> 2320[label="",style="dashed", color="magenta", weight=3]; 2189 -> 2321[label="",style="dashed", color="magenta", weight=3]; 2190 -> 980[label="",style="dashed", color="red", weight=0]; 2190[label="vwx260 < vwx270",fontsize=16,color="magenta"];2190 -> 2322[label="",style="dashed", color="magenta", weight=3]; 2190 -> 2323[label="",style="dashed", color="magenta", weight=3]; 2191 -> 981[label="",style="dashed", color="red", weight=0]; 2191[label="vwx260 < vwx270",fontsize=16,color="magenta"];2191 -> 2324[label="",style="dashed", color="magenta", weight=3]; 2191 -> 2325[label="",style="dashed", color="magenta", weight=3]; 2192[label="vwx260 == vwx270",fontsize=16,color="blue",shape="box"];3366[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2192 -> 3366[label="",style="solid", color="blue", weight=9]; 3366 -> 2326[label="",style="solid", color="blue", weight=3]; 3367[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2192 -> 3367[label="",style="solid", color="blue", weight=9]; 3367 -> 2327[label="",style="solid", color="blue", weight=3]; 3368[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2192 -> 3368[label="",style="solid", color="blue", weight=9]; 3368 -> 2328[label="",style="solid", color="blue", weight=3]; 3369[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2192 -> 3369[label="",style="solid", color="blue", weight=9]; 3369 -> 2329[label="",style="solid", color="blue", weight=3]; 3370[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2192 -> 3370[label="",style="solid", color="blue", weight=9]; 3370 -> 2330[label="",style="solid", color="blue", weight=3]; 3371[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2192 -> 3371[label="",style="solid", color="blue", weight=9]; 3371 -> 2331[label="",style="solid", color="blue", weight=3]; 3372[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2192 -> 3372[label="",style="solid", color="blue", weight=9]; 3372 -> 2332[label="",style="solid", color="blue", weight=3]; 3373[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2192 -> 3373[label="",style="solid", color="blue", weight=9]; 3373 -> 2333[label="",style="solid", color="blue", weight=3]; 3374[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2192 -> 3374[label="",style="solid", color="blue", weight=9]; 3374 -> 2334[label="",style="solid", color="blue", weight=3]; 3375[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2192 -> 3375[label="",style="solid", color="blue", weight=9]; 3375 -> 2335[label="",style="solid", color="blue", weight=3]; 3376[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2192 -> 3376[label="",style="solid", color="blue", weight=9]; 3376 -> 2336[label="",style="solid", color="blue", weight=3]; 3377[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2192 -> 3377[label="",style="solid", color="blue", weight=9]; 3377 -> 2337[label="",style="solid", color="blue", weight=3]; 3378[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2192 -> 3378[label="",style="solid", color="blue", weight=9]; 3378 -> 2338[label="",style="solid", color="blue", weight=3]; 3379[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2192 -> 3379[label="",style="solid", color="blue", weight=9]; 3379 -> 2339[label="",style="solid", color="blue", weight=3]; 2193[label="vwx261 <= vwx271",fontsize=16,color="blue",shape="box"];3380[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2193 -> 3380[label="",style="solid", color="blue", weight=9]; 3380 -> 2340[label="",style="solid", color="blue", weight=3]; 3381[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2193 -> 3381[label="",style="solid", color="blue", weight=9]; 3381 -> 2341[label="",style="solid", color="blue", weight=3]; 3382[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2193 -> 3382[label="",style="solid", color="blue", weight=9]; 3382 -> 2342[label="",style="solid", color="blue", weight=3]; 3383[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2193 -> 3383[label="",style="solid", color="blue", weight=9]; 3383 -> 2343[label="",style="solid", color="blue", weight=3]; 3384[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2193 -> 3384[label="",style="solid", color="blue", weight=9]; 3384 -> 2344[label="",style="solid", color="blue", weight=3]; 3385[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2193 -> 3385[label="",style="solid", color="blue", weight=9]; 3385 -> 2345[label="",style="solid", color="blue", weight=3]; 3386[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2193 -> 3386[label="",style="solid", color="blue", weight=9]; 3386 -> 2346[label="",style="solid", color="blue", weight=3]; 3387[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2193 -> 3387[label="",style="solid", color="blue", weight=9]; 3387 -> 2347[label="",style="solid", color="blue", weight=3]; 3388[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2193 -> 3388[label="",style="solid", color="blue", weight=9]; 3388 -> 2348[label="",style="solid", color="blue", weight=3]; 3389[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2193 -> 3389[label="",style="solid", color="blue", weight=9]; 3389 -> 2349[label="",style="solid", color="blue", weight=3]; 3390[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2193 -> 3390[label="",style="solid", color="blue", weight=9]; 3390 -> 2350[label="",style="solid", color="blue", weight=3]; 3391[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2193 -> 3391[label="",style="solid", color="blue", weight=9]; 3391 -> 2351[label="",style="solid", color="blue", weight=3]; 3392[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2193 -> 3392[label="",style="solid", color="blue", weight=9]; 3392 -> 2352[label="",style="solid", color="blue", weight=3]; 3393[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2193 -> 3393[label="",style="solid", color="blue", weight=9]; 3393 -> 2353[label="",style="solid", color="blue", weight=3]; 2194[label="vwx270",fontsize=16,color="green",shape="box"];2195[label="vwx260",fontsize=16,color="green",shape="box"];2196[label="vwx270",fontsize=16,color="green",shape="box"];2197[label="vwx260",fontsize=16,color="green",shape="box"];2198[label="vwx270",fontsize=16,color="green",shape="box"];2199[label="vwx260",fontsize=16,color="green",shape="box"];2200[label="vwx270",fontsize=16,color="green",shape="box"];2201[label="vwx260",fontsize=16,color="green",shape="box"];2202[label="vwx270",fontsize=16,color="green",shape="box"];2203[label="vwx260",fontsize=16,color="green",shape="box"];2204[label="vwx270",fontsize=16,color="green",shape="box"];2205[label="vwx260",fontsize=16,color="green",shape="box"];2206[label="vwx270",fontsize=16,color="green",shape="box"];2207[label="vwx260",fontsize=16,color="green",shape="box"];2208[label="vwx270",fontsize=16,color="green",shape="box"];2209[label="vwx260",fontsize=16,color="green",shape="box"];2210[label="vwx270",fontsize=16,color="green",shape="box"];2211[label="vwx260",fontsize=16,color="green",shape="box"];2212[label="vwx270",fontsize=16,color="green",shape="box"];2213[label="vwx260",fontsize=16,color="green",shape="box"];2214[label="vwx270",fontsize=16,color="green",shape="box"];2215[label="vwx260",fontsize=16,color="green",shape="box"];2216[label="vwx270",fontsize=16,color="green",shape="box"];2217[label="vwx260",fontsize=16,color="green",shape="box"];2218[label="vwx270",fontsize=16,color="green",shape="box"];2219[label="vwx260",fontsize=16,color="green",shape="box"];2220[label="vwx270",fontsize=16,color="green",shape="box"];2221[label="vwx260",fontsize=16,color="green",shape="box"];2222[label="vwx270",fontsize=16,color="green",shape="box"];2223[label="vwx260",fontsize=16,color="green",shape="box"];2224[label="vwx270",fontsize=16,color="green",shape="box"];2225[label="vwx260",fontsize=16,color="green",shape="box"];2226[label="vwx270",fontsize=16,color="green",shape="box"];2227[label="vwx260",fontsize=16,color="green",shape="box"];2228[label="vwx270",fontsize=16,color="green",shape="box"];2229[label="vwx260",fontsize=16,color="green",shape="box"];2230[label="vwx270",fontsize=16,color="green",shape="box"];2231[label="vwx260",fontsize=16,color="green",shape="box"];2232[label="vwx270",fontsize=16,color="green",shape="box"];2233[label="vwx260",fontsize=16,color="green",shape="box"];2234[label="vwx270",fontsize=16,color="green",shape="box"];2235[label="vwx260",fontsize=16,color="green",shape="box"];2236[label="vwx270",fontsize=16,color="green",shape="box"];2237[label="vwx260",fontsize=16,color="green",shape="box"];2238[label="vwx270",fontsize=16,color="green",shape="box"];2239[label="vwx260",fontsize=16,color="green",shape="box"];2240[label="vwx270",fontsize=16,color="green",shape="box"];2241[label="vwx260",fontsize=16,color="green",shape="box"];2242[label="vwx270",fontsize=16,color="green",shape="box"];2243[label="vwx260",fontsize=16,color="green",shape="box"];2244[label="vwx270",fontsize=16,color="green",shape="box"];2245[label="vwx260",fontsize=16,color="green",shape="box"];2246[label="vwx270",fontsize=16,color="green",shape="box"];2247[label="vwx260",fontsize=16,color="green",shape="box"];2248[label="vwx270",fontsize=16,color="green",shape="box"];2249[label="vwx260",fontsize=16,color="green",shape="box"];2250[label="vwx270",fontsize=16,color="green",shape="box"];2251[label="vwx260",fontsize=16,color="green",shape="box"];2252[label="vwx270",fontsize=16,color="green",shape="box"];2253[label="vwx260",fontsize=16,color="green",shape="box"];2254[label="vwx270",fontsize=16,color="green",shape="box"];2255[label="vwx260",fontsize=16,color="green",shape="box"];2256[label="vwx270",fontsize=16,color="green",shape="box"];2257[label="vwx260",fontsize=16,color="green",shape="box"];2258[label="vwx270",fontsize=16,color="green",shape="box"];2259[label="vwx260",fontsize=16,color="green",shape="box"];2260[label="vwx270",fontsize=16,color="green",shape="box"];2261[label="vwx260",fontsize=16,color="green",shape="box"];2262[label="vwx270",fontsize=16,color="green",shape="box"];2263[label="vwx260",fontsize=16,color="green",shape="box"];2264[label="vwx270",fontsize=16,color="green",shape="box"];2265[label="vwx260",fontsize=16,color="green",shape="box"];2266[label="vwx270",fontsize=16,color="green",shape="box"];2267[label="vwx260",fontsize=16,color="green",shape="box"];2268[label="vwx270",fontsize=16,color="green",shape="box"];2269[label="vwx260",fontsize=16,color="green",shape="box"];2270[label="vwx270",fontsize=16,color="green",shape="box"];2271[label="vwx260",fontsize=16,color="green",shape="box"];2272[label="vwx270",fontsize=16,color="green",shape="box"];2273[label="vwx260",fontsize=16,color="green",shape="box"];2274[label="vwx270",fontsize=16,color="green",shape="box"];2275[label="vwx260",fontsize=16,color="green",shape="box"];2276[label="vwx270",fontsize=16,color="green",shape="box"];2277[label="vwx260",fontsize=16,color="green",shape="box"];2278 -> 968[label="",style="dashed", color="red", weight=0]; 2278[label="vwx260 < vwx270",fontsize=16,color="magenta"];2278 -> 2354[label="",style="dashed", color="magenta", weight=3]; 2278 -> 2355[label="",style="dashed", color="magenta", weight=3]; 2279 -> 969[label="",style="dashed", color="red", weight=0]; 2279[label="vwx260 < vwx270",fontsize=16,color="magenta"];2279 -> 2356[label="",style="dashed", color="magenta", weight=3]; 2279 -> 2357[label="",style="dashed", color="magenta", weight=3]; 2280 -> 970[label="",style="dashed", color="red", weight=0]; 2280[label="vwx260 < vwx270",fontsize=16,color="magenta"];2280 -> 2358[label="",style="dashed", color="magenta", weight=3]; 2280 -> 2359[label="",style="dashed", color="magenta", weight=3]; 2281 -> 971[label="",style="dashed", color="red", weight=0]; 2281[label="vwx260 < vwx270",fontsize=16,color="magenta"];2281 -> 2360[label="",style="dashed", color="magenta", weight=3]; 2281 -> 2361[label="",style="dashed", color="magenta", weight=3]; 2282 -> 972[label="",style="dashed", color="red", weight=0]; 2282[label="vwx260 < vwx270",fontsize=16,color="magenta"];2282 -> 2362[label="",style="dashed", color="magenta", weight=3]; 2282 -> 2363[label="",style="dashed", color="magenta", weight=3]; 2283 -> 973[label="",style="dashed", color="red", weight=0]; 2283[label="vwx260 < vwx270",fontsize=16,color="magenta"];2283 -> 2364[label="",style="dashed", color="magenta", weight=3]; 2283 -> 2365[label="",style="dashed", color="magenta", weight=3]; 2284 -> 974[label="",style="dashed", color="red", weight=0]; 2284[label="vwx260 < vwx270",fontsize=16,color="magenta"];2284 -> 2366[label="",style="dashed", color="magenta", weight=3]; 2284 -> 2367[label="",style="dashed", color="magenta", weight=3]; 2285 -> 975[label="",style="dashed", color="red", weight=0]; 2285[label="vwx260 < vwx270",fontsize=16,color="magenta"];2285 -> 2368[label="",style="dashed", color="magenta", weight=3]; 2285 -> 2369[label="",style="dashed", color="magenta", weight=3]; 2286 -> 976[label="",style="dashed", color="red", weight=0]; 2286[label="vwx260 < vwx270",fontsize=16,color="magenta"];2286 -> 2370[label="",style="dashed", color="magenta", weight=3]; 2286 -> 2371[label="",style="dashed", color="magenta", weight=3]; 2287 -> 977[label="",style="dashed", color="red", weight=0]; 2287[label="vwx260 < vwx270",fontsize=16,color="magenta"];2287 -> 2372[label="",style="dashed", color="magenta", weight=3]; 2287 -> 2373[label="",style="dashed", color="magenta", weight=3]; 2288 -> 978[label="",style="dashed", color="red", weight=0]; 2288[label="vwx260 < vwx270",fontsize=16,color="magenta"];2288 -> 2374[label="",style="dashed", color="magenta", weight=3]; 2288 -> 2375[label="",style="dashed", color="magenta", weight=3]; 2289 -> 979[label="",style="dashed", color="red", weight=0]; 2289[label="vwx260 < vwx270",fontsize=16,color="magenta"];2289 -> 2376[label="",style="dashed", color="magenta", weight=3]; 2289 -> 2377[label="",style="dashed", color="magenta", weight=3]; 2290 -> 980[label="",style="dashed", color="red", weight=0]; 2290[label="vwx260 < vwx270",fontsize=16,color="magenta"];2290 -> 2378[label="",style="dashed", color="magenta", weight=3]; 2290 -> 2379[label="",style="dashed", color="magenta", weight=3]; 2291 -> 981[label="",style="dashed", color="red", weight=0]; 2291[label="vwx260 < vwx270",fontsize=16,color="magenta"];2291 -> 2380[label="",style="dashed", color="magenta", weight=3]; 2291 -> 2381[label="",style="dashed", color="magenta", weight=3]; 2292[label="vwx260 == vwx270",fontsize=16,color="blue",shape="box"];3394[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2292 -> 3394[label="",style="solid", color="blue", weight=9]; 3394 -> 2382[label="",style="solid", color="blue", weight=3]; 3395[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2292 -> 3395[label="",style="solid", color="blue", weight=9]; 3395 -> 2383[label="",style="solid", color="blue", weight=3]; 3396[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2292 -> 3396[label="",style="solid", color="blue", weight=9]; 3396 -> 2384[label="",style="solid", color="blue", weight=3]; 3397[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2292 -> 3397[label="",style="solid", color="blue", weight=9]; 3397 -> 2385[label="",style="solid", color="blue", weight=3]; 3398[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2292 -> 3398[label="",style="solid", color="blue", weight=9]; 3398 -> 2386[label="",style="solid", color="blue", weight=3]; 3399[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2292 -> 3399[label="",style="solid", color="blue", weight=9]; 3399 -> 2387[label="",style="solid", color="blue", weight=3]; 3400[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2292 -> 3400[label="",style="solid", color="blue", weight=9]; 3400 -> 2388[label="",style="solid", color="blue", weight=3]; 3401[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2292 -> 3401[label="",style="solid", color="blue", weight=9]; 3401 -> 2389[label="",style="solid", color="blue", weight=3]; 3402[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2292 -> 3402[label="",style="solid", color="blue", weight=9]; 3402 -> 2390[label="",style="solid", color="blue", weight=3]; 3403[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2292 -> 3403[label="",style="solid", color="blue", weight=9]; 3403 -> 2391[label="",style="solid", color="blue", weight=3]; 3404[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2292 -> 3404[label="",style="solid", color="blue", weight=9]; 3404 -> 2392[label="",style="solid", color="blue", weight=3]; 3405[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2292 -> 3405[label="",style="solid", color="blue", weight=9]; 3405 -> 2393[label="",style="solid", color="blue", weight=3]; 3406[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2292 -> 3406[label="",style="solid", color="blue", weight=9]; 3406 -> 2394[label="",style="solid", color="blue", weight=3]; 3407[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2292 -> 3407[label="",style="solid", color="blue", weight=9]; 3407 -> 2395[label="",style="solid", color="blue", weight=3]; 2293 -> 1665[label="",style="dashed", color="red", weight=0]; 2293[label="vwx261 < vwx271 || vwx261 == vwx271 && vwx262 <= vwx272",fontsize=16,color="magenta"];2293 -> 2396[label="",style="dashed", color="magenta", weight=3]; 2293 -> 2397[label="",style="dashed", color="magenta", weight=3]; 2294[label="GT",fontsize=16,color="green",shape="box"];2295[label="primPlusNat vwx1440 vwx30100",fontsize=16,color="burlywood",shape="triangle"];3408[label="vwx1440/Succ vwx14400",fontsize=10,color="white",style="solid",shape="box"];2295 -> 3408[label="",style="solid", color="burlywood", weight=9]; 3408 -> 2398[label="",style="solid", color="burlywood", weight=3]; 3409[label="vwx1440/Zero",fontsize=10,color="white",style="solid",shape="box"];2295 -> 3409[label="",style="solid", color="burlywood", weight=9]; 3409 -> 2399[label="",style="solid", color="burlywood", weight=3]; 2296[label="True",fontsize=16,color="green",shape="box"];2297[label="False",fontsize=16,color="green",shape="box"];2298[label="vwx270",fontsize=16,color="green",shape="box"];2299[label="vwx260",fontsize=16,color="green",shape="box"];2300[label="vwx270",fontsize=16,color="green",shape="box"];2301[label="vwx260",fontsize=16,color="green",shape="box"];2302[label="vwx270",fontsize=16,color="green",shape="box"];2303[label="vwx260",fontsize=16,color="green",shape="box"];2304[label="vwx270",fontsize=16,color="green",shape="box"];2305[label="vwx260",fontsize=16,color="green",shape="box"];2306[label="vwx270",fontsize=16,color="green",shape="box"];2307[label="vwx260",fontsize=16,color="green",shape="box"];2308[label="vwx270",fontsize=16,color="green",shape="box"];2309[label="vwx260",fontsize=16,color="green",shape="box"];2310[label="vwx270",fontsize=16,color="green",shape="box"];2311[label="vwx260",fontsize=16,color="green",shape="box"];2312[label="vwx270",fontsize=16,color="green",shape="box"];2313[label="vwx260",fontsize=16,color="green",shape="box"];2314[label="vwx270",fontsize=16,color="green",shape="box"];2315[label="vwx260",fontsize=16,color="green",shape="box"];2316[label="vwx270",fontsize=16,color="green",shape="box"];2317[label="vwx260",fontsize=16,color="green",shape="box"];2318[label="vwx270",fontsize=16,color="green",shape="box"];2319[label="vwx260",fontsize=16,color="green",shape="box"];2320[label="vwx270",fontsize=16,color="green",shape="box"];2321[label="vwx260",fontsize=16,color="green",shape="box"];2322[label="vwx270",fontsize=16,color="green",shape="box"];2323[label="vwx260",fontsize=16,color="green",shape="box"];2324[label="vwx270",fontsize=16,color="green",shape="box"];2325[label="vwx260",fontsize=16,color="green",shape="box"];2326 -> 268[label="",style="dashed", color="red", weight=0]; 2326[label="vwx260 == vwx270",fontsize=16,color="magenta"];2326 -> 2400[label="",style="dashed", color="magenta", weight=3]; 2326 -> 2401[label="",style="dashed", color="magenta", weight=3]; 2327 -> 263[label="",style="dashed", color="red", weight=0]; 2327[label="vwx260 == vwx270",fontsize=16,color="magenta"];2327 -> 2402[label="",style="dashed", color="magenta", weight=3]; 2327 -> 2403[label="",style="dashed", color="magenta", weight=3]; 2328 -> 269[label="",style="dashed", color="red", weight=0]; 2328[label="vwx260 == vwx270",fontsize=16,color="magenta"];2328 -> 2404[label="",style="dashed", color="magenta", weight=3]; 2328 -> 2405[label="",style="dashed", color="magenta", weight=3]; 2329 -> 265[label="",style="dashed", color="red", weight=0]; 2329[label="vwx260 == vwx270",fontsize=16,color="magenta"];2329 -> 2406[label="",style="dashed", color="magenta", weight=3]; 2329 -> 2407[label="",style="dashed", color="magenta", weight=3]; 2330 -> 274[label="",style="dashed", color="red", weight=0]; 2330[label="vwx260 == vwx270",fontsize=16,color="magenta"];2330 -> 2408[label="",style="dashed", color="magenta", weight=3]; 2330 -> 2409[label="",style="dashed", color="magenta", weight=3]; 2331 -> 270[label="",style="dashed", color="red", weight=0]; 2331[label="vwx260 == vwx270",fontsize=16,color="magenta"];2331 -> 2410[label="",style="dashed", color="magenta", weight=3]; 2331 -> 2411[label="",style="dashed", color="magenta", weight=3]; 2332 -> 261[label="",style="dashed", color="red", weight=0]; 2332[label="vwx260 == vwx270",fontsize=16,color="magenta"];2332 -> 2412[label="",style="dashed", color="magenta", weight=3]; 2332 -> 2413[label="",style="dashed", color="magenta", weight=3]; 2333 -> 267[label="",style="dashed", color="red", weight=0]; 2333[label="vwx260 == vwx270",fontsize=16,color="magenta"];2333 -> 2414[label="",style="dashed", color="magenta", weight=3]; 2333 -> 2415[label="",style="dashed", color="magenta", weight=3]; 2334 -> 266[label="",style="dashed", color="red", weight=0]; 2334[label="vwx260 == vwx270",fontsize=16,color="magenta"];2334 -> 2416[label="",style="dashed", color="magenta", weight=3]; 2334 -> 2417[label="",style="dashed", color="magenta", weight=3]; 2335 -> 273[label="",style="dashed", color="red", weight=0]; 2335[label="vwx260 == vwx270",fontsize=16,color="magenta"];2335 -> 2418[label="",style="dashed", color="magenta", weight=3]; 2335 -> 2419[label="",style="dashed", color="magenta", weight=3]; 2336 -> 264[label="",style="dashed", color="red", weight=0]; 2336[label="vwx260 == vwx270",fontsize=16,color="magenta"];2336 -> 2420[label="",style="dashed", color="magenta", weight=3]; 2336 -> 2421[label="",style="dashed", color="magenta", weight=3]; 2337 -> 262[label="",style="dashed", color="red", weight=0]; 2337[label="vwx260 == vwx270",fontsize=16,color="magenta"];2337 -> 2422[label="",style="dashed", color="magenta", weight=3]; 2337 -> 2423[label="",style="dashed", color="magenta", weight=3]; 2338 -> 272[label="",style="dashed", color="red", weight=0]; 2338[label="vwx260 == vwx270",fontsize=16,color="magenta"];2338 -> 2424[label="",style="dashed", color="magenta", weight=3]; 2338 -> 2425[label="",style="dashed", color="magenta", weight=3]; 2339 -> 271[label="",style="dashed", color="red", weight=0]; 2339[label="vwx260 == vwx270",fontsize=16,color="magenta"];2339 -> 2426[label="",style="dashed", color="magenta", weight=3]; 2339 -> 2427[label="",style="dashed", color="magenta", weight=3]; 2340 -> 1021[label="",style="dashed", color="red", weight=0]; 2340[label="vwx261 <= vwx271",fontsize=16,color="magenta"];2340 -> 2428[label="",style="dashed", color="magenta", weight=3]; 2340 -> 2429[label="",style="dashed", color="magenta", weight=3]; 2341 -> 1022[label="",style="dashed", color="red", weight=0]; 2341[label="vwx261 <= vwx271",fontsize=16,color="magenta"];2341 -> 2430[label="",style="dashed", color="magenta", weight=3]; 2341 -> 2431[label="",style="dashed", color="magenta", weight=3]; 2342 -> 1023[label="",style="dashed", color="red", weight=0]; 2342[label="vwx261 <= vwx271",fontsize=16,color="magenta"];2342 -> 2432[label="",style="dashed", color="magenta", weight=3]; 2342 -> 2433[label="",style="dashed", color="magenta", weight=3]; 2343 -> 1024[label="",style="dashed", color="red", weight=0]; 2343[label="vwx261 <= vwx271",fontsize=16,color="magenta"];2343 -> 2434[label="",style="dashed", color="magenta", weight=3]; 2343 -> 2435[label="",style="dashed", color="magenta", weight=3]; 2344 -> 1025[label="",style="dashed", color="red", weight=0]; 2344[label="vwx261 <= vwx271",fontsize=16,color="magenta"];2344 -> 2436[label="",style="dashed", color="magenta", weight=3]; 2344 -> 2437[label="",style="dashed", color="magenta", weight=3]; 2345 -> 1026[label="",style="dashed", color="red", weight=0]; 2345[label="vwx261 <= vwx271",fontsize=16,color="magenta"];2345 -> 2438[label="",style="dashed", color="magenta", weight=3]; 2345 -> 2439[label="",style="dashed", color="magenta", weight=3]; 2346 -> 1027[label="",style="dashed", color="red", weight=0]; 2346[label="vwx261 <= vwx271",fontsize=16,color="magenta"];2346 -> 2440[label="",style="dashed", color="magenta", weight=3]; 2346 -> 2441[label="",style="dashed", color="magenta", weight=3]; 2347 -> 1028[label="",style="dashed", color="red", weight=0]; 2347[label="vwx261 <= vwx271",fontsize=16,color="magenta"];2347 -> 2442[label="",style="dashed", color="magenta", weight=3]; 2347 -> 2443[label="",style="dashed", color="magenta", weight=3]; 2348 -> 1029[label="",style="dashed", color="red", weight=0]; 2348[label="vwx261 <= vwx271",fontsize=16,color="magenta"];2348 -> 2444[label="",style="dashed", color="magenta", weight=3]; 2348 -> 2445[label="",style="dashed", color="magenta", weight=3]; 2349 -> 1030[label="",style="dashed", color="red", weight=0]; 2349[label="vwx261 <= vwx271",fontsize=16,color="magenta"];2349 -> 2446[label="",style="dashed", color="magenta", weight=3]; 2349 -> 2447[label="",style="dashed", color="magenta", weight=3]; 2350 -> 1031[label="",style="dashed", color="red", weight=0]; 2350[label="vwx261 <= vwx271",fontsize=16,color="magenta"];2350 -> 2448[label="",style="dashed", color="magenta", weight=3]; 2350 -> 2449[label="",style="dashed", color="magenta", weight=3]; 2351 -> 1032[label="",style="dashed", color="red", weight=0]; 2351[label="vwx261 <= vwx271",fontsize=16,color="magenta"];2351 -> 2450[label="",style="dashed", color="magenta", weight=3]; 2351 -> 2451[label="",style="dashed", color="magenta", weight=3]; 2352 -> 1033[label="",style="dashed", color="red", weight=0]; 2352[label="vwx261 <= vwx271",fontsize=16,color="magenta"];2352 -> 2452[label="",style="dashed", color="magenta", weight=3]; 2352 -> 2453[label="",style="dashed", color="magenta", weight=3]; 2353 -> 1034[label="",style="dashed", color="red", weight=0]; 2353[label="vwx261 <= vwx271",fontsize=16,color="magenta"];2353 -> 2454[label="",style="dashed", color="magenta", weight=3]; 2353 -> 2455[label="",style="dashed", color="magenta", weight=3]; 2354[label="vwx270",fontsize=16,color="green",shape="box"];2355[label="vwx260",fontsize=16,color="green",shape="box"];2356[label="vwx270",fontsize=16,color="green",shape="box"];2357[label="vwx260",fontsize=16,color="green",shape="box"];2358[label="vwx270",fontsize=16,color="green",shape="box"];2359[label="vwx260",fontsize=16,color="green",shape="box"];2360[label="vwx270",fontsize=16,color="green",shape="box"];2361[label="vwx260",fontsize=16,color="green",shape="box"];2362[label="vwx270",fontsize=16,color="green",shape="box"];2363[label="vwx260",fontsize=16,color="green",shape="box"];2364[label="vwx270",fontsize=16,color="green",shape="box"];2365[label="vwx260",fontsize=16,color="green",shape="box"];2366[label="vwx270",fontsize=16,color="green",shape="box"];2367[label="vwx260",fontsize=16,color="green",shape="box"];2368[label="vwx270",fontsize=16,color="green",shape="box"];2369[label="vwx260",fontsize=16,color="green",shape="box"];2370[label="vwx270",fontsize=16,color="green",shape="box"];2371[label="vwx260",fontsize=16,color="green",shape="box"];2372[label="vwx270",fontsize=16,color="green",shape="box"];2373[label="vwx260",fontsize=16,color="green",shape="box"];2374[label="vwx270",fontsize=16,color="green",shape="box"];2375[label="vwx260",fontsize=16,color="green",shape="box"];2376[label="vwx270",fontsize=16,color="green",shape="box"];2377[label="vwx260",fontsize=16,color="green",shape="box"];2378[label="vwx270",fontsize=16,color="green",shape="box"];2379[label="vwx260",fontsize=16,color="green",shape="box"];2380[label="vwx270",fontsize=16,color="green",shape="box"];2381[label="vwx260",fontsize=16,color="green",shape="box"];2382 -> 268[label="",style="dashed", color="red", weight=0]; 2382[label="vwx260 == vwx270",fontsize=16,color="magenta"];2382 -> 2456[label="",style="dashed", color="magenta", weight=3]; 2382 -> 2457[label="",style="dashed", color="magenta", weight=3]; 2383 -> 263[label="",style="dashed", color="red", weight=0]; 2383[label="vwx260 == vwx270",fontsize=16,color="magenta"];2383 -> 2458[label="",style="dashed", color="magenta", weight=3]; 2383 -> 2459[label="",style="dashed", color="magenta", weight=3]; 2384 -> 269[label="",style="dashed", color="red", weight=0]; 2384[label="vwx260 == vwx270",fontsize=16,color="magenta"];2384 -> 2460[label="",style="dashed", color="magenta", weight=3]; 2384 -> 2461[label="",style="dashed", color="magenta", weight=3]; 2385 -> 265[label="",style="dashed", color="red", weight=0]; 2385[label="vwx260 == vwx270",fontsize=16,color="magenta"];2385 -> 2462[label="",style="dashed", color="magenta", weight=3]; 2385 -> 2463[label="",style="dashed", color="magenta", weight=3]; 2386 -> 274[label="",style="dashed", color="red", weight=0]; 2386[label="vwx260 == vwx270",fontsize=16,color="magenta"];2386 -> 2464[label="",style="dashed", color="magenta", weight=3]; 2386 -> 2465[label="",style="dashed", color="magenta", weight=3]; 2387 -> 270[label="",style="dashed", color="red", weight=0]; 2387[label="vwx260 == vwx270",fontsize=16,color="magenta"];2387 -> 2466[label="",style="dashed", color="magenta", weight=3]; 2387 -> 2467[label="",style="dashed", color="magenta", weight=3]; 2388 -> 261[label="",style="dashed", color="red", weight=0]; 2388[label="vwx260 == vwx270",fontsize=16,color="magenta"];2388 -> 2468[label="",style="dashed", color="magenta", weight=3]; 2388 -> 2469[label="",style="dashed", color="magenta", weight=3]; 2389 -> 267[label="",style="dashed", color="red", weight=0]; 2389[label="vwx260 == vwx270",fontsize=16,color="magenta"];2389 -> 2470[label="",style="dashed", color="magenta", weight=3]; 2389 -> 2471[label="",style="dashed", color="magenta", weight=3]; 2390 -> 266[label="",style="dashed", color="red", weight=0]; 2390[label="vwx260 == vwx270",fontsize=16,color="magenta"];2390 -> 2472[label="",style="dashed", color="magenta", weight=3]; 2390 -> 2473[label="",style="dashed", color="magenta", weight=3]; 2391 -> 273[label="",style="dashed", color="red", weight=0]; 2391[label="vwx260 == vwx270",fontsize=16,color="magenta"];2391 -> 2474[label="",style="dashed", color="magenta", weight=3]; 2391 -> 2475[label="",style="dashed", color="magenta", weight=3]; 2392 -> 264[label="",style="dashed", color="red", weight=0]; 2392[label="vwx260 == vwx270",fontsize=16,color="magenta"];2392 -> 2476[label="",style="dashed", color="magenta", weight=3]; 2392 -> 2477[label="",style="dashed", color="magenta", weight=3]; 2393 -> 262[label="",style="dashed", color="red", weight=0]; 2393[label="vwx260 == vwx270",fontsize=16,color="magenta"];2393 -> 2478[label="",style="dashed", color="magenta", weight=3]; 2393 -> 2479[label="",style="dashed", color="magenta", weight=3]; 2394 -> 272[label="",style="dashed", color="red", weight=0]; 2394[label="vwx260 == vwx270",fontsize=16,color="magenta"];2394 -> 2480[label="",style="dashed", color="magenta", weight=3]; 2394 -> 2481[label="",style="dashed", color="magenta", weight=3]; 2395 -> 271[label="",style="dashed", color="red", weight=0]; 2395[label="vwx260 == vwx270",fontsize=16,color="magenta"];2395 -> 2482[label="",style="dashed", color="magenta", weight=3]; 2395 -> 2483[label="",style="dashed", color="magenta", weight=3]; 2396[label="vwx261 < vwx271",fontsize=16,color="blue",shape="box"];3410[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2396 -> 3410[label="",style="solid", color="blue", weight=9]; 3410 -> 2484[label="",style="solid", color="blue", weight=3]; 3411[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2396 -> 3411[label="",style="solid", color="blue", weight=9]; 3411 -> 2485[label="",style="solid", color="blue", weight=3]; 3412[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2396 -> 3412[label="",style="solid", color="blue", weight=9]; 3412 -> 2486[label="",style="solid", color="blue", weight=3]; 3413[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2396 -> 3413[label="",style="solid", color="blue", weight=9]; 3413 -> 2487[label="",style="solid", color="blue", weight=3]; 3414[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2396 -> 3414[label="",style="solid", color="blue", weight=9]; 3414 -> 2488[label="",style="solid", color="blue", weight=3]; 3415[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2396 -> 3415[label="",style="solid", color="blue", weight=9]; 3415 -> 2489[label="",style="solid", color="blue", weight=3]; 3416[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2396 -> 3416[label="",style="solid", color="blue", weight=9]; 3416 -> 2490[label="",style="solid", color="blue", weight=3]; 3417[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2396 -> 3417[label="",style="solid", color="blue", weight=9]; 3417 -> 2491[label="",style="solid", color="blue", weight=3]; 3418[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2396 -> 3418[label="",style="solid", color="blue", weight=9]; 3418 -> 2492[label="",style="solid", color="blue", weight=3]; 3419[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2396 -> 3419[label="",style="solid", color="blue", weight=9]; 3419 -> 2493[label="",style="solid", color="blue", weight=3]; 3420[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2396 -> 3420[label="",style="solid", color="blue", weight=9]; 3420 -> 2494[label="",style="solid", color="blue", weight=3]; 3421[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2396 -> 3421[label="",style="solid", color="blue", weight=9]; 3421 -> 2495[label="",style="solid", color="blue", weight=3]; 3422[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2396 -> 3422[label="",style="solid", color="blue", weight=9]; 3422 -> 2496[label="",style="solid", color="blue", weight=3]; 3423[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2396 -> 3423[label="",style="solid", color="blue", weight=9]; 3423 -> 2497[label="",style="solid", color="blue", weight=3]; 2397 -> 693[label="",style="dashed", color="red", weight=0]; 2397[label="vwx261 == vwx271 && vwx262 <= vwx272",fontsize=16,color="magenta"];2397 -> 2498[label="",style="dashed", color="magenta", weight=3]; 2397 -> 2499[label="",style="dashed", color="magenta", weight=3]; 2398[label="primPlusNat (Succ vwx14400) vwx30100",fontsize=16,color="burlywood",shape="box"];3424[label="vwx30100/Succ vwx301000",fontsize=10,color="white",style="solid",shape="box"];2398 -> 3424[label="",style="solid", color="burlywood", weight=9]; 3424 -> 2500[label="",style="solid", color="burlywood", weight=3]; 3425[label="vwx30100/Zero",fontsize=10,color="white",style="solid",shape="box"];2398 -> 3425[label="",style="solid", color="burlywood", weight=9]; 3425 -> 2501[label="",style="solid", color="burlywood", weight=3]; 2399[label="primPlusNat Zero vwx30100",fontsize=16,color="burlywood",shape="box"];3426[label="vwx30100/Succ vwx301000",fontsize=10,color="white",style="solid",shape="box"];2399 -> 3426[label="",style="solid", color="burlywood", weight=9]; 3426 -> 2502[label="",style="solid", color="burlywood", weight=3]; 3427[label="vwx30100/Zero",fontsize=10,color="white",style="solid",shape="box"];2399 -> 3427[label="",style="solid", color="burlywood", weight=9]; 3427 -> 2503[label="",style="solid", color="burlywood", weight=3]; 2400[label="vwx270",fontsize=16,color="green",shape="box"];2401[label="vwx260",fontsize=16,color="green",shape="box"];2402[label="vwx270",fontsize=16,color="green",shape="box"];2403[label="vwx260",fontsize=16,color="green",shape="box"];2404[label="vwx270",fontsize=16,color="green",shape="box"];2405[label="vwx260",fontsize=16,color="green",shape="box"];2406[label="vwx270",fontsize=16,color="green",shape="box"];2407[label="vwx260",fontsize=16,color="green",shape="box"];2408[label="vwx270",fontsize=16,color="green",shape="box"];2409[label="vwx260",fontsize=16,color="green",shape="box"];2410[label="vwx270",fontsize=16,color="green",shape="box"];2411[label="vwx260",fontsize=16,color="green",shape="box"];2412[label="vwx270",fontsize=16,color="green",shape="box"];2413[label="vwx260",fontsize=16,color="green",shape="box"];2414[label="vwx270",fontsize=16,color="green",shape="box"];2415[label="vwx260",fontsize=16,color="green",shape="box"];2416[label="vwx270",fontsize=16,color="green",shape="box"];2417[label="vwx260",fontsize=16,color="green",shape="box"];2418[label="vwx270",fontsize=16,color="green",shape="box"];2419[label="vwx260",fontsize=16,color="green",shape="box"];2420[label="vwx270",fontsize=16,color="green",shape="box"];2421[label="vwx260",fontsize=16,color="green",shape="box"];2422[label="vwx270",fontsize=16,color="green",shape="box"];2423[label="vwx260",fontsize=16,color="green",shape="box"];2424[label="vwx270",fontsize=16,color="green",shape="box"];2425[label="vwx260",fontsize=16,color="green",shape="box"];2426[label="vwx270",fontsize=16,color="green",shape="box"];2427[label="vwx260",fontsize=16,color="green",shape="box"];2428[label="vwx271",fontsize=16,color="green",shape="box"];2429[label="vwx261",fontsize=16,color="green",shape="box"];2430[label="vwx271",fontsize=16,color="green",shape="box"];2431[label="vwx261",fontsize=16,color="green",shape="box"];2432[label="vwx271",fontsize=16,color="green",shape="box"];2433[label="vwx261",fontsize=16,color="green",shape="box"];2434[label="vwx271",fontsize=16,color="green",shape="box"];2435[label="vwx261",fontsize=16,color="green",shape="box"];2436[label="vwx271",fontsize=16,color="green",shape="box"];2437[label="vwx261",fontsize=16,color="green",shape="box"];2438[label="vwx271",fontsize=16,color="green",shape="box"];2439[label="vwx261",fontsize=16,color="green",shape="box"];2440[label="vwx271",fontsize=16,color="green",shape="box"];2441[label="vwx261",fontsize=16,color="green",shape="box"];2442[label="vwx271",fontsize=16,color="green",shape="box"];2443[label="vwx261",fontsize=16,color="green",shape="box"];2444[label="vwx271",fontsize=16,color="green",shape="box"];2445[label="vwx261",fontsize=16,color="green",shape="box"];2446[label="vwx271",fontsize=16,color="green",shape="box"];2447[label="vwx261",fontsize=16,color="green",shape="box"];2448[label="vwx271",fontsize=16,color="green",shape="box"];2449[label="vwx261",fontsize=16,color="green",shape="box"];2450[label="vwx271",fontsize=16,color="green",shape="box"];2451[label="vwx261",fontsize=16,color="green",shape="box"];2452[label="vwx271",fontsize=16,color="green",shape="box"];2453[label="vwx261",fontsize=16,color="green",shape="box"];2454[label="vwx271",fontsize=16,color="green",shape="box"];2455[label="vwx261",fontsize=16,color="green",shape="box"];2456[label="vwx270",fontsize=16,color="green",shape="box"];2457[label="vwx260",fontsize=16,color="green",shape="box"];2458[label="vwx270",fontsize=16,color="green",shape="box"];2459[label="vwx260",fontsize=16,color="green",shape="box"];2460[label="vwx270",fontsize=16,color="green",shape="box"];2461[label="vwx260",fontsize=16,color="green",shape="box"];2462[label="vwx270",fontsize=16,color="green",shape="box"];2463[label="vwx260",fontsize=16,color="green",shape="box"];2464[label="vwx270",fontsize=16,color="green",shape="box"];2465[label="vwx260",fontsize=16,color="green",shape="box"];2466[label="vwx270",fontsize=16,color="green",shape="box"];2467[label="vwx260",fontsize=16,color="green",shape="box"];2468[label="vwx270",fontsize=16,color="green",shape="box"];2469[label="vwx260",fontsize=16,color="green",shape="box"];2470[label="vwx270",fontsize=16,color="green",shape="box"];2471[label="vwx260",fontsize=16,color="green",shape="box"];2472[label="vwx270",fontsize=16,color="green",shape="box"];2473[label="vwx260",fontsize=16,color="green",shape="box"];2474[label="vwx270",fontsize=16,color="green",shape="box"];2475[label="vwx260",fontsize=16,color="green",shape="box"];2476[label="vwx270",fontsize=16,color="green",shape="box"];2477[label="vwx260",fontsize=16,color="green",shape="box"];2478[label="vwx270",fontsize=16,color="green",shape="box"];2479[label="vwx260",fontsize=16,color="green",shape="box"];2480[label="vwx270",fontsize=16,color="green",shape="box"];2481[label="vwx260",fontsize=16,color="green",shape="box"];2482[label="vwx270",fontsize=16,color="green",shape="box"];2483[label="vwx260",fontsize=16,color="green",shape="box"];2484 -> 968[label="",style="dashed", color="red", weight=0]; 2484[label="vwx261 < vwx271",fontsize=16,color="magenta"];2484 -> 2504[label="",style="dashed", color="magenta", weight=3]; 2484 -> 2505[label="",style="dashed", color="magenta", weight=3]; 2485 -> 969[label="",style="dashed", color="red", weight=0]; 2485[label="vwx261 < vwx271",fontsize=16,color="magenta"];2485 -> 2506[label="",style="dashed", color="magenta", weight=3]; 2485 -> 2507[label="",style="dashed", color="magenta", weight=3]; 2486 -> 970[label="",style="dashed", color="red", weight=0]; 2486[label="vwx261 < vwx271",fontsize=16,color="magenta"];2486 -> 2508[label="",style="dashed", color="magenta", weight=3]; 2486 -> 2509[label="",style="dashed", color="magenta", weight=3]; 2487 -> 971[label="",style="dashed", color="red", weight=0]; 2487[label="vwx261 < vwx271",fontsize=16,color="magenta"];2487 -> 2510[label="",style="dashed", color="magenta", weight=3]; 2487 -> 2511[label="",style="dashed", color="magenta", weight=3]; 2488 -> 972[label="",style="dashed", color="red", weight=0]; 2488[label="vwx261 < vwx271",fontsize=16,color="magenta"];2488 -> 2512[label="",style="dashed", color="magenta", weight=3]; 2488 -> 2513[label="",style="dashed", color="magenta", weight=3]; 2489 -> 973[label="",style="dashed", color="red", weight=0]; 2489[label="vwx261 < vwx271",fontsize=16,color="magenta"];2489 -> 2514[label="",style="dashed", color="magenta", weight=3]; 2489 -> 2515[label="",style="dashed", color="magenta", weight=3]; 2490 -> 974[label="",style="dashed", color="red", weight=0]; 2490[label="vwx261 < vwx271",fontsize=16,color="magenta"];2490 -> 2516[label="",style="dashed", color="magenta", weight=3]; 2490 -> 2517[label="",style="dashed", color="magenta", weight=3]; 2491 -> 975[label="",style="dashed", color="red", weight=0]; 2491[label="vwx261 < vwx271",fontsize=16,color="magenta"];2491 -> 2518[label="",style="dashed", color="magenta", weight=3]; 2491 -> 2519[label="",style="dashed", color="magenta", weight=3]; 2492 -> 976[label="",style="dashed", color="red", weight=0]; 2492[label="vwx261 < vwx271",fontsize=16,color="magenta"];2492 -> 2520[label="",style="dashed", color="magenta", weight=3]; 2492 -> 2521[label="",style="dashed", color="magenta", weight=3]; 2493 -> 977[label="",style="dashed", color="red", weight=0]; 2493[label="vwx261 < vwx271",fontsize=16,color="magenta"];2493 -> 2522[label="",style="dashed", color="magenta", weight=3]; 2493 -> 2523[label="",style="dashed", color="magenta", weight=3]; 2494 -> 978[label="",style="dashed", color="red", weight=0]; 2494[label="vwx261 < vwx271",fontsize=16,color="magenta"];2494 -> 2524[label="",style="dashed", color="magenta", weight=3]; 2494 -> 2525[label="",style="dashed", color="magenta", weight=3]; 2495 -> 979[label="",style="dashed", color="red", weight=0]; 2495[label="vwx261 < vwx271",fontsize=16,color="magenta"];2495 -> 2526[label="",style="dashed", color="magenta", weight=3]; 2495 -> 2527[label="",style="dashed", color="magenta", weight=3]; 2496 -> 980[label="",style="dashed", color="red", weight=0]; 2496[label="vwx261 < vwx271",fontsize=16,color="magenta"];2496 -> 2528[label="",style="dashed", color="magenta", weight=3]; 2496 -> 2529[label="",style="dashed", color="magenta", weight=3]; 2497 -> 981[label="",style="dashed", color="red", weight=0]; 2497[label="vwx261 < vwx271",fontsize=16,color="magenta"];2497 -> 2530[label="",style="dashed", color="magenta", weight=3]; 2497 -> 2531[label="",style="dashed", color="magenta", weight=3]; 2498[label="vwx261 == vwx271",fontsize=16,color="blue",shape="box"];3428[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2498 -> 3428[label="",style="solid", color="blue", weight=9]; 3428 -> 2532[label="",style="solid", color="blue", weight=3]; 3429[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2498 -> 3429[label="",style="solid", color="blue", weight=9]; 3429 -> 2533[label="",style="solid", color="blue", weight=3]; 3430[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2498 -> 3430[label="",style="solid", color="blue", weight=9]; 3430 -> 2534[label="",style="solid", color="blue", weight=3]; 3431[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2498 -> 3431[label="",style="solid", color="blue", weight=9]; 3431 -> 2535[label="",style="solid", color="blue", weight=3]; 3432[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2498 -> 3432[label="",style="solid", color="blue", weight=9]; 3432 -> 2536[label="",style="solid", color="blue", weight=3]; 3433[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2498 -> 3433[label="",style="solid", color="blue", weight=9]; 3433 -> 2537[label="",style="solid", color="blue", weight=3]; 3434[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2498 -> 3434[label="",style="solid", color="blue", weight=9]; 3434 -> 2538[label="",style="solid", color="blue", weight=3]; 3435[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2498 -> 3435[label="",style="solid", color="blue", weight=9]; 3435 -> 2539[label="",style="solid", color="blue", weight=3]; 3436[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2498 -> 3436[label="",style="solid", color="blue", weight=9]; 3436 -> 2540[label="",style="solid", color="blue", weight=3]; 3437[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2498 -> 3437[label="",style="solid", color="blue", weight=9]; 3437 -> 2541[label="",style="solid", color="blue", weight=3]; 3438[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2498 -> 3438[label="",style="solid", color="blue", weight=9]; 3438 -> 2542[label="",style="solid", color="blue", weight=3]; 3439[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2498 -> 3439[label="",style="solid", color="blue", weight=9]; 3439 -> 2543[label="",style="solid", color="blue", weight=3]; 3440[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2498 -> 3440[label="",style="solid", color="blue", weight=9]; 3440 -> 2544[label="",style="solid", color="blue", weight=3]; 3441[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2498 -> 3441[label="",style="solid", color="blue", weight=9]; 3441 -> 2545[label="",style="solid", color="blue", weight=3]; 2499[label="vwx262 <= vwx272",fontsize=16,color="blue",shape="box"];3442[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2499 -> 3442[label="",style="solid", color="blue", weight=9]; 3442 -> 2546[label="",style="solid", color="blue", weight=3]; 3443[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2499 -> 3443[label="",style="solid", color="blue", weight=9]; 3443 -> 2547[label="",style="solid", color="blue", weight=3]; 3444[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2499 -> 3444[label="",style="solid", color="blue", weight=9]; 3444 -> 2548[label="",style="solid", color="blue", weight=3]; 3445[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2499 -> 3445[label="",style="solid", color="blue", weight=9]; 3445 -> 2549[label="",style="solid", color="blue", weight=3]; 3446[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2499 -> 3446[label="",style="solid", color="blue", weight=9]; 3446 -> 2550[label="",style="solid", color="blue", weight=3]; 3447[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2499 -> 3447[label="",style="solid", color="blue", weight=9]; 3447 -> 2551[label="",style="solid", color="blue", weight=3]; 3448[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2499 -> 3448[label="",style="solid", color="blue", weight=9]; 3448 -> 2552[label="",style="solid", color="blue", weight=3]; 3449[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2499 -> 3449[label="",style="solid", color="blue", weight=9]; 3449 -> 2553[label="",style="solid", color="blue", weight=3]; 3450[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2499 -> 3450[label="",style="solid", color="blue", weight=9]; 3450 -> 2554[label="",style="solid", color="blue", weight=3]; 3451[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2499 -> 3451[label="",style="solid", color="blue", weight=9]; 3451 -> 2555[label="",style="solid", color="blue", weight=3]; 3452[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2499 -> 3452[label="",style="solid", color="blue", weight=9]; 3452 -> 2556[label="",style="solid", color="blue", weight=3]; 3453[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2499 -> 3453[label="",style="solid", color="blue", weight=9]; 3453 -> 2557[label="",style="solid", color="blue", weight=3]; 3454[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2499 -> 3454[label="",style="solid", color="blue", weight=9]; 3454 -> 2558[label="",style="solid", color="blue", weight=3]; 3455[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2499 -> 3455[label="",style="solid", color="blue", weight=9]; 3455 -> 2559[label="",style="solid", color="blue", weight=3]; 2500[label="primPlusNat (Succ vwx14400) (Succ vwx301000)",fontsize=16,color="black",shape="box"];2500 -> 2560[label="",style="solid", color="black", weight=3]; 2501[label="primPlusNat (Succ vwx14400) Zero",fontsize=16,color="black",shape="box"];2501 -> 2561[label="",style="solid", color="black", weight=3]; 2502[label="primPlusNat Zero (Succ vwx301000)",fontsize=16,color="black",shape="box"];2502 -> 2562[label="",style="solid", color="black", weight=3]; 2503[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];2503 -> 2563[label="",style="solid", color="black", weight=3]; 2504[label="vwx271",fontsize=16,color="green",shape="box"];2505[label="vwx261",fontsize=16,color="green",shape="box"];2506[label="vwx271",fontsize=16,color="green",shape="box"];2507[label="vwx261",fontsize=16,color="green",shape="box"];2508[label="vwx271",fontsize=16,color="green",shape="box"];2509[label="vwx261",fontsize=16,color="green",shape="box"];2510[label="vwx271",fontsize=16,color="green",shape="box"];2511[label="vwx261",fontsize=16,color="green",shape="box"];2512[label="vwx271",fontsize=16,color="green",shape="box"];2513[label="vwx261",fontsize=16,color="green",shape="box"];2514[label="vwx271",fontsize=16,color="green",shape="box"];2515[label="vwx261",fontsize=16,color="green",shape="box"];2516[label="vwx271",fontsize=16,color="green",shape="box"];2517[label="vwx261",fontsize=16,color="green",shape="box"];2518[label="vwx271",fontsize=16,color="green",shape="box"];2519[label="vwx261",fontsize=16,color="green",shape="box"];2520[label="vwx271",fontsize=16,color="green",shape="box"];2521[label="vwx261",fontsize=16,color="green",shape="box"];2522[label="vwx271",fontsize=16,color="green",shape="box"];2523[label="vwx261",fontsize=16,color="green",shape="box"];2524[label="vwx271",fontsize=16,color="green",shape="box"];2525[label="vwx261",fontsize=16,color="green",shape="box"];2526[label="vwx271",fontsize=16,color="green",shape="box"];2527[label="vwx261",fontsize=16,color="green",shape="box"];2528[label="vwx271",fontsize=16,color="green",shape="box"];2529[label="vwx261",fontsize=16,color="green",shape="box"];2530[label="vwx271",fontsize=16,color="green",shape="box"];2531[label="vwx261",fontsize=16,color="green",shape="box"];2532 -> 268[label="",style="dashed", color="red", weight=0]; 2532[label="vwx261 == vwx271",fontsize=16,color="magenta"];2532 -> 2564[label="",style="dashed", color="magenta", weight=3]; 2532 -> 2565[label="",style="dashed", color="magenta", weight=3]; 2533 -> 263[label="",style="dashed", color="red", weight=0]; 2533[label="vwx261 == vwx271",fontsize=16,color="magenta"];2533 -> 2566[label="",style="dashed", color="magenta", weight=3]; 2533 -> 2567[label="",style="dashed", color="magenta", weight=3]; 2534 -> 269[label="",style="dashed", color="red", weight=0]; 2534[label="vwx261 == vwx271",fontsize=16,color="magenta"];2534 -> 2568[label="",style="dashed", color="magenta", weight=3]; 2534 -> 2569[label="",style="dashed", color="magenta", weight=3]; 2535 -> 265[label="",style="dashed", color="red", weight=0]; 2535[label="vwx261 == vwx271",fontsize=16,color="magenta"];2535 -> 2570[label="",style="dashed", color="magenta", weight=3]; 2535 -> 2571[label="",style="dashed", color="magenta", weight=3]; 2536 -> 274[label="",style="dashed", color="red", weight=0]; 2536[label="vwx261 == vwx271",fontsize=16,color="magenta"];2536 -> 2572[label="",style="dashed", color="magenta", weight=3]; 2536 -> 2573[label="",style="dashed", color="magenta", weight=3]; 2537 -> 270[label="",style="dashed", color="red", weight=0]; 2537[label="vwx261 == vwx271",fontsize=16,color="magenta"];2537 -> 2574[label="",style="dashed", color="magenta", weight=3]; 2537 -> 2575[label="",style="dashed", color="magenta", weight=3]; 2538 -> 261[label="",style="dashed", color="red", weight=0]; 2538[label="vwx261 == vwx271",fontsize=16,color="magenta"];2538 -> 2576[label="",style="dashed", color="magenta", weight=3]; 2538 -> 2577[label="",style="dashed", color="magenta", weight=3]; 2539 -> 267[label="",style="dashed", color="red", weight=0]; 2539[label="vwx261 == vwx271",fontsize=16,color="magenta"];2539 -> 2578[label="",style="dashed", color="magenta", weight=3]; 2539 -> 2579[label="",style="dashed", color="magenta", weight=3]; 2540 -> 266[label="",style="dashed", color="red", weight=0]; 2540[label="vwx261 == vwx271",fontsize=16,color="magenta"];2540 -> 2580[label="",style="dashed", color="magenta", weight=3]; 2540 -> 2581[label="",style="dashed", color="magenta", weight=3]; 2541 -> 273[label="",style="dashed", color="red", weight=0]; 2541[label="vwx261 == vwx271",fontsize=16,color="magenta"];2541 -> 2582[label="",style="dashed", color="magenta", weight=3]; 2541 -> 2583[label="",style="dashed", color="magenta", weight=3]; 2542 -> 264[label="",style="dashed", color="red", weight=0]; 2542[label="vwx261 == vwx271",fontsize=16,color="magenta"];2542 -> 2584[label="",style="dashed", color="magenta", weight=3]; 2542 -> 2585[label="",style="dashed", color="magenta", weight=3]; 2543 -> 262[label="",style="dashed", color="red", weight=0]; 2543[label="vwx261 == vwx271",fontsize=16,color="magenta"];2543 -> 2586[label="",style="dashed", color="magenta", weight=3]; 2543 -> 2587[label="",style="dashed", color="magenta", weight=3]; 2544 -> 272[label="",style="dashed", color="red", weight=0]; 2544[label="vwx261 == vwx271",fontsize=16,color="magenta"];2544 -> 2588[label="",style="dashed", color="magenta", weight=3]; 2544 -> 2589[label="",style="dashed", color="magenta", weight=3]; 2545 -> 271[label="",style="dashed", color="red", weight=0]; 2545[label="vwx261 == vwx271",fontsize=16,color="magenta"];2545 -> 2590[label="",style="dashed", color="magenta", weight=3]; 2545 -> 2591[label="",style="dashed", color="magenta", weight=3]; 2546 -> 1021[label="",style="dashed", color="red", weight=0]; 2546[label="vwx262 <= vwx272",fontsize=16,color="magenta"];2546 -> 2592[label="",style="dashed", color="magenta", weight=3]; 2546 -> 2593[label="",style="dashed", color="magenta", weight=3]; 2547 -> 1022[label="",style="dashed", color="red", weight=0]; 2547[label="vwx262 <= vwx272",fontsize=16,color="magenta"];2547 -> 2594[label="",style="dashed", color="magenta", weight=3]; 2547 -> 2595[label="",style="dashed", color="magenta", weight=3]; 2548 -> 1023[label="",style="dashed", color="red", weight=0]; 2548[label="vwx262 <= vwx272",fontsize=16,color="magenta"];2548 -> 2596[label="",style="dashed", color="magenta", weight=3]; 2548 -> 2597[label="",style="dashed", color="magenta", weight=3]; 2549 -> 1024[label="",style="dashed", color="red", weight=0]; 2549[label="vwx262 <= vwx272",fontsize=16,color="magenta"];2549 -> 2598[label="",style="dashed", color="magenta", weight=3]; 2549 -> 2599[label="",style="dashed", color="magenta", weight=3]; 2550 -> 1025[label="",style="dashed", color="red", weight=0]; 2550[label="vwx262 <= vwx272",fontsize=16,color="magenta"];2550 -> 2600[label="",style="dashed", color="magenta", weight=3]; 2550 -> 2601[label="",style="dashed", color="magenta", weight=3]; 2551 -> 1026[label="",style="dashed", color="red", weight=0]; 2551[label="vwx262 <= vwx272",fontsize=16,color="magenta"];2551 -> 2602[label="",style="dashed", color="magenta", weight=3]; 2551 -> 2603[label="",style="dashed", color="magenta", weight=3]; 2552 -> 1027[label="",style="dashed", color="red", weight=0]; 2552[label="vwx262 <= vwx272",fontsize=16,color="magenta"];2552 -> 2604[label="",style="dashed", color="magenta", weight=3]; 2552 -> 2605[label="",style="dashed", color="magenta", weight=3]; 2553 -> 1028[label="",style="dashed", color="red", weight=0]; 2553[label="vwx262 <= vwx272",fontsize=16,color="magenta"];2553 -> 2606[label="",style="dashed", color="magenta", weight=3]; 2553 -> 2607[label="",style="dashed", color="magenta", weight=3]; 2554 -> 1029[label="",style="dashed", color="red", weight=0]; 2554[label="vwx262 <= vwx272",fontsize=16,color="magenta"];2554 -> 2608[label="",style="dashed", color="magenta", weight=3]; 2554 -> 2609[label="",style="dashed", color="magenta", weight=3]; 2555 -> 1030[label="",style="dashed", color="red", weight=0]; 2555[label="vwx262 <= vwx272",fontsize=16,color="magenta"];2555 -> 2610[label="",style="dashed", color="magenta", weight=3]; 2555 -> 2611[label="",style="dashed", color="magenta", weight=3]; 2556 -> 1031[label="",style="dashed", color="red", weight=0]; 2556[label="vwx262 <= vwx272",fontsize=16,color="magenta"];2556 -> 2612[label="",style="dashed", color="magenta", weight=3]; 2556 -> 2613[label="",style="dashed", color="magenta", weight=3]; 2557 -> 1032[label="",style="dashed", color="red", weight=0]; 2557[label="vwx262 <= vwx272",fontsize=16,color="magenta"];2557 -> 2614[label="",style="dashed", color="magenta", weight=3]; 2557 -> 2615[label="",style="dashed", color="magenta", weight=3]; 2558 -> 1033[label="",style="dashed", color="red", weight=0]; 2558[label="vwx262 <= vwx272",fontsize=16,color="magenta"];2558 -> 2616[label="",style="dashed", color="magenta", weight=3]; 2558 -> 2617[label="",style="dashed", color="magenta", weight=3]; 2559 -> 1034[label="",style="dashed", color="red", weight=0]; 2559[label="vwx262 <= vwx272",fontsize=16,color="magenta"];2559 -> 2618[label="",style="dashed", color="magenta", weight=3]; 2559 -> 2619[label="",style="dashed", color="magenta", weight=3]; 2560[label="Succ (Succ (primPlusNat vwx14400 vwx301000))",fontsize=16,color="green",shape="box"];2560 -> 2620[label="",style="dashed", color="green", weight=3]; 2561[label="Succ vwx14400",fontsize=16,color="green",shape="box"];2562[label="Succ vwx301000",fontsize=16,color="green",shape="box"];2563[label="Zero",fontsize=16,color="green",shape="box"];2564[label="vwx271",fontsize=16,color="green",shape="box"];2565[label="vwx261",fontsize=16,color="green",shape="box"];2566[label="vwx271",fontsize=16,color="green",shape="box"];2567[label="vwx261",fontsize=16,color="green",shape="box"];2568[label="vwx271",fontsize=16,color="green",shape="box"];2569[label="vwx261",fontsize=16,color="green",shape="box"];2570[label="vwx271",fontsize=16,color="green",shape="box"];2571[label="vwx261",fontsize=16,color="green",shape="box"];2572[label="vwx271",fontsize=16,color="green",shape="box"];2573[label="vwx261",fontsize=16,color="green",shape="box"];2574[label="vwx271",fontsize=16,color="green",shape="box"];2575[label="vwx261",fontsize=16,color="green",shape="box"];2576[label="vwx271",fontsize=16,color="green",shape="box"];2577[label="vwx261",fontsize=16,color="green",shape="box"];2578[label="vwx271",fontsize=16,color="green",shape="box"];2579[label="vwx261",fontsize=16,color="green",shape="box"];2580[label="vwx271",fontsize=16,color="green",shape="box"];2581[label="vwx261",fontsize=16,color="green",shape="box"];2582[label="vwx271",fontsize=16,color="green",shape="box"];2583[label="vwx261",fontsize=16,color="green",shape="box"];2584[label="vwx271",fontsize=16,color="green",shape="box"];2585[label="vwx261",fontsize=16,color="green",shape="box"];2586[label="vwx271",fontsize=16,color="green",shape="box"];2587[label="vwx261",fontsize=16,color="green",shape="box"];2588[label="vwx271",fontsize=16,color="green",shape="box"];2589[label="vwx261",fontsize=16,color="green",shape="box"];2590[label="vwx271",fontsize=16,color="green",shape="box"];2591[label="vwx261",fontsize=16,color="green",shape="box"];2592[label="vwx272",fontsize=16,color="green",shape="box"];2593[label="vwx262",fontsize=16,color="green",shape="box"];2594[label="vwx272",fontsize=16,color="green",shape="box"];2595[label="vwx262",fontsize=16,color="green",shape="box"];2596[label="vwx272",fontsize=16,color="green",shape="box"];2597[label="vwx262",fontsize=16,color="green",shape="box"];2598[label="vwx272",fontsize=16,color="green",shape="box"];2599[label="vwx262",fontsize=16,color="green",shape="box"];2600[label="vwx272",fontsize=16,color="green",shape="box"];2601[label="vwx262",fontsize=16,color="green",shape="box"];2602[label="vwx272",fontsize=16,color="green",shape="box"];2603[label="vwx262",fontsize=16,color="green",shape="box"];2604[label="vwx272",fontsize=16,color="green",shape="box"];2605[label="vwx262",fontsize=16,color="green",shape="box"];2606[label="vwx272",fontsize=16,color="green",shape="box"];2607[label="vwx262",fontsize=16,color="green",shape="box"];2608[label="vwx272",fontsize=16,color="green",shape="box"];2609[label="vwx262",fontsize=16,color="green",shape="box"];2610[label="vwx272",fontsize=16,color="green",shape="box"];2611[label="vwx262",fontsize=16,color="green",shape="box"];2612[label="vwx272",fontsize=16,color="green",shape="box"];2613[label="vwx262",fontsize=16,color="green",shape="box"];2614[label="vwx272",fontsize=16,color="green",shape="box"];2615[label="vwx262",fontsize=16,color="green",shape="box"];2616[label="vwx272",fontsize=16,color="green",shape="box"];2617[label="vwx262",fontsize=16,color="green",shape="box"];2618[label="vwx272",fontsize=16,color="green",shape="box"];2619[label="vwx262",fontsize=16,color="green",shape="box"];2620 -> 2295[label="",style="dashed", color="red", weight=0]; 2620[label="primPlusNat vwx14400 vwx301000",fontsize=16,color="magenta"];2620 -> 2621[label="",style="dashed", color="magenta", weight=3]; 2620 -> 2622[label="",style="dashed", color="magenta", weight=3]; 2621[label="vwx14400",fontsize=16,color="green",shape="box"];2622[label="vwx301000",fontsize=16,color="green",shape="box"];} ---------------------------------------- (14) Complex Obligation (AND) ---------------------------------------- (15) Obligation: Q DP problem: The TRS P consists of the following rules: new_primCmpNat(Succ(vwx3000), Succ(vwx4000)) -> new_primCmpNat(vwx3000, vwx4000) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (16) 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(vwx3000), Succ(vwx4000)) -> new_primCmpNat(vwx3000, vwx4000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (17) YES ---------------------------------------- (18) Obligation: Q DP problem: The TRS P consists of the following rules: new_esEs2(Just(vwx3000), Just(vwx4000), app(app(ty_@2, hg), hh)) -> new_esEs1(vwx3000, vwx4000, hg, hh) new_esEs0(Left(vwx3000), Left(vwx4000), app(app(ty_@2, cf), cg), cc) -> new_esEs1(vwx3000, vwx4000, cf, cg) new_esEs1(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), gb, app(app(app(ty_@3, ha), hb), hc)) -> new_esEs3(vwx3001, vwx4001, ha, hb, hc) new_esEs3(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), app(app(ty_Either, bah), bba), baf, bag) -> new_esEs0(vwx3000, vwx4000, bah, bba) new_esEs1(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), gb, app(app(ty_Either, gd), ge)) -> new_esEs0(vwx3001, vwx4001, gd, ge) new_esEs3(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), bbh, app(app(ty_Either, bcb), bcc), bag) -> new_esEs0(vwx3001, vwx4001, bcb, bcc) new_esEs1(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), app(app(ty_Either, fa), fb), eh) -> new_esEs0(vwx3000, vwx4000, fa, fb) new_esEs3(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), bbh, baf, app(app(ty_Either, bdc), bdd)) -> new_esEs0(vwx3002, vwx4002, bdc, bdd) new_esEs(:(vwx3000, vwx3001), :(vwx4000, vwx4001), app(app(ty_@2, bc), bd)) -> new_esEs1(vwx3000, vwx4000, bc, bd) new_esEs2(Just(vwx3000), Just(vwx4000), app(ty_[], hd)) -> new_esEs(vwx3000, vwx4000, hd) new_esEs0(Left(vwx3000), Left(vwx4000), app(ty_Maybe, da), cc) -> new_esEs2(vwx3000, vwx4000, da) new_esEs2(Just(vwx3000), Just(vwx4000), app(app(app(ty_@3, bab), bac), bad)) -> new_esEs3(vwx3000, vwx4000, bab, bac, bad) new_esEs3(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), app(app(app(ty_@3, bbe), bbf), bbg), baf, bag) -> new_esEs3(vwx3000, vwx4000, bbe, bbf, bbg) new_esEs(:(vwx3000, vwx3001), :(vwx4000, vwx4001), app(app(app(ty_@3, bf), bg), bh)) -> new_esEs3(vwx3000, vwx4000, bf, bg, bh) new_esEs1(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), app(ty_[], eg), eh) -> new_esEs(vwx3000, vwx4000, eg) new_esEs0(Right(vwx3000), Right(vwx4000), de, app(app(ty_Either, dg), dh)) -> new_esEs0(vwx3000, vwx4000, dg, dh) new_esEs(:(vwx3000, vwx3001), :(vwx4000, vwx4001), ca) -> new_esEs(vwx3001, vwx4001, ca) new_esEs2(Just(vwx3000), Just(vwx4000), app(ty_Maybe, baa)) -> new_esEs2(vwx3000, vwx4000, baa) new_esEs(:(vwx3000, vwx3001), :(vwx4000, vwx4001), app(ty_[], h)) -> new_esEs(vwx3000, vwx4000, h) new_esEs0(Right(vwx3000), Right(vwx4000), de, app(ty_[], df)) -> new_esEs(vwx3000, vwx4000, df) new_esEs3(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), bbh, baf, app(app(app(ty_@3, bdh), bea), beb)) -> new_esEs3(vwx3002, vwx4002, bdh, bea, beb) new_esEs1(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), gb, app(ty_Maybe, gh)) -> new_esEs2(vwx3001, vwx4001, gh) new_esEs0(Right(vwx3000), Right(vwx4000), de, app(ty_Maybe, ec)) -> new_esEs2(vwx3000, vwx4000, ec) new_esEs1(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), app(ty_Maybe, ff), eh) -> new_esEs2(vwx3000, vwx4000, ff) new_esEs(:(vwx3000, vwx3001), :(vwx4000, vwx4001), app(ty_Maybe, be)) -> new_esEs2(vwx3000, vwx4000, be) new_esEs3(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), app(app(ty_@2, bbb), bbc), baf, bag) -> new_esEs1(vwx3000, vwx4000, bbb, bbc) new_esEs0(Left(vwx3000), Left(vwx4000), app(app(ty_Either, cd), ce), cc) -> new_esEs0(vwx3000, vwx4000, cd, ce) new_esEs1(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), app(app(app(ty_@3, fg), fh), ga), eh) -> new_esEs3(vwx3000, vwx4000, fg, fh, ga) new_esEs0(Left(vwx3000), Left(vwx4000), app(app(app(ty_@3, db), dc), dd), cc) -> new_esEs3(vwx3000, vwx4000, db, dc, dd) new_esEs2(Just(vwx3000), Just(vwx4000), app(app(ty_Either, he), hf)) -> new_esEs0(vwx3000, vwx4000, he, hf) new_esEs0(Right(vwx3000), Right(vwx4000), de, app(app(app(ty_@3, ed), ee), ef)) -> new_esEs3(vwx3000, vwx4000, ed, ee, ef) new_esEs3(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), bbh, app(app(app(ty_@3, bcg), bch), bda), bag) -> new_esEs3(vwx3001, vwx4001, bcg, bch, bda) new_esEs3(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), bbh, app(ty_[], bca), bag) -> new_esEs(vwx3001, vwx4001, bca) new_esEs0(Right(vwx3000), Right(vwx4000), de, app(app(ty_@2, ea), eb)) -> new_esEs1(vwx3000, vwx4000, ea, eb) new_esEs3(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), bbh, app(app(ty_@2, bcd), bce), bag) -> new_esEs1(vwx3001, vwx4001, bcd, bce) new_esEs3(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), bbh, baf, app(ty_[], bdb)) -> new_esEs(vwx3002, vwx4002, bdb) new_esEs(:(vwx3000, vwx3001), :(vwx4000, vwx4001), app(app(ty_Either, ba), bb)) -> new_esEs0(vwx3000, vwx4000, ba, bb) new_esEs1(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), app(app(ty_@2, fc), fd), eh) -> new_esEs1(vwx3000, vwx4000, fc, fd) new_esEs1(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), gb, app(ty_[], gc)) -> new_esEs(vwx3001, vwx4001, gc) new_esEs3(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), bbh, baf, app(ty_Maybe, bdg)) -> new_esEs2(vwx3002, vwx4002, bdg) new_esEs3(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), app(ty_[], bae), baf, bag) -> new_esEs(vwx3000, vwx4000, bae) new_esEs3(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), bbh, baf, app(app(ty_@2, bde), bdf)) -> new_esEs1(vwx3002, vwx4002, bde, bdf) new_esEs3(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), app(ty_Maybe, bbd), baf, bag) -> new_esEs2(vwx3000, vwx4000, bbd) new_esEs1(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), gb, app(app(ty_@2, gf), gg)) -> new_esEs1(vwx3001, vwx4001, gf, gg) new_esEs3(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), bbh, app(ty_Maybe, bcf), bag) -> new_esEs2(vwx3001, vwx4001, bcf) new_esEs0(Left(vwx3000), Left(vwx4000), app(ty_[], cb), cc) -> new_esEs(vwx3000, vwx4000, cb) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (19) 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_esEs(:(vwx3000, vwx3001), :(vwx4000, vwx4001), app(ty_Maybe, be)) -> new_esEs2(vwx3000, vwx4000, be) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(Just(vwx3000), Just(vwx4000), app(ty_Maybe, baa)) -> new_esEs2(vwx3000, vwx4000, baa) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(:(vwx3000, vwx3001), :(vwx4000, vwx4001), app(app(ty_Either, ba), bb)) -> new_esEs0(vwx3000, vwx4000, ba, bb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(Just(vwx3000), Just(vwx4000), app(app(ty_Either, he), hf)) -> new_esEs0(vwx3000, vwx4000, he, hf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(:(vwx3000, vwx3001), :(vwx4000, vwx4001), app(app(ty_@2, bc), bd)) -> new_esEs1(vwx3000, vwx4000, bc, bd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(Just(vwx3000), Just(vwx4000), app(app(ty_@2, hg), hh)) -> new_esEs1(vwx3000, vwx4000, hg, hh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(:(vwx3000, vwx3001), :(vwx4000, vwx4001), app(app(app(ty_@3, bf), bg), bh)) -> new_esEs3(vwx3000, vwx4000, bf, bg, bh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs2(Just(vwx3000), Just(vwx4000), app(app(app(ty_@3, bab), bac), bad)) -> new_esEs3(vwx3000, vwx4000, bab, bac, bad) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs2(Just(vwx3000), Just(vwx4000), app(ty_[], hd)) -> new_esEs(vwx3000, vwx4000, hd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), gb, app(ty_Maybe, gh)) -> new_esEs2(vwx3001, vwx4001, gh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs1(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), app(ty_Maybe, ff), eh) -> new_esEs2(vwx3000, vwx4000, ff) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), gb, app(app(ty_Either, gd), ge)) -> new_esEs0(vwx3001, vwx4001, gd, ge) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs1(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), app(app(ty_Either, fa), fb), eh) -> new_esEs0(vwx3000, vwx4000, fa, fb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), app(app(ty_@2, fc), fd), eh) -> new_esEs1(vwx3000, vwx4000, fc, fd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), gb, app(app(ty_@2, gf), gg)) -> new_esEs1(vwx3001, vwx4001, gf, gg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs1(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), gb, app(app(app(ty_@3, ha), hb), hc)) -> new_esEs3(vwx3001, vwx4001, ha, hb, hc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs1(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), app(app(app(ty_@3, fg), fh), ga), eh) -> new_esEs3(vwx3000, vwx4000, fg, fh, ga) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs1(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), app(ty_[], eg), eh) -> new_esEs(vwx3000, vwx4000, eg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), gb, app(ty_[], gc)) -> new_esEs(vwx3001, vwx4001, gc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs3(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), bbh, baf, app(ty_Maybe, bdg)) -> new_esEs2(vwx3002, vwx4002, bdg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs3(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), app(ty_Maybe, bbd), baf, bag) -> new_esEs2(vwx3000, vwx4000, bbd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), bbh, app(ty_Maybe, bcf), bag) -> new_esEs2(vwx3001, vwx4001, bcf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs0(Left(vwx3000), Left(vwx4000), app(ty_Maybe, da), cc) -> new_esEs2(vwx3000, vwx4000, da) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(Right(vwx3000), Right(vwx4000), de, app(ty_Maybe, ec)) -> new_esEs2(vwx3000, vwx4000, ec) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs3(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), app(app(ty_Either, bah), bba), baf, bag) -> new_esEs0(vwx3000, vwx4000, bah, bba) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), bbh, app(app(ty_Either, bcb), bcc), bag) -> new_esEs0(vwx3001, vwx4001, bcb, bcc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs3(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), bbh, baf, app(app(ty_Either, bdc), bdd)) -> new_esEs0(vwx3002, vwx4002, bdc, bdd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs0(Right(vwx3000), Right(vwx4000), de, app(app(ty_Either, dg), dh)) -> new_esEs0(vwx3000, vwx4000, dg, dh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs0(Left(vwx3000), Left(vwx4000), app(app(ty_Either, cd), ce), cc) -> new_esEs0(vwx3000, vwx4000, cd, ce) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), app(app(ty_@2, bbb), bbc), baf, bag) -> new_esEs1(vwx3000, vwx4000, bbb, bbc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), bbh, app(app(ty_@2, bcd), bce), bag) -> new_esEs1(vwx3001, vwx4001, bcd, bce) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs3(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), bbh, baf, app(app(ty_@2, bde), bdf)) -> new_esEs1(vwx3002, vwx4002, bde, bdf) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs3(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), app(app(app(ty_@3, bbe), bbf), bbg), baf, bag) -> new_esEs3(vwx3000, vwx4000, bbe, bbf, bbg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs3(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), bbh, baf, app(app(app(ty_@3, bdh), bea), beb)) -> new_esEs3(vwx3002, vwx4002, bdh, bea, beb) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_esEs3(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), bbh, app(app(app(ty_@3, bcg), bch), bda), bag) -> new_esEs3(vwx3001, vwx4001, bcg, bch, bda) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs3(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), bbh, app(ty_[], bca), bag) -> new_esEs(vwx3001, vwx4001, bca) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs3(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), bbh, baf, app(ty_[], bdb)) -> new_esEs(vwx3002, vwx4002, bdb) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs3(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), app(ty_[], bae), baf, bag) -> new_esEs(vwx3000, vwx4000, bae) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(Left(vwx3000), Left(vwx4000), app(app(ty_@2, cf), cg), cc) -> new_esEs1(vwx3000, vwx4000, cf, cg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(Right(vwx3000), Right(vwx4000), de, app(app(ty_@2, ea), eb)) -> new_esEs1(vwx3000, vwx4000, ea, eb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs0(Left(vwx3000), Left(vwx4000), app(app(app(ty_@3, db), dc), dd), cc) -> new_esEs3(vwx3000, vwx4000, db, dc, dd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs0(Right(vwx3000), Right(vwx4000), de, app(app(app(ty_@3, ed), ee), ef)) -> new_esEs3(vwx3000, vwx4000, ed, ee, ef) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs0(Right(vwx3000), Right(vwx4000), de, app(ty_[], df)) -> new_esEs(vwx3000, vwx4000, df) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs0(Left(vwx3000), Left(vwx4000), app(ty_[], cb), cc) -> new_esEs(vwx3000, vwx4000, cb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(:(vwx3000, vwx3001), :(vwx4000, vwx4001), ca) -> new_esEs(vwx3001, vwx4001, ca) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_esEs(:(vwx3000, vwx3001), :(vwx4000, vwx4001), app(ty_[], h)) -> new_esEs(vwx3000, vwx4000, h) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 ---------------------------------------- (20) YES ---------------------------------------- (21) Obligation: Q DP problem: The TRS P consists of the following rules: new_compare23(vwx51, vwx52, vwx53, vwx54, vwx55, vwx56, False, cbd, ccg, app(app(app(ty_@3, cdf), cdg), cdh)) -> new_ltEs3(vwx53, vwx56, cdf, cdg, cdh) new_compare20(@2(vwx260, vwx261), @2(vwx270, vwx271), False, app(app(ty_@2, app(ty_[], fa)), eh)) -> new_lt0(vwx260, vwx270, fa) new_compare21(vwx33, vwx34, False, app(app(ty_Either, bhe), bhf), bhb) -> new_ltEs2(vwx33, vwx34, bhe, bhf) new_lt1(vwx64, vwx66, dh) -> new_compare1(vwx64, vwx66, dh) new_compare20(Left(vwx260), Left(vwx270), False, app(app(ty_Either, app(app(app(ty_@3, bbe), bbf), bbg)), bah)) -> new_ltEs3(vwx260, vwx270, bbe, bbf, bbg) new_ltEs3(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), bee, app(ty_[], beh), bde) -> new_lt0(vwx261, vwx271, beh) new_ltEs3(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), app(app(ty_@2, bdb), bdc), bdd, bde) -> new_lt(vwx260, vwx270, bdb, bdc) new_compare23(vwx51, vwx52, vwx53, vwx54, vwx55, vwx56, False, app(ty_Maybe, ced), ccg, cbg) -> new_lt1(vwx51, vwx54, ced) new_compare3(Left(vwx300), Left(vwx400), bd, be) -> new_compare21(vwx300, vwx400, new_esEs7(vwx300, vwx400, bd), bd, be) new_compare20(@2(vwx260, vwx261), @2(vwx270, vwx271), False, app(app(ty_@2, ga), app(ty_Maybe, ge))) -> new_ltEs1(vwx261, vwx271, ge) new_compare20(Right(vwx260), Right(vwx270), False, app(app(ty_Either, bbh), app(ty_Maybe, bcd))) -> new_ltEs1(vwx260, vwx270, bcd) new_compare20(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), False, app(app(app(ty_@3, app(app(app(ty_@3, beb), bec), bed)), bdd), bde)) -> new_lt3(vwx260, vwx270, beb, bec, bed) new_ltEs3(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), app(ty_Maybe, bdg), bdd, bde) -> new_lt1(vwx260, vwx270, bdg) new_ltEs(@2(vwx260, vwx261), @2(vwx270, vwx271), ga, app(ty_[], gd)) -> new_ltEs0(vwx261, vwx271, gd) new_ltEs1(Just(vwx260), Just(vwx270), app(app(app(ty_@3, bac), bad), bae)) -> new_ltEs3(vwx260, vwx270, bac, bad, bae) new_ltEs3(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), bee, bdd, app(ty_[], bga)) -> new_ltEs0(vwx262, vwx272, bga) new_compare20(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), False, app(app(app(ty_@3, app(ty_Maybe, bdg)), bdd), bde)) -> new_lt1(vwx260, vwx270, bdg) new_compare20(Right(vwx260), Right(vwx270), False, app(app(ty_Either, bbh), app(ty_[], bcc))) -> new_ltEs0(vwx260, vwx270, bcc) new_compare20(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), False, app(app(app(ty_@3, bee), bdd), app(ty_Maybe, bgb))) -> new_ltEs1(vwx262, vwx272, bgb) new_compare2(vwx64, vwx65, vwx66, vwx67, False, app(ty_Maybe, dh), df) -> new_compare1(vwx64, vwx66, dh) new_compare20(Right(vwx260), Right(vwx270), False, app(app(ty_Either, bbh), app(app(ty_Either, bce), bcf))) -> new_ltEs2(vwx260, vwx270, bce, bcf) new_compare23(vwx51, vwx52, vwx53, vwx54, vwx55, vwx56, False, cbd, ccg, app(app(ty_@2, cch), cda)) -> new_ltEs(vwx53, vwx56, cch, cda) new_compare20(@2(vwx260, vwx261), @2(vwx270, vwx271), False, app(app(ty_@2, ga), app(app(ty_Either, gf), gg))) -> new_ltEs2(vwx261, vwx271, gf, gg) new_compare20(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), False, app(app(app(ty_@3, bee), bdd), app(ty_[], bga))) -> new_ltEs0(vwx262, vwx272, bga) new_compare23(vwx51, vwx52, vwx53, vwx54, vwx55, vwx56, False, cbd, app(ty_[], cbh), cbg) -> new_lt0(vwx52, vwx55, cbh) new_compare21(vwx33, vwx34, False, app(ty_Maybe, bhd), bhb) -> new_ltEs1(vwx33, vwx34, bhd) new_compare22(vwx40, vwx41, False, cab, app(ty_Maybe, caf)) -> new_ltEs1(vwx40, vwx41, caf) new_compare20(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), False, app(app(app(ty_@3, app(ty_[], bdf)), bdd), bde)) -> new_lt0(vwx260, vwx270, bdf) new_compare2(vwx64, vwx65, vwx66, vwx67, False, ca, app(app(ty_Either, cf), cg)) -> new_ltEs2(vwx65, vwx67, cf, cg) new_compare23(vwx51, vwx52, vwx53, vwx54, vwx55, vwx56, False, app(app(ty_@2, cea), ceb), ccg, cbg) -> new_lt(vwx51, vwx54, cea, ceb) new_primCompAux(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), vwx5, app(app(app(ty_@3, bf), bg), bh)) -> new_compare23(vwx300, vwx301, vwx302, vwx400, vwx401, vwx402, new_asAs(new_esEs9(vwx300, vwx400, bf), new_asAs(new_esEs10(vwx301, vwx401, bg), new_esEs11(vwx302, vwx402, bh))), bf, bg, bh) new_compare23(vwx51, vwx52, vwx53, vwx54, vwx55, vwx56, False, app(app(app(ty_@3, ceg), ceh), cfa), ccg, cbg) -> new_lt3(vwx51, vwx54, ceg, ceh, cfa) new_compare23(vwx51, vwx52, vwx53, vwx54, vwx55, vwx56, False, cbd, ccg, app(ty_[], cdb)) -> new_ltEs0(vwx53, vwx56, cdb) new_compare20(Right(vwx260), Right(vwx270), False, app(app(ty_Either, bbh), app(app(app(ty_@3, bcg), bch), bda))) -> new_ltEs3(vwx260, vwx270, bcg, bch, bda) new_ltEs3(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), bee, bdd, app(app(ty_@2, bfg), bfh)) -> new_ltEs(vwx262, vwx272, bfg, bfh) new_compare2(vwx64, vwx65, vwx66, vwx67, False, ca, app(app(app(ty_@3, da), db), dc)) -> new_ltEs3(vwx65, vwx67, da, db, dc) new_ltEs3(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), bee, bdd, app(app(app(ty_@3, bge), bgf), bgg)) -> new_ltEs3(vwx262, vwx272, bge, bgf, bgg) new_ltEs2(Right(vwx260), Right(vwx270), bbh, app(app(ty_@2, bca), bcb)) -> new_ltEs(vwx260, vwx270, bca, bcb) new_compare20(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), False, app(app(app(ty_@3, bee), bdd), app(app(ty_Either, bgc), bgd))) -> new_ltEs2(vwx262, vwx272, bgc, bgd) new_compare20(Left(vwx260), Left(vwx270), False, app(app(ty_Either, app(ty_[], bba)), bah)) -> new_ltEs0(vwx260, vwx270, bba) new_compare20(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), False, app(app(app(ty_@3, bee), bdd), app(app(app(ty_@3, bge), bgf), bgg))) -> new_ltEs3(vwx262, vwx272, bge, bgf, bgg) new_compare(:(vwx30, vwx31), :(vwx40, vwx41), hc) -> new_primCompAux(vwx30, vwx40, new_compare5(vwx31, vwx41, hc), hc) new_compare20(Right(vwx260), Right(vwx270), False, app(app(ty_Either, bbh), app(app(ty_@2, bca), bcb))) -> new_ltEs(vwx260, vwx270, bca, bcb) new_compare23(vwx51, vwx52, vwx53, vwx54, vwx55, vwx56, False, app(app(ty_Either, cee), cef), ccg, cbg) -> new_lt2(vwx51, vwx54, cee, cef) new_compare20(@2(vwx260, vwx261), @2(vwx270, vwx271), False, app(app(ty_@2, app(app(ty_@2, ef), eg)), eh)) -> new_lt(vwx260, vwx270, ef, eg) new_compare20(vwx26, vwx27, False, app(ty_[], hd)) -> new_compare(vwx26, vwx27, hd) new_primCompAux(Just(vwx300), Just(vwx400), vwx5, app(ty_Maybe, bc)) -> new_compare20(vwx300, vwx400, new_esEs6(vwx300, vwx400, bc), bc) new_compare20(@2(vwx260, vwx261), @2(vwx270, vwx271), False, app(app(ty_@2, app(app(app(ty_@3, ff), fg), fh)), eh)) -> new_lt3(vwx260, vwx270, ff, fg, fh) new_ltEs2(Right(vwx260), Right(vwx270), bbh, app(app(app(ty_@3, bcg), bch), bda)) -> new_ltEs3(vwx260, vwx270, bcg, bch, bda) new_compare2(vwx64, vwx65, vwx66, vwx67, False, ca, app(ty_Maybe, ce)) -> new_ltEs1(vwx65, vwx67, ce) new_compare23(vwx51, vwx52, vwx53, vwx54, vwx55, vwx56, False, cbd, ccg, app(app(ty_Either, cdd), cde)) -> new_ltEs2(vwx53, vwx56, cdd, cde) new_compare20(Just(vwx260), Just(vwx270), False, app(ty_Maybe, app(app(ty_Either, baa), bab))) -> new_ltEs2(vwx260, vwx270, baa, bab) new_ltEs2(Right(vwx260), Right(vwx270), bbh, app(ty_Maybe, bcd)) -> new_ltEs1(vwx260, vwx270, bcd) new_compare23(vwx51, vwx52, vwx53, vwx54, vwx55, vwx56, False, cbd, app(app(ty_@2, cbe), cbf), cbg) -> new_lt(vwx52, vwx55, cbe, cbf) new_compare20(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), False, app(app(app(ty_@3, bee), app(app(app(ty_@3, bfd), bfe), bff)), bde)) -> new_lt3(vwx261, vwx271, bfd, bfe, bff) new_compare20(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), False, app(app(app(ty_@3, bee), app(ty_Maybe, bfa)), bde)) -> new_lt1(vwx261, vwx271, bfa) new_compare0(@2(vwx300, vwx301), @2(vwx400, vwx401), h, ba) -> new_compare2(vwx300, vwx301, vwx400, vwx401, new_asAs(new_esEs4(vwx300, vwx400, h), new_esEs5(vwx301, vwx401, ba)), h, ba) new_compare23(vwx51, vwx52, vwx53, vwx54, vwx55, vwx56, False, cbd, ccg, app(ty_Maybe, cdc)) -> new_ltEs1(vwx53, vwx56, cdc) new_ltEs(@2(vwx260, vwx261), @2(vwx270, vwx271), ga, app(app(ty_@2, gb), gc)) -> new_ltEs(vwx261, vwx271, gb, gc) new_ltEs0(vwx26, vwx27, hd) -> new_compare(vwx26, vwx27, hd) new_compare3(Right(vwx300), Right(vwx400), bd, be) -> new_compare22(vwx300, vwx400, new_esEs8(vwx300, vwx400, be), bd, be) new_lt0(vwx64, vwx66, dg) -> new_compare(vwx64, vwx66, dg) new_ltEs3(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), app(app(app(ty_@3, beb), bec), bed), bdd, bde) -> new_lt3(vwx260, vwx270, beb, bec, bed) new_compare23(vwx51, vwx52, vwx53, vwx54, vwx55, vwx56, False, app(ty_[], cec), ccg, cbg) -> new_lt0(vwx51, vwx54, cec) new_ltEs(@2(vwx260, vwx261), @2(vwx270, vwx271), app(ty_[], fa), eh) -> new_lt0(vwx260, vwx270, fa) new_compare2(vwx64, vwx65, vwx66, vwx67, False, app(app(ty_Either, ea), eb), df) -> new_compare3(vwx64, vwx66, ea, eb) new_compare20(@2(vwx260, vwx261), @2(vwx270, vwx271), False, app(app(ty_@2, app(ty_Maybe, fb)), eh)) -> new_lt1(vwx260, vwx270, fb) new_ltEs1(Just(vwx260), Just(vwx270), app(ty_Maybe, hh)) -> new_ltEs1(vwx260, vwx270, hh) new_compare21(vwx33, vwx34, False, app(app(app(ty_@3, bhg), bhh), caa), bhb) -> new_ltEs3(vwx33, vwx34, bhg, bhh, caa) new_ltEs2(Left(vwx260), Left(vwx270), app(ty_Maybe, bbb), bah) -> new_ltEs1(vwx260, vwx270, bbb) new_ltEs3(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), app(app(ty_Either, bdh), bea), bdd, bde) -> new_lt2(vwx260, vwx270, bdh, bea) new_compare4(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bf, bg, bh) -> new_compare23(vwx300, vwx301, vwx302, vwx400, vwx401, vwx402, new_asAs(new_esEs9(vwx300, vwx400, bf), new_asAs(new_esEs10(vwx301, vwx401, bg), new_esEs11(vwx302, vwx402, bh))), bf, bg, bh) new_compare23(vwx51, vwx52, vwx53, vwx54, vwx55, vwx56, False, cbd, app(app(ty_Either, ccb), ccc), cbg) -> new_lt2(vwx52, vwx55, ccb, ccc) new_compare20(Just(vwx260), Just(vwx270), False, app(ty_Maybe, app(ty_[], hg))) -> new_ltEs0(vwx260, vwx270, hg) new_compare20(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), False, app(app(app(ty_@3, app(app(ty_Either, bdh), bea)), bdd), bde)) -> new_lt2(vwx260, vwx270, bdh, bea) new_compare20(Left(vwx260), Left(vwx270), False, app(app(ty_Either, app(app(ty_@2, baf), bag)), bah)) -> new_ltEs(vwx260, vwx270, baf, bag) new_compare23(vwx51, vwx52, vwx53, vwx54, vwx55, vwx56, False, cbd, app(ty_Maybe, cca), cbg) -> new_lt1(vwx52, vwx55, cca) new_ltEs3(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), bee, bdd, app(ty_Maybe, bgb)) -> new_ltEs1(vwx262, vwx272, bgb) new_compare20(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), False, app(app(app(ty_@3, bee), bdd), app(app(ty_@2, bfg), bfh))) -> new_ltEs(vwx262, vwx272, bfg, bfh) new_ltEs3(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), app(ty_[], bdf), bdd, bde) -> new_lt0(vwx260, vwx270, bdf) new_compare2(vwx64, vwx65, vwx66, vwx67, False, app(app(app(ty_@3, ec), ed), ee), df) -> new_compare4(vwx64, vwx66, ec, ed, ee) new_ltEs3(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), bee, app(ty_Maybe, bfa), bde) -> new_lt1(vwx261, vwx271, bfa) new_ltEs(@2(vwx260, vwx261), @2(vwx270, vwx271), app(app(ty_@2, ef), eg), eh) -> new_lt(vwx260, vwx270, ef, eg) new_compare20(@2(vwx260, vwx261), @2(vwx270, vwx271), False, app(app(ty_@2, app(app(ty_Either, fc), fd)), eh)) -> new_lt2(vwx260, vwx270, fc, fd) new_compare21(vwx33, vwx34, False, app(ty_[], bhc), bhb) -> new_ltEs0(vwx33, vwx34, bhc) new_compare22(vwx40, vwx41, False, cab, app(ty_[], cae)) -> new_ltEs0(vwx40, vwx41, cae) new_primCompAux(Right(vwx300), Right(vwx400), vwx5, app(app(ty_Either, bd), be)) -> new_compare22(vwx300, vwx400, new_esEs8(vwx300, vwx400, be), bd, be) new_ltEs(@2(vwx260, vwx261), @2(vwx270, vwx271), ga, app(app(ty_Either, gf), gg)) -> new_ltEs2(vwx261, vwx271, gf, gg) new_compare21(vwx33, vwx34, False, app(app(ty_@2, bgh), bha), bhb) -> new_ltEs(vwx33, vwx34, bgh, bha) new_compare20(Just(vwx260), Just(vwx270), False, app(ty_Maybe, app(ty_Maybe, hh))) -> new_ltEs1(vwx260, vwx270, hh) new_compare2(vwx64, vwx65, vwx66, vwx67, False, ca, app(app(ty_@2, cb), cc)) -> new_ltEs(vwx65, vwx67, cb, cc) new_compare20(Left(vwx260), Left(vwx270), False, app(app(ty_Either, app(app(ty_Either, bbc), bbd)), bah)) -> new_ltEs2(vwx260, vwx270, bbc, bbd) new_ltEs3(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), bee, app(app(ty_Either, bfb), bfc), bde) -> new_lt2(vwx261, vwx271, bfb, bfc) new_compare2(vwx64, vwx65, vwx66, vwx67, False, ca, app(ty_[], cd)) -> new_ltEs0(vwx65, vwx67, cd) new_compare22(vwx40, vwx41, False, cab, app(app(app(ty_@3, cba), cbb), cbc)) -> new_ltEs3(vwx40, vwx41, cba, cbb, cbc) new_lt2(vwx64, vwx66, ea, eb) -> new_compare3(vwx64, vwx66, ea, eb) new_lt(vwx64, vwx66, dd, de) -> new_compare0(vwx64, vwx66, dd, de) new_ltEs2(Left(vwx260), Left(vwx270), app(app(app(ty_@3, bbe), bbf), bbg), bah) -> new_ltEs3(vwx260, vwx270, bbe, bbf, bbg) new_ltEs(@2(vwx260, vwx261), @2(vwx270, vwx271), app(app(app(ty_@3, ff), fg), fh), eh) -> new_lt3(vwx260, vwx270, ff, fg, fh) new_ltEs2(Right(vwx260), Right(vwx270), bbh, app(app(ty_Either, bce), bcf)) -> new_ltEs2(vwx260, vwx270, bce, bcf) new_ltEs3(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), bee, app(app(ty_@2, bef), beg), bde) -> new_lt(vwx261, vwx271, bef, beg) new_ltEs3(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), bee, bdd, app(app(ty_Either, bgc), bgd)) -> new_ltEs2(vwx262, vwx272, bgc, bgd) new_compare22(vwx40, vwx41, False, cab, app(app(ty_Either, cag), cah)) -> new_ltEs2(vwx40, vwx41, cag, cah) new_ltEs(@2(vwx260, vwx261), @2(vwx270, vwx271), app(app(ty_Either, fc), fd), eh) -> new_lt2(vwx260, vwx270, fc, fd) new_compare20(Just(vwx260), Just(vwx270), False, app(ty_Maybe, app(app(ty_@2, he), hf))) -> new_ltEs(vwx260, vwx270, he, hf) new_primCompAux(vwx30, vwx40, vwx5, app(ty_[], bb)) -> new_compare(vwx30, vwx40, bb) new_ltEs2(Left(vwx260), Left(vwx270), app(ty_[], bba), bah) -> new_ltEs0(vwx260, vwx270, bba) new_ltEs(@2(vwx260, vwx261), @2(vwx270, vwx271), app(ty_Maybe, fb), eh) -> new_lt1(vwx260, vwx270, fb) new_compare2(vwx64, vwx65, vwx66, vwx67, False, app(app(ty_@2, dd), de), df) -> new_compare0(vwx64, vwx66, dd, de) new_compare20(@2(vwx260, vwx261), @2(vwx270, vwx271), False, app(app(ty_@2, ga), app(app(ty_@2, gb), gc))) -> new_ltEs(vwx261, vwx271, gb, gc) new_compare2(vwx64, vwx65, vwx66, vwx67, False, app(ty_[], dg), df) -> new_compare(vwx64, vwx66, dg) new_ltEs(@2(vwx260, vwx261), @2(vwx270, vwx271), ga, app(app(app(ty_@3, gh), ha), hb)) -> new_ltEs3(vwx261, vwx271, gh, ha, hb) new_compare20(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), False, app(app(app(ty_@3, app(app(ty_@2, bdb), bdc)), bdd), bde)) -> new_lt(vwx260, vwx270, bdb, bdc) new_compare20(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), False, app(app(app(ty_@3, bee), app(ty_[], beh)), bde)) -> new_lt0(vwx261, vwx271, beh) new_compare20(@2(vwx260, vwx261), @2(vwx270, vwx271), False, app(app(ty_@2, ga), app(ty_[], gd))) -> new_ltEs0(vwx261, vwx271, gd) new_compare22(vwx40, vwx41, False, cab, app(app(ty_@2, cac), cad)) -> new_ltEs(vwx40, vwx41, cac, cad) new_compare23(vwx51, vwx52, vwx53, vwx54, vwx55, vwx56, False, cbd, app(app(app(ty_@3, ccd), cce), ccf), cbg) -> new_lt3(vwx52, vwx55, ccd, cce, ccf) new_compare1(Just(vwx300), Just(vwx400), bc) -> new_compare20(vwx300, vwx400, new_esEs6(vwx300, vwx400, bc), bc) new_lt3(vwx64, vwx66, ec, ed, ee) -> new_compare4(vwx64, vwx66, ec, ed, ee) new_primCompAux(Left(vwx300), Left(vwx400), vwx5, app(app(ty_Either, bd), be)) -> new_compare21(vwx300, vwx400, new_esEs7(vwx300, vwx400, bd), bd, be) new_compare20(Left(vwx260), Left(vwx270), False, app(app(ty_Either, app(ty_Maybe, bbb)), bah)) -> new_ltEs1(vwx260, vwx270, bbb) new_compare20(@2(vwx260, vwx261), @2(vwx270, vwx271), False, app(app(ty_@2, ga), app(app(app(ty_@3, gh), ha), hb))) -> new_ltEs3(vwx261, vwx271, gh, ha, hb) new_compare(:(vwx30, vwx31), :(vwx40, vwx41), hc) -> new_compare(vwx31, vwx41, hc) new_compare20(Just(vwx260), Just(vwx270), False, app(ty_Maybe, app(app(app(ty_@3, bac), bad), bae))) -> new_ltEs3(vwx260, vwx270, bac, bad, bae) new_ltEs1(Just(vwx260), Just(vwx270), app(ty_[], hg)) -> new_ltEs0(vwx260, vwx270, hg) new_ltEs2(Left(vwx260), Left(vwx270), app(app(ty_Either, bbc), bbd), bah) -> new_ltEs2(vwx260, vwx270, bbc, bbd) new_compare20(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), False, app(app(app(ty_@3, bee), app(app(ty_Either, bfb), bfc)), bde)) -> new_lt2(vwx261, vwx271, bfb, bfc) new_ltEs2(Left(vwx260), Left(vwx270), app(app(ty_@2, baf), bag), bah) -> new_ltEs(vwx260, vwx270, baf, bag) new_primCompAux(@2(vwx300, vwx301), @2(vwx400, vwx401), vwx5, app(app(ty_@2, h), ba)) -> new_compare2(vwx300, vwx301, vwx400, vwx401, new_asAs(new_esEs4(vwx300, vwx400, h), new_esEs5(vwx301, vwx401, ba)), h, ba) new_compare20(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), False, app(app(app(ty_@3, bee), app(app(ty_@2, bef), beg)), bde)) -> new_lt(vwx261, vwx271, bef, beg) new_ltEs1(Just(vwx260), Just(vwx270), app(app(ty_@2, he), hf)) -> new_ltEs(vwx260, vwx270, he, hf) new_ltEs(@2(vwx260, vwx261), @2(vwx270, vwx271), ga, app(ty_Maybe, ge)) -> new_ltEs1(vwx261, vwx271, ge) new_ltEs1(Just(vwx260), Just(vwx270), app(app(ty_Either, baa), bab)) -> new_ltEs2(vwx260, vwx270, baa, bab) new_ltEs3(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), bee, app(app(app(ty_@3, bfd), bfe), bff), bde) -> new_lt3(vwx261, vwx271, bfd, bfe, bff) new_ltEs2(Right(vwx260), Right(vwx270), bbh, app(ty_[], bcc)) -> new_ltEs0(vwx260, vwx270, bcc) The TRS R consists of the following rules: new_esEs28(vwx52, vwx55, app(app(ty_@2, cbe), cbf)) -> new_esEs20(vwx52, vwx55, cbe, cbf) new_ltEs13(Right(vwx260), Right(vwx270), bbh, app(ty_[], bcc)) -> new_ltEs4(vwx260, vwx270, bcc) new_compare9(Float(vwx300, Pos(vwx3010)), Float(vwx400, Pos(vwx4010))) -> new_compare30(new_sr0(vwx300, Pos(vwx4010)), new_sr0(Pos(vwx3010), vwx400)) new_primCmpInt(Neg(Succ(vwx3000)), Pos(vwx400)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_esEs26(vwx3000, vwx4000, app(ty_Ratio, chb)) -> new_esEs19(vwx3000, vwx4000, chb) new_ltEs22(vwx26, vwx27, app(app(ty_@2, ga), eh)) -> new_ltEs8(vwx26, vwx27, ga, eh) new_lt7(vwx51, vwx54, ty_Double) -> new_lt19(vwx51, vwx54) new_pePe(True, vwx143) -> True new_ltEs19(vwx40, vwx41, ty_Double) -> new_ltEs18(vwx40, vwx41) new_esEs32(vwx260, vwx270, ty_Integer) -> new_esEs14(vwx260, vwx270) new_compare12(vwx129, vwx130, vwx131, vwx132, vwx133, vwx134, True, vwx136, egh, eha, ehb) -> new_compare110(vwx129, vwx130, vwx131, vwx132, vwx133, vwx134, True, egh, eha, ehb) new_ltEs5(vwx53, vwx56, ty_Char) -> new_ltEs15(vwx53, vwx56) new_esEs5(vwx301, vwx401, app(ty_Maybe, dce)) -> new_esEs21(vwx301, vwx401, dce) new_lt20(vwx260, vwx270, ty_Ordering) -> new_lt17(vwx260, vwx270) new_esEs32(vwx260, vwx270, app(ty_Maybe, fb)) -> new_esEs21(vwx260, vwx270, fb) new_esEs7(vwx300, vwx400, ty_@0) -> new_esEs18(vwx300, vwx400) new_esEs21(Just(vwx3000), Just(vwx4000), app(app(app(ty_@3, dfb), dfc), dfd)) -> new_esEs24(vwx3000, vwx4000, dfb, dfc, dfd) new_compare27(vwx30, vwx40, ty_Float) -> new_compare9(vwx30, vwx40) new_esEs17(Left(vwx3000), Left(vwx4000), ty_Float, dae) -> new_esEs25(vwx3000, vwx4000) new_esEs17(Right(vwx3000), Right(vwx4000), dad, ty_Ordering) -> new_esEs13(vwx3000, vwx4000) new_esEs27(vwx51, vwx54, app(ty_[], cec)) -> new_esEs16(vwx51, vwx54, cec) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_lt6(vwx52, vwx55, app(ty_[], cbh)) -> new_lt11(vwx52, vwx55, cbh) new_compare14(vwx102, vwx103, True, dfe, dff) -> LT new_esEs32(vwx260, vwx270, app(ty_Ratio, ech)) -> new_esEs19(vwx260, vwx270, ech) new_primCmpInt(Pos(Zero), Neg(Succ(vwx4000))) -> GT new_ltEs4(vwx26, vwx27, hd) -> new_fsEs(new_compare5(vwx26, vwx27, hd)) new_esEs5(vwx301, vwx401, app(ty_Ratio, dcb)) -> new_esEs19(vwx301, vwx401, dcb) new_ltEs24(vwx33, vwx34, app(ty_[], bhc)) -> new_ltEs4(vwx33, vwx34, bhc) new_esEs6(vwx300, vwx400, ty_Ordering) -> new_esEs13(vwx300, vwx400) new_esEs11(vwx302, vwx402, app(ty_Ratio, eca)) -> new_esEs19(vwx302, vwx402, eca) new_ltEs10(Just(vwx260), Just(vwx270), ty_Double) -> new_ltEs18(vwx260, vwx270) new_esEs17(Left(vwx3000), Left(vwx4000), ty_Int, dae) -> new_esEs23(vwx3000, vwx4000) new_esEs24(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), dbb, dbc, dbd) -> new_asAs(new_esEs37(vwx3000, vwx4000, dbb), new_asAs(new_esEs38(vwx3001, vwx4001, dbc), new_esEs39(vwx3002, vwx4002, dbd))) new_lt6(vwx52, vwx55, app(ty_Maybe, cca)) -> new_lt4(vwx52, vwx55, cca) new_ltEs13(Left(vwx260), Left(vwx270), ty_Float, bah) -> new_ltEs9(vwx260, vwx270) new_esEs18(@0, @0) -> True new_ltEs13(Right(vwx260), Right(vwx270), bbh, ty_Int) -> new_ltEs17(vwx260, vwx270) new_esEs31(vwx64, vwx66, ty_Int) -> new_esEs23(vwx64, vwx66) new_esEs28(vwx52, vwx55, ty_Bool) -> new_esEs12(vwx52, vwx55) new_primCmpInt(Neg(Succ(vwx3000)), Neg(vwx400)) -> new_primCmpNat0(vwx400, Succ(vwx3000)) new_ltEs13(Right(vwx260), Right(vwx270), bbh, ty_Bool) -> new_ltEs11(vwx260, vwx270) new_esEs9(vwx300, vwx400, app(app(app(ty_@3, eaa), eab), eac)) -> new_esEs24(vwx300, vwx400, eaa, eab, eac) new_esEs4(vwx300, vwx400, ty_Int) -> new_esEs23(vwx300, vwx400) new_esEs7(vwx300, vwx400, ty_Bool) -> new_esEs12(vwx300, vwx400) new_lt21(vwx261, vwx271, app(app(app(ty_@3, bfd), bfe), bff)) -> new_lt16(vwx261, vwx271, bfd, bfe, bff) new_lt23(vwx260, vwx270, app(ty_[], fa)) -> new_lt11(vwx260, vwx270, fa) new_compare111(vwx94, vwx95, True, ehc, ehd) -> LT new_esEs36(vwx3001, vwx4001, ty_Double) -> new_esEs22(vwx3001, vwx4001) new_esEs36(vwx3001, vwx4001, app(app(app(ty_@3, fbf), fbg), fbh)) -> new_esEs24(vwx3001, vwx4001, fbf, fbg, fbh) new_compare18(LT, LT) -> EQ new_compare27(vwx30, vwx40, ty_Char) -> new_compare7(vwx30, vwx40) new_ltEs10(Just(vwx260), Just(vwx270), ty_Ordering) -> new_ltEs16(vwx260, vwx270) new_compare27(vwx30, vwx40, ty_@0) -> new_compare15(vwx30, vwx40) new_lt23(vwx260, vwx270, ty_Int) -> new_lt18(vwx260, vwx270) new_esEs27(vwx51, vwx54, ty_Ordering) -> new_esEs13(vwx51, vwx54) new_esEs6(vwx300, vwx400, app(ty_[], dfh)) -> new_esEs16(vwx300, vwx400, dfh) new_lt6(vwx52, vwx55, ty_Int) -> new_lt18(vwx52, vwx55) new_ltEs22(vwx26, vwx27, ty_Integer) -> new_ltEs7(vwx26, vwx27) new_primCompAux0(vwx9, GT) -> GT new_esEs5(vwx301, vwx401, ty_Char) -> new_esEs15(vwx301, vwx401) new_primEqInt(Pos(Succ(vwx30000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(vwx40000))) -> False new_ltEs21(vwx65, vwx67, ty_Ordering) -> new_ltEs16(vwx65, vwx67) new_esEs10(vwx301, vwx401, ty_Int) -> new_esEs23(vwx301, vwx401) new_esEs32(vwx260, vwx270, ty_Char) -> new_esEs15(vwx260, vwx270) new_esEs28(vwx52, vwx55, ty_@0) -> new_esEs18(vwx52, vwx55) new_esEs9(vwx300, vwx400, app(ty_Ratio, dhe)) -> new_esEs19(vwx300, vwx400, dhe) new_esEs26(vwx3000, vwx4000, ty_Char) -> new_esEs15(vwx3000, vwx4000) new_ltEs17(vwx26, vwx27) -> new_fsEs(new_compare30(vwx26, vwx27)) new_compare12(vwx129, vwx130, vwx131, vwx132, vwx133, vwx134, False, vwx136, egh, eha, ehb) -> new_compare110(vwx129, vwx130, vwx131, vwx132, vwx133, vwx134, vwx136, egh, eha, ehb) new_compare13(Integer(vwx300), Integer(vwx400)) -> new_primCmpInt(vwx300, vwx400) new_esEs36(vwx3001, vwx4001, app(ty_Ratio, fbb)) -> new_esEs19(vwx3001, vwx4001, fbb) new_lt23(vwx260, vwx270, app(ty_Maybe, fb)) -> new_lt4(vwx260, vwx270, fb) new_ltEs19(vwx40, vwx41, ty_@0) -> new_ltEs12(vwx40, vwx41) new_lt23(vwx260, vwx270, ty_Bool) -> new_lt13(vwx260, vwx270) new_lt23(vwx260, vwx270, app(app(ty_@2, ef), eg)) -> new_lt10(vwx260, vwx270, ef, eg) new_esEs36(vwx3001, vwx4001, ty_Int) -> new_esEs23(vwx3001, vwx4001) new_esEs17(Left(vwx3000), Left(vwx4000), ty_Double, dae) -> new_esEs22(vwx3000, vwx4000) new_ltEs10(Just(vwx260), Just(vwx270), ty_@0) -> new_ltEs12(vwx260, vwx270) new_lt18(vwx64, vwx66) -> new_esEs13(new_compare30(vwx64, vwx66), LT) new_esEs7(vwx300, vwx400, app(app(ty_@2, cfh), cga)) -> new_esEs20(vwx300, vwx400, cfh, cga) new_primEqNat0(Succ(vwx30000), Succ(vwx40000)) -> new_primEqNat0(vwx30000, vwx40000) new_compare110(vwx129, vwx130, vwx131, vwx132, vwx133, vwx134, True, egh, eha, ehb) -> LT new_ltEs22(vwx26, vwx27, app(ty_Maybe, dde)) -> new_ltEs10(vwx26, vwx27, dde) new_lt23(vwx260, vwx270, app(app(ty_Either, fc), fd)) -> new_lt15(vwx260, vwx270, fc, fd) new_esEs39(vwx3002, vwx4002, ty_@0) -> new_esEs18(vwx3002, vwx4002) new_esEs9(vwx300, vwx400, ty_Int) -> new_esEs23(vwx300, vwx400) new_esEs26(vwx3000, vwx4000, ty_Integer) -> new_esEs14(vwx3000, vwx4000) new_lt6(vwx52, vwx55, ty_Float) -> new_lt12(vwx52, vwx55) new_primCompAux0(vwx9, LT) -> LT new_esEs5(vwx301, vwx401, ty_Integer) -> new_esEs14(vwx301, vwx401) new_ltEs23(vwx261, vwx271, app(ty_Ratio, eda)) -> new_ltEs6(vwx261, vwx271, eda) new_lt21(vwx261, vwx271, ty_Char) -> new_lt5(vwx261, vwx271) new_lt7(vwx51, vwx54, ty_Integer) -> new_lt9(vwx51, vwx54) new_not(True) -> False new_esEs38(vwx3001, vwx4001, ty_Ordering) -> new_esEs13(vwx3001, vwx4001) new_ltEs24(vwx33, vwx34, ty_Int) -> new_ltEs17(vwx33, vwx34) new_ltEs23(vwx261, vwx271, ty_Bool) -> new_ltEs11(vwx261, vwx271) new_ltEs23(vwx261, vwx271, ty_Char) -> new_ltEs15(vwx261, vwx271) new_esEs35(vwx3000, vwx4000, ty_Int) -> new_esEs23(vwx3000, vwx4000) new_esEs39(vwx3002, vwx4002, ty_Bool) -> new_esEs12(vwx3002, vwx4002) new_esEs10(vwx301, vwx401, ty_Double) -> new_esEs22(vwx301, vwx401) new_primCmpNat0(Zero, Zero) -> EQ new_esEs10(vwx301, vwx401, app(app(ty_Either, eae), eaf)) -> new_esEs17(vwx301, vwx401, eae, eaf) new_esEs37(vwx3000, vwx4000, ty_Integer) -> new_esEs14(vwx3000, vwx4000) new_lt7(vwx51, vwx54, app(app(ty_Either, cee), cef)) -> new_lt15(vwx51, vwx54, cee, cef) new_esEs21(Just(vwx3000), Just(vwx4000), ty_Integer) -> new_esEs14(vwx3000, vwx4000) new_ltEs21(vwx65, vwx67, ty_Float) -> new_ltEs9(vwx65, vwx67) new_esEs10(vwx301, vwx401, ty_Float) -> new_esEs25(vwx301, vwx401) new_lt20(vwx260, vwx270, ty_Integer) -> new_lt9(vwx260, vwx270) new_lt22(vwx64, vwx66, ty_Char) -> new_lt5(vwx64, vwx66) new_esEs10(vwx301, vwx401, app(app(app(ty_@3, ebc), ebd), ebe)) -> new_esEs24(vwx301, vwx401, ebc, ebd, ebe) new_ltEs16(GT, EQ) -> False new_esEs36(vwx3001, vwx4001, app(ty_Maybe, fbe)) -> new_esEs21(vwx3001, vwx4001, fbe) new_ltEs24(vwx33, vwx34, ty_Bool) -> new_ltEs11(vwx33, vwx34) new_esEs17(Left(vwx3000), Left(vwx4000), app(app(app(ty_@3, eea), eeb), eec), dae) -> new_esEs24(vwx3000, vwx4000, eea, eeb, eec) new_compare16(@2(vwx300, vwx301), @2(vwx400, vwx401), h, ba) -> new_compare26(vwx300, vwx301, vwx400, vwx401, new_asAs(new_esEs4(vwx300, vwx400, h), new_esEs5(vwx301, vwx401, ba)), h, ba) new_esEs8(vwx300, vwx400, app(app(ty_Either, efg), efh)) -> new_esEs17(vwx300, vwx400, efg, efh) new_esEs38(vwx3001, vwx4001, ty_Bool) -> new_esEs12(vwx3001, vwx4001) new_esEs36(vwx3001, vwx4001, ty_Char) -> new_esEs15(vwx3001, vwx4001) new_compare8(Right(vwx300), Left(vwx400), bd, be) -> GT new_esEs5(vwx301, vwx401, app(app(app(ty_@3, dcf), dcg), dch)) -> new_esEs24(vwx301, vwx401, dcf, dcg, dch) new_ltEs13(Left(vwx260), Left(vwx270), ty_Integer, bah) -> new_ltEs7(vwx260, vwx270) new_lt20(vwx260, vwx270, ty_Double) -> new_lt19(vwx260, vwx270) new_primEqNat0(Succ(vwx30000), Zero) -> False new_primEqNat0(Zero, Succ(vwx40000)) -> False new_esEs11(vwx302, vwx402, app(app(ty_Either, ebg), ebh)) -> new_esEs17(vwx302, vwx402, ebg, ebh) new_esEs11(vwx302, vwx402, ty_Float) -> new_esEs25(vwx302, vwx402) new_esEs32(vwx260, vwx270, app(ty_[], fa)) -> new_esEs16(vwx260, vwx270, fa) new_lt20(vwx260, vwx270, app(ty_Ratio, dda)) -> new_lt8(vwx260, vwx270, dda) new_esEs29(vwx260, vwx270, ty_Int) -> new_esEs23(vwx260, vwx270) new_lt22(vwx64, vwx66, ty_Float) -> new_lt12(vwx64, vwx66) new_lt21(vwx261, vwx271, ty_@0) -> new_lt14(vwx261, vwx271) new_esEs11(vwx302, vwx402, ty_Int) -> new_esEs23(vwx302, vwx402) new_ltEs20(vwx262, vwx272, ty_Double) -> new_ltEs18(vwx262, vwx272) new_esEs5(vwx301, vwx401, ty_Double) -> new_esEs22(vwx301, vwx401) new_ltEs21(vwx65, vwx67, ty_Integer) -> new_ltEs7(vwx65, vwx67) new_compare6(Just(vwx300), Nothing, bc) -> GT new_esEs39(vwx3002, vwx4002, app(app(ty_@2, ffe), fff)) -> new_esEs20(vwx3002, vwx4002, ffe, fff) new_lt7(vwx51, vwx54, ty_Ordering) -> new_lt17(vwx51, vwx54) new_ltEs15(vwx26, vwx27) -> new_fsEs(new_compare7(vwx26, vwx27)) new_esEs21(Just(vwx3000), Just(vwx4000), app(ty_Maybe, dfa)) -> new_esEs21(vwx3000, vwx4000, dfa) new_esEs6(vwx300, vwx400, ty_Char) -> new_esEs15(vwx300, vwx400) new_ltEs22(vwx26, vwx27, app(app(app(ty_@3, bee), bdd), bde)) -> new_ltEs14(vwx26, vwx27, bee, bdd, bde) new_esEs4(vwx300, vwx400, app(ty_Ratio, daf)) -> new_esEs19(vwx300, vwx400, daf) new_esEs9(vwx300, vwx400, ty_Double) -> new_esEs22(vwx300, vwx400) new_esEs37(vwx3000, vwx4000, ty_Char) -> new_esEs15(vwx3000, vwx4000) new_esEs13(LT, LT) -> True new_ltEs10(Nothing, Just(vwx270), dde) -> True new_esEs26(vwx3000, vwx4000, app(ty_Maybe, che)) -> new_esEs21(vwx3000, vwx4000, che) new_esEs20(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), dag, dah) -> new_asAs(new_esEs35(vwx3000, vwx4000, dag), new_esEs36(vwx3001, vwx4001, dah)) new_lt22(vwx64, vwx66, app(ty_Maybe, dh)) -> new_lt4(vwx64, vwx66, dh) new_esEs4(vwx300, vwx400, ty_Double) -> new_esEs22(vwx300, vwx400) new_lt23(vwx260, vwx270, ty_Float) -> new_lt12(vwx260, vwx270) new_esEs4(vwx300, vwx400, app(app(ty_Either, dad), dae)) -> new_esEs17(vwx300, vwx400, dad, dae) new_compare9(Float(vwx300, Neg(vwx3010)), Float(vwx400, Neg(vwx4010))) -> new_compare30(new_sr0(vwx300, Neg(vwx4010)), new_sr0(Neg(vwx3010), vwx400)) new_primCmpInt(Pos(Succ(vwx3000)), Neg(vwx400)) -> GT new_esEs37(vwx3000, vwx4000, app(ty_[], fce)) -> new_esEs16(vwx3000, vwx4000, fce) new_esEs38(vwx3001, vwx4001, app(app(ty_@2, fec), fed)) -> new_esEs20(vwx3001, vwx4001, fec, fed) new_esEs4(vwx300, vwx400, app(app(app(ty_@3, dbb), dbc), dbd)) -> new_esEs24(vwx300, vwx400, dbb, dbc, dbd) new_lt22(vwx64, vwx66, app(app(app(ty_@3, ec), ed), ee)) -> new_lt16(vwx64, vwx66, ec, ed, ee) new_ltEs21(vwx65, vwx67, app(app(app(ty_@3, da), db), dc)) -> new_ltEs14(vwx65, vwx67, da, db, dc) new_ltEs16(LT, LT) -> True new_ltEs7(vwx26, vwx27) -> new_fsEs(new_compare13(vwx26, vwx27)) new_compare211(vwx33, vwx34, False, fca, bhb) -> new_compare111(vwx33, vwx34, new_ltEs24(vwx33, vwx34, fca), fca, bhb) new_esEs30(vwx261, vwx271, ty_@0) -> new_esEs18(vwx261, vwx271) new_esEs4(vwx300, vwx400, ty_Float) -> new_esEs25(vwx300, vwx400) new_compare11(vwx114, vwx115, vwx116, vwx117, True, cfb, cfc) -> LT new_esEs11(vwx302, vwx402, ty_Double) -> new_esEs22(vwx302, vwx402) new_ltEs22(vwx26, vwx27, ty_Char) -> new_ltEs15(vwx26, vwx27) new_esEs36(vwx3001, vwx4001, ty_Integer) -> new_esEs14(vwx3001, vwx4001) new_esEs28(vwx52, vwx55, ty_Ordering) -> new_esEs13(vwx52, vwx55) new_ltEs5(vwx53, vwx56, app(ty_Ratio, dac)) -> new_ltEs6(vwx53, vwx56, dac) new_esEs5(vwx301, vwx401, ty_Int) -> new_esEs23(vwx301, vwx401) new_primPlusNat1(Succ(vwx14400), Succ(vwx301000)) -> Succ(Succ(new_primPlusNat1(vwx14400, vwx301000))) new_compare15(@0, @0) -> EQ new_lt6(vwx52, vwx55, app(app(ty_Either, ccb), ccc)) -> new_lt15(vwx52, vwx55, ccb, ccc) new_ltEs21(vwx65, vwx67, ty_Double) -> new_ltEs18(vwx65, vwx67) new_esEs27(vwx51, vwx54, app(app(ty_@2, cea), ceb)) -> new_esEs20(vwx51, vwx54, cea, ceb) new_ltEs21(vwx65, vwx67, ty_@0) -> new_ltEs12(vwx65, vwx67) new_lt13(vwx64, vwx66) -> new_esEs13(new_compare28(vwx64, vwx66), LT) new_compare27(vwx30, vwx40, app(app(ty_@2, h), ba)) -> new_compare16(vwx30, vwx40, h, ba) new_compare5(:(vwx30, vwx31), [], hc) -> GT new_esEs31(vwx64, vwx66, ty_Integer) -> new_esEs14(vwx64, vwx66) new_primCmpNat0(Zero, Succ(vwx4000)) -> LT new_esEs29(vwx260, vwx270, ty_@0) -> new_esEs18(vwx260, vwx270) new_ltEs23(vwx261, vwx271, app(app(ty_@2, gb), gc)) -> new_ltEs8(vwx261, vwx271, gb, gc) new_esEs35(vwx3000, vwx4000, ty_@0) -> new_esEs18(vwx3000, vwx4000) new_esEs11(vwx302, vwx402, app(app(app(ty_@3, ece), ecf), ecg)) -> new_esEs24(vwx302, vwx402, ece, ecf, ecg) new_esEs21(Just(vwx3000), Just(vwx4000), ty_Char) -> new_esEs15(vwx3000, vwx4000) new_esEs9(vwx300, vwx400, app(app(ty_Either, dhc), dhd)) -> new_esEs17(vwx300, vwx400, dhc, dhd) new_esEs9(vwx300, vwx400, ty_Float) -> new_esEs25(vwx300, vwx400) new_compare6(Nothing, Nothing, bc) -> EQ new_esEs37(vwx3000, vwx4000, app(ty_Maybe, fdc)) -> new_esEs21(vwx3000, vwx4000, fdc) new_lt7(vwx51, vwx54, app(ty_[], cec)) -> new_lt11(vwx51, vwx54, cec) new_ltEs23(vwx261, vwx271, app(ty_[], gd)) -> new_ltEs4(vwx261, vwx271, gd) new_esEs22(Double(vwx3000, vwx3001), Double(vwx4000, vwx4001)) -> new_esEs23(new_sr0(vwx3000, vwx4001), new_sr0(vwx3001, vwx4000)) new_esEs31(vwx64, vwx66, app(ty_Maybe, dh)) -> new_esEs21(vwx64, vwx66, dh) new_compare18(GT, GT) -> EQ new_esEs28(vwx52, vwx55, app(ty_[], cbh)) -> new_esEs16(vwx52, vwx55, cbh) new_lt7(vwx51, vwx54, ty_@0) -> new_lt14(vwx51, vwx54) new_sr(Integer(vwx4000), Integer(vwx3010)) -> Integer(new_primMulInt(vwx4000, vwx3010)) new_primCmpNat0(Succ(vwx3000), Zero) -> GT new_ltEs6(vwx26, vwx27, deb) -> new_fsEs(new_compare17(vwx26, vwx27, deb)) new_ltEs5(vwx53, vwx56, app(app(ty_Either, cdd), cde)) -> new_ltEs13(vwx53, vwx56, cdd, cde) new_compare6(Just(vwx300), Just(vwx400), bc) -> new_compare210(vwx300, vwx400, new_esEs6(vwx300, vwx400, bc), bc) new_esEs8(vwx300, vwx400, app(app(ty_@2, egb), egc)) -> new_esEs20(vwx300, vwx400, egb, egc) new_pePe(False, vwx143) -> vwx143 new_lt7(vwx51, vwx54, app(ty_Maybe, ced)) -> new_lt4(vwx51, vwx54, ced) new_esEs4(vwx300, vwx400, app(ty_Maybe, dba)) -> new_esEs21(vwx300, vwx400, dba) new_esEs6(vwx300, vwx400, ty_Integer) -> new_esEs14(vwx300, vwx400) new_ltEs10(Just(vwx260), Just(vwx270), app(ty_Maybe, hh)) -> new_ltEs10(vwx260, vwx270, hh) new_ltEs10(Just(vwx260), Just(vwx270), ty_Float) -> new_ltEs9(vwx260, vwx270) new_ltEs5(vwx53, vwx56, app(app(app(ty_@3, cdf), cdg), cdh)) -> new_ltEs14(vwx53, vwx56, cdf, cdg, cdh) new_esEs10(vwx301, vwx401, ty_@0) -> new_esEs18(vwx301, vwx401) new_esEs35(vwx3000, vwx4000, ty_Bool) -> new_esEs12(vwx3000, vwx4000) new_ltEs13(Left(vwx260), Right(vwx270), bbh, bah) -> True new_esEs12(False, False) -> True new_compare25(vwx40, vwx41, True, cab, dbe) -> EQ new_esEs39(vwx3002, vwx4002, ty_Int) -> new_esEs23(vwx3002, vwx4002) new_esEs27(vwx51, vwx54, ty_Bool) -> new_esEs12(vwx51, vwx54) new_compare210(vwx26, vwx27, True, dfg) -> EQ new_compare18(LT, GT) -> LT new_esEs39(vwx3002, vwx4002, app(app(ty_Either, ffb), ffc)) -> new_esEs17(vwx3002, vwx4002, ffb, ffc) new_lt22(vwx64, vwx66, app(ty_[], dg)) -> new_lt11(vwx64, vwx66, dg) new_compare27(vwx30, vwx40, ty_Bool) -> new_compare28(vwx30, vwx40) new_compare17(:%(vwx300, vwx301), :%(vwx400, vwx401), ty_Int) -> new_compare30(new_sr0(vwx300, vwx401), new_sr0(vwx400, vwx301)) new_ltEs19(vwx40, vwx41, app(app(app(ty_@3, cba), cbb), cbc)) -> new_ltEs14(vwx40, vwx41, cba, cbb, cbc) new_ltEs16(LT, GT) -> True new_ltEs13(Left(vwx260), Left(vwx270), ty_Char, bah) -> new_ltEs15(vwx260, vwx270) new_esEs17(Right(vwx3000), Right(vwx4000), dad, ty_Char) -> new_esEs15(vwx3000, vwx4000) new_ltEs21(vwx65, vwx67, app(app(ty_@2, cb), cc)) -> new_ltEs8(vwx65, vwx67, cb, cc) new_esEs30(vwx261, vwx271, app(app(ty_Either, bfb), bfc)) -> new_esEs17(vwx261, vwx271, bfb, bfc) new_esEs26(vwx3000, vwx4000, ty_Ordering) -> new_esEs13(vwx3000, vwx4000) new_esEs13(GT, GT) -> True new_ltEs16(LT, EQ) -> True new_ltEs16(EQ, LT) -> False new_lt20(vwx260, vwx270, app(ty_[], bdf)) -> new_lt11(vwx260, vwx270, bdf) new_esEs29(vwx260, vwx270, app(app(ty_@2, bdb), bdc)) -> new_esEs20(vwx260, vwx270, bdb, bdc) new_esEs17(Right(vwx3000), Right(vwx4000), dad, ty_Integer) -> new_esEs14(vwx3000, vwx4000) new_esEs37(vwx3000, vwx4000, ty_Float) -> new_esEs25(vwx3000, vwx4000) new_esEs27(vwx51, vwx54, ty_Integer) -> new_esEs14(vwx51, vwx54) new_ltEs13(Left(vwx260), Left(vwx270), app(app(ty_Either, bbc), bbd), bah) -> new_ltEs13(vwx260, vwx270, bbc, bbd) new_lt8(vwx64, vwx66, ddd) -> new_esEs13(new_compare17(vwx64, vwx66, ddd), LT) new_primEqInt(Pos(Zero), Neg(Succ(vwx40000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(vwx40000))) -> False new_esEs17(Right(vwx3000), Right(vwx4000), dad, ty_@0) -> new_esEs18(vwx3000, vwx4000) new_compare19(vwx87, vwx88, True, ddh) -> LT new_ltEs5(vwx53, vwx56, ty_Int) -> new_ltEs17(vwx53, vwx56) new_esEs6(vwx300, vwx400, ty_@0) -> new_esEs18(vwx300, vwx400) new_ltEs13(Right(vwx260), Left(vwx270), bbh, bah) -> False new_ltEs16(GT, LT) -> False new_esEs35(vwx3000, vwx4000, app(ty_Ratio, ehh)) -> new_esEs19(vwx3000, vwx4000, ehh) new_compare27(vwx30, vwx40, app(ty_Ratio, dea)) -> new_compare17(vwx30, vwx40, dea) new_esEs29(vwx260, vwx270, app(app(ty_Either, bdh), bea)) -> new_esEs17(vwx260, vwx270, bdh, bea) new_ltEs20(vwx262, vwx272, app(app(app(ty_@3, bge), bgf), bgg)) -> new_ltEs14(vwx262, vwx272, bge, bgf, bgg) new_compare5([], :(vwx40, vwx41), hc) -> LT new_esEs38(vwx3001, vwx4001, app(ty_Maybe, fee)) -> new_esEs21(vwx3001, vwx4001, fee) new_esEs26(vwx3000, vwx4000, app(ty_[], cgg)) -> new_esEs16(vwx3000, vwx4000, cgg) new_ltEs20(vwx262, vwx272, ty_@0) -> new_ltEs12(vwx262, vwx272) new_ltEs19(vwx40, vwx41, ty_Integer) -> new_ltEs7(vwx40, vwx41) new_primEqInt(Neg(Succ(vwx30000)), Neg(Succ(vwx40000))) -> new_primEqNat0(vwx30000, vwx40000) new_esEs37(vwx3000, vwx4000, ty_Bool) -> new_esEs12(vwx3000, vwx4000) new_ltEs13(Right(vwx260), Right(vwx270), bbh, app(app(app(ty_@3, bcg), bch), bda)) -> new_ltEs14(vwx260, vwx270, bcg, bch, bda) new_primCmpInt(Neg(Zero), Pos(Succ(vwx4000))) -> LT new_ltEs20(vwx262, vwx272, app(app(ty_Either, bgc), bgd)) -> new_ltEs13(vwx262, vwx272, bgc, bgd) new_primMulInt(Pos(vwx4000), Pos(vwx3010)) -> Pos(new_primMulNat0(vwx4000, vwx3010)) new_esEs8(vwx300, vwx400, app(app(app(ty_@3, ege), egf), egg)) -> new_esEs24(vwx300, vwx400, ege, egf, egg) new_esEs8(vwx300, vwx400, ty_Double) -> new_esEs22(vwx300, vwx400) new_esEs29(vwx260, vwx270, ty_Double) -> new_esEs22(vwx260, vwx270) new_ltEs10(Just(vwx260), Just(vwx270), ty_Bool) -> new_ltEs11(vwx260, vwx270) new_esEs29(vwx260, vwx270, app(app(app(ty_@3, beb), bec), bed)) -> new_esEs24(vwx260, vwx270, beb, bec, bed) new_esEs17(Left(vwx3000), Left(vwx4000), app(ty_[], edb), dae) -> new_esEs16(vwx3000, vwx4000, edb) new_esEs13(EQ, GT) -> False new_esEs13(GT, EQ) -> False new_ltEs21(vwx65, vwx67, ty_Char) -> new_ltEs15(vwx65, vwx67) new_esEs30(vwx261, vwx271, ty_Double) -> new_esEs22(vwx261, vwx271) new_compare31(Double(vwx300, Pos(vwx3010)), Double(vwx400, Neg(vwx4010))) -> new_compare30(new_sr0(vwx300, Pos(vwx4010)), new_sr0(Neg(vwx3010), vwx400)) new_compare31(Double(vwx300, Neg(vwx3010)), Double(vwx400, Pos(vwx4010))) -> new_compare30(new_sr0(vwx300, Neg(vwx4010)), new_sr0(Pos(vwx3010), vwx400)) new_esEs35(vwx3000, vwx4000, ty_Float) -> new_esEs25(vwx3000, vwx4000) new_esEs27(vwx51, vwx54, app(ty_Ratio, daa)) -> new_esEs19(vwx51, vwx54, daa) new_esEs38(vwx3001, vwx4001, ty_Char) -> new_esEs15(vwx3001, vwx4001) new_primMulNat0(Succ(vwx40000), Zero) -> Zero new_primMulNat0(Zero, Succ(vwx30100)) -> Zero new_esEs29(vwx260, vwx270, ty_Integer) -> new_esEs14(vwx260, vwx270) new_ltEs11(False, False) -> True new_primPlusNat0(Zero, vwx30100) -> Succ(vwx30100) new_esEs6(vwx300, vwx400, app(ty_Maybe, dgf)) -> new_esEs21(vwx300, vwx400, dgf) new_compare8(Left(vwx300), Right(vwx400), bd, be) -> LT new_esEs26(vwx3000, vwx4000, ty_Float) -> new_esEs25(vwx3000, vwx4000) new_esEs32(vwx260, vwx270, app(app(ty_Either, fc), fd)) -> new_esEs17(vwx260, vwx270, fc, fd) new_esEs27(vwx51, vwx54, app(ty_Maybe, ced)) -> new_esEs21(vwx51, vwx54, ced) new_esEs5(vwx301, vwx401, app(app(ty_Either, dbh), dca)) -> new_esEs17(vwx301, vwx401, dbh, dca) new_esEs38(vwx3001, vwx4001, app(ty_[], fdg)) -> new_esEs16(vwx3001, vwx4001, fdg) new_esEs30(vwx261, vwx271, app(app(app(ty_@3, bfd), bfe), bff)) -> new_esEs24(vwx261, vwx271, bfd, bfe, bff) new_ltEs19(vwx40, vwx41, app(app(ty_Either, cag), cah)) -> new_ltEs13(vwx40, vwx41, cag, cah) new_lt23(vwx260, vwx270, ty_Ordering) -> new_lt17(vwx260, vwx270) new_ltEs5(vwx53, vwx56, ty_Integer) -> new_ltEs7(vwx53, vwx56) new_lt20(vwx260, vwx270, ty_Bool) -> new_lt13(vwx260, vwx270) new_esEs31(vwx64, vwx66, ty_@0) -> new_esEs18(vwx64, vwx66) new_esEs25(Float(vwx3000, vwx3001), Float(vwx4000, vwx4001)) -> new_esEs23(new_sr0(vwx3000, vwx4001), new_sr0(vwx3001, vwx4000)) new_fsEs(vwx138) -> new_not(new_esEs13(vwx138, GT)) new_ltEs5(vwx53, vwx56, ty_@0) -> new_ltEs12(vwx53, vwx56) new_ltEs21(vwx65, vwx67, app(ty_Ratio, ddg)) -> new_ltEs6(vwx65, vwx67, ddg) new_esEs7(vwx300, vwx400, app(app(ty_Either, cfe), cff)) -> new_esEs17(vwx300, vwx400, cfe, cff) new_esEs6(vwx300, vwx400, app(app(app(ty_@3, dgg), dgh), dha)) -> new_esEs24(vwx300, vwx400, dgg, dgh, dha) new_ltEs16(EQ, GT) -> True new_lt5(vwx64, vwx66) -> new_esEs13(new_compare7(vwx64, vwx66), LT) new_compare18(EQ, GT) -> LT new_esEs30(vwx261, vwx271, app(app(ty_@2, bef), beg)) -> new_esEs20(vwx261, vwx271, bef, beg) new_ltEs22(vwx26, vwx27, ty_Float) -> new_ltEs9(vwx26, vwx27) new_ltEs16(EQ, EQ) -> True new_ltEs13(Left(vwx260), Left(vwx270), ty_@0, bah) -> new_ltEs12(vwx260, vwx270) new_lt21(vwx261, vwx271, app(ty_Ratio, ddb)) -> new_lt8(vwx261, vwx271, ddb) new_esEs6(vwx300, vwx400, ty_Double) -> new_esEs22(vwx300, vwx400) new_esEs28(vwx52, vwx55, app(ty_Maybe, cca)) -> new_esEs21(vwx52, vwx55, cca) new_esEs37(vwx3000, vwx4000, ty_Ordering) -> new_esEs13(vwx3000, vwx4000) new_lt7(vwx51, vwx54, ty_Bool) -> new_lt13(vwx51, vwx54) new_compare28(True, False) -> GT new_esEs38(vwx3001, vwx4001, ty_Integer) -> new_esEs14(vwx3001, vwx4001) new_ltEs5(vwx53, vwx56, app(app(ty_@2, cch), cda)) -> new_ltEs8(vwx53, vwx56, cch, cda) new_esEs6(vwx300, vwx400, app(app(ty_Either, dga), dgb)) -> new_esEs17(vwx300, vwx400, dga, dgb) new_esEs17(Left(vwx3000), Left(vwx4000), ty_Bool, dae) -> new_esEs12(vwx3000, vwx4000) new_ltEs13(Left(vwx260), Left(vwx270), app(app(ty_@2, baf), bag), bah) -> new_ltEs8(vwx260, vwx270, baf, bag) new_lt22(vwx64, vwx66, app(app(ty_@2, dd), de)) -> new_lt10(vwx64, vwx66, dd, de) new_ltEs22(vwx26, vwx27, app(ty_Ratio, deb)) -> new_ltEs6(vwx26, vwx27, deb) new_esEs21(Just(vwx3000), Just(vwx4000), ty_Ordering) -> new_esEs13(vwx3000, vwx4000) new_esEs28(vwx52, vwx55, ty_Char) -> new_esEs15(vwx52, vwx55) new_lt21(vwx261, vwx271, ty_Int) -> new_lt18(vwx261, vwx271) new_esEs38(vwx3001, vwx4001, app(ty_Ratio, feb)) -> new_esEs19(vwx3001, vwx4001, feb) new_ltEs9(vwx26, vwx27) -> new_fsEs(new_compare9(vwx26, vwx27)) new_lt17(vwx64, vwx66) -> new_esEs13(new_compare18(vwx64, vwx66), LT) new_ltEs13(Left(vwx260), Left(vwx270), ty_Ordering, bah) -> new_ltEs16(vwx260, vwx270) new_esEs21(Just(vwx3000), Just(vwx4000), app(ty_Ratio, def)) -> new_esEs19(vwx3000, vwx4000, def) new_lt6(vwx52, vwx55, app(app(ty_@2, cbe), cbf)) -> new_lt10(vwx52, vwx55, cbe, cbf) new_ltEs11(True, True) -> True new_esEs5(vwx301, vwx401, app(ty_[], dbg)) -> new_esEs16(vwx301, vwx401, dbg) new_primPlusNat1(Succ(vwx14400), Zero) -> Succ(vwx14400) new_primPlusNat1(Zero, Succ(vwx301000)) -> Succ(vwx301000) new_ltEs19(vwx40, vwx41, app(app(ty_@2, cac), cad)) -> new_ltEs8(vwx40, vwx41, cac, cad) new_esEs5(vwx301, vwx401, app(app(ty_@2, dcc), dcd)) -> new_esEs20(vwx301, vwx401, dcc, dcd) new_esEs21(Just(vwx3000), Just(vwx4000), ty_Int) -> new_esEs23(vwx3000, vwx4000) new_ltEs23(vwx261, vwx271, ty_Double) -> new_ltEs18(vwx261, vwx271) new_esEs27(vwx51, vwx54, ty_Char) -> new_esEs15(vwx51, vwx54) new_esEs31(vwx64, vwx66, app(app(ty_@2, dd), de)) -> new_esEs20(vwx64, vwx66, dd, de) new_lt21(vwx261, vwx271, app(app(ty_@2, bef), beg)) -> new_lt10(vwx261, vwx271, bef, beg) new_esEs29(vwx260, vwx270, app(ty_Maybe, bdg)) -> new_esEs21(vwx260, vwx270, bdg) new_ltEs10(Just(vwx260), Just(vwx270), app(ty_[], hg)) -> new_ltEs4(vwx260, vwx270, hg) new_esEs32(vwx260, vwx270, ty_Double) -> new_esEs22(vwx260, vwx270) new_compare28(False, False) -> EQ new_esEs32(vwx260, vwx270, app(app(app(ty_@3, ff), fg), fh)) -> new_esEs24(vwx260, vwx270, ff, fg, fh) new_ltEs20(vwx262, vwx272, ty_Ordering) -> new_ltEs16(vwx262, vwx272) new_compare5(:(vwx30, vwx31), :(vwx40, vwx41), hc) -> new_primCompAux1(vwx30, vwx40, new_compare5(vwx31, vwx41, hc), hc) new_esEs36(vwx3001, vwx4001, ty_Ordering) -> new_esEs13(vwx3001, vwx4001) new_esEs6(vwx300, vwx400, app(app(ty_@2, dgd), dge)) -> new_esEs20(vwx300, vwx400, dgd, dge) new_esEs36(vwx3001, vwx4001, ty_Float) -> new_esEs25(vwx3001, vwx4001) new_esEs31(vwx64, vwx66, ty_Double) -> new_esEs22(vwx64, vwx66) new_lt22(vwx64, vwx66, ty_Bool) -> new_lt13(vwx64, vwx66) new_esEs21(Just(vwx3000), Just(vwx4000), ty_Bool) -> new_esEs12(vwx3000, vwx4000) new_esEs17(Left(vwx3000), Left(vwx4000), app(ty_Maybe, edh), dae) -> new_esEs21(vwx3000, vwx4000, edh) new_esEs16([], [], cgf) -> True new_lt7(vwx51, vwx54, app(app(ty_@2, cea), ceb)) -> new_lt10(vwx51, vwx54, cea, ceb) new_esEs26(vwx3000, vwx4000, ty_Int) -> new_esEs23(vwx3000, vwx4000) new_ltEs20(vwx262, vwx272, app(app(ty_@2, bfg), bfh)) -> new_ltEs8(vwx262, vwx272, bfg, bfh) new_esEs28(vwx52, vwx55, ty_Integer) -> new_esEs14(vwx52, vwx55) new_ltEs13(Right(vwx260), Right(vwx270), bbh, app(app(ty_@2, bca), bcb)) -> new_ltEs8(vwx260, vwx270, bca, bcb) new_lt12(vwx64, vwx66) -> new_esEs13(new_compare9(vwx64, vwx66), LT) new_ltEs24(vwx33, vwx34, ty_Double) -> new_ltEs18(vwx33, vwx34) new_primMulInt(Neg(vwx4000), Neg(vwx3010)) -> Pos(new_primMulNat0(vwx4000, vwx3010)) new_esEs4(vwx300, vwx400, ty_Integer) -> new_esEs14(vwx300, vwx400) new_ltEs19(vwx40, vwx41, ty_Char) -> new_ltEs15(vwx40, vwx41) new_primCmpInt(Pos(Zero), Pos(Succ(vwx4000))) -> new_primCmpNat0(Zero, Succ(vwx4000)) new_lt7(vwx51, vwx54, ty_Int) -> new_lt18(vwx51, vwx54) new_esEs31(vwx64, vwx66, app(app(app(ty_@3, ec), ed), ee)) -> new_esEs24(vwx64, vwx66, ec, ed, ee) new_esEs21(Just(vwx3000), Just(vwx4000), ty_Float) -> new_esEs25(vwx3000, vwx4000) new_esEs37(vwx3000, vwx4000, ty_Int) -> new_esEs23(vwx3000, vwx4000) new_compare11(vwx114, vwx115, vwx116, vwx117, False, cfb, cfc) -> GT new_lt21(vwx261, vwx271, ty_Bool) -> new_lt13(vwx261, vwx271) new_esEs31(vwx64, vwx66, app(app(ty_Either, ea), eb)) -> new_esEs17(vwx64, vwx66, ea, eb) new_ltEs19(vwx40, vwx41, ty_Ordering) -> new_ltEs16(vwx40, vwx41) new_lt11(vwx64, vwx66, dg) -> new_esEs13(new_compare5(vwx64, vwx66, dg), LT) new_lt22(vwx64, vwx66, ty_Int) -> new_lt18(vwx64, vwx66) new_ltEs11(False, True) -> True new_esEs7(vwx300, vwx400, app(app(app(ty_@3, cgc), cgd), cge)) -> new_esEs24(vwx300, vwx400, cgc, cgd, cge) new_ltEs23(vwx261, vwx271, ty_Float) -> new_ltEs9(vwx261, vwx271) new_lt22(vwx64, vwx66, app(ty_Ratio, ddd)) -> new_lt8(vwx64, vwx66, ddd) new_esEs39(vwx3002, vwx4002, app(ty_[], ffa)) -> new_esEs16(vwx3002, vwx4002, ffa) new_lt6(vwx52, vwx55, ty_Bool) -> new_lt13(vwx52, vwx55) new_compare27(vwx30, vwx40, ty_Double) -> new_compare31(vwx30, vwx40) new_esEs36(vwx3001, vwx4001, ty_Bool) -> new_esEs12(vwx3001, vwx4001) new_ltEs5(vwx53, vwx56, ty_Ordering) -> new_ltEs16(vwx53, vwx56) new_esEs39(vwx3002, vwx4002, ty_Integer) -> new_esEs14(vwx3002, vwx4002) new_esEs8(vwx300, vwx400, ty_@0) -> new_esEs18(vwx300, vwx400) new_lt7(vwx51, vwx54, app(ty_Ratio, daa)) -> new_lt8(vwx51, vwx54, daa) new_ltEs13(Left(vwx260), Left(vwx270), app(ty_[], bba), bah) -> new_ltEs4(vwx260, vwx270, bba) new_esEs7(vwx300, vwx400, ty_Double) -> new_esEs22(vwx300, vwx400) new_esEs4(vwx300, vwx400, app(ty_[], cgf)) -> new_esEs16(vwx300, vwx400, cgf) new_esEs37(vwx3000, vwx4000, app(ty_Ratio, fch)) -> new_esEs19(vwx3000, vwx4000, fch) new_esEs4(vwx300, vwx400, ty_Char) -> new_esEs15(vwx300, vwx400) new_esEs30(vwx261, vwx271, ty_Char) -> new_esEs15(vwx261, vwx271) new_ltEs24(vwx33, vwx34, ty_Integer) -> new_ltEs7(vwx33, vwx34) new_ltEs13(Left(vwx260), Left(vwx270), ty_Bool, bah) -> new_ltEs11(vwx260, vwx270) new_esEs26(vwx3000, vwx4000, ty_@0) -> new_esEs18(vwx3000, vwx4000) new_ltEs10(Just(vwx260), Just(vwx270), app(ty_Ratio, ddf)) -> new_ltEs6(vwx260, vwx270, ddf) new_esEs38(vwx3001, vwx4001, ty_Double) -> new_esEs22(vwx3001, vwx4001) new_esEs11(vwx302, vwx402, ty_Bool) -> new_esEs12(vwx302, vwx402) new_esEs38(vwx3001, vwx4001, ty_Float) -> new_esEs25(vwx3001, vwx4001) new_ltEs23(vwx261, vwx271, ty_@0) -> new_ltEs12(vwx261, vwx271) new_esEs17(Left(vwx3000), Left(vwx4000), app(ty_Ratio, ede), dae) -> new_esEs19(vwx3000, vwx4000, ede) new_primMulInt(Pos(vwx4000), Neg(vwx3010)) -> Neg(new_primMulNat0(vwx4000, vwx3010)) new_primMulInt(Neg(vwx4000), Pos(vwx3010)) -> Neg(new_primMulNat0(vwx4000, vwx3010)) new_esEs35(vwx3000, vwx4000, app(ty_[], ehe)) -> new_esEs16(vwx3000, vwx4000, ehe) new_esEs39(vwx3002, vwx4002, ty_Char) -> new_esEs15(vwx3002, vwx4002) new_ltEs5(vwx53, vwx56, ty_Double) -> new_ltEs18(vwx53, vwx56) new_esEs9(vwx300, vwx400, app(app(ty_@2, dhf), dhg)) -> new_esEs20(vwx300, vwx400, dhf, dhg) new_esEs31(vwx64, vwx66, ty_Ordering) -> new_esEs13(vwx64, vwx66) new_esEs7(vwx300, vwx400, app(ty_Ratio, cfg)) -> new_esEs19(vwx300, vwx400, cfg) new_compare27(vwx30, vwx40, app(app(app(ty_@3, bf), bg), bh)) -> new_compare29(vwx30, vwx40, bf, bg, bh) new_esEs36(vwx3001, vwx4001, app(app(ty_@2, fbc), fbd)) -> new_esEs20(vwx3001, vwx4001, fbc, fbd) new_lt22(vwx64, vwx66, ty_Ordering) -> new_lt17(vwx64, vwx66) new_esEs11(vwx302, vwx402, app(app(ty_@2, ecb), ecc)) -> new_esEs20(vwx302, vwx402, ecb, ecc) new_ltEs23(vwx261, vwx271, ty_Ordering) -> new_ltEs16(vwx261, vwx271) new_lt6(vwx52, vwx55, ty_@0) -> new_lt14(vwx52, vwx55) new_esEs32(vwx260, vwx270, ty_@0) -> new_esEs18(vwx260, vwx270) new_compare5([], [], hc) -> EQ new_compare110(vwx129, vwx130, vwx131, vwx132, vwx133, vwx134, False, egh, eha, ehb) -> GT new_esEs34(vwx3001, vwx4001, ty_Integer) -> new_esEs14(vwx3001, vwx4001) new_ltEs24(vwx33, vwx34, app(ty_Maybe, bhd)) -> new_ltEs10(vwx33, vwx34, bhd) new_esEs7(vwx300, vwx400, ty_Integer) -> new_esEs14(vwx300, vwx400) new_lt21(vwx261, vwx271, app(app(ty_Either, bfb), bfc)) -> new_lt15(vwx261, vwx271, bfb, bfc) new_ltEs14(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), bee, bdd, bde) -> new_pePe(new_lt20(vwx260, vwx270, bee), new_asAs(new_esEs29(vwx260, vwx270, bee), new_pePe(new_lt21(vwx261, vwx271, bdd), new_asAs(new_esEs30(vwx261, vwx271, bdd), new_ltEs20(vwx262, vwx272, bde))))) new_esEs21(Just(vwx3000), Just(vwx4000), app(app(ty_@2, deg), deh)) -> new_esEs20(vwx3000, vwx4000, deg, deh) new_esEs38(vwx3001, vwx4001, ty_Int) -> new_esEs23(vwx3001, vwx4001) new_ltEs19(vwx40, vwx41, app(ty_Ratio, dbf)) -> new_ltEs6(vwx40, vwx41, dbf) new_ltEs10(Just(vwx260), Just(vwx270), ty_Char) -> new_ltEs15(vwx260, vwx270) new_esEs38(vwx3001, vwx4001, app(app(ty_Either, fdh), fea)) -> new_esEs17(vwx3001, vwx4001, fdh, fea) new_esEs39(vwx3002, vwx4002, app(ty_Maybe, ffg)) -> new_esEs21(vwx3002, vwx4002, ffg) new_ltEs20(vwx262, vwx272, ty_Char) -> new_ltEs15(vwx262, vwx272) new_compare18(GT, LT) -> GT new_esEs6(vwx300, vwx400, ty_Int) -> new_esEs23(vwx300, vwx400) new_esEs32(vwx260, vwx270, ty_Bool) -> new_esEs12(vwx260, vwx270) new_ltEs24(vwx33, vwx34, ty_Float) -> new_ltEs9(vwx33, vwx34) new_esEs17(Left(vwx3000), Left(vwx4000), ty_Ordering, dae) -> new_esEs13(vwx3000, vwx4000) new_compare18(EQ, LT) -> GT new_esEs33(vwx3000, vwx4000, ty_Int) -> new_esEs23(vwx3000, vwx4000) new_ltEs13(Right(vwx260), Right(vwx270), bbh, app(ty_Maybe, bcd)) -> new_ltEs10(vwx260, vwx270, bcd) new_asAs(True, vwx82) -> vwx82 new_lt10(vwx64, vwx66, dd, de) -> new_esEs13(new_compare16(vwx64, vwx66, dd, de), LT) new_lt23(vwx260, vwx270, app(ty_Ratio, ech)) -> new_lt8(vwx260, vwx270, ech) new_esEs30(vwx261, vwx271, ty_Integer) -> new_esEs14(vwx261, vwx271) new_esEs26(vwx3000, vwx4000, app(app(ty_@2, chc), chd)) -> new_esEs20(vwx3000, vwx4000, chc, chd) new_esEs36(vwx3001, vwx4001, ty_@0) -> new_esEs18(vwx3001, vwx4001) new_ltEs24(vwx33, vwx34, app(app(ty_@2, bgh), bha)) -> new_ltEs8(vwx33, vwx34, bgh, bha) new_lt20(vwx260, vwx270, app(app(ty_@2, bdb), bdc)) -> new_lt10(vwx260, vwx270, bdb, bdc) new_primCompAux1(vwx30, vwx40, vwx5, hc) -> new_primCompAux0(vwx5, new_compare27(vwx30, vwx40, hc)) new_esEs10(vwx301, vwx401, ty_Ordering) -> new_esEs13(vwx301, vwx401) new_esEs8(vwx300, vwx400, ty_Ordering) -> new_esEs13(vwx300, vwx400) new_lt6(vwx52, vwx55, app(ty_Ratio, dab)) -> new_lt8(vwx52, vwx55, dab) new_esEs30(vwx261, vwx271, app(ty_Ratio, ddb)) -> new_esEs19(vwx261, vwx271, ddb) new_lt22(vwx64, vwx66, ty_Integer) -> new_lt9(vwx64, vwx66) new_esEs10(vwx301, vwx401, app(ty_[], ead)) -> new_esEs16(vwx301, vwx401, ead) new_ltEs12(vwx26, vwx27) -> new_fsEs(new_compare15(vwx26, vwx27)) new_compare8(Left(vwx300), Left(vwx400), bd, be) -> new_compare211(vwx300, vwx400, new_esEs7(vwx300, vwx400, bd), bd, be) new_esEs9(vwx300, vwx400, ty_@0) -> new_esEs18(vwx300, vwx400) new_ltEs13(Right(vwx260), Right(vwx270), bbh, ty_@0) -> new_ltEs12(vwx260, vwx270) new_esEs17(Right(vwx3000), Right(vwx4000), dad, ty_Double) -> new_esEs22(vwx3000, vwx4000) new_compare17(:%(vwx300, vwx301), :%(vwx400, vwx401), ty_Integer) -> new_compare13(new_sr(vwx300, vwx401), new_sr(vwx400, vwx301)) new_ltEs13(Right(vwx260), Right(vwx270), bbh, app(app(ty_Either, bce), bcf)) -> new_ltEs13(vwx260, vwx270, bce, bcf) new_esEs35(vwx3000, vwx4000, ty_Ordering) -> new_esEs13(vwx3000, vwx4000) new_esEs30(vwx261, vwx271, app(ty_Maybe, bfa)) -> new_esEs21(vwx261, vwx271, bfa) new_lt22(vwx64, vwx66, ty_Double) -> new_lt19(vwx64, vwx66) new_esEs21(Just(vwx3000), Just(vwx4000), ty_@0) -> new_esEs18(vwx3000, vwx4000) new_ltEs13(Left(vwx260), Left(vwx270), app(ty_Maybe, bbb), bah) -> new_ltEs10(vwx260, vwx270, bbb) new_esEs26(vwx3000, vwx4000, ty_Bool) -> new_esEs12(vwx3000, vwx4000) new_compare111(vwx94, vwx95, False, ehc, ehd) -> GT new_esEs29(vwx260, vwx270, app(ty_[], bdf)) -> new_esEs16(vwx260, vwx270, bdf) new_compare26(vwx64, vwx65, vwx66, vwx67, True, ca, df) -> EQ new_esEs11(vwx302, vwx402, ty_@0) -> new_esEs18(vwx302, vwx402) new_compare27(vwx30, vwx40, ty_Int) -> new_compare30(vwx30, vwx40) new_esEs17(Right(vwx3000), Right(vwx4000), dad, ty_Int) -> new_esEs23(vwx3000, vwx4000) new_esEs27(vwx51, vwx54, ty_Int) -> new_esEs23(vwx51, vwx54) new_esEs38(vwx3001, vwx4001, app(app(app(ty_@3, fef), feg), feh)) -> new_esEs24(vwx3001, vwx4001, fef, feg, feh) new_lt21(vwx261, vwx271, app(ty_[], beh)) -> new_lt11(vwx261, vwx271, beh) new_lt23(vwx260, vwx270, app(app(app(ty_@3, ff), fg), fh)) -> new_lt16(vwx260, vwx270, ff, fg, fh) new_esEs8(vwx300, vwx400, app(ty_[], eff)) -> new_esEs16(vwx300, vwx400, eff) new_primCmpInt(Pos(Succ(vwx3000)), Pos(vwx400)) -> new_primCmpNat0(Succ(vwx3000), vwx400) new_ltEs21(vwx65, vwx67, ty_Int) -> new_ltEs17(vwx65, vwx67) new_lt23(vwx260, vwx270, ty_@0) -> new_lt14(vwx260, vwx270) new_esEs5(vwx301, vwx401, ty_Bool) -> new_esEs12(vwx301, vwx401) new_esEs29(vwx260, vwx270, ty_Char) -> new_esEs15(vwx260, vwx270) new_compare30(vwx30, vwx40) -> new_primCmpInt(vwx30, vwx40) new_esEs12(False, True) -> False new_esEs12(True, False) -> False new_esEs28(vwx52, vwx55, ty_Int) -> new_esEs23(vwx52, vwx55) new_esEs8(vwx300, vwx400, ty_Char) -> new_esEs15(vwx300, vwx400) new_ltEs16(GT, GT) -> True new_primMulNat0(Zero, Zero) -> Zero new_lt6(vwx52, vwx55, ty_Char) -> new_lt5(vwx52, vwx55) new_esEs4(vwx300, vwx400, app(app(ty_@2, dag), dah)) -> new_esEs20(vwx300, vwx400, dag, dah) new_compare26(vwx64, vwx65, vwx66, vwx67, False, ca, df) -> new_compare10(vwx64, vwx65, vwx66, vwx67, new_lt22(vwx64, vwx66, ca), new_asAs(new_esEs31(vwx64, vwx66, ca), new_ltEs21(vwx65, vwx67, df)), ca, df) new_ltEs22(vwx26, vwx27, ty_Double) -> new_ltEs18(vwx26, vwx27) new_esEs12(True, True) -> True new_compare29(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bf, bg, bh) -> new_compare24(vwx300, vwx301, vwx302, vwx400, vwx401, vwx402, new_asAs(new_esEs9(vwx300, vwx400, bf), new_asAs(new_esEs10(vwx301, vwx401, bg), new_esEs11(vwx302, vwx402, bh))), bf, bg, bh) new_lt7(vwx51, vwx54, app(app(app(ty_@3, ceg), ceh), cfa)) -> new_lt16(vwx51, vwx54, ceg, ceh, cfa) new_esEs30(vwx261, vwx271, app(ty_[], beh)) -> new_esEs16(vwx261, vwx271, beh) new_esEs27(vwx51, vwx54, ty_Double) -> new_esEs22(vwx51, vwx54) new_esEs27(vwx51, vwx54, app(app(ty_Either, cee), cef)) -> new_esEs17(vwx51, vwx54, cee, cef) new_ltEs20(vwx262, vwx272, ty_Integer) -> new_ltEs7(vwx262, vwx272) new_esEs29(vwx260, vwx270, ty_Ordering) -> new_esEs13(vwx260, vwx270) new_ltEs22(vwx26, vwx27, app(app(ty_Either, bbh), bah)) -> new_ltEs13(vwx26, vwx27, bbh, bah) new_esEs7(vwx300, vwx400, ty_Char) -> new_esEs15(vwx300, vwx400) new_esEs4(vwx300, vwx400, ty_Bool) -> new_esEs12(vwx300, vwx400) new_esEs27(vwx51, vwx54, ty_Float) -> new_esEs25(vwx51, vwx54) new_esEs39(vwx3002, vwx4002, app(ty_Ratio, ffd)) -> new_esEs19(vwx3002, vwx4002, ffd) new_ltEs20(vwx262, vwx272, app(ty_Ratio, ddc)) -> new_ltEs6(vwx262, vwx272, ddc) new_esEs21(Nothing, Just(vwx4000), dba) -> False new_esEs21(Just(vwx3000), Nothing, dba) -> False new_esEs34(vwx3001, vwx4001, ty_Int) -> new_esEs23(vwx3001, vwx4001) new_ltEs11(True, False) -> False new_esEs17(Right(vwx3000), Right(vwx4000), dad, app(app(app(ty_@3, efc), efd), efe)) -> new_esEs24(vwx3000, vwx4000, efc, efd, efe) new_esEs27(vwx51, vwx54, app(app(app(ty_@3, ceg), ceh), cfa)) -> new_esEs24(vwx51, vwx54, ceg, ceh, cfa) new_ltEs13(Left(vwx260), Left(vwx270), app(ty_Ratio, fcc), bah) -> new_ltEs6(vwx260, vwx270, fcc) new_lt6(vwx52, vwx55, app(app(app(ty_@3, ccd), cce), ccf)) -> new_lt16(vwx52, vwx55, ccd, cce, ccf) new_esEs21(Nothing, Nothing, dba) -> True new_lt21(vwx261, vwx271, app(ty_Maybe, bfa)) -> new_lt4(vwx261, vwx271, bfa) new_esEs32(vwx260, vwx270, app(app(ty_@2, ef), eg)) -> new_esEs20(vwx260, vwx270, ef, eg) new_compare27(vwx30, vwx40, app(app(ty_Either, bd), be)) -> new_compare8(vwx30, vwx40, bd, be) new_esEs9(vwx300, vwx400, ty_Ordering) -> new_esEs13(vwx300, vwx400) new_lt23(vwx260, vwx270, ty_Char) -> new_lt5(vwx260, vwx270) new_ltEs13(Right(vwx260), Right(vwx270), bbh, ty_Double) -> new_ltEs18(vwx260, vwx270) new_esEs16(:(vwx3000, vwx3001), :(vwx4000, vwx4001), cgf) -> new_asAs(new_esEs26(vwx3000, vwx4000, cgf), new_esEs16(vwx3001, vwx4001, cgf)) new_esEs29(vwx260, vwx270, app(ty_Ratio, dda)) -> new_esEs19(vwx260, vwx270, dda) new_esEs8(vwx300, vwx400, app(ty_Maybe, egd)) -> new_esEs21(vwx300, vwx400, egd) new_esEs28(vwx52, vwx55, ty_Float) -> new_esEs25(vwx52, vwx55) new_esEs28(vwx52, vwx55, app(app(ty_Either, ccb), ccc)) -> new_esEs17(vwx52, vwx55, ccb, ccc) new_lt20(vwx260, vwx270, ty_Int) -> new_lt18(vwx260, vwx270) new_esEs28(vwx52, vwx55, app(app(app(ty_@3, ccd), cce), ccf)) -> new_esEs24(vwx52, vwx55, ccd, cce, ccf) new_lt21(vwx261, vwx271, ty_Double) -> new_lt19(vwx261, vwx271) new_primCompAux0(vwx9, EQ) -> vwx9 new_compare28(False, True) -> LT new_ltEs19(vwx40, vwx41, ty_Int) -> new_ltEs17(vwx40, vwx41) new_ltEs23(vwx261, vwx271, app(ty_Maybe, ge)) -> new_ltEs10(vwx261, vwx271, ge) new_lt22(vwx64, vwx66, app(app(ty_Either, ea), eb)) -> new_lt15(vwx64, vwx66, ea, eb) new_lt7(vwx51, vwx54, ty_Float) -> new_lt12(vwx51, vwx54) new_lt6(vwx52, vwx55, ty_Ordering) -> new_lt17(vwx52, vwx55) new_ltEs10(Just(vwx260), Just(vwx270), ty_Integer) -> new_ltEs7(vwx260, vwx270) new_primEqInt(Neg(Succ(vwx30000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(vwx40000))) -> False new_esEs7(vwx300, vwx400, app(ty_Maybe, cgb)) -> new_esEs21(vwx300, vwx400, cgb) new_lt14(vwx64, vwx66) -> new_esEs13(new_compare15(vwx64, vwx66), LT) new_esEs39(vwx3002, vwx4002, app(app(app(ty_@3, ffh), fga), fgb)) -> new_esEs24(vwx3002, vwx4002, ffh, fga, fgb) new_ltEs10(Just(vwx260), Just(vwx270), ty_Int) -> new_ltEs17(vwx260, vwx270) new_ltEs24(vwx33, vwx34, app(ty_Ratio, fcb)) -> new_ltEs6(vwx33, vwx34, fcb) new_compare24(vwx51, vwx52, vwx53, vwx54, vwx55, vwx56, True, cbd, ccg, cbg) -> EQ new_primEqInt(Pos(Succ(vwx30000)), Pos(Succ(vwx40000))) -> new_primEqNat0(vwx30000, vwx40000) new_esEs39(vwx3002, vwx4002, ty_Ordering) -> new_esEs13(vwx3002, vwx4002) new_esEs28(vwx52, vwx55, app(ty_Ratio, dab)) -> new_esEs19(vwx52, vwx55, dab) new_ltEs8(@2(vwx260, vwx261), @2(vwx270, vwx271), ga, eh) -> new_pePe(new_lt23(vwx260, vwx270, ga), new_asAs(new_esEs32(vwx260, vwx270, ga), new_ltEs23(vwx261, vwx271, eh))) new_esEs17(Left(vwx3000), Right(vwx4000), dad, dae) -> False new_esEs17(Right(vwx3000), Left(vwx4000), dad, dae) -> False new_lt22(vwx64, vwx66, ty_@0) -> new_lt14(vwx64, vwx66) new_esEs5(vwx301, vwx401, ty_@0) -> new_esEs18(vwx301, vwx401) new_compare19(vwx87, vwx88, False, ddh) -> GT new_compare25(vwx40, vwx41, False, cab, dbe) -> new_compare14(vwx40, vwx41, new_ltEs19(vwx40, vwx41, dbe), cab, dbe) new_esEs9(vwx300, vwx400, ty_Bool) -> new_esEs12(vwx300, vwx400) new_compare9(Float(vwx300, Pos(vwx3010)), Float(vwx400, Neg(vwx4010))) -> new_compare30(new_sr0(vwx300, Pos(vwx4010)), new_sr0(Neg(vwx3010), vwx400)) new_compare9(Float(vwx300, Neg(vwx3010)), Float(vwx400, Pos(vwx4010))) -> new_compare30(new_sr0(vwx300, Neg(vwx4010)), new_sr0(Pos(vwx3010), vwx400)) new_esEs7(vwx300, vwx400, app(ty_[], cfd)) -> new_esEs16(vwx300, vwx400, cfd) new_esEs21(Just(vwx3000), Just(vwx4000), app(ty_[], dec)) -> new_esEs16(vwx3000, vwx4000, dec) new_esEs17(Right(vwx3000), Right(vwx4000), dad, app(ty_Ratio, eeg)) -> new_esEs19(vwx3000, vwx4000, eeg) new_esEs4(vwx300, vwx400, ty_Ordering) -> new_esEs13(vwx300, vwx400) new_lt7(vwx51, vwx54, ty_Char) -> new_lt5(vwx51, vwx54) new_ltEs13(Right(vwx260), Right(vwx270), bbh, ty_Integer) -> new_ltEs7(vwx260, vwx270) new_ltEs20(vwx262, vwx272, ty_Float) -> new_ltEs9(vwx262, vwx272) new_primEqInt(Pos(Succ(vwx30000)), Neg(vwx4000)) -> False new_primEqInt(Neg(Succ(vwx30000)), Pos(vwx4000)) -> False new_esEs39(vwx3002, vwx4002, ty_Float) -> new_esEs25(vwx3002, vwx4002) new_compare10(vwx114, vwx115, vwx116, vwx117, True, vwx119, cfb, cfc) -> new_compare11(vwx114, vwx115, vwx116, vwx117, True, cfb, cfc) new_esEs28(vwx52, vwx55, ty_Double) -> new_esEs22(vwx52, vwx55) new_lt21(vwx261, vwx271, ty_Integer) -> new_lt9(vwx261, vwx271) new_esEs31(vwx64, vwx66, app(ty_[], dg)) -> new_esEs16(vwx64, vwx66, dg) new_ltEs21(vwx65, vwx67, app(app(ty_Either, cf), cg)) -> new_ltEs13(vwx65, vwx67, cf, cg) new_primCmpInt(Neg(Zero), Neg(Succ(vwx4000))) -> new_primCmpNat0(Succ(vwx4000), Zero) new_esEs11(vwx302, vwx402, ty_Ordering) -> new_esEs13(vwx302, vwx402) new_esEs13(LT, GT) -> False new_esEs13(GT, LT) -> False new_ltEs13(Right(vwx260), Right(vwx270), bbh, ty_Float) -> new_ltEs9(vwx260, vwx270) new_ltEs13(Left(vwx260), Left(vwx270), ty_Int, bah) -> new_ltEs17(vwx260, vwx270) new_compare211(vwx33, vwx34, True, fca, bhb) -> EQ new_esEs31(vwx64, vwx66, ty_Char) -> new_esEs15(vwx64, vwx66) new_ltEs22(vwx26, vwx27, app(ty_[], hd)) -> new_ltEs4(vwx26, vwx27, hd) new_esEs10(vwx301, vwx401, app(app(ty_@2, eah), eba)) -> new_esEs20(vwx301, vwx401, eah, eba) new_ltEs13(Right(vwx260), Right(vwx270), bbh, app(ty_Ratio, fcd)) -> new_ltEs6(vwx260, vwx270, fcd) new_esEs17(Left(vwx3000), Left(vwx4000), ty_@0, dae) -> new_esEs18(vwx3000, vwx4000) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_ltEs22(vwx26, vwx27, ty_Ordering) -> new_ltEs16(vwx26, vwx27) new_compare28(True, True) -> EQ new_lt21(vwx261, vwx271, ty_Ordering) -> new_lt17(vwx261, vwx271) new_ltEs18(vwx26, vwx27) -> new_fsEs(new_compare31(vwx26, vwx27)) new_esEs5(vwx301, vwx401, ty_Ordering) -> new_esEs13(vwx301, vwx401) new_esEs35(vwx3000, vwx4000, app(app(ty_@2, faa), fab)) -> new_esEs20(vwx3000, vwx4000, faa, fab) new_esEs8(vwx300, vwx400, ty_Bool) -> new_esEs12(vwx300, vwx400) new_lt23(vwx260, vwx270, ty_Double) -> new_lt19(vwx260, vwx270) new_ltEs19(vwx40, vwx41, ty_Float) -> new_ltEs9(vwx40, vwx41) new_esEs30(vwx261, vwx271, ty_Int) -> new_esEs23(vwx261, vwx271) new_esEs33(vwx3000, vwx4000, ty_Integer) -> new_esEs14(vwx3000, vwx4000) new_ltEs19(vwx40, vwx41, app(ty_Maybe, caf)) -> new_ltEs10(vwx40, vwx41, caf) new_compare18(EQ, EQ) -> EQ new_lt6(vwx52, vwx55, ty_Double) -> new_lt19(vwx52, vwx55) new_esEs9(vwx300, vwx400, app(ty_[], dhb)) -> new_esEs16(vwx300, vwx400, dhb) new_ltEs20(vwx262, vwx272, ty_Int) -> new_ltEs17(vwx262, vwx272) new_ltEs5(vwx53, vwx56, ty_Bool) -> new_ltEs11(vwx53, vwx56) new_compare31(Double(vwx300, Neg(vwx3010)), Double(vwx400, Neg(vwx4010))) -> new_compare30(new_sr0(vwx300, Neg(vwx4010)), new_sr0(Neg(vwx3010), vwx400)) new_lt15(vwx64, vwx66, ea, eb) -> new_esEs13(new_compare8(vwx64, vwx66, ea, eb), LT) new_esEs39(vwx3002, vwx4002, ty_Double) -> new_esEs22(vwx3002, vwx4002) new_esEs37(vwx3000, vwx4000, app(app(app(ty_@3, fdd), fde), fdf)) -> new_esEs24(vwx3000, vwx4000, fdd, fde, fdf) new_compare27(vwx30, vwx40, app(ty_[], bb)) -> new_compare5(vwx30, vwx40, bb) new_ltEs5(vwx53, vwx56, ty_Float) -> new_ltEs9(vwx53, vwx56) new_esEs37(vwx3000, vwx4000, ty_Double) -> new_esEs22(vwx3000, vwx4000) new_esEs17(Right(vwx3000), Right(vwx4000), dad, app(ty_[], eed)) -> new_esEs16(vwx3000, vwx4000, eed) new_lt6(vwx52, vwx55, ty_Integer) -> new_lt9(vwx52, vwx55) new_lt20(vwx260, vwx270, app(app(app(ty_@3, beb), bec), bed)) -> new_lt16(vwx260, vwx270, beb, bec, bed) new_esEs10(vwx301, vwx401, ty_Integer) -> new_esEs14(vwx301, vwx401) new_not(False) -> True new_lt23(vwx260, vwx270, ty_Integer) -> new_lt9(vwx260, vwx270) new_esEs10(vwx301, vwx401, ty_Bool) -> new_esEs12(vwx301, vwx401) new_compare18(LT, EQ) -> LT new_esEs36(vwx3001, vwx4001, app(ty_[], fag)) -> new_esEs16(vwx3001, vwx4001, fag) new_ltEs22(vwx26, vwx27, ty_@0) -> new_ltEs12(vwx26, vwx27) new_esEs8(vwx300, vwx400, app(ty_Ratio, ega)) -> new_esEs19(vwx300, vwx400, ega) new_compare18(GT, EQ) -> GT new_esEs32(vwx260, vwx270, ty_Ordering) -> new_esEs13(vwx260, vwx270) new_esEs31(vwx64, vwx66, app(ty_Ratio, ddd)) -> new_esEs19(vwx64, vwx66, ddd) new_ltEs24(vwx33, vwx34, ty_Ordering) -> new_ltEs16(vwx33, vwx34) new_esEs27(vwx51, vwx54, ty_@0) -> new_esEs18(vwx51, vwx54) new_esEs30(vwx261, vwx271, ty_Float) -> new_esEs25(vwx261, vwx271) new_esEs35(vwx3000, vwx4000, ty_Integer) -> new_esEs14(vwx3000, vwx4000) new_esEs29(vwx260, vwx270, ty_Float) -> new_esEs25(vwx260, vwx270) new_esEs10(vwx301, vwx401, app(ty_Maybe, ebb)) -> new_esEs21(vwx301, vwx401, ebb) new_ltEs10(Just(vwx260), Nothing, dde) -> False new_ltEs10(Nothing, Nothing, dde) -> True new_esEs8(vwx300, vwx400, ty_Integer) -> new_esEs14(vwx300, vwx400) new_ltEs10(Just(vwx260), Just(vwx270), app(app(ty_Either, baa), bab)) -> new_ltEs13(vwx260, vwx270, baa, bab) new_esEs29(vwx260, vwx270, ty_Bool) -> new_esEs12(vwx260, vwx270) new_ltEs20(vwx262, vwx272, ty_Bool) -> new_ltEs11(vwx262, vwx272) new_lt19(vwx64, vwx66) -> new_esEs13(new_compare31(vwx64, vwx66), LT) new_esEs17(Left(vwx3000), Left(vwx4000), ty_Integer, dae) -> new_esEs14(vwx3000, vwx4000) new_ltEs13(Right(vwx260), Right(vwx270), bbh, ty_Char) -> new_ltEs15(vwx260, vwx270) new_primPlusNat0(Succ(vwx1440), vwx30100) -> Succ(Succ(new_primPlusNat1(vwx1440, vwx30100))) new_ltEs21(vwx65, vwx67, app(ty_[], cd)) -> new_ltEs4(vwx65, vwx67, cd) new_esEs17(Left(vwx3000), Left(vwx4000), app(app(ty_@2, edf), edg), dae) -> new_esEs20(vwx3000, vwx4000, edf, edg) new_esEs37(vwx3000, vwx4000, app(app(ty_Either, fcf), fcg)) -> new_esEs17(vwx3000, vwx4000, fcf, fcg) new_ltEs5(vwx53, vwx56, app(ty_Maybe, cdc)) -> new_ltEs10(vwx53, vwx56, cdc) new_esEs35(vwx3000, vwx4000, app(app(ty_Either, ehf), ehg)) -> new_esEs17(vwx3000, vwx4000, ehf, ehg) new_sr0(vwx400, vwx301) -> new_primMulInt(vwx400, vwx301) new_esEs35(vwx3000, vwx4000, app(app(app(ty_@3, fad), fae), faf)) -> new_esEs24(vwx3000, vwx4000, fad, fae, faf) new_esEs35(vwx3000, vwx4000, ty_Double) -> new_esEs22(vwx3000, vwx4000) new_ltEs13(Left(vwx260), Left(vwx270), ty_Double, bah) -> new_ltEs18(vwx260, vwx270) new_esEs17(Left(vwx3000), Left(vwx4000), app(app(ty_Either, edc), edd), dae) -> new_esEs17(vwx3000, vwx4000, edc, edd) new_ltEs22(vwx26, vwx27, ty_Bool) -> new_ltEs11(vwx26, vwx27) new_esEs8(vwx300, vwx400, ty_Float) -> new_esEs25(vwx300, vwx400) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_compare27(vwx30, vwx40, ty_Integer) -> new_compare13(vwx30, vwx40) new_primPlusNat1(Zero, Zero) -> Zero new_esEs26(vwx3000, vwx4000, app(app(ty_Either, cgh), cha)) -> new_esEs17(vwx3000, vwx4000, cgh, cha) new_lt20(vwx260, vwx270, app(app(ty_Either, bdh), bea)) -> new_lt15(vwx260, vwx270, bdh, bea) new_ltEs19(vwx40, vwx41, ty_Bool) -> new_ltEs11(vwx40, vwx41) new_esEs10(vwx301, vwx401, app(ty_Ratio, eag)) -> new_esEs19(vwx301, vwx401, eag) new_esEs37(vwx3000, vwx4000, app(app(ty_@2, fda), fdb)) -> new_esEs20(vwx3000, vwx4000, fda, fdb) new_esEs32(vwx260, vwx270, ty_Float) -> new_esEs25(vwx260, vwx270) new_esEs30(vwx261, vwx271, ty_Ordering) -> new_esEs13(vwx261, vwx271) new_esEs6(vwx300, vwx400, app(ty_Ratio, dgc)) -> new_esEs19(vwx300, vwx400, dgc) new_esEs4(vwx300, vwx400, ty_@0) -> new_esEs18(vwx300, vwx400) new_esEs17(Left(vwx3000), Left(vwx4000), ty_Char, dae) -> new_esEs15(vwx3000, vwx4000) new_esEs5(vwx301, vwx401, ty_Float) -> new_esEs25(vwx301, vwx401) new_ltEs10(Just(vwx260), Just(vwx270), app(app(app(ty_@3, bac), bad), bae)) -> new_ltEs14(vwx260, vwx270, bac, bad, bae) new_lt4(vwx64, vwx66, dh) -> new_esEs13(new_compare6(vwx64, vwx66, dh), LT) new_esEs23(vwx300, vwx400) -> new_primEqInt(vwx300, vwx400) new_esEs9(vwx300, vwx400, app(ty_Maybe, dhh)) -> new_esEs21(vwx300, vwx400, dhh) new_ltEs23(vwx261, vwx271, app(app(ty_Either, gf), gg)) -> new_ltEs13(vwx261, vwx271, gf, gg) new_esEs30(vwx261, vwx271, ty_Bool) -> new_esEs12(vwx261, vwx271) new_compare8(Right(vwx300), Right(vwx400), bd, be) -> new_compare25(vwx300, vwx400, new_esEs8(vwx300, vwx400, be), bd, be) new_esEs26(vwx3000, vwx4000, ty_Double) -> new_esEs22(vwx3000, vwx4000) new_esEs8(vwx300, vwx400, ty_Int) -> new_esEs23(vwx300, vwx400) new_esEs35(vwx3000, vwx4000, ty_Char) -> new_esEs15(vwx3000, vwx4000) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs38(vwx3001, vwx4001, ty_@0) -> new_esEs18(vwx3001, vwx4001) new_lt21(vwx261, vwx271, ty_Float) -> new_lt12(vwx261, vwx271) new_esEs11(vwx302, vwx402, ty_Char) -> new_esEs15(vwx302, vwx402) new_ltEs21(vwx65, vwx67, app(ty_Maybe, ce)) -> new_ltEs10(vwx65, vwx67, ce) new_primMulNat0(Succ(vwx40000), Succ(vwx30100)) -> new_primPlusNat0(new_primMulNat0(vwx40000, Succ(vwx30100)), vwx30100) new_ltEs23(vwx261, vwx271, app(app(app(ty_@3, gh), ha), hb)) -> new_ltEs14(vwx261, vwx271, gh, ha, hb) new_lt20(vwx260, vwx270, app(ty_Maybe, bdg)) -> new_lt4(vwx260, vwx270, bdg) new_ltEs5(vwx53, vwx56, app(ty_[], cdb)) -> new_ltEs4(vwx53, vwx56, cdb) new_compare7(Char(vwx300), Char(vwx400)) -> new_primCmpNat0(vwx300, vwx400) new_compare27(vwx30, vwx40, ty_Ordering) -> new_compare18(vwx30, vwx40) new_ltEs13(Right(vwx260), Right(vwx270), bbh, ty_Ordering) -> new_ltEs16(vwx260, vwx270) new_esEs6(vwx300, vwx400, ty_Float) -> new_esEs25(vwx300, vwx400) new_lt20(vwx260, vwx270, ty_@0) -> new_lt14(vwx260, vwx270) new_primCmpNat0(Succ(vwx3000), Succ(vwx4000)) -> new_primCmpNat0(vwx3000, vwx4000) new_lt9(vwx64, vwx66) -> new_esEs13(new_compare13(vwx64, vwx66), LT) new_esEs9(vwx300, vwx400, ty_Char) -> new_esEs15(vwx300, vwx400) new_ltEs23(vwx261, vwx271, ty_Int) -> new_ltEs17(vwx261, vwx271) new_esEs11(vwx302, vwx402, app(ty_Maybe, ecd)) -> new_esEs21(vwx302, vwx402, ecd) new_ltEs20(vwx262, vwx272, app(ty_Maybe, bgb)) -> new_ltEs10(vwx262, vwx272, bgb) new_lt16(vwx64, vwx66, ec, ed, ee) -> new_esEs13(new_compare29(vwx64, vwx66, ec, ed, ee), LT) new_esEs37(vwx3000, vwx4000, ty_@0) -> new_esEs18(vwx3000, vwx4000) new_esEs7(vwx300, vwx400, ty_Int) -> new_esEs23(vwx300, vwx400) new_esEs17(Right(vwx3000), Right(vwx4000), dad, ty_Bool) -> new_esEs12(vwx3000, vwx4000) new_esEs10(vwx301, vwx401, ty_Char) -> new_esEs15(vwx301, vwx401) new_esEs16(:(vwx3000, vwx3001), [], cgf) -> False new_esEs16([], :(vwx4000, vwx4001), cgf) -> False new_compare24(vwx51, vwx52, vwx53, vwx54, vwx55, vwx56, False, cbd, ccg, cbg) -> new_compare12(vwx51, vwx52, vwx53, vwx54, vwx55, vwx56, new_lt7(vwx51, vwx54, cbd), new_asAs(new_esEs27(vwx51, vwx54, cbd), new_pePe(new_lt6(vwx52, vwx55, ccg), new_asAs(new_esEs28(vwx52, vwx55, ccg), new_ltEs5(vwx53, vwx56, cbg)))), cbd, ccg, cbg) new_esEs17(Right(vwx3000), Right(vwx4000), dad, app(app(ty_Either, eee), eef)) -> new_esEs17(vwx3000, vwx4000, eee, eef) new_esEs26(vwx3000, vwx4000, app(app(app(ty_@3, chf), chg), chh)) -> new_esEs24(vwx3000, vwx4000, chf, chg, chh) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_ltEs24(vwx33, vwx34, ty_Char) -> new_ltEs15(vwx33, vwx34) new_esEs7(vwx300, vwx400, ty_Float) -> new_esEs25(vwx300, vwx400) new_compare210(vwx26, vwx27, False, dfg) -> new_compare19(vwx26, vwx27, new_ltEs22(vwx26, vwx27, dfg), dfg) new_ltEs20(vwx262, vwx272, app(ty_[], bga)) -> new_ltEs4(vwx262, vwx272, bga) new_esEs35(vwx3000, vwx4000, app(ty_Maybe, fac)) -> new_esEs21(vwx3000, vwx4000, fac) new_esEs36(vwx3001, vwx4001, app(app(ty_Either, fah), fba)) -> new_esEs17(vwx3001, vwx4001, fah, fba) new_compare31(Double(vwx300, Pos(vwx3010)), Double(vwx400, Pos(vwx4010))) -> new_compare30(new_sr0(vwx300, Pos(vwx4010)), new_sr0(Pos(vwx3010), vwx400)) new_esEs17(Right(vwx3000), Right(vwx4000), dad, ty_Float) -> new_esEs25(vwx3000, vwx4000) new_lt20(vwx260, vwx270, ty_Char) -> new_lt5(vwx260, vwx270) new_primEqNat0(Zero, Zero) -> True new_esEs7(vwx300, vwx400, ty_Ordering) -> new_esEs13(vwx300, vwx400) new_esEs15(Char(vwx3000), Char(vwx4000)) -> new_primEqNat0(vwx3000, vwx4000) new_compare14(vwx102, vwx103, False, dfe, dff) -> GT new_esEs6(vwx300, vwx400, ty_Bool) -> new_esEs12(vwx300, vwx400) new_ltEs22(vwx26, vwx27, ty_Int) -> new_ltEs17(vwx26, vwx27) new_esEs13(EQ, EQ) -> True new_esEs11(vwx302, vwx402, ty_Integer) -> new_esEs14(vwx302, vwx402) new_ltEs19(vwx40, vwx41, app(ty_[], cae)) -> new_ltEs4(vwx40, vwx41, cae) new_asAs(False, vwx82) -> False new_esEs31(vwx64, vwx66, ty_Float) -> new_esEs25(vwx64, vwx66) new_esEs21(Just(vwx3000), Just(vwx4000), app(app(ty_Either, ded), dee)) -> new_esEs17(vwx3000, vwx4000, ded, dee) new_esEs21(Just(vwx3000), Just(vwx4000), ty_Double) -> new_esEs22(vwx3000, vwx4000) new_esEs13(LT, EQ) -> False new_esEs13(EQ, LT) -> False new_ltEs13(Left(vwx260), Left(vwx270), app(app(app(ty_@3, bbe), bbf), bbg), bah) -> new_ltEs14(vwx260, vwx270, bbe, bbf, bbg) new_ltEs10(Just(vwx260), Just(vwx270), app(app(ty_@2, he), hf)) -> new_ltEs8(vwx260, vwx270, he, hf) new_esEs31(vwx64, vwx66, ty_Bool) -> new_esEs12(vwx64, vwx66) new_compare6(Nothing, Just(vwx400), bc) -> LT new_ltEs23(vwx261, vwx271, ty_Integer) -> new_ltEs7(vwx261, vwx271) new_ltEs24(vwx33, vwx34, ty_@0) -> new_ltEs12(vwx33, vwx34) new_ltEs24(vwx33, vwx34, app(app(ty_Either, bhe), bhf)) -> new_ltEs13(vwx33, vwx34, bhe, bhf) new_esEs14(Integer(vwx3000), Integer(vwx4000)) -> new_primEqInt(vwx3000, vwx4000) new_lt20(vwx260, vwx270, ty_Float) -> new_lt12(vwx260, vwx270) new_esEs9(vwx300, vwx400, ty_Integer) -> new_esEs14(vwx300, vwx400) new_esEs32(vwx260, vwx270, ty_Int) -> new_esEs23(vwx260, vwx270) new_compare10(vwx114, vwx115, vwx116, vwx117, False, vwx119, cfb, cfc) -> new_compare11(vwx114, vwx115, vwx116, vwx117, vwx119, cfb, cfc) new_esEs17(Right(vwx3000), Right(vwx4000), dad, app(app(ty_@2, eeh), efa)) -> new_esEs20(vwx3000, vwx4000, eeh, efa) new_esEs19(:%(vwx3000, vwx3001), :%(vwx4000, vwx4001), daf) -> new_asAs(new_esEs33(vwx3000, vwx4000, daf), new_esEs34(vwx3001, vwx4001, daf)) new_esEs17(Right(vwx3000), Right(vwx4000), dad, app(ty_Maybe, efb)) -> new_esEs21(vwx3000, vwx4000, efb) new_esEs11(vwx302, vwx402, app(ty_[], ebf)) -> new_esEs16(vwx302, vwx402, ebf) new_ltEs21(vwx65, vwx67, ty_Bool) -> new_ltEs11(vwx65, vwx67) new_compare27(vwx30, vwx40, app(ty_Maybe, bc)) -> new_compare6(vwx30, vwx40, bc) new_ltEs24(vwx33, vwx34, app(app(app(ty_@3, bhg), bhh), caa)) -> new_ltEs14(vwx33, vwx34, bhg, bhh, caa) The set Q consists of the following terms: new_lt7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(x0, x1, ty_Ordering) new_compare5(:(x0, x1), [], x2) new_esEs29(x0, x1, ty_Int) new_lt17(x0, x1) new_primMulNat0(Zero, Succ(x0)) new_esEs9(x0, x1, app(ty_[], x2)) new_esEs17(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs5(x0, x1, app(app(ty_@2, x2), x3)) new_compare13(Integer(x0), Integer(x1)) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, ty_Float) new_esEs16(:(x0, x1), :(x2, x3), x4) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs10(Just(x0), Nothing, x1) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_lt6(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, ty_Char) new_esEs5(x0, x1, ty_Double) new_primPlusNat1(Zero, Zero) new_esEs10(x0, x1, ty_Float) new_ltEs24(x0, x1, ty_@0) new_ltEs10(Nothing, Just(x0), x1) new_lt21(x0, x1, ty_Char) new_lt23(x0, x1, ty_Float) new_esEs36(x0, x1, ty_Float) new_ltEs13(Left(x0), Left(x1), ty_Integer, x2) new_ltEs24(x0, x1, ty_Bool) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_primPlusNat0(Zero, x0) new_lt8(x0, x1, x2) new_lt22(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, ty_Integer) new_esEs37(x0, x1, ty_Integer) new_ltEs20(x0, x1, ty_Integer) new_lt6(x0, x1, ty_@0) new_ltEs13(Right(x0), Right(x1), x2, ty_Char) new_lt7(x0, x1, ty_Bool) new_primEqInt(Pos(Zero), Pos(Zero)) new_ltEs10(Nothing, Nothing, x0) new_compare28(True, True) new_lt13(x0, x1) new_esEs29(x0, x1, ty_Ordering) new_esEs29(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_Double) new_compare211(x0, x1, False, x2, x3) new_esEs4(x0, x1, ty_Ordering) new_lt6(x0, x1, ty_Integer) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_lt22(x0, x1, ty_Float) new_compare27(x0, x1, ty_Double) new_esEs4(x0, x1, ty_Double) new_ltEs13(Right(x0), Right(x1), x2, ty_Double) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_ltEs13(Right(x0), Right(x1), x2, ty_Ordering) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs17(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs13(LT, LT) new_primCompAux0(x0, GT) new_compare11(x0, x1, x2, x3, True, x4, x5) new_primEqInt(Neg(Zero), Neg(Zero)) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, ty_Integer) new_ltEs13(Right(x0), Right(x1), x2, ty_Int) new_ltEs23(x0, x1, ty_Bool) new_ltEs12(x0, x1) new_ltEs16(GT, EQ) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs6(x0, x1, x2) new_ltEs16(EQ, GT) new_esEs5(x0, x1, ty_Int) new_lt19(x0, x1) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(x0, x1, ty_Int) new_ltEs18(x0, x1) new_esEs12(False, True) new_esEs12(True, False) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_lt21(x0, x1, ty_Double) new_ltEs13(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_ltEs16(LT, LT) new_esEs36(x0, x1, ty_Integer) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, ty_Int) new_ltEs10(Just(x0), Just(x1), ty_Double) new_compare18(EQ, LT) new_compare18(LT, EQ) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs35(x0, x1, ty_Float) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_esEs17(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_asAs(True, x0) new_esEs31(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, ty_Bool) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs24(x0, x1, ty_Int) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs11(True, True) new_esEs35(x0, x1, ty_@0) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, ty_Char) new_esEs21(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_compare19(x0, x1, False, x2) new_primPlusNat1(Zero, Succ(x0)) new_esEs8(x0, x1, ty_Double) new_esEs7(x0, x1, ty_Float) new_ltEs13(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_esEs8(x0, x1, ty_Int) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_compare27(x0, x1, ty_Int) new_compare18(LT, LT) new_compare16(@2(x0, x1), @2(x2, x3), x4, x5) new_primMulNat0(Succ(x0), Zero) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare30(x0, x1) new_ltEs10(Just(x0), Just(x1), ty_Int) new_esEs27(x0, x1, ty_Ordering) new_esEs30(x0, x1, ty_Integer) new_esEs16([], :(x0, x1), x2) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs38(x0, x1, ty_Float) new_lt6(x0, x1, ty_Char) new_lt21(x0, x1, ty_Int) new_lt20(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs17(Left(x0), Left(x1), ty_Float, x2) new_primMulInt(Pos(x0), Pos(x1)) new_esEs16([], [], x0) new_esEs35(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_ltEs5(x0, x1, ty_Integer) new_lt21(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs39(x0, x1, ty_Integer) new_esEs19(:%(x0, x1), :%(x2, x3), x4) new_lt7(x0, x1, ty_Ordering) new_lt9(x0, x1) new_lt7(x0, x1, app(app(ty_@2, x2), x3)) new_lt22(x0, x1, app(ty_Ratio, x2)) new_esEs36(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, ty_Double) new_ltEs24(x0, x1, app(ty_[], x2)) new_esEs21(Nothing, Nothing, x0) new_ltEs24(x0, x1, ty_Double) new_lt21(x0, x1, ty_@0) new_compare18(GT, GT) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_lt6(x0, x1, ty_Bool) new_sr0(x0, x1) new_compare8(Right(x0), Right(x1), x2, x3) new_lt20(x0, x1, ty_Ordering) new_compare6(Just(x0), Nothing, x1) new_ltEs23(x0, x1, ty_Integer) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_esEs38(x0, x1, ty_@0) new_ltEs13(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_compare15(@0, @0) new_primPlusNat0(Succ(x0), x1) new_compare27(x0, x1, app(app(ty_Either, x2), x3)) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_lt7(x0, x1, ty_Integer) new_ltEs13(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_pePe(True, x0) new_esEs6(x0, x1, app(ty_[], x2)) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_compare6(Nothing, Just(x0), x1) new_lt6(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Char) new_esEs6(x0, x1, ty_Ordering) new_esEs32(x0, x1, ty_Double) new_esEs28(x0, x1, ty_Char) new_esEs17(Left(x0), Right(x1), x2, x3) new_esEs17(Right(x0), Left(x1), x2, x3) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs17(Right(x0), Right(x1), x2, ty_Bool) new_esEs21(Just(x0), Just(x1), ty_Int) new_ltEs19(x0, x1, app(ty_[], x2)) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, ty_Bool) new_ltEs13(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs23(x0, x1, ty_Double) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_ltEs23(x0, x1, ty_Ordering) new_primCmpNat0(Zero, Succ(x0)) new_compare5(:(x0, x1), :(x2, x3), x4) new_ltEs10(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs26(x0, x1, ty_Double) new_compare27(x0, x1, app(ty_Ratio, x2)) new_esEs37(x0, x1, ty_Char) new_esEs9(x0, x1, ty_Char) new_lt6(x0, x1, ty_Int) new_ltEs10(Just(x0), Just(x1), ty_Char) new_esEs31(x0, x1, ty_Float) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs10(x0, x1, app(ty_[], x2)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs26(x0, x1, ty_Ordering) new_esEs21(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs32(x0, x1, ty_Int) new_lt20(x0, x1, ty_Integer) new_compare11(x0, x1, x2, x3, False, x4, x5) new_lt23(x0, x1, ty_@0) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_compare27(x0, x1, app(ty_Maybe, x2)) new_esEs36(x0, x1, ty_@0) new_esEs8(x0, x1, ty_Char) new_ltEs10(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs21(Just(x0), Just(x1), ty_Ordering) new_ltEs14(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_compare18(EQ, GT) new_compare18(GT, EQ) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs14(Integer(x0), Integer(x1)) new_lt21(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, ty_@0) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_ltEs16(GT, GT) new_lt6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_ltEs13(Right(x0), Right(x1), x2, ty_Integer) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(Right(x0), Right(x1), x2, ty_@0) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_compare27(x0, x1, ty_Char) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, ty_Double) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, ty_@0) new_ltEs16(LT, EQ) new_ltEs16(EQ, LT) new_lt20(x0, x1, ty_Bool) new_lt7(x0, x1, ty_Double) new_esEs4(x0, x1, ty_Char) new_lt6(x0, x1, ty_Float) new_esEs37(x0, x1, app(ty_[], x2)) new_ltEs24(x0, x1, ty_Float) new_esEs17(Right(x0), Right(x1), x2, ty_Integer) new_ltEs19(x0, x1, ty_Char) new_esEs32(x0, x1, ty_Float) new_lt7(x0, x1, app(ty_Maybe, x2)) new_esEs17(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs23(x0, x1, app(ty_[], x2)) new_primCompAux1(x0, x1, x2, x3) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, ty_Int) new_lt22(x0, x1, ty_@0) new_compare31(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs34(x0, x1, ty_Integer) new_esEs21(Just(x0), Just(x1), ty_Char) new_esEs29(x0, x1, ty_@0) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_compare27(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, ty_Ordering) new_compare27(x0, x1, ty_Bool) new_compare24(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_ltEs19(x0, x1, ty_Int) new_ltEs5(x0, x1, ty_Bool) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs28(x0, x1, ty_Integer) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs10(Just(x0), Just(x1), ty_Ordering) new_compare5([], [], x0) new_compare10(x0, x1, x2, x3, False, x4, x5, x6) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_esEs9(x0, x1, ty_Bool) new_ltEs10(Just(x0), Just(x1), ty_Bool) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, ty_@0) new_ltEs13(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_ltEs19(x0, x1, ty_Ordering) new_primMulNat0(Succ(x0), Succ(x1)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_compare19(x0, x1, True, x2) new_ltEs13(Left(x0), Left(x1), ty_@0, x2) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_lt5(x0, x1) new_ltEs22(x0, x1, ty_@0) new_ltEs13(Left(x0), Left(x1), ty_Double, x2) new_ltEs20(x0, x1, ty_Double) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_compare27(x0, x1, ty_Ordering) new_ltEs19(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_@0) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, app(ty_[], x2)) new_esEs34(x0, x1, ty_Int) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat1(Succ(x0), Zero) new_ltEs5(x0, x1, ty_Char) new_esEs37(x0, x1, ty_Bool) new_primCmpNat0(Succ(x0), Succ(x1)) new_compare5([], :(x0, x1), x2) new_esEs4(x0, x1, ty_Integer) new_esEs37(x0, x1, ty_Float) new_ltEs19(x0, x1, ty_Integer) new_esEs30(x0, x1, ty_Bool) new_esEs11(x0, x1, ty_Double) new_primCompAux0(x0, LT) new_ltEs13(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs30(x0, x1, ty_Float) new_esEs9(x0, x1, ty_Float) new_esEs6(x0, x1, ty_Double) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(x0, x1, ty_@0) new_esEs4(x0, x1, ty_Bool) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs28(x0, x1, ty_Ordering) new_esEs29(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_Float) new_lt16(x0, x1, x2, x3, x4) new_compare210(x0, x1, True, x2) new_ltEs9(x0, x1) new_esEs16(:(x0, x1), [], x2) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare12(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_esEs30(x0, x1, ty_Char) new_esEs17(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_ltEs13(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_lt20(x0, x1, ty_Char) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_esEs17(Right(x0), Right(x1), x2, ty_Int) new_esEs23(x0, x1) new_ltEs22(x0, x1, ty_Double) new_esEs39(x0, x1, ty_@0) new_lt7(x0, x1, ty_@0) new_fsEs(x0) new_compare27(x0, x1, ty_Integer) new_esEs17(Left(x0), Left(x1), ty_Integer, x2) new_esEs17(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs17(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs11(False, True) new_compare26(x0, x1, x2, x3, False, x4, x5) new_ltEs11(True, False) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_lt23(x0, x1, ty_Double) new_ltEs23(x0, x1, ty_@0) new_compare211(x0, x1, True, x2, x3) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(x0, x1, ty_Float) new_esEs13(GT, GT) new_esEs7(x0, x1, app(ty_[], x2)) new_esEs13(LT, EQ) new_esEs13(EQ, LT) new_esEs37(x0, x1, ty_Int) new_esEs27(x0, x1, ty_Double) new_ltEs13(Left(x0), Right(x1), x2, x3) new_ltEs13(Right(x0), Left(x1), x2, x3) new_esEs30(x0, x1, ty_Int) new_ltEs10(Just(x0), Just(x1), ty_Integer) new_esEs17(Right(x0), Right(x1), x2, ty_Char) new_esEs11(x0, x1, ty_@0) new_ltEs17(x0, x1) new_lt21(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, ty_Int) new_esEs21(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_lt20(x0, x1, ty_Int) new_compare9(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, ty_@0) new_compare9(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare9(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs32(x0, x1, app(ty_[], x2)) new_lt23(x0, x1, ty_Ordering) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_ltEs5(x0, x1, ty_Ordering) new_compare25(x0, x1, False, x2, x3) new_ltEs8(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs13(EQ, EQ) new_lt18(x0, x1) new_esEs31(x0, x1, ty_@0) new_esEs10(x0, x1, ty_Ordering) new_ltEs16(EQ, EQ) new_esEs21(Just(x0), Just(x1), ty_Integer) new_lt6(x0, x1, app(ty_Maybe, x2)) new_compare14(x0, x1, True, x2, x3) new_esEs17(Right(x0), Right(x1), x2, ty_Float) new_compare18(LT, GT) new_compare18(GT, LT) new_ltEs13(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs21(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_ltEs5(x0, x1, ty_Double) new_esEs32(x0, x1, ty_Bool) new_primMulNat0(Zero, Zero) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_ltEs5(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Double) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt22(x0, x1, ty_Double) new_esEs11(x0, x1, ty_Char) new_ltEs7(x0, x1) new_compare110(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_compare9(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_esEs39(x0, x1, ty_Double) new_esEs5(x0, x1, ty_Float) new_compare7(Char(x0), Char(x1)) new_esEs4(x0, x1, app(ty_[], x2)) new_compare28(False, False) new_esEs4(x0, x1, ty_Float) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs13(Right(x0), Right(x1), x2, ty_Float) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, ty_Integer) new_esEs36(x0, x1, ty_Ordering) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_lt11(x0, x1, x2) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, ty_Float) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare8(Left(x0), Left(x1), x2, x3) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, ty_Char) new_lt6(x0, x1, app(app(ty_@2, x2), x3)) new_esEs27(x0, x1, ty_Integer) new_esEs32(x0, x1, ty_Integer) new_esEs28(x0, x1, ty_Float) new_esEs21(Just(x0), Just(x1), ty_Bool) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_lt12(x0, x1) new_esEs17(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_lt7(x0, x1, app(ty_[], x2)) new_sr(Integer(x0), Integer(x1)) new_ltEs15(x0, x1) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, ty_Bool) new_esEs7(x0, x1, ty_Double) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_esEs36(x0, x1, ty_Double) new_ltEs5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs17(Left(x0), Left(x1), ty_Bool, x2) new_ltEs21(x0, x1, ty_@0) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_esEs17(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs8(x0, x1, ty_Float) new_lt22(x0, x1, ty_Ordering) new_esEs35(x0, x1, ty_Double) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, ty_Integer) new_esEs21(Nothing, Just(x0), x1) new_primCompAux0(x0, EQ) new_compare10(x0, x1, x2, x3, True, x4, x5, x6) new_ltEs21(x0, x1, ty_Int) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_not(True) new_lt23(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, ty_Ordering) new_esEs31(x0, x1, ty_Integer) new_lt21(x0, x1, ty_Float) new_ltEs10(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs31(x0, x1, ty_Char) new_compare8(Right(x0), Left(x1), x2, x3) new_compare8(Left(x0), Right(x1), x2, x3) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs12(False, False) new_ltEs20(x0, x1, ty_Ordering) new_esEs17(Left(x0), Left(x1), ty_Int, x2) new_esEs30(x0, x1, ty_Ordering) new_compare17(:%(x0, x1), :%(x2, x3), ty_Integer) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_esEs35(x0, x1, app(ty_Maybe, x2)) new_ltEs10(Just(x0), Just(x1), ty_@0) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, ty_Int) new_esEs21(Just(x0), Just(x1), ty_@0) new_esEs10(x0, x1, ty_Char) new_compare29(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, ty_Integer) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs5(x0, x1, app(ty_Maybe, x2)) new_esEs17(Left(x0), Left(x1), ty_Char, x2) new_ltEs19(x0, x1, ty_Float) new_esEs32(x0, x1, ty_@0) new_compare28(True, False) new_compare28(False, True) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, ty_Char) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_compare111(x0, x1, False, x2, x3) new_compare31(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Just(x0), Just(x1), ty_Float) new_esEs38(x0, x1, ty_Double) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, ty_Bool) new_ltEs13(Left(x0), Left(x1), ty_Ordering, x2) new_esEs22(Double(x0, x1), Double(x2, x3)) new_esEs38(x0, x1, ty_Char) new_esEs6(x0, x1, ty_Integer) new_esEs31(x0, x1, ty_Bool) new_ltEs21(x0, x1, ty_Bool) new_ltEs16(LT, GT) new_ltEs16(GT, LT) new_lt6(x0, x1, app(ty_[], x2)) new_compare27(x0, x1, ty_@0) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt7(x0, x1, app(ty_Ratio, x2)) new_esEs37(x0, x1, ty_Ordering) new_lt23(x0, x1, app(ty_Ratio, x2)) new_esEs17(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs10(x0, x1, ty_@0) new_primCmpNat0(Succ(x0), Zero) new_esEs11(x0, x1, ty_Ordering) new_esEs17(Left(x0), Left(x1), ty_@0, x2) new_compare27(x0, x1, ty_Float) new_esEs8(x0, x1, ty_Bool) new_esEs15(Char(x0), Char(x1)) new_esEs10(x0, x1, ty_Int) new_esEs38(x0, x1, ty_Int) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs39(x0, x1, ty_Ordering) new_ltEs10(Just(x0), Just(x1), ty_Float) new_esEs26(x0, x1, ty_Integer) new_ltEs23(x0, x1, ty_Float) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs39(x0, x1, ty_Bool) new_esEs11(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs5(x0, x1, app(ty_[], x2)) new_lt4(x0, x1, x2) new_primEqNat0(Succ(x0), Zero) new_compare14(x0, x1, False, x2, x3) new_ltEs10(Just(x0), Just(x1), app(ty_[], x2)) new_esEs10(x0, x1, ty_Bool) new_esEs26(x0, x1, app(ty_[], x2)) new_compare25(x0, x1, True, x2, x3) new_esEs20(@2(x0, x1), @2(x2, x3), x4, x5) new_pePe(False, x0) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_esEs21(Just(x0), Nothing, x1) new_esEs11(x0, x1, ty_Integer) new_esEs17(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs13(Left(x0), Left(x1), ty_Char, x2) new_ltEs20(x0, x1, ty_Char) new_ltEs10(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs4(x0, x1, x2) new_ltEs22(x0, x1, ty_Char) new_esEs17(Right(x0), Right(x1), x2, ty_@0) new_ltEs13(Right(x0), Right(x1), x2, ty_Bool) new_primEqNat0(Zero, Succ(x0)) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, ty_Double) new_compare31(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare31(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs36(x0, x1, ty_Bool) new_ltEs13(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs29(x0, x1, ty_Integer) new_compare27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(Just(x0), Just(x1), app(ty_[], x2)) new_lt6(x0, x1, ty_Double) new_ltEs22(x0, x1, ty_Int) new_esEs32(x0, x1, ty_Ordering) new_esEs13(LT, GT) new_esEs13(GT, LT) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_lt23(x0, x1, ty_Bool) new_ltEs21(x0, x1, ty_Float) new_lt23(x0, x1, ty_Integer) new_ltEs22(x0, x1, ty_Ordering) new_ltEs19(x0, x1, ty_@0) new_esEs5(x0, x1, ty_Integer) new_compare18(EQ, EQ) new_esEs17(Left(x0), Left(x1), ty_Double, x2) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs21(Just(x0), Just(x1), ty_Double) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_compare110(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs38(x0, x1, app(ty_[], x2)) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_compare26(x0, x1, x2, x3, True, x4, x5) new_ltEs20(x0, x1, app(ty_[], x2)) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_esEs38(x0, x1, ty_Bool) new_esEs8(x0, x1, ty_@0) new_esEs4(x0, x1, ty_@0) new_esEs17(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_compare210(x0, x1, False, x2) new_esEs7(x0, x1, ty_Int) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_esEs35(x0, x1, ty_Int) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11(x0, x1, ty_Bool) new_esEs6(x0, x1, ty_Bool) new_esEs25(Float(x0, x1), Float(x2, x3)) new_lt10(x0, x1, x2, x3) new_esEs36(x0, x1, ty_Char) new_lt6(x0, x1, ty_Ordering) new_esEs5(x0, x1, ty_@0) new_compare27(x0, x1, app(ty_[], x2)) new_ltEs22(x0, x1, ty_Float) new_lt20(x0, x1, app(ty_[], x2)) new_esEs7(x0, x1, ty_Char) new_esEs17(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs31(x0, x1, ty_Ordering) new_esEs18(@0, @0) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, app(ty_[], x2)) new_ltEs11(False, False) new_compare12(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_lt15(x0, x1, x2, x3) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs35(x0, x1, ty_Char) new_esEs26(x0, x1, ty_Char) new_esEs21(Just(x0), Just(x1), app(ty_Maybe, x2)) new_ltEs24(x0, x1, ty_Integer) new_esEs8(x0, x1, ty_Ordering) new_esEs35(x0, x1, ty_Bool) new_primEqNat0(Zero, Zero) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs27(x0, x1, ty_Bool) new_esEs37(x0, x1, ty_@0) new_asAs(False, x0) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_lt7(x0, x1, ty_Int) new_esEs35(x0, x1, ty_Ordering) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, ty_Bool) new_esEs12(True, True) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare6(Just(x0), Just(x1), x2) new_not(False) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs36(x0, x1, ty_Int) new_esEs9(x0, x1, ty_Double) new_esEs13(EQ, GT) new_esEs13(GT, EQ) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, ty_Float) new_esEs37(x0, x1, ty_Double) new_lt22(x0, x1, ty_Integer) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_lt22(x0, x1, ty_Int) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_esEs27(x0, x1, app(ty_[], x2)) new_lt7(x0, x1, ty_Char) new_esEs11(x0, x1, ty_Float) new_esEs7(x0, x1, ty_Bool) new_compare17(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs39(x0, x1, ty_Char) new_esEs38(x0, x1, ty_Integer) new_ltEs13(Left(x0), Left(x1), ty_Bool, x2) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_ltEs23(x0, x1, ty_Char) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs7(x0, x1, ty_Ordering) new_esEs26(x0, x1, ty_Int) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs24(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_primEqNat0(Succ(x0), Succ(x1)) new_ltEs13(Left(x0), Left(x1), ty_Float, x2) new_compare111(x0, x1, True, x2, x3) new_lt22(x0, x1, ty_Char) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, ty_Float) new_lt20(x0, x1, ty_Double) new_esEs10(x0, x1, ty_Integer) new_ltEs13(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_ltEs24(x0, x1, ty_Ordering) new_esEs6(x0, x1, ty_Char) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, ty_Bool) new_ltEs23(x0, x1, ty_Int) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_ltEs10(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, ty_Int) new_ltEs22(x0, x1, ty_Bool) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, ty_@0) new_lt22(x0, x1, ty_Bool) new_esEs39(x0, x1, ty_Int) new_ltEs5(x0, x1, ty_@0) new_lt21(x0, x1, ty_Integer) new_lt23(x0, x1, ty_Int) new_esEs35(x0, x1, ty_Integer) new_esEs6(x0, x1, ty_Float) new_compare6(Nothing, Nothing, x0) new_esEs39(x0, x1, app(ty_[], x2)) new_esEs7(x0, x1, ty_Integer) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, ty_@0) new_ltEs5(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, ty_Double) new_esEs30(x0, x1, app(ty_[], x2)) new_ltEs13(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs13(Left(x0), Left(x1), ty_Int, x2) new_esEs27(x0, x1, ty_Char) new_esEs9(x0, x1, ty_@0) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, ty_Int) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_lt23(x0, x1, ty_Char) new_esEs38(x0, x1, ty_Ordering) new_compare24(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs11(x0, x1, ty_Int) new_lt22(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs17(Right(x0), Right(x1), x2, ty_Double) new_lt23(x0, x1, app(ty_[], x2)) new_esEs17(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt7(x0, x1, ty_Float) new_primCmpNat0(Zero, Zero) new_lt21(x0, x1, ty_Ordering) new_ltEs20(x0, x1, ty_Int) new_lt14(x0, x1) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_esEs26(x0, x1, ty_Float) new_primMulInt(Neg(x0), Neg(x1)) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (22) 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_lt0(vwx64, vwx66, dg) -> new_compare(vwx64, vwx66, dg) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_compare1(Just(vwx300), Just(vwx400), bc) -> new_compare20(vwx300, vwx400, new_esEs6(vwx300, vwx400, bc), bc) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_primCompAux(Just(vwx300), Just(vwx400), vwx5, app(ty_Maybe, bc)) -> new_compare20(vwx300, vwx400, new_esEs6(vwx300, vwx400, bc), bc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 *new_ltEs3(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), bee, bdd, app(app(app(ty_@3, bge), bgf), bgg)) -> new_ltEs3(vwx262, vwx272, bge, bgf, bgg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_lt(vwx64, vwx66, dd, de) -> new_compare0(vwx64, vwx66, dd, de) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4 *new_lt1(vwx64, vwx66, dh) -> new_compare1(vwx64, vwx66, dh) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_compare21(vwx33, vwx34, False, app(app(app(ty_@3, bhg), bhh), caa), bhb) -> new_ltEs3(vwx33, vwx34, bhg, bhh, caa) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs1(Just(vwx260), Just(vwx270), app(app(app(ty_@3, bac), bad), bae)) -> new_ltEs3(vwx260, vwx270, bac, bad, bae) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_lt3(vwx64, vwx66, ec, ed, ee) -> new_compare4(vwx64, vwx66, ec, ed, ee) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5 *new_ltEs3(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), bee, bdd, app(app(ty_@2, bfg), bfh)) -> new_ltEs(vwx262, vwx272, bfg, bfh) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare21(vwx33, vwx34, False, app(app(ty_@2, bgh), bha), bhb) -> new_ltEs(vwx33, vwx34, bgh, bha) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_ltEs1(Just(vwx260), Just(vwx270), app(app(ty_@2, he), hf)) -> new_ltEs(vwx260, vwx270, he, hf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs0(vwx26, vwx27, hd) -> new_compare(vwx26, vwx27, hd) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_ltEs3(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), bee, bdd, app(ty_Maybe, bgb)) -> new_ltEs1(vwx262, vwx272, bgb) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare21(vwx33, vwx34, False, app(ty_Maybe, bhd), bhb) -> new_ltEs1(vwx33, vwx34, bhd) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_ltEs1(Just(vwx260), Just(vwx270), app(ty_Maybe, hh)) -> new_ltEs1(vwx260, vwx270, hh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs(@2(vwx260, vwx261), @2(vwx270, vwx271), app(ty_Maybe, fb), eh) -> new_lt1(vwx260, vwx270, fb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs(@2(vwx260, vwx261), @2(vwx270, vwx271), ga, app(app(app(ty_@3, gh), ha), hb)) -> new_ltEs3(vwx261, vwx271, gh, ha, hb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs(@2(vwx260, vwx261), @2(vwx270, vwx271), ga, app(app(ty_@2, gb), gc)) -> new_ltEs(vwx261, vwx271, gb, gc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs(@2(vwx260, vwx261), @2(vwx270, vwx271), ga, app(ty_Maybe, ge)) -> new_ltEs1(vwx261, vwx271, ge) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare23(vwx51, vwx52, vwx53, vwx54, vwx55, vwx56, False, cbd, ccg, app(app(app(ty_@3, cdf), cdg), cdh)) -> new_ltEs3(vwx53, vwx56, cdf, cdg, cdh) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4, 10 > 5 *new_compare23(vwx51, vwx52, vwx53, vwx54, vwx55, vwx56, False, cbd, ccg, app(app(ty_@2, cch), cda)) -> new_ltEs(vwx53, vwx56, cch, cda) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4 *new_compare23(vwx51, vwx52, vwx53, vwx54, vwx55, vwx56, False, cbd, ccg, app(ty_Maybe, cdc)) -> new_ltEs1(vwx53, vwx56, cdc) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3 *new_compare(:(vwx30, vwx31), :(vwx40, vwx41), hc) -> new_primCompAux(vwx30, vwx40, new_compare5(vwx31, vwx41, hc), hc) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_ltEs3(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), bee, bdd, app(app(ty_Either, bgc), bgd)) -> new_ltEs2(vwx262, vwx272, bgc, bgd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare21(vwx33, vwx34, False, app(app(ty_Either, bhe), bhf), bhb) -> new_ltEs2(vwx33, vwx34, bhe, bhf) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_compare21(vwx33, vwx34, False, app(ty_[], bhc), bhb) -> new_ltEs0(vwx33, vwx34, bhc) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_ltEs1(Just(vwx260), Just(vwx270), app(app(ty_Either, baa), bab)) -> new_ltEs2(vwx260, vwx270, baa, bab) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs1(Just(vwx260), Just(vwx270), app(ty_[], hg)) -> new_ltEs0(vwx260, vwx270, hg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs(@2(vwx260, vwx261), @2(vwx270, vwx271), ga, app(app(ty_Either, gf), gg)) -> new_ltEs2(vwx261, vwx271, gf, gg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare23(vwx51, vwx52, vwx53, vwx54, vwx55, vwx56, False, cbd, ccg, app(app(ty_Either, cdd), cde)) -> new_ltEs2(vwx53, vwx56, cdd, cde) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4 *new_primCompAux(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), vwx5, app(app(app(ty_@3, bf), bg), bh)) -> new_compare23(vwx300, vwx301, vwx302, vwx400, vwx401, vwx402, new_asAs(new_esEs9(vwx300, vwx400, bf), new_asAs(new_esEs10(vwx301, vwx401, bg), new_esEs11(vwx302, vwx402, bh))), bf, bg, bh) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 2 > 4, 2 > 5, 2 > 6, 4 > 8, 4 > 9, 4 > 10 *new_compare4(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bf, bg, bh) -> new_compare23(vwx300, vwx301, vwx302, vwx400, vwx401, vwx402, new_asAs(new_esEs9(vwx300, vwx400, bf), new_asAs(new_esEs10(vwx301, vwx401, bg), new_esEs11(vwx302, vwx402, bh))), bf, bg, bh) 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_primCompAux(Left(vwx300), Left(vwx400), vwx5, app(app(ty_Either, bd), be)) -> new_compare21(vwx300, vwx400, new_esEs7(vwx300, vwx400, bd), bd, be) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 *new_compare3(Left(vwx300), Left(vwx400), bd, be) -> new_compare21(vwx300, vwx400, new_esEs7(vwx300, vwx400, bd), bd, be) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 *new_primCompAux(@2(vwx300, vwx301), @2(vwx400, vwx401), vwx5, app(app(ty_@2, h), ba)) -> new_compare2(vwx300, vwx301, vwx400, vwx401, new_asAs(new_esEs4(vwx300, vwx400, h), new_esEs5(vwx301, vwx401, ba)), h, ba) The graph contains the following edges 1 > 1, 1 > 2, 2 > 3, 2 > 4, 4 > 6, 4 > 7 *new_compare0(@2(vwx300, vwx301), @2(vwx400, vwx401), h, ba) -> new_compare2(vwx300, vwx301, vwx400, vwx401, new_asAs(new_esEs4(vwx300, vwx400, h), new_esEs5(vwx301, vwx401, ba)), h, ba) The graph contains the following edges 1 > 1, 1 > 2, 2 > 3, 2 > 4, 3 >= 6, 4 >= 7 *new_primCompAux(Right(vwx300), Right(vwx400), vwx5, app(app(ty_Either, bd), be)) -> new_compare22(vwx300, vwx400, new_esEs8(vwx300, vwx400, be), bd, be) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 *new_compare3(Right(vwx300), Right(vwx400), bd, be) -> new_compare22(vwx300, vwx400, new_esEs8(vwx300, vwx400, be), bd, be) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 *new_primCompAux(vwx30, vwx40, vwx5, app(ty_[], bb)) -> new_compare(vwx30, vwx40, bb) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_lt2(vwx64, vwx66, ea, eb) -> new_compare3(vwx64, vwx66, ea, eb) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4 *new_compare2(vwx64, vwx65, vwx66, vwx67, False, app(app(ty_Either, ea), eb), df) -> new_compare3(vwx64, vwx66, ea, eb) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4 *new_compare(:(vwx30, vwx31), :(vwx40, vwx41), hc) -> new_compare(vwx31, vwx41, hc) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_compare20(vwx26, vwx27, False, app(ty_[], hd)) -> new_compare(vwx26, vwx27, hd) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_compare2(vwx64, vwx65, vwx66, vwx67, False, app(ty_[], dg), df) -> new_compare(vwx64, vwx66, dg) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3 *new_compare2(vwx64, vwx65, vwx66, vwx67, False, ca, app(app(app(ty_@3, da), db), dc)) -> new_ltEs3(vwx65, vwx67, da, db, dc) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4, 7 > 5 *new_compare22(vwx40, vwx41, False, cab, app(app(app(ty_@3, cba), cbb), cbc)) -> new_ltEs3(vwx40, vwx41, cba, cbb, cbc) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4, 5 > 5 *new_compare2(vwx64, vwx65, vwx66, vwx67, False, ca, app(app(ty_@2, cb), cc)) -> new_ltEs(vwx65, vwx67, cb, cc) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4 *new_compare22(vwx40, vwx41, False, cab, app(app(ty_@2, cac), cad)) -> new_ltEs(vwx40, vwx41, cac, cad) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4 *new_compare2(vwx64, vwx65, vwx66, vwx67, False, ca, app(ty_Maybe, ce)) -> new_ltEs1(vwx65, vwx67, ce) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3 *new_compare22(vwx40, vwx41, False, cab, app(ty_Maybe, caf)) -> new_ltEs1(vwx40, vwx41, caf) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3 *new_compare2(vwx64, vwx65, vwx66, vwx67, False, ca, app(app(ty_Either, cf), cg)) -> new_ltEs2(vwx65, vwx67, cf, cg) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4 *new_compare22(vwx40, vwx41, False, cab, app(app(ty_Either, cag), cah)) -> new_ltEs2(vwx40, vwx41, cag, cah) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4 *new_compare2(vwx64, vwx65, vwx66, vwx67, False, app(app(ty_@2, dd), de), df) -> new_compare0(vwx64, vwx66, dd, de) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4 *new_compare22(vwx40, vwx41, False, cab, app(ty_[], cae)) -> new_ltEs0(vwx40, vwx41, cae) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3 *new_ltEs3(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), bee, bdd, app(ty_[], bga)) -> new_ltEs0(vwx262, vwx272, bga) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_ltEs(@2(vwx260, vwx261), @2(vwx270, vwx271), ga, app(ty_[], gd)) -> new_ltEs0(vwx261, vwx271, gd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare23(vwx51, vwx52, vwx53, vwx54, vwx55, vwx56, False, cbd, ccg, app(ty_[], cdb)) -> new_ltEs0(vwx53, vwx56, cdb) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3 *new_compare2(vwx64, vwx65, vwx66, vwx67, False, ca, app(ty_[], cd)) -> new_ltEs0(vwx65, vwx67, cd) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3 *new_ltEs(@2(vwx260, vwx261), @2(vwx270, vwx271), app(ty_[], fa), eh) -> new_lt0(vwx260, vwx270, fa) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_compare2(vwx64, vwx65, vwx66, vwx67, False, app(app(app(ty_@3, ec), ed), ee), df) -> new_compare4(vwx64, vwx66, ec, ed, ee) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4, 6 > 5 *new_compare2(vwx64, vwx65, vwx66, vwx67, False, app(ty_Maybe, dh), df) -> new_compare1(vwx64, vwx66, dh) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3 *new_ltEs(@2(vwx260, vwx261), @2(vwx270, vwx271), app(app(ty_Either, fc), fd), eh) -> new_lt2(vwx260, vwx270, fc, fd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs(@2(vwx260, vwx261), @2(vwx270, vwx271), app(app(ty_@2, ef), eg), eh) -> new_lt(vwx260, vwx270, ef, eg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs(@2(vwx260, vwx261), @2(vwx270, vwx271), app(app(app(ty_@3, ff), fg), fh), eh) -> new_lt3(vwx260, vwx270, ff, fg, fh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs3(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), app(ty_Maybe, bdg), bdd, bde) -> new_lt1(vwx260, vwx270, bdg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs3(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), bee, app(ty_Maybe, bfa), bde) -> new_lt1(vwx261, vwx271, bfa) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs3(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), bee, app(ty_[], beh), bde) -> new_lt0(vwx261, vwx271, beh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs3(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), app(ty_[], bdf), bdd, bde) -> new_lt0(vwx260, vwx270, bdf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs3(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), app(app(ty_Either, bdh), bea), bdd, bde) -> new_lt2(vwx260, vwx270, bdh, bea) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs3(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), bee, app(app(ty_Either, bfb), bfc), bde) -> new_lt2(vwx261, vwx271, bfb, bfc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs3(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), app(app(ty_@2, bdb), bdc), bdd, bde) -> new_lt(vwx260, vwx270, bdb, bdc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs3(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), bee, app(app(ty_@2, bef), beg), bde) -> new_lt(vwx261, vwx271, bef, beg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs3(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), app(app(app(ty_@3, beb), bec), bed), bdd, bde) -> new_lt3(vwx260, vwx270, beb, bec, bed) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs3(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), bee, app(app(app(ty_@3, bfd), bfe), bff), bde) -> new_lt3(vwx261, vwx271, bfd, bfe, bff) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs2(Right(vwx260), Right(vwx270), bbh, app(app(app(ty_@3, bcg), bch), bda)) -> new_ltEs3(vwx260, vwx270, bcg, bch, bda) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs2(Left(vwx260), Left(vwx270), app(app(app(ty_@3, bbe), bbf), bbg), bah) -> new_ltEs3(vwx260, vwx270, bbe, bbf, bbg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs2(Right(vwx260), Right(vwx270), bbh, app(app(ty_@2, bca), bcb)) -> new_ltEs(vwx260, vwx270, bca, bcb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs2(Left(vwx260), Left(vwx270), app(app(ty_@2, baf), bag), bah) -> new_ltEs(vwx260, vwx270, baf, bag) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs2(Right(vwx260), Right(vwx270), bbh, app(ty_Maybe, bcd)) -> new_ltEs1(vwx260, vwx270, bcd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs2(Left(vwx260), Left(vwx270), app(ty_Maybe, bbb), bah) -> new_ltEs1(vwx260, vwx270, bbb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs2(Right(vwx260), Right(vwx270), bbh, app(app(ty_Either, bce), bcf)) -> new_ltEs2(vwx260, vwx270, bce, bcf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs2(Left(vwx260), Left(vwx270), app(app(ty_Either, bbc), bbd), bah) -> new_ltEs2(vwx260, vwx270, bbc, bbd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs2(Left(vwx260), Left(vwx270), app(ty_[], bba), bah) -> new_ltEs0(vwx260, vwx270, bba) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs2(Right(vwx260), Right(vwx270), bbh, app(ty_[], bcc)) -> new_ltEs0(vwx260, vwx270, bcc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare23(vwx51, vwx52, vwx53, vwx54, vwx55, vwx56, False, app(ty_Maybe, ced), ccg, cbg) -> new_lt1(vwx51, vwx54, ced) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3 *new_compare23(vwx51, vwx52, vwx53, vwx54, vwx55, vwx56, False, cbd, app(ty_Maybe, cca), cbg) -> new_lt1(vwx52, vwx55, cca) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3 *new_compare20(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), False, app(app(app(ty_@3, app(ty_Maybe, bdg)), bdd), bde)) -> new_lt1(vwx260, vwx270, bdg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), False, app(app(app(ty_@3, bee), app(ty_Maybe, bfa)), bde)) -> new_lt1(vwx261, vwx271, bfa) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@2(vwx260, vwx261), @2(vwx270, vwx271), False, app(app(ty_@2, app(ty_Maybe, fb)), eh)) -> new_lt1(vwx260, vwx270, fb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Left(vwx260), Left(vwx270), False, app(app(ty_Either, app(app(app(ty_@3, bbe), bbf), bbg)), bah)) -> new_ltEs3(vwx260, vwx270, bbe, bbf, bbg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(Right(vwx260), Right(vwx270), False, app(app(ty_Either, bbh), app(app(app(ty_@3, bcg), bch), bda))) -> new_ltEs3(vwx260, vwx270, bcg, bch, bda) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), False, app(app(app(ty_@3, bee), bdd), app(app(app(ty_@3, bge), bgf), bgg))) -> new_ltEs3(vwx262, vwx272, bge, bgf, bgg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(@2(vwx260, vwx261), @2(vwx270, vwx271), False, app(app(ty_@2, ga), app(app(app(ty_@3, gh), ha), hb))) -> new_ltEs3(vwx261, vwx271, gh, ha, hb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(Just(vwx260), Just(vwx270), False, app(ty_Maybe, app(app(app(ty_@3, bac), bad), bae))) -> new_ltEs3(vwx260, vwx270, bac, bad, bae) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(Right(vwx260), Right(vwx270), False, app(app(ty_Either, bbh), app(app(ty_@2, bca), bcb))) -> new_ltEs(vwx260, vwx270, bca, bcb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Left(vwx260), Left(vwx270), False, app(app(ty_Either, app(app(ty_@2, baf), bag)), bah)) -> new_ltEs(vwx260, vwx270, baf, bag) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), False, app(app(app(ty_@3, bee), bdd), app(app(ty_@2, bfg), bfh))) -> new_ltEs(vwx262, vwx272, bfg, bfh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Just(vwx260), Just(vwx270), False, app(ty_Maybe, app(app(ty_@2, he), hf))) -> new_ltEs(vwx260, vwx270, he, hf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@2(vwx260, vwx261), @2(vwx270, vwx271), False, app(app(ty_@2, ga), app(app(ty_@2, gb), gc))) -> new_ltEs(vwx261, vwx271, gb, gc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@2(vwx260, vwx261), @2(vwx270, vwx271), False, app(app(ty_@2, ga), app(ty_Maybe, ge))) -> new_ltEs1(vwx261, vwx271, ge) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Right(vwx260), Right(vwx270), False, app(app(ty_Either, bbh), app(ty_Maybe, bcd))) -> new_ltEs1(vwx260, vwx270, bcd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), False, app(app(app(ty_@3, bee), bdd), app(ty_Maybe, bgb))) -> new_ltEs1(vwx262, vwx272, bgb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Just(vwx260), Just(vwx270), False, app(ty_Maybe, app(ty_Maybe, hh))) -> new_ltEs1(vwx260, vwx270, hh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Left(vwx260), Left(vwx270), False, app(app(ty_Either, app(ty_Maybe, bbb)), bah)) -> new_ltEs1(vwx260, vwx270, bbb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare23(vwx51, vwx52, vwx53, vwx54, vwx55, vwx56, False, cbd, app(ty_[], cbh), cbg) -> new_lt0(vwx52, vwx55, cbh) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3 *new_compare23(vwx51, vwx52, vwx53, vwx54, vwx55, vwx56, False, app(ty_[], cec), ccg, cbg) -> new_lt0(vwx51, vwx54, cec) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3 *new_compare23(vwx51, vwx52, vwx53, vwx54, vwx55, vwx56, False, app(app(ty_Either, cee), cef), ccg, cbg) -> new_lt2(vwx51, vwx54, cee, cef) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4 *new_compare23(vwx51, vwx52, vwx53, vwx54, vwx55, vwx56, False, cbd, app(app(ty_Either, ccb), ccc), cbg) -> new_lt2(vwx52, vwx55, ccb, ccc) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4 *new_compare23(vwx51, vwx52, vwx53, vwx54, vwx55, vwx56, False, app(app(ty_@2, cea), ceb), ccg, cbg) -> new_lt(vwx51, vwx54, cea, ceb) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4 *new_compare23(vwx51, vwx52, vwx53, vwx54, vwx55, vwx56, False, cbd, app(app(ty_@2, cbe), cbf), cbg) -> new_lt(vwx52, vwx55, cbe, cbf) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4 *new_compare23(vwx51, vwx52, vwx53, vwx54, vwx55, vwx56, False, app(app(app(ty_@3, ceg), ceh), cfa), ccg, cbg) -> new_lt3(vwx51, vwx54, ceg, ceh, cfa) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4, 8 > 5 *new_compare23(vwx51, vwx52, vwx53, vwx54, vwx55, vwx56, False, cbd, app(app(app(ty_@3, ccd), cce), ccf), cbg) -> new_lt3(vwx52, vwx55, ccd, cce, ccf) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4, 9 > 5 *new_compare20(Right(vwx260), Right(vwx270), False, app(app(ty_Either, bbh), app(app(ty_Either, bce), bcf))) -> new_ltEs2(vwx260, vwx270, bce, bcf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@2(vwx260, vwx261), @2(vwx270, vwx271), False, app(app(ty_@2, ga), app(app(ty_Either, gf), gg))) -> new_ltEs2(vwx261, vwx271, gf, gg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), False, app(app(app(ty_@3, bee), bdd), app(app(ty_Either, bgc), bgd))) -> new_ltEs2(vwx262, vwx272, bgc, bgd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Just(vwx260), Just(vwx270), False, app(ty_Maybe, app(app(ty_Either, baa), bab))) -> new_ltEs2(vwx260, vwx270, baa, bab) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Left(vwx260), Left(vwx270), False, app(app(ty_Either, app(app(ty_Either, bbc), bbd)), bah)) -> new_ltEs2(vwx260, vwx270, bbc, bbd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Right(vwx260), Right(vwx270), False, app(app(ty_Either, bbh), app(ty_[], bcc))) -> new_ltEs0(vwx260, vwx270, bcc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), False, app(app(app(ty_@3, bee), bdd), app(ty_[], bga))) -> new_ltEs0(vwx262, vwx272, bga) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Left(vwx260), Left(vwx270), False, app(app(ty_Either, app(ty_[], bba)), bah)) -> new_ltEs0(vwx260, vwx270, bba) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Just(vwx260), Just(vwx270), False, app(ty_Maybe, app(ty_[], hg))) -> new_ltEs0(vwx260, vwx270, hg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@2(vwx260, vwx261), @2(vwx270, vwx271), False, app(app(ty_@2, ga), app(ty_[], gd))) -> new_ltEs0(vwx261, vwx271, gd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@2(vwx260, vwx261), @2(vwx270, vwx271), False, app(app(ty_@2, app(ty_[], fa)), eh)) -> new_lt0(vwx260, vwx270, fa) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), False, app(app(app(ty_@3, app(ty_[], bdf)), bdd), bde)) -> new_lt0(vwx260, vwx270, bdf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), False, app(app(app(ty_@3, bee), app(ty_[], beh)), bde)) -> new_lt0(vwx261, vwx271, beh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), False, app(app(app(ty_@3, app(app(ty_Either, bdh), bea)), bdd), bde)) -> new_lt2(vwx260, vwx270, bdh, bea) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@2(vwx260, vwx261), @2(vwx270, vwx271), False, app(app(ty_@2, app(app(ty_Either, fc), fd)), eh)) -> new_lt2(vwx260, vwx270, fc, fd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), False, app(app(app(ty_@3, bee), app(app(ty_Either, bfb), bfc)), bde)) -> new_lt2(vwx261, vwx271, bfb, bfc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@2(vwx260, vwx261), @2(vwx270, vwx271), False, app(app(ty_@2, app(app(ty_@2, ef), eg)), eh)) -> new_lt(vwx260, vwx270, ef, eg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), False, app(app(app(ty_@3, app(app(ty_@2, bdb), bdc)), bdd), bde)) -> new_lt(vwx260, vwx270, bdb, bdc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), False, app(app(app(ty_@3, bee), app(app(ty_@2, bef), beg)), bde)) -> new_lt(vwx261, vwx271, bef, beg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), False, app(app(app(ty_@3, app(app(app(ty_@3, beb), bec), bed)), bdd), bde)) -> new_lt3(vwx260, vwx270, beb, bec, bed) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(@2(vwx260, vwx261), @2(vwx270, vwx271), False, app(app(ty_@2, app(app(app(ty_@3, ff), fg), fh)), eh)) -> new_lt3(vwx260, vwx270, ff, fg, fh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), False, app(app(app(ty_@3, bee), app(app(app(ty_@3, bfd), bfe), bff)), bde)) -> new_lt3(vwx261, vwx271, bfd, bfe, bff) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 ---------------------------------------- (23) YES ---------------------------------------- (24) Obligation: Q DP problem: The TRS P consists of the following rules: new_primMulNat(Succ(vwx40000), Succ(vwx30100)) -> new_primMulNat(vwx40000, Succ(vwx30100)) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (25) 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(vwx40000), Succ(vwx30100)) -> new_primMulNat(vwx40000, Succ(vwx30100)) The graph contains the following edges 1 > 1, 2 >= 2 ---------------------------------------- (26) YES ---------------------------------------- (27) Obligation: Q DP problem: The TRS P consists of the following rules: new_primEqNat(Succ(vwx30000), Succ(vwx40000)) -> new_primEqNat(vwx30000, vwx40000) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (28) 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(vwx30000), Succ(vwx40000)) -> new_primEqNat(vwx30000, vwx40000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (29) YES ---------------------------------------- (30) Obligation: Q DP problem: The TRS P consists of the following rules: new_primPlusNat(Succ(vwx14400), Succ(vwx301000)) -> new_primPlusNat(vwx14400, vwx301000) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (31) 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(vwx14400), Succ(vwx301000)) -> new_primPlusNat(vwx14400, vwx301000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (32) YES