/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, 0 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) DependencyGraphProof [EQUIVALENT, 0 ms] (20) QDP (21) QDPSizeChangeProof [EQUIVALENT, 296 ms] (22) YES (23) QDP (24) QDPSizeChangeProof [EQUIVALENT, 0 ms] (25) YES (26) QDP (27) QDPSizeChangeProof [EQUIVALENT, 0 ms] (28) YES (29) QDP (30) QDPSizeChangeProof [EQUIVALENT, 0 ms] (31) YES (32) QDP (33) QDPSizeChangeProof [EQUIVALENT, 0 ms] (34) YES (35) QDP (36) QDPSizeChangeProof [EQUIVALENT, 0 ms] (37) YES ---------------------------------------- (0) Obligation: mainModule Main module Maybe where { import qualified List; import qualified Main; import qualified Prelude; } module List where { import qualified Main; import qualified Maybe; import qualified Prelude; insert :: Ord a => a -> [a] -> [a]; insert e ls = insertBy compare e ls; insertBy :: (a -> a -> Ordering) -> a -> [a] -> [a]; insertBy _ x [] = x : []; insertBy cmp x ys@(y : ys') = case cmp x y of { GT-> y : insertBy cmp x ys'; _-> x : ys; } ; } module Main where { import qualified List; import qualified Maybe; 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; " The following Case expression "case cmp x y of { GT -> y : insertBy cmp x ys'; _ -> x : ys} " is transformed to "insertBy0 y cmp x ys' ys GT = y : insertBy cmp x ys'; insertBy0 y cmp x ys' ys _ = x : ys; " ---------------------------------------- (2) Obligation: mainModule Main module Maybe where { import qualified List; import qualified Main; import qualified Prelude; } module List where { import qualified Main; import qualified Maybe; import qualified Prelude; insert :: Ord a => a -> [a] -> [a]; insert e ls = insertBy compare e ls; insertBy :: (a -> a -> Ordering) -> a -> [a] -> [a]; insertBy _ x [] = x : []; insertBy cmp x ys@(y : ys') = insertBy0 y cmp x ys' ys (cmp x y); insertBy0 y cmp x ys' ys GT = y : insertBy cmp x ys'; insertBy0 y cmp x ys' ys _ = x : ys; } module Main where { import qualified List; import qualified Maybe; 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 Maybe where { import qualified List; import qualified Main; import qualified Prelude; } module List where { import qualified Main; import qualified Maybe; import qualified Prelude; insert :: Ord a => a -> [a] -> [a]; insert e ls = insertBy compare e ls; insertBy :: (a -> a -> Ordering) -> a -> [a] -> [a]; insertBy _ x [] = x : []; insertBy cmp x ys@(y : ys') = insertBy0 y cmp x ys' ys (cmp x y); insertBy0 y cmp x ys' ys GT = y : insertBy cmp x ys'; insertBy0 y cmp x ys' ys _ = x : ys; } module Main where { import qualified List; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (5) BR (EQUIVALENT) Replaced joker patterns by fresh variables and removed binding patterns. Binding Reductions: The bind variable of the following binding Pattern "ys@(vuu : vuv)" is replaced by the following term "vuu : vuv" ---------------------------------------- (6) Obligation: mainModule Main module Maybe where { import qualified List; import qualified Main; import qualified Prelude; } module List where { import qualified Main; import qualified Maybe; import qualified Prelude; insert :: Ord a => a -> [a] -> [a]; insert e ls = insertBy compare e ls; insertBy :: (a -> a -> Ordering) -> a -> [a] -> [a]; insertBy zz x [] = x : []; insertBy cmp x (vuu : vuv) = insertBy0 vuu cmp x vuv (vuu : vuv) (cmp x vuu); insertBy0 y cmp x ys' ys GT = y : insertBy cmp x ys'; insertBy0 y cmp x ys' ys zy = x : ys; } module Main where { import qualified List; import qualified Maybe; 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; " "absReal1 x True = x; absReal1 x False = absReal0 x otherwise; " "absReal0 x True = `negate` x; " "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 vuw = gcd'2 x vuw; gcd' x y = gcd'0 x y; " "gcd'0 x y = gcd' y (x `rem` y); " "gcd'1 True x vuw = x; gcd'1 vux vuy vuz = gcd'0 vuy vuz; " "gcd'2 x vuw = gcd'1 (vuw == 0) x vuw; gcd'2 vvu vvv = gcd'0 vvu vvv; " 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 vvw vvx = gcd3 vvw vvx; gcd x y = gcd0 x y; " "gcd0 x y = gcd' (abs x) (abs y) where { gcd' x vuw = gcd'2 x vuw; gcd' x y = gcd'0 x y; ; gcd'0 x y = gcd' y (x `rem` y); ; gcd'1 True x vuw = x; gcd'1 vux vuy vuz = gcd'0 vuy vuz; ; gcd'2 x vuw = gcd'1 (vuw == 0) x vuw; gcd'2 vvu vvv = gcd'0 vvu vvv; } ; " "gcd1 True vvw vvx = error []; gcd1 vvy vvz vwu = gcd0 vvz vwu; " "gcd2 True vvw vvx = gcd1 (vvx == 0) vvw vvx; gcd2 vwv vww vwx = gcd0 vww vwx; " "gcd3 vvw vvx = gcd2 (vvw == 0) vvw vvx; gcd3 vwy vwz = gcd0 vwy vwz; " 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; " "compare0 x y True = GT; " "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); " "compare3 x y = compare2 x y (x == y); " ---------------------------------------- (8) Obligation: mainModule Main module Maybe where { import qualified List; import qualified Main; import qualified Prelude; } module List where { import qualified Main; import qualified Maybe; import qualified Prelude; insert :: Ord a => a -> [a] -> [a]; insert e ls = insertBy compare e ls; insertBy :: (a -> a -> Ordering) -> a -> [a] -> [a]; insertBy zz x [] = x : []; insertBy cmp x (vuu : vuv) = insertBy0 vuu cmp x vuv (vuu : vuv) (cmp x vuu); insertBy0 y cmp x ys' ys GT = y : insertBy cmp x ys'; insertBy0 y cmp x ys' ys zy = x : ys; } module Main where { import qualified List; import qualified Maybe; 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 vuw = gcd'2 x vuw; gcd' x y = gcd'0 x y; ; gcd'0 x y = gcd' y (x `rem` y); ; gcd'1 True x vuw = x; gcd'1 vux vuy vuz = gcd'0 vuy vuz; ; gcd'2 x vuw = gcd'1 (vuw == 0) x vuw; gcd'2 vvu vvv = gcd'0 vvu vvv; } " are unpacked to the following functions on top level "gcd0Gcd'2 x vuw = gcd0Gcd'1 (vuw == 0) x vuw; gcd0Gcd'2 vvu vvv = gcd0Gcd'0 vvu vvv; " "gcd0Gcd' x vuw = gcd0Gcd'2 x vuw; gcd0Gcd' x y = gcd0Gcd'0 x y; " "gcd0Gcd'1 True x vuw = x; gcd0Gcd'1 vux vuy vuz = gcd0Gcd'0 vuy vuz; " "gcd0Gcd'0 x y = gcd0Gcd' y (x `rem` y); " The bindings of the following Let/Where expression "reduce1 x y (y == 0) where { d = gcd x y; ; reduce0 x y True = x `quot` d :% (y `quot` d); ; reduce1 x y True = error []; reduce1 x y False = reduce0 x y otherwise; } " are unpacked to the following functions on top level "reduce2Reduce0 vxu vxv x y True = x `quot` reduce2D vxu vxv :% (y `quot` reduce2D vxu vxv); " "reduce2D vxu vxv = gcd vxu vxv; " "reduce2Reduce1 vxu vxv x y True = error []; reduce2Reduce1 vxu vxv x y False = reduce2Reduce0 vxu vxv x y otherwise; " ---------------------------------------- (10) Obligation: mainModule Main module Maybe where { import qualified List; import qualified Main; import qualified Prelude; } module List where { import qualified Main; import qualified Maybe; import qualified Prelude; insert :: Ord a => a -> [a] -> [a]; insert e ls = insertBy compare e ls; insertBy :: (a -> a -> Ordering) -> a -> [a] -> [a]; insertBy zz x [] = x : []; insertBy cmp x (vuu : vuv) = insertBy0 vuu cmp x vuv (vuu : vuv) (cmp x vuu); insertBy0 y cmp x ys' ys GT = y : insertBy cmp x ys'; insertBy0 y cmp x ys' ys zy = x : ys; } module Main where { import qualified List; import qualified Maybe; 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 Maybe where { import qualified List; import qualified Main; import qualified Prelude; } module List where { import qualified Main; import qualified Maybe; import qualified Prelude; insert :: Ord a => a -> [a] -> [a]; insert e ls = insertBy compare e ls; insertBy :: (a -> a -> Ordering) -> a -> [a] -> [a]; insertBy zz x [] = x : []; insertBy cmp x (vuu : vuv) = insertBy0 vuu cmp x vuv (vuu : vuv) (cmp x vuu); insertBy0 y cmp x ys' ys GT = y : insertBy cmp x ys'; insertBy0 y cmp x ys' ys zy = x : ys; } module Main where { import qualified List; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (13) Narrow (SOUND) Haskell To QDPs digraph dp_graph { node [outthreshold=100, inthreshold=100];1[label="List.insert",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 3[label="List.insert vxw3",fontsize=16,color="grey",shape="box"];3 -> 4[label="",style="dashed", color="grey", weight=3]; 4[label="List.insert vxw3 vxw4",fontsize=16,color="black",shape="triangle"];4 -> 5[label="",style="solid", color="black", weight=3]; 5[label="List.insertBy compare vxw3 vxw4",fontsize=16,color="burlywood",shape="triangle"];2801[label="vxw4/vxw40 : vxw41",fontsize=10,color="white",style="solid",shape="box"];5 -> 2801[label="",style="solid", color="burlywood", weight=9]; 2801 -> 6[label="",style="solid", color="burlywood", weight=3]; 2802[label="vxw4/[]",fontsize=10,color="white",style="solid",shape="box"];5 -> 2802[label="",style="solid", color="burlywood", weight=9]; 2802 -> 7[label="",style="solid", color="burlywood", weight=3]; 6[label="List.insertBy compare vxw3 (vxw40 : vxw41)",fontsize=16,color="black",shape="box"];6 -> 8[label="",style="solid", color="black", weight=3]; 7[label="List.insertBy compare vxw3 []",fontsize=16,color="black",shape="box"];7 -> 9[label="",style="solid", color="black", weight=3]; 8[label="List.insertBy0 vxw40 compare vxw3 vxw41 (vxw40 : vxw41) (compare vxw3 vxw40)",fontsize=16,color="burlywood",shape="box"];2803[label="vxw3/vxw30 : vxw31",fontsize=10,color="white",style="solid",shape="box"];8 -> 2803[label="",style="solid", color="burlywood", weight=9]; 2803 -> 10[label="",style="solid", color="burlywood", weight=3]; 2804[label="vxw3/[]",fontsize=10,color="white",style="solid",shape="box"];8 -> 2804[label="",style="solid", color="burlywood", weight=9]; 2804 -> 11[label="",style="solid", color="burlywood", weight=3]; 9[label="vxw3 : []",fontsize=16,color="green",shape="box"];10[label="List.insertBy0 vxw40 compare (vxw30 : vxw31) vxw41 (vxw40 : vxw41) (compare (vxw30 : vxw31) vxw40)",fontsize=16,color="burlywood",shape="box"];2805[label="vxw40/vxw400 : vxw401",fontsize=10,color="white",style="solid",shape="box"];10 -> 2805[label="",style="solid", color="burlywood", weight=9]; 2805 -> 12[label="",style="solid", color="burlywood", weight=3]; 2806[label="vxw40/[]",fontsize=10,color="white",style="solid",shape="box"];10 -> 2806[label="",style="solid", color="burlywood", weight=9]; 2806 -> 13[label="",style="solid", color="burlywood", weight=3]; 11[label="List.insertBy0 vxw40 compare [] vxw41 (vxw40 : vxw41) (compare [] vxw40)",fontsize=16,color="burlywood",shape="box"];2807[label="vxw40/vxw400 : vxw401",fontsize=10,color="white",style="solid",shape="box"];11 -> 2807[label="",style="solid", color="burlywood", weight=9]; 2807 -> 14[label="",style="solid", color="burlywood", weight=3]; 2808[label="vxw40/[]",fontsize=10,color="white",style="solid",shape="box"];11 -> 2808[label="",style="solid", color="burlywood", weight=9]; 2808 -> 15[label="",style="solid", color="burlywood", weight=3]; 12[label="List.insertBy0 (vxw400 : vxw401) compare (vxw30 : vxw31) vxw41 ((vxw400 : vxw401) : vxw41) (compare (vxw30 : vxw31) (vxw400 : vxw401))",fontsize=16,color="black",shape="box"];12 -> 16[label="",style="solid", color="black", weight=3]; 13[label="List.insertBy0 [] compare (vxw30 : vxw31) vxw41 ([] : vxw41) (compare (vxw30 : vxw31) [])",fontsize=16,color="black",shape="box"];13 -> 17[label="",style="solid", color="black", weight=3]; 14[label="List.insertBy0 (vxw400 : vxw401) compare [] vxw41 ((vxw400 : vxw401) : vxw41) (compare [] (vxw400 : vxw401))",fontsize=16,color="black",shape="box"];14 -> 18[label="",style="solid", color="black", weight=3]; 15[label="List.insertBy0 [] compare [] vxw41 ([] : vxw41) (compare [] [])",fontsize=16,color="black",shape="box"];15 -> 19[label="",style="solid", color="black", weight=3]; 16 -> 88[label="",style="dashed", color="red", weight=0]; 16[label="List.insertBy0 (vxw400 : vxw401) compare (vxw30 : vxw31) vxw41 ((vxw400 : vxw401) : vxw41) (primCompAux vxw30 vxw400 (compare vxw31 vxw401))",fontsize=16,color="magenta"];16 -> 89[label="",style="dashed", color="magenta", weight=3]; 16 -> 90[label="",style="dashed", color="magenta", weight=3]; 16 -> 91[label="",style="dashed", color="magenta", weight=3]; 16 -> 92[label="",style="dashed", color="magenta", weight=3]; 16 -> 93[label="",style="dashed", color="magenta", weight=3]; 16 -> 94[label="",style="dashed", color="magenta", weight=3]; 17[label="List.insertBy0 [] compare (vxw30 : vxw31) vxw41 ([] : vxw41) GT",fontsize=16,color="black",shape="box"];17 -> 21[label="",style="solid", color="black", weight=3]; 18[label="List.insertBy0 (vxw400 : vxw401) compare [] vxw41 ((vxw400 : vxw401) : vxw41) LT",fontsize=16,color="black",shape="box"];18 -> 22[label="",style="solid", color="black", weight=3]; 19[label="List.insertBy0 [] compare [] vxw41 ([] : vxw41) EQ",fontsize=16,color="black",shape="box"];19 -> 23[label="",style="solid", color="black", weight=3]; 89[label="vxw30",fontsize=16,color="green",shape="box"];90[label="vxw41",fontsize=16,color="green",shape="box"];91[label="vxw401",fontsize=16,color="green",shape="box"];92[label="vxw400",fontsize=16,color="green",shape="box"];93[label="primCompAux vxw30 vxw400 (compare vxw31 vxw401)",fontsize=16,color="black",shape="triangle"];93 -> 105[label="",style="solid", color="black", weight=3]; 94[label="vxw31",fontsize=16,color="green",shape="box"];88[label="List.insertBy0 (vxw12 : vxw13) compare (vxw14 : vxw15) vxw16 ((vxw12 : vxw13) : vxw16) vxw18",fontsize=16,color="burlywood",shape="triangle"];2809[label="vxw18/LT",fontsize=10,color="white",style="solid",shape="box"];88 -> 2809[label="",style="solid", color="burlywood", weight=9]; 2809 -> 106[label="",style="solid", color="burlywood", weight=3]; 2810[label="vxw18/EQ",fontsize=10,color="white",style="solid",shape="box"];88 -> 2810[label="",style="solid", color="burlywood", weight=9]; 2810 -> 107[label="",style="solid", color="burlywood", weight=3]; 2811[label="vxw18/GT",fontsize=10,color="white",style="solid",shape="box"];88 -> 2811[label="",style="solid", color="burlywood", weight=9]; 2811 -> 108[label="",style="solid", color="burlywood", weight=3]; 21[label="[] : List.insertBy compare (vxw30 : vxw31) vxw41",fontsize=16,color="green",shape="box"];21 -> 31[label="",style="dashed", color="green", weight=3]; 22[label="[] : (vxw400 : vxw401) : vxw41",fontsize=16,color="green",shape="box"];23[label="[] : [] : vxw41",fontsize=16,color="green",shape="box"];105 -> 109[label="",style="dashed", color="red", weight=0]; 105[label="primCompAux0 (compare vxw31 vxw401) (compare vxw30 vxw400)",fontsize=16,color="magenta"];105 -> 110[label="",style="dashed", color="magenta", weight=3]; 105 -> 111[label="",style="dashed", color="magenta", weight=3]; 105 -> 112[label="",style="dashed", color="magenta", weight=3]; 106[label="List.insertBy0 (vxw12 : vxw13) compare (vxw14 : vxw15) vxw16 ((vxw12 : vxw13) : vxw16) LT",fontsize=16,color="black",shape="box"];106 -> 113[label="",style="solid", color="black", weight=3]; 107[label="List.insertBy0 (vxw12 : vxw13) compare (vxw14 : vxw15) vxw16 ((vxw12 : vxw13) : vxw16) EQ",fontsize=16,color="black",shape="box"];107 -> 114[label="",style="solid", color="black", weight=3]; 108[label="List.insertBy0 (vxw12 : vxw13) compare (vxw14 : vxw15) vxw16 ((vxw12 : vxw13) : vxw16) GT",fontsize=16,color="black",shape="box"];108 -> 115[label="",style="solid", color="black", weight=3]; 31 -> 5[label="",style="dashed", color="red", weight=0]; 31[label="List.insertBy compare (vxw30 : vxw31) vxw41",fontsize=16,color="magenta"];31 -> 49[label="",style="dashed", color="magenta", weight=3]; 31 -> 50[label="",style="dashed", color="magenta", weight=3]; 110[label="compare vxw30 vxw400",fontsize=16,color="blue",shape="box"];2812[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];110 -> 2812[label="",style="solid", color="blue", weight=9]; 2812 -> 116[label="",style="solid", color="blue", weight=3]; 2813[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];110 -> 2813[label="",style="solid", color="blue", weight=9]; 2813 -> 117[label="",style="solid", color="blue", weight=3]; 2814[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];110 -> 2814[label="",style="solid", color="blue", weight=9]; 2814 -> 118[label="",style="solid", color="blue", weight=3]; 2815[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];110 -> 2815[label="",style="solid", color="blue", weight=9]; 2815 -> 119[label="",style="solid", color="blue", weight=3]; 2816[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];110 -> 2816[label="",style="solid", color="blue", weight=9]; 2816 -> 120[label="",style="solid", color="blue", weight=3]; 2817[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];110 -> 2817[label="",style="solid", color="blue", weight=9]; 2817 -> 121[label="",style="solid", color="blue", weight=3]; 2818[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];110 -> 2818[label="",style="solid", color="blue", weight=9]; 2818 -> 122[label="",style="solid", color="blue", weight=3]; 2819[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];110 -> 2819[label="",style="solid", color="blue", weight=9]; 2819 -> 123[label="",style="solid", color="blue", weight=3]; 2820[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];110 -> 2820[label="",style="solid", color="blue", weight=9]; 2820 -> 124[label="",style="solid", color="blue", weight=3]; 2821[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];110 -> 2821[label="",style="solid", color="blue", weight=9]; 2821 -> 125[label="",style="solid", color="blue", weight=3]; 2822[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];110 -> 2822[label="",style="solid", color="blue", weight=9]; 2822 -> 126[label="",style="solid", color="blue", weight=3]; 2823[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];110 -> 2823[label="",style="solid", color="blue", weight=9]; 2823 -> 127[label="",style="solid", color="blue", weight=3]; 2824[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];110 -> 2824[label="",style="solid", color="blue", weight=9]; 2824 -> 128[label="",style="solid", color="blue", weight=3]; 2825[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];110 -> 2825[label="",style="solid", color="blue", weight=9]; 2825 -> 129[label="",style="solid", color="blue", weight=3]; 111[label="vxw401",fontsize=16,color="green",shape="box"];112[label="vxw31",fontsize=16,color="green",shape="box"];109[label="primCompAux0 (compare vxw23 vxw24) vxw25",fontsize=16,color="burlywood",shape="triangle"];2826[label="vxw25/LT",fontsize=10,color="white",style="solid",shape="box"];109 -> 2826[label="",style="solid", color="burlywood", weight=9]; 2826 -> 130[label="",style="solid", color="burlywood", weight=3]; 2827[label="vxw25/EQ",fontsize=10,color="white",style="solid",shape="box"];109 -> 2827[label="",style="solid", color="burlywood", weight=9]; 2827 -> 131[label="",style="solid", color="burlywood", weight=3]; 2828[label="vxw25/GT",fontsize=10,color="white",style="solid",shape="box"];109 -> 2828[label="",style="solid", color="burlywood", weight=9]; 2828 -> 132[label="",style="solid", color="burlywood", weight=3]; 113[label="(vxw14 : vxw15) : (vxw12 : vxw13) : vxw16",fontsize=16,color="green",shape="box"];114[label="(vxw14 : vxw15) : (vxw12 : vxw13) : vxw16",fontsize=16,color="green",shape="box"];115[label="(vxw12 : vxw13) : List.insertBy compare (vxw14 : vxw15) vxw16",fontsize=16,color="green",shape="box"];115 -> 133[label="",style="dashed", color="green", weight=3]; 49[label="vxw30 : vxw31",fontsize=16,color="green",shape="box"];50[label="vxw41",fontsize=16,color="green",shape="box"];116[label="compare vxw30 vxw400",fontsize=16,color="black",shape="triangle"];116 -> 134[label="",style="solid", color="black", weight=3]; 117[label="compare vxw30 vxw400",fontsize=16,color="burlywood",shape="triangle"];2829[label="vxw30/Integer vxw300",fontsize=10,color="white",style="solid",shape="box"];117 -> 2829[label="",style="solid", color="burlywood", weight=9]; 2829 -> 135[label="",style="solid", color="burlywood", weight=3]; 118[label="compare vxw30 vxw400",fontsize=16,color="burlywood",shape="triangle"];2830[label="vxw30/vxw300 : vxw301",fontsize=10,color="white",style="solid",shape="box"];118 -> 2830[label="",style="solid", color="burlywood", weight=9]; 2830 -> 136[label="",style="solid", color="burlywood", weight=3]; 2831[label="vxw30/[]",fontsize=10,color="white",style="solid",shape="box"];118 -> 2831[label="",style="solid", color="burlywood", weight=9]; 2831 -> 137[label="",style="solid", color="burlywood", weight=3]; 119[label="compare vxw30 vxw400",fontsize=16,color="black",shape="triangle"];119 -> 138[label="",style="solid", color="black", weight=3]; 120[label="compare vxw30 vxw400",fontsize=16,color="black",shape="triangle"];120 -> 139[label="",style="solid", color="black", weight=3]; 121[label="compare vxw30 vxw400",fontsize=16,color="black",shape="triangle"];121 -> 140[label="",style="solid", color="black", weight=3]; 122[label="compare vxw30 vxw400",fontsize=16,color="black",shape="triangle"];122 -> 141[label="",style="solid", color="black", weight=3]; 123[label="compare vxw30 vxw400",fontsize=16,color="black",shape="triangle"];123 -> 142[label="",style="solid", color="black", weight=3]; 124[label="compare vxw30 vxw400",fontsize=16,color="black",shape="triangle"];124 -> 143[label="",style="solid", color="black", weight=3]; 125[label="compare vxw30 vxw400",fontsize=16,color="burlywood",shape="triangle"];2832[label="vxw30/vxw300 :% vxw301",fontsize=10,color="white",style="solid",shape="box"];125 -> 2832[label="",style="solid", color="burlywood", weight=9]; 2832 -> 144[label="",style="solid", color="burlywood", weight=3]; 126[label="compare vxw30 vxw400",fontsize=16,color="burlywood",shape="triangle"];2833[label="vxw30/()",fontsize=10,color="white",style="solid",shape="box"];126 -> 2833[label="",style="solid", color="burlywood", weight=9]; 2833 -> 145[label="",style="solid", color="burlywood", weight=3]; 127[label="compare vxw30 vxw400",fontsize=16,color="black",shape="triangle"];127 -> 146[label="",style="solid", color="black", weight=3]; 128[label="compare vxw30 vxw400",fontsize=16,color="black",shape="triangle"];128 -> 147[label="",style="solid", color="black", weight=3]; 129[label="compare vxw30 vxw400",fontsize=16,color="black",shape="triangle"];129 -> 148[label="",style="solid", color="black", weight=3]; 130[label="primCompAux0 (compare vxw23 vxw24) LT",fontsize=16,color="black",shape="box"];130 -> 149[label="",style="solid", color="black", weight=3]; 131[label="primCompAux0 (compare vxw23 vxw24) EQ",fontsize=16,color="black",shape="box"];131 -> 150[label="",style="solid", color="black", weight=3]; 132[label="primCompAux0 (compare vxw23 vxw24) GT",fontsize=16,color="black",shape="box"];132 -> 151[label="",style="solid", color="black", weight=3]; 133 -> 5[label="",style="dashed", color="red", weight=0]; 133[label="List.insertBy compare (vxw14 : vxw15) vxw16",fontsize=16,color="magenta"];133 -> 152[label="",style="dashed", color="magenta", weight=3]; 133 -> 153[label="",style="dashed", color="magenta", weight=3]; 134[label="primCmpChar vxw30 vxw400",fontsize=16,color="burlywood",shape="box"];2834[label="vxw30/Char vxw300",fontsize=10,color="white",style="solid",shape="box"];134 -> 2834[label="",style="solid", color="burlywood", weight=9]; 2834 -> 154[label="",style="solid", color="burlywood", weight=3]; 135[label="compare (Integer vxw300) vxw400",fontsize=16,color="burlywood",shape="box"];2835[label="vxw400/Integer vxw4000",fontsize=10,color="white",style="solid",shape="box"];135 -> 2835[label="",style="solid", color="burlywood", weight=9]; 2835 -> 155[label="",style="solid", color="burlywood", weight=3]; 136[label="compare (vxw300 : vxw301) vxw400",fontsize=16,color="burlywood",shape="box"];2836[label="vxw400/vxw4000 : vxw4001",fontsize=10,color="white",style="solid",shape="box"];136 -> 2836[label="",style="solid", color="burlywood", weight=9]; 2836 -> 156[label="",style="solid", color="burlywood", weight=3]; 2837[label="vxw400/[]",fontsize=10,color="white",style="solid",shape="box"];136 -> 2837[label="",style="solid", color="burlywood", weight=9]; 2837 -> 157[label="",style="solid", color="burlywood", weight=3]; 137[label="compare [] vxw400",fontsize=16,color="burlywood",shape="box"];2838[label="vxw400/vxw4000 : vxw4001",fontsize=10,color="white",style="solid",shape="box"];137 -> 2838[label="",style="solid", color="burlywood", weight=9]; 2838 -> 158[label="",style="solid", color="burlywood", weight=3]; 2839[label="vxw400/[]",fontsize=10,color="white",style="solid",shape="box"];137 -> 2839[label="",style="solid", color="burlywood", weight=9]; 2839 -> 159[label="",style="solid", color="burlywood", weight=3]; 138[label="compare3 vxw30 vxw400",fontsize=16,color="black",shape="box"];138 -> 160[label="",style="solid", color="black", weight=3]; 139[label="compare3 vxw30 vxw400",fontsize=16,color="black",shape="box"];139 -> 161[label="",style="solid", color="black", weight=3]; 140[label="compare3 vxw30 vxw400",fontsize=16,color="black",shape="box"];140 -> 162[label="",style="solid", color="black", weight=3]; 141[label="compare3 vxw30 vxw400",fontsize=16,color="black",shape="box"];141 -> 163[label="",style="solid", color="black", weight=3]; 142[label="primCmpInt vxw30 vxw400",fontsize=16,color="burlywood",shape="triangle"];2840[label="vxw30/Pos vxw300",fontsize=10,color="white",style="solid",shape="box"];142 -> 2840[label="",style="solid", color="burlywood", weight=9]; 2840 -> 164[label="",style="solid", color="burlywood", weight=3]; 2841[label="vxw30/Neg vxw300",fontsize=10,color="white",style="solid",shape="box"];142 -> 2841[label="",style="solid", color="burlywood", weight=9]; 2841 -> 165[label="",style="solid", color="burlywood", weight=3]; 143[label="primCmpFloat vxw30 vxw400",fontsize=16,color="burlywood",shape="box"];2842[label="vxw30/Float vxw300 vxw301",fontsize=10,color="white",style="solid",shape="box"];143 -> 2842[label="",style="solid", color="burlywood", weight=9]; 2842 -> 166[label="",style="solid", color="burlywood", weight=3]; 144[label="compare (vxw300 :% vxw301) vxw400",fontsize=16,color="burlywood",shape="box"];2843[label="vxw400/vxw4000 :% vxw4001",fontsize=10,color="white",style="solid",shape="box"];144 -> 2843[label="",style="solid", color="burlywood", weight=9]; 2843 -> 167[label="",style="solid", color="burlywood", weight=3]; 145[label="compare () vxw400",fontsize=16,color="burlywood",shape="box"];2844[label="vxw400/()",fontsize=10,color="white",style="solid",shape="box"];145 -> 2844[label="",style="solid", color="burlywood", weight=9]; 2844 -> 168[label="",style="solid", color="burlywood", weight=3]; 146[label="compare3 vxw30 vxw400",fontsize=16,color="black",shape="box"];146 -> 169[label="",style="solid", color="black", weight=3]; 147[label="primCmpDouble vxw30 vxw400",fontsize=16,color="burlywood",shape="box"];2845[label="vxw30/Double vxw300 vxw301",fontsize=10,color="white",style="solid",shape="box"];147 -> 2845[label="",style="solid", color="burlywood", weight=9]; 2845 -> 170[label="",style="solid", color="burlywood", weight=3]; 148[label="compare3 vxw30 vxw400",fontsize=16,color="black",shape="box"];148 -> 171[label="",style="solid", color="black", weight=3]; 149[label="LT",fontsize=16,color="green",shape="box"];150[label="compare vxw23 vxw24",fontsize=16,color="blue",shape="box"];2846[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];150 -> 2846[label="",style="solid", color="blue", weight=9]; 2846 -> 172[label="",style="solid", color="blue", weight=3]; 2847[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];150 -> 2847[label="",style="solid", color="blue", weight=9]; 2847 -> 173[label="",style="solid", color="blue", weight=3]; 2848[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];150 -> 2848[label="",style="solid", color="blue", weight=9]; 2848 -> 174[label="",style="solid", color="blue", weight=3]; 2849[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];150 -> 2849[label="",style="solid", color="blue", weight=9]; 2849 -> 175[label="",style="solid", color="blue", weight=3]; 2850[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];150 -> 2850[label="",style="solid", color="blue", weight=9]; 2850 -> 176[label="",style="solid", color="blue", weight=3]; 2851[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];150 -> 2851[label="",style="solid", color="blue", weight=9]; 2851 -> 177[label="",style="solid", color="blue", weight=3]; 2852[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];150 -> 2852[label="",style="solid", color="blue", weight=9]; 2852 -> 178[label="",style="solid", color="blue", weight=3]; 2853[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];150 -> 2853[label="",style="solid", color="blue", weight=9]; 2853 -> 179[label="",style="solid", color="blue", weight=3]; 2854[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];150 -> 2854[label="",style="solid", color="blue", weight=9]; 2854 -> 180[label="",style="solid", color="blue", weight=3]; 2855[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];150 -> 2855[label="",style="solid", color="blue", weight=9]; 2855 -> 181[label="",style="solid", color="blue", weight=3]; 2856[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];150 -> 2856[label="",style="solid", color="blue", weight=9]; 2856 -> 182[label="",style="solid", color="blue", weight=3]; 2857[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];150 -> 2857[label="",style="solid", color="blue", weight=9]; 2857 -> 183[label="",style="solid", color="blue", weight=3]; 2858[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];150 -> 2858[label="",style="solid", color="blue", weight=9]; 2858 -> 184[label="",style="solid", color="blue", weight=3]; 2859[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];150 -> 2859[label="",style="solid", color="blue", weight=9]; 2859 -> 185[label="",style="solid", color="blue", weight=3]; 151[label="GT",fontsize=16,color="green",shape="box"];152[label="vxw14 : vxw15",fontsize=16,color="green",shape="box"];153[label="vxw16",fontsize=16,color="green",shape="box"];154[label="primCmpChar (Char vxw300) vxw400",fontsize=16,color="burlywood",shape="box"];2860[label="vxw400/Char vxw4000",fontsize=10,color="white",style="solid",shape="box"];154 -> 2860[label="",style="solid", color="burlywood", weight=9]; 2860 -> 186[label="",style="solid", color="burlywood", weight=3]; 155[label="compare (Integer vxw300) (Integer vxw4000)",fontsize=16,color="black",shape="box"];155 -> 187[label="",style="solid", color="black", weight=3]; 156[label="compare (vxw300 : vxw301) (vxw4000 : vxw4001)",fontsize=16,color="black",shape="box"];156 -> 188[label="",style="solid", color="black", weight=3]; 157[label="compare (vxw300 : vxw301) []",fontsize=16,color="black",shape="box"];157 -> 189[label="",style="solid", color="black", weight=3]; 158[label="compare [] (vxw4000 : vxw4001)",fontsize=16,color="black",shape="box"];158 -> 190[label="",style="solid", color="black", weight=3]; 159[label="compare [] []",fontsize=16,color="black",shape="box"];159 -> 191[label="",style="solid", color="black", weight=3]; 160[label="compare2 vxw30 vxw400 (vxw30 == vxw400)",fontsize=16,color="burlywood",shape="box"];2861[label="vxw30/Nothing",fontsize=10,color="white",style="solid",shape="box"];160 -> 2861[label="",style="solid", color="burlywood", weight=9]; 2861 -> 192[label="",style="solid", color="burlywood", weight=3]; 2862[label="vxw30/Just vxw300",fontsize=10,color="white",style="solid",shape="box"];160 -> 2862[label="",style="solid", color="burlywood", weight=9]; 2862 -> 193[label="",style="solid", color="burlywood", weight=3]; 161[label="compare2 vxw30 vxw400 (vxw30 == vxw400)",fontsize=16,color="burlywood",shape="box"];2863[label="vxw30/(vxw300,vxw301)",fontsize=10,color="white",style="solid",shape="box"];161 -> 2863[label="",style="solid", color="burlywood", weight=9]; 2863 -> 194[label="",style="solid", color="burlywood", weight=3]; 162[label="compare2 vxw30 vxw400 (vxw30 == vxw400)",fontsize=16,color="burlywood",shape="box"];2864[label="vxw30/LT",fontsize=10,color="white",style="solid",shape="box"];162 -> 2864[label="",style="solid", color="burlywood", weight=9]; 2864 -> 195[label="",style="solid", color="burlywood", weight=3]; 2865[label="vxw30/EQ",fontsize=10,color="white",style="solid",shape="box"];162 -> 2865[label="",style="solid", color="burlywood", weight=9]; 2865 -> 196[label="",style="solid", color="burlywood", weight=3]; 2866[label="vxw30/GT",fontsize=10,color="white",style="solid",shape="box"];162 -> 2866[label="",style="solid", color="burlywood", weight=9]; 2866 -> 197[label="",style="solid", color="burlywood", weight=3]; 163[label="compare2 vxw30 vxw400 (vxw30 == vxw400)",fontsize=16,color="burlywood",shape="box"];2867[label="vxw30/(vxw300,vxw301,vxw302)",fontsize=10,color="white",style="solid",shape="box"];163 -> 2867[label="",style="solid", color="burlywood", weight=9]; 2867 -> 198[label="",style="solid", color="burlywood", weight=3]; 164[label="primCmpInt (Pos vxw300) vxw400",fontsize=16,color="burlywood",shape="box"];2868[label="vxw300/Succ vxw3000",fontsize=10,color="white",style="solid",shape="box"];164 -> 2868[label="",style="solid", color="burlywood", weight=9]; 2868 -> 199[label="",style="solid", color="burlywood", weight=3]; 2869[label="vxw300/Zero",fontsize=10,color="white",style="solid",shape="box"];164 -> 2869[label="",style="solid", color="burlywood", weight=9]; 2869 -> 200[label="",style="solid", color="burlywood", weight=3]; 165[label="primCmpInt (Neg vxw300) vxw400",fontsize=16,color="burlywood",shape="box"];2870[label="vxw300/Succ vxw3000",fontsize=10,color="white",style="solid",shape="box"];165 -> 2870[label="",style="solid", color="burlywood", weight=9]; 2870 -> 201[label="",style="solid", color="burlywood", weight=3]; 2871[label="vxw300/Zero",fontsize=10,color="white",style="solid",shape="box"];165 -> 2871[label="",style="solid", color="burlywood", weight=9]; 2871 -> 202[label="",style="solid", color="burlywood", weight=3]; 166[label="primCmpFloat (Float vxw300 vxw301) vxw400",fontsize=16,color="burlywood",shape="box"];2872[label="vxw301/Pos vxw3010",fontsize=10,color="white",style="solid",shape="box"];166 -> 2872[label="",style="solid", color="burlywood", weight=9]; 2872 -> 203[label="",style="solid", color="burlywood", weight=3]; 2873[label="vxw301/Neg vxw3010",fontsize=10,color="white",style="solid",shape="box"];166 -> 2873[label="",style="solid", color="burlywood", weight=9]; 2873 -> 204[label="",style="solid", color="burlywood", weight=3]; 167[label="compare (vxw300 :% vxw301) (vxw4000 :% vxw4001)",fontsize=16,color="black",shape="box"];167 -> 205[label="",style="solid", color="black", weight=3]; 168[label="compare () ()",fontsize=16,color="black",shape="box"];168 -> 206[label="",style="solid", color="black", weight=3]; 169[label="compare2 vxw30 vxw400 (vxw30 == vxw400)",fontsize=16,color="burlywood",shape="box"];2874[label="vxw30/Left vxw300",fontsize=10,color="white",style="solid",shape="box"];169 -> 2874[label="",style="solid", color="burlywood", weight=9]; 2874 -> 207[label="",style="solid", color="burlywood", weight=3]; 2875[label="vxw30/Right vxw300",fontsize=10,color="white",style="solid",shape="box"];169 -> 2875[label="",style="solid", color="burlywood", weight=9]; 2875 -> 208[label="",style="solid", color="burlywood", weight=3]; 170[label="primCmpDouble (Double vxw300 vxw301) vxw400",fontsize=16,color="burlywood",shape="box"];2876[label="vxw301/Pos vxw3010",fontsize=10,color="white",style="solid",shape="box"];170 -> 2876[label="",style="solid", color="burlywood", weight=9]; 2876 -> 209[label="",style="solid", color="burlywood", weight=3]; 2877[label="vxw301/Neg vxw3010",fontsize=10,color="white",style="solid",shape="box"];170 -> 2877[label="",style="solid", color="burlywood", weight=9]; 2877 -> 210[label="",style="solid", color="burlywood", weight=3]; 171[label="compare2 vxw30 vxw400 (vxw30 == vxw400)",fontsize=16,color="burlywood",shape="box"];2878[label="vxw30/False",fontsize=10,color="white",style="solid",shape="box"];171 -> 2878[label="",style="solid", color="burlywood", weight=9]; 2878 -> 211[label="",style="solid", color="burlywood", weight=3]; 2879[label="vxw30/True",fontsize=10,color="white",style="solid",shape="box"];171 -> 2879[label="",style="solid", color="burlywood", weight=9]; 2879 -> 212[label="",style="solid", color="burlywood", weight=3]; 172 -> 116[label="",style="dashed", color="red", weight=0]; 172[label="compare vxw23 vxw24",fontsize=16,color="magenta"];172 -> 213[label="",style="dashed", color="magenta", weight=3]; 172 -> 214[label="",style="dashed", color="magenta", weight=3]; 173 -> 117[label="",style="dashed", color="red", weight=0]; 173[label="compare vxw23 vxw24",fontsize=16,color="magenta"];173 -> 215[label="",style="dashed", color="magenta", weight=3]; 173 -> 216[label="",style="dashed", color="magenta", weight=3]; 174 -> 118[label="",style="dashed", color="red", weight=0]; 174[label="compare vxw23 vxw24",fontsize=16,color="magenta"];174 -> 217[label="",style="dashed", color="magenta", weight=3]; 174 -> 218[label="",style="dashed", color="magenta", weight=3]; 175 -> 119[label="",style="dashed", color="red", weight=0]; 175[label="compare vxw23 vxw24",fontsize=16,color="magenta"];175 -> 219[label="",style="dashed", color="magenta", weight=3]; 175 -> 220[label="",style="dashed", color="magenta", weight=3]; 176 -> 120[label="",style="dashed", color="red", weight=0]; 176[label="compare vxw23 vxw24",fontsize=16,color="magenta"];176 -> 221[label="",style="dashed", color="magenta", weight=3]; 176 -> 222[label="",style="dashed", color="magenta", weight=3]; 177 -> 121[label="",style="dashed", color="red", weight=0]; 177[label="compare vxw23 vxw24",fontsize=16,color="magenta"];177 -> 223[label="",style="dashed", color="magenta", weight=3]; 177 -> 224[label="",style="dashed", color="magenta", weight=3]; 178 -> 122[label="",style="dashed", color="red", weight=0]; 178[label="compare vxw23 vxw24",fontsize=16,color="magenta"];178 -> 225[label="",style="dashed", color="magenta", weight=3]; 178 -> 226[label="",style="dashed", color="magenta", weight=3]; 179 -> 123[label="",style="dashed", color="red", weight=0]; 179[label="compare vxw23 vxw24",fontsize=16,color="magenta"];179 -> 227[label="",style="dashed", color="magenta", weight=3]; 179 -> 228[label="",style="dashed", color="magenta", weight=3]; 180 -> 124[label="",style="dashed", color="red", weight=0]; 180[label="compare vxw23 vxw24",fontsize=16,color="magenta"];180 -> 229[label="",style="dashed", color="magenta", weight=3]; 180 -> 230[label="",style="dashed", color="magenta", weight=3]; 181 -> 125[label="",style="dashed", color="red", weight=0]; 181[label="compare vxw23 vxw24",fontsize=16,color="magenta"];181 -> 231[label="",style="dashed", color="magenta", weight=3]; 181 -> 232[label="",style="dashed", color="magenta", weight=3]; 182 -> 126[label="",style="dashed", color="red", weight=0]; 182[label="compare vxw23 vxw24",fontsize=16,color="magenta"];182 -> 233[label="",style="dashed", color="magenta", weight=3]; 182 -> 234[label="",style="dashed", color="magenta", weight=3]; 183 -> 127[label="",style="dashed", color="red", weight=0]; 183[label="compare vxw23 vxw24",fontsize=16,color="magenta"];183 -> 235[label="",style="dashed", color="magenta", weight=3]; 183 -> 236[label="",style="dashed", color="magenta", weight=3]; 184 -> 128[label="",style="dashed", color="red", weight=0]; 184[label="compare vxw23 vxw24",fontsize=16,color="magenta"];184 -> 237[label="",style="dashed", color="magenta", weight=3]; 184 -> 238[label="",style="dashed", color="magenta", weight=3]; 185 -> 129[label="",style="dashed", color="red", weight=0]; 185[label="compare vxw23 vxw24",fontsize=16,color="magenta"];185 -> 239[label="",style="dashed", color="magenta", weight=3]; 185 -> 240[label="",style="dashed", color="magenta", weight=3]; 186[label="primCmpChar (Char vxw300) (Char vxw4000)",fontsize=16,color="black",shape="box"];186 -> 241[label="",style="solid", color="black", weight=3]; 187 -> 142[label="",style="dashed", color="red", weight=0]; 187[label="primCmpInt vxw300 vxw4000",fontsize=16,color="magenta"];187 -> 242[label="",style="dashed", color="magenta", weight=3]; 187 -> 243[label="",style="dashed", color="magenta", weight=3]; 188 -> 93[label="",style="dashed", color="red", weight=0]; 188[label="primCompAux vxw300 vxw4000 (compare vxw301 vxw4001)",fontsize=16,color="magenta"];188 -> 244[label="",style="dashed", color="magenta", weight=3]; 188 -> 245[label="",style="dashed", color="magenta", weight=3]; 188 -> 246[label="",style="dashed", color="magenta", weight=3]; 188 -> 247[label="",style="dashed", color="magenta", weight=3]; 189[label="GT",fontsize=16,color="green",shape="box"];190[label="LT",fontsize=16,color="green",shape="box"];191[label="EQ",fontsize=16,color="green",shape="box"];192[label="compare2 Nothing vxw400 (Nothing == vxw400)",fontsize=16,color="burlywood",shape="box"];2880[label="vxw400/Nothing",fontsize=10,color="white",style="solid",shape="box"];192 -> 2880[label="",style="solid", color="burlywood", weight=9]; 2880 -> 248[label="",style="solid", color="burlywood", weight=3]; 2881[label="vxw400/Just vxw4000",fontsize=10,color="white",style="solid",shape="box"];192 -> 2881[label="",style="solid", color="burlywood", weight=9]; 2881 -> 249[label="",style="solid", color="burlywood", weight=3]; 193[label="compare2 (Just vxw300) vxw400 (Just vxw300 == vxw400)",fontsize=16,color="burlywood",shape="box"];2882[label="vxw400/Nothing",fontsize=10,color="white",style="solid",shape="box"];193 -> 2882[label="",style="solid", color="burlywood", weight=9]; 2882 -> 250[label="",style="solid", color="burlywood", weight=3]; 2883[label="vxw400/Just vxw4000",fontsize=10,color="white",style="solid",shape="box"];193 -> 2883[label="",style="solid", color="burlywood", weight=9]; 2883 -> 251[label="",style="solid", color="burlywood", weight=3]; 194[label="compare2 (vxw300,vxw301) vxw400 ((vxw300,vxw301) == vxw400)",fontsize=16,color="burlywood",shape="box"];2884[label="vxw400/(vxw4000,vxw4001)",fontsize=10,color="white",style="solid",shape="box"];194 -> 2884[label="",style="solid", color="burlywood", weight=9]; 2884 -> 252[label="",style="solid", color="burlywood", weight=3]; 195[label="compare2 LT vxw400 (LT == vxw400)",fontsize=16,color="burlywood",shape="box"];2885[label="vxw400/LT",fontsize=10,color="white",style="solid",shape="box"];195 -> 2885[label="",style="solid", color="burlywood", weight=9]; 2885 -> 253[label="",style="solid", color="burlywood", weight=3]; 2886[label="vxw400/EQ",fontsize=10,color="white",style="solid",shape="box"];195 -> 2886[label="",style="solid", color="burlywood", weight=9]; 2886 -> 254[label="",style="solid", color="burlywood", weight=3]; 2887[label="vxw400/GT",fontsize=10,color="white",style="solid",shape="box"];195 -> 2887[label="",style="solid", color="burlywood", weight=9]; 2887 -> 255[label="",style="solid", color="burlywood", weight=3]; 196[label="compare2 EQ vxw400 (EQ == vxw400)",fontsize=16,color="burlywood",shape="box"];2888[label="vxw400/LT",fontsize=10,color="white",style="solid",shape="box"];196 -> 2888[label="",style="solid", color="burlywood", weight=9]; 2888 -> 256[label="",style="solid", color="burlywood", weight=3]; 2889[label="vxw400/EQ",fontsize=10,color="white",style="solid",shape="box"];196 -> 2889[label="",style="solid", color="burlywood", weight=9]; 2889 -> 257[label="",style="solid", color="burlywood", weight=3]; 2890[label="vxw400/GT",fontsize=10,color="white",style="solid",shape="box"];196 -> 2890[label="",style="solid", color="burlywood", weight=9]; 2890 -> 258[label="",style="solid", color="burlywood", weight=3]; 197[label="compare2 GT vxw400 (GT == vxw400)",fontsize=16,color="burlywood",shape="box"];2891[label="vxw400/LT",fontsize=10,color="white",style="solid",shape="box"];197 -> 2891[label="",style="solid", color="burlywood", weight=9]; 2891 -> 259[label="",style="solid", color="burlywood", weight=3]; 2892[label="vxw400/EQ",fontsize=10,color="white",style="solid",shape="box"];197 -> 2892[label="",style="solid", color="burlywood", weight=9]; 2892 -> 260[label="",style="solid", color="burlywood", weight=3]; 2893[label="vxw400/GT",fontsize=10,color="white",style="solid",shape="box"];197 -> 2893[label="",style="solid", color="burlywood", weight=9]; 2893 -> 261[label="",style="solid", color="burlywood", weight=3]; 198[label="compare2 (vxw300,vxw301,vxw302) vxw400 ((vxw300,vxw301,vxw302) == vxw400)",fontsize=16,color="burlywood",shape="box"];2894[label="vxw400/(vxw4000,vxw4001,vxw4002)",fontsize=10,color="white",style="solid",shape="box"];198 -> 2894[label="",style="solid", color="burlywood", weight=9]; 2894 -> 262[label="",style="solid", color="burlywood", weight=3]; 199[label="primCmpInt (Pos (Succ vxw3000)) vxw400",fontsize=16,color="burlywood",shape="box"];2895[label="vxw400/Pos vxw4000",fontsize=10,color="white",style="solid",shape="box"];199 -> 2895[label="",style="solid", color="burlywood", weight=9]; 2895 -> 263[label="",style="solid", color="burlywood", weight=3]; 2896[label="vxw400/Neg vxw4000",fontsize=10,color="white",style="solid",shape="box"];199 -> 2896[label="",style="solid", color="burlywood", weight=9]; 2896 -> 264[label="",style="solid", color="burlywood", weight=3]; 200[label="primCmpInt (Pos Zero) vxw400",fontsize=16,color="burlywood",shape="box"];2897[label="vxw400/Pos vxw4000",fontsize=10,color="white",style="solid",shape="box"];200 -> 2897[label="",style="solid", color="burlywood", weight=9]; 2897 -> 265[label="",style="solid", color="burlywood", weight=3]; 2898[label="vxw400/Neg vxw4000",fontsize=10,color="white",style="solid",shape="box"];200 -> 2898[label="",style="solid", color="burlywood", weight=9]; 2898 -> 266[label="",style="solid", color="burlywood", weight=3]; 201[label="primCmpInt (Neg (Succ vxw3000)) vxw400",fontsize=16,color="burlywood",shape="box"];2899[label="vxw400/Pos vxw4000",fontsize=10,color="white",style="solid",shape="box"];201 -> 2899[label="",style="solid", color="burlywood", weight=9]; 2899 -> 267[label="",style="solid", color="burlywood", weight=3]; 2900[label="vxw400/Neg vxw4000",fontsize=10,color="white",style="solid",shape="box"];201 -> 2900[label="",style="solid", color="burlywood", weight=9]; 2900 -> 268[label="",style="solid", color="burlywood", weight=3]; 202[label="primCmpInt (Neg Zero) vxw400",fontsize=16,color="burlywood",shape="box"];2901[label="vxw400/Pos vxw4000",fontsize=10,color="white",style="solid",shape="box"];202 -> 2901[label="",style="solid", color="burlywood", weight=9]; 2901 -> 269[label="",style="solid", color="burlywood", weight=3]; 2902[label="vxw400/Neg vxw4000",fontsize=10,color="white",style="solid",shape="box"];202 -> 2902[label="",style="solid", color="burlywood", weight=9]; 2902 -> 270[label="",style="solid", color="burlywood", weight=3]; 203[label="primCmpFloat (Float vxw300 (Pos vxw3010)) vxw400",fontsize=16,color="burlywood",shape="box"];2903[label="vxw400/Float vxw4000 vxw4001",fontsize=10,color="white",style="solid",shape="box"];203 -> 2903[label="",style="solid", color="burlywood", weight=9]; 2903 -> 271[label="",style="solid", color="burlywood", weight=3]; 204[label="primCmpFloat (Float vxw300 (Neg vxw3010)) vxw400",fontsize=16,color="burlywood",shape="box"];2904[label="vxw400/Float vxw4000 vxw4001",fontsize=10,color="white",style="solid",shape="box"];204 -> 2904[label="",style="solid", color="burlywood", weight=9]; 2904 -> 272[label="",style="solid", color="burlywood", weight=3]; 205[label="compare (vxw300 * vxw4001) (vxw4000 * vxw301)",fontsize=16,color="blue",shape="box"];2905[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];205 -> 2905[label="",style="solid", color="blue", weight=9]; 2905 -> 273[label="",style="solid", color="blue", weight=3]; 2906[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];205 -> 2906[label="",style="solid", color="blue", weight=9]; 2906 -> 274[label="",style="solid", color="blue", weight=3]; 206[label="EQ",fontsize=16,color="green",shape="box"];207[label="compare2 (Left vxw300) vxw400 (Left vxw300 == vxw400)",fontsize=16,color="burlywood",shape="box"];2907[label="vxw400/Left vxw4000",fontsize=10,color="white",style="solid",shape="box"];207 -> 2907[label="",style="solid", color="burlywood", weight=9]; 2907 -> 275[label="",style="solid", color="burlywood", weight=3]; 2908[label="vxw400/Right vxw4000",fontsize=10,color="white",style="solid",shape="box"];207 -> 2908[label="",style="solid", color="burlywood", weight=9]; 2908 -> 276[label="",style="solid", color="burlywood", weight=3]; 208[label="compare2 (Right vxw300) vxw400 (Right vxw300 == vxw400)",fontsize=16,color="burlywood",shape="box"];2909[label="vxw400/Left vxw4000",fontsize=10,color="white",style="solid",shape="box"];208 -> 2909[label="",style="solid", color="burlywood", weight=9]; 2909 -> 277[label="",style="solid", color="burlywood", weight=3]; 2910[label="vxw400/Right vxw4000",fontsize=10,color="white",style="solid",shape="box"];208 -> 2910[label="",style="solid", color="burlywood", weight=9]; 2910 -> 278[label="",style="solid", color="burlywood", weight=3]; 209[label="primCmpDouble (Double vxw300 (Pos vxw3010)) vxw400",fontsize=16,color="burlywood",shape="box"];2911[label="vxw400/Double vxw4000 vxw4001",fontsize=10,color="white",style="solid",shape="box"];209 -> 2911[label="",style="solid", color="burlywood", weight=9]; 2911 -> 279[label="",style="solid", color="burlywood", weight=3]; 210[label="primCmpDouble (Double vxw300 (Neg vxw3010)) vxw400",fontsize=16,color="burlywood",shape="box"];2912[label="vxw400/Double vxw4000 vxw4001",fontsize=10,color="white",style="solid",shape="box"];210 -> 2912[label="",style="solid", color="burlywood", weight=9]; 2912 -> 280[label="",style="solid", color="burlywood", weight=3]; 211[label="compare2 False vxw400 (False == vxw400)",fontsize=16,color="burlywood",shape="box"];2913[label="vxw400/False",fontsize=10,color="white",style="solid",shape="box"];211 -> 2913[label="",style="solid", color="burlywood", weight=9]; 2913 -> 281[label="",style="solid", color="burlywood", weight=3]; 2914[label="vxw400/True",fontsize=10,color="white",style="solid",shape="box"];211 -> 2914[label="",style="solid", color="burlywood", weight=9]; 2914 -> 282[label="",style="solid", color="burlywood", weight=3]; 212[label="compare2 True vxw400 (True == vxw400)",fontsize=16,color="burlywood",shape="box"];2915[label="vxw400/False",fontsize=10,color="white",style="solid",shape="box"];212 -> 2915[label="",style="solid", color="burlywood", weight=9]; 2915 -> 283[label="",style="solid", color="burlywood", weight=3]; 2916[label="vxw400/True",fontsize=10,color="white",style="solid",shape="box"];212 -> 2916[label="",style="solid", color="burlywood", weight=9]; 2916 -> 284[label="",style="solid", color="burlywood", weight=3]; 213[label="vxw24",fontsize=16,color="green",shape="box"];214[label="vxw23",fontsize=16,color="green",shape="box"];215[label="vxw24",fontsize=16,color="green",shape="box"];216[label="vxw23",fontsize=16,color="green",shape="box"];217[label="vxw24",fontsize=16,color="green",shape="box"];218[label="vxw23",fontsize=16,color="green",shape="box"];219[label="vxw24",fontsize=16,color="green",shape="box"];220[label="vxw23",fontsize=16,color="green",shape="box"];221[label="vxw24",fontsize=16,color="green",shape="box"];222[label="vxw23",fontsize=16,color="green",shape="box"];223[label="vxw24",fontsize=16,color="green",shape="box"];224[label="vxw23",fontsize=16,color="green",shape="box"];225[label="vxw24",fontsize=16,color="green",shape="box"];226[label="vxw23",fontsize=16,color="green",shape="box"];227[label="vxw24",fontsize=16,color="green",shape="box"];228[label="vxw23",fontsize=16,color="green",shape="box"];229[label="vxw24",fontsize=16,color="green",shape="box"];230[label="vxw23",fontsize=16,color="green",shape="box"];231[label="vxw24",fontsize=16,color="green",shape="box"];232[label="vxw23",fontsize=16,color="green",shape="box"];233[label="vxw24",fontsize=16,color="green",shape="box"];234[label="vxw23",fontsize=16,color="green",shape="box"];235[label="vxw24",fontsize=16,color="green",shape="box"];236[label="vxw23",fontsize=16,color="green",shape="box"];237[label="vxw24",fontsize=16,color="green",shape="box"];238[label="vxw23",fontsize=16,color="green",shape="box"];239[label="vxw24",fontsize=16,color="green",shape="box"];240[label="vxw23",fontsize=16,color="green",shape="box"];241[label="primCmpNat vxw300 vxw4000",fontsize=16,color="burlywood",shape="triangle"];2917[label="vxw300/Succ vxw3000",fontsize=10,color="white",style="solid",shape="box"];241 -> 2917[label="",style="solid", color="burlywood", weight=9]; 2917 -> 285[label="",style="solid", color="burlywood", weight=3]; 2918[label="vxw300/Zero",fontsize=10,color="white",style="solid",shape="box"];241 -> 2918[label="",style="solid", color="burlywood", weight=9]; 2918 -> 286[label="",style="solid", color="burlywood", weight=3]; 242[label="vxw4000",fontsize=16,color="green",shape="box"];243[label="vxw300",fontsize=16,color="green",shape="box"];244[label="vxw4001",fontsize=16,color="green",shape="box"];245[label="vxw4000",fontsize=16,color="green",shape="box"];246[label="vxw301",fontsize=16,color="green",shape="box"];247[label="vxw300",fontsize=16,color="green",shape="box"];248[label="compare2 Nothing Nothing (Nothing == Nothing)",fontsize=16,color="black",shape="box"];248 -> 287[label="",style="solid", color="black", weight=3]; 249[label="compare2 Nothing (Just vxw4000) (Nothing == Just vxw4000)",fontsize=16,color="black",shape="box"];249 -> 288[label="",style="solid", color="black", weight=3]; 250[label="compare2 (Just vxw300) Nothing (Just vxw300 == Nothing)",fontsize=16,color="black",shape="box"];250 -> 289[label="",style="solid", color="black", weight=3]; 251[label="compare2 (Just vxw300) (Just vxw4000) (Just vxw300 == Just vxw4000)",fontsize=16,color="black",shape="box"];251 -> 290[label="",style="solid", color="black", weight=3]; 252[label="compare2 (vxw300,vxw301) (vxw4000,vxw4001) ((vxw300,vxw301) == (vxw4000,vxw4001))",fontsize=16,color="black",shape="box"];252 -> 291[label="",style="solid", color="black", weight=3]; 253[label="compare2 LT LT (LT == LT)",fontsize=16,color="black",shape="box"];253 -> 292[label="",style="solid", color="black", weight=3]; 254[label="compare2 LT EQ (LT == EQ)",fontsize=16,color="black",shape="box"];254 -> 293[label="",style="solid", color="black", weight=3]; 255[label="compare2 LT GT (LT == GT)",fontsize=16,color="black",shape="box"];255 -> 294[label="",style="solid", color="black", weight=3]; 256[label="compare2 EQ LT (EQ == LT)",fontsize=16,color="black",shape="box"];256 -> 295[label="",style="solid", color="black", weight=3]; 257[label="compare2 EQ EQ (EQ == EQ)",fontsize=16,color="black",shape="box"];257 -> 296[label="",style="solid", color="black", weight=3]; 258[label="compare2 EQ GT (EQ == GT)",fontsize=16,color="black",shape="box"];258 -> 297[label="",style="solid", color="black", weight=3]; 259[label="compare2 GT LT (GT == LT)",fontsize=16,color="black",shape="box"];259 -> 298[label="",style="solid", color="black", weight=3]; 260[label="compare2 GT EQ (GT == EQ)",fontsize=16,color="black",shape="box"];260 -> 299[label="",style="solid", color="black", weight=3]; 261[label="compare2 GT GT (GT == GT)",fontsize=16,color="black",shape="box"];261 -> 300[label="",style="solid", color="black", weight=3]; 262[label="compare2 (vxw300,vxw301,vxw302) (vxw4000,vxw4001,vxw4002) ((vxw300,vxw301,vxw302) == (vxw4000,vxw4001,vxw4002))",fontsize=16,color="black",shape="box"];262 -> 301[label="",style="solid", color="black", weight=3]; 263[label="primCmpInt (Pos (Succ vxw3000)) (Pos vxw4000)",fontsize=16,color="black",shape="box"];263 -> 302[label="",style="solid", color="black", weight=3]; 264[label="primCmpInt (Pos (Succ vxw3000)) (Neg vxw4000)",fontsize=16,color="black",shape="box"];264 -> 303[label="",style="solid", color="black", weight=3]; 265[label="primCmpInt (Pos Zero) (Pos vxw4000)",fontsize=16,color="burlywood",shape="box"];2919[label="vxw4000/Succ vxw40000",fontsize=10,color="white",style="solid",shape="box"];265 -> 2919[label="",style="solid", color="burlywood", weight=9]; 2919 -> 304[label="",style="solid", color="burlywood", weight=3]; 2920[label="vxw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];265 -> 2920[label="",style="solid", color="burlywood", weight=9]; 2920 -> 305[label="",style="solid", color="burlywood", weight=3]; 266[label="primCmpInt (Pos Zero) (Neg vxw4000)",fontsize=16,color="burlywood",shape="box"];2921[label="vxw4000/Succ vxw40000",fontsize=10,color="white",style="solid",shape="box"];266 -> 2921[label="",style="solid", color="burlywood", weight=9]; 2921 -> 306[label="",style="solid", color="burlywood", weight=3]; 2922[label="vxw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];266 -> 2922[label="",style="solid", color="burlywood", weight=9]; 2922 -> 307[label="",style="solid", color="burlywood", weight=3]; 267[label="primCmpInt (Neg (Succ vxw3000)) (Pos vxw4000)",fontsize=16,color="black",shape="box"];267 -> 308[label="",style="solid", color="black", weight=3]; 268[label="primCmpInt (Neg (Succ vxw3000)) (Neg vxw4000)",fontsize=16,color="black",shape="box"];268 -> 309[label="",style="solid", color="black", weight=3]; 269[label="primCmpInt (Neg Zero) (Pos vxw4000)",fontsize=16,color="burlywood",shape="box"];2923[label="vxw4000/Succ vxw40000",fontsize=10,color="white",style="solid",shape="box"];269 -> 2923[label="",style="solid", color="burlywood", weight=9]; 2923 -> 310[label="",style="solid", color="burlywood", weight=3]; 2924[label="vxw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];269 -> 2924[label="",style="solid", color="burlywood", weight=9]; 2924 -> 311[label="",style="solid", color="burlywood", weight=3]; 270[label="primCmpInt (Neg Zero) (Neg vxw4000)",fontsize=16,color="burlywood",shape="box"];2925[label="vxw4000/Succ vxw40000",fontsize=10,color="white",style="solid",shape="box"];270 -> 2925[label="",style="solid", color="burlywood", weight=9]; 2925 -> 312[label="",style="solid", color="burlywood", weight=3]; 2926[label="vxw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];270 -> 2926[label="",style="solid", color="burlywood", weight=9]; 2926 -> 313[label="",style="solid", color="burlywood", weight=3]; 271[label="primCmpFloat (Float vxw300 (Pos vxw3010)) (Float vxw4000 vxw4001)",fontsize=16,color="burlywood",shape="box"];2927[label="vxw4001/Pos vxw40010",fontsize=10,color="white",style="solid",shape="box"];271 -> 2927[label="",style="solid", color="burlywood", weight=9]; 2927 -> 314[label="",style="solid", color="burlywood", weight=3]; 2928[label="vxw4001/Neg vxw40010",fontsize=10,color="white",style="solid",shape="box"];271 -> 2928[label="",style="solid", color="burlywood", weight=9]; 2928 -> 315[label="",style="solid", color="burlywood", weight=3]; 272[label="primCmpFloat (Float vxw300 (Neg vxw3010)) (Float vxw4000 vxw4001)",fontsize=16,color="burlywood",shape="box"];2929[label="vxw4001/Pos vxw40010",fontsize=10,color="white",style="solid",shape="box"];272 -> 2929[label="",style="solid", color="burlywood", weight=9]; 2929 -> 316[label="",style="solid", color="burlywood", weight=3]; 2930[label="vxw4001/Neg vxw40010",fontsize=10,color="white",style="solid",shape="box"];272 -> 2930[label="",style="solid", color="burlywood", weight=9]; 2930 -> 317[label="",style="solid", color="burlywood", weight=3]; 273 -> 117[label="",style="dashed", color="red", weight=0]; 273[label="compare (vxw300 * vxw4001) (vxw4000 * vxw301)",fontsize=16,color="magenta"];273 -> 318[label="",style="dashed", color="magenta", weight=3]; 273 -> 319[label="",style="dashed", color="magenta", weight=3]; 274 -> 123[label="",style="dashed", color="red", weight=0]; 274[label="compare (vxw300 * vxw4001) (vxw4000 * vxw301)",fontsize=16,color="magenta"];274 -> 320[label="",style="dashed", color="magenta", weight=3]; 274 -> 321[label="",style="dashed", color="magenta", weight=3]; 275[label="compare2 (Left vxw300) (Left vxw4000) (Left vxw300 == Left vxw4000)",fontsize=16,color="black",shape="box"];275 -> 322[label="",style="solid", color="black", weight=3]; 276[label="compare2 (Left vxw300) (Right vxw4000) (Left vxw300 == Right vxw4000)",fontsize=16,color="black",shape="box"];276 -> 323[label="",style="solid", color="black", weight=3]; 277[label="compare2 (Right vxw300) (Left vxw4000) (Right vxw300 == Left vxw4000)",fontsize=16,color="black",shape="box"];277 -> 324[label="",style="solid", color="black", weight=3]; 278[label="compare2 (Right vxw300) (Right vxw4000) (Right vxw300 == Right vxw4000)",fontsize=16,color="black",shape="box"];278 -> 325[label="",style="solid", color="black", weight=3]; 279[label="primCmpDouble (Double vxw300 (Pos vxw3010)) (Double vxw4000 vxw4001)",fontsize=16,color="burlywood",shape="box"];2931[label="vxw4001/Pos vxw40010",fontsize=10,color="white",style="solid",shape="box"];279 -> 2931[label="",style="solid", color="burlywood", weight=9]; 2931 -> 326[label="",style="solid", color="burlywood", weight=3]; 2932[label="vxw4001/Neg vxw40010",fontsize=10,color="white",style="solid",shape="box"];279 -> 2932[label="",style="solid", color="burlywood", weight=9]; 2932 -> 327[label="",style="solid", color="burlywood", weight=3]; 280[label="primCmpDouble (Double vxw300 (Neg vxw3010)) (Double vxw4000 vxw4001)",fontsize=16,color="burlywood",shape="box"];2933[label="vxw4001/Pos vxw40010",fontsize=10,color="white",style="solid",shape="box"];280 -> 2933[label="",style="solid", color="burlywood", weight=9]; 2933 -> 328[label="",style="solid", color="burlywood", weight=3]; 2934[label="vxw4001/Neg vxw40010",fontsize=10,color="white",style="solid",shape="box"];280 -> 2934[label="",style="solid", color="burlywood", weight=9]; 2934 -> 329[label="",style="solid", color="burlywood", weight=3]; 281[label="compare2 False False (False == False)",fontsize=16,color="black",shape="box"];281 -> 330[label="",style="solid", color="black", weight=3]; 282[label="compare2 False True (False == True)",fontsize=16,color="black",shape="box"];282 -> 331[label="",style="solid", color="black", weight=3]; 283[label="compare2 True False (True == False)",fontsize=16,color="black",shape="box"];283 -> 332[label="",style="solid", color="black", weight=3]; 284[label="compare2 True True (True == True)",fontsize=16,color="black",shape="box"];284 -> 333[label="",style="solid", color="black", weight=3]; 285[label="primCmpNat (Succ vxw3000) vxw4000",fontsize=16,color="burlywood",shape="box"];2935[label="vxw4000/Succ vxw40000",fontsize=10,color="white",style="solid",shape="box"];285 -> 2935[label="",style="solid", color="burlywood", weight=9]; 2935 -> 334[label="",style="solid", color="burlywood", weight=3]; 2936[label="vxw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];285 -> 2936[label="",style="solid", color="burlywood", weight=9]; 2936 -> 335[label="",style="solid", color="burlywood", weight=3]; 286[label="primCmpNat Zero vxw4000",fontsize=16,color="burlywood",shape="box"];2937[label="vxw4000/Succ vxw40000",fontsize=10,color="white",style="solid",shape="box"];286 -> 2937[label="",style="solid", color="burlywood", weight=9]; 2937 -> 336[label="",style="solid", color="burlywood", weight=3]; 2938[label="vxw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];286 -> 2938[label="",style="solid", color="burlywood", weight=9]; 2938 -> 337[label="",style="solid", color="burlywood", weight=3]; 287[label="compare2 Nothing Nothing True",fontsize=16,color="black",shape="box"];287 -> 338[label="",style="solid", color="black", weight=3]; 288[label="compare2 Nothing (Just vxw4000) False",fontsize=16,color="black",shape="box"];288 -> 339[label="",style="solid", color="black", weight=3]; 289[label="compare2 (Just vxw300) Nothing False",fontsize=16,color="black",shape="box"];289 -> 340[label="",style="solid", color="black", weight=3]; 290 -> 341[label="",style="dashed", color="red", weight=0]; 290[label="compare2 (Just vxw300) (Just vxw4000) (vxw300 == vxw4000)",fontsize=16,color="magenta"];290 -> 342[label="",style="dashed", color="magenta", weight=3]; 290 -> 343[label="",style="dashed", color="magenta", weight=3]; 290 -> 344[label="",style="dashed", color="magenta", weight=3]; 291 -> 758[label="",style="dashed", color="red", weight=0]; 291[label="compare2 (vxw300,vxw301) (vxw4000,vxw4001) (vxw300 == vxw4000 && vxw301 == vxw4001)",fontsize=16,color="magenta"];291 -> 759[label="",style="dashed", color="magenta", weight=3]; 291 -> 760[label="",style="dashed", color="magenta", weight=3]; 291 -> 761[label="",style="dashed", color="magenta", weight=3]; 291 -> 762[label="",style="dashed", color="magenta", weight=3]; 291 -> 763[label="",style="dashed", color="magenta", weight=3]; 292[label="compare2 LT LT True",fontsize=16,color="black",shape="box"];292 -> 351[label="",style="solid", color="black", weight=3]; 293[label="compare2 LT EQ False",fontsize=16,color="black",shape="box"];293 -> 352[label="",style="solid", color="black", weight=3]; 294[label="compare2 LT GT False",fontsize=16,color="black",shape="box"];294 -> 353[label="",style="solid", color="black", weight=3]; 295[label="compare2 EQ LT False",fontsize=16,color="black",shape="box"];295 -> 354[label="",style="solid", color="black", weight=3]; 296[label="compare2 EQ EQ True",fontsize=16,color="black",shape="box"];296 -> 355[label="",style="solid", color="black", weight=3]; 297[label="compare2 EQ GT False",fontsize=16,color="black",shape="box"];297 -> 356[label="",style="solid", color="black", weight=3]; 298[label="compare2 GT LT False",fontsize=16,color="black",shape="box"];298 -> 357[label="",style="solid", color="black", weight=3]; 299[label="compare2 GT EQ False",fontsize=16,color="black",shape="box"];299 -> 358[label="",style="solid", color="black", weight=3]; 300[label="compare2 GT GT True",fontsize=16,color="black",shape="box"];300 -> 359[label="",style="solid", color="black", weight=3]; 301 -> 805[label="",style="dashed", color="red", weight=0]; 301[label="compare2 (vxw300,vxw301,vxw302) (vxw4000,vxw4001,vxw4002) (vxw300 == vxw4000 && vxw301 == vxw4001 && vxw302 == vxw4002)",fontsize=16,color="magenta"];301 -> 806[label="",style="dashed", color="magenta", weight=3]; 301 -> 807[label="",style="dashed", color="magenta", weight=3]; 301 -> 808[label="",style="dashed", color="magenta", weight=3]; 301 -> 809[label="",style="dashed", color="magenta", weight=3]; 301 -> 810[label="",style="dashed", color="magenta", weight=3]; 301 -> 811[label="",style="dashed", color="magenta", weight=3]; 301 -> 812[label="",style="dashed", color="magenta", weight=3]; 302 -> 241[label="",style="dashed", color="red", weight=0]; 302[label="primCmpNat (Succ vxw3000) vxw4000",fontsize=16,color="magenta"];302 -> 368[label="",style="dashed", color="magenta", weight=3]; 302 -> 369[label="",style="dashed", color="magenta", weight=3]; 303[label="GT",fontsize=16,color="green",shape="box"];304[label="primCmpInt (Pos Zero) (Pos (Succ vxw40000))",fontsize=16,color="black",shape="box"];304 -> 370[label="",style="solid", color="black", weight=3]; 305[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];305 -> 371[label="",style="solid", color="black", weight=3]; 306[label="primCmpInt (Pos Zero) (Neg (Succ vxw40000))",fontsize=16,color="black",shape="box"];306 -> 372[label="",style="solid", color="black", weight=3]; 307[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];307 -> 373[label="",style="solid", color="black", weight=3]; 308[label="LT",fontsize=16,color="green",shape="box"];309 -> 241[label="",style="dashed", color="red", weight=0]; 309[label="primCmpNat vxw4000 (Succ vxw3000)",fontsize=16,color="magenta"];309 -> 374[label="",style="dashed", color="magenta", weight=3]; 309 -> 375[label="",style="dashed", color="magenta", weight=3]; 310[label="primCmpInt (Neg Zero) (Pos (Succ vxw40000))",fontsize=16,color="black",shape="box"];310 -> 376[label="",style="solid", color="black", weight=3]; 311[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];311 -> 377[label="",style="solid", color="black", weight=3]; 312[label="primCmpInt (Neg Zero) (Neg (Succ vxw40000))",fontsize=16,color="black",shape="box"];312 -> 378[label="",style="solid", color="black", weight=3]; 313[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];313 -> 379[label="",style="solid", color="black", weight=3]; 314[label="primCmpFloat (Float vxw300 (Pos vxw3010)) (Float vxw4000 (Pos vxw40010))",fontsize=16,color="black",shape="box"];314 -> 380[label="",style="solid", color="black", weight=3]; 315[label="primCmpFloat (Float vxw300 (Pos vxw3010)) (Float vxw4000 (Neg vxw40010))",fontsize=16,color="black",shape="box"];315 -> 381[label="",style="solid", color="black", weight=3]; 316[label="primCmpFloat (Float vxw300 (Neg vxw3010)) (Float vxw4000 (Pos vxw40010))",fontsize=16,color="black",shape="box"];316 -> 382[label="",style="solid", color="black", weight=3]; 317[label="primCmpFloat (Float vxw300 (Neg vxw3010)) (Float vxw4000 (Neg vxw40010))",fontsize=16,color="black",shape="box"];317 -> 383[label="",style="solid", color="black", weight=3]; 318[label="vxw4000 * vxw301",fontsize=16,color="burlywood",shape="triangle"];2939[label="vxw4000/Integer vxw40000",fontsize=10,color="white",style="solid",shape="box"];318 -> 2939[label="",style="solid", color="burlywood", weight=9]; 2939 -> 384[label="",style="solid", color="burlywood", weight=3]; 319 -> 318[label="",style="dashed", color="red", weight=0]; 319[label="vxw300 * vxw4001",fontsize=16,color="magenta"];319 -> 385[label="",style="dashed", color="magenta", weight=3]; 319 -> 386[label="",style="dashed", color="magenta", weight=3]; 320[label="vxw4000 * vxw301",fontsize=16,color="black",shape="triangle"];320 -> 387[label="",style="solid", color="black", weight=3]; 321 -> 320[label="",style="dashed", color="red", weight=0]; 321[label="vxw300 * vxw4001",fontsize=16,color="magenta"];321 -> 388[label="",style="dashed", color="magenta", weight=3]; 321 -> 389[label="",style="dashed", color="magenta", weight=3]; 322 -> 390[label="",style="dashed", color="red", weight=0]; 322[label="compare2 (Left vxw300) (Left vxw4000) (vxw300 == vxw4000)",fontsize=16,color="magenta"];322 -> 391[label="",style="dashed", color="magenta", weight=3]; 322 -> 392[label="",style="dashed", color="magenta", weight=3]; 322 -> 393[label="",style="dashed", color="magenta", weight=3]; 323[label="compare2 (Left vxw300) (Right vxw4000) False",fontsize=16,color="black",shape="box"];323 -> 394[label="",style="solid", color="black", weight=3]; 324[label="compare2 (Right vxw300) (Left vxw4000) False",fontsize=16,color="black",shape="box"];324 -> 395[label="",style="solid", color="black", weight=3]; 325 -> 396[label="",style="dashed", color="red", weight=0]; 325[label="compare2 (Right vxw300) (Right vxw4000) (vxw300 == vxw4000)",fontsize=16,color="magenta"];325 -> 397[label="",style="dashed", color="magenta", weight=3]; 325 -> 398[label="",style="dashed", color="magenta", weight=3]; 325 -> 399[label="",style="dashed", color="magenta", weight=3]; 326[label="primCmpDouble (Double vxw300 (Pos vxw3010)) (Double vxw4000 (Pos vxw40010))",fontsize=16,color="black",shape="box"];326 -> 400[label="",style="solid", color="black", weight=3]; 327[label="primCmpDouble (Double vxw300 (Pos vxw3010)) (Double vxw4000 (Neg vxw40010))",fontsize=16,color="black",shape="box"];327 -> 401[label="",style="solid", color="black", weight=3]; 328[label="primCmpDouble (Double vxw300 (Neg vxw3010)) (Double vxw4000 (Pos vxw40010))",fontsize=16,color="black",shape="box"];328 -> 402[label="",style="solid", color="black", weight=3]; 329[label="primCmpDouble (Double vxw300 (Neg vxw3010)) (Double vxw4000 (Neg vxw40010))",fontsize=16,color="black",shape="box"];329 -> 403[label="",style="solid", color="black", weight=3]; 330[label="compare2 False False True",fontsize=16,color="black",shape="box"];330 -> 404[label="",style="solid", color="black", weight=3]; 331[label="compare2 False True False",fontsize=16,color="black",shape="box"];331 -> 405[label="",style="solid", color="black", weight=3]; 332[label="compare2 True False False",fontsize=16,color="black",shape="box"];332 -> 406[label="",style="solid", color="black", weight=3]; 333[label="compare2 True True True",fontsize=16,color="black",shape="box"];333 -> 407[label="",style="solid", color="black", weight=3]; 334[label="primCmpNat (Succ vxw3000) (Succ vxw40000)",fontsize=16,color="black",shape="box"];334 -> 408[label="",style="solid", color="black", weight=3]; 335[label="primCmpNat (Succ vxw3000) Zero",fontsize=16,color="black",shape="box"];335 -> 409[label="",style="solid", color="black", weight=3]; 336[label="primCmpNat Zero (Succ vxw40000)",fontsize=16,color="black",shape="box"];336 -> 410[label="",style="solid", color="black", weight=3]; 337[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];337 -> 411[label="",style="solid", color="black", weight=3]; 338[label="EQ",fontsize=16,color="green",shape="box"];339[label="compare1 Nothing (Just vxw4000) (Nothing <= Just vxw4000)",fontsize=16,color="black",shape="box"];339 -> 412[label="",style="solid", color="black", weight=3]; 340[label="compare1 (Just vxw300) Nothing (Just vxw300 <= Nothing)",fontsize=16,color="black",shape="box"];340 -> 413[label="",style="solid", color="black", weight=3]; 342[label="vxw4000",fontsize=16,color="green",shape="box"];343[label="vxw300",fontsize=16,color="green",shape="box"];344[label="vxw300 == vxw4000",fontsize=16,color="blue",shape="box"];2940[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];344 -> 2940[label="",style="solid", color="blue", weight=9]; 2940 -> 414[label="",style="solid", color="blue", weight=3]; 2941[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];344 -> 2941[label="",style="solid", color="blue", weight=9]; 2941 -> 415[label="",style="solid", color="blue", weight=3]; 2942[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];344 -> 2942[label="",style="solid", color="blue", weight=9]; 2942 -> 416[label="",style="solid", color="blue", weight=3]; 2943[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];344 -> 2943[label="",style="solid", color="blue", weight=9]; 2943 -> 417[label="",style="solid", color="blue", weight=3]; 2944[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];344 -> 2944[label="",style="solid", color="blue", weight=9]; 2944 -> 418[label="",style="solid", color="blue", weight=3]; 2945[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];344 -> 2945[label="",style="solid", color="blue", weight=9]; 2945 -> 419[label="",style="solid", color="blue", weight=3]; 2946[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];344 -> 2946[label="",style="solid", color="blue", weight=9]; 2946 -> 420[label="",style="solid", color="blue", weight=3]; 2947[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];344 -> 2947[label="",style="solid", color="blue", weight=9]; 2947 -> 421[label="",style="solid", color="blue", weight=3]; 2948[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];344 -> 2948[label="",style="solid", color="blue", weight=9]; 2948 -> 422[label="",style="solid", color="blue", weight=3]; 2949[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];344 -> 2949[label="",style="solid", color="blue", weight=9]; 2949 -> 423[label="",style="solid", color="blue", weight=3]; 2950[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];344 -> 2950[label="",style="solid", color="blue", weight=9]; 2950 -> 424[label="",style="solid", color="blue", weight=3]; 2951[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];344 -> 2951[label="",style="solid", color="blue", weight=9]; 2951 -> 425[label="",style="solid", color="blue", weight=3]; 2952[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];344 -> 2952[label="",style="solid", color="blue", weight=9]; 2952 -> 426[label="",style="solid", color="blue", weight=3]; 2953[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];344 -> 2953[label="",style="solid", color="blue", weight=9]; 2953 -> 427[label="",style="solid", color="blue", weight=3]; 341[label="compare2 (Just vxw30) (Just vxw31) vxw32",fontsize=16,color="burlywood",shape="triangle"];2954[label="vxw32/False",fontsize=10,color="white",style="solid",shape="box"];341 -> 2954[label="",style="solid", color="burlywood", weight=9]; 2954 -> 428[label="",style="solid", color="burlywood", weight=3]; 2955[label="vxw32/True",fontsize=10,color="white",style="solid",shape="box"];341 -> 2955[label="",style="solid", color="burlywood", weight=9]; 2955 -> 429[label="",style="solid", color="burlywood", weight=3]; 759[label="vxw301",fontsize=16,color="green",shape="box"];760 -> 837[label="",style="dashed", color="red", weight=0]; 760[label="vxw300 == vxw4000 && vxw301 == vxw4001",fontsize=16,color="magenta"];760 -> 838[label="",style="dashed", color="magenta", weight=3]; 760 -> 839[label="",style="dashed", color="magenta", weight=3]; 761[label="vxw300",fontsize=16,color="green",shape="box"];762[label="vxw4000",fontsize=16,color="green",shape="box"];763[label="vxw4001",fontsize=16,color="green",shape="box"];758[label="compare2 (vxw79,vxw80) (vxw81,vxw82) vxw83",fontsize=16,color="burlywood",shape="triangle"];2956[label="vxw83/False",fontsize=10,color="white",style="solid",shape="box"];758 -> 2956[label="",style="solid", color="burlywood", weight=9]; 2956 -> 783[label="",style="solid", color="burlywood", weight=3]; 2957[label="vxw83/True",fontsize=10,color="white",style="solid",shape="box"];758 -> 2957[label="",style="solid", color="burlywood", weight=9]; 2957 -> 784[label="",style="solid", color="burlywood", weight=3]; 351[label="EQ",fontsize=16,color="green",shape="box"];352[label="compare1 LT EQ (LT <= EQ)",fontsize=16,color="black",shape="box"];352 -> 446[label="",style="solid", color="black", weight=3]; 353[label="compare1 LT GT (LT <= GT)",fontsize=16,color="black",shape="box"];353 -> 447[label="",style="solid", color="black", weight=3]; 354[label="compare1 EQ LT (EQ <= LT)",fontsize=16,color="black",shape="box"];354 -> 448[label="",style="solid", color="black", weight=3]; 355[label="EQ",fontsize=16,color="green",shape="box"];356[label="compare1 EQ GT (EQ <= GT)",fontsize=16,color="black",shape="box"];356 -> 449[label="",style="solid", color="black", weight=3]; 357[label="compare1 GT LT (GT <= LT)",fontsize=16,color="black",shape="box"];357 -> 450[label="",style="solid", color="black", weight=3]; 358[label="compare1 GT EQ (GT <= EQ)",fontsize=16,color="black",shape="box"];358 -> 451[label="",style="solid", color="black", weight=3]; 359[label="EQ",fontsize=16,color="green",shape="box"];806[label="vxw301",fontsize=16,color="green",shape="box"];807[label="vxw302",fontsize=16,color="green",shape="box"];808[label="vxw300",fontsize=16,color="green",shape="box"];809[label="vxw4000",fontsize=16,color="green",shape="box"];810 -> 837[label="",style="dashed", color="red", weight=0]; 810[label="vxw300 == vxw4000 && vxw301 == vxw4001 && vxw302 == vxw4002",fontsize=16,color="magenta"];810 -> 840[label="",style="dashed", color="magenta", weight=3]; 810 -> 841[label="",style="dashed", color="magenta", weight=3]; 811[label="vxw4002",fontsize=16,color="green",shape="box"];812[label="vxw4001",fontsize=16,color="green",shape="box"];805[label="compare2 (vxw52,vxw53,vxw54) (vxw55,vxw56,vxw57) vxw91",fontsize=16,color="burlywood",shape="triangle"];2958[label="vxw91/False",fontsize=10,color="white",style="solid",shape="box"];805 -> 2958[label="",style="solid", color="burlywood", weight=9]; 2958 -> 821[label="",style="solid", color="burlywood", weight=3]; 2959[label="vxw91/True",fontsize=10,color="white",style="solid",shape="box"];805 -> 2959[label="",style="solid", color="burlywood", weight=9]; 2959 -> 822[label="",style="solid", color="burlywood", weight=3]; 368[label="Succ vxw3000",fontsize=16,color="green",shape="box"];369[label="vxw4000",fontsize=16,color="green",shape="box"];370 -> 241[label="",style="dashed", color="red", weight=0]; 370[label="primCmpNat Zero (Succ vxw40000)",fontsize=16,color="magenta"];370 -> 468[label="",style="dashed", color="magenta", weight=3]; 370 -> 469[label="",style="dashed", color="magenta", weight=3]; 371[label="EQ",fontsize=16,color="green",shape="box"];372[label="GT",fontsize=16,color="green",shape="box"];373[label="EQ",fontsize=16,color="green",shape="box"];374[label="vxw4000",fontsize=16,color="green",shape="box"];375[label="Succ vxw3000",fontsize=16,color="green",shape="box"];376[label="LT",fontsize=16,color="green",shape="box"];377[label="EQ",fontsize=16,color="green",shape="box"];378 -> 241[label="",style="dashed", color="red", weight=0]; 378[label="primCmpNat (Succ vxw40000) Zero",fontsize=16,color="magenta"];378 -> 470[label="",style="dashed", color="magenta", weight=3]; 378 -> 471[label="",style="dashed", color="magenta", weight=3]; 379[label="EQ",fontsize=16,color="green",shape="box"];380 -> 123[label="",style="dashed", color="red", weight=0]; 380[label="compare (vxw300 * Pos vxw40010) (Pos vxw3010 * vxw4000)",fontsize=16,color="magenta"];380 -> 472[label="",style="dashed", color="magenta", weight=3]; 380 -> 473[label="",style="dashed", color="magenta", weight=3]; 381 -> 123[label="",style="dashed", color="red", weight=0]; 381[label="compare (vxw300 * Pos vxw40010) (Neg vxw3010 * vxw4000)",fontsize=16,color="magenta"];381 -> 474[label="",style="dashed", color="magenta", weight=3]; 381 -> 475[label="",style="dashed", color="magenta", weight=3]; 382 -> 123[label="",style="dashed", color="red", weight=0]; 382[label="compare (vxw300 * Neg vxw40010) (Pos vxw3010 * vxw4000)",fontsize=16,color="magenta"];382 -> 476[label="",style="dashed", color="magenta", weight=3]; 382 -> 477[label="",style="dashed", color="magenta", weight=3]; 383 -> 123[label="",style="dashed", color="red", weight=0]; 383[label="compare (vxw300 * Neg vxw40010) (Neg vxw3010 * vxw4000)",fontsize=16,color="magenta"];383 -> 478[label="",style="dashed", color="magenta", weight=3]; 383 -> 479[label="",style="dashed", color="magenta", weight=3]; 384[label="Integer vxw40000 * vxw301",fontsize=16,color="burlywood",shape="box"];2960[label="vxw301/Integer vxw3010",fontsize=10,color="white",style="solid",shape="box"];384 -> 2960[label="",style="solid", color="burlywood", weight=9]; 2960 -> 480[label="",style="solid", color="burlywood", weight=3]; 385[label="vxw4001",fontsize=16,color="green",shape="box"];386[label="vxw300",fontsize=16,color="green",shape="box"];387[label="primMulInt vxw4000 vxw301",fontsize=16,color="burlywood",shape="triangle"];2961[label="vxw4000/Pos vxw40000",fontsize=10,color="white",style="solid",shape="box"];387 -> 2961[label="",style="solid", color="burlywood", weight=9]; 2961 -> 481[label="",style="solid", color="burlywood", weight=3]; 2962[label="vxw4000/Neg vxw40000",fontsize=10,color="white",style="solid",shape="box"];387 -> 2962[label="",style="solid", color="burlywood", weight=9]; 2962 -> 482[label="",style="solid", color="burlywood", weight=3]; 388[label="vxw4001",fontsize=16,color="green",shape="box"];389[label="vxw300",fontsize=16,color="green",shape="box"];391[label="vxw300",fontsize=16,color="green",shape="box"];392[label="vxw4000",fontsize=16,color="green",shape="box"];393[label="vxw300 == vxw4000",fontsize=16,color="blue",shape="box"];2963[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];393 -> 2963[label="",style="solid", color="blue", weight=9]; 2963 -> 483[label="",style="solid", color="blue", weight=3]; 2964[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];393 -> 2964[label="",style="solid", color="blue", weight=9]; 2964 -> 484[label="",style="solid", color="blue", weight=3]; 2965[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];393 -> 2965[label="",style="solid", color="blue", weight=9]; 2965 -> 485[label="",style="solid", color="blue", weight=3]; 2966[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];393 -> 2966[label="",style="solid", color="blue", weight=9]; 2966 -> 486[label="",style="solid", color="blue", weight=3]; 2967[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];393 -> 2967[label="",style="solid", color="blue", weight=9]; 2967 -> 487[label="",style="solid", color="blue", weight=3]; 2968[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];393 -> 2968[label="",style="solid", color="blue", weight=9]; 2968 -> 488[label="",style="solid", color="blue", weight=3]; 2969[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];393 -> 2969[label="",style="solid", color="blue", weight=9]; 2969 -> 489[label="",style="solid", color="blue", weight=3]; 2970[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];393 -> 2970[label="",style="solid", color="blue", weight=9]; 2970 -> 490[label="",style="solid", color="blue", weight=3]; 2971[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];393 -> 2971[label="",style="solid", color="blue", weight=9]; 2971 -> 491[label="",style="solid", color="blue", weight=3]; 2972[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];393 -> 2972[label="",style="solid", color="blue", weight=9]; 2972 -> 492[label="",style="solid", color="blue", weight=3]; 2973[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];393 -> 2973[label="",style="solid", color="blue", weight=9]; 2973 -> 493[label="",style="solid", color="blue", weight=3]; 2974[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];393 -> 2974[label="",style="solid", color="blue", weight=9]; 2974 -> 494[label="",style="solid", color="blue", weight=3]; 2975[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];393 -> 2975[label="",style="solid", color="blue", weight=9]; 2975 -> 495[label="",style="solid", color="blue", weight=3]; 2976[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];393 -> 2976[label="",style="solid", color="blue", weight=9]; 2976 -> 496[label="",style="solid", color="blue", weight=3]; 390[label="compare2 (Left vxw63) (Left vxw64) vxw65",fontsize=16,color="burlywood",shape="triangle"];2977[label="vxw65/False",fontsize=10,color="white",style="solid",shape="box"];390 -> 2977[label="",style="solid", color="burlywood", weight=9]; 2977 -> 497[label="",style="solid", color="burlywood", weight=3]; 2978[label="vxw65/True",fontsize=10,color="white",style="solid",shape="box"];390 -> 2978[label="",style="solid", color="burlywood", weight=9]; 2978 -> 498[label="",style="solid", color="burlywood", weight=3]; 394[label="compare1 (Left vxw300) (Right vxw4000) (Left vxw300 <= Right vxw4000)",fontsize=16,color="black",shape="box"];394 -> 499[label="",style="solid", color="black", weight=3]; 395[label="compare1 (Right vxw300) (Left vxw4000) (Right vxw300 <= Left vxw4000)",fontsize=16,color="black",shape="box"];395 -> 500[label="",style="solid", color="black", weight=3]; 397[label="vxw4000",fontsize=16,color="green",shape="box"];398[label="vxw300 == vxw4000",fontsize=16,color="blue",shape="box"];2979[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];398 -> 2979[label="",style="solid", color="blue", weight=9]; 2979 -> 501[label="",style="solid", color="blue", weight=3]; 2980[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];398 -> 2980[label="",style="solid", color="blue", weight=9]; 2980 -> 502[label="",style="solid", color="blue", weight=3]; 2981[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];398 -> 2981[label="",style="solid", color="blue", weight=9]; 2981 -> 503[label="",style="solid", color="blue", weight=3]; 2982[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];398 -> 2982[label="",style="solid", color="blue", weight=9]; 2982 -> 504[label="",style="solid", color="blue", weight=3]; 2983[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];398 -> 2983[label="",style="solid", color="blue", weight=9]; 2983 -> 505[label="",style="solid", color="blue", weight=3]; 2984[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];398 -> 2984[label="",style="solid", color="blue", weight=9]; 2984 -> 506[label="",style="solid", color="blue", weight=3]; 2985[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];398 -> 2985[label="",style="solid", color="blue", weight=9]; 2985 -> 507[label="",style="solid", color="blue", weight=3]; 2986[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];398 -> 2986[label="",style="solid", color="blue", weight=9]; 2986 -> 508[label="",style="solid", color="blue", weight=3]; 2987[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];398 -> 2987[label="",style="solid", color="blue", weight=9]; 2987 -> 509[label="",style="solid", color="blue", weight=3]; 2988[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];398 -> 2988[label="",style="solid", color="blue", weight=9]; 2988 -> 510[label="",style="solid", color="blue", weight=3]; 2989[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];398 -> 2989[label="",style="solid", color="blue", weight=9]; 2989 -> 511[label="",style="solid", color="blue", weight=3]; 2990[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];398 -> 2990[label="",style="solid", color="blue", weight=9]; 2990 -> 512[label="",style="solid", color="blue", weight=3]; 2991[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];398 -> 2991[label="",style="solid", color="blue", weight=9]; 2991 -> 513[label="",style="solid", color="blue", weight=3]; 2992[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];398 -> 2992[label="",style="solid", color="blue", weight=9]; 2992 -> 514[label="",style="solid", color="blue", weight=3]; 399[label="vxw300",fontsize=16,color="green",shape="box"];396[label="compare2 (Right vxw70) (Right vxw71) vxw72",fontsize=16,color="burlywood",shape="triangle"];2993[label="vxw72/False",fontsize=10,color="white",style="solid",shape="box"];396 -> 2993[label="",style="solid", color="burlywood", weight=9]; 2993 -> 515[label="",style="solid", color="burlywood", weight=3]; 2994[label="vxw72/True",fontsize=10,color="white",style="solid",shape="box"];396 -> 2994[label="",style="solid", color="burlywood", weight=9]; 2994 -> 516[label="",style="solid", color="burlywood", weight=3]; 400 -> 123[label="",style="dashed", color="red", weight=0]; 400[label="compare (vxw300 * Pos vxw40010) (Pos vxw3010 * vxw4000)",fontsize=16,color="magenta"];400 -> 517[label="",style="dashed", color="magenta", weight=3]; 400 -> 518[label="",style="dashed", color="magenta", weight=3]; 401 -> 123[label="",style="dashed", color="red", weight=0]; 401[label="compare (vxw300 * Pos vxw40010) (Neg vxw3010 * vxw4000)",fontsize=16,color="magenta"];401 -> 519[label="",style="dashed", color="magenta", weight=3]; 401 -> 520[label="",style="dashed", color="magenta", weight=3]; 402 -> 123[label="",style="dashed", color="red", weight=0]; 402[label="compare (vxw300 * Neg vxw40010) (Pos vxw3010 * vxw4000)",fontsize=16,color="magenta"];402 -> 521[label="",style="dashed", color="magenta", weight=3]; 402 -> 522[label="",style="dashed", color="magenta", weight=3]; 403 -> 123[label="",style="dashed", color="red", weight=0]; 403[label="compare (vxw300 * Neg vxw40010) (Neg vxw3010 * vxw4000)",fontsize=16,color="magenta"];403 -> 523[label="",style="dashed", color="magenta", weight=3]; 403 -> 524[label="",style="dashed", color="magenta", weight=3]; 404[label="EQ",fontsize=16,color="green",shape="box"];405[label="compare1 False True (False <= True)",fontsize=16,color="black",shape="box"];405 -> 525[label="",style="solid", color="black", weight=3]; 406[label="compare1 True False (True <= False)",fontsize=16,color="black",shape="box"];406 -> 526[label="",style="solid", color="black", weight=3]; 407[label="EQ",fontsize=16,color="green",shape="box"];408 -> 241[label="",style="dashed", color="red", weight=0]; 408[label="primCmpNat vxw3000 vxw40000",fontsize=16,color="magenta"];408 -> 527[label="",style="dashed", color="magenta", weight=3]; 408 -> 528[label="",style="dashed", color="magenta", weight=3]; 409[label="GT",fontsize=16,color="green",shape="box"];410[label="LT",fontsize=16,color="green",shape="box"];411[label="EQ",fontsize=16,color="green",shape="box"];412[label="compare1 Nothing (Just vxw4000) True",fontsize=16,color="black",shape="box"];412 -> 529[label="",style="solid", color="black", weight=3]; 413[label="compare1 (Just vxw300) Nothing False",fontsize=16,color="black",shape="box"];413 -> 530[label="",style="solid", color="black", weight=3]; 414[label="vxw300 == vxw4000",fontsize=16,color="black",shape="triangle"];414 -> 531[label="",style="solid", color="black", weight=3]; 415[label="vxw300 == vxw4000",fontsize=16,color="burlywood",shape="triangle"];2995[label="vxw300/(vxw3000,vxw3001)",fontsize=10,color="white",style="solid",shape="box"];415 -> 2995[label="",style="solid", color="burlywood", weight=9]; 2995 -> 532[label="",style="solid", color="burlywood", weight=3]; 416[label="vxw300 == vxw4000",fontsize=16,color="burlywood",shape="triangle"];2996[label="vxw300/Integer vxw3000",fontsize=10,color="white",style="solid",shape="box"];416 -> 2996[label="",style="solid", color="burlywood", weight=9]; 2996 -> 533[label="",style="solid", color="burlywood", weight=3]; 417[label="vxw300 == vxw4000",fontsize=16,color="burlywood",shape="triangle"];2997[label="vxw300/vxw3000 :% vxw3001",fontsize=10,color="white",style="solid",shape="box"];417 -> 2997[label="",style="solid", color="burlywood", weight=9]; 2997 -> 534[label="",style="solid", color="burlywood", weight=3]; 418[label="vxw300 == vxw4000",fontsize=16,color="black",shape="triangle"];418 -> 535[label="",style="solid", color="black", weight=3]; 419[label="vxw300 == vxw4000",fontsize=16,color="burlywood",shape="triangle"];2998[label="vxw300/False",fontsize=10,color="white",style="solid",shape="box"];419 -> 2998[label="",style="solid", color="burlywood", weight=9]; 2998 -> 536[label="",style="solid", color="burlywood", weight=3]; 2999[label="vxw300/True",fontsize=10,color="white",style="solid",shape="box"];419 -> 2999[label="",style="solid", color="burlywood", weight=9]; 2999 -> 537[label="",style="solid", color="burlywood", weight=3]; 420[label="vxw300 == vxw4000",fontsize=16,color="burlywood",shape="triangle"];3000[label="vxw300/(vxw3000,vxw3001,vxw3002)",fontsize=10,color="white",style="solid",shape="box"];420 -> 3000[label="",style="solid", color="burlywood", weight=9]; 3000 -> 538[label="",style="solid", color="burlywood", weight=3]; 421[label="vxw300 == vxw4000",fontsize=16,color="black",shape="triangle"];421 -> 539[label="",style="solid", color="black", weight=3]; 422[label="vxw300 == vxw4000",fontsize=16,color="burlywood",shape="triangle"];3001[label="vxw300/()",fontsize=10,color="white",style="solid",shape="box"];422 -> 3001[label="",style="solid", color="burlywood", weight=9]; 3001 -> 540[label="",style="solid", color="burlywood", weight=3]; 423[label="vxw300 == vxw4000",fontsize=16,color="black",shape="triangle"];423 -> 541[label="",style="solid", color="black", weight=3]; 424[label="vxw300 == vxw4000",fontsize=16,color="burlywood",shape="triangle"];3002[label="vxw300/vxw3000 : vxw3001",fontsize=10,color="white",style="solid",shape="box"];424 -> 3002[label="",style="solid", color="burlywood", weight=9]; 3002 -> 542[label="",style="solid", color="burlywood", weight=3]; 3003[label="vxw300/[]",fontsize=10,color="white",style="solid",shape="box"];424 -> 3003[label="",style="solid", color="burlywood", weight=9]; 3003 -> 543[label="",style="solid", color="burlywood", weight=3]; 425[label="vxw300 == vxw4000",fontsize=16,color="burlywood",shape="triangle"];3004[label="vxw300/Nothing",fontsize=10,color="white",style="solid",shape="box"];425 -> 3004[label="",style="solid", color="burlywood", weight=9]; 3004 -> 544[label="",style="solid", color="burlywood", weight=3]; 3005[label="vxw300/Just vxw3000",fontsize=10,color="white",style="solid",shape="box"];425 -> 3005[label="",style="solid", color="burlywood", weight=9]; 3005 -> 545[label="",style="solid", color="burlywood", weight=3]; 426[label="vxw300 == vxw4000",fontsize=16,color="burlywood",shape="triangle"];3006[label="vxw300/LT",fontsize=10,color="white",style="solid",shape="box"];426 -> 3006[label="",style="solid", color="burlywood", weight=9]; 3006 -> 546[label="",style="solid", color="burlywood", weight=3]; 3007[label="vxw300/EQ",fontsize=10,color="white",style="solid",shape="box"];426 -> 3007[label="",style="solid", color="burlywood", weight=9]; 3007 -> 547[label="",style="solid", color="burlywood", weight=3]; 3008[label="vxw300/GT",fontsize=10,color="white",style="solid",shape="box"];426 -> 3008[label="",style="solid", color="burlywood", weight=9]; 3008 -> 548[label="",style="solid", color="burlywood", weight=3]; 427[label="vxw300 == vxw4000",fontsize=16,color="burlywood",shape="triangle"];3009[label="vxw300/Left vxw3000",fontsize=10,color="white",style="solid",shape="box"];427 -> 3009[label="",style="solid", color="burlywood", weight=9]; 3009 -> 549[label="",style="solid", color="burlywood", weight=3]; 3010[label="vxw300/Right vxw3000",fontsize=10,color="white",style="solid",shape="box"];427 -> 3010[label="",style="solid", color="burlywood", weight=9]; 3010 -> 550[label="",style="solid", color="burlywood", weight=3]; 428[label="compare2 (Just vxw30) (Just vxw31) False",fontsize=16,color="black",shape="box"];428 -> 551[label="",style="solid", color="black", weight=3]; 429[label="compare2 (Just vxw30) (Just vxw31) True",fontsize=16,color="black",shape="box"];429 -> 552[label="",style="solid", color="black", weight=3]; 838[label="vxw301 == vxw4001",fontsize=16,color="blue",shape="box"];3011[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];838 -> 3011[label="",style="solid", color="blue", weight=9]; 3011 -> 846[label="",style="solid", color="blue", weight=3]; 3012[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];838 -> 3012[label="",style="solid", color="blue", weight=9]; 3012 -> 847[label="",style="solid", color="blue", weight=3]; 3013[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];838 -> 3013[label="",style="solid", color="blue", weight=9]; 3013 -> 848[label="",style="solid", color="blue", weight=3]; 3014[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];838 -> 3014[label="",style="solid", color="blue", weight=9]; 3014 -> 849[label="",style="solid", color="blue", weight=3]; 3015[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];838 -> 3015[label="",style="solid", color="blue", weight=9]; 3015 -> 850[label="",style="solid", color="blue", weight=3]; 3016[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];838 -> 3016[label="",style="solid", color="blue", weight=9]; 3016 -> 851[label="",style="solid", color="blue", weight=3]; 3017[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];838 -> 3017[label="",style="solid", color="blue", weight=9]; 3017 -> 852[label="",style="solid", color="blue", weight=3]; 3018[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];838 -> 3018[label="",style="solid", color="blue", weight=9]; 3018 -> 853[label="",style="solid", color="blue", weight=3]; 3019[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];838 -> 3019[label="",style="solid", color="blue", weight=9]; 3019 -> 854[label="",style="solid", color="blue", weight=3]; 3020[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];838 -> 3020[label="",style="solid", color="blue", weight=9]; 3020 -> 855[label="",style="solid", color="blue", weight=3]; 3021[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];838 -> 3021[label="",style="solid", color="blue", weight=9]; 3021 -> 856[label="",style="solid", color="blue", weight=3]; 3022[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];838 -> 3022[label="",style="solid", color="blue", weight=9]; 3022 -> 857[label="",style="solid", color="blue", weight=3]; 3023[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];838 -> 3023[label="",style="solid", color="blue", weight=9]; 3023 -> 858[label="",style="solid", color="blue", weight=3]; 3024[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];838 -> 3024[label="",style="solid", color="blue", weight=9]; 3024 -> 859[label="",style="solid", color="blue", weight=3]; 839[label="vxw300 == vxw4000",fontsize=16,color="blue",shape="box"];3025[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];839 -> 3025[label="",style="solid", color="blue", weight=9]; 3025 -> 860[label="",style="solid", color="blue", weight=3]; 3026[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];839 -> 3026[label="",style="solid", color="blue", weight=9]; 3026 -> 861[label="",style="solid", color="blue", weight=3]; 3027[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];839 -> 3027[label="",style="solid", color="blue", weight=9]; 3027 -> 862[label="",style="solid", color="blue", weight=3]; 3028[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];839 -> 3028[label="",style="solid", color="blue", weight=9]; 3028 -> 863[label="",style="solid", color="blue", weight=3]; 3029[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];839 -> 3029[label="",style="solid", color="blue", weight=9]; 3029 -> 864[label="",style="solid", color="blue", weight=3]; 3030[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];839 -> 3030[label="",style="solid", color="blue", weight=9]; 3030 -> 865[label="",style="solid", color="blue", weight=3]; 3031[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];839 -> 3031[label="",style="solid", color="blue", weight=9]; 3031 -> 866[label="",style="solid", color="blue", weight=3]; 3032[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];839 -> 3032[label="",style="solid", color="blue", weight=9]; 3032 -> 867[label="",style="solid", color="blue", weight=3]; 3033[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];839 -> 3033[label="",style="solid", color="blue", weight=9]; 3033 -> 868[label="",style="solid", color="blue", weight=3]; 3034[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];839 -> 3034[label="",style="solid", color="blue", weight=9]; 3034 -> 869[label="",style="solid", color="blue", weight=3]; 3035[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];839 -> 3035[label="",style="solid", color="blue", weight=9]; 3035 -> 870[label="",style="solid", color="blue", weight=3]; 3036[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];839 -> 3036[label="",style="solid", color="blue", weight=9]; 3036 -> 871[label="",style="solid", color="blue", weight=3]; 3037[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];839 -> 3037[label="",style="solid", color="blue", weight=9]; 3037 -> 872[label="",style="solid", color="blue", weight=3]; 3038[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];839 -> 3038[label="",style="solid", color="blue", weight=9]; 3038 -> 873[label="",style="solid", color="blue", weight=3]; 837[label="vxw96 && vxw97",fontsize=16,color="burlywood",shape="triangle"];3039[label="vxw96/False",fontsize=10,color="white",style="solid",shape="box"];837 -> 3039[label="",style="solid", color="burlywood", weight=9]; 3039 -> 874[label="",style="solid", color="burlywood", weight=3]; 3040[label="vxw96/True",fontsize=10,color="white",style="solid",shape="box"];837 -> 3040[label="",style="solid", color="burlywood", weight=9]; 3040 -> 875[label="",style="solid", color="burlywood", weight=3]; 783[label="compare2 (vxw79,vxw80) (vxw81,vxw82) False",fontsize=16,color="black",shape="box"];783 -> 876[label="",style="solid", color="black", weight=3]; 784[label="compare2 (vxw79,vxw80) (vxw81,vxw82) True",fontsize=16,color="black",shape="box"];784 -> 877[label="",style="solid", color="black", weight=3]; 446[label="compare1 LT EQ True",fontsize=16,color="black",shape="box"];446 -> 583[label="",style="solid", color="black", weight=3]; 447[label="compare1 LT GT True",fontsize=16,color="black",shape="box"];447 -> 584[label="",style="solid", color="black", weight=3]; 448[label="compare1 EQ LT False",fontsize=16,color="black",shape="box"];448 -> 585[label="",style="solid", color="black", weight=3]; 449[label="compare1 EQ GT True",fontsize=16,color="black",shape="box"];449 -> 586[label="",style="solid", color="black", weight=3]; 450[label="compare1 GT LT False",fontsize=16,color="black",shape="box"];450 -> 587[label="",style="solid", color="black", weight=3]; 451[label="compare1 GT EQ False",fontsize=16,color="black",shape="box"];451 -> 588[label="",style="solid", color="black", weight=3]; 840 -> 837[label="",style="dashed", color="red", weight=0]; 840[label="vxw301 == vxw4001 && vxw302 == vxw4002",fontsize=16,color="magenta"];840 -> 878[label="",style="dashed", color="magenta", weight=3]; 840 -> 879[label="",style="dashed", color="magenta", weight=3]; 841[label="vxw300 == vxw4000",fontsize=16,color="blue",shape="box"];3041[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];841 -> 3041[label="",style="solid", color="blue", weight=9]; 3041 -> 880[label="",style="solid", color="blue", weight=3]; 3042[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];841 -> 3042[label="",style="solid", color="blue", weight=9]; 3042 -> 881[label="",style="solid", color="blue", weight=3]; 3043[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];841 -> 3043[label="",style="solid", color="blue", weight=9]; 3043 -> 882[label="",style="solid", color="blue", weight=3]; 3044[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];841 -> 3044[label="",style="solid", color="blue", weight=9]; 3044 -> 883[label="",style="solid", color="blue", weight=3]; 3045[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];841 -> 3045[label="",style="solid", color="blue", weight=9]; 3045 -> 884[label="",style="solid", color="blue", weight=3]; 3046[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];841 -> 3046[label="",style="solid", color="blue", weight=9]; 3046 -> 885[label="",style="solid", color="blue", weight=3]; 3047[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];841 -> 3047[label="",style="solid", color="blue", weight=9]; 3047 -> 886[label="",style="solid", color="blue", weight=3]; 3048[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];841 -> 3048[label="",style="solid", color="blue", weight=9]; 3048 -> 887[label="",style="solid", color="blue", weight=3]; 3049[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];841 -> 3049[label="",style="solid", color="blue", weight=9]; 3049 -> 888[label="",style="solid", color="blue", weight=3]; 3050[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];841 -> 3050[label="",style="solid", color="blue", weight=9]; 3050 -> 889[label="",style="solid", color="blue", weight=3]; 3051[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];841 -> 3051[label="",style="solid", color="blue", weight=9]; 3051 -> 890[label="",style="solid", color="blue", weight=3]; 3052[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];841 -> 3052[label="",style="solid", color="blue", weight=9]; 3052 -> 891[label="",style="solid", color="blue", weight=3]; 3053[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];841 -> 3053[label="",style="solid", color="blue", weight=9]; 3053 -> 892[label="",style="solid", color="blue", weight=3]; 3054[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];841 -> 3054[label="",style="solid", color="blue", weight=9]; 3054 -> 893[label="",style="solid", color="blue", weight=3]; 821[label="compare2 (vxw52,vxw53,vxw54) (vxw55,vxw56,vxw57) False",fontsize=16,color="black",shape="box"];821 -> 894[label="",style="solid", color="black", weight=3]; 822[label="compare2 (vxw52,vxw53,vxw54) (vxw55,vxw56,vxw57) True",fontsize=16,color="black",shape="box"];822 -> 895[label="",style="solid", color="black", weight=3]; 468[label="Zero",fontsize=16,color="green",shape="box"];469[label="Succ vxw40000",fontsize=16,color="green",shape="box"];470[label="Succ vxw40000",fontsize=16,color="green",shape="box"];471[label="Zero",fontsize=16,color="green",shape="box"];472 -> 320[label="",style="dashed", color="red", weight=0]; 472[label="Pos vxw3010 * vxw4000",fontsize=16,color="magenta"];472 -> 619[label="",style="dashed", color="magenta", weight=3]; 472 -> 620[label="",style="dashed", color="magenta", weight=3]; 473 -> 320[label="",style="dashed", color="red", weight=0]; 473[label="vxw300 * Pos vxw40010",fontsize=16,color="magenta"];473 -> 621[label="",style="dashed", color="magenta", weight=3]; 473 -> 622[label="",style="dashed", color="magenta", weight=3]; 474 -> 320[label="",style="dashed", color="red", weight=0]; 474[label="Neg vxw3010 * vxw4000",fontsize=16,color="magenta"];474 -> 623[label="",style="dashed", color="magenta", weight=3]; 474 -> 624[label="",style="dashed", color="magenta", weight=3]; 475 -> 320[label="",style="dashed", color="red", weight=0]; 475[label="vxw300 * Pos vxw40010",fontsize=16,color="magenta"];475 -> 625[label="",style="dashed", color="magenta", weight=3]; 475 -> 626[label="",style="dashed", color="magenta", weight=3]; 476 -> 320[label="",style="dashed", color="red", weight=0]; 476[label="Pos vxw3010 * vxw4000",fontsize=16,color="magenta"];476 -> 627[label="",style="dashed", color="magenta", weight=3]; 476 -> 628[label="",style="dashed", color="magenta", weight=3]; 477 -> 320[label="",style="dashed", color="red", weight=0]; 477[label="vxw300 * Neg vxw40010",fontsize=16,color="magenta"];477 -> 629[label="",style="dashed", color="magenta", weight=3]; 477 -> 630[label="",style="dashed", color="magenta", weight=3]; 478 -> 320[label="",style="dashed", color="red", weight=0]; 478[label="Neg vxw3010 * vxw4000",fontsize=16,color="magenta"];478 -> 631[label="",style="dashed", color="magenta", weight=3]; 478 -> 632[label="",style="dashed", color="magenta", weight=3]; 479 -> 320[label="",style="dashed", color="red", weight=0]; 479[label="vxw300 * Neg vxw40010",fontsize=16,color="magenta"];479 -> 633[label="",style="dashed", color="magenta", weight=3]; 479 -> 634[label="",style="dashed", color="magenta", weight=3]; 480[label="Integer vxw40000 * Integer vxw3010",fontsize=16,color="black",shape="box"];480 -> 635[label="",style="solid", color="black", weight=3]; 481[label="primMulInt (Pos vxw40000) vxw301",fontsize=16,color="burlywood",shape="box"];3055[label="vxw301/Pos vxw3010",fontsize=10,color="white",style="solid",shape="box"];481 -> 3055[label="",style="solid", color="burlywood", weight=9]; 3055 -> 636[label="",style="solid", color="burlywood", weight=3]; 3056[label="vxw301/Neg vxw3010",fontsize=10,color="white",style="solid",shape="box"];481 -> 3056[label="",style="solid", color="burlywood", weight=9]; 3056 -> 637[label="",style="solid", color="burlywood", weight=3]; 482[label="primMulInt (Neg vxw40000) vxw301",fontsize=16,color="burlywood",shape="box"];3057[label="vxw301/Pos vxw3010",fontsize=10,color="white",style="solid",shape="box"];482 -> 3057[label="",style="solid", color="burlywood", weight=9]; 3057 -> 638[label="",style="solid", color="burlywood", weight=3]; 3058[label="vxw301/Neg vxw3010",fontsize=10,color="white",style="solid",shape="box"];482 -> 3058[label="",style="solid", color="burlywood", weight=9]; 3058 -> 639[label="",style="solid", color="burlywood", weight=3]; 483 -> 414[label="",style="dashed", color="red", weight=0]; 483[label="vxw300 == vxw4000",fontsize=16,color="magenta"];483 -> 640[label="",style="dashed", color="magenta", weight=3]; 483 -> 641[label="",style="dashed", color="magenta", weight=3]; 484 -> 415[label="",style="dashed", color="red", weight=0]; 484[label="vxw300 == vxw4000",fontsize=16,color="magenta"];484 -> 642[label="",style="dashed", color="magenta", weight=3]; 484 -> 643[label="",style="dashed", color="magenta", weight=3]; 485 -> 416[label="",style="dashed", color="red", weight=0]; 485[label="vxw300 == vxw4000",fontsize=16,color="magenta"];485 -> 644[label="",style="dashed", color="magenta", weight=3]; 485 -> 645[label="",style="dashed", color="magenta", weight=3]; 486 -> 417[label="",style="dashed", color="red", weight=0]; 486[label="vxw300 == vxw4000",fontsize=16,color="magenta"];486 -> 646[label="",style="dashed", color="magenta", weight=3]; 486 -> 647[label="",style="dashed", color="magenta", weight=3]; 487 -> 418[label="",style="dashed", color="red", weight=0]; 487[label="vxw300 == vxw4000",fontsize=16,color="magenta"];487 -> 648[label="",style="dashed", color="magenta", weight=3]; 487 -> 649[label="",style="dashed", color="magenta", weight=3]; 488 -> 419[label="",style="dashed", color="red", weight=0]; 488[label="vxw300 == vxw4000",fontsize=16,color="magenta"];488 -> 650[label="",style="dashed", color="magenta", weight=3]; 488 -> 651[label="",style="dashed", color="magenta", weight=3]; 489 -> 420[label="",style="dashed", color="red", weight=0]; 489[label="vxw300 == vxw4000",fontsize=16,color="magenta"];489 -> 652[label="",style="dashed", color="magenta", weight=3]; 489 -> 653[label="",style="dashed", color="magenta", weight=3]; 490 -> 421[label="",style="dashed", color="red", weight=0]; 490[label="vxw300 == vxw4000",fontsize=16,color="magenta"];490 -> 654[label="",style="dashed", color="magenta", weight=3]; 490 -> 655[label="",style="dashed", color="magenta", weight=3]; 491 -> 422[label="",style="dashed", color="red", weight=0]; 491[label="vxw300 == vxw4000",fontsize=16,color="magenta"];491 -> 656[label="",style="dashed", color="magenta", weight=3]; 491 -> 657[label="",style="dashed", color="magenta", weight=3]; 492 -> 423[label="",style="dashed", color="red", weight=0]; 492[label="vxw300 == vxw4000",fontsize=16,color="magenta"];492 -> 658[label="",style="dashed", color="magenta", weight=3]; 492 -> 659[label="",style="dashed", color="magenta", weight=3]; 493 -> 424[label="",style="dashed", color="red", weight=0]; 493[label="vxw300 == vxw4000",fontsize=16,color="magenta"];493 -> 660[label="",style="dashed", color="magenta", weight=3]; 493 -> 661[label="",style="dashed", color="magenta", weight=3]; 494 -> 425[label="",style="dashed", color="red", weight=0]; 494[label="vxw300 == vxw4000",fontsize=16,color="magenta"];494 -> 662[label="",style="dashed", color="magenta", weight=3]; 494 -> 663[label="",style="dashed", color="magenta", weight=3]; 495 -> 426[label="",style="dashed", color="red", weight=0]; 495[label="vxw300 == vxw4000",fontsize=16,color="magenta"];495 -> 664[label="",style="dashed", color="magenta", weight=3]; 495 -> 665[label="",style="dashed", color="magenta", weight=3]; 496 -> 427[label="",style="dashed", color="red", weight=0]; 496[label="vxw300 == vxw4000",fontsize=16,color="magenta"];496 -> 666[label="",style="dashed", color="magenta", weight=3]; 496 -> 667[label="",style="dashed", color="magenta", weight=3]; 497[label="compare2 (Left vxw63) (Left vxw64) False",fontsize=16,color="black",shape="box"];497 -> 668[label="",style="solid", color="black", weight=3]; 498[label="compare2 (Left vxw63) (Left vxw64) True",fontsize=16,color="black",shape="box"];498 -> 669[label="",style="solid", color="black", weight=3]; 499[label="compare1 (Left vxw300) (Right vxw4000) True",fontsize=16,color="black",shape="box"];499 -> 670[label="",style="solid", color="black", weight=3]; 500[label="compare1 (Right vxw300) (Left vxw4000) False",fontsize=16,color="black",shape="box"];500 -> 671[label="",style="solid", color="black", weight=3]; 501 -> 414[label="",style="dashed", color="red", weight=0]; 501[label="vxw300 == vxw4000",fontsize=16,color="magenta"];501 -> 672[label="",style="dashed", color="magenta", weight=3]; 501 -> 673[label="",style="dashed", color="magenta", weight=3]; 502 -> 415[label="",style="dashed", color="red", weight=0]; 502[label="vxw300 == vxw4000",fontsize=16,color="magenta"];502 -> 674[label="",style="dashed", color="magenta", weight=3]; 502 -> 675[label="",style="dashed", color="magenta", weight=3]; 503 -> 416[label="",style="dashed", color="red", weight=0]; 503[label="vxw300 == vxw4000",fontsize=16,color="magenta"];503 -> 676[label="",style="dashed", color="magenta", weight=3]; 503 -> 677[label="",style="dashed", color="magenta", weight=3]; 504 -> 417[label="",style="dashed", color="red", weight=0]; 504[label="vxw300 == vxw4000",fontsize=16,color="magenta"];504 -> 678[label="",style="dashed", color="magenta", weight=3]; 504 -> 679[label="",style="dashed", color="magenta", weight=3]; 505 -> 418[label="",style="dashed", color="red", weight=0]; 505[label="vxw300 == vxw4000",fontsize=16,color="magenta"];505 -> 680[label="",style="dashed", color="magenta", weight=3]; 505 -> 681[label="",style="dashed", color="magenta", weight=3]; 506 -> 419[label="",style="dashed", color="red", weight=0]; 506[label="vxw300 == vxw4000",fontsize=16,color="magenta"];506 -> 682[label="",style="dashed", color="magenta", weight=3]; 506 -> 683[label="",style="dashed", color="magenta", weight=3]; 507 -> 420[label="",style="dashed", color="red", weight=0]; 507[label="vxw300 == vxw4000",fontsize=16,color="magenta"];507 -> 684[label="",style="dashed", color="magenta", weight=3]; 507 -> 685[label="",style="dashed", color="magenta", weight=3]; 508 -> 421[label="",style="dashed", color="red", weight=0]; 508[label="vxw300 == vxw4000",fontsize=16,color="magenta"];508 -> 686[label="",style="dashed", color="magenta", weight=3]; 508 -> 687[label="",style="dashed", color="magenta", weight=3]; 509 -> 422[label="",style="dashed", color="red", weight=0]; 509[label="vxw300 == vxw4000",fontsize=16,color="magenta"];509 -> 688[label="",style="dashed", color="magenta", weight=3]; 509 -> 689[label="",style="dashed", color="magenta", weight=3]; 510 -> 423[label="",style="dashed", color="red", weight=0]; 510[label="vxw300 == vxw4000",fontsize=16,color="magenta"];510 -> 690[label="",style="dashed", color="magenta", weight=3]; 510 -> 691[label="",style="dashed", color="magenta", weight=3]; 511 -> 424[label="",style="dashed", color="red", weight=0]; 511[label="vxw300 == vxw4000",fontsize=16,color="magenta"];511 -> 692[label="",style="dashed", color="magenta", weight=3]; 511 -> 693[label="",style="dashed", color="magenta", weight=3]; 512 -> 425[label="",style="dashed", color="red", weight=0]; 512[label="vxw300 == vxw4000",fontsize=16,color="magenta"];512 -> 694[label="",style="dashed", color="magenta", weight=3]; 512 -> 695[label="",style="dashed", color="magenta", weight=3]; 513 -> 426[label="",style="dashed", color="red", weight=0]; 513[label="vxw300 == vxw4000",fontsize=16,color="magenta"];513 -> 696[label="",style="dashed", color="magenta", weight=3]; 513 -> 697[label="",style="dashed", color="magenta", weight=3]; 514 -> 427[label="",style="dashed", color="red", weight=0]; 514[label="vxw300 == vxw4000",fontsize=16,color="magenta"];514 -> 698[label="",style="dashed", color="magenta", weight=3]; 514 -> 699[label="",style="dashed", color="magenta", weight=3]; 515[label="compare2 (Right vxw70) (Right vxw71) False",fontsize=16,color="black",shape="box"];515 -> 700[label="",style="solid", color="black", weight=3]; 516[label="compare2 (Right vxw70) (Right vxw71) True",fontsize=16,color="black",shape="box"];516 -> 701[label="",style="solid", color="black", weight=3]; 517 -> 320[label="",style="dashed", color="red", weight=0]; 517[label="Pos vxw3010 * vxw4000",fontsize=16,color="magenta"];517 -> 702[label="",style="dashed", color="magenta", weight=3]; 517 -> 703[label="",style="dashed", color="magenta", weight=3]; 518 -> 320[label="",style="dashed", color="red", weight=0]; 518[label="vxw300 * Pos vxw40010",fontsize=16,color="magenta"];518 -> 704[label="",style="dashed", color="magenta", weight=3]; 518 -> 705[label="",style="dashed", color="magenta", weight=3]; 519 -> 320[label="",style="dashed", color="red", weight=0]; 519[label="Neg vxw3010 * vxw4000",fontsize=16,color="magenta"];519 -> 706[label="",style="dashed", color="magenta", weight=3]; 519 -> 707[label="",style="dashed", color="magenta", weight=3]; 520 -> 320[label="",style="dashed", color="red", weight=0]; 520[label="vxw300 * Pos vxw40010",fontsize=16,color="magenta"];520 -> 708[label="",style="dashed", color="magenta", weight=3]; 520 -> 709[label="",style="dashed", color="magenta", weight=3]; 521 -> 320[label="",style="dashed", color="red", weight=0]; 521[label="Pos vxw3010 * vxw4000",fontsize=16,color="magenta"];521 -> 710[label="",style="dashed", color="magenta", weight=3]; 521 -> 711[label="",style="dashed", color="magenta", weight=3]; 522 -> 320[label="",style="dashed", color="red", weight=0]; 522[label="vxw300 * Neg vxw40010",fontsize=16,color="magenta"];522 -> 712[label="",style="dashed", color="magenta", weight=3]; 522 -> 713[label="",style="dashed", color="magenta", weight=3]; 523 -> 320[label="",style="dashed", color="red", weight=0]; 523[label="Neg vxw3010 * vxw4000",fontsize=16,color="magenta"];523 -> 714[label="",style="dashed", color="magenta", weight=3]; 523 -> 715[label="",style="dashed", color="magenta", weight=3]; 524 -> 320[label="",style="dashed", color="red", weight=0]; 524[label="vxw300 * Neg vxw40010",fontsize=16,color="magenta"];524 -> 716[label="",style="dashed", color="magenta", weight=3]; 524 -> 717[label="",style="dashed", color="magenta", weight=3]; 525[label="compare1 False True True",fontsize=16,color="black",shape="box"];525 -> 718[label="",style="solid", color="black", weight=3]; 526[label="compare1 True False False",fontsize=16,color="black",shape="box"];526 -> 719[label="",style="solid", color="black", weight=3]; 527[label="vxw3000",fontsize=16,color="green",shape="box"];528[label="vxw40000",fontsize=16,color="green",shape="box"];529[label="LT",fontsize=16,color="green",shape="box"];530[label="compare0 (Just vxw300) Nothing otherwise",fontsize=16,color="black",shape="box"];530 -> 720[label="",style="solid", color="black", weight=3]; 531[label="primEqFloat vxw300 vxw4000",fontsize=16,color="burlywood",shape="box"];3059[label="vxw300/Float vxw3000 vxw3001",fontsize=10,color="white",style="solid",shape="box"];531 -> 3059[label="",style="solid", color="burlywood", weight=9]; 3059 -> 721[label="",style="solid", color="burlywood", weight=3]; 532[label="(vxw3000,vxw3001) == vxw4000",fontsize=16,color="burlywood",shape="box"];3060[label="vxw4000/(vxw40000,vxw40001)",fontsize=10,color="white",style="solid",shape="box"];532 -> 3060[label="",style="solid", color="burlywood", weight=9]; 3060 -> 722[label="",style="solid", color="burlywood", weight=3]; 533[label="Integer vxw3000 == vxw4000",fontsize=16,color="burlywood",shape="box"];3061[label="vxw4000/Integer vxw40000",fontsize=10,color="white",style="solid",shape="box"];533 -> 3061[label="",style="solid", color="burlywood", weight=9]; 3061 -> 723[label="",style="solid", color="burlywood", weight=3]; 534[label="vxw3000 :% vxw3001 == vxw4000",fontsize=16,color="burlywood",shape="box"];3062[label="vxw4000/vxw40000 :% vxw40001",fontsize=10,color="white",style="solid",shape="box"];534 -> 3062[label="",style="solid", color="burlywood", weight=9]; 3062 -> 724[label="",style="solid", color="burlywood", weight=3]; 535[label="primEqChar vxw300 vxw4000",fontsize=16,color="burlywood",shape="box"];3063[label="vxw300/Char vxw3000",fontsize=10,color="white",style="solid",shape="box"];535 -> 3063[label="",style="solid", color="burlywood", weight=9]; 3063 -> 725[label="",style="solid", color="burlywood", weight=3]; 536[label="False == vxw4000",fontsize=16,color="burlywood",shape="box"];3064[label="vxw4000/False",fontsize=10,color="white",style="solid",shape="box"];536 -> 3064[label="",style="solid", color="burlywood", weight=9]; 3064 -> 726[label="",style="solid", color="burlywood", weight=3]; 3065[label="vxw4000/True",fontsize=10,color="white",style="solid",shape="box"];536 -> 3065[label="",style="solid", color="burlywood", weight=9]; 3065 -> 727[label="",style="solid", color="burlywood", weight=3]; 537[label="True == vxw4000",fontsize=16,color="burlywood",shape="box"];3066[label="vxw4000/False",fontsize=10,color="white",style="solid",shape="box"];537 -> 3066[label="",style="solid", color="burlywood", weight=9]; 3066 -> 728[label="",style="solid", color="burlywood", weight=3]; 3067[label="vxw4000/True",fontsize=10,color="white",style="solid",shape="box"];537 -> 3067[label="",style="solid", color="burlywood", weight=9]; 3067 -> 729[label="",style="solid", color="burlywood", weight=3]; 538[label="(vxw3000,vxw3001,vxw3002) == vxw4000",fontsize=16,color="burlywood",shape="box"];3068[label="vxw4000/(vxw40000,vxw40001,vxw40002)",fontsize=10,color="white",style="solid",shape="box"];538 -> 3068[label="",style="solid", color="burlywood", weight=9]; 3068 -> 730[label="",style="solid", color="burlywood", weight=3]; 539[label="primEqInt vxw300 vxw4000",fontsize=16,color="burlywood",shape="triangle"];3069[label="vxw300/Pos vxw3000",fontsize=10,color="white",style="solid",shape="box"];539 -> 3069[label="",style="solid", color="burlywood", weight=9]; 3069 -> 731[label="",style="solid", color="burlywood", weight=3]; 3070[label="vxw300/Neg vxw3000",fontsize=10,color="white",style="solid",shape="box"];539 -> 3070[label="",style="solid", color="burlywood", weight=9]; 3070 -> 732[label="",style="solid", color="burlywood", weight=3]; 540[label="() == vxw4000",fontsize=16,color="burlywood",shape="box"];3071[label="vxw4000/()",fontsize=10,color="white",style="solid",shape="box"];540 -> 3071[label="",style="solid", color="burlywood", weight=9]; 3071 -> 733[label="",style="solid", color="burlywood", weight=3]; 541[label="primEqDouble vxw300 vxw4000",fontsize=16,color="burlywood",shape="box"];3072[label="vxw300/Double vxw3000 vxw3001",fontsize=10,color="white",style="solid",shape="box"];541 -> 3072[label="",style="solid", color="burlywood", weight=9]; 3072 -> 734[label="",style="solid", color="burlywood", weight=3]; 542[label="vxw3000 : vxw3001 == vxw4000",fontsize=16,color="burlywood",shape="box"];3073[label="vxw4000/vxw40000 : vxw40001",fontsize=10,color="white",style="solid",shape="box"];542 -> 3073[label="",style="solid", color="burlywood", weight=9]; 3073 -> 735[label="",style="solid", color="burlywood", weight=3]; 3074[label="vxw4000/[]",fontsize=10,color="white",style="solid",shape="box"];542 -> 3074[label="",style="solid", color="burlywood", weight=9]; 3074 -> 736[label="",style="solid", color="burlywood", weight=3]; 543[label="[] == vxw4000",fontsize=16,color="burlywood",shape="box"];3075[label="vxw4000/vxw40000 : vxw40001",fontsize=10,color="white",style="solid",shape="box"];543 -> 3075[label="",style="solid", color="burlywood", weight=9]; 3075 -> 737[label="",style="solid", color="burlywood", weight=3]; 3076[label="vxw4000/[]",fontsize=10,color="white",style="solid",shape="box"];543 -> 3076[label="",style="solid", color="burlywood", weight=9]; 3076 -> 738[label="",style="solid", color="burlywood", weight=3]; 544[label="Nothing == vxw4000",fontsize=16,color="burlywood",shape="box"];3077[label="vxw4000/Nothing",fontsize=10,color="white",style="solid",shape="box"];544 -> 3077[label="",style="solid", color="burlywood", weight=9]; 3077 -> 739[label="",style="solid", color="burlywood", weight=3]; 3078[label="vxw4000/Just vxw40000",fontsize=10,color="white",style="solid",shape="box"];544 -> 3078[label="",style="solid", color="burlywood", weight=9]; 3078 -> 740[label="",style="solid", color="burlywood", weight=3]; 545[label="Just vxw3000 == vxw4000",fontsize=16,color="burlywood",shape="box"];3079[label="vxw4000/Nothing",fontsize=10,color="white",style="solid",shape="box"];545 -> 3079[label="",style="solid", color="burlywood", weight=9]; 3079 -> 741[label="",style="solid", color="burlywood", weight=3]; 3080[label="vxw4000/Just vxw40000",fontsize=10,color="white",style="solid",shape="box"];545 -> 3080[label="",style="solid", color="burlywood", weight=9]; 3080 -> 742[label="",style="solid", color="burlywood", weight=3]; 546[label="LT == vxw4000",fontsize=16,color="burlywood",shape="box"];3081[label="vxw4000/LT",fontsize=10,color="white",style="solid",shape="box"];546 -> 3081[label="",style="solid", color="burlywood", weight=9]; 3081 -> 743[label="",style="solid", color="burlywood", weight=3]; 3082[label="vxw4000/EQ",fontsize=10,color="white",style="solid",shape="box"];546 -> 3082[label="",style="solid", color="burlywood", weight=9]; 3082 -> 744[label="",style="solid", color="burlywood", weight=3]; 3083[label="vxw4000/GT",fontsize=10,color="white",style="solid",shape="box"];546 -> 3083[label="",style="solid", color="burlywood", weight=9]; 3083 -> 745[label="",style="solid", color="burlywood", weight=3]; 547[label="EQ == vxw4000",fontsize=16,color="burlywood",shape="box"];3084[label="vxw4000/LT",fontsize=10,color="white",style="solid",shape="box"];547 -> 3084[label="",style="solid", color="burlywood", weight=9]; 3084 -> 746[label="",style="solid", color="burlywood", weight=3]; 3085[label="vxw4000/EQ",fontsize=10,color="white",style="solid",shape="box"];547 -> 3085[label="",style="solid", color="burlywood", weight=9]; 3085 -> 747[label="",style="solid", color="burlywood", weight=3]; 3086[label="vxw4000/GT",fontsize=10,color="white",style="solid",shape="box"];547 -> 3086[label="",style="solid", color="burlywood", weight=9]; 3086 -> 748[label="",style="solid", color="burlywood", weight=3]; 548[label="GT == vxw4000",fontsize=16,color="burlywood",shape="box"];3087[label="vxw4000/LT",fontsize=10,color="white",style="solid",shape="box"];548 -> 3087[label="",style="solid", color="burlywood", weight=9]; 3087 -> 749[label="",style="solid", color="burlywood", weight=3]; 3088[label="vxw4000/EQ",fontsize=10,color="white",style="solid",shape="box"];548 -> 3088[label="",style="solid", color="burlywood", weight=9]; 3088 -> 750[label="",style="solid", color="burlywood", weight=3]; 3089[label="vxw4000/GT",fontsize=10,color="white",style="solid",shape="box"];548 -> 3089[label="",style="solid", color="burlywood", weight=9]; 3089 -> 751[label="",style="solid", color="burlywood", weight=3]; 549[label="Left vxw3000 == vxw4000",fontsize=16,color="burlywood",shape="box"];3090[label="vxw4000/Left vxw40000",fontsize=10,color="white",style="solid",shape="box"];549 -> 3090[label="",style="solid", color="burlywood", weight=9]; 3090 -> 752[label="",style="solid", color="burlywood", weight=3]; 3091[label="vxw4000/Right vxw40000",fontsize=10,color="white",style="solid",shape="box"];549 -> 3091[label="",style="solid", color="burlywood", weight=9]; 3091 -> 753[label="",style="solid", color="burlywood", weight=3]; 550[label="Right vxw3000 == vxw4000",fontsize=16,color="burlywood",shape="box"];3092[label="vxw4000/Left vxw40000",fontsize=10,color="white",style="solid",shape="box"];550 -> 3092[label="",style="solid", color="burlywood", weight=9]; 3092 -> 754[label="",style="solid", color="burlywood", weight=3]; 3093[label="vxw4000/Right vxw40000",fontsize=10,color="white",style="solid",shape="box"];550 -> 3093[label="",style="solid", color="burlywood", weight=9]; 3093 -> 755[label="",style="solid", color="burlywood", weight=3]; 551 -> 943[label="",style="dashed", color="red", weight=0]; 551[label="compare1 (Just vxw30) (Just vxw31) (Just vxw30 <= Just vxw31)",fontsize=16,color="magenta"];551 -> 944[label="",style="dashed", color="magenta", weight=3]; 551 -> 945[label="",style="dashed", color="magenta", weight=3]; 551 -> 946[label="",style="dashed", color="magenta", weight=3]; 552[label="EQ",fontsize=16,color="green",shape="box"];846 -> 414[label="",style="dashed", color="red", weight=0]; 846[label="vxw301 == vxw4001",fontsize=16,color="magenta"];846 -> 950[label="",style="dashed", color="magenta", weight=3]; 846 -> 951[label="",style="dashed", color="magenta", weight=3]; 847 -> 415[label="",style="dashed", color="red", weight=0]; 847[label="vxw301 == vxw4001",fontsize=16,color="magenta"];847 -> 952[label="",style="dashed", color="magenta", weight=3]; 847 -> 953[label="",style="dashed", color="magenta", weight=3]; 848 -> 416[label="",style="dashed", color="red", weight=0]; 848[label="vxw301 == vxw4001",fontsize=16,color="magenta"];848 -> 954[label="",style="dashed", color="magenta", weight=3]; 848 -> 955[label="",style="dashed", color="magenta", weight=3]; 849 -> 417[label="",style="dashed", color="red", weight=0]; 849[label="vxw301 == vxw4001",fontsize=16,color="magenta"];849 -> 956[label="",style="dashed", color="magenta", weight=3]; 849 -> 957[label="",style="dashed", color="magenta", weight=3]; 850 -> 418[label="",style="dashed", color="red", weight=0]; 850[label="vxw301 == vxw4001",fontsize=16,color="magenta"];850 -> 958[label="",style="dashed", color="magenta", weight=3]; 850 -> 959[label="",style="dashed", color="magenta", weight=3]; 851 -> 419[label="",style="dashed", color="red", weight=0]; 851[label="vxw301 == vxw4001",fontsize=16,color="magenta"];851 -> 960[label="",style="dashed", color="magenta", weight=3]; 851 -> 961[label="",style="dashed", color="magenta", weight=3]; 852 -> 420[label="",style="dashed", color="red", weight=0]; 852[label="vxw301 == vxw4001",fontsize=16,color="magenta"];852 -> 962[label="",style="dashed", color="magenta", weight=3]; 852 -> 963[label="",style="dashed", color="magenta", weight=3]; 853 -> 421[label="",style="dashed", color="red", weight=0]; 853[label="vxw301 == vxw4001",fontsize=16,color="magenta"];853 -> 964[label="",style="dashed", color="magenta", weight=3]; 853 -> 965[label="",style="dashed", color="magenta", weight=3]; 854 -> 422[label="",style="dashed", color="red", weight=0]; 854[label="vxw301 == vxw4001",fontsize=16,color="magenta"];854 -> 966[label="",style="dashed", color="magenta", weight=3]; 854 -> 967[label="",style="dashed", color="magenta", weight=3]; 855 -> 423[label="",style="dashed", color="red", weight=0]; 855[label="vxw301 == vxw4001",fontsize=16,color="magenta"];855 -> 968[label="",style="dashed", color="magenta", weight=3]; 855 -> 969[label="",style="dashed", color="magenta", weight=3]; 856 -> 424[label="",style="dashed", color="red", weight=0]; 856[label="vxw301 == vxw4001",fontsize=16,color="magenta"];856 -> 970[label="",style="dashed", color="magenta", weight=3]; 856 -> 971[label="",style="dashed", color="magenta", weight=3]; 857 -> 425[label="",style="dashed", color="red", weight=0]; 857[label="vxw301 == vxw4001",fontsize=16,color="magenta"];857 -> 972[label="",style="dashed", color="magenta", weight=3]; 857 -> 973[label="",style="dashed", color="magenta", weight=3]; 858 -> 426[label="",style="dashed", color="red", weight=0]; 858[label="vxw301 == vxw4001",fontsize=16,color="magenta"];858 -> 974[label="",style="dashed", color="magenta", weight=3]; 858 -> 975[label="",style="dashed", color="magenta", weight=3]; 859 -> 427[label="",style="dashed", color="red", weight=0]; 859[label="vxw301 == vxw4001",fontsize=16,color="magenta"];859 -> 976[label="",style="dashed", color="magenta", weight=3]; 859 -> 977[label="",style="dashed", color="magenta", weight=3]; 860 -> 414[label="",style="dashed", color="red", weight=0]; 860[label="vxw300 == vxw4000",fontsize=16,color="magenta"];860 -> 978[label="",style="dashed", color="magenta", weight=3]; 860 -> 979[label="",style="dashed", color="magenta", weight=3]; 861 -> 415[label="",style="dashed", color="red", weight=0]; 861[label="vxw300 == vxw4000",fontsize=16,color="magenta"];861 -> 980[label="",style="dashed", color="magenta", weight=3]; 861 -> 981[label="",style="dashed", color="magenta", weight=3]; 862 -> 416[label="",style="dashed", color="red", weight=0]; 862[label="vxw300 == vxw4000",fontsize=16,color="magenta"];862 -> 982[label="",style="dashed", color="magenta", weight=3]; 862 -> 983[label="",style="dashed", color="magenta", weight=3]; 863 -> 417[label="",style="dashed", color="red", weight=0]; 863[label="vxw300 == vxw4000",fontsize=16,color="magenta"];863 -> 984[label="",style="dashed", color="magenta", weight=3]; 863 -> 985[label="",style="dashed", color="magenta", weight=3]; 864 -> 418[label="",style="dashed", color="red", weight=0]; 864[label="vxw300 == vxw4000",fontsize=16,color="magenta"];864 -> 986[label="",style="dashed", color="magenta", weight=3]; 864 -> 987[label="",style="dashed", color="magenta", weight=3]; 865 -> 419[label="",style="dashed", color="red", weight=0]; 865[label="vxw300 == vxw4000",fontsize=16,color="magenta"];865 -> 988[label="",style="dashed", color="magenta", weight=3]; 865 -> 989[label="",style="dashed", color="magenta", weight=3]; 866 -> 420[label="",style="dashed", color="red", weight=0]; 866[label="vxw300 == vxw4000",fontsize=16,color="magenta"];866 -> 990[label="",style="dashed", color="magenta", weight=3]; 866 -> 991[label="",style="dashed", color="magenta", weight=3]; 867 -> 421[label="",style="dashed", color="red", weight=0]; 867[label="vxw300 == vxw4000",fontsize=16,color="magenta"];867 -> 992[label="",style="dashed", color="magenta", weight=3]; 867 -> 993[label="",style="dashed", color="magenta", weight=3]; 868 -> 422[label="",style="dashed", color="red", weight=0]; 868[label="vxw300 == vxw4000",fontsize=16,color="magenta"];868 -> 994[label="",style="dashed", color="magenta", weight=3]; 868 -> 995[label="",style="dashed", color="magenta", weight=3]; 869 -> 423[label="",style="dashed", color="red", weight=0]; 869[label="vxw300 == vxw4000",fontsize=16,color="magenta"];869 -> 996[label="",style="dashed", color="magenta", weight=3]; 869 -> 997[label="",style="dashed", color="magenta", weight=3]; 870 -> 424[label="",style="dashed", color="red", weight=0]; 870[label="vxw300 == vxw4000",fontsize=16,color="magenta"];870 -> 998[label="",style="dashed", color="magenta", weight=3]; 870 -> 999[label="",style="dashed", color="magenta", weight=3]; 871 -> 425[label="",style="dashed", color="red", weight=0]; 871[label="vxw300 == vxw4000",fontsize=16,color="magenta"];871 -> 1000[label="",style="dashed", color="magenta", weight=3]; 871 -> 1001[label="",style="dashed", color="magenta", weight=3]; 872 -> 426[label="",style="dashed", color="red", weight=0]; 872[label="vxw300 == vxw4000",fontsize=16,color="magenta"];872 -> 1002[label="",style="dashed", color="magenta", weight=3]; 872 -> 1003[label="",style="dashed", color="magenta", weight=3]; 873 -> 427[label="",style="dashed", color="red", weight=0]; 873[label="vxw300 == vxw4000",fontsize=16,color="magenta"];873 -> 1004[label="",style="dashed", color="magenta", weight=3]; 873 -> 1005[label="",style="dashed", color="magenta", weight=3]; 874[label="False && vxw97",fontsize=16,color="black",shape="box"];874 -> 1006[label="",style="solid", color="black", weight=3]; 875[label="True && vxw97",fontsize=16,color="black",shape="box"];875 -> 1007[label="",style="solid", color="black", weight=3]; 876[label="compare1 (vxw79,vxw80) (vxw81,vxw82) ((vxw79,vxw80) <= (vxw81,vxw82))",fontsize=16,color="black",shape="box"];876 -> 1008[label="",style="solid", color="black", weight=3]; 877[label="EQ",fontsize=16,color="green",shape="box"];583[label="LT",fontsize=16,color="green",shape="box"];584[label="LT",fontsize=16,color="green",shape="box"];585[label="compare0 EQ LT otherwise",fontsize=16,color="black",shape="box"];585 -> 801[label="",style="solid", color="black", weight=3]; 586[label="LT",fontsize=16,color="green",shape="box"];587[label="compare0 GT LT otherwise",fontsize=16,color="black",shape="box"];587 -> 802[label="",style="solid", color="black", weight=3]; 588[label="compare0 GT EQ otherwise",fontsize=16,color="black",shape="box"];588 -> 803[label="",style="solid", color="black", weight=3]; 878[label="vxw302 == vxw4002",fontsize=16,color="blue",shape="box"];3094[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];878 -> 3094[label="",style="solid", color="blue", weight=9]; 3094 -> 1009[label="",style="solid", color="blue", weight=3]; 3095[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];878 -> 3095[label="",style="solid", color="blue", weight=9]; 3095 -> 1010[label="",style="solid", color="blue", weight=3]; 3096[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];878 -> 3096[label="",style="solid", color="blue", weight=9]; 3096 -> 1011[label="",style="solid", color="blue", weight=3]; 3097[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];878 -> 3097[label="",style="solid", color="blue", weight=9]; 3097 -> 1012[label="",style="solid", color="blue", weight=3]; 3098[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];878 -> 3098[label="",style="solid", color="blue", weight=9]; 3098 -> 1013[label="",style="solid", color="blue", weight=3]; 3099[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];878 -> 3099[label="",style="solid", color="blue", weight=9]; 3099 -> 1014[label="",style="solid", color="blue", weight=3]; 3100[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];878 -> 3100[label="",style="solid", color="blue", weight=9]; 3100 -> 1015[label="",style="solid", color="blue", weight=3]; 3101[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];878 -> 3101[label="",style="solid", color="blue", weight=9]; 3101 -> 1016[label="",style="solid", color="blue", weight=3]; 3102[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];878 -> 3102[label="",style="solid", color="blue", weight=9]; 3102 -> 1017[label="",style="solid", color="blue", weight=3]; 3103[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];878 -> 3103[label="",style="solid", color="blue", weight=9]; 3103 -> 1018[label="",style="solid", color="blue", weight=3]; 3104[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];878 -> 3104[label="",style="solid", color="blue", weight=9]; 3104 -> 1019[label="",style="solid", color="blue", weight=3]; 3105[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];878 -> 3105[label="",style="solid", color="blue", weight=9]; 3105 -> 1020[label="",style="solid", color="blue", weight=3]; 3106[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];878 -> 3106[label="",style="solid", color="blue", weight=9]; 3106 -> 1021[label="",style="solid", color="blue", weight=3]; 3107[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];878 -> 3107[label="",style="solid", color="blue", weight=9]; 3107 -> 1022[label="",style="solid", color="blue", weight=3]; 879[label="vxw301 == vxw4001",fontsize=16,color="blue",shape="box"];3108[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];879 -> 3108[label="",style="solid", color="blue", weight=9]; 3108 -> 1023[label="",style="solid", color="blue", weight=3]; 3109[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];879 -> 3109[label="",style="solid", color="blue", weight=9]; 3109 -> 1024[label="",style="solid", color="blue", weight=3]; 3110[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];879 -> 3110[label="",style="solid", color="blue", weight=9]; 3110 -> 1025[label="",style="solid", color="blue", weight=3]; 3111[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];879 -> 3111[label="",style="solid", color="blue", weight=9]; 3111 -> 1026[label="",style="solid", color="blue", weight=3]; 3112[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];879 -> 3112[label="",style="solid", color="blue", weight=9]; 3112 -> 1027[label="",style="solid", color="blue", weight=3]; 3113[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];879 -> 3113[label="",style="solid", color="blue", weight=9]; 3113 -> 1028[label="",style="solid", color="blue", weight=3]; 3114[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];879 -> 3114[label="",style="solid", color="blue", weight=9]; 3114 -> 1029[label="",style="solid", color="blue", weight=3]; 3115[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];879 -> 3115[label="",style="solid", color="blue", weight=9]; 3115 -> 1030[label="",style="solid", color="blue", weight=3]; 3116[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];879 -> 3116[label="",style="solid", color="blue", weight=9]; 3116 -> 1031[label="",style="solid", color="blue", weight=3]; 3117[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];879 -> 3117[label="",style="solid", color="blue", weight=9]; 3117 -> 1032[label="",style="solid", color="blue", weight=3]; 3118[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];879 -> 3118[label="",style="solid", color="blue", weight=9]; 3118 -> 1033[label="",style="solid", color="blue", weight=3]; 3119[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];879 -> 3119[label="",style="solid", color="blue", weight=9]; 3119 -> 1034[label="",style="solid", color="blue", weight=3]; 3120[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];879 -> 3120[label="",style="solid", color="blue", weight=9]; 3120 -> 1035[label="",style="solid", color="blue", weight=3]; 3121[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];879 -> 3121[label="",style="solid", color="blue", weight=9]; 3121 -> 1036[label="",style="solid", color="blue", weight=3]; 880 -> 414[label="",style="dashed", color="red", weight=0]; 880[label="vxw300 == vxw4000",fontsize=16,color="magenta"];880 -> 1037[label="",style="dashed", color="magenta", weight=3]; 880 -> 1038[label="",style="dashed", color="magenta", weight=3]; 881 -> 415[label="",style="dashed", color="red", weight=0]; 881[label="vxw300 == vxw4000",fontsize=16,color="magenta"];881 -> 1039[label="",style="dashed", color="magenta", weight=3]; 881 -> 1040[label="",style="dashed", color="magenta", weight=3]; 882 -> 416[label="",style="dashed", color="red", weight=0]; 882[label="vxw300 == vxw4000",fontsize=16,color="magenta"];882 -> 1041[label="",style="dashed", color="magenta", weight=3]; 882 -> 1042[label="",style="dashed", color="magenta", weight=3]; 883 -> 417[label="",style="dashed", color="red", weight=0]; 883[label="vxw300 == vxw4000",fontsize=16,color="magenta"];883 -> 1043[label="",style="dashed", color="magenta", weight=3]; 883 -> 1044[label="",style="dashed", color="magenta", weight=3]; 884 -> 418[label="",style="dashed", color="red", weight=0]; 884[label="vxw300 == vxw4000",fontsize=16,color="magenta"];884 -> 1045[label="",style="dashed", color="magenta", weight=3]; 884 -> 1046[label="",style="dashed", color="magenta", weight=3]; 885 -> 419[label="",style="dashed", color="red", weight=0]; 885[label="vxw300 == vxw4000",fontsize=16,color="magenta"];885 -> 1047[label="",style="dashed", color="magenta", weight=3]; 885 -> 1048[label="",style="dashed", color="magenta", weight=3]; 886 -> 420[label="",style="dashed", color="red", weight=0]; 886[label="vxw300 == vxw4000",fontsize=16,color="magenta"];886 -> 1049[label="",style="dashed", color="magenta", weight=3]; 886 -> 1050[label="",style="dashed", color="magenta", weight=3]; 887 -> 421[label="",style="dashed", color="red", weight=0]; 887[label="vxw300 == vxw4000",fontsize=16,color="magenta"];887 -> 1051[label="",style="dashed", color="magenta", weight=3]; 887 -> 1052[label="",style="dashed", color="magenta", weight=3]; 888 -> 422[label="",style="dashed", color="red", weight=0]; 888[label="vxw300 == vxw4000",fontsize=16,color="magenta"];888 -> 1053[label="",style="dashed", color="magenta", weight=3]; 888 -> 1054[label="",style="dashed", color="magenta", weight=3]; 889 -> 423[label="",style="dashed", color="red", weight=0]; 889[label="vxw300 == vxw4000",fontsize=16,color="magenta"];889 -> 1055[label="",style="dashed", color="magenta", weight=3]; 889 -> 1056[label="",style="dashed", color="magenta", weight=3]; 890 -> 424[label="",style="dashed", color="red", weight=0]; 890[label="vxw300 == vxw4000",fontsize=16,color="magenta"];890 -> 1057[label="",style="dashed", color="magenta", weight=3]; 890 -> 1058[label="",style="dashed", color="magenta", weight=3]; 891 -> 425[label="",style="dashed", color="red", weight=0]; 891[label="vxw300 == vxw4000",fontsize=16,color="magenta"];891 -> 1059[label="",style="dashed", color="magenta", weight=3]; 891 -> 1060[label="",style="dashed", color="magenta", weight=3]; 892 -> 426[label="",style="dashed", color="red", weight=0]; 892[label="vxw300 == vxw4000",fontsize=16,color="magenta"];892 -> 1061[label="",style="dashed", color="magenta", weight=3]; 892 -> 1062[label="",style="dashed", color="magenta", weight=3]; 893 -> 427[label="",style="dashed", color="red", weight=0]; 893[label="vxw300 == vxw4000",fontsize=16,color="magenta"];893 -> 1063[label="",style="dashed", color="magenta", weight=3]; 893 -> 1064[label="",style="dashed", color="magenta", weight=3]; 894[label="compare1 (vxw52,vxw53,vxw54) (vxw55,vxw56,vxw57) ((vxw52,vxw53,vxw54) <= (vxw55,vxw56,vxw57))",fontsize=16,color="black",shape="box"];894 -> 1065[label="",style="solid", color="black", weight=3]; 895[label="EQ",fontsize=16,color="green",shape="box"];619[label="vxw4000",fontsize=16,color="green",shape="box"];620[label="Pos vxw3010",fontsize=16,color="green",shape="box"];621[label="Pos vxw40010",fontsize=16,color="green",shape="box"];622[label="vxw300",fontsize=16,color="green",shape="box"];623[label="vxw4000",fontsize=16,color="green",shape="box"];624[label="Neg vxw3010",fontsize=16,color="green",shape="box"];625[label="Pos vxw40010",fontsize=16,color="green",shape="box"];626[label="vxw300",fontsize=16,color="green",shape="box"];627[label="vxw4000",fontsize=16,color="green",shape="box"];628[label="Pos vxw3010",fontsize=16,color="green",shape="box"];629[label="Neg vxw40010",fontsize=16,color="green",shape="box"];630[label="vxw300",fontsize=16,color="green",shape="box"];631[label="vxw4000",fontsize=16,color="green",shape="box"];632[label="Neg vxw3010",fontsize=16,color="green",shape="box"];633[label="Neg vxw40010",fontsize=16,color="green",shape="box"];634[label="vxw300",fontsize=16,color="green",shape="box"];635[label="Integer (primMulInt vxw40000 vxw3010)",fontsize=16,color="green",shape="box"];635 -> 896[label="",style="dashed", color="green", weight=3]; 636[label="primMulInt (Pos vxw40000) (Pos vxw3010)",fontsize=16,color="black",shape="box"];636 -> 897[label="",style="solid", color="black", weight=3]; 637[label="primMulInt (Pos vxw40000) (Neg vxw3010)",fontsize=16,color="black",shape="box"];637 -> 898[label="",style="solid", color="black", weight=3]; 638[label="primMulInt (Neg vxw40000) (Pos vxw3010)",fontsize=16,color="black",shape="box"];638 -> 899[label="",style="solid", color="black", weight=3]; 639[label="primMulInt (Neg vxw40000) (Neg vxw3010)",fontsize=16,color="black",shape="box"];639 -> 900[label="",style="solid", color="black", weight=3]; 640[label="vxw4000",fontsize=16,color="green",shape="box"];641[label="vxw300",fontsize=16,color="green",shape="box"];642[label="vxw4000",fontsize=16,color="green",shape="box"];643[label="vxw300",fontsize=16,color="green",shape="box"];644[label="vxw4000",fontsize=16,color="green",shape="box"];645[label="vxw300",fontsize=16,color="green",shape="box"];646[label="vxw4000",fontsize=16,color="green",shape="box"];647[label="vxw300",fontsize=16,color="green",shape="box"];648[label="vxw4000",fontsize=16,color="green",shape="box"];649[label="vxw300",fontsize=16,color="green",shape="box"];650[label="vxw4000",fontsize=16,color="green",shape="box"];651[label="vxw300",fontsize=16,color="green",shape="box"];652[label="vxw4000",fontsize=16,color="green",shape="box"];653[label="vxw300",fontsize=16,color="green",shape="box"];654[label="vxw4000",fontsize=16,color="green",shape="box"];655[label="vxw300",fontsize=16,color="green",shape="box"];656[label="vxw4000",fontsize=16,color="green",shape="box"];657[label="vxw300",fontsize=16,color="green",shape="box"];658[label="vxw4000",fontsize=16,color="green",shape="box"];659[label="vxw300",fontsize=16,color="green",shape="box"];660[label="vxw4000",fontsize=16,color="green",shape="box"];661[label="vxw300",fontsize=16,color="green",shape="box"];662[label="vxw4000",fontsize=16,color="green",shape="box"];663[label="vxw300",fontsize=16,color="green",shape="box"];664[label="vxw4000",fontsize=16,color="green",shape="box"];665[label="vxw300",fontsize=16,color="green",shape="box"];666[label="vxw4000",fontsize=16,color="green",shape="box"];667[label="vxw300",fontsize=16,color="green",shape="box"];668 -> 1078[label="",style="dashed", color="red", weight=0]; 668[label="compare1 (Left vxw63) (Left vxw64) (Left vxw63 <= Left vxw64)",fontsize=16,color="magenta"];668 -> 1079[label="",style="dashed", color="magenta", weight=3]; 668 -> 1080[label="",style="dashed", color="magenta", weight=3]; 668 -> 1081[label="",style="dashed", color="magenta", weight=3]; 669[label="EQ",fontsize=16,color="green",shape="box"];670[label="LT",fontsize=16,color="green",shape="box"];671[label="compare0 (Right vxw300) (Left vxw4000) otherwise",fontsize=16,color="black",shape="box"];671 -> 902[label="",style="solid", color="black", weight=3]; 672[label="vxw4000",fontsize=16,color="green",shape="box"];673[label="vxw300",fontsize=16,color="green",shape="box"];674[label="vxw4000",fontsize=16,color="green",shape="box"];675[label="vxw300",fontsize=16,color="green",shape="box"];676[label="vxw4000",fontsize=16,color="green",shape="box"];677[label="vxw300",fontsize=16,color="green",shape="box"];678[label="vxw4000",fontsize=16,color="green",shape="box"];679[label="vxw300",fontsize=16,color="green",shape="box"];680[label="vxw4000",fontsize=16,color="green",shape="box"];681[label="vxw300",fontsize=16,color="green",shape="box"];682[label="vxw4000",fontsize=16,color="green",shape="box"];683[label="vxw300",fontsize=16,color="green",shape="box"];684[label="vxw4000",fontsize=16,color="green",shape="box"];685[label="vxw300",fontsize=16,color="green",shape="box"];686[label="vxw4000",fontsize=16,color="green",shape="box"];687[label="vxw300",fontsize=16,color="green",shape="box"];688[label="vxw4000",fontsize=16,color="green",shape="box"];689[label="vxw300",fontsize=16,color="green",shape="box"];690[label="vxw4000",fontsize=16,color="green",shape="box"];691[label="vxw300",fontsize=16,color="green",shape="box"];692[label="vxw4000",fontsize=16,color="green",shape="box"];693[label="vxw300",fontsize=16,color="green",shape="box"];694[label="vxw4000",fontsize=16,color="green",shape="box"];695[label="vxw300",fontsize=16,color="green",shape="box"];696[label="vxw4000",fontsize=16,color="green",shape="box"];697[label="vxw300",fontsize=16,color="green",shape="box"];698[label="vxw4000",fontsize=16,color="green",shape="box"];699[label="vxw300",fontsize=16,color="green",shape="box"];700 -> 1149[label="",style="dashed", color="red", weight=0]; 700[label="compare1 (Right vxw70) (Right vxw71) (Right vxw70 <= Right vxw71)",fontsize=16,color="magenta"];700 -> 1150[label="",style="dashed", color="magenta", weight=3]; 700 -> 1151[label="",style="dashed", color="magenta", weight=3]; 700 -> 1152[label="",style="dashed", color="magenta", weight=3]; 701[label="EQ",fontsize=16,color="green",shape="box"];702[label="vxw4000",fontsize=16,color="green",shape="box"];703[label="Pos vxw3010",fontsize=16,color="green",shape="box"];704[label="Pos vxw40010",fontsize=16,color="green",shape="box"];705[label="vxw300",fontsize=16,color="green",shape="box"];706[label="vxw4000",fontsize=16,color="green",shape="box"];707[label="Neg vxw3010",fontsize=16,color="green",shape="box"];708[label="Pos vxw40010",fontsize=16,color="green",shape="box"];709[label="vxw300",fontsize=16,color="green",shape="box"];710[label="vxw4000",fontsize=16,color="green",shape="box"];711[label="Pos vxw3010",fontsize=16,color="green",shape="box"];712[label="Neg vxw40010",fontsize=16,color="green",shape="box"];713[label="vxw300",fontsize=16,color="green",shape="box"];714[label="vxw4000",fontsize=16,color="green",shape="box"];715[label="Neg vxw3010",fontsize=16,color="green",shape="box"];716[label="Neg vxw40010",fontsize=16,color="green",shape="box"];717[label="vxw300",fontsize=16,color="green",shape="box"];718[label="LT",fontsize=16,color="green",shape="box"];719[label="compare0 True False otherwise",fontsize=16,color="black",shape="box"];719 -> 904[label="",style="solid", color="black", weight=3]; 720[label="compare0 (Just vxw300) Nothing True",fontsize=16,color="black",shape="box"];720 -> 905[label="",style="solid", color="black", weight=3]; 721[label="primEqFloat (Float vxw3000 vxw3001) vxw4000",fontsize=16,color="burlywood",shape="box"];3122[label="vxw4000/Float vxw40000 vxw40001",fontsize=10,color="white",style="solid",shape="box"];721 -> 3122[label="",style="solid", color="burlywood", weight=9]; 3122 -> 906[label="",style="solid", color="burlywood", weight=3]; 722[label="(vxw3000,vxw3001) == (vxw40000,vxw40001)",fontsize=16,color="black",shape="box"];722 -> 907[label="",style="solid", color="black", weight=3]; 723[label="Integer vxw3000 == Integer vxw40000",fontsize=16,color="black",shape="box"];723 -> 908[label="",style="solid", color="black", weight=3]; 724[label="vxw3000 :% vxw3001 == vxw40000 :% vxw40001",fontsize=16,color="black",shape="box"];724 -> 909[label="",style="solid", color="black", weight=3]; 725[label="primEqChar (Char vxw3000) vxw4000",fontsize=16,color="burlywood",shape="box"];3123[label="vxw4000/Char vxw40000",fontsize=10,color="white",style="solid",shape="box"];725 -> 3123[label="",style="solid", color="burlywood", weight=9]; 3123 -> 910[label="",style="solid", color="burlywood", weight=3]; 726[label="False == False",fontsize=16,color="black",shape="box"];726 -> 911[label="",style="solid", color="black", weight=3]; 727[label="False == True",fontsize=16,color="black",shape="box"];727 -> 912[label="",style="solid", color="black", weight=3]; 728[label="True == False",fontsize=16,color="black",shape="box"];728 -> 913[label="",style="solid", color="black", weight=3]; 729[label="True == True",fontsize=16,color="black",shape="box"];729 -> 914[label="",style="solid", color="black", weight=3]; 730[label="(vxw3000,vxw3001,vxw3002) == (vxw40000,vxw40001,vxw40002)",fontsize=16,color="black",shape="box"];730 -> 915[label="",style="solid", color="black", weight=3]; 731[label="primEqInt (Pos vxw3000) vxw4000",fontsize=16,color="burlywood",shape="box"];3124[label="vxw3000/Succ vxw30000",fontsize=10,color="white",style="solid",shape="box"];731 -> 3124[label="",style="solid", color="burlywood", weight=9]; 3124 -> 916[label="",style="solid", color="burlywood", weight=3]; 3125[label="vxw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];731 -> 3125[label="",style="solid", color="burlywood", weight=9]; 3125 -> 917[label="",style="solid", color="burlywood", weight=3]; 732[label="primEqInt (Neg vxw3000) vxw4000",fontsize=16,color="burlywood",shape="box"];3126[label="vxw3000/Succ vxw30000",fontsize=10,color="white",style="solid",shape="box"];732 -> 3126[label="",style="solid", color="burlywood", weight=9]; 3126 -> 918[label="",style="solid", color="burlywood", weight=3]; 3127[label="vxw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];732 -> 3127[label="",style="solid", color="burlywood", weight=9]; 3127 -> 919[label="",style="solid", color="burlywood", weight=3]; 733[label="() == ()",fontsize=16,color="black",shape="box"];733 -> 920[label="",style="solid", color="black", weight=3]; 734[label="primEqDouble (Double vxw3000 vxw3001) vxw4000",fontsize=16,color="burlywood",shape="box"];3128[label="vxw4000/Double vxw40000 vxw40001",fontsize=10,color="white",style="solid",shape="box"];734 -> 3128[label="",style="solid", color="burlywood", weight=9]; 3128 -> 921[label="",style="solid", color="burlywood", weight=3]; 735[label="vxw3000 : vxw3001 == vxw40000 : vxw40001",fontsize=16,color="black",shape="box"];735 -> 922[label="",style="solid", color="black", weight=3]; 736[label="vxw3000 : vxw3001 == []",fontsize=16,color="black",shape="box"];736 -> 923[label="",style="solid", color="black", weight=3]; 737[label="[] == vxw40000 : vxw40001",fontsize=16,color="black",shape="box"];737 -> 924[label="",style="solid", color="black", weight=3]; 738[label="[] == []",fontsize=16,color="black",shape="box"];738 -> 925[label="",style="solid", color="black", weight=3]; 739[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];739 -> 926[label="",style="solid", color="black", weight=3]; 740[label="Nothing == Just vxw40000",fontsize=16,color="black",shape="box"];740 -> 927[label="",style="solid", color="black", weight=3]; 741[label="Just vxw3000 == Nothing",fontsize=16,color="black",shape="box"];741 -> 928[label="",style="solid", color="black", weight=3]; 742[label="Just vxw3000 == Just vxw40000",fontsize=16,color="black",shape="box"];742 -> 929[label="",style="solid", color="black", weight=3]; 743[label="LT == LT",fontsize=16,color="black",shape="box"];743 -> 930[label="",style="solid", color="black", weight=3]; 744[label="LT == EQ",fontsize=16,color="black",shape="box"];744 -> 931[label="",style="solid", color="black", weight=3]; 745[label="LT == GT",fontsize=16,color="black",shape="box"];745 -> 932[label="",style="solid", color="black", weight=3]; 746[label="EQ == LT",fontsize=16,color="black",shape="box"];746 -> 933[label="",style="solid", color="black", weight=3]; 747[label="EQ == EQ",fontsize=16,color="black",shape="box"];747 -> 934[label="",style="solid", color="black", weight=3]; 748[label="EQ == GT",fontsize=16,color="black",shape="box"];748 -> 935[label="",style="solid", color="black", weight=3]; 749[label="GT == LT",fontsize=16,color="black",shape="box"];749 -> 936[label="",style="solid", color="black", weight=3]; 750[label="GT == EQ",fontsize=16,color="black",shape="box"];750 -> 937[label="",style="solid", color="black", weight=3]; 751[label="GT == GT",fontsize=16,color="black",shape="box"];751 -> 938[label="",style="solid", color="black", weight=3]; 752[label="Left vxw3000 == Left vxw40000",fontsize=16,color="black",shape="box"];752 -> 939[label="",style="solid", color="black", weight=3]; 753[label="Left vxw3000 == Right vxw40000",fontsize=16,color="black",shape="box"];753 -> 940[label="",style="solid", color="black", weight=3]; 754[label="Right vxw3000 == Left vxw40000",fontsize=16,color="black",shape="box"];754 -> 941[label="",style="solid", color="black", weight=3]; 755[label="Right vxw3000 == Right vxw40000",fontsize=16,color="black",shape="box"];755 -> 942[label="",style="solid", color="black", weight=3]; 944[label="vxw31",fontsize=16,color="green",shape="box"];945[label="vxw30",fontsize=16,color="green",shape="box"];946[label="Just vxw30 <= Just vxw31",fontsize=16,color="black",shape="box"];946 -> 1066[label="",style="solid", color="black", weight=3]; 943[label="compare1 (Just vxw102) (Just vxw103) vxw104",fontsize=16,color="burlywood",shape="triangle"];3129[label="vxw104/False",fontsize=10,color="white",style="solid",shape="box"];943 -> 3129[label="",style="solid", color="burlywood", weight=9]; 3129 -> 1067[label="",style="solid", color="burlywood", weight=3]; 3130[label="vxw104/True",fontsize=10,color="white",style="solid",shape="box"];943 -> 3130[label="",style="solid", color="burlywood", weight=9]; 3130 -> 1068[label="",style="solid", color="burlywood", weight=3]; 950[label="vxw4001",fontsize=16,color="green",shape="box"];951[label="vxw301",fontsize=16,color="green",shape="box"];952[label="vxw4001",fontsize=16,color="green",shape="box"];953[label="vxw301",fontsize=16,color="green",shape="box"];954[label="vxw4001",fontsize=16,color="green",shape="box"];955[label="vxw301",fontsize=16,color="green",shape="box"];956[label="vxw4001",fontsize=16,color="green",shape="box"];957[label="vxw301",fontsize=16,color="green",shape="box"];958[label="vxw4001",fontsize=16,color="green",shape="box"];959[label="vxw301",fontsize=16,color="green",shape="box"];960[label="vxw4001",fontsize=16,color="green",shape="box"];961[label="vxw301",fontsize=16,color="green",shape="box"];962[label="vxw4001",fontsize=16,color="green",shape="box"];963[label="vxw301",fontsize=16,color="green",shape="box"];964[label="vxw4001",fontsize=16,color="green",shape="box"];965[label="vxw301",fontsize=16,color="green",shape="box"];966[label="vxw4001",fontsize=16,color="green",shape="box"];967[label="vxw301",fontsize=16,color="green",shape="box"];968[label="vxw4001",fontsize=16,color="green",shape="box"];969[label="vxw301",fontsize=16,color="green",shape="box"];970[label="vxw4001",fontsize=16,color="green",shape="box"];971[label="vxw301",fontsize=16,color="green",shape="box"];972[label="vxw4001",fontsize=16,color="green",shape="box"];973[label="vxw301",fontsize=16,color="green",shape="box"];974[label="vxw4001",fontsize=16,color="green",shape="box"];975[label="vxw301",fontsize=16,color="green",shape="box"];976[label="vxw4001",fontsize=16,color="green",shape="box"];977[label="vxw301",fontsize=16,color="green",shape="box"];978[label="vxw4000",fontsize=16,color="green",shape="box"];979[label="vxw300",fontsize=16,color="green",shape="box"];980[label="vxw4000",fontsize=16,color="green",shape="box"];981[label="vxw300",fontsize=16,color="green",shape="box"];982[label="vxw4000",fontsize=16,color="green",shape="box"];983[label="vxw300",fontsize=16,color="green",shape="box"];984[label="vxw4000",fontsize=16,color="green",shape="box"];985[label="vxw300",fontsize=16,color="green",shape="box"];986[label="vxw4000",fontsize=16,color="green",shape="box"];987[label="vxw300",fontsize=16,color="green",shape="box"];988[label="vxw4000",fontsize=16,color="green",shape="box"];989[label="vxw300",fontsize=16,color="green",shape="box"];990[label="vxw4000",fontsize=16,color="green",shape="box"];991[label="vxw300",fontsize=16,color="green",shape="box"];992[label="vxw4000",fontsize=16,color="green",shape="box"];993[label="vxw300",fontsize=16,color="green",shape="box"];994[label="vxw4000",fontsize=16,color="green",shape="box"];995[label="vxw300",fontsize=16,color="green",shape="box"];996[label="vxw4000",fontsize=16,color="green",shape="box"];997[label="vxw300",fontsize=16,color="green",shape="box"];998[label="vxw4000",fontsize=16,color="green",shape="box"];999[label="vxw300",fontsize=16,color="green",shape="box"];1000[label="vxw4000",fontsize=16,color="green",shape="box"];1001[label="vxw300",fontsize=16,color="green",shape="box"];1002[label="vxw4000",fontsize=16,color="green",shape="box"];1003[label="vxw300",fontsize=16,color="green",shape="box"];1004[label="vxw4000",fontsize=16,color="green",shape="box"];1005[label="vxw300",fontsize=16,color="green",shape="box"];1006[label="False",fontsize=16,color="green",shape="box"];1007[label="vxw97",fontsize=16,color="green",shape="box"];1008 -> 1241[label="",style="dashed", color="red", weight=0]; 1008[label="compare1 (vxw79,vxw80) (vxw81,vxw82) (vxw79 < vxw81 || vxw79 == vxw81 && vxw80 <= vxw82)",fontsize=16,color="magenta"];1008 -> 1242[label="",style="dashed", color="magenta", weight=3]; 1008 -> 1243[label="",style="dashed", color="magenta", weight=3]; 1008 -> 1244[label="",style="dashed", color="magenta", weight=3]; 1008 -> 1245[label="",style="dashed", color="magenta", weight=3]; 1008 -> 1246[label="",style="dashed", color="magenta", weight=3]; 1008 -> 1247[label="",style="dashed", color="magenta", weight=3]; 801[label="compare0 EQ LT True",fontsize=16,color="black",shape="box"];801 -> 1069[label="",style="solid", color="black", weight=3]; 802[label="compare0 GT LT True",fontsize=16,color="black",shape="box"];802 -> 1070[label="",style="solid", color="black", weight=3]; 803[label="compare0 GT EQ True",fontsize=16,color="black",shape="box"];803 -> 1071[label="",style="solid", color="black", weight=3]; 1009 -> 414[label="",style="dashed", color="red", weight=0]; 1009[label="vxw302 == vxw4002",fontsize=16,color="magenta"];1009 -> 1087[label="",style="dashed", color="magenta", weight=3]; 1009 -> 1088[label="",style="dashed", color="magenta", weight=3]; 1010 -> 415[label="",style="dashed", color="red", weight=0]; 1010[label="vxw302 == vxw4002",fontsize=16,color="magenta"];1010 -> 1089[label="",style="dashed", color="magenta", weight=3]; 1010 -> 1090[label="",style="dashed", color="magenta", weight=3]; 1011 -> 416[label="",style="dashed", color="red", weight=0]; 1011[label="vxw302 == vxw4002",fontsize=16,color="magenta"];1011 -> 1091[label="",style="dashed", color="magenta", weight=3]; 1011 -> 1092[label="",style="dashed", color="magenta", weight=3]; 1012 -> 417[label="",style="dashed", color="red", weight=0]; 1012[label="vxw302 == vxw4002",fontsize=16,color="magenta"];1012 -> 1093[label="",style="dashed", color="magenta", weight=3]; 1012 -> 1094[label="",style="dashed", color="magenta", weight=3]; 1013 -> 418[label="",style="dashed", color="red", weight=0]; 1013[label="vxw302 == vxw4002",fontsize=16,color="magenta"];1013 -> 1095[label="",style="dashed", color="magenta", weight=3]; 1013 -> 1096[label="",style="dashed", color="magenta", weight=3]; 1014 -> 419[label="",style="dashed", color="red", weight=0]; 1014[label="vxw302 == vxw4002",fontsize=16,color="magenta"];1014 -> 1097[label="",style="dashed", color="magenta", weight=3]; 1014 -> 1098[label="",style="dashed", color="magenta", weight=3]; 1015 -> 420[label="",style="dashed", color="red", weight=0]; 1015[label="vxw302 == vxw4002",fontsize=16,color="magenta"];1015 -> 1099[label="",style="dashed", color="magenta", weight=3]; 1015 -> 1100[label="",style="dashed", color="magenta", weight=3]; 1016 -> 421[label="",style="dashed", color="red", weight=0]; 1016[label="vxw302 == vxw4002",fontsize=16,color="magenta"];1016 -> 1101[label="",style="dashed", color="magenta", weight=3]; 1016 -> 1102[label="",style="dashed", color="magenta", weight=3]; 1017 -> 422[label="",style="dashed", color="red", weight=0]; 1017[label="vxw302 == vxw4002",fontsize=16,color="magenta"];1017 -> 1103[label="",style="dashed", color="magenta", weight=3]; 1017 -> 1104[label="",style="dashed", color="magenta", weight=3]; 1018 -> 423[label="",style="dashed", color="red", weight=0]; 1018[label="vxw302 == vxw4002",fontsize=16,color="magenta"];1018 -> 1105[label="",style="dashed", color="magenta", weight=3]; 1018 -> 1106[label="",style="dashed", color="magenta", weight=3]; 1019 -> 424[label="",style="dashed", color="red", weight=0]; 1019[label="vxw302 == vxw4002",fontsize=16,color="magenta"];1019 -> 1107[label="",style="dashed", color="magenta", weight=3]; 1019 -> 1108[label="",style="dashed", color="magenta", weight=3]; 1020 -> 425[label="",style="dashed", color="red", weight=0]; 1020[label="vxw302 == vxw4002",fontsize=16,color="magenta"];1020 -> 1109[label="",style="dashed", color="magenta", weight=3]; 1020 -> 1110[label="",style="dashed", color="magenta", weight=3]; 1021 -> 426[label="",style="dashed", color="red", weight=0]; 1021[label="vxw302 == vxw4002",fontsize=16,color="magenta"];1021 -> 1111[label="",style="dashed", color="magenta", weight=3]; 1021 -> 1112[label="",style="dashed", color="magenta", weight=3]; 1022 -> 427[label="",style="dashed", color="red", weight=0]; 1022[label="vxw302 == vxw4002",fontsize=16,color="magenta"];1022 -> 1113[label="",style="dashed", color="magenta", weight=3]; 1022 -> 1114[label="",style="dashed", color="magenta", weight=3]; 1023 -> 414[label="",style="dashed", color="red", weight=0]; 1023[label="vxw301 == vxw4001",fontsize=16,color="magenta"];1023 -> 1115[label="",style="dashed", color="magenta", weight=3]; 1023 -> 1116[label="",style="dashed", color="magenta", weight=3]; 1024 -> 415[label="",style="dashed", color="red", weight=0]; 1024[label="vxw301 == vxw4001",fontsize=16,color="magenta"];1024 -> 1117[label="",style="dashed", color="magenta", weight=3]; 1024 -> 1118[label="",style="dashed", color="magenta", weight=3]; 1025 -> 416[label="",style="dashed", color="red", weight=0]; 1025[label="vxw301 == vxw4001",fontsize=16,color="magenta"];1025 -> 1119[label="",style="dashed", color="magenta", weight=3]; 1025 -> 1120[label="",style="dashed", color="magenta", weight=3]; 1026 -> 417[label="",style="dashed", color="red", weight=0]; 1026[label="vxw301 == vxw4001",fontsize=16,color="magenta"];1026 -> 1121[label="",style="dashed", color="magenta", weight=3]; 1026 -> 1122[label="",style="dashed", color="magenta", weight=3]; 1027 -> 418[label="",style="dashed", color="red", weight=0]; 1027[label="vxw301 == vxw4001",fontsize=16,color="magenta"];1027 -> 1123[label="",style="dashed", color="magenta", weight=3]; 1027 -> 1124[label="",style="dashed", color="magenta", weight=3]; 1028 -> 419[label="",style="dashed", color="red", weight=0]; 1028[label="vxw301 == vxw4001",fontsize=16,color="magenta"];1028 -> 1125[label="",style="dashed", color="magenta", weight=3]; 1028 -> 1126[label="",style="dashed", color="magenta", weight=3]; 1029 -> 420[label="",style="dashed", color="red", weight=0]; 1029[label="vxw301 == vxw4001",fontsize=16,color="magenta"];1029 -> 1127[label="",style="dashed", color="magenta", weight=3]; 1029 -> 1128[label="",style="dashed", color="magenta", weight=3]; 1030 -> 421[label="",style="dashed", color="red", weight=0]; 1030[label="vxw301 == vxw4001",fontsize=16,color="magenta"];1030 -> 1129[label="",style="dashed", color="magenta", weight=3]; 1030 -> 1130[label="",style="dashed", color="magenta", weight=3]; 1031 -> 422[label="",style="dashed", color="red", weight=0]; 1031[label="vxw301 == vxw4001",fontsize=16,color="magenta"];1031 -> 1131[label="",style="dashed", color="magenta", weight=3]; 1031 -> 1132[label="",style="dashed", color="magenta", weight=3]; 1032 -> 423[label="",style="dashed", color="red", weight=0]; 1032[label="vxw301 == vxw4001",fontsize=16,color="magenta"];1032 -> 1133[label="",style="dashed", color="magenta", weight=3]; 1032 -> 1134[label="",style="dashed", color="magenta", weight=3]; 1033 -> 424[label="",style="dashed", color="red", weight=0]; 1033[label="vxw301 == vxw4001",fontsize=16,color="magenta"];1033 -> 1135[label="",style="dashed", color="magenta", weight=3]; 1033 -> 1136[label="",style="dashed", color="magenta", weight=3]; 1034 -> 425[label="",style="dashed", color="red", weight=0]; 1034[label="vxw301 == vxw4001",fontsize=16,color="magenta"];1034 -> 1137[label="",style="dashed", color="magenta", weight=3]; 1034 -> 1138[label="",style="dashed", color="magenta", weight=3]; 1035 -> 426[label="",style="dashed", color="red", weight=0]; 1035[label="vxw301 == vxw4001",fontsize=16,color="magenta"];1035 -> 1139[label="",style="dashed", color="magenta", weight=3]; 1035 -> 1140[label="",style="dashed", color="magenta", weight=3]; 1036 -> 427[label="",style="dashed", color="red", weight=0]; 1036[label="vxw301 == vxw4001",fontsize=16,color="magenta"];1036 -> 1141[label="",style="dashed", color="magenta", weight=3]; 1036 -> 1142[label="",style="dashed", color="magenta", weight=3]; 1037[label="vxw4000",fontsize=16,color="green",shape="box"];1038[label="vxw300",fontsize=16,color="green",shape="box"];1039[label="vxw4000",fontsize=16,color="green",shape="box"];1040[label="vxw300",fontsize=16,color="green",shape="box"];1041[label="vxw4000",fontsize=16,color="green",shape="box"];1042[label="vxw300",fontsize=16,color="green",shape="box"];1043[label="vxw4000",fontsize=16,color="green",shape="box"];1044[label="vxw300",fontsize=16,color="green",shape="box"];1045[label="vxw4000",fontsize=16,color="green",shape="box"];1046[label="vxw300",fontsize=16,color="green",shape="box"];1047[label="vxw4000",fontsize=16,color="green",shape="box"];1048[label="vxw300",fontsize=16,color="green",shape="box"];1049[label="vxw4000",fontsize=16,color="green",shape="box"];1050[label="vxw300",fontsize=16,color="green",shape="box"];1051[label="vxw4000",fontsize=16,color="green",shape="box"];1052[label="vxw300",fontsize=16,color="green",shape="box"];1053[label="vxw4000",fontsize=16,color="green",shape="box"];1054[label="vxw300",fontsize=16,color="green",shape="box"];1055[label="vxw4000",fontsize=16,color="green",shape="box"];1056[label="vxw300",fontsize=16,color="green",shape="box"];1057[label="vxw4000",fontsize=16,color="green",shape="box"];1058[label="vxw300",fontsize=16,color="green",shape="box"];1059[label="vxw4000",fontsize=16,color="green",shape="box"];1060[label="vxw300",fontsize=16,color="green",shape="box"];1061[label="vxw4000",fontsize=16,color="green",shape="box"];1062[label="vxw300",fontsize=16,color="green",shape="box"];1063[label="vxw4000",fontsize=16,color="green",shape="box"];1064[label="vxw300",fontsize=16,color="green",shape="box"];1065 -> 1274[label="",style="dashed", color="red", weight=0]; 1065[label="compare1 (vxw52,vxw53,vxw54) (vxw55,vxw56,vxw57) (vxw52 < vxw55 || vxw52 == vxw55 && (vxw53 < vxw56 || vxw53 == vxw56 && vxw54 <= vxw57))",fontsize=16,color="magenta"];1065 -> 1275[label="",style="dashed", color="magenta", weight=3]; 1065 -> 1276[label="",style="dashed", color="magenta", weight=3]; 1065 -> 1277[label="",style="dashed", color="magenta", weight=3]; 1065 -> 1278[label="",style="dashed", color="magenta", weight=3]; 1065 -> 1279[label="",style="dashed", color="magenta", weight=3]; 1065 -> 1280[label="",style="dashed", color="magenta", weight=3]; 1065 -> 1281[label="",style="dashed", color="magenta", weight=3]; 1065 -> 1282[label="",style="dashed", color="magenta", weight=3]; 896 -> 387[label="",style="dashed", color="red", weight=0]; 896[label="primMulInt vxw40000 vxw3010",fontsize=16,color="magenta"];896 -> 1072[label="",style="dashed", color="magenta", weight=3]; 896 -> 1073[label="",style="dashed", color="magenta", weight=3]; 897[label="Pos (primMulNat vxw40000 vxw3010)",fontsize=16,color="green",shape="box"];897 -> 1074[label="",style="dashed", color="green", weight=3]; 898[label="Neg (primMulNat vxw40000 vxw3010)",fontsize=16,color="green",shape="box"];898 -> 1075[label="",style="dashed", color="green", weight=3]; 899[label="Neg (primMulNat vxw40000 vxw3010)",fontsize=16,color="green",shape="box"];899 -> 1076[label="",style="dashed", color="green", weight=3]; 900[label="Pos (primMulNat vxw40000 vxw3010)",fontsize=16,color="green",shape="box"];900 -> 1077[label="",style="dashed", color="green", weight=3]; 1079[label="vxw64",fontsize=16,color="green",shape="box"];1080[label="vxw63",fontsize=16,color="green",shape="box"];1081[label="Left vxw63 <= Left vxw64",fontsize=16,color="black",shape="box"];1081 -> 1145[label="",style="solid", color="black", weight=3]; 1078[label="compare1 (Left vxw109) (Left vxw110) vxw111",fontsize=16,color="burlywood",shape="triangle"];3131[label="vxw111/False",fontsize=10,color="white",style="solid",shape="box"];1078 -> 3131[label="",style="solid", color="burlywood", weight=9]; 3131 -> 1146[label="",style="solid", color="burlywood", weight=3]; 3132[label="vxw111/True",fontsize=10,color="white",style="solid",shape="box"];1078 -> 3132[label="",style="solid", color="burlywood", weight=9]; 3132 -> 1147[label="",style="solid", color="burlywood", weight=3]; 902[label="compare0 (Right vxw300) (Left vxw4000) True",fontsize=16,color="black",shape="box"];902 -> 1148[label="",style="solid", color="black", weight=3]; 1150[label="vxw71",fontsize=16,color="green",shape="box"];1151[label="vxw70",fontsize=16,color="green",shape="box"];1152[label="Right vxw70 <= Right vxw71",fontsize=16,color="black",shape="box"];1152 -> 1156[label="",style="solid", color="black", weight=3]; 1149[label="compare1 (Right vxw119) (Right vxw120) vxw121",fontsize=16,color="burlywood",shape="triangle"];3133[label="vxw121/False",fontsize=10,color="white",style="solid",shape="box"];1149 -> 3133[label="",style="solid", color="burlywood", weight=9]; 3133 -> 1157[label="",style="solid", color="burlywood", weight=3]; 3134[label="vxw121/True",fontsize=10,color="white",style="solid",shape="box"];1149 -> 3134[label="",style="solid", color="burlywood", weight=9]; 3134 -> 1158[label="",style="solid", color="burlywood", weight=3]; 904[label="compare0 True False True",fontsize=16,color="black",shape="box"];904 -> 1159[label="",style="solid", color="black", weight=3]; 905[label="GT",fontsize=16,color="green",shape="box"];906[label="primEqFloat (Float vxw3000 vxw3001) (Float vxw40000 vxw40001)",fontsize=16,color="black",shape="box"];906 -> 1160[label="",style="solid", color="black", weight=3]; 907 -> 837[label="",style="dashed", color="red", weight=0]; 907[label="vxw3000 == vxw40000 && vxw3001 == vxw40001",fontsize=16,color="magenta"];907 -> 1161[label="",style="dashed", color="magenta", weight=3]; 907 -> 1162[label="",style="dashed", color="magenta", weight=3]; 908 -> 539[label="",style="dashed", color="red", weight=0]; 908[label="primEqInt vxw3000 vxw40000",fontsize=16,color="magenta"];908 -> 1163[label="",style="dashed", color="magenta", weight=3]; 908 -> 1164[label="",style="dashed", color="magenta", weight=3]; 909 -> 837[label="",style="dashed", color="red", weight=0]; 909[label="vxw3000 == vxw40000 && vxw3001 == vxw40001",fontsize=16,color="magenta"];909 -> 1165[label="",style="dashed", color="magenta", weight=3]; 909 -> 1166[label="",style="dashed", color="magenta", weight=3]; 910[label="primEqChar (Char vxw3000) (Char vxw40000)",fontsize=16,color="black",shape="box"];910 -> 1167[label="",style="solid", color="black", weight=3]; 911[label="True",fontsize=16,color="green",shape="box"];912[label="False",fontsize=16,color="green",shape="box"];913[label="False",fontsize=16,color="green",shape="box"];914[label="True",fontsize=16,color="green",shape="box"];915 -> 837[label="",style="dashed", color="red", weight=0]; 915[label="vxw3000 == vxw40000 && vxw3001 == vxw40001 && vxw3002 == vxw40002",fontsize=16,color="magenta"];915 -> 1168[label="",style="dashed", color="magenta", weight=3]; 915 -> 1169[label="",style="dashed", color="magenta", weight=3]; 916[label="primEqInt (Pos (Succ vxw30000)) vxw4000",fontsize=16,color="burlywood",shape="box"];3135[label="vxw4000/Pos vxw40000",fontsize=10,color="white",style="solid",shape="box"];916 -> 3135[label="",style="solid", color="burlywood", weight=9]; 3135 -> 1170[label="",style="solid", color="burlywood", weight=3]; 3136[label="vxw4000/Neg vxw40000",fontsize=10,color="white",style="solid",shape="box"];916 -> 3136[label="",style="solid", color="burlywood", weight=9]; 3136 -> 1171[label="",style="solid", color="burlywood", weight=3]; 917[label="primEqInt (Pos Zero) vxw4000",fontsize=16,color="burlywood",shape="box"];3137[label="vxw4000/Pos vxw40000",fontsize=10,color="white",style="solid",shape="box"];917 -> 3137[label="",style="solid", color="burlywood", weight=9]; 3137 -> 1172[label="",style="solid", color="burlywood", weight=3]; 3138[label="vxw4000/Neg vxw40000",fontsize=10,color="white",style="solid",shape="box"];917 -> 3138[label="",style="solid", color="burlywood", weight=9]; 3138 -> 1173[label="",style="solid", color="burlywood", weight=3]; 918[label="primEqInt (Neg (Succ vxw30000)) vxw4000",fontsize=16,color="burlywood",shape="box"];3139[label="vxw4000/Pos vxw40000",fontsize=10,color="white",style="solid",shape="box"];918 -> 3139[label="",style="solid", color="burlywood", weight=9]; 3139 -> 1174[label="",style="solid", color="burlywood", weight=3]; 3140[label="vxw4000/Neg vxw40000",fontsize=10,color="white",style="solid",shape="box"];918 -> 3140[label="",style="solid", color="burlywood", weight=9]; 3140 -> 1175[label="",style="solid", color="burlywood", weight=3]; 919[label="primEqInt (Neg Zero) vxw4000",fontsize=16,color="burlywood",shape="box"];3141[label="vxw4000/Pos vxw40000",fontsize=10,color="white",style="solid",shape="box"];919 -> 3141[label="",style="solid", color="burlywood", weight=9]; 3141 -> 1176[label="",style="solid", color="burlywood", weight=3]; 3142[label="vxw4000/Neg vxw40000",fontsize=10,color="white",style="solid",shape="box"];919 -> 3142[label="",style="solid", color="burlywood", weight=9]; 3142 -> 1177[label="",style="solid", color="burlywood", weight=3]; 920[label="True",fontsize=16,color="green",shape="box"];921[label="primEqDouble (Double vxw3000 vxw3001) (Double vxw40000 vxw40001)",fontsize=16,color="black",shape="box"];921 -> 1178[label="",style="solid", color="black", weight=3]; 922 -> 837[label="",style="dashed", color="red", weight=0]; 922[label="vxw3000 == vxw40000 && vxw3001 == vxw40001",fontsize=16,color="magenta"];922 -> 1179[label="",style="dashed", color="magenta", weight=3]; 922 -> 1180[label="",style="dashed", color="magenta", weight=3]; 923[label="False",fontsize=16,color="green",shape="box"];924[label="False",fontsize=16,color="green",shape="box"];925[label="True",fontsize=16,color="green",shape="box"];926[label="True",fontsize=16,color="green",shape="box"];927[label="False",fontsize=16,color="green",shape="box"];928[label="False",fontsize=16,color="green",shape="box"];929[label="vxw3000 == vxw40000",fontsize=16,color="blue",shape="box"];3143[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];929 -> 3143[label="",style="solid", color="blue", weight=9]; 3143 -> 1181[label="",style="solid", color="blue", weight=3]; 3144[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];929 -> 3144[label="",style="solid", color="blue", weight=9]; 3144 -> 1182[label="",style="solid", color="blue", weight=3]; 3145[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];929 -> 3145[label="",style="solid", color="blue", weight=9]; 3145 -> 1183[label="",style="solid", color="blue", weight=3]; 3146[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];929 -> 3146[label="",style="solid", color="blue", weight=9]; 3146 -> 1184[label="",style="solid", color="blue", weight=3]; 3147[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];929 -> 3147[label="",style="solid", color="blue", weight=9]; 3147 -> 1185[label="",style="solid", color="blue", weight=3]; 3148[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];929 -> 3148[label="",style="solid", color="blue", weight=9]; 3148 -> 1186[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"];929 -> 3149[label="",style="solid", color="blue", weight=9]; 3149 -> 1187[label="",style="solid", color="blue", weight=3]; 3150[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];929 -> 3150[label="",style="solid", color="blue", weight=9]; 3150 -> 1188[label="",style="solid", color="blue", weight=3]; 3151[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];929 -> 3151[label="",style="solid", color="blue", weight=9]; 3151 -> 1189[label="",style="solid", color="blue", weight=3]; 3152[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];929 -> 3152[label="",style="solid", color="blue", weight=9]; 3152 -> 1190[label="",style="solid", color="blue", weight=3]; 3153[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];929 -> 3153[label="",style="solid", color="blue", weight=9]; 3153 -> 1191[label="",style="solid", color="blue", weight=3]; 3154[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];929 -> 3154[label="",style="solid", color="blue", weight=9]; 3154 -> 1192[label="",style="solid", color="blue", weight=3]; 3155[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];929 -> 3155[label="",style="solid", color="blue", weight=9]; 3155 -> 1193[label="",style="solid", color="blue", weight=3]; 3156[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];929 -> 3156[label="",style="solid", color="blue", weight=9]; 3156 -> 1194[label="",style="solid", color="blue", weight=3]; 930[label="True",fontsize=16,color="green",shape="box"];931[label="False",fontsize=16,color="green",shape="box"];932[label="False",fontsize=16,color="green",shape="box"];933[label="False",fontsize=16,color="green",shape="box"];934[label="True",fontsize=16,color="green",shape="box"];935[label="False",fontsize=16,color="green",shape="box"];936[label="False",fontsize=16,color="green",shape="box"];937[label="False",fontsize=16,color="green",shape="box"];938[label="True",fontsize=16,color="green",shape="box"];939[label="vxw3000 == vxw40000",fontsize=16,color="blue",shape="box"];3157[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];939 -> 3157[label="",style="solid", color="blue", weight=9]; 3157 -> 1195[label="",style="solid", color="blue", weight=3]; 3158[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];939 -> 3158[label="",style="solid", color="blue", weight=9]; 3158 -> 1196[label="",style="solid", color="blue", weight=3]; 3159[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];939 -> 3159[label="",style="solid", color="blue", weight=9]; 3159 -> 1197[label="",style="solid", color="blue", weight=3]; 3160[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];939 -> 3160[label="",style="solid", color="blue", weight=9]; 3160 -> 1198[label="",style="solid", color="blue", weight=3]; 3161[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];939 -> 3161[label="",style="solid", color="blue", weight=9]; 3161 -> 1199[label="",style="solid", color="blue", weight=3]; 3162[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];939 -> 3162[label="",style="solid", color="blue", weight=9]; 3162 -> 1200[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"];939 -> 3163[label="",style="solid", color="blue", weight=9]; 3163 -> 1201[label="",style="solid", color="blue", weight=3]; 3164[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];939 -> 3164[label="",style="solid", color="blue", weight=9]; 3164 -> 1202[label="",style="solid", color="blue", weight=3]; 3165[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];939 -> 3165[label="",style="solid", color="blue", weight=9]; 3165 -> 1203[label="",style="solid", color="blue", weight=3]; 3166[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];939 -> 3166[label="",style="solid", color="blue", weight=9]; 3166 -> 1204[label="",style="solid", color="blue", weight=3]; 3167[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];939 -> 3167[label="",style="solid", color="blue", weight=9]; 3167 -> 1205[label="",style="solid", color="blue", weight=3]; 3168[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];939 -> 3168[label="",style="solid", color="blue", weight=9]; 3168 -> 1206[label="",style="solid", color="blue", weight=3]; 3169[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];939 -> 3169[label="",style="solid", color="blue", weight=9]; 3169 -> 1207[label="",style="solid", color="blue", weight=3]; 3170[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];939 -> 3170[label="",style="solid", color="blue", weight=9]; 3170 -> 1208[label="",style="solid", color="blue", weight=3]; 940[label="False",fontsize=16,color="green",shape="box"];941[label="False",fontsize=16,color="green",shape="box"];942[label="vxw3000 == vxw40000",fontsize=16,color="blue",shape="box"];3171[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];942 -> 3171[label="",style="solid", color="blue", weight=9]; 3171 -> 1209[label="",style="solid", color="blue", weight=3]; 3172[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];942 -> 3172[label="",style="solid", color="blue", weight=9]; 3172 -> 1210[label="",style="solid", color="blue", weight=3]; 3173[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];942 -> 3173[label="",style="solid", color="blue", weight=9]; 3173 -> 1211[label="",style="solid", color="blue", weight=3]; 3174[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];942 -> 3174[label="",style="solid", color="blue", weight=9]; 3174 -> 1212[label="",style="solid", color="blue", weight=3]; 3175[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];942 -> 3175[label="",style="solid", color="blue", weight=9]; 3175 -> 1213[label="",style="solid", color="blue", weight=3]; 3176[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];942 -> 3176[label="",style="solid", color="blue", weight=9]; 3176 -> 1214[label="",style="solid", color="blue", weight=3]; 3177[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];942 -> 3177[label="",style="solid", color="blue", weight=9]; 3177 -> 1215[label="",style="solid", color="blue", weight=3]; 3178[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];942 -> 3178[label="",style="solid", color="blue", weight=9]; 3178 -> 1216[label="",style="solid", color="blue", weight=3]; 3179[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];942 -> 3179[label="",style="solid", color="blue", weight=9]; 3179 -> 1217[label="",style="solid", color="blue", weight=3]; 3180[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];942 -> 3180[label="",style="solid", color="blue", weight=9]; 3180 -> 1218[label="",style="solid", color="blue", weight=3]; 3181[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];942 -> 3181[label="",style="solid", color="blue", weight=9]; 3181 -> 1219[label="",style="solid", color="blue", weight=3]; 3182[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];942 -> 3182[label="",style="solid", color="blue", weight=9]; 3182 -> 1220[label="",style="solid", color="blue", weight=3]; 3183[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];942 -> 3183[label="",style="solid", color="blue", weight=9]; 3183 -> 1221[label="",style="solid", color="blue", weight=3]; 3184[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];942 -> 3184[label="",style="solid", color="blue", weight=9]; 3184 -> 1222[label="",style="solid", color="blue", weight=3]; 1066[label="vxw30 <= vxw31",fontsize=16,color="blue",shape="box"];3185[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1066 -> 3185[label="",style="solid", color="blue", weight=9]; 3185 -> 1223[label="",style="solid", color="blue", weight=3]; 3186[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1066 -> 3186[label="",style="solid", color="blue", weight=9]; 3186 -> 1224[label="",style="solid", color="blue", weight=3]; 3187[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1066 -> 3187[label="",style="solid", color="blue", weight=9]; 3187 -> 1225[label="",style="solid", color="blue", weight=3]; 3188[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1066 -> 3188[label="",style="solid", color="blue", weight=9]; 3188 -> 1226[label="",style="solid", color="blue", weight=3]; 3189[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1066 -> 3189[label="",style="solid", color="blue", weight=9]; 3189 -> 1227[label="",style="solid", color="blue", weight=3]; 3190[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1066 -> 3190[label="",style="solid", color="blue", weight=9]; 3190 -> 1228[label="",style="solid", color="blue", weight=3]; 3191[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1066 -> 3191[label="",style="solid", color="blue", weight=9]; 3191 -> 1229[label="",style="solid", color="blue", weight=3]; 3192[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1066 -> 3192[label="",style="solid", color="blue", weight=9]; 3192 -> 1230[label="",style="solid", color="blue", weight=3]; 3193[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1066 -> 3193[label="",style="solid", color="blue", weight=9]; 3193 -> 1231[label="",style="solid", color="blue", weight=3]; 3194[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1066 -> 3194[label="",style="solid", color="blue", weight=9]; 3194 -> 1232[label="",style="solid", color="blue", weight=3]; 3195[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1066 -> 3195[label="",style="solid", color="blue", weight=9]; 3195 -> 1233[label="",style="solid", color="blue", weight=3]; 3196[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1066 -> 3196[label="",style="solid", color="blue", weight=9]; 3196 -> 1234[label="",style="solid", color="blue", weight=3]; 3197[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1066 -> 3197[label="",style="solid", color="blue", weight=9]; 3197 -> 1235[label="",style="solid", color="blue", weight=3]; 3198[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1066 -> 3198[label="",style="solid", color="blue", weight=9]; 3198 -> 1236[label="",style="solid", color="blue", weight=3]; 1067[label="compare1 (Just vxw102) (Just vxw103) False",fontsize=16,color="black",shape="box"];1067 -> 1237[label="",style="solid", color="black", weight=3]; 1068[label="compare1 (Just vxw102) (Just vxw103) True",fontsize=16,color="black",shape="box"];1068 -> 1238[label="",style="solid", color="black", weight=3]; 1242[label="vxw82",fontsize=16,color="green",shape="box"];1243[label="vxw81",fontsize=16,color="green",shape="box"];1244[label="vxw79 < vxw81",fontsize=16,color="blue",shape="box"];3199[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1244 -> 3199[label="",style="solid", color="blue", weight=9]; 3199 -> 1254[label="",style="solid", color="blue", weight=3]; 3200[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1244 -> 3200[label="",style="solid", color="blue", weight=9]; 3200 -> 1255[label="",style="solid", color="blue", weight=3]; 3201[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1244 -> 3201[label="",style="solid", color="blue", weight=9]; 3201 -> 1256[label="",style="solid", color="blue", weight=3]; 3202[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1244 -> 3202[label="",style="solid", color="blue", weight=9]; 3202 -> 1257[label="",style="solid", color="blue", weight=3]; 3203[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1244 -> 3203[label="",style="solid", color="blue", weight=9]; 3203 -> 1258[label="",style="solid", color="blue", weight=3]; 3204[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1244 -> 3204[label="",style="solid", color="blue", weight=9]; 3204 -> 1259[label="",style="solid", color="blue", weight=3]; 3205[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1244 -> 3205[label="",style="solid", color="blue", weight=9]; 3205 -> 1260[label="",style="solid", color="blue", weight=3]; 3206[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1244 -> 3206[label="",style="solid", color="blue", weight=9]; 3206 -> 1261[label="",style="solid", color="blue", weight=3]; 3207[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1244 -> 3207[label="",style="solid", color="blue", weight=9]; 3207 -> 1262[label="",style="solid", color="blue", weight=3]; 3208[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1244 -> 3208[label="",style="solid", color="blue", weight=9]; 3208 -> 1263[label="",style="solid", color="blue", weight=3]; 3209[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1244 -> 3209[label="",style="solid", color="blue", weight=9]; 3209 -> 1264[label="",style="solid", color="blue", weight=3]; 3210[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1244 -> 3210[label="",style="solid", color="blue", weight=9]; 3210 -> 1265[label="",style="solid", color="blue", weight=3]; 3211[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1244 -> 3211[label="",style="solid", color="blue", weight=9]; 3211 -> 1266[label="",style="solid", color="blue", weight=3]; 3212[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1244 -> 3212[label="",style="solid", color="blue", weight=9]; 3212 -> 1267[label="",style="solid", color="blue", weight=3]; 1245 -> 837[label="",style="dashed", color="red", weight=0]; 1245[label="vxw79 == vxw81 && vxw80 <= vxw82",fontsize=16,color="magenta"];1245 -> 1268[label="",style="dashed", color="magenta", weight=3]; 1245 -> 1269[label="",style="dashed", color="magenta", weight=3]; 1246[label="vxw79",fontsize=16,color="green",shape="box"];1247[label="vxw80",fontsize=16,color="green",shape="box"];1241[label="compare1 (vxw129,vxw130) (vxw131,vxw132) (vxw133 || vxw134)",fontsize=16,color="burlywood",shape="triangle"];3213[label="vxw133/False",fontsize=10,color="white",style="solid",shape="box"];1241 -> 3213[label="",style="solid", color="burlywood", weight=9]; 3213 -> 1270[label="",style="solid", color="burlywood", weight=3]; 3214[label="vxw133/True",fontsize=10,color="white",style="solid",shape="box"];1241 -> 3214[label="",style="solid", color="burlywood", weight=9]; 3214 -> 1271[label="",style="solid", color="burlywood", weight=3]; 1069[label="GT",fontsize=16,color="green",shape="box"];1070[label="GT",fontsize=16,color="green",shape="box"];1071[label="GT",fontsize=16,color="green",shape="box"];1087[label="vxw4002",fontsize=16,color="green",shape="box"];1088[label="vxw302",fontsize=16,color="green",shape="box"];1089[label="vxw4002",fontsize=16,color="green",shape="box"];1090[label="vxw302",fontsize=16,color="green",shape="box"];1091[label="vxw4002",fontsize=16,color="green",shape="box"];1092[label="vxw302",fontsize=16,color="green",shape="box"];1093[label="vxw4002",fontsize=16,color="green",shape="box"];1094[label="vxw302",fontsize=16,color="green",shape="box"];1095[label="vxw4002",fontsize=16,color="green",shape="box"];1096[label="vxw302",fontsize=16,color="green",shape="box"];1097[label="vxw4002",fontsize=16,color="green",shape="box"];1098[label="vxw302",fontsize=16,color="green",shape="box"];1099[label="vxw4002",fontsize=16,color="green",shape="box"];1100[label="vxw302",fontsize=16,color="green",shape="box"];1101[label="vxw4002",fontsize=16,color="green",shape="box"];1102[label="vxw302",fontsize=16,color="green",shape="box"];1103[label="vxw4002",fontsize=16,color="green",shape="box"];1104[label="vxw302",fontsize=16,color="green",shape="box"];1105[label="vxw4002",fontsize=16,color="green",shape="box"];1106[label="vxw302",fontsize=16,color="green",shape="box"];1107[label="vxw4002",fontsize=16,color="green",shape="box"];1108[label="vxw302",fontsize=16,color="green",shape="box"];1109[label="vxw4002",fontsize=16,color="green",shape="box"];1110[label="vxw302",fontsize=16,color="green",shape="box"];1111[label="vxw4002",fontsize=16,color="green",shape="box"];1112[label="vxw302",fontsize=16,color="green",shape="box"];1113[label="vxw4002",fontsize=16,color="green",shape="box"];1114[label="vxw302",fontsize=16,color="green",shape="box"];1115[label="vxw4001",fontsize=16,color="green",shape="box"];1116[label="vxw301",fontsize=16,color="green",shape="box"];1117[label="vxw4001",fontsize=16,color="green",shape="box"];1118[label="vxw301",fontsize=16,color="green",shape="box"];1119[label="vxw4001",fontsize=16,color="green",shape="box"];1120[label="vxw301",fontsize=16,color="green",shape="box"];1121[label="vxw4001",fontsize=16,color="green",shape="box"];1122[label="vxw301",fontsize=16,color="green",shape="box"];1123[label="vxw4001",fontsize=16,color="green",shape="box"];1124[label="vxw301",fontsize=16,color="green",shape="box"];1125[label="vxw4001",fontsize=16,color="green",shape="box"];1126[label="vxw301",fontsize=16,color="green",shape="box"];1127[label="vxw4001",fontsize=16,color="green",shape="box"];1128[label="vxw301",fontsize=16,color="green",shape="box"];1129[label="vxw4001",fontsize=16,color="green",shape="box"];1130[label="vxw301",fontsize=16,color="green",shape="box"];1131[label="vxw4001",fontsize=16,color="green",shape="box"];1132[label="vxw301",fontsize=16,color="green",shape="box"];1133[label="vxw4001",fontsize=16,color="green",shape="box"];1134[label="vxw301",fontsize=16,color="green",shape="box"];1135[label="vxw4001",fontsize=16,color="green",shape="box"];1136[label="vxw301",fontsize=16,color="green",shape="box"];1137[label="vxw4001",fontsize=16,color="green",shape="box"];1138[label="vxw301",fontsize=16,color="green",shape="box"];1139[label="vxw4001",fontsize=16,color="green",shape="box"];1140[label="vxw301",fontsize=16,color="green",shape="box"];1141[label="vxw4001",fontsize=16,color="green",shape="box"];1142[label="vxw301",fontsize=16,color="green",shape="box"];1275[label="vxw54",fontsize=16,color="green",shape="box"];1276[label="vxw53",fontsize=16,color="green",shape="box"];1277[label="vxw52",fontsize=16,color="green",shape="box"];1278 -> 837[label="",style="dashed", color="red", weight=0]; 1278[label="vxw52 == vxw55 && (vxw53 < vxw56 || vxw53 == vxw56 && vxw54 <= vxw57)",fontsize=16,color="magenta"];1278 -> 1291[label="",style="dashed", color="magenta", weight=3]; 1278 -> 1292[label="",style="dashed", color="magenta", weight=3]; 1279[label="vxw55",fontsize=16,color="green",shape="box"];1280[label="vxw56",fontsize=16,color="green",shape="box"];1281[label="vxw52 < vxw55",fontsize=16,color="blue",shape="box"];3215[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1281 -> 3215[label="",style="solid", color="blue", weight=9]; 3215 -> 1293[label="",style="solid", color="blue", weight=3]; 3216[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1281 -> 3216[label="",style="solid", color="blue", weight=9]; 3216 -> 1294[label="",style="solid", color="blue", weight=3]; 3217[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1281 -> 3217[label="",style="solid", color="blue", weight=9]; 3217 -> 1295[label="",style="solid", color="blue", weight=3]; 3218[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1281 -> 3218[label="",style="solid", color="blue", weight=9]; 3218 -> 1296[label="",style="solid", color="blue", weight=3]; 3219[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1281 -> 3219[label="",style="solid", color="blue", weight=9]; 3219 -> 1297[label="",style="solid", color="blue", weight=3]; 3220[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1281 -> 3220[label="",style="solid", color="blue", weight=9]; 3220 -> 1298[label="",style="solid", color="blue", weight=3]; 3221[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1281 -> 3221[label="",style="solid", color="blue", weight=9]; 3221 -> 1299[label="",style="solid", color="blue", weight=3]; 3222[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1281 -> 3222[label="",style="solid", color="blue", weight=9]; 3222 -> 1300[label="",style="solid", color="blue", weight=3]; 3223[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1281 -> 3223[label="",style="solid", color="blue", weight=9]; 3223 -> 1301[label="",style="solid", color="blue", weight=3]; 3224[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1281 -> 3224[label="",style="solid", color="blue", weight=9]; 3224 -> 1302[label="",style="solid", color="blue", weight=3]; 3225[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1281 -> 3225[label="",style="solid", color="blue", weight=9]; 3225 -> 1303[label="",style="solid", color="blue", weight=3]; 3226[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1281 -> 3226[label="",style="solid", color="blue", weight=9]; 3226 -> 1304[label="",style="solid", color="blue", weight=3]; 3227[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1281 -> 3227[label="",style="solid", color="blue", weight=9]; 3227 -> 1305[label="",style="solid", color="blue", weight=3]; 3228[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1281 -> 3228[label="",style="solid", color="blue", weight=9]; 3228 -> 1306[label="",style="solid", color="blue", weight=3]; 1282[label="vxw57",fontsize=16,color="green",shape="box"];1274[label="compare1 (vxw144,vxw145,vxw146) (vxw147,vxw148,vxw149) (vxw150 || vxw151)",fontsize=16,color="burlywood",shape="triangle"];3229[label="vxw150/False",fontsize=10,color="white",style="solid",shape="box"];1274 -> 3229[label="",style="solid", color="burlywood", weight=9]; 3229 -> 1307[label="",style="solid", color="burlywood", weight=3]; 3230[label="vxw150/True",fontsize=10,color="white",style="solid",shape="box"];1274 -> 3230[label="",style="solid", color="burlywood", weight=9]; 3230 -> 1308[label="",style="solid", color="burlywood", weight=3]; 1072[label="vxw3010",fontsize=16,color="green",shape="box"];1073[label="vxw40000",fontsize=16,color="green",shape="box"];1074[label="primMulNat vxw40000 vxw3010",fontsize=16,color="burlywood",shape="triangle"];3231[label="vxw40000/Succ vxw400000",fontsize=10,color="white",style="solid",shape="box"];1074 -> 3231[label="",style="solid", color="burlywood", weight=9]; 3231 -> 1309[label="",style="solid", color="burlywood", weight=3]; 3232[label="vxw40000/Zero",fontsize=10,color="white",style="solid",shape="box"];1074 -> 3232[label="",style="solid", color="burlywood", weight=9]; 3232 -> 1310[label="",style="solid", color="burlywood", weight=3]; 1075 -> 1074[label="",style="dashed", color="red", weight=0]; 1075[label="primMulNat vxw40000 vxw3010",fontsize=16,color="magenta"];1075 -> 1311[label="",style="dashed", color="magenta", weight=3]; 1076 -> 1074[label="",style="dashed", color="red", weight=0]; 1076[label="primMulNat vxw40000 vxw3010",fontsize=16,color="magenta"];1076 -> 1312[label="",style="dashed", color="magenta", weight=3]; 1077 -> 1074[label="",style="dashed", color="red", weight=0]; 1077[label="primMulNat vxw40000 vxw3010",fontsize=16,color="magenta"];1077 -> 1313[label="",style="dashed", color="magenta", weight=3]; 1077 -> 1314[label="",style="dashed", color="magenta", weight=3]; 1145[label="vxw63 <= vxw64",fontsize=16,color="blue",shape="box"];3233[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1145 -> 3233[label="",style="solid", color="blue", weight=9]; 3233 -> 1315[label="",style="solid", color="blue", weight=3]; 3234[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1145 -> 3234[label="",style="solid", color="blue", weight=9]; 3234 -> 1316[label="",style="solid", color="blue", weight=3]; 3235[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1145 -> 3235[label="",style="solid", color="blue", weight=9]; 3235 -> 1317[label="",style="solid", color="blue", weight=3]; 3236[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1145 -> 3236[label="",style="solid", color="blue", weight=9]; 3236 -> 1318[label="",style="solid", color="blue", weight=3]; 3237[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1145 -> 3237[label="",style="solid", color="blue", weight=9]; 3237 -> 1319[label="",style="solid", color="blue", weight=3]; 3238[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1145 -> 3238[label="",style="solid", color="blue", weight=9]; 3238 -> 1320[label="",style="solid", color="blue", weight=3]; 3239[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1145 -> 3239[label="",style="solid", color="blue", weight=9]; 3239 -> 1321[label="",style="solid", color="blue", weight=3]; 3240[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1145 -> 3240[label="",style="solid", color="blue", weight=9]; 3240 -> 1322[label="",style="solid", color="blue", weight=3]; 3241[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1145 -> 3241[label="",style="solid", color="blue", weight=9]; 3241 -> 1323[label="",style="solid", color="blue", weight=3]; 3242[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1145 -> 3242[label="",style="solid", color="blue", weight=9]; 3242 -> 1324[label="",style="solid", color="blue", weight=3]; 3243[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1145 -> 3243[label="",style="solid", color="blue", weight=9]; 3243 -> 1325[label="",style="solid", color="blue", weight=3]; 3244[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1145 -> 3244[label="",style="solid", color="blue", weight=9]; 3244 -> 1326[label="",style="solid", color="blue", weight=3]; 3245[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1145 -> 3245[label="",style="solid", color="blue", weight=9]; 3245 -> 1327[label="",style="solid", color="blue", weight=3]; 3246[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1145 -> 3246[label="",style="solid", color="blue", weight=9]; 3246 -> 1328[label="",style="solid", color="blue", weight=3]; 1146[label="compare1 (Left vxw109) (Left vxw110) False",fontsize=16,color="black",shape="box"];1146 -> 1329[label="",style="solid", color="black", weight=3]; 1147[label="compare1 (Left vxw109) (Left vxw110) True",fontsize=16,color="black",shape="box"];1147 -> 1330[label="",style="solid", color="black", weight=3]; 1148[label="GT",fontsize=16,color="green",shape="box"];1156[label="vxw70 <= vxw71",fontsize=16,color="blue",shape="box"];3247[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1156 -> 3247[label="",style="solid", color="blue", weight=9]; 3247 -> 1331[label="",style="solid", color="blue", weight=3]; 3248[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1156 -> 3248[label="",style="solid", color="blue", weight=9]; 3248 -> 1332[label="",style="solid", color="blue", weight=3]; 3249[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1156 -> 3249[label="",style="solid", color="blue", weight=9]; 3249 -> 1333[label="",style="solid", color="blue", weight=3]; 3250[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1156 -> 3250[label="",style="solid", color="blue", weight=9]; 3250 -> 1334[label="",style="solid", color="blue", weight=3]; 3251[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1156 -> 3251[label="",style="solid", color="blue", weight=9]; 3251 -> 1335[label="",style="solid", color="blue", weight=3]; 3252[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1156 -> 3252[label="",style="solid", color="blue", weight=9]; 3252 -> 1336[label="",style="solid", color="blue", weight=3]; 3253[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1156 -> 3253[label="",style="solid", color="blue", weight=9]; 3253 -> 1337[label="",style="solid", color="blue", weight=3]; 3254[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1156 -> 3254[label="",style="solid", color="blue", weight=9]; 3254 -> 1338[label="",style="solid", color="blue", weight=3]; 3255[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1156 -> 3255[label="",style="solid", color="blue", weight=9]; 3255 -> 1339[label="",style="solid", color="blue", weight=3]; 3256[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1156 -> 3256[label="",style="solid", color="blue", weight=9]; 3256 -> 1340[label="",style="solid", color="blue", weight=3]; 3257[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1156 -> 3257[label="",style="solid", color="blue", weight=9]; 3257 -> 1341[label="",style="solid", color="blue", weight=3]; 3258[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1156 -> 3258[label="",style="solid", color="blue", weight=9]; 3258 -> 1342[label="",style="solid", color="blue", weight=3]; 3259[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1156 -> 3259[label="",style="solid", color="blue", weight=9]; 3259 -> 1343[label="",style="solid", color="blue", weight=3]; 3260[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1156 -> 3260[label="",style="solid", color="blue", weight=9]; 3260 -> 1344[label="",style="solid", color="blue", weight=3]; 1157[label="compare1 (Right vxw119) (Right vxw120) False",fontsize=16,color="black",shape="box"];1157 -> 1345[label="",style="solid", color="black", weight=3]; 1158[label="compare1 (Right vxw119) (Right vxw120) True",fontsize=16,color="black",shape="box"];1158 -> 1346[label="",style="solid", color="black", weight=3]; 1159[label="GT",fontsize=16,color="green",shape="box"];1160 -> 421[label="",style="dashed", color="red", weight=0]; 1160[label="vxw3000 * vxw40001 == vxw3001 * vxw40000",fontsize=16,color="magenta"];1160 -> 1347[label="",style="dashed", color="magenta", weight=3]; 1160 -> 1348[label="",style="dashed", color="magenta", weight=3]; 1161[label="vxw3001 == vxw40001",fontsize=16,color="blue",shape="box"];3261[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1161 -> 3261[label="",style="solid", color="blue", weight=9]; 3261 -> 1349[label="",style="solid", color="blue", weight=3]; 3262[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1161 -> 3262[label="",style="solid", color="blue", weight=9]; 3262 -> 1350[label="",style="solid", color="blue", weight=3]; 3263[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1161 -> 3263[label="",style="solid", color="blue", weight=9]; 3263 -> 1351[label="",style="solid", color="blue", weight=3]; 3264[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1161 -> 3264[label="",style="solid", color="blue", weight=9]; 3264 -> 1352[label="",style="solid", color="blue", weight=3]; 3265[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1161 -> 3265[label="",style="solid", color="blue", weight=9]; 3265 -> 1353[label="",style="solid", color="blue", weight=3]; 3266[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1161 -> 3266[label="",style="solid", color="blue", weight=9]; 3266 -> 1354[label="",style="solid", color="blue", weight=3]; 3267[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1161 -> 3267[label="",style="solid", color="blue", weight=9]; 3267 -> 1355[label="",style="solid", color="blue", weight=3]; 3268[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1161 -> 3268[label="",style="solid", color="blue", weight=9]; 3268 -> 1356[label="",style="solid", color="blue", weight=3]; 3269[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1161 -> 3269[label="",style="solid", color="blue", weight=9]; 3269 -> 1357[label="",style="solid", color="blue", weight=3]; 3270[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1161 -> 3270[label="",style="solid", color="blue", weight=9]; 3270 -> 1358[label="",style="solid", color="blue", weight=3]; 3271[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1161 -> 3271[label="",style="solid", color="blue", weight=9]; 3271 -> 1359[label="",style="solid", color="blue", weight=3]; 3272[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1161 -> 3272[label="",style="solid", color="blue", weight=9]; 3272 -> 1360[label="",style="solid", color="blue", weight=3]; 3273[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1161 -> 3273[label="",style="solid", color="blue", weight=9]; 3273 -> 1361[label="",style="solid", color="blue", weight=3]; 3274[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1161 -> 3274[label="",style="solid", color="blue", weight=9]; 3274 -> 1362[label="",style="solid", color="blue", weight=3]; 1162[label="vxw3000 == vxw40000",fontsize=16,color="blue",shape="box"];3275[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1162 -> 3275[label="",style="solid", color="blue", weight=9]; 3275 -> 1363[label="",style="solid", color="blue", weight=3]; 3276[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1162 -> 3276[label="",style="solid", color="blue", weight=9]; 3276 -> 1364[label="",style="solid", color="blue", weight=3]; 3277[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1162 -> 3277[label="",style="solid", color="blue", weight=9]; 3277 -> 1365[label="",style="solid", color="blue", weight=3]; 3278[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1162 -> 3278[label="",style="solid", color="blue", weight=9]; 3278 -> 1366[label="",style="solid", color="blue", weight=3]; 3279[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1162 -> 3279[label="",style="solid", color="blue", weight=9]; 3279 -> 1367[label="",style="solid", color="blue", weight=3]; 3280[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1162 -> 3280[label="",style="solid", color="blue", weight=9]; 3280 -> 1368[label="",style="solid", color="blue", weight=3]; 3281[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1162 -> 3281[label="",style="solid", color="blue", weight=9]; 3281 -> 1369[label="",style="solid", color="blue", weight=3]; 3282[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1162 -> 3282[label="",style="solid", color="blue", weight=9]; 3282 -> 1370[label="",style="solid", color="blue", weight=3]; 3283[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1162 -> 3283[label="",style="solid", color="blue", weight=9]; 3283 -> 1371[label="",style="solid", color="blue", weight=3]; 3284[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1162 -> 3284[label="",style="solid", color="blue", weight=9]; 3284 -> 1372[label="",style="solid", color="blue", weight=3]; 3285[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1162 -> 3285[label="",style="solid", color="blue", weight=9]; 3285 -> 1373[label="",style="solid", color="blue", weight=3]; 3286[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1162 -> 3286[label="",style="solid", color="blue", weight=9]; 3286 -> 1374[label="",style="solid", color="blue", weight=3]; 3287[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1162 -> 3287[label="",style="solid", color="blue", weight=9]; 3287 -> 1375[label="",style="solid", color="blue", weight=3]; 3288[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1162 -> 3288[label="",style="solid", color="blue", weight=9]; 3288 -> 1376[label="",style="solid", color="blue", weight=3]; 1163[label="vxw40000",fontsize=16,color="green",shape="box"];1164[label="vxw3000",fontsize=16,color="green",shape="box"];1165[label="vxw3001 == vxw40001",fontsize=16,color="blue",shape="box"];3289[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1165 -> 3289[label="",style="solid", color="blue", weight=9]; 3289 -> 1377[label="",style="solid", color="blue", weight=3]; 3290[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1165 -> 3290[label="",style="solid", color="blue", weight=9]; 3290 -> 1378[label="",style="solid", color="blue", weight=3]; 1166[label="vxw3000 == vxw40000",fontsize=16,color="blue",shape="box"];3291[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1166 -> 3291[label="",style="solid", color="blue", weight=9]; 3291 -> 1379[label="",style="solid", color="blue", weight=3]; 3292[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1166 -> 3292[label="",style="solid", color="blue", weight=9]; 3292 -> 1380[label="",style="solid", color="blue", weight=3]; 1167[label="primEqNat vxw3000 vxw40000",fontsize=16,color="burlywood",shape="triangle"];3293[label="vxw3000/Succ vxw30000",fontsize=10,color="white",style="solid",shape="box"];1167 -> 3293[label="",style="solid", color="burlywood", weight=9]; 3293 -> 1381[label="",style="solid", color="burlywood", weight=3]; 3294[label="vxw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];1167 -> 3294[label="",style="solid", color="burlywood", weight=9]; 3294 -> 1382[label="",style="solid", color="burlywood", weight=3]; 1168 -> 837[label="",style="dashed", color="red", weight=0]; 1168[label="vxw3001 == vxw40001 && vxw3002 == vxw40002",fontsize=16,color="magenta"];1168 -> 1383[label="",style="dashed", color="magenta", weight=3]; 1168 -> 1384[label="",style="dashed", color="magenta", weight=3]; 1169[label="vxw3000 == vxw40000",fontsize=16,color="blue",shape="box"];3295[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1169 -> 3295[label="",style="solid", color="blue", weight=9]; 3295 -> 1385[label="",style="solid", color="blue", weight=3]; 3296[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1169 -> 3296[label="",style="solid", color="blue", weight=9]; 3296 -> 1386[label="",style="solid", color="blue", weight=3]; 3297[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1169 -> 3297[label="",style="solid", color="blue", weight=9]; 3297 -> 1387[label="",style="solid", color="blue", weight=3]; 3298[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1169 -> 3298[label="",style="solid", color="blue", weight=9]; 3298 -> 1388[label="",style="solid", color="blue", weight=3]; 3299[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1169 -> 3299[label="",style="solid", color="blue", weight=9]; 3299 -> 1389[label="",style="solid", color="blue", weight=3]; 3300[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1169 -> 3300[label="",style="solid", color="blue", weight=9]; 3300 -> 1390[label="",style="solid", color="blue", weight=3]; 3301[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1169 -> 3301[label="",style="solid", color="blue", weight=9]; 3301 -> 1391[label="",style="solid", color="blue", weight=3]; 3302[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1169 -> 3302[label="",style="solid", color="blue", weight=9]; 3302 -> 1392[label="",style="solid", color="blue", weight=3]; 3303[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1169 -> 3303[label="",style="solid", color="blue", weight=9]; 3303 -> 1393[label="",style="solid", color="blue", weight=3]; 3304[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1169 -> 3304[label="",style="solid", color="blue", weight=9]; 3304 -> 1394[label="",style="solid", color="blue", weight=3]; 3305[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1169 -> 3305[label="",style="solid", color="blue", weight=9]; 3305 -> 1395[label="",style="solid", color="blue", weight=3]; 3306[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1169 -> 3306[label="",style="solid", color="blue", weight=9]; 3306 -> 1396[label="",style="solid", color="blue", weight=3]; 3307[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1169 -> 3307[label="",style="solid", color="blue", weight=9]; 3307 -> 1397[label="",style="solid", color="blue", weight=3]; 3308[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1169 -> 3308[label="",style="solid", color="blue", weight=9]; 3308 -> 1398[label="",style="solid", color="blue", weight=3]; 1170[label="primEqInt (Pos (Succ vxw30000)) (Pos vxw40000)",fontsize=16,color="burlywood",shape="box"];3309[label="vxw40000/Succ vxw400000",fontsize=10,color="white",style="solid",shape="box"];1170 -> 3309[label="",style="solid", color="burlywood", weight=9]; 3309 -> 1399[label="",style="solid", color="burlywood", weight=3]; 3310[label="vxw40000/Zero",fontsize=10,color="white",style="solid",shape="box"];1170 -> 3310[label="",style="solid", color="burlywood", weight=9]; 3310 -> 1400[label="",style="solid", color="burlywood", weight=3]; 1171[label="primEqInt (Pos (Succ vxw30000)) (Neg vxw40000)",fontsize=16,color="black",shape="box"];1171 -> 1401[label="",style="solid", color="black", weight=3]; 1172[label="primEqInt (Pos Zero) (Pos vxw40000)",fontsize=16,color="burlywood",shape="box"];3311[label="vxw40000/Succ vxw400000",fontsize=10,color="white",style="solid",shape="box"];1172 -> 3311[label="",style="solid", color="burlywood", weight=9]; 3311 -> 1402[label="",style="solid", color="burlywood", weight=3]; 3312[label="vxw40000/Zero",fontsize=10,color="white",style="solid",shape="box"];1172 -> 3312[label="",style="solid", color="burlywood", weight=9]; 3312 -> 1403[label="",style="solid", color="burlywood", weight=3]; 1173[label="primEqInt (Pos Zero) (Neg vxw40000)",fontsize=16,color="burlywood",shape="box"];3313[label="vxw40000/Succ vxw400000",fontsize=10,color="white",style="solid",shape="box"];1173 -> 3313[label="",style="solid", color="burlywood", weight=9]; 3313 -> 1404[label="",style="solid", color="burlywood", weight=3]; 3314[label="vxw40000/Zero",fontsize=10,color="white",style="solid",shape="box"];1173 -> 3314[label="",style="solid", color="burlywood", weight=9]; 3314 -> 1405[label="",style="solid", color="burlywood", weight=3]; 1174[label="primEqInt (Neg (Succ vxw30000)) (Pos vxw40000)",fontsize=16,color="black",shape="box"];1174 -> 1406[label="",style="solid", color="black", weight=3]; 1175[label="primEqInt (Neg (Succ vxw30000)) (Neg vxw40000)",fontsize=16,color="burlywood",shape="box"];3315[label="vxw40000/Succ vxw400000",fontsize=10,color="white",style="solid",shape="box"];1175 -> 3315[label="",style="solid", color="burlywood", weight=9]; 3315 -> 1407[label="",style="solid", color="burlywood", weight=3]; 3316[label="vxw40000/Zero",fontsize=10,color="white",style="solid",shape="box"];1175 -> 3316[label="",style="solid", color="burlywood", weight=9]; 3316 -> 1408[label="",style="solid", color="burlywood", weight=3]; 1176[label="primEqInt (Neg Zero) (Pos vxw40000)",fontsize=16,color="burlywood",shape="box"];3317[label="vxw40000/Succ vxw400000",fontsize=10,color="white",style="solid",shape="box"];1176 -> 3317[label="",style="solid", color="burlywood", weight=9]; 3317 -> 1409[label="",style="solid", color="burlywood", weight=3]; 3318[label="vxw40000/Zero",fontsize=10,color="white",style="solid",shape="box"];1176 -> 3318[label="",style="solid", color="burlywood", weight=9]; 3318 -> 1410[label="",style="solid", color="burlywood", weight=3]; 1177[label="primEqInt (Neg Zero) (Neg vxw40000)",fontsize=16,color="burlywood",shape="box"];3319[label="vxw40000/Succ vxw400000",fontsize=10,color="white",style="solid",shape="box"];1177 -> 3319[label="",style="solid", color="burlywood", weight=9]; 3319 -> 1411[label="",style="solid", color="burlywood", weight=3]; 3320[label="vxw40000/Zero",fontsize=10,color="white",style="solid",shape="box"];1177 -> 3320[label="",style="solid", color="burlywood", weight=9]; 3320 -> 1412[label="",style="solid", color="burlywood", weight=3]; 1178 -> 421[label="",style="dashed", color="red", weight=0]; 1178[label="vxw3000 * vxw40001 == vxw3001 * vxw40000",fontsize=16,color="magenta"];1178 -> 1413[label="",style="dashed", color="magenta", weight=3]; 1178 -> 1414[label="",style="dashed", color="magenta", weight=3]; 1179 -> 424[label="",style="dashed", color="red", weight=0]; 1179[label="vxw3001 == vxw40001",fontsize=16,color="magenta"];1179 -> 1415[label="",style="dashed", color="magenta", weight=3]; 1179 -> 1416[label="",style="dashed", color="magenta", weight=3]; 1180[label="vxw3000 == vxw40000",fontsize=16,color="blue",shape="box"];3321[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1180 -> 3321[label="",style="solid", color="blue", weight=9]; 3321 -> 1417[label="",style="solid", color="blue", weight=3]; 3322[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1180 -> 3322[label="",style="solid", color="blue", weight=9]; 3322 -> 1418[label="",style="solid", color="blue", weight=3]; 3323[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1180 -> 3323[label="",style="solid", color="blue", weight=9]; 3323 -> 1419[label="",style="solid", color="blue", weight=3]; 3324[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1180 -> 3324[label="",style="solid", color="blue", weight=9]; 3324 -> 1420[label="",style="solid", color="blue", weight=3]; 3325[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1180 -> 3325[label="",style="solid", color="blue", weight=9]; 3325 -> 1421[label="",style="solid", color="blue", weight=3]; 3326[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1180 -> 3326[label="",style="solid", color="blue", weight=9]; 3326 -> 1422[label="",style="solid", color="blue", weight=3]; 3327[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1180 -> 3327[label="",style="solid", color="blue", weight=9]; 3327 -> 1423[label="",style="solid", color="blue", weight=3]; 3328[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1180 -> 3328[label="",style="solid", color="blue", weight=9]; 3328 -> 1424[label="",style="solid", color="blue", weight=3]; 3329[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1180 -> 3329[label="",style="solid", color="blue", weight=9]; 3329 -> 1425[label="",style="solid", color="blue", weight=3]; 3330[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1180 -> 3330[label="",style="solid", color="blue", weight=9]; 3330 -> 1426[label="",style="solid", color="blue", weight=3]; 3331[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1180 -> 3331[label="",style="solid", color="blue", weight=9]; 3331 -> 1427[label="",style="solid", color="blue", weight=3]; 3332[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1180 -> 3332[label="",style="solid", color="blue", weight=9]; 3332 -> 1428[label="",style="solid", color="blue", weight=3]; 3333[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1180 -> 3333[label="",style="solid", color="blue", weight=9]; 3333 -> 1429[label="",style="solid", color="blue", weight=3]; 3334[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1180 -> 3334[label="",style="solid", color="blue", weight=9]; 3334 -> 1430[label="",style="solid", color="blue", weight=3]; 1181 -> 414[label="",style="dashed", color="red", weight=0]; 1181[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1181 -> 1431[label="",style="dashed", color="magenta", weight=3]; 1181 -> 1432[label="",style="dashed", color="magenta", weight=3]; 1182 -> 415[label="",style="dashed", color="red", weight=0]; 1182[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1182 -> 1433[label="",style="dashed", color="magenta", weight=3]; 1182 -> 1434[label="",style="dashed", color="magenta", weight=3]; 1183 -> 416[label="",style="dashed", color="red", weight=0]; 1183[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1183 -> 1435[label="",style="dashed", color="magenta", weight=3]; 1183 -> 1436[label="",style="dashed", color="magenta", weight=3]; 1184 -> 417[label="",style="dashed", color="red", weight=0]; 1184[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1184 -> 1437[label="",style="dashed", color="magenta", weight=3]; 1184 -> 1438[label="",style="dashed", color="magenta", weight=3]; 1185 -> 418[label="",style="dashed", color="red", weight=0]; 1185[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1185 -> 1439[label="",style="dashed", color="magenta", weight=3]; 1185 -> 1440[label="",style="dashed", color="magenta", weight=3]; 1186 -> 419[label="",style="dashed", color="red", weight=0]; 1186[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1186 -> 1441[label="",style="dashed", color="magenta", weight=3]; 1186 -> 1442[label="",style="dashed", color="magenta", weight=3]; 1187 -> 420[label="",style="dashed", color="red", weight=0]; 1187[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1187 -> 1443[label="",style="dashed", color="magenta", weight=3]; 1187 -> 1444[label="",style="dashed", color="magenta", weight=3]; 1188 -> 421[label="",style="dashed", color="red", weight=0]; 1188[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1188 -> 1445[label="",style="dashed", color="magenta", weight=3]; 1188 -> 1446[label="",style="dashed", color="magenta", weight=3]; 1189 -> 422[label="",style="dashed", color="red", weight=0]; 1189[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1189 -> 1447[label="",style="dashed", color="magenta", weight=3]; 1189 -> 1448[label="",style="dashed", color="magenta", weight=3]; 1190 -> 423[label="",style="dashed", color="red", weight=0]; 1190[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1190 -> 1449[label="",style="dashed", color="magenta", weight=3]; 1190 -> 1450[label="",style="dashed", color="magenta", weight=3]; 1191 -> 424[label="",style="dashed", color="red", weight=0]; 1191[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1191 -> 1451[label="",style="dashed", color="magenta", weight=3]; 1191 -> 1452[label="",style="dashed", color="magenta", weight=3]; 1192 -> 425[label="",style="dashed", color="red", weight=0]; 1192[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1192 -> 1453[label="",style="dashed", color="magenta", weight=3]; 1192 -> 1454[label="",style="dashed", color="magenta", weight=3]; 1193 -> 426[label="",style="dashed", color="red", weight=0]; 1193[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1193 -> 1455[label="",style="dashed", color="magenta", weight=3]; 1193 -> 1456[label="",style="dashed", color="magenta", weight=3]; 1194 -> 427[label="",style="dashed", color="red", weight=0]; 1194[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1194 -> 1457[label="",style="dashed", color="magenta", weight=3]; 1194 -> 1458[label="",style="dashed", color="magenta", weight=3]; 1195 -> 414[label="",style="dashed", color="red", weight=0]; 1195[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1195 -> 1459[label="",style="dashed", color="magenta", weight=3]; 1195 -> 1460[label="",style="dashed", color="magenta", weight=3]; 1196 -> 415[label="",style="dashed", color="red", weight=0]; 1196[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1196 -> 1461[label="",style="dashed", color="magenta", weight=3]; 1196 -> 1462[label="",style="dashed", color="magenta", weight=3]; 1197 -> 416[label="",style="dashed", color="red", weight=0]; 1197[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1197 -> 1463[label="",style="dashed", color="magenta", weight=3]; 1197 -> 1464[label="",style="dashed", color="magenta", weight=3]; 1198 -> 417[label="",style="dashed", color="red", weight=0]; 1198[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1198 -> 1465[label="",style="dashed", color="magenta", weight=3]; 1198 -> 1466[label="",style="dashed", color="magenta", weight=3]; 1199 -> 418[label="",style="dashed", color="red", weight=0]; 1199[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1199 -> 1467[label="",style="dashed", color="magenta", weight=3]; 1199 -> 1468[label="",style="dashed", color="magenta", weight=3]; 1200 -> 419[label="",style="dashed", color="red", weight=0]; 1200[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1200 -> 1469[label="",style="dashed", color="magenta", weight=3]; 1200 -> 1470[label="",style="dashed", color="magenta", weight=3]; 1201 -> 420[label="",style="dashed", color="red", weight=0]; 1201[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1201 -> 1471[label="",style="dashed", color="magenta", weight=3]; 1201 -> 1472[label="",style="dashed", color="magenta", weight=3]; 1202 -> 421[label="",style="dashed", color="red", weight=0]; 1202[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1202 -> 1473[label="",style="dashed", color="magenta", weight=3]; 1202 -> 1474[label="",style="dashed", color="magenta", weight=3]; 1203 -> 422[label="",style="dashed", color="red", weight=0]; 1203[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1203 -> 1475[label="",style="dashed", color="magenta", weight=3]; 1203 -> 1476[label="",style="dashed", color="magenta", weight=3]; 1204 -> 423[label="",style="dashed", color="red", weight=0]; 1204[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1204 -> 1477[label="",style="dashed", color="magenta", weight=3]; 1204 -> 1478[label="",style="dashed", color="magenta", weight=3]; 1205 -> 424[label="",style="dashed", color="red", weight=0]; 1205[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1205 -> 1479[label="",style="dashed", color="magenta", weight=3]; 1205 -> 1480[label="",style="dashed", color="magenta", weight=3]; 1206 -> 425[label="",style="dashed", color="red", weight=0]; 1206[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1206 -> 1481[label="",style="dashed", color="magenta", weight=3]; 1206 -> 1482[label="",style="dashed", color="magenta", weight=3]; 1207 -> 426[label="",style="dashed", color="red", weight=0]; 1207[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1207 -> 1483[label="",style="dashed", color="magenta", weight=3]; 1207 -> 1484[label="",style="dashed", color="magenta", weight=3]; 1208 -> 427[label="",style="dashed", color="red", weight=0]; 1208[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1208 -> 1485[label="",style="dashed", color="magenta", weight=3]; 1208 -> 1486[label="",style="dashed", color="magenta", weight=3]; 1209 -> 414[label="",style="dashed", color="red", weight=0]; 1209[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1209 -> 1487[label="",style="dashed", color="magenta", weight=3]; 1209 -> 1488[label="",style="dashed", color="magenta", weight=3]; 1210 -> 415[label="",style="dashed", color="red", weight=0]; 1210[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1210 -> 1489[label="",style="dashed", color="magenta", weight=3]; 1210 -> 1490[label="",style="dashed", color="magenta", weight=3]; 1211 -> 416[label="",style="dashed", color="red", weight=0]; 1211[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1211 -> 1491[label="",style="dashed", color="magenta", weight=3]; 1211 -> 1492[label="",style="dashed", color="magenta", weight=3]; 1212 -> 417[label="",style="dashed", color="red", weight=0]; 1212[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1212 -> 1493[label="",style="dashed", color="magenta", weight=3]; 1212 -> 1494[label="",style="dashed", color="magenta", weight=3]; 1213 -> 418[label="",style="dashed", color="red", weight=0]; 1213[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1213 -> 1495[label="",style="dashed", color="magenta", weight=3]; 1213 -> 1496[label="",style="dashed", color="magenta", weight=3]; 1214 -> 419[label="",style="dashed", color="red", weight=0]; 1214[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1214 -> 1497[label="",style="dashed", color="magenta", weight=3]; 1214 -> 1498[label="",style="dashed", color="magenta", weight=3]; 1215 -> 420[label="",style="dashed", color="red", weight=0]; 1215[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1215 -> 1499[label="",style="dashed", color="magenta", weight=3]; 1215 -> 1500[label="",style="dashed", color="magenta", weight=3]; 1216 -> 421[label="",style="dashed", color="red", weight=0]; 1216[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1216 -> 1501[label="",style="dashed", color="magenta", weight=3]; 1216 -> 1502[label="",style="dashed", color="magenta", weight=3]; 1217 -> 422[label="",style="dashed", color="red", weight=0]; 1217[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1217 -> 1503[label="",style="dashed", color="magenta", weight=3]; 1217 -> 1504[label="",style="dashed", color="magenta", weight=3]; 1218 -> 423[label="",style="dashed", color="red", weight=0]; 1218[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1218 -> 1505[label="",style="dashed", color="magenta", weight=3]; 1218 -> 1506[label="",style="dashed", color="magenta", weight=3]; 1219 -> 424[label="",style="dashed", color="red", weight=0]; 1219[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1219 -> 1507[label="",style="dashed", color="magenta", weight=3]; 1219 -> 1508[label="",style="dashed", color="magenta", weight=3]; 1220 -> 425[label="",style="dashed", color="red", weight=0]; 1220[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1220 -> 1509[label="",style="dashed", color="magenta", weight=3]; 1220 -> 1510[label="",style="dashed", color="magenta", weight=3]; 1221 -> 426[label="",style="dashed", color="red", weight=0]; 1221[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1221 -> 1511[label="",style="dashed", color="magenta", weight=3]; 1221 -> 1512[label="",style="dashed", color="magenta", weight=3]; 1222 -> 427[label="",style="dashed", color="red", weight=0]; 1222[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1222 -> 1513[label="",style="dashed", color="magenta", weight=3]; 1222 -> 1514[label="",style="dashed", color="magenta", weight=3]; 1223[label="vxw30 <= vxw31",fontsize=16,color="black",shape="triangle"];1223 -> 1515[label="",style="solid", color="black", weight=3]; 1224[label="vxw30 <= vxw31",fontsize=16,color="black",shape="triangle"];1224 -> 1516[label="",style="solid", color="black", weight=3]; 1225[label="vxw30 <= vxw31",fontsize=16,color="black",shape="triangle"];1225 -> 1517[label="",style="solid", color="black", weight=3]; 1226[label="vxw30 <= vxw31",fontsize=16,color="burlywood",shape="triangle"];3335[label="vxw30/Nothing",fontsize=10,color="white",style="solid",shape="box"];1226 -> 3335[label="",style="solid", color="burlywood", weight=9]; 3335 -> 1518[label="",style="solid", color="burlywood", weight=3]; 3336[label="vxw30/Just vxw300",fontsize=10,color="white",style="solid",shape="box"];1226 -> 3336[label="",style="solid", color="burlywood", weight=9]; 3336 -> 1519[label="",style="solid", color="burlywood", weight=3]; 1227[label="vxw30 <= vxw31",fontsize=16,color="burlywood",shape="triangle"];3337[label="vxw30/(vxw300,vxw301)",fontsize=10,color="white",style="solid",shape="box"];1227 -> 3337[label="",style="solid", color="burlywood", weight=9]; 3337 -> 1520[label="",style="solid", color="burlywood", weight=3]; 1228[label="vxw30 <= vxw31",fontsize=16,color="burlywood",shape="triangle"];3338[label="vxw30/LT",fontsize=10,color="white",style="solid",shape="box"];1228 -> 3338[label="",style="solid", color="burlywood", weight=9]; 3338 -> 1521[label="",style="solid", color="burlywood", weight=3]; 3339[label="vxw30/EQ",fontsize=10,color="white",style="solid",shape="box"];1228 -> 3339[label="",style="solid", color="burlywood", weight=9]; 3339 -> 1522[label="",style="solid", color="burlywood", weight=3]; 3340[label="vxw30/GT",fontsize=10,color="white",style="solid",shape="box"];1228 -> 3340[label="",style="solid", color="burlywood", weight=9]; 3340 -> 1523[label="",style="solid", color="burlywood", weight=3]; 1229[label="vxw30 <= vxw31",fontsize=16,color="burlywood",shape="triangle"];3341[label="vxw30/(vxw300,vxw301,vxw302)",fontsize=10,color="white",style="solid",shape="box"];1229 -> 3341[label="",style="solid", color="burlywood", weight=9]; 3341 -> 1524[label="",style="solid", color="burlywood", weight=3]; 1230[label="vxw30 <= vxw31",fontsize=16,color="black",shape="triangle"];1230 -> 1525[label="",style="solid", color="black", weight=3]; 1231[label="vxw30 <= vxw31",fontsize=16,color="black",shape="triangle"];1231 -> 1526[label="",style="solid", color="black", weight=3]; 1232[label="vxw30 <= vxw31",fontsize=16,color="black",shape="triangle"];1232 -> 1527[label="",style="solid", color="black", weight=3]; 1233[label="vxw30 <= vxw31",fontsize=16,color="black",shape="triangle"];1233 -> 1528[label="",style="solid", color="black", weight=3]; 1234[label="vxw30 <= vxw31",fontsize=16,color="burlywood",shape="triangle"];3342[label="vxw30/Left vxw300",fontsize=10,color="white",style="solid",shape="box"];1234 -> 3342[label="",style="solid", color="burlywood", weight=9]; 3342 -> 1529[label="",style="solid", color="burlywood", weight=3]; 3343[label="vxw30/Right vxw300",fontsize=10,color="white",style="solid",shape="box"];1234 -> 3343[label="",style="solid", color="burlywood", weight=9]; 3343 -> 1530[label="",style="solid", color="burlywood", weight=3]; 1235[label="vxw30 <= vxw31",fontsize=16,color="black",shape="triangle"];1235 -> 1531[label="",style="solid", color="black", weight=3]; 1236[label="vxw30 <= vxw31",fontsize=16,color="burlywood",shape="triangle"];3344[label="vxw30/False",fontsize=10,color="white",style="solid",shape="box"];1236 -> 3344[label="",style="solid", color="burlywood", weight=9]; 3344 -> 1532[label="",style="solid", color="burlywood", weight=3]; 3345[label="vxw30/True",fontsize=10,color="white",style="solid",shape="box"];1236 -> 3345[label="",style="solid", color="burlywood", weight=9]; 3345 -> 1533[label="",style="solid", color="burlywood", weight=3]; 1237[label="compare0 (Just vxw102) (Just vxw103) otherwise",fontsize=16,color="black",shape="box"];1237 -> 1534[label="",style="solid", color="black", weight=3]; 1238[label="LT",fontsize=16,color="green",shape="box"];1254[label="vxw79 < vxw81",fontsize=16,color="black",shape="triangle"];1254 -> 1535[label="",style="solid", color="black", weight=3]; 1255[label="vxw79 < vxw81",fontsize=16,color="black",shape="triangle"];1255 -> 1536[label="",style="solid", color="black", weight=3]; 1256[label="vxw79 < vxw81",fontsize=16,color="black",shape="triangle"];1256 -> 1537[label="",style="solid", color="black", weight=3]; 1257[label="vxw79 < vxw81",fontsize=16,color="black",shape="triangle"];1257 -> 1538[label="",style="solid", color="black", weight=3]; 1258[label="vxw79 < vxw81",fontsize=16,color="black",shape="triangle"];1258 -> 1539[label="",style="solid", color="black", weight=3]; 1259[label="vxw79 < vxw81",fontsize=16,color="black",shape="triangle"];1259 -> 1540[label="",style="solid", color="black", weight=3]; 1260[label="vxw79 < vxw81",fontsize=16,color="black",shape="triangle"];1260 -> 1541[label="",style="solid", color="black", weight=3]; 1261[label="vxw79 < vxw81",fontsize=16,color="black",shape="triangle"];1261 -> 1542[label="",style="solid", color="black", weight=3]; 1262[label="vxw79 < vxw81",fontsize=16,color="black",shape="triangle"];1262 -> 1543[label="",style="solid", color="black", weight=3]; 1263[label="vxw79 < vxw81",fontsize=16,color="black",shape="triangle"];1263 -> 1544[label="",style="solid", color="black", weight=3]; 1264[label="vxw79 < vxw81",fontsize=16,color="black",shape="triangle"];1264 -> 1545[label="",style="solid", color="black", weight=3]; 1265[label="vxw79 < vxw81",fontsize=16,color="black",shape="triangle"];1265 -> 1546[label="",style="solid", color="black", weight=3]; 1266[label="vxw79 < vxw81",fontsize=16,color="black",shape="triangle"];1266 -> 1547[label="",style="solid", color="black", weight=3]; 1267[label="vxw79 < vxw81",fontsize=16,color="black",shape="triangle"];1267 -> 1548[label="",style="solid", color="black", weight=3]; 1268[label="vxw80 <= vxw82",fontsize=16,color="blue",shape="box"];3346[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1268 -> 3346[label="",style="solid", color="blue", weight=9]; 3346 -> 1549[label="",style="solid", color="blue", weight=3]; 3347[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1268 -> 3347[label="",style="solid", color="blue", weight=9]; 3347 -> 1550[label="",style="solid", color="blue", weight=3]; 3348[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1268 -> 3348[label="",style="solid", color="blue", weight=9]; 3348 -> 1551[label="",style="solid", color="blue", weight=3]; 3349[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1268 -> 3349[label="",style="solid", color="blue", weight=9]; 3349 -> 1552[label="",style="solid", color="blue", weight=3]; 3350[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1268 -> 3350[label="",style="solid", color="blue", weight=9]; 3350 -> 1553[label="",style="solid", color="blue", weight=3]; 3351[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1268 -> 3351[label="",style="solid", color="blue", weight=9]; 3351 -> 1554[label="",style="solid", color="blue", weight=3]; 3352[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1268 -> 3352[label="",style="solid", color="blue", weight=9]; 3352 -> 1555[label="",style="solid", color="blue", weight=3]; 3353[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1268 -> 3353[label="",style="solid", color="blue", weight=9]; 3353 -> 1556[label="",style="solid", color="blue", weight=3]; 3354[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1268 -> 3354[label="",style="solid", color="blue", weight=9]; 3354 -> 1557[label="",style="solid", color="blue", weight=3]; 3355[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1268 -> 3355[label="",style="solid", color="blue", weight=9]; 3355 -> 1558[label="",style="solid", color="blue", weight=3]; 3356[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1268 -> 3356[label="",style="solid", color="blue", weight=9]; 3356 -> 1559[label="",style="solid", color="blue", weight=3]; 3357[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1268 -> 3357[label="",style="solid", color="blue", weight=9]; 3357 -> 1560[label="",style="solid", color="blue", weight=3]; 3358[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1268 -> 3358[label="",style="solid", color="blue", weight=9]; 3358 -> 1561[label="",style="solid", color="blue", weight=3]; 3359[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1268 -> 3359[label="",style="solid", color="blue", weight=9]; 3359 -> 1562[label="",style="solid", color="blue", weight=3]; 1269[label="vxw79 == vxw81",fontsize=16,color="blue",shape="box"];3360[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1269 -> 3360[label="",style="solid", color="blue", weight=9]; 3360 -> 1563[label="",style="solid", color="blue", weight=3]; 3361[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1269 -> 3361[label="",style="solid", color="blue", weight=9]; 3361 -> 1564[label="",style="solid", color="blue", weight=3]; 3362[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1269 -> 3362[label="",style="solid", color="blue", weight=9]; 3362 -> 1565[label="",style="solid", color="blue", weight=3]; 3363[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1269 -> 3363[label="",style="solid", color="blue", weight=9]; 3363 -> 1566[label="",style="solid", color="blue", weight=3]; 3364[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1269 -> 3364[label="",style="solid", color="blue", weight=9]; 3364 -> 1567[label="",style="solid", color="blue", weight=3]; 3365[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1269 -> 3365[label="",style="solid", color="blue", weight=9]; 3365 -> 1568[label="",style="solid", color="blue", weight=3]; 3366[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1269 -> 3366[label="",style="solid", color="blue", weight=9]; 3366 -> 1569[label="",style="solid", color="blue", weight=3]; 3367[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1269 -> 3367[label="",style="solid", color="blue", weight=9]; 3367 -> 1570[label="",style="solid", color="blue", weight=3]; 3368[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1269 -> 3368[label="",style="solid", color="blue", weight=9]; 3368 -> 1571[label="",style="solid", color="blue", weight=3]; 3369[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1269 -> 3369[label="",style="solid", color="blue", weight=9]; 3369 -> 1572[label="",style="solid", color="blue", weight=3]; 3370[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1269 -> 3370[label="",style="solid", color="blue", weight=9]; 3370 -> 1573[label="",style="solid", color="blue", weight=3]; 3371[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1269 -> 3371[label="",style="solid", color="blue", weight=9]; 3371 -> 1574[label="",style="solid", color="blue", weight=3]; 3372[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1269 -> 3372[label="",style="solid", color="blue", weight=9]; 3372 -> 1575[label="",style="solid", color="blue", weight=3]; 3373[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1269 -> 3373[label="",style="solid", color="blue", weight=9]; 3373 -> 1576[label="",style="solid", color="blue", weight=3]; 1270[label="compare1 (vxw129,vxw130) (vxw131,vxw132) (False || vxw134)",fontsize=16,color="black",shape="box"];1270 -> 1577[label="",style="solid", color="black", weight=3]; 1271[label="compare1 (vxw129,vxw130) (vxw131,vxw132) (True || vxw134)",fontsize=16,color="black",shape="box"];1271 -> 1578[label="",style="solid", color="black", weight=3]; 1291 -> 1981[label="",style="dashed", color="red", weight=0]; 1291[label="vxw53 < vxw56 || vxw53 == vxw56 && vxw54 <= vxw57",fontsize=16,color="magenta"];1291 -> 1982[label="",style="dashed", color="magenta", weight=3]; 1291 -> 1983[label="",style="dashed", color="magenta", weight=3]; 1292[label="vxw52 == vxw55",fontsize=16,color="blue",shape="box"];3374[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1292 -> 3374[label="",style="solid", color="blue", weight=9]; 3374 -> 1581[label="",style="solid", color="blue", weight=3]; 3375[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1292 -> 3375[label="",style="solid", color="blue", weight=9]; 3375 -> 1582[label="",style="solid", color="blue", weight=3]; 3376[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1292 -> 3376[label="",style="solid", color="blue", weight=9]; 3376 -> 1583[label="",style="solid", color="blue", weight=3]; 3377[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1292 -> 3377[label="",style="solid", color="blue", weight=9]; 3377 -> 1584[label="",style="solid", color="blue", weight=3]; 3378[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1292 -> 3378[label="",style="solid", color="blue", weight=9]; 3378 -> 1585[label="",style="solid", color="blue", weight=3]; 3379[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1292 -> 3379[label="",style="solid", color="blue", weight=9]; 3379 -> 1586[label="",style="solid", color="blue", weight=3]; 3380[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1292 -> 3380[label="",style="solid", color="blue", weight=9]; 3380 -> 1587[label="",style="solid", color="blue", weight=3]; 3381[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1292 -> 3381[label="",style="solid", color="blue", weight=9]; 3381 -> 1588[label="",style="solid", color="blue", weight=3]; 3382[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1292 -> 3382[label="",style="solid", color="blue", weight=9]; 3382 -> 1589[label="",style="solid", color="blue", weight=3]; 3383[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1292 -> 3383[label="",style="solid", color="blue", weight=9]; 3383 -> 1590[label="",style="solid", color="blue", weight=3]; 3384[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1292 -> 3384[label="",style="solid", color="blue", weight=9]; 3384 -> 1591[label="",style="solid", color="blue", weight=3]; 3385[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1292 -> 3385[label="",style="solid", color="blue", weight=9]; 3385 -> 1592[label="",style="solid", color="blue", weight=3]; 3386[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1292 -> 3386[label="",style="solid", color="blue", weight=9]; 3386 -> 1593[label="",style="solid", color="blue", weight=3]; 3387[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1292 -> 3387[label="",style="solid", color="blue", weight=9]; 3387 -> 1594[label="",style="solid", color="blue", weight=3]; 1293 -> 1254[label="",style="dashed", color="red", weight=0]; 1293[label="vxw52 < vxw55",fontsize=16,color="magenta"];1293 -> 1595[label="",style="dashed", color="magenta", weight=3]; 1293 -> 1596[label="",style="dashed", color="magenta", weight=3]; 1294 -> 1255[label="",style="dashed", color="red", weight=0]; 1294[label="vxw52 < vxw55",fontsize=16,color="magenta"];1294 -> 1597[label="",style="dashed", color="magenta", weight=3]; 1294 -> 1598[label="",style="dashed", color="magenta", weight=3]; 1295 -> 1256[label="",style="dashed", color="red", weight=0]; 1295[label="vxw52 < vxw55",fontsize=16,color="magenta"];1295 -> 1599[label="",style="dashed", color="magenta", weight=3]; 1295 -> 1600[label="",style="dashed", color="magenta", weight=3]; 1296 -> 1257[label="",style="dashed", color="red", weight=0]; 1296[label="vxw52 < vxw55",fontsize=16,color="magenta"];1296 -> 1601[label="",style="dashed", color="magenta", weight=3]; 1296 -> 1602[label="",style="dashed", color="magenta", weight=3]; 1297 -> 1258[label="",style="dashed", color="red", weight=0]; 1297[label="vxw52 < vxw55",fontsize=16,color="magenta"];1297 -> 1603[label="",style="dashed", color="magenta", weight=3]; 1297 -> 1604[label="",style="dashed", color="magenta", weight=3]; 1298 -> 1259[label="",style="dashed", color="red", weight=0]; 1298[label="vxw52 < vxw55",fontsize=16,color="magenta"];1298 -> 1605[label="",style="dashed", color="magenta", weight=3]; 1298 -> 1606[label="",style="dashed", color="magenta", weight=3]; 1299 -> 1260[label="",style="dashed", color="red", weight=0]; 1299[label="vxw52 < vxw55",fontsize=16,color="magenta"];1299 -> 1607[label="",style="dashed", color="magenta", weight=3]; 1299 -> 1608[label="",style="dashed", color="magenta", weight=3]; 1300 -> 1261[label="",style="dashed", color="red", weight=0]; 1300[label="vxw52 < vxw55",fontsize=16,color="magenta"];1300 -> 1609[label="",style="dashed", color="magenta", weight=3]; 1300 -> 1610[label="",style="dashed", color="magenta", weight=3]; 1301 -> 1262[label="",style="dashed", color="red", weight=0]; 1301[label="vxw52 < vxw55",fontsize=16,color="magenta"];1301 -> 1611[label="",style="dashed", color="magenta", weight=3]; 1301 -> 1612[label="",style="dashed", color="magenta", weight=3]; 1302 -> 1263[label="",style="dashed", color="red", weight=0]; 1302[label="vxw52 < vxw55",fontsize=16,color="magenta"];1302 -> 1613[label="",style="dashed", color="magenta", weight=3]; 1302 -> 1614[label="",style="dashed", color="magenta", weight=3]; 1303 -> 1264[label="",style="dashed", color="red", weight=0]; 1303[label="vxw52 < vxw55",fontsize=16,color="magenta"];1303 -> 1615[label="",style="dashed", color="magenta", weight=3]; 1303 -> 1616[label="",style="dashed", color="magenta", weight=3]; 1304 -> 1265[label="",style="dashed", color="red", weight=0]; 1304[label="vxw52 < vxw55",fontsize=16,color="magenta"];1304 -> 1617[label="",style="dashed", color="magenta", weight=3]; 1304 -> 1618[label="",style="dashed", color="magenta", weight=3]; 1305 -> 1266[label="",style="dashed", color="red", weight=0]; 1305[label="vxw52 < vxw55",fontsize=16,color="magenta"];1305 -> 1619[label="",style="dashed", color="magenta", weight=3]; 1305 -> 1620[label="",style="dashed", color="magenta", weight=3]; 1306 -> 1267[label="",style="dashed", color="red", weight=0]; 1306[label="vxw52 < vxw55",fontsize=16,color="magenta"];1306 -> 1621[label="",style="dashed", color="magenta", weight=3]; 1306 -> 1622[label="",style="dashed", color="magenta", weight=3]; 1307[label="compare1 (vxw144,vxw145,vxw146) (vxw147,vxw148,vxw149) (False || vxw151)",fontsize=16,color="black",shape="box"];1307 -> 1623[label="",style="solid", color="black", weight=3]; 1308[label="compare1 (vxw144,vxw145,vxw146) (vxw147,vxw148,vxw149) (True || vxw151)",fontsize=16,color="black",shape="box"];1308 -> 1624[label="",style="solid", color="black", weight=3]; 1309[label="primMulNat (Succ vxw400000) vxw3010",fontsize=16,color="burlywood",shape="box"];3388[label="vxw3010/Succ vxw30100",fontsize=10,color="white",style="solid",shape="box"];1309 -> 3388[label="",style="solid", color="burlywood", weight=9]; 3388 -> 1625[label="",style="solid", color="burlywood", weight=3]; 3389[label="vxw3010/Zero",fontsize=10,color="white",style="solid",shape="box"];1309 -> 3389[label="",style="solid", color="burlywood", weight=9]; 3389 -> 1626[label="",style="solid", color="burlywood", weight=3]; 1310[label="primMulNat Zero vxw3010",fontsize=16,color="burlywood",shape="box"];3390[label="vxw3010/Succ vxw30100",fontsize=10,color="white",style="solid",shape="box"];1310 -> 3390[label="",style="solid", color="burlywood", weight=9]; 3390 -> 1627[label="",style="solid", color="burlywood", weight=3]; 3391[label="vxw3010/Zero",fontsize=10,color="white",style="solid",shape="box"];1310 -> 3391[label="",style="solid", color="burlywood", weight=9]; 3391 -> 1628[label="",style="solid", color="burlywood", weight=3]; 1311[label="vxw3010",fontsize=16,color="green",shape="box"];1312[label="vxw40000",fontsize=16,color="green",shape="box"];1313[label="vxw40000",fontsize=16,color="green",shape="box"];1314[label="vxw3010",fontsize=16,color="green",shape="box"];1315 -> 1223[label="",style="dashed", color="red", weight=0]; 1315[label="vxw63 <= vxw64",fontsize=16,color="magenta"];1315 -> 1629[label="",style="dashed", color="magenta", weight=3]; 1315 -> 1630[label="",style="dashed", color="magenta", weight=3]; 1316 -> 1224[label="",style="dashed", color="red", weight=0]; 1316[label="vxw63 <= vxw64",fontsize=16,color="magenta"];1316 -> 1631[label="",style="dashed", color="magenta", weight=3]; 1316 -> 1632[label="",style="dashed", color="magenta", weight=3]; 1317 -> 1225[label="",style="dashed", color="red", weight=0]; 1317[label="vxw63 <= vxw64",fontsize=16,color="magenta"];1317 -> 1633[label="",style="dashed", color="magenta", weight=3]; 1317 -> 1634[label="",style="dashed", color="magenta", weight=3]; 1318 -> 1226[label="",style="dashed", color="red", weight=0]; 1318[label="vxw63 <= vxw64",fontsize=16,color="magenta"];1318 -> 1635[label="",style="dashed", color="magenta", weight=3]; 1318 -> 1636[label="",style="dashed", color="magenta", weight=3]; 1319 -> 1227[label="",style="dashed", color="red", weight=0]; 1319[label="vxw63 <= vxw64",fontsize=16,color="magenta"];1319 -> 1637[label="",style="dashed", color="magenta", weight=3]; 1319 -> 1638[label="",style="dashed", color="magenta", weight=3]; 1320 -> 1228[label="",style="dashed", color="red", weight=0]; 1320[label="vxw63 <= vxw64",fontsize=16,color="magenta"];1320 -> 1639[label="",style="dashed", color="magenta", weight=3]; 1320 -> 1640[label="",style="dashed", color="magenta", weight=3]; 1321 -> 1229[label="",style="dashed", color="red", weight=0]; 1321[label="vxw63 <= vxw64",fontsize=16,color="magenta"];1321 -> 1641[label="",style="dashed", color="magenta", weight=3]; 1321 -> 1642[label="",style="dashed", color="magenta", weight=3]; 1322 -> 1230[label="",style="dashed", color="red", weight=0]; 1322[label="vxw63 <= vxw64",fontsize=16,color="magenta"];1322 -> 1643[label="",style="dashed", color="magenta", weight=3]; 1322 -> 1644[label="",style="dashed", color="magenta", weight=3]; 1323 -> 1231[label="",style="dashed", color="red", weight=0]; 1323[label="vxw63 <= vxw64",fontsize=16,color="magenta"];1323 -> 1645[label="",style="dashed", color="magenta", weight=3]; 1323 -> 1646[label="",style="dashed", color="magenta", weight=3]; 1324 -> 1232[label="",style="dashed", color="red", weight=0]; 1324[label="vxw63 <= vxw64",fontsize=16,color="magenta"];1324 -> 1647[label="",style="dashed", color="magenta", weight=3]; 1324 -> 1648[label="",style="dashed", color="magenta", weight=3]; 1325 -> 1233[label="",style="dashed", color="red", weight=0]; 1325[label="vxw63 <= vxw64",fontsize=16,color="magenta"];1325 -> 1649[label="",style="dashed", color="magenta", weight=3]; 1325 -> 1650[label="",style="dashed", color="magenta", weight=3]; 1326 -> 1234[label="",style="dashed", color="red", weight=0]; 1326[label="vxw63 <= vxw64",fontsize=16,color="magenta"];1326 -> 1651[label="",style="dashed", color="magenta", weight=3]; 1326 -> 1652[label="",style="dashed", color="magenta", weight=3]; 1327 -> 1235[label="",style="dashed", color="red", weight=0]; 1327[label="vxw63 <= vxw64",fontsize=16,color="magenta"];1327 -> 1653[label="",style="dashed", color="magenta", weight=3]; 1327 -> 1654[label="",style="dashed", color="magenta", weight=3]; 1328 -> 1236[label="",style="dashed", color="red", weight=0]; 1328[label="vxw63 <= vxw64",fontsize=16,color="magenta"];1328 -> 1655[label="",style="dashed", color="magenta", weight=3]; 1328 -> 1656[label="",style="dashed", color="magenta", weight=3]; 1329[label="compare0 (Left vxw109) (Left vxw110) otherwise",fontsize=16,color="black",shape="box"];1329 -> 1657[label="",style="solid", color="black", weight=3]; 1330[label="LT",fontsize=16,color="green",shape="box"];1331 -> 1223[label="",style="dashed", color="red", weight=0]; 1331[label="vxw70 <= vxw71",fontsize=16,color="magenta"];1331 -> 1658[label="",style="dashed", color="magenta", weight=3]; 1331 -> 1659[label="",style="dashed", color="magenta", weight=3]; 1332 -> 1224[label="",style="dashed", color="red", weight=0]; 1332[label="vxw70 <= vxw71",fontsize=16,color="magenta"];1332 -> 1660[label="",style="dashed", color="magenta", weight=3]; 1332 -> 1661[label="",style="dashed", color="magenta", weight=3]; 1333 -> 1225[label="",style="dashed", color="red", weight=0]; 1333[label="vxw70 <= vxw71",fontsize=16,color="magenta"];1333 -> 1662[label="",style="dashed", color="magenta", weight=3]; 1333 -> 1663[label="",style="dashed", color="magenta", weight=3]; 1334 -> 1226[label="",style="dashed", color="red", weight=0]; 1334[label="vxw70 <= vxw71",fontsize=16,color="magenta"];1334 -> 1664[label="",style="dashed", color="magenta", weight=3]; 1334 -> 1665[label="",style="dashed", color="magenta", weight=3]; 1335 -> 1227[label="",style="dashed", color="red", weight=0]; 1335[label="vxw70 <= vxw71",fontsize=16,color="magenta"];1335 -> 1666[label="",style="dashed", color="magenta", weight=3]; 1335 -> 1667[label="",style="dashed", color="magenta", weight=3]; 1336 -> 1228[label="",style="dashed", color="red", weight=0]; 1336[label="vxw70 <= vxw71",fontsize=16,color="magenta"];1336 -> 1668[label="",style="dashed", color="magenta", weight=3]; 1336 -> 1669[label="",style="dashed", color="magenta", weight=3]; 1337 -> 1229[label="",style="dashed", color="red", weight=0]; 1337[label="vxw70 <= vxw71",fontsize=16,color="magenta"];1337 -> 1670[label="",style="dashed", color="magenta", weight=3]; 1337 -> 1671[label="",style="dashed", color="magenta", weight=3]; 1338 -> 1230[label="",style="dashed", color="red", weight=0]; 1338[label="vxw70 <= vxw71",fontsize=16,color="magenta"];1338 -> 1672[label="",style="dashed", color="magenta", weight=3]; 1338 -> 1673[label="",style="dashed", color="magenta", weight=3]; 1339 -> 1231[label="",style="dashed", color="red", weight=0]; 1339[label="vxw70 <= vxw71",fontsize=16,color="magenta"];1339 -> 1674[label="",style="dashed", color="magenta", weight=3]; 1339 -> 1675[label="",style="dashed", color="magenta", weight=3]; 1340 -> 1232[label="",style="dashed", color="red", weight=0]; 1340[label="vxw70 <= vxw71",fontsize=16,color="magenta"];1340 -> 1676[label="",style="dashed", color="magenta", weight=3]; 1340 -> 1677[label="",style="dashed", color="magenta", weight=3]; 1341 -> 1233[label="",style="dashed", color="red", weight=0]; 1341[label="vxw70 <= vxw71",fontsize=16,color="magenta"];1341 -> 1678[label="",style="dashed", color="magenta", weight=3]; 1341 -> 1679[label="",style="dashed", color="magenta", weight=3]; 1342 -> 1234[label="",style="dashed", color="red", weight=0]; 1342[label="vxw70 <= vxw71",fontsize=16,color="magenta"];1342 -> 1680[label="",style="dashed", color="magenta", weight=3]; 1342 -> 1681[label="",style="dashed", color="magenta", weight=3]; 1343 -> 1235[label="",style="dashed", color="red", weight=0]; 1343[label="vxw70 <= vxw71",fontsize=16,color="magenta"];1343 -> 1682[label="",style="dashed", color="magenta", weight=3]; 1343 -> 1683[label="",style="dashed", color="magenta", weight=3]; 1344 -> 1236[label="",style="dashed", color="red", weight=0]; 1344[label="vxw70 <= vxw71",fontsize=16,color="magenta"];1344 -> 1684[label="",style="dashed", color="magenta", weight=3]; 1344 -> 1685[label="",style="dashed", color="magenta", weight=3]; 1345[label="compare0 (Right vxw119) (Right vxw120) otherwise",fontsize=16,color="black",shape="box"];1345 -> 1686[label="",style="solid", color="black", weight=3]; 1346[label="LT",fontsize=16,color="green",shape="box"];1347 -> 320[label="",style="dashed", color="red", weight=0]; 1347[label="vxw3001 * vxw40000",fontsize=16,color="magenta"];1347 -> 1687[label="",style="dashed", color="magenta", weight=3]; 1347 -> 1688[label="",style="dashed", color="magenta", weight=3]; 1348 -> 320[label="",style="dashed", color="red", weight=0]; 1348[label="vxw3000 * vxw40001",fontsize=16,color="magenta"];1348 -> 1689[label="",style="dashed", color="magenta", weight=3]; 1348 -> 1690[label="",style="dashed", color="magenta", weight=3]; 1349 -> 414[label="",style="dashed", color="red", weight=0]; 1349[label="vxw3001 == vxw40001",fontsize=16,color="magenta"];1349 -> 1691[label="",style="dashed", color="magenta", weight=3]; 1349 -> 1692[label="",style="dashed", color="magenta", weight=3]; 1350 -> 415[label="",style="dashed", color="red", weight=0]; 1350[label="vxw3001 == vxw40001",fontsize=16,color="magenta"];1350 -> 1693[label="",style="dashed", color="magenta", weight=3]; 1350 -> 1694[label="",style="dashed", color="magenta", weight=3]; 1351 -> 416[label="",style="dashed", color="red", weight=0]; 1351[label="vxw3001 == vxw40001",fontsize=16,color="magenta"];1351 -> 1695[label="",style="dashed", color="magenta", weight=3]; 1351 -> 1696[label="",style="dashed", color="magenta", weight=3]; 1352 -> 417[label="",style="dashed", color="red", weight=0]; 1352[label="vxw3001 == vxw40001",fontsize=16,color="magenta"];1352 -> 1697[label="",style="dashed", color="magenta", weight=3]; 1352 -> 1698[label="",style="dashed", color="magenta", weight=3]; 1353 -> 418[label="",style="dashed", color="red", weight=0]; 1353[label="vxw3001 == vxw40001",fontsize=16,color="magenta"];1353 -> 1699[label="",style="dashed", color="magenta", weight=3]; 1353 -> 1700[label="",style="dashed", color="magenta", weight=3]; 1354 -> 419[label="",style="dashed", color="red", weight=0]; 1354[label="vxw3001 == vxw40001",fontsize=16,color="magenta"];1354 -> 1701[label="",style="dashed", color="magenta", weight=3]; 1354 -> 1702[label="",style="dashed", color="magenta", weight=3]; 1355 -> 420[label="",style="dashed", color="red", weight=0]; 1355[label="vxw3001 == vxw40001",fontsize=16,color="magenta"];1355 -> 1703[label="",style="dashed", color="magenta", weight=3]; 1355 -> 1704[label="",style="dashed", color="magenta", weight=3]; 1356 -> 421[label="",style="dashed", color="red", weight=0]; 1356[label="vxw3001 == vxw40001",fontsize=16,color="magenta"];1356 -> 1705[label="",style="dashed", color="magenta", weight=3]; 1356 -> 1706[label="",style="dashed", color="magenta", weight=3]; 1357 -> 422[label="",style="dashed", color="red", weight=0]; 1357[label="vxw3001 == vxw40001",fontsize=16,color="magenta"];1357 -> 1707[label="",style="dashed", color="magenta", weight=3]; 1357 -> 1708[label="",style="dashed", color="magenta", weight=3]; 1358 -> 423[label="",style="dashed", color="red", weight=0]; 1358[label="vxw3001 == vxw40001",fontsize=16,color="magenta"];1358 -> 1709[label="",style="dashed", color="magenta", weight=3]; 1358 -> 1710[label="",style="dashed", color="magenta", weight=3]; 1359 -> 424[label="",style="dashed", color="red", weight=0]; 1359[label="vxw3001 == vxw40001",fontsize=16,color="magenta"];1359 -> 1711[label="",style="dashed", color="magenta", weight=3]; 1359 -> 1712[label="",style="dashed", color="magenta", weight=3]; 1360 -> 425[label="",style="dashed", color="red", weight=0]; 1360[label="vxw3001 == vxw40001",fontsize=16,color="magenta"];1360 -> 1713[label="",style="dashed", color="magenta", weight=3]; 1360 -> 1714[label="",style="dashed", color="magenta", weight=3]; 1361 -> 426[label="",style="dashed", color="red", weight=0]; 1361[label="vxw3001 == vxw40001",fontsize=16,color="magenta"];1361 -> 1715[label="",style="dashed", color="magenta", weight=3]; 1361 -> 1716[label="",style="dashed", color="magenta", weight=3]; 1362 -> 427[label="",style="dashed", color="red", weight=0]; 1362[label="vxw3001 == vxw40001",fontsize=16,color="magenta"];1362 -> 1717[label="",style="dashed", color="magenta", weight=3]; 1362 -> 1718[label="",style="dashed", color="magenta", weight=3]; 1363 -> 414[label="",style="dashed", color="red", weight=0]; 1363[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1363 -> 1719[label="",style="dashed", color="magenta", weight=3]; 1363 -> 1720[label="",style="dashed", color="magenta", weight=3]; 1364 -> 415[label="",style="dashed", color="red", weight=0]; 1364[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1364 -> 1721[label="",style="dashed", color="magenta", weight=3]; 1364 -> 1722[label="",style="dashed", color="magenta", weight=3]; 1365 -> 416[label="",style="dashed", color="red", weight=0]; 1365[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1365 -> 1723[label="",style="dashed", color="magenta", weight=3]; 1365 -> 1724[label="",style="dashed", color="magenta", weight=3]; 1366 -> 417[label="",style="dashed", color="red", weight=0]; 1366[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1366 -> 1725[label="",style="dashed", color="magenta", weight=3]; 1366 -> 1726[label="",style="dashed", color="magenta", weight=3]; 1367 -> 418[label="",style="dashed", color="red", weight=0]; 1367[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1367 -> 1727[label="",style="dashed", color="magenta", weight=3]; 1367 -> 1728[label="",style="dashed", color="magenta", weight=3]; 1368 -> 419[label="",style="dashed", color="red", weight=0]; 1368[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1368 -> 1729[label="",style="dashed", color="magenta", weight=3]; 1368 -> 1730[label="",style="dashed", color="magenta", weight=3]; 1369 -> 420[label="",style="dashed", color="red", weight=0]; 1369[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1369 -> 1731[label="",style="dashed", color="magenta", weight=3]; 1369 -> 1732[label="",style="dashed", color="magenta", weight=3]; 1370 -> 421[label="",style="dashed", color="red", weight=0]; 1370[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1370 -> 1733[label="",style="dashed", color="magenta", weight=3]; 1370 -> 1734[label="",style="dashed", color="magenta", weight=3]; 1371 -> 422[label="",style="dashed", color="red", weight=0]; 1371[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1371 -> 1735[label="",style="dashed", color="magenta", weight=3]; 1371 -> 1736[label="",style="dashed", color="magenta", weight=3]; 1372 -> 423[label="",style="dashed", color="red", weight=0]; 1372[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1372 -> 1737[label="",style="dashed", color="magenta", weight=3]; 1372 -> 1738[label="",style="dashed", color="magenta", weight=3]; 1373 -> 424[label="",style="dashed", color="red", weight=0]; 1373[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1373 -> 1739[label="",style="dashed", color="magenta", weight=3]; 1373 -> 1740[label="",style="dashed", color="magenta", weight=3]; 1374 -> 425[label="",style="dashed", color="red", weight=0]; 1374[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1374 -> 1741[label="",style="dashed", color="magenta", weight=3]; 1374 -> 1742[label="",style="dashed", color="magenta", weight=3]; 1375 -> 426[label="",style="dashed", color="red", weight=0]; 1375[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1375 -> 1743[label="",style="dashed", color="magenta", weight=3]; 1375 -> 1744[label="",style="dashed", color="magenta", weight=3]; 1376 -> 427[label="",style="dashed", color="red", weight=0]; 1376[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1376 -> 1745[label="",style="dashed", color="magenta", weight=3]; 1376 -> 1746[label="",style="dashed", color="magenta", weight=3]; 1377 -> 416[label="",style="dashed", color="red", weight=0]; 1377[label="vxw3001 == vxw40001",fontsize=16,color="magenta"];1377 -> 1747[label="",style="dashed", color="magenta", weight=3]; 1377 -> 1748[label="",style="dashed", color="magenta", weight=3]; 1378 -> 421[label="",style="dashed", color="red", weight=0]; 1378[label="vxw3001 == vxw40001",fontsize=16,color="magenta"];1378 -> 1749[label="",style="dashed", color="magenta", weight=3]; 1378 -> 1750[label="",style="dashed", color="magenta", weight=3]; 1379 -> 416[label="",style="dashed", color="red", weight=0]; 1379[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1379 -> 1751[label="",style="dashed", color="magenta", weight=3]; 1379 -> 1752[label="",style="dashed", color="magenta", weight=3]; 1380 -> 421[label="",style="dashed", color="red", weight=0]; 1380[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1380 -> 1753[label="",style="dashed", color="magenta", weight=3]; 1380 -> 1754[label="",style="dashed", color="magenta", weight=3]; 1381[label="primEqNat (Succ vxw30000) vxw40000",fontsize=16,color="burlywood",shape="box"];3392[label="vxw40000/Succ vxw400000",fontsize=10,color="white",style="solid",shape="box"];1381 -> 3392[label="",style="solid", color="burlywood", weight=9]; 3392 -> 1755[label="",style="solid", color="burlywood", weight=3]; 3393[label="vxw40000/Zero",fontsize=10,color="white",style="solid",shape="box"];1381 -> 3393[label="",style="solid", color="burlywood", weight=9]; 3393 -> 1756[label="",style="solid", color="burlywood", weight=3]; 1382[label="primEqNat Zero vxw40000",fontsize=16,color="burlywood",shape="box"];3394[label="vxw40000/Succ vxw400000",fontsize=10,color="white",style="solid",shape="box"];1382 -> 3394[label="",style="solid", color="burlywood", weight=9]; 3394 -> 1757[label="",style="solid", color="burlywood", weight=3]; 3395[label="vxw40000/Zero",fontsize=10,color="white",style="solid",shape="box"];1382 -> 3395[label="",style="solid", color="burlywood", weight=9]; 3395 -> 1758[label="",style="solid", color="burlywood", weight=3]; 1383[label="vxw3002 == vxw40002",fontsize=16,color="blue",shape="box"];3396[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1383 -> 3396[label="",style="solid", color="blue", weight=9]; 3396 -> 1759[label="",style="solid", color="blue", weight=3]; 3397[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1383 -> 3397[label="",style="solid", color="blue", weight=9]; 3397 -> 1760[label="",style="solid", color="blue", weight=3]; 3398[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1383 -> 3398[label="",style="solid", color="blue", weight=9]; 3398 -> 1761[label="",style="solid", color="blue", weight=3]; 3399[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1383 -> 3399[label="",style="solid", color="blue", weight=9]; 3399 -> 1762[label="",style="solid", color="blue", weight=3]; 3400[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1383 -> 3400[label="",style="solid", color="blue", weight=9]; 3400 -> 1763[label="",style="solid", color="blue", weight=3]; 3401[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1383 -> 3401[label="",style="solid", color="blue", weight=9]; 3401 -> 1764[label="",style="solid", color="blue", weight=3]; 3402[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1383 -> 3402[label="",style="solid", color="blue", weight=9]; 3402 -> 1765[label="",style="solid", color="blue", weight=3]; 3403[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1383 -> 3403[label="",style="solid", color="blue", weight=9]; 3403 -> 1766[label="",style="solid", color="blue", weight=3]; 3404[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1383 -> 3404[label="",style="solid", color="blue", weight=9]; 3404 -> 1767[label="",style="solid", color="blue", weight=3]; 3405[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1383 -> 3405[label="",style="solid", color="blue", weight=9]; 3405 -> 1768[label="",style="solid", color="blue", weight=3]; 3406[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1383 -> 3406[label="",style="solid", color="blue", weight=9]; 3406 -> 1769[label="",style="solid", color="blue", weight=3]; 3407[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1383 -> 3407[label="",style="solid", color="blue", weight=9]; 3407 -> 1770[label="",style="solid", color="blue", weight=3]; 3408[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1383 -> 3408[label="",style="solid", color="blue", weight=9]; 3408 -> 1771[label="",style="solid", color="blue", weight=3]; 3409[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1383 -> 3409[label="",style="solid", color="blue", weight=9]; 3409 -> 1772[label="",style="solid", color="blue", weight=3]; 1384[label="vxw3001 == vxw40001",fontsize=16,color="blue",shape="box"];3410[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1384 -> 3410[label="",style="solid", color="blue", weight=9]; 3410 -> 1773[label="",style="solid", color="blue", weight=3]; 3411[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1384 -> 3411[label="",style="solid", color="blue", weight=9]; 3411 -> 1774[label="",style="solid", color="blue", weight=3]; 3412[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1384 -> 3412[label="",style="solid", color="blue", weight=9]; 3412 -> 1775[label="",style="solid", color="blue", weight=3]; 3413[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1384 -> 3413[label="",style="solid", color="blue", weight=9]; 3413 -> 1776[label="",style="solid", color="blue", weight=3]; 3414[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1384 -> 3414[label="",style="solid", color="blue", weight=9]; 3414 -> 1777[label="",style="solid", color="blue", weight=3]; 3415[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1384 -> 3415[label="",style="solid", color="blue", weight=9]; 3415 -> 1778[label="",style="solid", color="blue", weight=3]; 3416[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1384 -> 3416[label="",style="solid", color="blue", weight=9]; 3416 -> 1779[label="",style="solid", color="blue", weight=3]; 3417[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1384 -> 3417[label="",style="solid", color="blue", weight=9]; 3417 -> 1780[label="",style="solid", color="blue", weight=3]; 3418[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1384 -> 3418[label="",style="solid", color="blue", weight=9]; 3418 -> 1781[label="",style="solid", color="blue", weight=3]; 3419[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1384 -> 3419[label="",style="solid", color="blue", weight=9]; 3419 -> 1782[label="",style="solid", color="blue", weight=3]; 3420[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1384 -> 3420[label="",style="solid", color="blue", weight=9]; 3420 -> 1783[label="",style="solid", color="blue", weight=3]; 3421[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1384 -> 3421[label="",style="solid", color="blue", weight=9]; 3421 -> 1784[label="",style="solid", color="blue", weight=3]; 3422[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1384 -> 3422[label="",style="solid", color="blue", weight=9]; 3422 -> 1785[label="",style="solid", color="blue", weight=3]; 3423[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1384 -> 3423[label="",style="solid", color="blue", weight=9]; 3423 -> 1786[label="",style="solid", color="blue", weight=3]; 1385 -> 414[label="",style="dashed", color="red", weight=0]; 1385[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1385 -> 1787[label="",style="dashed", color="magenta", weight=3]; 1385 -> 1788[label="",style="dashed", color="magenta", weight=3]; 1386 -> 415[label="",style="dashed", color="red", weight=0]; 1386[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1386 -> 1789[label="",style="dashed", color="magenta", weight=3]; 1386 -> 1790[label="",style="dashed", color="magenta", weight=3]; 1387 -> 416[label="",style="dashed", color="red", weight=0]; 1387[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1387 -> 1791[label="",style="dashed", color="magenta", weight=3]; 1387 -> 1792[label="",style="dashed", color="magenta", weight=3]; 1388 -> 417[label="",style="dashed", color="red", weight=0]; 1388[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1388 -> 1793[label="",style="dashed", color="magenta", weight=3]; 1388 -> 1794[label="",style="dashed", color="magenta", weight=3]; 1389 -> 418[label="",style="dashed", color="red", weight=0]; 1389[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1389 -> 1795[label="",style="dashed", color="magenta", weight=3]; 1389 -> 1796[label="",style="dashed", color="magenta", weight=3]; 1390 -> 419[label="",style="dashed", color="red", weight=0]; 1390[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1390 -> 1797[label="",style="dashed", color="magenta", weight=3]; 1390 -> 1798[label="",style="dashed", color="magenta", weight=3]; 1391 -> 420[label="",style="dashed", color="red", weight=0]; 1391[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1391 -> 1799[label="",style="dashed", color="magenta", weight=3]; 1391 -> 1800[label="",style="dashed", color="magenta", weight=3]; 1392 -> 421[label="",style="dashed", color="red", weight=0]; 1392[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1392 -> 1801[label="",style="dashed", color="magenta", weight=3]; 1392 -> 1802[label="",style="dashed", color="magenta", weight=3]; 1393 -> 422[label="",style="dashed", color="red", weight=0]; 1393[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1393 -> 1803[label="",style="dashed", color="magenta", weight=3]; 1393 -> 1804[label="",style="dashed", color="magenta", weight=3]; 1394 -> 423[label="",style="dashed", color="red", weight=0]; 1394[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1394 -> 1805[label="",style="dashed", color="magenta", weight=3]; 1394 -> 1806[label="",style="dashed", color="magenta", weight=3]; 1395 -> 424[label="",style="dashed", color="red", weight=0]; 1395[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1395 -> 1807[label="",style="dashed", color="magenta", weight=3]; 1395 -> 1808[label="",style="dashed", color="magenta", weight=3]; 1396 -> 425[label="",style="dashed", color="red", weight=0]; 1396[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1396 -> 1809[label="",style="dashed", color="magenta", weight=3]; 1396 -> 1810[label="",style="dashed", color="magenta", weight=3]; 1397 -> 426[label="",style="dashed", color="red", weight=0]; 1397[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1397 -> 1811[label="",style="dashed", color="magenta", weight=3]; 1397 -> 1812[label="",style="dashed", color="magenta", weight=3]; 1398 -> 427[label="",style="dashed", color="red", weight=0]; 1398[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1398 -> 1813[label="",style="dashed", color="magenta", weight=3]; 1398 -> 1814[label="",style="dashed", color="magenta", weight=3]; 1399[label="primEqInt (Pos (Succ vxw30000)) (Pos (Succ vxw400000))",fontsize=16,color="black",shape="box"];1399 -> 1815[label="",style="solid", color="black", weight=3]; 1400[label="primEqInt (Pos (Succ vxw30000)) (Pos Zero)",fontsize=16,color="black",shape="box"];1400 -> 1816[label="",style="solid", color="black", weight=3]; 1401[label="False",fontsize=16,color="green",shape="box"];1402[label="primEqInt (Pos Zero) (Pos (Succ vxw400000))",fontsize=16,color="black",shape="box"];1402 -> 1817[label="",style="solid", color="black", weight=3]; 1403[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1403 -> 1818[label="",style="solid", color="black", weight=3]; 1404[label="primEqInt (Pos Zero) (Neg (Succ vxw400000))",fontsize=16,color="black",shape="box"];1404 -> 1819[label="",style="solid", color="black", weight=3]; 1405[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1405 -> 1820[label="",style="solid", color="black", weight=3]; 1406[label="False",fontsize=16,color="green",shape="box"];1407[label="primEqInt (Neg (Succ vxw30000)) (Neg (Succ vxw400000))",fontsize=16,color="black",shape="box"];1407 -> 1821[label="",style="solid", color="black", weight=3]; 1408[label="primEqInt (Neg (Succ vxw30000)) (Neg Zero)",fontsize=16,color="black",shape="box"];1408 -> 1822[label="",style="solid", color="black", weight=3]; 1409[label="primEqInt (Neg Zero) (Pos (Succ vxw400000))",fontsize=16,color="black",shape="box"];1409 -> 1823[label="",style="solid", color="black", weight=3]; 1410[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1410 -> 1824[label="",style="solid", color="black", weight=3]; 1411[label="primEqInt (Neg Zero) (Neg (Succ vxw400000))",fontsize=16,color="black",shape="box"];1411 -> 1825[label="",style="solid", color="black", weight=3]; 1412[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1412 -> 1826[label="",style="solid", color="black", weight=3]; 1413 -> 320[label="",style="dashed", color="red", weight=0]; 1413[label="vxw3001 * vxw40000",fontsize=16,color="magenta"];1413 -> 1827[label="",style="dashed", color="magenta", weight=3]; 1413 -> 1828[label="",style="dashed", color="magenta", weight=3]; 1414 -> 320[label="",style="dashed", color="red", weight=0]; 1414[label="vxw3000 * vxw40001",fontsize=16,color="magenta"];1414 -> 1829[label="",style="dashed", color="magenta", weight=3]; 1414 -> 1830[label="",style="dashed", color="magenta", weight=3]; 1415[label="vxw40001",fontsize=16,color="green",shape="box"];1416[label="vxw3001",fontsize=16,color="green",shape="box"];1417 -> 414[label="",style="dashed", color="red", weight=0]; 1417[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1417 -> 1831[label="",style="dashed", color="magenta", weight=3]; 1417 -> 1832[label="",style="dashed", color="magenta", weight=3]; 1418 -> 415[label="",style="dashed", color="red", weight=0]; 1418[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1418 -> 1833[label="",style="dashed", color="magenta", weight=3]; 1418 -> 1834[label="",style="dashed", color="magenta", weight=3]; 1419 -> 416[label="",style="dashed", color="red", weight=0]; 1419[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1419 -> 1835[label="",style="dashed", color="magenta", weight=3]; 1419 -> 1836[label="",style="dashed", color="magenta", weight=3]; 1420 -> 417[label="",style="dashed", color="red", weight=0]; 1420[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1420 -> 1837[label="",style="dashed", color="magenta", weight=3]; 1420 -> 1838[label="",style="dashed", color="magenta", weight=3]; 1421 -> 418[label="",style="dashed", color="red", weight=0]; 1421[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1421 -> 1839[label="",style="dashed", color="magenta", weight=3]; 1421 -> 1840[label="",style="dashed", color="magenta", weight=3]; 1422 -> 419[label="",style="dashed", color="red", weight=0]; 1422[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1422 -> 1841[label="",style="dashed", color="magenta", weight=3]; 1422 -> 1842[label="",style="dashed", color="magenta", weight=3]; 1423 -> 420[label="",style="dashed", color="red", weight=0]; 1423[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1423 -> 1843[label="",style="dashed", color="magenta", weight=3]; 1423 -> 1844[label="",style="dashed", color="magenta", weight=3]; 1424 -> 421[label="",style="dashed", color="red", weight=0]; 1424[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1424 -> 1845[label="",style="dashed", color="magenta", weight=3]; 1424 -> 1846[label="",style="dashed", color="magenta", weight=3]; 1425 -> 422[label="",style="dashed", color="red", weight=0]; 1425[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1425 -> 1847[label="",style="dashed", color="magenta", weight=3]; 1425 -> 1848[label="",style="dashed", color="magenta", weight=3]; 1426 -> 423[label="",style="dashed", color="red", weight=0]; 1426[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1426 -> 1849[label="",style="dashed", color="magenta", weight=3]; 1426 -> 1850[label="",style="dashed", color="magenta", weight=3]; 1427 -> 424[label="",style="dashed", color="red", weight=0]; 1427[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1427 -> 1851[label="",style="dashed", color="magenta", weight=3]; 1427 -> 1852[label="",style="dashed", color="magenta", weight=3]; 1428 -> 425[label="",style="dashed", color="red", weight=0]; 1428[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1428 -> 1853[label="",style="dashed", color="magenta", weight=3]; 1428 -> 1854[label="",style="dashed", color="magenta", weight=3]; 1429 -> 426[label="",style="dashed", color="red", weight=0]; 1429[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1429 -> 1855[label="",style="dashed", color="magenta", weight=3]; 1429 -> 1856[label="",style="dashed", color="magenta", weight=3]; 1430 -> 427[label="",style="dashed", color="red", weight=0]; 1430[label="vxw3000 == vxw40000",fontsize=16,color="magenta"];1430 -> 1857[label="",style="dashed", color="magenta", weight=3]; 1430 -> 1858[label="",style="dashed", color="magenta", weight=3]; 1431[label="vxw40000",fontsize=16,color="green",shape="box"];1432[label="vxw3000",fontsize=16,color="green",shape="box"];1433[label="vxw40000",fontsize=16,color="green",shape="box"];1434[label="vxw3000",fontsize=16,color="green",shape="box"];1435[label="vxw40000",fontsize=16,color="green",shape="box"];1436[label="vxw3000",fontsize=16,color="green",shape="box"];1437[label="vxw40000",fontsize=16,color="green",shape="box"];1438[label="vxw3000",fontsize=16,color="green",shape="box"];1439[label="vxw40000",fontsize=16,color="green",shape="box"];1440[label="vxw3000",fontsize=16,color="green",shape="box"];1441[label="vxw40000",fontsize=16,color="green",shape="box"];1442[label="vxw3000",fontsize=16,color="green",shape="box"];1443[label="vxw40000",fontsize=16,color="green",shape="box"];1444[label="vxw3000",fontsize=16,color="green",shape="box"];1445[label="vxw40000",fontsize=16,color="green",shape="box"];1446[label="vxw3000",fontsize=16,color="green",shape="box"];1447[label="vxw40000",fontsize=16,color="green",shape="box"];1448[label="vxw3000",fontsize=16,color="green",shape="box"];1449[label="vxw40000",fontsize=16,color="green",shape="box"];1450[label="vxw3000",fontsize=16,color="green",shape="box"];1451[label="vxw40000",fontsize=16,color="green",shape="box"];1452[label="vxw3000",fontsize=16,color="green",shape="box"];1453[label="vxw40000",fontsize=16,color="green",shape="box"];1454[label="vxw3000",fontsize=16,color="green",shape="box"];1455[label="vxw40000",fontsize=16,color="green",shape="box"];1456[label="vxw3000",fontsize=16,color="green",shape="box"];1457[label="vxw40000",fontsize=16,color="green",shape="box"];1458[label="vxw3000",fontsize=16,color="green",shape="box"];1459[label="vxw40000",fontsize=16,color="green",shape="box"];1460[label="vxw3000",fontsize=16,color="green",shape="box"];1461[label="vxw40000",fontsize=16,color="green",shape="box"];1462[label="vxw3000",fontsize=16,color="green",shape="box"];1463[label="vxw40000",fontsize=16,color="green",shape="box"];1464[label="vxw3000",fontsize=16,color="green",shape="box"];1465[label="vxw40000",fontsize=16,color="green",shape="box"];1466[label="vxw3000",fontsize=16,color="green",shape="box"];1467[label="vxw40000",fontsize=16,color="green",shape="box"];1468[label="vxw3000",fontsize=16,color="green",shape="box"];1469[label="vxw40000",fontsize=16,color="green",shape="box"];1470[label="vxw3000",fontsize=16,color="green",shape="box"];1471[label="vxw40000",fontsize=16,color="green",shape="box"];1472[label="vxw3000",fontsize=16,color="green",shape="box"];1473[label="vxw40000",fontsize=16,color="green",shape="box"];1474[label="vxw3000",fontsize=16,color="green",shape="box"];1475[label="vxw40000",fontsize=16,color="green",shape="box"];1476[label="vxw3000",fontsize=16,color="green",shape="box"];1477[label="vxw40000",fontsize=16,color="green",shape="box"];1478[label="vxw3000",fontsize=16,color="green",shape="box"];1479[label="vxw40000",fontsize=16,color="green",shape="box"];1480[label="vxw3000",fontsize=16,color="green",shape="box"];1481[label="vxw40000",fontsize=16,color="green",shape="box"];1482[label="vxw3000",fontsize=16,color="green",shape="box"];1483[label="vxw40000",fontsize=16,color="green",shape="box"];1484[label="vxw3000",fontsize=16,color="green",shape="box"];1485[label="vxw40000",fontsize=16,color="green",shape="box"];1486[label="vxw3000",fontsize=16,color="green",shape="box"];1487[label="vxw40000",fontsize=16,color="green",shape="box"];1488[label="vxw3000",fontsize=16,color="green",shape="box"];1489[label="vxw40000",fontsize=16,color="green",shape="box"];1490[label="vxw3000",fontsize=16,color="green",shape="box"];1491[label="vxw40000",fontsize=16,color="green",shape="box"];1492[label="vxw3000",fontsize=16,color="green",shape="box"];1493[label="vxw40000",fontsize=16,color="green",shape="box"];1494[label="vxw3000",fontsize=16,color="green",shape="box"];1495[label="vxw40000",fontsize=16,color="green",shape="box"];1496[label="vxw3000",fontsize=16,color="green",shape="box"];1497[label="vxw40000",fontsize=16,color="green",shape="box"];1498[label="vxw3000",fontsize=16,color="green",shape="box"];1499[label="vxw40000",fontsize=16,color="green",shape="box"];1500[label="vxw3000",fontsize=16,color="green",shape="box"];1501[label="vxw40000",fontsize=16,color="green",shape="box"];1502[label="vxw3000",fontsize=16,color="green",shape="box"];1503[label="vxw40000",fontsize=16,color="green",shape="box"];1504[label="vxw3000",fontsize=16,color="green",shape="box"];1505[label="vxw40000",fontsize=16,color="green",shape="box"];1506[label="vxw3000",fontsize=16,color="green",shape="box"];1507[label="vxw40000",fontsize=16,color="green",shape="box"];1508[label="vxw3000",fontsize=16,color="green",shape="box"];1509[label="vxw40000",fontsize=16,color="green",shape="box"];1510[label="vxw3000",fontsize=16,color="green",shape="box"];1511[label="vxw40000",fontsize=16,color="green",shape="box"];1512[label="vxw3000",fontsize=16,color="green",shape="box"];1513[label="vxw40000",fontsize=16,color="green",shape="box"];1514[label="vxw3000",fontsize=16,color="green",shape="box"];1515 -> 1859[label="",style="dashed", color="red", weight=0]; 1515[label="compare vxw30 vxw31 /= GT",fontsize=16,color="magenta"];1515 -> 1860[label="",style="dashed", color="magenta", weight=3]; 1516 -> 1859[label="",style="dashed", color="red", weight=0]; 1516[label="compare vxw30 vxw31 /= GT",fontsize=16,color="magenta"];1516 -> 1861[label="",style="dashed", color="magenta", weight=3]; 1517 -> 1859[label="",style="dashed", color="red", weight=0]; 1517[label="compare vxw30 vxw31 /= GT",fontsize=16,color="magenta"];1517 -> 1862[label="",style="dashed", color="magenta", weight=3]; 1518[label="Nothing <= vxw31",fontsize=16,color="burlywood",shape="box"];3424[label="vxw31/Nothing",fontsize=10,color="white",style="solid",shape="box"];1518 -> 3424[label="",style="solid", color="burlywood", weight=9]; 3424 -> 1868[label="",style="solid", color="burlywood", weight=3]; 3425[label="vxw31/Just vxw310",fontsize=10,color="white",style="solid",shape="box"];1518 -> 3425[label="",style="solid", color="burlywood", weight=9]; 3425 -> 1869[label="",style="solid", color="burlywood", weight=3]; 1519[label="Just vxw300 <= vxw31",fontsize=16,color="burlywood",shape="box"];3426[label="vxw31/Nothing",fontsize=10,color="white",style="solid",shape="box"];1519 -> 3426[label="",style="solid", color="burlywood", weight=9]; 3426 -> 1870[label="",style="solid", color="burlywood", weight=3]; 3427[label="vxw31/Just vxw310",fontsize=10,color="white",style="solid",shape="box"];1519 -> 3427[label="",style="solid", color="burlywood", weight=9]; 3427 -> 1871[label="",style="solid", color="burlywood", weight=3]; 1520[label="(vxw300,vxw301) <= vxw31",fontsize=16,color="burlywood",shape="box"];3428[label="vxw31/(vxw310,vxw311)",fontsize=10,color="white",style="solid",shape="box"];1520 -> 3428[label="",style="solid", color="burlywood", weight=9]; 3428 -> 1872[label="",style="solid", color="burlywood", weight=3]; 1521[label="LT <= vxw31",fontsize=16,color="burlywood",shape="box"];3429[label="vxw31/LT",fontsize=10,color="white",style="solid",shape="box"];1521 -> 3429[label="",style="solid", color="burlywood", weight=9]; 3429 -> 1873[label="",style="solid", color="burlywood", weight=3]; 3430[label="vxw31/EQ",fontsize=10,color="white",style="solid",shape="box"];1521 -> 3430[label="",style="solid", color="burlywood", weight=9]; 3430 -> 1874[label="",style="solid", color="burlywood", weight=3]; 3431[label="vxw31/GT",fontsize=10,color="white",style="solid",shape="box"];1521 -> 3431[label="",style="solid", color="burlywood", weight=9]; 3431 -> 1875[label="",style="solid", color="burlywood", weight=3]; 1522[label="EQ <= vxw31",fontsize=16,color="burlywood",shape="box"];3432[label="vxw31/LT",fontsize=10,color="white",style="solid",shape="box"];1522 -> 3432[label="",style="solid", color="burlywood", weight=9]; 3432 -> 1876[label="",style="solid", color="burlywood", weight=3]; 3433[label="vxw31/EQ",fontsize=10,color="white",style="solid",shape="box"];1522 -> 3433[label="",style="solid", color="burlywood", weight=9]; 3433 -> 1877[label="",style="solid", color="burlywood", weight=3]; 3434[label="vxw31/GT",fontsize=10,color="white",style="solid",shape="box"];1522 -> 3434[label="",style="solid", color="burlywood", weight=9]; 3434 -> 1878[label="",style="solid", color="burlywood", weight=3]; 1523[label="GT <= vxw31",fontsize=16,color="burlywood",shape="box"];3435[label="vxw31/LT",fontsize=10,color="white",style="solid",shape="box"];1523 -> 3435[label="",style="solid", color="burlywood", weight=9]; 3435 -> 1879[label="",style="solid", color="burlywood", weight=3]; 3436[label="vxw31/EQ",fontsize=10,color="white",style="solid",shape="box"];1523 -> 3436[label="",style="solid", color="burlywood", weight=9]; 3436 -> 1880[label="",style="solid", color="burlywood", weight=3]; 3437[label="vxw31/GT",fontsize=10,color="white",style="solid",shape="box"];1523 -> 3437[label="",style="solid", color="burlywood", weight=9]; 3437 -> 1881[label="",style="solid", color="burlywood", weight=3]; 1524[label="(vxw300,vxw301,vxw302) <= vxw31",fontsize=16,color="burlywood",shape="box"];3438[label="vxw31/(vxw310,vxw311,vxw312)",fontsize=10,color="white",style="solid",shape="box"];1524 -> 3438[label="",style="solid", color="burlywood", weight=9]; 3438 -> 1882[label="",style="solid", color="burlywood", weight=3]; 1525 -> 1859[label="",style="dashed", color="red", weight=0]; 1525[label="compare vxw30 vxw31 /= GT",fontsize=16,color="magenta"];1525 -> 1863[label="",style="dashed", color="magenta", weight=3]; 1526 -> 1859[label="",style="dashed", color="red", weight=0]; 1526[label="compare vxw30 vxw31 /= GT",fontsize=16,color="magenta"];1526 -> 1864[label="",style="dashed", color="magenta", weight=3]; 1527 -> 1859[label="",style="dashed", color="red", weight=0]; 1527[label="compare vxw30 vxw31 /= GT",fontsize=16,color="magenta"];1527 -> 1865[label="",style="dashed", color="magenta", weight=3]; 1528 -> 1859[label="",style="dashed", color="red", weight=0]; 1528[label="compare vxw30 vxw31 /= GT",fontsize=16,color="magenta"];1528 -> 1866[label="",style="dashed", color="magenta", weight=3]; 1529[label="Left vxw300 <= vxw31",fontsize=16,color="burlywood",shape="box"];3439[label="vxw31/Left vxw310",fontsize=10,color="white",style="solid",shape="box"];1529 -> 3439[label="",style="solid", color="burlywood", weight=9]; 3439 -> 1883[label="",style="solid", color="burlywood", weight=3]; 3440[label="vxw31/Right vxw310",fontsize=10,color="white",style="solid",shape="box"];1529 -> 3440[label="",style="solid", color="burlywood", weight=9]; 3440 -> 1884[label="",style="solid", color="burlywood", weight=3]; 1530[label="Right vxw300 <= vxw31",fontsize=16,color="burlywood",shape="box"];3441[label="vxw31/Left vxw310",fontsize=10,color="white",style="solid",shape="box"];1530 -> 3441[label="",style="solid", color="burlywood", weight=9]; 3441 -> 1885[label="",style="solid", color="burlywood", weight=3]; 3442[label="vxw31/Right vxw310",fontsize=10,color="white",style="solid",shape="box"];1530 -> 3442[label="",style="solid", color="burlywood", weight=9]; 3442 -> 1886[label="",style="solid", color="burlywood", weight=3]; 1531 -> 1859[label="",style="dashed", color="red", weight=0]; 1531[label="compare vxw30 vxw31 /= GT",fontsize=16,color="magenta"];1531 -> 1867[label="",style="dashed", color="magenta", weight=3]; 1532[label="False <= vxw31",fontsize=16,color="burlywood",shape="box"];3443[label="vxw31/False",fontsize=10,color="white",style="solid",shape="box"];1532 -> 3443[label="",style="solid", color="burlywood", weight=9]; 3443 -> 1887[label="",style="solid", color="burlywood", weight=3]; 3444[label="vxw31/True",fontsize=10,color="white",style="solid",shape="box"];1532 -> 3444[label="",style="solid", color="burlywood", weight=9]; 3444 -> 1888[label="",style="solid", color="burlywood", weight=3]; 1533[label="True <= vxw31",fontsize=16,color="burlywood",shape="box"];3445[label="vxw31/False",fontsize=10,color="white",style="solid",shape="box"];1533 -> 3445[label="",style="solid", color="burlywood", weight=9]; 3445 -> 1889[label="",style="solid", color="burlywood", weight=3]; 3446[label="vxw31/True",fontsize=10,color="white",style="solid",shape="box"];1533 -> 3446[label="",style="solid", color="burlywood", weight=9]; 3446 -> 1890[label="",style="solid", color="burlywood", weight=3]; 1534[label="compare0 (Just vxw102) (Just vxw103) True",fontsize=16,color="black",shape="box"];1534 -> 1891[label="",style="solid", color="black", weight=3]; 1535 -> 426[label="",style="dashed", color="red", weight=0]; 1535[label="compare vxw79 vxw81 == LT",fontsize=16,color="magenta"];1535 -> 1892[label="",style="dashed", color="magenta", weight=3]; 1535 -> 1893[label="",style="dashed", color="magenta", weight=3]; 1536 -> 426[label="",style="dashed", color="red", weight=0]; 1536[label="compare vxw79 vxw81 == LT",fontsize=16,color="magenta"];1536 -> 1894[label="",style="dashed", color="magenta", weight=3]; 1536 -> 1895[label="",style="dashed", color="magenta", weight=3]; 1537 -> 426[label="",style="dashed", color="red", weight=0]; 1537[label="compare vxw79 vxw81 == LT",fontsize=16,color="magenta"];1537 -> 1896[label="",style="dashed", color="magenta", weight=3]; 1537 -> 1897[label="",style="dashed", color="magenta", weight=3]; 1538 -> 426[label="",style="dashed", color="red", weight=0]; 1538[label="compare vxw79 vxw81 == LT",fontsize=16,color="magenta"];1538 -> 1898[label="",style="dashed", color="magenta", weight=3]; 1538 -> 1899[label="",style="dashed", color="magenta", weight=3]; 1539 -> 426[label="",style="dashed", color="red", weight=0]; 1539[label="compare vxw79 vxw81 == LT",fontsize=16,color="magenta"];1539 -> 1900[label="",style="dashed", color="magenta", weight=3]; 1539 -> 1901[label="",style="dashed", color="magenta", weight=3]; 1540 -> 426[label="",style="dashed", color="red", weight=0]; 1540[label="compare vxw79 vxw81 == LT",fontsize=16,color="magenta"];1540 -> 1902[label="",style="dashed", color="magenta", weight=3]; 1540 -> 1903[label="",style="dashed", color="magenta", weight=3]; 1541 -> 426[label="",style="dashed", color="red", weight=0]; 1541[label="compare vxw79 vxw81 == LT",fontsize=16,color="magenta"];1541 -> 1904[label="",style="dashed", color="magenta", weight=3]; 1541 -> 1905[label="",style="dashed", color="magenta", weight=3]; 1542 -> 426[label="",style="dashed", color="red", weight=0]; 1542[label="compare vxw79 vxw81 == LT",fontsize=16,color="magenta"];1542 -> 1906[label="",style="dashed", color="magenta", weight=3]; 1542 -> 1907[label="",style="dashed", color="magenta", weight=3]; 1543 -> 426[label="",style="dashed", color="red", weight=0]; 1543[label="compare vxw79 vxw81 == LT",fontsize=16,color="magenta"];1543 -> 1908[label="",style="dashed", color="magenta", weight=3]; 1543 -> 1909[label="",style="dashed", color="magenta", weight=3]; 1544 -> 426[label="",style="dashed", color="red", weight=0]; 1544[label="compare vxw79 vxw81 == LT",fontsize=16,color="magenta"];1544 -> 1910[label="",style="dashed", color="magenta", weight=3]; 1544 -> 1911[label="",style="dashed", color="magenta", weight=3]; 1545 -> 426[label="",style="dashed", color="red", weight=0]; 1545[label="compare vxw79 vxw81 == LT",fontsize=16,color="magenta"];1545 -> 1912[label="",style="dashed", color="magenta", weight=3]; 1545 -> 1913[label="",style="dashed", color="magenta", weight=3]; 1546 -> 426[label="",style="dashed", color="red", weight=0]; 1546[label="compare vxw79 vxw81 == LT",fontsize=16,color="magenta"];1546 -> 1914[label="",style="dashed", color="magenta", weight=3]; 1546 -> 1915[label="",style="dashed", color="magenta", weight=3]; 1547 -> 426[label="",style="dashed", color="red", weight=0]; 1547[label="compare vxw79 vxw81 == LT",fontsize=16,color="magenta"];1547 -> 1916[label="",style="dashed", color="magenta", weight=3]; 1547 -> 1917[label="",style="dashed", color="magenta", weight=3]; 1548 -> 426[label="",style="dashed", color="red", weight=0]; 1548[label="compare vxw79 vxw81 == LT",fontsize=16,color="magenta"];1548 -> 1918[label="",style="dashed", color="magenta", weight=3]; 1548 -> 1919[label="",style="dashed", color="magenta", weight=3]; 1549 -> 1223[label="",style="dashed", color="red", weight=0]; 1549[label="vxw80 <= vxw82",fontsize=16,color="magenta"];1549 -> 1920[label="",style="dashed", color="magenta", weight=3]; 1549 -> 1921[label="",style="dashed", color="magenta", weight=3]; 1550 -> 1224[label="",style="dashed", color="red", weight=0]; 1550[label="vxw80 <= vxw82",fontsize=16,color="magenta"];1550 -> 1922[label="",style="dashed", color="magenta", weight=3]; 1550 -> 1923[label="",style="dashed", color="magenta", weight=3]; 1551 -> 1225[label="",style="dashed", color="red", weight=0]; 1551[label="vxw80 <= vxw82",fontsize=16,color="magenta"];1551 -> 1924[label="",style="dashed", color="magenta", weight=3]; 1551 -> 1925[label="",style="dashed", color="magenta", weight=3]; 1552 -> 1226[label="",style="dashed", color="red", weight=0]; 1552[label="vxw80 <= vxw82",fontsize=16,color="magenta"];1552 -> 1926[label="",style="dashed", color="magenta", weight=3]; 1552 -> 1927[label="",style="dashed", color="magenta", weight=3]; 1553 -> 1227[label="",style="dashed", color="red", weight=0]; 1553[label="vxw80 <= vxw82",fontsize=16,color="magenta"];1553 -> 1928[label="",style="dashed", color="magenta", weight=3]; 1553 -> 1929[label="",style="dashed", color="magenta", weight=3]; 1554 -> 1228[label="",style="dashed", color="red", weight=0]; 1554[label="vxw80 <= vxw82",fontsize=16,color="magenta"];1554 -> 1930[label="",style="dashed", color="magenta", weight=3]; 1554 -> 1931[label="",style="dashed", color="magenta", weight=3]; 1555 -> 1229[label="",style="dashed", color="red", weight=0]; 1555[label="vxw80 <= vxw82",fontsize=16,color="magenta"];1555 -> 1932[label="",style="dashed", color="magenta", weight=3]; 1555 -> 1933[label="",style="dashed", color="magenta", weight=3]; 1556 -> 1230[label="",style="dashed", color="red", weight=0]; 1556[label="vxw80 <= vxw82",fontsize=16,color="magenta"];1556 -> 1934[label="",style="dashed", color="magenta", weight=3]; 1556 -> 1935[label="",style="dashed", color="magenta", weight=3]; 1557 -> 1231[label="",style="dashed", color="red", weight=0]; 1557[label="vxw80 <= vxw82",fontsize=16,color="magenta"];1557 -> 1936[label="",style="dashed", color="magenta", weight=3]; 1557 -> 1937[label="",style="dashed", color="magenta", weight=3]; 1558 -> 1232[label="",style="dashed", color="red", weight=0]; 1558[label="vxw80 <= vxw82",fontsize=16,color="magenta"];1558 -> 1938[label="",style="dashed", color="magenta", weight=3]; 1558 -> 1939[label="",style="dashed", color="magenta", weight=3]; 1559 -> 1233[label="",style="dashed", color="red", weight=0]; 1559[label="vxw80 <= vxw82",fontsize=16,color="magenta"];1559 -> 1940[label="",style="dashed", color="magenta", weight=3]; 1559 -> 1941[label="",style="dashed", color="magenta", weight=3]; 1560 -> 1234[label="",style="dashed", color="red", weight=0]; 1560[label="vxw80 <= vxw82",fontsize=16,color="magenta"];1560 -> 1942[label="",style="dashed", color="magenta", weight=3]; 1560 -> 1943[label="",style="dashed", color="magenta", weight=3]; 1561 -> 1235[label="",style="dashed", color="red", weight=0]; 1561[label="vxw80 <= vxw82",fontsize=16,color="magenta"];1561 -> 1944[label="",style="dashed", color="magenta", weight=3]; 1561 -> 1945[label="",style="dashed", color="magenta", weight=3]; 1562 -> 1236[label="",style="dashed", color="red", weight=0]; 1562[label="vxw80 <= vxw82",fontsize=16,color="magenta"];1562 -> 1946[label="",style="dashed", color="magenta", weight=3]; 1562 -> 1947[label="",style="dashed", color="magenta", weight=3]; 1563 -> 418[label="",style="dashed", color="red", weight=0]; 1563[label="vxw79 == vxw81",fontsize=16,color="magenta"];1563 -> 1948[label="",style="dashed", color="magenta", weight=3]; 1563 -> 1949[label="",style="dashed", color="magenta", weight=3]; 1564 -> 416[label="",style="dashed", color="red", weight=0]; 1564[label="vxw79 == vxw81",fontsize=16,color="magenta"];1564 -> 1950[label="",style="dashed", color="magenta", weight=3]; 1564 -> 1951[label="",style="dashed", color="magenta", weight=3]; 1565 -> 424[label="",style="dashed", color="red", weight=0]; 1565[label="vxw79 == vxw81",fontsize=16,color="magenta"];1565 -> 1952[label="",style="dashed", color="magenta", weight=3]; 1565 -> 1953[label="",style="dashed", color="magenta", weight=3]; 1566 -> 425[label="",style="dashed", color="red", weight=0]; 1566[label="vxw79 == vxw81",fontsize=16,color="magenta"];1566 -> 1954[label="",style="dashed", color="magenta", weight=3]; 1566 -> 1955[label="",style="dashed", color="magenta", weight=3]; 1567 -> 415[label="",style="dashed", color="red", weight=0]; 1567[label="vxw79 == vxw81",fontsize=16,color="magenta"];1567 -> 1956[label="",style="dashed", color="magenta", weight=3]; 1567 -> 1957[label="",style="dashed", color="magenta", weight=3]; 1568 -> 426[label="",style="dashed", color="red", weight=0]; 1568[label="vxw79 == vxw81",fontsize=16,color="magenta"];1568 -> 1958[label="",style="dashed", color="magenta", weight=3]; 1568 -> 1959[label="",style="dashed", color="magenta", weight=3]; 1569 -> 420[label="",style="dashed", color="red", weight=0]; 1569[label="vxw79 == vxw81",fontsize=16,color="magenta"];1569 -> 1960[label="",style="dashed", color="magenta", weight=3]; 1569 -> 1961[label="",style="dashed", color="magenta", weight=3]; 1570 -> 421[label="",style="dashed", color="red", weight=0]; 1570[label="vxw79 == vxw81",fontsize=16,color="magenta"];1570 -> 1962[label="",style="dashed", color="magenta", weight=3]; 1570 -> 1963[label="",style="dashed", color="magenta", weight=3]; 1571 -> 414[label="",style="dashed", color="red", weight=0]; 1571[label="vxw79 == vxw81",fontsize=16,color="magenta"];1571 -> 1964[label="",style="dashed", color="magenta", weight=3]; 1571 -> 1965[label="",style="dashed", color="magenta", weight=3]; 1572 -> 417[label="",style="dashed", color="red", weight=0]; 1572[label="vxw79 == vxw81",fontsize=16,color="magenta"];1572 -> 1966[label="",style="dashed", color="magenta", weight=3]; 1572 -> 1967[label="",style="dashed", color="magenta", weight=3]; 1573 -> 422[label="",style="dashed", color="red", weight=0]; 1573[label="vxw79 == vxw81",fontsize=16,color="magenta"];1573 -> 1968[label="",style="dashed", color="magenta", weight=3]; 1573 -> 1969[label="",style="dashed", color="magenta", weight=3]; 1574 -> 427[label="",style="dashed", color="red", weight=0]; 1574[label="vxw79 == vxw81",fontsize=16,color="magenta"];1574 -> 1970[label="",style="dashed", color="magenta", weight=3]; 1574 -> 1971[label="",style="dashed", color="magenta", weight=3]; 1575 -> 423[label="",style="dashed", color="red", weight=0]; 1575[label="vxw79 == vxw81",fontsize=16,color="magenta"];1575 -> 1972[label="",style="dashed", color="magenta", weight=3]; 1575 -> 1973[label="",style="dashed", color="magenta", weight=3]; 1576 -> 419[label="",style="dashed", color="red", weight=0]; 1576[label="vxw79 == vxw81",fontsize=16,color="magenta"];1576 -> 1974[label="",style="dashed", color="magenta", weight=3]; 1576 -> 1975[label="",style="dashed", color="magenta", weight=3]; 1577[label="compare1 (vxw129,vxw130) (vxw131,vxw132) vxw134",fontsize=16,color="burlywood",shape="triangle"];3447[label="vxw134/False",fontsize=10,color="white",style="solid",shape="box"];1577 -> 3447[label="",style="solid", color="burlywood", weight=9]; 3447 -> 1976[label="",style="solid", color="burlywood", weight=3]; 3448[label="vxw134/True",fontsize=10,color="white",style="solid",shape="box"];1577 -> 3448[label="",style="solid", color="burlywood", weight=9]; 3448 -> 1977[label="",style="solid", color="burlywood", weight=3]; 1578 -> 1577[label="",style="dashed", color="red", weight=0]; 1578[label="compare1 (vxw129,vxw130) (vxw131,vxw132) True",fontsize=16,color="magenta"];1578 -> 1978[label="",style="dashed", color="magenta", weight=3]; 1982 -> 837[label="",style="dashed", color="red", weight=0]; 1982[label="vxw53 == vxw56 && vxw54 <= vxw57",fontsize=16,color="magenta"];1982 -> 1986[label="",style="dashed", color="magenta", weight=3]; 1982 -> 1987[label="",style="dashed", color="magenta", weight=3]; 1983[label="vxw53 < vxw56",fontsize=16,color="blue",shape="box"];3449[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1983 -> 3449[label="",style="solid", color="blue", weight=9]; 3449 -> 1988[label="",style="solid", color="blue", weight=3]; 3450[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1983 -> 3450[label="",style="solid", color="blue", weight=9]; 3450 -> 1989[label="",style="solid", color="blue", weight=3]; 3451[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1983 -> 3451[label="",style="solid", color="blue", weight=9]; 3451 -> 1990[label="",style="solid", color="blue", weight=3]; 3452[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1983 -> 3452[label="",style="solid", color="blue", weight=9]; 3452 -> 1991[label="",style="solid", color="blue", weight=3]; 3453[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1983 -> 3453[label="",style="solid", color="blue", weight=9]; 3453 -> 1992[label="",style="solid", color="blue", weight=3]; 3454[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1983 -> 3454[label="",style="solid", color="blue", weight=9]; 3454 -> 1993[label="",style="solid", color="blue", weight=3]; 3455[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1983 -> 3455[label="",style="solid", color="blue", weight=9]; 3455 -> 1994[label="",style="solid", color="blue", weight=3]; 3456[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1983 -> 3456[label="",style="solid", color="blue", weight=9]; 3456 -> 1995[label="",style="solid", color="blue", weight=3]; 3457[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1983 -> 3457[label="",style="solid", color="blue", weight=9]; 3457 -> 1996[label="",style="solid", color="blue", weight=3]; 3458[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1983 -> 3458[label="",style="solid", color="blue", weight=9]; 3458 -> 1997[label="",style="solid", color="blue", weight=3]; 3459[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1983 -> 3459[label="",style="solid", color="blue", weight=9]; 3459 -> 1998[label="",style="solid", color="blue", weight=3]; 3460[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1983 -> 3460[label="",style="solid", color="blue", weight=9]; 3460 -> 1999[label="",style="solid", color="blue", weight=3]; 3461[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1983 -> 3461[label="",style="solid", color="blue", weight=9]; 3461 -> 2000[label="",style="solid", color="blue", weight=3]; 3462[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1983 -> 3462[label="",style="solid", color="blue", weight=9]; 3462 -> 2001[label="",style="solid", color="blue", weight=3]; 1981[label="vxw157 || vxw158",fontsize=16,color="burlywood",shape="triangle"];3463[label="vxw157/False",fontsize=10,color="white",style="solid",shape="box"];1981 -> 3463[label="",style="solid", color="burlywood", weight=9]; 3463 -> 2002[label="",style="solid", color="burlywood", weight=3]; 3464[label="vxw157/True",fontsize=10,color="white",style="solid",shape="box"];1981 -> 3464[label="",style="solid", color="burlywood", weight=9]; 3464 -> 2003[label="",style="solid", color="burlywood", weight=3]; 1581 -> 418[label="",style="dashed", color="red", weight=0]; 1581[label="vxw52 == vxw55",fontsize=16,color="magenta"];1581 -> 2004[label="",style="dashed", color="magenta", weight=3]; 1581 -> 2005[label="",style="dashed", color="magenta", weight=3]; 1582 -> 416[label="",style="dashed", color="red", weight=0]; 1582[label="vxw52 == vxw55",fontsize=16,color="magenta"];1582 -> 2006[label="",style="dashed", color="magenta", weight=3]; 1582 -> 2007[label="",style="dashed", color="magenta", weight=3]; 1583 -> 424[label="",style="dashed", color="red", weight=0]; 1583[label="vxw52 == vxw55",fontsize=16,color="magenta"];1583 -> 2008[label="",style="dashed", color="magenta", weight=3]; 1583 -> 2009[label="",style="dashed", color="magenta", weight=3]; 1584 -> 425[label="",style="dashed", color="red", weight=0]; 1584[label="vxw52 == vxw55",fontsize=16,color="magenta"];1584 -> 2010[label="",style="dashed", color="magenta", weight=3]; 1584 -> 2011[label="",style="dashed", color="magenta", weight=3]; 1585 -> 415[label="",style="dashed", color="red", weight=0]; 1585[label="vxw52 == vxw55",fontsize=16,color="magenta"];1585 -> 2012[label="",style="dashed", color="magenta", weight=3]; 1585 -> 2013[label="",style="dashed", color="magenta", weight=3]; 1586 -> 426[label="",style="dashed", color="red", weight=0]; 1586[label="vxw52 == vxw55",fontsize=16,color="magenta"];1586 -> 2014[label="",style="dashed", color="magenta", weight=3]; 1586 -> 2015[label="",style="dashed", color="magenta", weight=3]; 1587 -> 420[label="",style="dashed", color="red", weight=0]; 1587[label="vxw52 == vxw55",fontsize=16,color="magenta"];1587 -> 2016[label="",style="dashed", color="magenta", weight=3]; 1587 -> 2017[label="",style="dashed", color="magenta", weight=3]; 1588 -> 421[label="",style="dashed", color="red", weight=0]; 1588[label="vxw52 == vxw55",fontsize=16,color="magenta"];1588 -> 2018[label="",style="dashed", color="magenta", weight=3]; 1588 -> 2019[label="",style="dashed", color="magenta", weight=3]; 1589 -> 414[label="",style="dashed", color="red", weight=0]; 1589[label="vxw52 == vxw55",fontsize=16,color="magenta"];1589 -> 2020[label="",style="dashed", color="magenta", weight=3]; 1589 -> 2021[label="",style="dashed", color="magenta", weight=3]; 1590 -> 417[label="",style="dashed", color="red", weight=0]; 1590[label="vxw52 == vxw55",fontsize=16,color="magenta"];1590 -> 2022[label="",style="dashed", color="magenta", weight=3]; 1590 -> 2023[label="",style="dashed", color="magenta", weight=3]; 1591 -> 422[label="",style="dashed", color="red", weight=0]; 1591[label="vxw52 == vxw55",fontsize=16,color="magenta"];1591 -> 2024[label="",style="dashed", color="magenta", weight=3]; 1591 -> 2025[label="",style="dashed", color="magenta", weight=3]; 1592 -> 427[label="",style="dashed", color="red", weight=0]; 1592[label="vxw52 == vxw55",fontsize=16,color="magenta"];1592 -> 2026[label="",style="dashed", color="magenta", weight=3]; 1592 -> 2027[label="",style="dashed", color="magenta", weight=3]; 1593 -> 423[label="",style="dashed", color="red", weight=0]; 1593[label="vxw52 == vxw55",fontsize=16,color="magenta"];1593 -> 2028[label="",style="dashed", color="magenta", weight=3]; 1593 -> 2029[label="",style="dashed", color="magenta", weight=3]; 1594 -> 419[label="",style="dashed", color="red", weight=0]; 1594[label="vxw52 == vxw55",fontsize=16,color="magenta"];1594 -> 2030[label="",style="dashed", color="magenta", weight=3]; 1594 -> 2031[label="",style="dashed", color="magenta", weight=3]; 1595[label="vxw52",fontsize=16,color="green",shape="box"];1596[label="vxw55",fontsize=16,color="green",shape="box"];1597[label="vxw52",fontsize=16,color="green",shape="box"];1598[label="vxw55",fontsize=16,color="green",shape="box"];1599[label="vxw52",fontsize=16,color="green",shape="box"];1600[label="vxw55",fontsize=16,color="green",shape="box"];1601[label="vxw52",fontsize=16,color="green",shape="box"];1602[label="vxw55",fontsize=16,color="green",shape="box"];1603[label="vxw52",fontsize=16,color="green",shape="box"];1604[label="vxw55",fontsize=16,color="green",shape="box"];1605[label="vxw52",fontsize=16,color="green",shape="box"];1606[label="vxw55",fontsize=16,color="green",shape="box"];1607[label="vxw52",fontsize=16,color="green",shape="box"];1608[label="vxw55",fontsize=16,color="green",shape="box"];1609[label="vxw52",fontsize=16,color="green",shape="box"];1610[label="vxw55",fontsize=16,color="green",shape="box"];1611[label="vxw52",fontsize=16,color="green",shape="box"];1612[label="vxw55",fontsize=16,color="green",shape="box"];1613[label="vxw52",fontsize=16,color="green",shape="box"];1614[label="vxw55",fontsize=16,color="green",shape="box"];1615[label="vxw52",fontsize=16,color="green",shape="box"];1616[label="vxw55",fontsize=16,color="green",shape="box"];1617[label="vxw52",fontsize=16,color="green",shape="box"];1618[label="vxw55",fontsize=16,color="green",shape="box"];1619[label="vxw52",fontsize=16,color="green",shape="box"];1620[label="vxw55",fontsize=16,color="green",shape="box"];1621[label="vxw52",fontsize=16,color="green",shape="box"];1622[label="vxw55",fontsize=16,color="green",shape="box"];1623[label="compare1 (vxw144,vxw145,vxw146) (vxw147,vxw148,vxw149) vxw151",fontsize=16,color="burlywood",shape="triangle"];3465[label="vxw151/False",fontsize=10,color="white",style="solid",shape="box"];1623 -> 3465[label="",style="solid", color="burlywood", weight=9]; 3465 -> 2032[label="",style="solid", color="burlywood", weight=3]; 3466[label="vxw151/True",fontsize=10,color="white",style="solid",shape="box"];1623 -> 3466[label="",style="solid", color="burlywood", weight=9]; 3466 -> 2033[label="",style="solid", color="burlywood", weight=3]; 1624 -> 1623[label="",style="dashed", color="red", weight=0]; 1624[label="compare1 (vxw144,vxw145,vxw146) (vxw147,vxw148,vxw149) True",fontsize=16,color="magenta"];1624 -> 2034[label="",style="dashed", color="magenta", weight=3]; 1625[label="primMulNat (Succ vxw400000) (Succ vxw30100)",fontsize=16,color="black",shape="box"];1625 -> 2035[label="",style="solid", color="black", weight=3]; 1626[label="primMulNat (Succ vxw400000) Zero",fontsize=16,color="black",shape="box"];1626 -> 2036[label="",style="solid", color="black", weight=3]; 1627[label="primMulNat Zero (Succ vxw30100)",fontsize=16,color="black",shape="box"];1627 -> 2037[label="",style="solid", color="black", weight=3]; 1628[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];1628 -> 2038[label="",style="solid", color="black", weight=3]; 1629[label="vxw64",fontsize=16,color="green",shape="box"];1630[label="vxw63",fontsize=16,color="green",shape="box"];1631[label="vxw64",fontsize=16,color="green",shape="box"];1632[label="vxw63",fontsize=16,color="green",shape="box"];1633[label="vxw64",fontsize=16,color="green",shape="box"];1634[label="vxw63",fontsize=16,color="green",shape="box"];1635[label="vxw64",fontsize=16,color="green",shape="box"];1636[label="vxw63",fontsize=16,color="green",shape="box"];1637[label="vxw64",fontsize=16,color="green",shape="box"];1638[label="vxw63",fontsize=16,color="green",shape="box"];1639[label="vxw64",fontsize=16,color="green",shape="box"];1640[label="vxw63",fontsize=16,color="green",shape="box"];1641[label="vxw64",fontsize=16,color="green",shape="box"];1642[label="vxw63",fontsize=16,color="green",shape="box"];1643[label="vxw64",fontsize=16,color="green",shape="box"];1644[label="vxw63",fontsize=16,color="green",shape="box"];1645[label="vxw64",fontsize=16,color="green",shape="box"];1646[label="vxw63",fontsize=16,color="green",shape="box"];1647[label="vxw64",fontsize=16,color="green",shape="box"];1648[label="vxw63",fontsize=16,color="green",shape="box"];1649[label="vxw64",fontsize=16,color="green",shape="box"];1650[label="vxw63",fontsize=16,color="green",shape="box"];1651[label="vxw64",fontsize=16,color="green",shape="box"];1652[label="vxw63",fontsize=16,color="green",shape="box"];1653[label="vxw64",fontsize=16,color="green",shape="box"];1654[label="vxw63",fontsize=16,color="green",shape="box"];1655[label="vxw64",fontsize=16,color="green",shape="box"];1656[label="vxw63",fontsize=16,color="green",shape="box"];1657[label="compare0 (Left vxw109) (Left vxw110) True",fontsize=16,color="black",shape="box"];1657 -> 2039[label="",style="solid", color="black", weight=3]; 1658[label="vxw71",fontsize=16,color="green",shape="box"];1659[label="vxw70",fontsize=16,color="green",shape="box"];1660[label="vxw71",fontsize=16,color="green",shape="box"];1661[label="vxw70",fontsize=16,color="green",shape="box"];1662[label="vxw71",fontsize=16,color="green",shape="box"];1663[label="vxw70",fontsize=16,color="green",shape="box"];1664[label="vxw71",fontsize=16,color="green",shape="box"];1665[label="vxw70",fontsize=16,color="green",shape="box"];1666[label="vxw71",fontsize=16,color="green",shape="box"];1667[label="vxw70",fontsize=16,color="green",shape="box"];1668[label="vxw71",fontsize=16,color="green",shape="box"];1669[label="vxw70",fontsize=16,color="green",shape="box"];1670[label="vxw71",fontsize=16,color="green",shape="box"];1671[label="vxw70",fontsize=16,color="green",shape="box"];1672[label="vxw71",fontsize=16,color="green",shape="box"];1673[label="vxw70",fontsize=16,color="green",shape="box"];1674[label="vxw71",fontsize=16,color="green",shape="box"];1675[label="vxw70",fontsize=16,color="green",shape="box"];1676[label="vxw71",fontsize=16,color="green",shape="box"];1677[label="vxw70",fontsize=16,color="green",shape="box"];1678[label="vxw71",fontsize=16,color="green",shape="box"];1679[label="vxw70",fontsize=16,color="green",shape="box"];1680[label="vxw71",fontsize=16,color="green",shape="box"];1681[label="vxw70",fontsize=16,color="green",shape="box"];1682[label="vxw71",fontsize=16,color="green",shape="box"];1683[label="vxw70",fontsize=16,color="green",shape="box"];1684[label="vxw71",fontsize=16,color="green",shape="box"];1685[label="vxw70",fontsize=16,color="green",shape="box"];1686[label="compare0 (Right vxw119) (Right vxw120) True",fontsize=16,color="black",shape="box"];1686 -> 2040[label="",style="solid", color="black", weight=3]; 1687[label="vxw40000",fontsize=16,color="green",shape="box"];1688[label="vxw3001",fontsize=16,color="green",shape="box"];1689[label="vxw40001",fontsize=16,color="green",shape="box"];1690[label="vxw3000",fontsize=16,color="green",shape="box"];1691[label="vxw40001",fontsize=16,color="green",shape="box"];1692[label="vxw3001",fontsize=16,color="green",shape="box"];1693[label="vxw40001",fontsize=16,color="green",shape="box"];1694[label="vxw3001",fontsize=16,color="green",shape="box"];1695[label="vxw40001",fontsize=16,color="green",shape="box"];1696[label="vxw3001",fontsize=16,color="green",shape="box"];1697[label="vxw40001",fontsize=16,color="green",shape="box"];1698[label="vxw3001",fontsize=16,color="green",shape="box"];1699[label="vxw40001",fontsize=16,color="green",shape="box"];1700[label="vxw3001",fontsize=16,color="green",shape="box"];1701[label="vxw40001",fontsize=16,color="green",shape="box"];1702[label="vxw3001",fontsize=16,color="green",shape="box"];1703[label="vxw40001",fontsize=16,color="green",shape="box"];1704[label="vxw3001",fontsize=16,color="green",shape="box"];1705[label="vxw40001",fontsize=16,color="green",shape="box"];1706[label="vxw3001",fontsize=16,color="green",shape="box"];1707[label="vxw40001",fontsize=16,color="green",shape="box"];1708[label="vxw3001",fontsize=16,color="green",shape="box"];1709[label="vxw40001",fontsize=16,color="green",shape="box"];1710[label="vxw3001",fontsize=16,color="green",shape="box"];1711[label="vxw40001",fontsize=16,color="green",shape="box"];1712[label="vxw3001",fontsize=16,color="green",shape="box"];1713[label="vxw40001",fontsize=16,color="green",shape="box"];1714[label="vxw3001",fontsize=16,color="green",shape="box"];1715[label="vxw40001",fontsize=16,color="green",shape="box"];1716[label="vxw3001",fontsize=16,color="green",shape="box"];1717[label="vxw40001",fontsize=16,color="green",shape="box"];1718[label="vxw3001",fontsize=16,color="green",shape="box"];1719[label="vxw40000",fontsize=16,color="green",shape="box"];1720[label="vxw3000",fontsize=16,color="green",shape="box"];1721[label="vxw40000",fontsize=16,color="green",shape="box"];1722[label="vxw3000",fontsize=16,color="green",shape="box"];1723[label="vxw40000",fontsize=16,color="green",shape="box"];1724[label="vxw3000",fontsize=16,color="green",shape="box"];1725[label="vxw40000",fontsize=16,color="green",shape="box"];1726[label="vxw3000",fontsize=16,color="green",shape="box"];1727[label="vxw40000",fontsize=16,color="green",shape="box"];1728[label="vxw3000",fontsize=16,color="green",shape="box"];1729[label="vxw40000",fontsize=16,color="green",shape="box"];1730[label="vxw3000",fontsize=16,color="green",shape="box"];1731[label="vxw40000",fontsize=16,color="green",shape="box"];1732[label="vxw3000",fontsize=16,color="green",shape="box"];1733[label="vxw40000",fontsize=16,color="green",shape="box"];1734[label="vxw3000",fontsize=16,color="green",shape="box"];1735[label="vxw40000",fontsize=16,color="green",shape="box"];1736[label="vxw3000",fontsize=16,color="green",shape="box"];1737[label="vxw40000",fontsize=16,color="green",shape="box"];1738[label="vxw3000",fontsize=16,color="green",shape="box"];1739[label="vxw40000",fontsize=16,color="green",shape="box"];1740[label="vxw3000",fontsize=16,color="green",shape="box"];1741[label="vxw40000",fontsize=16,color="green",shape="box"];1742[label="vxw3000",fontsize=16,color="green",shape="box"];1743[label="vxw40000",fontsize=16,color="green",shape="box"];1744[label="vxw3000",fontsize=16,color="green",shape="box"];1745[label="vxw40000",fontsize=16,color="green",shape="box"];1746[label="vxw3000",fontsize=16,color="green",shape="box"];1747[label="vxw40001",fontsize=16,color="green",shape="box"];1748[label="vxw3001",fontsize=16,color="green",shape="box"];1749[label="vxw40001",fontsize=16,color="green",shape="box"];1750[label="vxw3001",fontsize=16,color="green",shape="box"];1751[label="vxw40000",fontsize=16,color="green",shape="box"];1752[label="vxw3000",fontsize=16,color="green",shape="box"];1753[label="vxw40000",fontsize=16,color="green",shape="box"];1754[label="vxw3000",fontsize=16,color="green",shape="box"];1755[label="primEqNat (Succ vxw30000) (Succ vxw400000)",fontsize=16,color="black",shape="box"];1755 -> 2041[label="",style="solid", color="black", weight=3]; 1756[label="primEqNat (Succ vxw30000) Zero",fontsize=16,color="black",shape="box"];1756 -> 2042[label="",style="solid", color="black", weight=3]; 1757[label="primEqNat Zero (Succ vxw400000)",fontsize=16,color="black",shape="box"];1757 -> 2043[label="",style="solid", color="black", weight=3]; 1758[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];1758 -> 2044[label="",style="solid", color="black", weight=3]; 1759 -> 414[label="",style="dashed", color="red", weight=0]; 1759[label="vxw3002 == vxw40002",fontsize=16,color="magenta"];1759 -> 2045[label="",style="dashed", color="magenta", weight=3]; 1759 -> 2046[label="",style="dashed", color="magenta", weight=3]; 1760 -> 415[label="",style="dashed", color="red", weight=0]; 1760[label="vxw3002 == vxw40002",fontsize=16,color="magenta"];1760 -> 2047[label="",style="dashed", color="magenta", weight=3]; 1760 -> 2048[label="",style="dashed", color="magenta", weight=3]; 1761 -> 416[label="",style="dashed", color="red", weight=0]; 1761[label="vxw3002 == vxw40002",fontsize=16,color="magenta"];1761 -> 2049[label="",style="dashed", color="magenta", weight=3]; 1761 -> 2050[label="",style="dashed", color="magenta", weight=3]; 1762 -> 417[label="",style="dashed", color="red", weight=0]; 1762[label="vxw3002 == vxw40002",fontsize=16,color="magenta"];1762 -> 2051[label="",style="dashed", color="magenta", weight=3]; 1762 -> 2052[label="",style="dashed", color="magenta", weight=3]; 1763 -> 418[label="",style="dashed", color="red", weight=0]; 1763[label="vxw3002 == vxw40002",fontsize=16,color="magenta"];1763 -> 2053[label="",style="dashed", color="magenta", weight=3]; 1763 -> 2054[label="",style="dashed", color="magenta", weight=3]; 1764 -> 419[label="",style="dashed", color="red", weight=0]; 1764[label="vxw3002 == vxw40002",fontsize=16,color="magenta"];1764 -> 2055[label="",style="dashed", color="magenta", weight=3]; 1764 -> 2056[label="",style="dashed", color="magenta", weight=3]; 1765 -> 420[label="",style="dashed", color="red", weight=0]; 1765[label="vxw3002 == vxw40002",fontsize=16,color="magenta"];1765 -> 2057[label="",style="dashed", color="magenta", weight=3]; 1765 -> 2058[label="",style="dashed", color="magenta", weight=3]; 1766 -> 421[label="",style="dashed", color="red", weight=0]; 1766[label="vxw3002 == vxw40002",fontsize=16,color="magenta"];1766 -> 2059[label="",style="dashed", color="magenta", weight=3]; 1766 -> 2060[label="",style="dashed", color="magenta", weight=3]; 1767 -> 422[label="",style="dashed", color="red", weight=0]; 1767[label="vxw3002 == vxw40002",fontsize=16,color="magenta"];1767 -> 2061[label="",style="dashed", color="magenta", weight=3]; 1767 -> 2062[label="",style="dashed", color="magenta", weight=3]; 1768 -> 423[label="",style="dashed", color="red", weight=0]; 1768[label="vxw3002 == vxw40002",fontsize=16,color="magenta"];1768 -> 2063[label="",style="dashed", color="magenta", weight=3]; 1768 -> 2064[label="",style="dashed", color="magenta", weight=3]; 1769 -> 424[label="",style="dashed", color="red", weight=0]; 1769[label="vxw3002 == vxw40002",fontsize=16,color="magenta"];1769 -> 2065[label="",style="dashed", color="magenta", weight=3]; 1769 -> 2066[label="",style="dashed", color="magenta", weight=3]; 1770 -> 425[label="",style="dashed", color="red", weight=0]; 1770[label="vxw3002 == vxw40002",fontsize=16,color="magenta"];1770 -> 2067[label="",style="dashed", color="magenta", weight=3]; 1770 -> 2068[label="",style="dashed", color="magenta", weight=3]; 1771 -> 426[label="",style="dashed", color="red", weight=0]; 1771[label="vxw3002 == vxw40002",fontsize=16,color="magenta"];1771 -> 2069[label="",style="dashed", color="magenta", weight=3]; 1771 -> 2070[label="",style="dashed", color="magenta", weight=3]; 1772 -> 427[label="",style="dashed", color="red", weight=0]; 1772[label="vxw3002 == vxw40002",fontsize=16,color="magenta"];1772 -> 2071[label="",style="dashed", color="magenta", weight=3]; 1772 -> 2072[label="",style="dashed", color="magenta", weight=3]; 1773 -> 414[label="",style="dashed", color="red", weight=0]; 1773[label="vxw3001 == vxw40001",fontsize=16,color="magenta"];1773 -> 2073[label="",style="dashed", color="magenta", weight=3]; 1773 -> 2074[label="",style="dashed", color="magenta", weight=3]; 1774 -> 415[label="",style="dashed", color="red", weight=0]; 1774[label="vxw3001 == vxw40001",fontsize=16,color="magenta"];1774 -> 2075[label="",style="dashed", color="magenta", weight=3]; 1774 -> 2076[label="",style="dashed", color="magenta", weight=3]; 1775 -> 416[label="",style="dashed", color="red", weight=0]; 1775[label="vxw3001 == vxw40001",fontsize=16,color="magenta"];1775 -> 2077[label="",style="dashed", color="magenta", weight=3]; 1775 -> 2078[label="",style="dashed", color="magenta", weight=3]; 1776 -> 417[label="",style="dashed", color="red", weight=0]; 1776[label="vxw3001 == vxw40001",fontsize=16,color="magenta"];1776 -> 2079[label="",style="dashed", color="magenta", weight=3]; 1776 -> 2080[label="",style="dashed", color="magenta", weight=3]; 1777 -> 418[label="",style="dashed", color="red", weight=0]; 1777[label="vxw3001 == vxw40001",fontsize=16,color="magenta"];1777 -> 2081[label="",style="dashed", color="magenta", weight=3]; 1777 -> 2082[label="",style="dashed", color="magenta", weight=3]; 1778 -> 419[label="",style="dashed", color="red", weight=0]; 1778[label="vxw3001 == vxw40001",fontsize=16,color="magenta"];1778 -> 2083[label="",style="dashed", color="magenta", weight=3]; 1778 -> 2084[label="",style="dashed", color="magenta", weight=3]; 1779 -> 420[label="",style="dashed", color="red", weight=0]; 1779[label="vxw3001 == vxw40001",fontsize=16,color="magenta"];1779 -> 2085[label="",style="dashed", color="magenta", weight=3]; 1779 -> 2086[label="",style="dashed", color="magenta", weight=3]; 1780 -> 421[label="",style="dashed", color="red", weight=0]; 1780[label="vxw3001 == vxw40001",fontsize=16,color="magenta"];1780 -> 2087[label="",style="dashed", color="magenta", weight=3]; 1780 -> 2088[label="",style="dashed", color="magenta", weight=3]; 1781 -> 422[label="",style="dashed", color="red", weight=0]; 1781[label="vxw3001 == vxw40001",fontsize=16,color="magenta"];1781 -> 2089[label="",style="dashed", color="magenta", weight=3]; 1781 -> 2090[label="",style="dashed", color="magenta", weight=3]; 1782 -> 423[label="",style="dashed", color="red", weight=0]; 1782[label="vxw3001 == vxw40001",fontsize=16,color="magenta"];1782 -> 2091[label="",style="dashed", color="magenta", weight=3]; 1782 -> 2092[label="",style="dashed", color="magenta", weight=3]; 1783 -> 424[label="",style="dashed", color="red", weight=0]; 1783[label="vxw3001 == vxw40001",fontsize=16,color="magenta"];1783 -> 2093[label="",style="dashed", color="magenta", weight=3]; 1783 -> 2094[label="",style="dashed", color="magenta", weight=3]; 1784 -> 425[label="",style="dashed", color="red", weight=0]; 1784[label="vxw3001 == vxw40001",fontsize=16,color="magenta"];1784 -> 2095[label="",style="dashed", color="magenta", weight=3]; 1784 -> 2096[label="",style="dashed", color="magenta", weight=3]; 1785 -> 426[label="",style="dashed", color="red", weight=0]; 1785[label="vxw3001 == vxw40001",fontsize=16,color="magenta"];1785 -> 2097[label="",style="dashed", color="magenta", weight=3]; 1785 -> 2098[label="",style="dashed", color="magenta", weight=3]; 1786 -> 427[label="",style="dashed", color="red", weight=0]; 1786[label="vxw3001 == vxw40001",fontsize=16,color="magenta"];1786 -> 2099[label="",style="dashed", color="magenta", weight=3]; 1786 -> 2100[label="",style="dashed", color="magenta", weight=3]; 1787[label="vxw40000",fontsize=16,color="green",shape="box"];1788[label="vxw3000",fontsize=16,color="green",shape="box"];1789[label="vxw40000",fontsize=16,color="green",shape="box"];1790[label="vxw3000",fontsize=16,color="green",shape="box"];1791[label="vxw40000",fontsize=16,color="green",shape="box"];1792[label="vxw3000",fontsize=16,color="green",shape="box"];1793[label="vxw40000",fontsize=16,color="green",shape="box"];1794[label="vxw3000",fontsize=16,color="green",shape="box"];1795[label="vxw40000",fontsize=16,color="green",shape="box"];1796[label="vxw3000",fontsize=16,color="green",shape="box"];1797[label="vxw40000",fontsize=16,color="green",shape="box"];1798[label="vxw3000",fontsize=16,color="green",shape="box"];1799[label="vxw40000",fontsize=16,color="green",shape="box"];1800[label="vxw3000",fontsize=16,color="green",shape="box"];1801[label="vxw40000",fontsize=16,color="green",shape="box"];1802[label="vxw3000",fontsize=16,color="green",shape="box"];1803[label="vxw40000",fontsize=16,color="green",shape="box"];1804[label="vxw3000",fontsize=16,color="green",shape="box"];1805[label="vxw40000",fontsize=16,color="green",shape="box"];1806[label="vxw3000",fontsize=16,color="green",shape="box"];1807[label="vxw40000",fontsize=16,color="green",shape="box"];1808[label="vxw3000",fontsize=16,color="green",shape="box"];1809[label="vxw40000",fontsize=16,color="green",shape="box"];1810[label="vxw3000",fontsize=16,color="green",shape="box"];1811[label="vxw40000",fontsize=16,color="green",shape="box"];1812[label="vxw3000",fontsize=16,color="green",shape="box"];1813[label="vxw40000",fontsize=16,color="green",shape="box"];1814[label="vxw3000",fontsize=16,color="green",shape="box"];1815 -> 1167[label="",style="dashed", color="red", weight=0]; 1815[label="primEqNat vxw30000 vxw400000",fontsize=16,color="magenta"];1815 -> 2101[label="",style="dashed", color="magenta", weight=3]; 1815 -> 2102[label="",style="dashed", color="magenta", weight=3]; 1816[label="False",fontsize=16,color="green",shape="box"];1817[label="False",fontsize=16,color="green",shape="box"];1818[label="True",fontsize=16,color="green",shape="box"];1819[label="False",fontsize=16,color="green",shape="box"];1820[label="True",fontsize=16,color="green",shape="box"];1821 -> 1167[label="",style="dashed", color="red", weight=0]; 1821[label="primEqNat vxw30000 vxw400000",fontsize=16,color="magenta"];1821 -> 2103[label="",style="dashed", color="magenta", weight=3]; 1821 -> 2104[label="",style="dashed", color="magenta", weight=3]; 1822[label="False",fontsize=16,color="green",shape="box"];1823[label="False",fontsize=16,color="green",shape="box"];1824[label="True",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="vxw40000",fontsize=16,color="green",shape="box"];1828[label="vxw3001",fontsize=16,color="green",shape="box"];1829[label="vxw40001",fontsize=16,color="green",shape="box"];1830[label="vxw3000",fontsize=16,color="green",shape="box"];1831[label="vxw40000",fontsize=16,color="green",shape="box"];1832[label="vxw3000",fontsize=16,color="green",shape="box"];1833[label="vxw40000",fontsize=16,color="green",shape="box"];1834[label="vxw3000",fontsize=16,color="green",shape="box"];1835[label="vxw40000",fontsize=16,color="green",shape="box"];1836[label="vxw3000",fontsize=16,color="green",shape="box"];1837[label="vxw40000",fontsize=16,color="green",shape="box"];1838[label="vxw3000",fontsize=16,color="green",shape="box"];1839[label="vxw40000",fontsize=16,color="green",shape="box"];1840[label="vxw3000",fontsize=16,color="green",shape="box"];1841[label="vxw40000",fontsize=16,color="green",shape="box"];1842[label="vxw3000",fontsize=16,color="green",shape="box"];1843[label="vxw40000",fontsize=16,color="green",shape="box"];1844[label="vxw3000",fontsize=16,color="green",shape="box"];1845[label="vxw40000",fontsize=16,color="green",shape="box"];1846[label="vxw3000",fontsize=16,color="green",shape="box"];1847[label="vxw40000",fontsize=16,color="green",shape="box"];1848[label="vxw3000",fontsize=16,color="green",shape="box"];1849[label="vxw40000",fontsize=16,color="green",shape="box"];1850[label="vxw3000",fontsize=16,color="green",shape="box"];1851[label="vxw40000",fontsize=16,color="green",shape="box"];1852[label="vxw3000",fontsize=16,color="green",shape="box"];1853[label="vxw40000",fontsize=16,color="green",shape="box"];1854[label="vxw3000",fontsize=16,color="green",shape="box"];1855[label="vxw40000",fontsize=16,color="green",shape="box"];1856[label="vxw3000",fontsize=16,color="green",shape="box"];1857[label="vxw40000",fontsize=16,color="green",shape="box"];1858[label="vxw3000",fontsize=16,color="green",shape="box"];1860 -> 116[label="",style="dashed", color="red", weight=0]; 1860[label="compare vxw30 vxw31",fontsize=16,color="magenta"];1860 -> 2105[label="",style="dashed", color="magenta", weight=3]; 1860 -> 2106[label="",style="dashed", color="magenta", weight=3]; 1859[label="vxw153 /= GT",fontsize=16,color="black",shape="triangle"];1859 -> 2107[label="",style="solid", color="black", weight=3]; 1861 -> 117[label="",style="dashed", color="red", weight=0]; 1861[label="compare vxw30 vxw31",fontsize=16,color="magenta"];1861 -> 2108[label="",style="dashed", color="magenta", weight=3]; 1861 -> 2109[label="",style="dashed", color="magenta", weight=3]; 1862 -> 118[label="",style="dashed", color="red", weight=0]; 1862[label="compare vxw30 vxw31",fontsize=16,color="magenta"];1862 -> 2110[label="",style="dashed", color="magenta", weight=3]; 1862 -> 2111[label="",style="dashed", color="magenta", weight=3]; 1868[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];1868 -> 2112[label="",style="solid", color="black", weight=3]; 1869[label="Nothing <= Just vxw310",fontsize=16,color="black",shape="box"];1869 -> 2113[label="",style="solid", color="black", weight=3]; 1870[label="Just vxw300 <= Nothing",fontsize=16,color="black",shape="box"];1870 -> 2114[label="",style="solid", color="black", weight=3]; 1871[label="Just vxw300 <= Just vxw310",fontsize=16,color="black",shape="box"];1871 -> 2115[label="",style="solid", color="black", weight=3]; 1872[label="(vxw300,vxw301) <= (vxw310,vxw311)",fontsize=16,color="black",shape="box"];1872 -> 2116[label="",style="solid", color="black", weight=3]; 1873[label="LT <= LT",fontsize=16,color="black",shape="box"];1873 -> 2117[label="",style="solid", color="black", weight=3]; 1874[label="LT <= EQ",fontsize=16,color="black",shape="box"];1874 -> 2118[label="",style="solid", color="black", weight=3]; 1875[label="LT <= GT",fontsize=16,color="black",shape="box"];1875 -> 2119[label="",style="solid", color="black", weight=3]; 1876[label="EQ <= LT",fontsize=16,color="black",shape="box"];1876 -> 2120[label="",style="solid", color="black", weight=3]; 1877[label="EQ <= EQ",fontsize=16,color="black",shape="box"];1877 -> 2121[label="",style="solid", color="black", weight=3]; 1878[label="EQ <= GT",fontsize=16,color="black",shape="box"];1878 -> 2122[label="",style="solid", color="black", weight=3]; 1879[label="GT <= LT",fontsize=16,color="black",shape="box"];1879 -> 2123[label="",style="solid", color="black", weight=3]; 1880[label="GT <= EQ",fontsize=16,color="black",shape="box"];1880 -> 2124[label="",style="solid", color="black", weight=3]; 1881[label="GT <= GT",fontsize=16,color="black",shape="box"];1881 -> 2125[label="",style="solid", color="black", weight=3]; 1882[label="(vxw300,vxw301,vxw302) <= (vxw310,vxw311,vxw312)",fontsize=16,color="black",shape="box"];1882 -> 2126[label="",style="solid", color="black", weight=3]; 1863 -> 123[label="",style="dashed", color="red", weight=0]; 1863[label="compare vxw30 vxw31",fontsize=16,color="magenta"];1863 -> 2127[label="",style="dashed", color="magenta", weight=3]; 1863 -> 2128[label="",style="dashed", color="magenta", weight=3]; 1864 -> 124[label="",style="dashed", color="red", weight=0]; 1864[label="compare vxw30 vxw31",fontsize=16,color="magenta"];1864 -> 2129[label="",style="dashed", color="magenta", weight=3]; 1864 -> 2130[label="",style="dashed", color="magenta", weight=3]; 1865 -> 125[label="",style="dashed", color="red", weight=0]; 1865[label="compare vxw30 vxw31",fontsize=16,color="magenta"];1865 -> 2131[label="",style="dashed", color="magenta", weight=3]; 1865 -> 2132[label="",style="dashed", color="magenta", weight=3]; 1866 -> 126[label="",style="dashed", color="red", weight=0]; 1866[label="compare vxw30 vxw31",fontsize=16,color="magenta"];1866 -> 2133[label="",style="dashed", color="magenta", weight=3]; 1866 -> 2134[label="",style="dashed", color="magenta", weight=3]; 1883[label="Left vxw300 <= Left vxw310",fontsize=16,color="black",shape="box"];1883 -> 2135[label="",style="solid", color="black", weight=3]; 1884[label="Left vxw300 <= Right vxw310",fontsize=16,color="black",shape="box"];1884 -> 2136[label="",style="solid", color="black", weight=3]; 1885[label="Right vxw300 <= Left vxw310",fontsize=16,color="black",shape="box"];1885 -> 2137[label="",style="solid", color="black", weight=3]; 1886[label="Right vxw300 <= Right vxw310",fontsize=16,color="black",shape="box"];1886 -> 2138[label="",style="solid", color="black", weight=3]; 1867 -> 128[label="",style="dashed", color="red", weight=0]; 1867[label="compare vxw30 vxw31",fontsize=16,color="magenta"];1867 -> 2139[label="",style="dashed", color="magenta", weight=3]; 1867 -> 2140[label="",style="dashed", color="magenta", weight=3]; 1887[label="False <= False",fontsize=16,color="black",shape="box"];1887 -> 2141[label="",style="solid", color="black", weight=3]; 1888[label="False <= True",fontsize=16,color="black",shape="box"];1888 -> 2142[label="",style="solid", color="black", weight=3]; 1889[label="True <= False",fontsize=16,color="black",shape="box"];1889 -> 2143[label="",style="solid", color="black", weight=3]; 1890[label="True <= True",fontsize=16,color="black",shape="box"];1890 -> 2144[label="",style="solid", color="black", weight=3]; 1891[label="GT",fontsize=16,color="green",shape="box"];1892[label="LT",fontsize=16,color="green",shape="box"];1893 -> 116[label="",style="dashed", color="red", weight=0]; 1893[label="compare vxw79 vxw81",fontsize=16,color="magenta"];1893 -> 2145[label="",style="dashed", color="magenta", weight=3]; 1893 -> 2146[label="",style="dashed", color="magenta", weight=3]; 1894[label="LT",fontsize=16,color="green",shape="box"];1895 -> 117[label="",style="dashed", color="red", weight=0]; 1895[label="compare vxw79 vxw81",fontsize=16,color="magenta"];1895 -> 2147[label="",style="dashed", color="magenta", weight=3]; 1895 -> 2148[label="",style="dashed", color="magenta", weight=3]; 1896[label="LT",fontsize=16,color="green",shape="box"];1897 -> 118[label="",style="dashed", color="red", weight=0]; 1897[label="compare vxw79 vxw81",fontsize=16,color="magenta"];1897 -> 2149[label="",style="dashed", color="magenta", weight=3]; 1897 -> 2150[label="",style="dashed", color="magenta", weight=3]; 1898[label="LT",fontsize=16,color="green",shape="box"];1899 -> 119[label="",style="dashed", color="red", weight=0]; 1899[label="compare vxw79 vxw81",fontsize=16,color="magenta"];1899 -> 2151[label="",style="dashed", color="magenta", weight=3]; 1899 -> 2152[label="",style="dashed", color="magenta", weight=3]; 1900[label="LT",fontsize=16,color="green",shape="box"];1901 -> 120[label="",style="dashed", color="red", weight=0]; 1901[label="compare vxw79 vxw81",fontsize=16,color="magenta"];1901 -> 2153[label="",style="dashed", color="magenta", weight=3]; 1901 -> 2154[label="",style="dashed", color="magenta", weight=3]; 1902[label="LT",fontsize=16,color="green",shape="box"];1903 -> 121[label="",style="dashed", color="red", weight=0]; 1903[label="compare vxw79 vxw81",fontsize=16,color="magenta"];1903 -> 2155[label="",style="dashed", color="magenta", weight=3]; 1903 -> 2156[label="",style="dashed", color="magenta", weight=3]; 1904[label="LT",fontsize=16,color="green",shape="box"];1905 -> 122[label="",style="dashed", color="red", weight=0]; 1905[label="compare vxw79 vxw81",fontsize=16,color="magenta"];1905 -> 2157[label="",style="dashed", color="magenta", weight=3]; 1905 -> 2158[label="",style="dashed", color="magenta", weight=3]; 1906[label="LT",fontsize=16,color="green",shape="box"];1907 -> 123[label="",style="dashed", color="red", weight=0]; 1907[label="compare vxw79 vxw81",fontsize=16,color="magenta"];1907 -> 2159[label="",style="dashed", color="magenta", weight=3]; 1907 -> 2160[label="",style="dashed", color="magenta", weight=3]; 1908[label="LT",fontsize=16,color="green",shape="box"];1909 -> 124[label="",style="dashed", color="red", weight=0]; 1909[label="compare vxw79 vxw81",fontsize=16,color="magenta"];1909 -> 2161[label="",style="dashed", color="magenta", weight=3]; 1909 -> 2162[label="",style="dashed", color="magenta", weight=3]; 1910[label="LT",fontsize=16,color="green",shape="box"];1911 -> 125[label="",style="dashed", color="red", weight=0]; 1911[label="compare vxw79 vxw81",fontsize=16,color="magenta"];1911 -> 2163[label="",style="dashed", color="magenta", weight=3]; 1911 -> 2164[label="",style="dashed", color="magenta", weight=3]; 1912[label="LT",fontsize=16,color="green",shape="box"];1913 -> 126[label="",style="dashed", color="red", weight=0]; 1913[label="compare vxw79 vxw81",fontsize=16,color="magenta"];1913 -> 2165[label="",style="dashed", color="magenta", weight=3]; 1913 -> 2166[label="",style="dashed", color="magenta", weight=3]; 1914[label="LT",fontsize=16,color="green",shape="box"];1915 -> 127[label="",style="dashed", color="red", weight=0]; 1915[label="compare vxw79 vxw81",fontsize=16,color="magenta"];1915 -> 2167[label="",style="dashed", color="magenta", weight=3]; 1915 -> 2168[label="",style="dashed", color="magenta", weight=3]; 1916[label="LT",fontsize=16,color="green",shape="box"];1917 -> 128[label="",style="dashed", color="red", weight=0]; 1917[label="compare vxw79 vxw81",fontsize=16,color="magenta"];1917 -> 2169[label="",style="dashed", color="magenta", weight=3]; 1917 -> 2170[label="",style="dashed", color="magenta", weight=3]; 1918[label="LT",fontsize=16,color="green",shape="box"];1919 -> 129[label="",style="dashed", color="red", weight=0]; 1919[label="compare vxw79 vxw81",fontsize=16,color="magenta"];1919 -> 2171[label="",style="dashed", color="magenta", weight=3]; 1919 -> 2172[label="",style="dashed", color="magenta", weight=3]; 1920[label="vxw82",fontsize=16,color="green",shape="box"];1921[label="vxw80",fontsize=16,color="green",shape="box"];1922[label="vxw82",fontsize=16,color="green",shape="box"];1923[label="vxw80",fontsize=16,color="green",shape="box"];1924[label="vxw82",fontsize=16,color="green",shape="box"];1925[label="vxw80",fontsize=16,color="green",shape="box"];1926[label="vxw82",fontsize=16,color="green",shape="box"];1927[label="vxw80",fontsize=16,color="green",shape="box"];1928[label="vxw82",fontsize=16,color="green",shape="box"];1929[label="vxw80",fontsize=16,color="green",shape="box"];1930[label="vxw82",fontsize=16,color="green",shape="box"];1931[label="vxw80",fontsize=16,color="green",shape="box"];1932[label="vxw82",fontsize=16,color="green",shape="box"];1933[label="vxw80",fontsize=16,color="green",shape="box"];1934[label="vxw82",fontsize=16,color="green",shape="box"];1935[label="vxw80",fontsize=16,color="green",shape="box"];1936[label="vxw82",fontsize=16,color="green",shape="box"];1937[label="vxw80",fontsize=16,color="green",shape="box"];1938[label="vxw82",fontsize=16,color="green",shape="box"];1939[label="vxw80",fontsize=16,color="green",shape="box"];1940[label="vxw82",fontsize=16,color="green",shape="box"];1941[label="vxw80",fontsize=16,color="green",shape="box"];1942[label="vxw82",fontsize=16,color="green",shape="box"];1943[label="vxw80",fontsize=16,color="green",shape="box"];1944[label="vxw82",fontsize=16,color="green",shape="box"];1945[label="vxw80",fontsize=16,color="green",shape="box"];1946[label="vxw82",fontsize=16,color="green",shape="box"];1947[label="vxw80",fontsize=16,color="green",shape="box"];1948[label="vxw81",fontsize=16,color="green",shape="box"];1949[label="vxw79",fontsize=16,color="green",shape="box"];1950[label="vxw81",fontsize=16,color="green",shape="box"];1951[label="vxw79",fontsize=16,color="green",shape="box"];1952[label="vxw81",fontsize=16,color="green",shape="box"];1953[label="vxw79",fontsize=16,color="green",shape="box"];1954[label="vxw81",fontsize=16,color="green",shape="box"];1955[label="vxw79",fontsize=16,color="green",shape="box"];1956[label="vxw81",fontsize=16,color="green",shape="box"];1957[label="vxw79",fontsize=16,color="green",shape="box"];1958[label="vxw81",fontsize=16,color="green",shape="box"];1959[label="vxw79",fontsize=16,color="green",shape="box"];1960[label="vxw81",fontsize=16,color="green",shape="box"];1961[label="vxw79",fontsize=16,color="green",shape="box"];1962[label="vxw81",fontsize=16,color="green",shape="box"];1963[label="vxw79",fontsize=16,color="green",shape="box"];1964[label="vxw81",fontsize=16,color="green",shape="box"];1965[label="vxw79",fontsize=16,color="green",shape="box"];1966[label="vxw81",fontsize=16,color="green",shape="box"];1967[label="vxw79",fontsize=16,color="green",shape="box"];1968[label="vxw81",fontsize=16,color="green",shape="box"];1969[label="vxw79",fontsize=16,color="green",shape="box"];1970[label="vxw81",fontsize=16,color="green",shape="box"];1971[label="vxw79",fontsize=16,color="green",shape="box"];1972[label="vxw81",fontsize=16,color="green",shape="box"];1973[label="vxw79",fontsize=16,color="green",shape="box"];1974[label="vxw81",fontsize=16,color="green",shape="box"];1975[label="vxw79",fontsize=16,color="green",shape="box"];1976[label="compare1 (vxw129,vxw130) (vxw131,vxw132) False",fontsize=16,color="black",shape="box"];1976 -> 2173[label="",style="solid", color="black", weight=3]; 1977[label="compare1 (vxw129,vxw130) (vxw131,vxw132) True",fontsize=16,color="black",shape="box"];1977 -> 2174[label="",style="solid", color="black", weight=3]; 1978[label="True",fontsize=16,color="green",shape="box"];1986[label="vxw54 <= vxw57",fontsize=16,color="blue",shape="box"];3467[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1986 -> 3467[label="",style="solid", color="blue", weight=9]; 3467 -> 2175[label="",style="solid", color="blue", weight=3]; 3468[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1986 -> 3468[label="",style="solid", color="blue", weight=9]; 3468 -> 2176[label="",style="solid", color="blue", weight=3]; 3469[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1986 -> 3469[label="",style="solid", color="blue", weight=9]; 3469 -> 2177[label="",style="solid", color="blue", weight=3]; 3470[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1986 -> 3470[label="",style="solid", color="blue", weight=9]; 3470 -> 2178[label="",style="solid", color="blue", weight=3]; 3471[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1986 -> 3471[label="",style="solid", color="blue", weight=9]; 3471 -> 2179[label="",style="solid", color="blue", weight=3]; 3472[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1986 -> 3472[label="",style="solid", color="blue", weight=9]; 3472 -> 2180[label="",style="solid", color="blue", weight=3]; 3473[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1986 -> 3473[label="",style="solid", color="blue", weight=9]; 3473 -> 2181[label="",style="solid", color="blue", weight=3]; 3474[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1986 -> 3474[label="",style="solid", color="blue", weight=9]; 3474 -> 2182[label="",style="solid", color="blue", weight=3]; 3475[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1986 -> 3475[label="",style="solid", color="blue", weight=9]; 3475 -> 2183[label="",style="solid", color="blue", weight=3]; 3476[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1986 -> 3476[label="",style="solid", color="blue", weight=9]; 3476 -> 2184[label="",style="solid", color="blue", weight=3]; 3477[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1986 -> 3477[label="",style="solid", color="blue", weight=9]; 3477 -> 2185[label="",style="solid", color="blue", weight=3]; 3478[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1986 -> 3478[label="",style="solid", color="blue", weight=9]; 3478 -> 2186[label="",style="solid", color="blue", weight=3]; 3479[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1986 -> 3479[label="",style="solid", color="blue", weight=9]; 3479 -> 2187[label="",style="solid", color="blue", weight=3]; 3480[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1986 -> 3480[label="",style="solid", color="blue", weight=9]; 3480 -> 2188[label="",style="solid", color="blue", weight=3]; 1987[label="vxw53 == vxw56",fontsize=16,color="blue",shape="box"];3481[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1987 -> 3481[label="",style="solid", color="blue", weight=9]; 3481 -> 2189[label="",style="solid", color="blue", weight=3]; 3482[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1987 -> 3482[label="",style="solid", color="blue", weight=9]; 3482 -> 2190[label="",style="solid", color="blue", weight=3]; 3483[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1987 -> 3483[label="",style="solid", color="blue", weight=9]; 3483 -> 2191[label="",style="solid", color="blue", weight=3]; 3484[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1987 -> 3484[label="",style="solid", color="blue", weight=9]; 3484 -> 2192[label="",style="solid", color="blue", weight=3]; 3485[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1987 -> 3485[label="",style="solid", color="blue", weight=9]; 3485 -> 2193[label="",style="solid", color="blue", weight=3]; 3486[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1987 -> 3486[label="",style="solid", color="blue", weight=9]; 3486 -> 2194[label="",style="solid", color="blue", weight=3]; 3487[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1987 -> 3487[label="",style="solid", color="blue", weight=9]; 3487 -> 2195[label="",style="solid", color="blue", weight=3]; 3488[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1987 -> 3488[label="",style="solid", color="blue", weight=9]; 3488 -> 2196[label="",style="solid", color="blue", weight=3]; 3489[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1987 -> 3489[label="",style="solid", color="blue", weight=9]; 3489 -> 2197[label="",style="solid", color="blue", weight=3]; 3490[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1987 -> 3490[label="",style="solid", color="blue", weight=9]; 3490 -> 2198[label="",style="solid", color="blue", weight=3]; 3491[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1987 -> 3491[label="",style="solid", color="blue", weight=9]; 3491 -> 2199[label="",style="solid", color="blue", weight=3]; 3492[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1987 -> 3492[label="",style="solid", color="blue", weight=9]; 3492 -> 2200[label="",style="solid", color="blue", weight=3]; 3493[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1987 -> 3493[label="",style="solid", color="blue", weight=9]; 3493 -> 2201[label="",style="solid", color="blue", weight=3]; 3494[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1987 -> 3494[label="",style="solid", color="blue", weight=9]; 3494 -> 2202[label="",style="solid", color="blue", weight=3]; 1988 -> 1254[label="",style="dashed", color="red", weight=0]; 1988[label="vxw53 < vxw56",fontsize=16,color="magenta"];1988 -> 2203[label="",style="dashed", color="magenta", weight=3]; 1988 -> 2204[label="",style="dashed", color="magenta", weight=3]; 1989 -> 1255[label="",style="dashed", color="red", weight=0]; 1989[label="vxw53 < vxw56",fontsize=16,color="magenta"];1989 -> 2205[label="",style="dashed", color="magenta", weight=3]; 1989 -> 2206[label="",style="dashed", color="magenta", weight=3]; 1990 -> 1256[label="",style="dashed", color="red", weight=0]; 1990[label="vxw53 < vxw56",fontsize=16,color="magenta"];1990 -> 2207[label="",style="dashed", color="magenta", weight=3]; 1990 -> 2208[label="",style="dashed", color="magenta", weight=3]; 1991 -> 1257[label="",style="dashed", color="red", weight=0]; 1991[label="vxw53 < vxw56",fontsize=16,color="magenta"];1991 -> 2209[label="",style="dashed", color="magenta", weight=3]; 1991 -> 2210[label="",style="dashed", color="magenta", weight=3]; 1992 -> 1258[label="",style="dashed", color="red", weight=0]; 1992[label="vxw53 < vxw56",fontsize=16,color="magenta"];1992 -> 2211[label="",style="dashed", color="magenta", weight=3]; 1992 -> 2212[label="",style="dashed", color="magenta", weight=3]; 1993 -> 1259[label="",style="dashed", color="red", weight=0]; 1993[label="vxw53 < vxw56",fontsize=16,color="magenta"];1993 -> 2213[label="",style="dashed", color="magenta", weight=3]; 1993 -> 2214[label="",style="dashed", color="magenta", weight=3]; 1994 -> 1260[label="",style="dashed", color="red", weight=0]; 1994[label="vxw53 < vxw56",fontsize=16,color="magenta"];1994 -> 2215[label="",style="dashed", color="magenta", weight=3]; 1994 -> 2216[label="",style="dashed", color="magenta", weight=3]; 1995 -> 1261[label="",style="dashed", color="red", weight=0]; 1995[label="vxw53 < vxw56",fontsize=16,color="magenta"];1995 -> 2217[label="",style="dashed", color="magenta", weight=3]; 1995 -> 2218[label="",style="dashed", color="magenta", weight=3]; 1996 -> 1262[label="",style="dashed", color="red", weight=0]; 1996[label="vxw53 < vxw56",fontsize=16,color="magenta"];1996 -> 2219[label="",style="dashed", color="magenta", weight=3]; 1996 -> 2220[label="",style="dashed", color="magenta", weight=3]; 1997 -> 1263[label="",style="dashed", color="red", weight=0]; 1997[label="vxw53 < vxw56",fontsize=16,color="magenta"];1997 -> 2221[label="",style="dashed", color="magenta", weight=3]; 1997 -> 2222[label="",style="dashed", color="magenta", weight=3]; 1998 -> 1264[label="",style="dashed", color="red", weight=0]; 1998[label="vxw53 < vxw56",fontsize=16,color="magenta"];1998 -> 2223[label="",style="dashed", color="magenta", weight=3]; 1998 -> 2224[label="",style="dashed", color="magenta", weight=3]; 1999 -> 1265[label="",style="dashed", color="red", weight=0]; 1999[label="vxw53 < vxw56",fontsize=16,color="magenta"];1999 -> 2225[label="",style="dashed", color="magenta", weight=3]; 1999 -> 2226[label="",style="dashed", color="magenta", weight=3]; 2000 -> 1266[label="",style="dashed", color="red", weight=0]; 2000[label="vxw53 < vxw56",fontsize=16,color="magenta"];2000 -> 2227[label="",style="dashed", color="magenta", weight=3]; 2000 -> 2228[label="",style="dashed", color="magenta", weight=3]; 2001 -> 1267[label="",style="dashed", color="red", weight=0]; 2001[label="vxw53 < vxw56",fontsize=16,color="magenta"];2001 -> 2229[label="",style="dashed", color="magenta", weight=3]; 2001 -> 2230[label="",style="dashed", color="magenta", weight=3]; 2002[label="False || vxw158",fontsize=16,color="black",shape="box"];2002 -> 2231[label="",style="solid", color="black", weight=3]; 2003[label="True || vxw158",fontsize=16,color="black",shape="box"];2003 -> 2232[label="",style="solid", color="black", weight=3]; 2004[label="vxw55",fontsize=16,color="green",shape="box"];2005[label="vxw52",fontsize=16,color="green",shape="box"];2006[label="vxw55",fontsize=16,color="green",shape="box"];2007[label="vxw52",fontsize=16,color="green",shape="box"];2008[label="vxw55",fontsize=16,color="green",shape="box"];2009[label="vxw52",fontsize=16,color="green",shape="box"];2010[label="vxw55",fontsize=16,color="green",shape="box"];2011[label="vxw52",fontsize=16,color="green",shape="box"];2012[label="vxw55",fontsize=16,color="green",shape="box"];2013[label="vxw52",fontsize=16,color="green",shape="box"];2014[label="vxw55",fontsize=16,color="green",shape="box"];2015[label="vxw52",fontsize=16,color="green",shape="box"];2016[label="vxw55",fontsize=16,color="green",shape="box"];2017[label="vxw52",fontsize=16,color="green",shape="box"];2018[label="vxw55",fontsize=16,color="green",shape="box"];2019[label="vxw52",fontsize=16,color="green",shape="box"];2020[label="vxw55",fontsize=16,color="green",shape="box"];2021[label="vxw52",fontsize=16,color="green",shape="box"];2022[label="vxw55",fontsize=16,color="green",shape="box"];2023[label="vxw52",fontsize=16,color="green",shape="box"];2024[label="vxw55",fontsize=16,color="green",shape="box"];2025[label="vxw52",fontsize=16,color="green",shape="box"];2026[label="vxw55",fontsize=16,color="green",shape="box"];2027[label="vxw52",fontsize=16,color="green",shape="box"];2028[label="vxw55",fontsize=16,color="green",shape="box"];2029[label="vxw52",fontsize=16,color="green",shape="box"];2030[label="vxw55",fontsize=16,color="green",shape="box"];2031[label="vxw52",fontsize=16,color="green",shape="box"];2032[label="compare1 (vxw144,vxw145,vxw146) (vxw147,vxw148,vxw149) False",fontsize=16,color="black",shape="box"];2032 -> 2233[label="",style="solid", color="black", weight=3]; 2033[label="compare1 (vxw144,vxw145,vxw146) (vxw147,vxw148,vxw149) True",fontsize=16,color="black",shape="box"];2033 -> 2234[label="",style="solid", color="black", weight=3]; 2034[label="True",fontsize=16,color="green",shape="box"];2035 -> 2235[label="",style="dashed", color="red", weight=0]; 2035[label="primPlusNat (primMulNat vxw400000 (Succ vxw30100)) (Succ vxw30100)",fontsize=16,color="magenta"];2035 -> 2236[label="",style="dashed", color="magenta", weight=3]; 2036[label="Zero",fontsize=16,color="green",shape="box"];2037[label="Zero",fontsize=16,color="green",shape="box"];2038[label="Zero",fontsize=16,color="green",shape="box"];2039[label="GT",fontsize=16,color="green",shape="box"];2040[label="GT",fontsize=16,color="green",shape="box"];2041 -> 1167[label="",style="dashed", color="red", weight=0]; 2041[label="primEqNat vxw30000 vxw400000",fontsize=16,color="magenta"];2041 -> 2237[label="",style="dashed", color="magenta", weight=3]; 2041 -> 2238[label="",style="dashed", color="magenta", weight=3]; 2042[label="False",fontsize=16,color="green",shape="box"];2043[label="False",fontsize=16,color="green",shape="box"];2044[label="True",fontsize=16,color="green",shape="box"];2045[label="vxw40002",fontsize=16,color="green",shape="box"];2046[label="vxw3002",fontsize=16,color="green",shape="box"];2047[label="vxw40002",fontsize=16,color="green",shape="box"];2048[label="vxw3002",fontsize=16,color="green",shape="box"];2049[label="vxw40002",fontsize=16,color="green",shape="box"];2050[label="vxw3002",fontsize=16,color="green",shape="box"];2051[label="vxw40002",fontsize=16,color="green",shape="box"];2052[label="vxw3002",fontsize=16,color="green",shape="box"];2053[label="vxw40002",fontsize=16,color="green",shape="box"];2054[label="vxw3002",fontsize=16,color="green",shape="box"];2055[label="vxw40002",fontsize=16,color="green",shape="box"];2056[label="vxw3002",fontsize=16,color="green",shape="box"];2057[label="vxw40002",fontsize=16,color="green",shape="box"];2058[label="vxw3002",fontsize=16,color="green",shape="box"];2059[label="vxw40002",fontsize=16,color="green",shape="box"];2060[label="vxw3002",fontsize=16,color="green",shape="box"];2061[label="vxw40002",fontsize=16,color="green",shape="box"];2062[label="vxw3002",fontsize=16,color="green",shape="box"];2063[label="vxw40002",fontsize=16,color="green",shape="box"];2064[label="vxw3002",fontsize=16,color="green",shape="box"];2065[label="vxw40002",fontsize=16,color="green",shape="box"];2066[label="vxw3002",fontsize=16,color="green",shape="box"];2067[label="vxw40002",fontsize=16,color="green",shape="box"];2068[label="vxw3002",fontsize=16,color="green",shape="box"];2069[label="vxw40002",fontsize=16,color="green",shape="box"];2070[label="vxw3002",fontsize=16,color="green",shape="box"];2071[label="vxw40002",fontsize=16,color="green",shape="box"];2072[label="vxw3002",fontsize=16,color="green",shape="box"];2073[label="vxw40001",fontsize=16,color="green",shape="box"];2074[label="vxw3001",fontsize=16,color="green",shape="box"];2075[label="vxw40001",fontsize=16,color="green",shape="box"];2076[label="vxw3001",fontsize=16,color="green",shape="box"];2077[label="vxw40001",fontsize=16,color="green",shape="box"];2078[label="vxw3001",fontsize=16,color="green",shape="box"];2079[label="vxw40001",fontsize=16,color="green",shape="box"];2080[label="vxw3001",fontsize=16,color="green",shape="box"];2081[label="vxw40001",fontsize=16,color="green",shape="box"];2082[label="vxw3001",fontsize=16,color="green",shape="box"];2083[label="vxw40001",fontsize=16,color="green",shape="box"];2084[label="vxw3001",fontsize=16,color="green",shape="box"];2085[label="vxw40001",fontsize=16,color="green",shape="box"];2086[label="vxw3001",fontsize=16,color="green",shape="box"];2087[label="vxw40001",fontsize=16,color="green",shape="box"];2088[label="vxw3001",fontsize=16,color="green",shape="box"];2089[label="vxw40001",fontsize=16,color="green",shape="box"];2090[label="vxw3001",fontsize=16,color="green",shape="box"];2091[label="vxw40001",fontsize=16,color="green",shape="box"];2092[label="vxw3001",fontsize=16,color="green",shape="box"];2093[label="vxw40001",fontsize=16,color="green",shape="box"];2094[label="vxw3001",fontsize=16,color="green",shape="box"];2095[label="vxw40001",fontsize=16,color="green",shape="box"];2096[label="vxw3001",fontsize=16,color="green",shape="box"];2097[label="vxw40001",fontsize=16,color="green",shape="box"];2098[label="vxw3001",fontsize=16,color="green",shape="box"];2099[label="vxw40001",fontsize=16,color="green",shape="box"];2100[label="vxw3001",fontsize=16,color="green",shape="box"];2101[label="vxw30000",fontsize=16,color="green",shape="box"];2102[label="vxw400000",fontsize=16,color="green",shape="box"];2103[label="vxw30000",fontsize=16,color="green",shape="box"];2104[label="vxw400000",fontsize=16,color="green",shape="box"];2105[label="vxw31",fontsize=16,color="green",shape="box"];2106[label="vxw30",fontsize=16,color="green",shape="box"];2107 -> 2239[label="",style="dashed", color="red", weight=0]; 2107[label="not (vxw153 == GT)",fontsize=16,color="magenta"];2107 -> 2240[label="",style="dashed", color="magenta", weight=3]; 2108[label="vxw31",fontsize=16,color="green",shape="box"];2109[label="vxw30",fontsize=16,color="green",shape="box"];2110[label="vxw31",fontsize=16,color="green",shape="box"];2111[label="vxw30",fontsize=16,color="green",shape="box"];2112[label="True",fontsize=16,color="green",shape="box"];2113[label="True",fontsize=16,color="green",shape="box"];2114[label="False",fontsize=16,color="green",shape="box"];2115[label="vxw300 <= vxw310",fontsize=16,color="blue",shape="box"];3495[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2115 -> 3495[label="",style="solid", color="blue", weight=9]; 3495 -> 2241[label="",style="solid", color="blue", weight=3]; 3496[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2115 -> 3496[label="",style="solid", color="blue", weight=9]; 3496 -> 2242[label="",style="solid", color="blue", weight=3]; 3497[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2115 -> 3497[label="",style="solid", color="blue", weight=9]; 3497 -> 2243[label="",style="solid", color="blue", weight=3]; 3498[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2115 -> 3498[label="",style="solid", color="blue", weight=9]; 3498 -> 2244[label="",style="solid", color="blue", weight=3]; 3499[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2115 -> 3499[label="",style="solid", color="blue", weight=9]; 3499 -> 2245[label="",style="solid", color="blue", weight=3]; 3500[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2115 -> 3500[label="",style="solid", color="blue", weight=9]; 3500 -> 2246[label="",style="solid", color="blue", weight=3]; 3501[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2115 -> 3501[label="",style="solid", color="blue", weight=9]; 3501 -> 2247[label="",style="solid", color="blue", weight=3]; 3502[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2115 -> 3502[label="",style="solid", color="blue", weight=9]; 3502 -> 2248[label="",style="solid", color="blue", weight=3]; 3503[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2115 -> 3503[label="",style="solid", color="blue", weight=9]; 3503 -> 2249[label="",style="solid", color="blue", weight=3]; 3504[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2115 -> 3504[label="",style="solid", color="blue", weight=9]; 3504 -> 2250[label="",style="solid", color="blue", weight=3]; 3505[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2115 -> 3505[label="",style="solid", color="blue", weight=9]; 3505 -> 2251[label="",style="solid", color="blue", weight=3]; 3506[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2115 -> 3506[label="",style="solid", color="blue", weight=9]; 3506 -> 2252[label="",style="solid", color="blue", weight=3]; 3507[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2115 -> 3507[label="",style="solid", color="blue", weight=9]; 3507 -> 2253[label="",style="solid", color="blue", weight=3]; 3508[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2115 -> 3508[label="",style="solid", color="blue", weight=9]; 3508 -> 2254[label="",style="solid", color="blue", weight=3]; 2116 -> 1981[label="",style="dashed", color="red", weight=0]; 2116[label="vxw300 < vxw310 || vxw300 == vxw310 && vxw301 <= vxw311",fontsize=16,color="magenta"];2116 -> 2255[label="",style="dashed", color="magenta", weight=3]; 2116 -> 2256[label="",style="dashed", color="magenta", weight=3]; 2117[label="True",fontsize=16,color="green",shape="box"];2118[label="True",fontsize=16,color="green",shape="box"];2119[label="True",fontsize=16,color="green",shape="box"];2120[label="False",fontsize=16,color="green",shape="box"];2121[label="True",fontsize=16,color="green",shape="box"];2122[label="True",fontsize=16,color="green",shape="box"];2123[label="False",fontsize=16,color="green",shape="box"];2124[label="False",fontsize=16,color="green",shape="box"];2125[label="True",fontsize=16,color="green",shape="box"];2126 -> 1981[label="",style="dashed", color="red", weight=0]; 2126[label="vxw300 < vxw310 || vxw300 == vxw310 && (vxw301 < vxw311 || vxw301 == vxw311 && vxw302 <= vxw312)",fontsize=16,color="magenta"];2126 -> 2257[label="",style="dashed", color="magenta", weight=3]; 2126 -> 2258[label="",style="dashed", color="magenta", weight=3]; 2127[label="vxw31",fontsize=16,color="green",shape="box"];2128[label="vxw30",fontsize=16,color="green",shape="box"];2129[label="vxw31",fontsize=16,color="green",shape="box"];2130[label="vxw30",fontsize=16,color="green",shape="box"];2131[label="vxw31",fontsize=16,color="green",shape="box"];2132[label="vxw30",fontsize=16,color="green",shape="box"];2133[label="vxw31",fontsize=16,color="green",shape="box"];2134[label="vxw30",fontsize=16,color="green",shape="box"];2135[label="vxw300 <= vxw310",fontsize=16,color="blue",shape="box"];3509[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2135 -> 3509[label="",style="solid", color="blue", weight=9]; 3509 -> 2259[label="",style="solid", color="blue", weight=3]; 3510[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2135 -> 3510[label="",style="solid", color="blue", weight=9]; 3510 -> 2260[label="",style="solid", color="blue", weight=3]; 3511[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2135 -> 3511[label="",style="solid", color="blue", weight=9]; 3511 -> 2261[label="",style="solid", color="blue", weight=3]; 3512[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2135 -> 3512[label="",style="solid", color="blue", weight=9]; 3512 -> 2262[label="",style="solid", color="blue", weight=3]; 3513[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2135 -> 3513[label="",style="solid", color="blue", weight=9]; 3513 -> 2263[label="",style="solid", color="blue", weight=3]; 3514[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2135 -> 3514[label="",style="solid", color="blue", weight=9]; 3514 -> 2264[label="",style="solid", color="blue", weight=3]; 3515[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2135 -> 3515[label="",style="solid", color="blue", weight=9]; 3515 -> 2265[label="",style="solid", color="blue", weight=3]; 3516[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2135 -> 3516[label="",style="solid", color="blue", weight=9]; 3516 -> 2266[label="",style="solid", color="blue", weight=3]; 3517[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2135 -> 3517[label="",style="solid", color="blue", weight=9]; 3517 -> 2267[label="",style="solid", color="blue", weight=3]; 3518[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2135 -> 3518[label="",style="solid", color="blue", weight=9]; 3518 -> 2268[label="",style="solid", color="blue", weight=3]; 3519[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2135 -> 3519[label="",style="solid", color="blue", weight=9]; 3519 -> 2269[label="",style="solid", color="blue", weight=3]; 3520[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2135 -> 3520[label="",style="solid", color="blue", weight=9]; 3520 -> 2270[label="",style="solid", color="blue", weight=3]; 3521[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2135 -> 3521[label="",style="solid", color="blue", weight=9]; 3521 -> 2271[label="",style="solid", color="blue", weight=3]; 3522[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2135 -> 3522[label="",style="solid", color="blue", weight=9]; 3522 -> 2272[label="",style="solid", color="blue", weight=3]; 2136[label="True",fontsize=16,color="green",shape="box"];2137[label="False",fontsize=16,color="green",shape="box"];2138[label="vxw300 <= vxw310",fontsize=16,color="blue",shape="box"];3523[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2138 -> 3523[label="",style="solid", color="blue", weight=9]; 3523 -> 2273[label="",style="solid", color="blue", weight=3]; 3524[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2138 -> 3524[label="",style="solid", color="blue", weight=9]; 3524 -> 2274[label="",style="solid", color="blue", weight=3]; 3525[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2138 -> 3525[label="",style="solid", color="blue", weight=9]; 3525 -> 2275[label="",style="solid", color="blue", weight=3]; 3526[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2138 -> 3526[label="",style="solid", color="blue", weight=9]; 3526 -> 2276[label="",style="solid", color="blue", weight=3]; 3527[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2138 -> 3527[label="",style="solid", color="blue", weight=9]; 3527 -> 2277[label="",style="solid", color="blue", weight=3]; 3528[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2138 -> 3528[label="",style="solid", color="blue", weight=9]; 3528 -> 2278[label="",style="solid", color="blue", weight=3]; 3529[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2138 -> 3529[label="",style="solid", color="blue", weight=9]; 3529 -> 2279[label="",style="solid", color="blue", weight=3]; 3530[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2138 -> 3530[label="",style="solid", color="blue", weight=9]; 3530 -> 2280[label="",style="solid", color="blue", weight=3]; 3531[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2138 -> 3531[label="",style="solid", color="blue", weight=9]; 3531 -> 2281[label="",style="solid", color="blue", weight=3]; 3532[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2138 -> 3532[label="",style="solid", color="blue", weight=9]; 3532 -> 2282[label="",style="solid", color="blue", weight=3]; 3533[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2138 -> 3533[label="",style="solid", color="blue", weight=9]; 3533 -> 2283[label="",style="solid", color="blue", weight=3]; 3534[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2138 -> 3534[label="",style="solid", color="blue", weight=9]; 3534 -> 2284[label="",style="solid", color="blue", weight=3]; 3535[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2138 -> 3535[label="",style="solid", color="blue", weight=9]; 3535 -> 2285[label="",style="solid", color="blue", weight=3]; 3536[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2138 -> 3536[label="",style="solid", color="blue", weight=9]; 3536 -> 2286[label="",style="solid", color="blue", weight=3]; 2139[label="vxw31",fontsize=16,color="green",shape="box"];2140[label="vxw30",fontsize=16,color="green",shape="box"];2141[label="True",fontsize=16,color="green",shape="box"];2142[label="True",fontsize=16,color="green",shape="box"];2143[label="False",fontsize=16,color="green",shape="box"];2144[label="True",fontsize=16,color="green",shape="box"];2145[label="vxw81",fontsize=16,color="green",shape="box"];2146[label="vxw79",fontsize=16,color="green",shape="box"];2147[label="vxw81",fontsize=16,color="green",shape="box"];2148[label="vxw79",fontsize=16,color="green",shape="box"];2149[label="vxw81",fontsize=16,color="green",shape="box"];2150[label="vxw79",fontsize=16,color="green",shape="box"];2151[label="vxw81",fontsize=16,color="green",shape="box"];2152[label="vxw79",fontsize=16,color="green",shape="box"];2153[label="vxw81",fontsize=16,color="green",shape="box"];2154[label="vxw79",fontsize=16,color="green",shape="box"];2155[label="vxw81",fontsize=16,color="green",shape="box"];2156[label="vxw79",fontsize=16,color="green",shape="box"];2157[label="vxw81",fontsize=16,color="green",shape="box"];2158[label="vxw79",fontsize=16,color="green",shape="box"];2159[label="vxw81",fontsize=16,color="green",shape="box"];2160[label="vxw79",fontsize=16,color="green",shape="box"];2161[label="vxw81",fontsize=16,color="green",shape="box"];2162[label="vxw79",fontsize=16,color="green",shape="box"];2163[label="vxw81",fontsize=16,color="green",shape="box"];2164[label="vxw79",fontsize=16,color="green",shape="box"];2165[label="vxw81",fontsize=16,color="green",shape="box"];2166[label="vxw79",fontsize=16,color="green",shape="box"];2167[label="vxw81",fontsize=16,color="green",shape="box"];2168[label="vxw79",fontsize=16,color="green",shape="box"];2169[label="vxw81",fontsize=16,color="green",shape="box"];2170[label="vxw79",fontsize=16,color="green",shape="box"];2171[label="vxw81",fontsize=16,color="green",shape="box"];2172[label="vxw79",fontsize=16,color="green",shape="box"];2173[label="compare0 (vxw129,vxw130) (vxw131,vxw132) otherwise",fontsize=16,color="black",shape="box"];2173 -> 2287[label="",style="solid", color="black", weight=3]; 2174[label="LT",fontsize=16,color="green",shape="box"];2175 -> 1223[label="",style="dashed", color="red", weight=0]; 2175[label="vxw54 <= vxw57",fontsize=16,color="magenta"];2175 -> 2288[label="",style="dashed", color="magenta", weight=3]; 2175 -> 2289[label="",style="dashed", color="magenta", weight=3]; 2176 -> 1224[label="",style="dashed", color="red", weight=0]; 2176[label="vxw54 <= vxw57",fontsize=16,color="magenta"];2176 -> 2290[label="",style="dashed", color="magenta", weight=3]; 2176 -> 2291[label="",style="dashed", color="magenta", weight=3]; 2177 -> 1225[label="",style="dashed", color="red", weight=0]; 2177[label="vxw54 <= vxw57",fontsize=16,color="magenta"];2177 -> 2292[label="",style="dashed", color="magenta", weight=3]; 2177 -> 2293[label="",style="dashed", color="magenta", weight=3]; 2178 -> 1226[label="",style="dashed", color="red", weight=0]; 2178[label="vxw54 <= vxw57",fontsize=16,color="magenta"];2178 -> 2294[label="",style="dashed", color="magenta", weight=3]; 2178 -> 2295[label="",style="dashed", color="magenta", weight=3]; 2179 -> 1227[label="",style="dashed", color="red", weight=0]; 2179[label="vxw54 <= vxw57",fontsize=16,color="magenta"];2179 -> 2296[label="",style="dashed", color="magenta", weight=3]; 2179 -> 2297[label="",style="dashed", color="magenta", weight=3]; 2180 -> 1228[label="",style="dashed", color="red", weight=0]; 2180[label="vxw54 <= vxw57",fontsize=16,color="magenta"];2180 -> 2298[label="",style="dashed", color="magenta", weight=3]; 2180 -> 2299[label="",style="dashed", color="magenta", weight=3]; 2181 -> 1229[label="",style="dashed", color="red", weight=0]; 2181[label="vxw54 <= vxw57",fontsize=16,color="magenta"];2181 -> 2300[label="",style="dashed", color="magenta", weight=3]; 2181 -> 2301[label="",style="dashed", color="magenta", weight=3]; 2182 -> 1230[label="",style="dashed", color="red", weight=0]; 2182[label="vxw54 <= vxw57",fontsize=16,color="magenta"];2182 -> 2302[label="",style="dashed", color="magenta", weight=3]; 2182 -> 2303[label="",style="dashed", color="magenta", weight=3]; 2183 -> 1231[label="",style="dashed", color="red", weight=0]; 2183[label="vxw54 <= vxw57",fontsize=16,color="magenta"];2183 -> 2304[label="",style="dashed", color="magenta", weight=3]; 2183 -> 2305[label="",style="dashed", color="magenta", weight=3]; 2184 -> 1232[label="",style="dashed", color="red", weight=0]; 2184[label="vxw54 <= vxw57",fontsize=16,color="magenta"];2184 -> 2306[label="",style="dashed", color="magenta", weight=3]; 2184 -> 2307[label="",style="dashed", color="magenta", weight=3]; 2185 -> 1233[label="",style="dashed", color="red", weight=0]; 2185[label="vxw54 <= vxw57",fontsize=16,color="magenta"];2185 -> 2308[label="",style="dashed", color="magenta", weight=3]; 2185 -> 2309[label="",style="dashed", color="magenta", weight=3]; 2186 -> 1234[label="",style="dashed", color="red", weight=0]; 2186[label="vxw54 <= vxw57",fontsize=16,color="magenta"];2186 -> 2310[label="",style="dashed", color="magenta", weight=3]; 2186 -> 2311[label="",style="dashed", color="magenta", weight=3]; 2187 -> 1235[label="",style="dashed", color="red", weight=0]; 2187[label="vxw54 <= vxw57",fontsize=16,color="magenta"];2187 -> 2312[label="",style="dashed", color="magenta", weight=3]; 2187 -> 2313[label="",style="dashed", color="magenta", weight=3]; 2188 -> 1236[label="",style="dashed", color="red", weight=0]; 2188[label="vxw54 <= vxw57",fontsize=16,color="magenta"];2188 -> 2314[label="",style="dashed", color="magenta", weight=3]; 2188 -> 2315[label="",style="dashed", color="magenta", weight=3]; 2189 -> 418[label="",style="dashed", color="red", weight=0]; 2189[label="vxw53 == vxw56",fontsize=16,color="magenta"];2189 -> 2316[label="",style="dashed", color="magenta", weight=3]; 2189 -> 2317[label="",style="dashed", color="magenta", weight=3]; 2190 -> 416[label="",style="dashed", color="red", weight=0]; 2190[label="vxw53 == vxw56",fontsize=16,color="magenta"];2190 -> 2318[label="",style="dashed", color="magenta", weight=3]; 2190 -> 2319[label="",style="dashed", color="magenta", weight=3]; 2191 -> 424[label="",style="dashed", color="red", weight=0]; 2191[label="vxw53 == vxw56",fontsize=16,color="magenta"];2191 -> 2320[label="",style="dashed", color="magenta", weight=3]; 2191 -> 2321[label="",style="dashed", color="magenta", weight=3]; 2192 -> 425[label="",style="dashed", color="red", weight=0]; 2192[label="vxw53 == vxw56",fontsize=16,color="magenta"];2192 -> 2322[label="",style="dashed", color="magenta", weight=3]; 2192 -> 2323[label="",style="dashed", color="magenta", weight=3]; 2193 -> 415[label="",style="dashed", color="red", weight=0]; 2193[label="vxw53 == vxw56",fontsize=16,color="magenta"];2193 -> 2324[label="",style="dashed", color="magenta", weight=3]; 2193 -> 2325[label="",style="dashed", color="magenta", weight=3]; 2194 -> 426[label="",style="dashed", color="red", weight=0]; 2194[label="vxw53 == vxw56",fontsize=16,color="magenta"];2194 -> 2326[label="",style="dashed", color="magenta", weight=3]; 2194 -> 2327[label="",style="dashed", color="magenta", weight=3]; 2195 -> 420[label="",style="dashed", color="red", weight=0]; 2195[label="vxw53 == vxw56",fontsize=16,color="magenta"];2195 -> 2328[label="",style="dashed", color="magenta", weight=3]; 2195 -> 2329[label="",style="dashed", color="magenta", weight=3]; 2196 -> 421[label="",style="dashed", color="red", weight=0]; 2196[label="vxw53 == vxw56",fontsize=16,color="magenta"];2196 -> 2330[label="",style="dashed", color="magenta", weight=3]; 2196 -> 2331[label="",style="dashed", color="magenta", weight=3]; 2197 -> 414[label="",style="dashed", color="red", weight=0]; 2197[label="vxw53 == vxw56",fontsize=16,color="magenta"];2197 -> 2332[label="",style="dashed", color="magenta", weight=3]; 2197 -> 2333[label="",style="dashed", color="magenta", weight=3]; 2198 -> 417[label="",style="dashed", color="red", weight=0]; 2198[label="vxw53 == vxw56",fontsize=16,color="magenta"];2198 -> 2334[label="",style="dashed", color="magenta", weight=3]; 2198 -> 2335[label="",style="dashed", color="magenta", weight=3]; 2199 -> 422[label="",style="dashed", color="red", weight=0]; 2199[label="vxw53 == vxw56",fontsize=16,color="magenta"];2199 -> 2336[label="",style="dashed", color="magenta", weight=3]; 2199 -> 2337[label="",style="dashed", color="magenta", weight=3]; 2200 -> 427[label="",style="dashed", color="red", weight=0]; 2200[label="vxw53 == vxw56",fontsize=16,color="magenta"];2200 -> 2338[label="",style="dashed", color="magenta", weight=3]; 2200 -> 2339[label="",style="dashed", color="magenta", weight=3]; 2201 -> 423[label="",style="dashed", color="red", weight=0]; 2201[label="vxw53 == vxw56",fontsize=16,color="magenta"];2201 -> 2340[label="",style="dashed", color="magenta", weight=3]; 2201 -> 2341[label="",style="dashed", color="magenta", weight=3]; 2202 -> 419[label="",style="dashed", color="red", weight=0]; 2202[label="vxw53 == vxw56",fontsize=16,color="magenta"];2202 -> 2342[label="",style="dashed", color="magenta", weight=3]; 2202 -> 2343[label="",style="dashed", color="magenta", weight=3]; 2203[label="vxw53",fontsize=16,color="green",shape="box"];2204[label="vxw56",fontsize=16,color="green",shape="box"];2205[label="vxw53",fontsize=16,color="green",shape="box"];2206[label="vxw56",fontsize=16,color="green",shape="box"];2207[label="vxw53",fontsize=16,color="green",shape="box"];2208[label="vxw56",fontsize=16,color="green",shape="box"];2209[label="vxw53",fontsize=16,color="green",shape="box"];2210[label="vxw56",fontsize=16,color="green",shape="box"];2211[label="vxw53",fontsize=16,color="green",shape="box"];2212[label="vxw56",fontsize=16,color="green",shape="box"];2213[label="vxw53",fontsize=16,color="green",shape="box"];2214[label="vxw56",fontsize=16,color="green",shape="box"];2215[label="vxw53",fontsize=16,color="green",shape="box"];2216[label="vxw56",fontsize=16,color="green",shape="box"];2217[label="vxw53",fontsize=16,color="green",shape="box"];2218[label="vxw56",fontsize=16,color="green",shape="box"];2219[label="vxw53",fontsize=16,color="green",shape="box"];2220[label="vxw56",fontsize=16,color="green",shape="box"];2221[label="vxw53",fontsize=16,color="green",shape="box"];2222[label="vxw56",fontsize=16,color="green",shape="box"];2223[label="vxw53",fontsize=16,color="green",shape="box"];2224[label="vxw56",fontsize=16,color="green",shape="box"];2225[label="vxw53",fontsize=16,color="green",shape="box"];2226[label="vxw56",fontsize=16,color="green",shape="box"];2227[label="vxw53",fontsize=16,color="green",shape="box"];2228[label="vxw56",fontsize=16,color="green",shape="box"];2229[label="vxw53",fontsize=16,color="green",shape="box"];2230[label="vxw56",fontsize=16,color="green",shape="box"];2231[label="vxw158",fontsize=16,color="green",shape="box"];2232[label="True",fontsize=16,color="green",shape="box"];2233[label="compare0 (vxw144,vxw145,vxw146) (vxw147,vxw148,vxw149) otherwise",fontsize=16,color="black",shape="box"];2233 -> 2344[label="",style="solid", color="black", weight=3]; 2234[label="LT",fontsize=16,color="green",shape="box"];2236 -> 1074[label="",style="dashed", color="red", weight=0]; 2236[label="primMulNat vxw400000 (Succ vxw30100)",fontsize=16,color="magenta"];2236 -> 2345[label="",style="dashed", color="magenta", weight=3]; 2236 -> 2346[label="",style="dashed", color="magenta", weight=3]; 2235[label="primPlusNat vxw159 (Succ vxw30100)",fontsize=16,color="burlywood",shape="triangle"];3537[label="vxw159/Succ vxw1590",fontsize=10,color="white",style="solid",shape="box"];2235 -> 3537[label="",style="solid", color="burlywood", weight=9]; 3537 -> 2347[label="",style="solid", color="burlywood", weight=3]; 3538[label="vxw159/Zero",fontsize=10,color="white",style="solid",shape="box"];2235 -> 3538[label="",style="solid", color="burlywood", weight=9]; 3538 -> 2348[label="",style="solid", color="burlywood", weight=3]; 2237[label="vxw30000",fontsize=16,color="green",shape="box"];2238[label="vxw400000",fontsize=16,color="green",shape="box"];2240 -> 426[label="",style="dashed", color="red", weight=0]; 2240[label="vxw153 == GT",fontsize=16,color="magenta"];2240 -> 2349[label="",style="dashed", color="magenta", weight=3]; 2240 -> 2350[label="",style="dashed", color="magenta", weight=3]; 2239[label="not vxw160",fontsize=16,color="burlywood",shape="triangle"];3539[label="vxw160/False",fontsize=10,color="white",style="solid",shape="box"];2239 -> 3539[label="",style="solid", color="burlywood", weight=9]; 3539 -> 2351[label="",style="solid", color="burlywood", weight=3]; 3540[label="vxw160/True",fontsize=10,color="white",style="solid",shape="box"];2239 -> 3540[label="",style="solid", color="burlywood", weight=9]; 3540 -> 2352[label="",style="solid", color="burlywood", weight=3]; 2241 -> 1223[label="",style="dashed", color="red", weight=0]; 2241[label="vxw300 <= vxw310",fontsize=16,color="magenta"];2241 -> 2353[label="",style="dashed", color="magenta", weight=3]; 2241 -> 2354[label="",style="dashed", color="magenta", weight=3]; 2242 -> 1224[label="",style="dashed", color="red", weight=0]; 2242[label="vxw300 <= vxw310",fontsize=16,color="magenta"];2242 -> 2355[label="",style="dashed", color="magenta", weight=3]; 2242 -> 2356[label="",style="dashed", color="magenta", weight=3]; 2243 -> 1225[label="",style="dashed", color="red", weight=0]; 2243[label="vxw300 <= vxw310",fontsize=16,color="magenta"];2243 -> 2357[label="",style="dashed", color="magenta", weight=3]; 2243 -> 2358[label="",style="dashed", color="magenta", weight=3]; 2244 -> 1226[label="",style="dashed", color="red", weight=0]; 2244[label="vxw300 <= vxw310",fontsize=16,color="magenta"];2244 -> 2359[label="",style="dashed", color="magenta", weight=3]; 2244 -> 2360[label="",style="dashed", color="magenta", weight=3]; 2245 -> 1227[label="",style="dashed", color="red", weight=0]; 2245[label="vxw300 <= vxw310",fontsize=16,color="magenta"];2245 -> 2361[label="",style="dashed", color="magenta", weight=3]; 2245 -> 2362[label="",style="dashed", color="magenta", weight=3]; 2246 -> 1228[label="",style="dashed", color="red", weight=0]; 2246[label="vxw300 <= vxw310",fontsize=16,color="magenta"];2246 -> 2363[label="",style="dashed", color="magenta", weight=3]; 2246 -> 2364[label="",style="dashed", color="magenta", weight=3]; 2247 -> 1229[label="",style="dashed", color="red", weight=0]; 2247[label="vxw300 <= vxw310",fontsize=16,color="magenta"];2247 -> 2365[label="",style="dashed", color="magenta", weight=3]; 2247 -> 2366[label="",style="dashed", color="magenta", weight=3]; 2248 -> 1230[label="",style="dashed", color="red", weight=0]; 2248[label="vxw300 <= vxw310",fontsize=16,color="magenta"];2248 -> 2367[label="",style="dashed", color="magenta", weight=3]; 2248 -> 2368[label="",style="dashed", color="magenta", weight=3]; 2249 -> 1231[label="",style="dashed", color="red", weight=0]; 2249[label="vxw300 <= vxw310",fontsize=16,color="magenta"];2249 -> 2369[label="",style="dashed", color="magenta", weight=3]; 2249 -> 2370[label="",style="dashed", color="magenta", weight=3]; 2250 -> 1232[label="",style="dashed", color="red", weight=0]; 2250[label="vxw300 <= vxw310",fontsize=16,color="magenta"];2250 -> 2371[label="",style="dashed", color="magenta", weight=3]; 2250 -> 2372[label="",style="dashed", color="magenta", weight=3]; 2251 -> 1233[label="",style="dashed", color="red", weight=0]; 2251[label="vxw300 <= vxw310",fontsize=16,color="magenta"];2251 -> 2373[label="",style="dashed", color="magenta", weight=3]; 2251 -> 2374[label="",style="dashed", color="magenta", weight=3]; 2252 -> 1234[label="",style="dashed", color="red", weight=0]; 2252[label="vxw300 <= vxw310",fontsize=16,color="magenta"];2252 -> 2375[label="",style="dashed", color="magenta", weight=3]; 2252 -> 2376[label="",style="dashed", color="magenta", weight=3]; 2253 -> 1235[label="",style="dashed", color="red", weight=0]; 2253[label="vxw300 <= vxw310",fontsize=16,color="magenta"];2253 -> 2377[label="",style="dashed", color="magenta", weight=3]; 2253 -> 2378[label="",style="dashed", color="magenta", weight=3]; 2254 -> 1236[label="",style="dashed", color="red", weight=0]; 2254[label="vxw300 <= vxw310",fontsize=16,color="magenta"];2254 -> 2379[label="",style="dashed", color="magenta", weight=3]; 2254 -> 2380[label="",style="dashed", color="magenta", weight=3]; 2255 -> 837[label="",style="dashed", color="red", weight=0]; 2255[label="vxw300 == vxw310 && vxw301 <= vxw311",fontsize=16,color="magenta"];2255 -> 2381[label="",style="dashed", color="magenta", weight=3]; 2255 -> 2382[label="",style="dashed", color="magenta", weight=3]; 2256[label="vxw300 < vxw310",fontsize=16,color="blue",shape="box"];3541[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2256 -> 3541[label="",style="solid", color="blue", weight=9]; 3541 -> 2383[label="",style="solid", color="blue", weight=3]; 3542[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2256 -> 3542[label="",style="solid", color="blue", weight=9]; 3542 -> 2384[label="",style="solid", color="blue", weight=3]; 3543[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2256 -> 3543[label="",style="solid", color="blue", weight=9]; 3543 -> 2385[label="",style="solid", color="blue", weight=3]; 3544[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2256 -> 3544[label="",style="solid", color="blue", weight=9]; 3544 -> 2386[label="",style="solid", color="blue", weight=3]; 3545[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2256 -> 3545[label="",style="solid", color="blue", weight=9]; 3545 -> 2387[label="",style="solid", color="blue", weight=3]; 3546[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2256 -> 3546[label="",style="solid", color="blue", weight=9]; 3546 -> 2388[label="",style="solid", color="blue", weight=3]; 3547[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2256 -> 3547[label="",style="solid", color="blue", weight=9]; 3547 -> 2389[label="",style="solid", color="blue", weight=3]; 3548[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2256 -> 3548[label="",style="solid", color="blue", weight=9]; 3548 -> 2390[label="",style="solid", color="blue", weight=3]; 3549[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2256 -> 3549[label="",style="solid", color="blue", weight=9]; 3549 -> 2391[label="",style="solid", color="blue", weight=3]; 3550[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2256 -> 3550[label="",style="solid", color="blue", weight=9]; 3550 -> 2392[label="",style="solid", color="blue", weight=3]; 3551[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2256 -> 3551[label="",style="solid", color="blue", weight=9]; 3551 -> 2393[label="",style="solid", color="blue", weight=3]; 3552[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2256 -> 3552[label="",style="solid", color="blue", weight=9]; 3552 -> 2394[label="",style="solid", color="blue", weight=3]; 3553[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2256 -> 3553[label="",style="solid", color="blue", weight=9]; 3553 -> 2395[label="",style="solid", color="blue", weight=3]; 3554[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2256 -> 3554[label="",style="solid", color="blue", weight=9]; 3554 -> 2396[label="",style="solid", color="blue", weight=3]; 2257 -> 837[label="",style="dashed", color="red", weight=0]; 2257[label="vxw300 == vxw310 && (vxw301 < vxw311 || vxw301 == vxw311 && vxw302 <= vxw312)",fontsize=16,color="magenta"];2257 -> 2397[label="",style="dashed", color="magenta", weight=3]; 2257 -> 2398[label="",style="dashed", color="magenta", weight=3]; 2258[label="vxw300 < vxw310",fontsize=16,color="blue",shape="box"];3555[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2258 -> 3555[label="",style="solid", color="blue", weight=9]; 3555 -> 2399[label="",style="solid", color="blue", weight=3]; 3556[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2258 -> 3556[label="",style="solid", color="blue", weight=9]; 3556 -> 2400[label="",style="solid", color="blue", weight=3]; 3557[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2258 -> 3557[label="",style="solid", color="blue", weight=9]; 3557 -> 2401[label="",style="solid", color="blue", weight=3]; 3558[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2258 -> 3558[label="",style="solid", color="blue", weight=9]; 3558 -> 2402[label="",style="solid", color="blue", weight=3]; 3559[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2258 -> 3559[label="",style="solid", color="blue", weight=9]; 3559 -> 2403[label="",style="solid", color="blue", weight=3]; 3560[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2258 -> 3560[label="",style="solid", color="blue", weight=9]; 3560 -> 2404[label="",style="solid", color="blue", weight=3]; 3561[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2258 -> 3561[label="",style="solid", color="blue", weight=9]; 3561 -> 2405[label="",style="solid", color="blue", weight=3]; 3562[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2258 -> 3562[label="",style="solid", color="blue", weight=9]; 3562 -> 2406[label="",style="solid", color="blue", weight=3]; 3563[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2258 -> 3563[label="",style="solid", color="blue", weight=9]; 3563 -> 2407[label="",style="solid", color="blue", weight=3]; 3564[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2258 -> 3564[label="",style="solid", color="blue", weight=9]; 3564 -> 2408[label="",style="solid", color="blue", weight=3]; 3565[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2258 -> 3565[label="",style="solid", color="blue", weight=9]; 3565 -> 2409[label="",style="solid", color="blue", weight=3]; 3566[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2258 -> 3566[label="",style="solid", color="blue", weight=9]; 3566 -> 2410[label="",style="solid", color="blue", weight=3]; 3567[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2258 -> 3567[label="",style="solid", color="blue", weight=9]; 3567 -> 2411[label="",style="solid", color="blue", weight=3]; 3568[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2258 -> 3568[label="",style="solid", color="blue", weight=9]; 3568 -> 2412[label="",style="solid", color="blue", weight=3]; 2259 -> 1223[label="",style="dashed", color="red", weight=0]; 2259[label="vxw300 <= vxw310",fontsize=16,color="magenta"];2259 -> 2413[label="",style="dashed", color="magenta", weight=3]; 2259 -> 2414[label="",style="dashed", color="magenta", weight=3]; 2260 -> 1224[label="",style="dashed", color="red", weight=0]; 2260[label="vxw300 <= vxw310",fontsize=16,color="magenta"];2260 -> 2415[label="",style="dashed", color="magenta", weight=3]; 2260 -> 2416[label="",style="dashed", color="magenta", weight=3]; 2261 -> 1225[label="",style="dashed", color="red", weight=0]; 2261[label="vxw300 <= vxw310",fontsize=16,color="magenta"];2261 -> 2417[label="",style="dashed", color="magenta", weight=3]; 2261 -> 2418[label="",style="dashed", color="magenta", weight=3]; 2262 -> 1226[label="",style="dashed", color="red", weight=0]; 2262[label="vxw300 <= vxw310",fontsize=16,color="magenta"];2262 -> 2419[label="",style="dashed", color="magenta", weight=3]; 2262 -> 2420[label="",style="dashed", color="magenta", weight=3]; 2263 -> 1227[label="",style="dashed", color="red", weight=0]; 2263[label="vxw300 <= vxw310",fontsize=16,color="magenta"];2263 -> 2421[label="",style="dashed", color="magenta", weight=3]; 2263 -> 2422[label="",style="dashed", color="magenta", weight=3]; 2264 -> 1228[label="",style="dashed", color="red", weight=0]; 2264[label="vxw300 <= vxw310",fontsize=16,color="magenta"];2264 -> 2423[label="",style="dashed", color="magenta", weight=3]; 2264 -> 2424[label="",style="dashed", color="magenta", weight=3]; 2265 -> 1229[label="",style="dashed", color="red", weight=0]; 2265[label="vxw300 <= vxw310",fontsize=16,color="magenta"];2265 -> 2425[label="",style="dashed", color="magenta", weight=3]; 2265 -> 2426[label="",style="dashed", color="magenta", weight=3]; 2266 -> 1230[label="",style="dashed", color="red", weight=0]; 2266[label="vxw300 <= vxw310",fontsize=16,color="magenta"];2266 -> 2427[label="",style="dashed", color="magenta", weight=3]; 2266 -> 2428[label="",style="dashed", color="magenta", weight=3]; 2267 -> 1231[label="",style="dashed", color="red", weight=0]; 2267[label="vxw300 <= vxw310",fontsize=16,color="magenta"];2267 -> 2429[label="",style="dashed", color="magenta", weight=3]; 2267 -> 2430[label="",style="dashed", color="magenta", weight=3]; 2268 -> 1232[label="",style="dashed", color="red", weight=0]; 2268[label="vxw300 <= vxw310",fontsize=16,color="magenta"];2268 -> 2431[label="",style="dashed", color="magenta", weight=3]; 2268 -> 2432[label="",style="dashed", color="magenta", weight=3]; 2269 -> 1233[label="",style="dashed", color="red", weight=0]; 2269[label="vxw300 <= vxw310",fontsize=16,color="magenta"];2269 -> 2433[label="",style="dashed", color="magenta", weight=3]; 2269 -> 2434[label="",style="dashed", color="magenta", weight=3]; 2270 -> 1234[label="",style="dashed", color="red", weight=0]; 2270[label="vxw300 <= vxw310",fontsize=16,color="magenta"];2270 -> 2435[label="",style="dashed", color="magenta", weight=3]; 2270 -> 2436[label="",style="dashed", color="magenta", weight=3]; 2271 -> 1235[label="",style="dashed", color="red", weight=0]; 2271[label="vxw300 <= vxw310",fontsize=16,color="magenta"];2271 -> 2437[label="",style="dashed", color="magenta", weight=3]; 2271 -> 2438[label="",style="dashed", color="magenta", weight=3]; 2272 -> 1236[label="",style="dashed", color="red", weight=0]; 2272[label="vxw300 <= vxw310",fontsize=16,color="magenta"];2272 -> 2439[label="",style="dashed", color="magenta", weight=3]; 2272 -> 2440[label="",style="dashed", color="magenta", weight=3]; 2273 -> 1223[label="",style="dashed", color="red", weight=0]; 2273[label="vxw300 <= vxw310",fontsize=16,color="magenta"];2273 -> 2441[label="",style="dashed", color="magenta", weight=3]; 2273 -> 2442[label="",style="dashed", color="magenta", weight=3]; 2274 -> 1224[label="",style="dashed", color="red", weight=0]; 2274[label="vxw300 <= vxw310",fontsize=16,color="magenta"];2274 -> 2443[label="",style="dashed", color="magenta", weight=3]; 2274 -> 2444[label="",style="dashed", color="magenta", weight=3]; 2275 -> 1225[label="",style="dashed", color="red", weight=0]; 2275[label="vxw300 <= vxw310",fontsize=16,color="magenta"];2275 -> 2445[label="",style="dashed", color="magenta", weight=3]; 2275 -> 2446[label="",style="dashed", color="magenta", weight=3]; 2276 -> 1226[label="",style="dashed", color="red", weight=0]; 2276[label="vxw300 <= vxw310",fontsize=16,color="magenta"];2276 -> 2447[label="",style="dashed", color="magenta", weight=3]; 2276 -> 2448[label="",style="dashed", color="magenta", weight=3]; 2277 -> 1227[label="",style="dashed", color="red", weight=0]; 2277[label="vxw300 <= vxw310",fontsize=16,color="magenta"];2277 -> 2449[label="",style="dashed", color="magenta", weight=3]; 2277 -> 2450[label="",style="dashed", color="magenta", weight=3]; 2278 -> 1228[label="",style="dashed", color="red", weight=0]; 2278[label="vxw300 <= vxw310",fontsize=16,color="magenta"];2278 -> 2451[label="",style="dashed", color="magenta", weight=3]; 2278 -> 2452[label="",style="dashed", color="magenta", weight=3]; 2279 -> 1229[label="",style="dashed", color="red", weight=0]; 2279[label="vxw300 <= vxw310",fontsize=16,color="magenta"];2279 -> 2453[label="",style="dashed", color="magenta", weight=3]; 2279 -> 2454[label="",style="dashed", color="magenta", weight=3]; 2280 -> 1230[label="",style="dashed", color="red", weight=0]; 2280[label="vxw300 <= vxw310",fontsize=16,color="magenta"];2280 -> 2455[label="",style="dashed", color="magenta", weight=3]; 2280 -> 2456[label="",style="dashed", color="magenta", weight=3]; 2281 -> 1231[label="",style="dashed", color="red", weight=0]; 2281[label="vxw300 <= vxw310",fontsize=16,color="magenta"];2281 -> 2457[label="",style="dashed", color="magenta", weight=3]; 2281 -> 2458[label="",style="dashed", color="magenta", weight=3]; 2282 -> 1232[label="",style="dashed", color="red", weight=0]; 2282[label="vxw300 <= vxw310",fontsize=16,color="magenta"];2282 -> 2459[label="",style="dashed", color="magenta", weight=3]; 2282 -> 2460[label="",style="dashed", color="magenta", weight=3]; 2283 -> 1233[label="",style="dashed", color="red", weight=0]; 2283[label="vxw300 <= vxw310",fontsize=16,color="magenta"];2283 -> 2461[label="",style="dashed", color="magenta", weight=3]; 2283 -> 2462[label="",style="dashed", color="magenta", weight=3]; 2284 -> 1234[label="",style="dashed", color="red", weight=0]; 2284[label="vxw300 <= vxw310",fontsize=16,color="magenta"];2284 -> 2463[label="",style="dashed", color="magenta", weight=3]; 2284 -> 2464[label="",style="dashed", color="magenta", weight=3]; 2285 -> 1235[label="",style="dashed", color="red", weight=0]; 2285[label="vxw300 <= vxw310",fontsize=16,color="magenta"];2285 -> 2465[label="",style="dashed", color="magenta", weight=3]; 2285 -> 2466[label="",style="dashed", color="magenta", weight=3]; 2286 -> 1236[label="",style="dashed", color="red", weight=0]; 2286[label="vxw300 <= vxw310",fontsize=16,color="magenta"];2286 -> 2467[label="",style="dashed", color="magenta", weight=3]; 2286 -> 2468[label="",style="dashed", color="magenta", weight=3]; 2287[label="compare0 (vxw129,vxw130) (vxw131,vxw132) True",fontsize=16,color="black",shape="box"];2287 -> 2469[label="",style="solid", color="black", weight=3]; 2288[label="vxw57",fontsize=16,color="green",shape="box"];2289[label="vxw54",fontsize=16,color="green",shape="box"];2290[label="vxw57",fontsize=16,color="green",shape="box"];2291[label="vxw54",fontsize=16,color="green",shape="box"];2292[label="vxw57",fontsize=16,color="green",shape="box"];2293[label="vxw54",fontsize=16,color="green",shape="box"];2294[label="vxw57",fontsize=16,color="green",shape="box"];2295[label="vxw54",fontsize=16,color="green",shape="box"];2296[label="vxw57",fontsize=16,color="green",shape="box"];2297[label="vxw54",fontsize=16,color="green",shape="box"];2298[label="vxw57",fontsize=16,color="green",shape="box"];2299[label="vxw54",fontsize=16,color="green",shape="box"];2300[label="vxw57",fontsize=16,color="green",shape="box"];2301[label="vxw54",fontsize=16,color="green",shape="box"];2302[label="vxw57",fontsize=16,color="green",shape="box"];2303[label="vxw54",fontsize=16,color="green",shape="box"];2304[label="vxw57",fontsize=16,color="green",shape="box"];2305[label="vxw54",fontsize=16,color="green",shape="box"];2306[label="vxw57",fontsize=16,color="green",shape="box"];2307[label="vxw54",fontsize=16,color="green",shape="box"];2308[label="vxw57",fontsize=16,color="green",shape="box"];2309[label="vxw54",fontsize=16,color="green",shape="box"];2310[label="vxw57",fontsize=16,color="green",shape="box"];2311[label="vxw54",fontsize=16,color="green",shape="box"];2312[label="vxw57",fontsize=16,color="green",shape="box"];2313[label="vxw54",fontsize=16,color="green",shape="box"];2314[label="vxw57",fontsize=16,color="green",shape="box"];2315[label="vxw54",fontsize=16,color="green",shape="box"];2316[label="vxw56",fontsize=16,color="green",shape="box"];2317[label="vxw53",fontsize=16,color="green",shape="box"];2318[label="vxw56",fontsize=16,color="green",shape="box"];2319[label="vxw53",fontsize=16,color="green",shape="box"];2320[label="vxw56",fontsize=16,color="green",shape="box"];2321[label="vxw53",fontsize=16,color="green",shape="box"];2322[label="vxw56",fontsize=16,color="green",shape="box"];2323[label="vxw53",fontsize=16,color="green",shape="box"];2324[label="vxw56",fontsize=16,color="green",shape="box"];2325[label="vxw53",fontsize=16,color="green",shape="box"];2326[label="vxw56",fontsize=16,color="green",shape="box"];2327[label="vxw53",fontsize=16,color="green",shape="box"];2328[label="vxw56",fontsize=16,color="green",shape="box"];2329[label="vxw53",fontsize=16,color="green",shape="box"];2330[label="vxw56",fontsize=16,color="green",shape="box"];2331[label="vxw53",fontsize=16,color="green",shape="box"];2332[label="vxw56",fontsize=16,color="green",shape="box"];2333[label="vxw53",fontsize=16,color="green",shape="box"];2334[label="vxw56",fontsize=16,color="green",shape="box"];2335[label="vxw53",fontsize=16,color="green",shape="box"];2336[label="vxw56",fontsize=16,color="green",shape="box"];2337[label="vxw53",fontsize=16,color="green",shape="box"];2338[label="vxw56",fontsize=16,color="green",shape="box"];2339[label="vxw53",fontsize=16,color="green",shape="box"];2340[label="vxw56",fontsize=16,color="green",shape="box"];2341[label="vxw53",fontsize=16,color="green",shape="box"];2342[label="vxw56",fontsize=16,color="green",shape="box"];2343[label="vxw53",fontsize=16,color="green",shape="box"];2344[label="compare0 (vxw144,vxw145,vxw146) (vxw147,vxw148,vxw149) True",fontsize=16,color="black",shape="box"];2344 -> 2470[label="",style="solid", color="black", weight=3]; 2345[label="vxw400000",fontsize=16,color="green",shape="box"];2346[label="Succ vxw30100",fontsize=16,color="green",shape="box"];2347[label="primPlusNat (Succ vxw1590) (Succ vxw30100)",fontsize=16,color="black",shape="box"];2347 -> 2471[label="",style="solid", color="black", weight=3]; 2348[label="primPlusNat Zero (Succ vxw30100)",fontsize=16,color="black",shape="box"];2348 -> 2472[label="",style="solid", color="black", weight=3]; 2349[label="GT",fontsize=16,color="green",shape="box"];2350[label="vxw153",fontsize=16,color="green",shape="box"];2351[label="not False",fontsize=16,color="black",shape="box"];2351 -> 2473[label="",style="solid", color="black", weight=3]; 2352[label="not True",fontsize=16,color="black",shape="box"];2352 -> 2474[label="",style="solid", color="black", weight=3]; 2353[label="vxw310",fontsize=16,color="green",shape="box"];2354[label="vxw300",fontsize=16,color="green",shape="box"];2355[label="vxw310",fontsize=16,color="green",shape="box"];2356[label="vxw300",fontsize=16,color="green",shape="box"];2357[label="vxw310",fontsize=16,color="green",shape="box"];2358[label="vxw300",fontsize=16,color="green",shape="box"];2359[label="vxw310",fontsize=16,color="green",shape="box"];2360[label="vxw300",fontsize=16,color="green",shape="box"];2361[label="vxw310",fontsize=16,color="green",shape="box"];2362[label="vxw300",fontsize=16,color="green",shape="box"];2363[label="vxw310",fontsize=16,color="green",shape="box"];2364[label="vxw300",fontsize=16,color="green",shape="box"];2365[label="vxw310",fontsize=16,color="green",shape="box"];2366[label="vxw300",fontsize=16,color="green",shape="box"];2367[label="vxw310",fontsize=16,color="green",shape="box"];2368[label="vxw300",fontsize=16,color="green",shape="box"];2369[label="vxw310",fontsize=16,color="green",shape="box"];2370[label="vxw300",fontsize=16,color="green",shape="box"];2371[label="vxw310",fontsize=16,color="green",shape="box"];2372[label="vxw300",fontsize=16,color="green",shape="box"];2373[label="vxw310",fontsize=16,color="green",shape="box"];2374[label="vxw300",fontsize=16,color="green",shape="box"];2375[label="vxw310",fontsize=16,color="green",shape="box"];2376[label="vxw300",fontsize=16,color="green",shape="box"];2377[label="vxw310",fontsize=16,color="green",shape="box"];2378[label="vxw300",fontsize=16,color="green",shape="box"];2379[label="vxw310",fontsize=16,color="green",shape="box"];2380[label="vxw300",fontsize=16,color="green",shape="box"];2381[label="vxw301 <= vxw311",fontsize=16,color="blue",shape="box"];3569[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2381 -> 3569[label="",style="solid", color="blue", weight=9]; 3569 -> 2475[label="",style="solid", color="blue", weight=3]; 3570[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2381 -> 3570[label="",style="solid", color="blue", weight=9]; 3570 -> 2476[label="",style="solid", color="blue", weight=3]; 3571[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2381 -> 3571[label="",style="solid", color="blue", weight=9]; 3571 -> 2477[label="",style="solid", color="blue", weight=3]; 3572[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2381 -> 3572[label="",style="solid", color="blue", weight=9]; 3572 -> 2478[label="",style="solid", color="blue", weight=3]; 3573[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2381 -> 3573[label="",style="solid", color="blue", weight=9]; 3573 -> 2479[label="",style="solid", color="blue", weight=3]; 3574[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2381 -> 3574[label="",style="solid", color="blue", weight=9]; 3574 -> 2480[label="",style="solid", color="blue", weight=3]; 3575[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2381 -> 3575[label="",style="solid", color="blue", weight=9]; 3575 -> 2481[label="",style="solid", color="blue", weight=3]; 3576[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2381 -> 3576[label="",style="solid", color="blue", weight=9]; 3576 -> 2482[label="",style="solid", color="blue", weight=3]; 3577[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2381 -> 3577[label="",style="solid", color="blue", weight=9]; 3577 -> 2483[label="",style="solid", color="blue", weight=3]; 3578[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2381 -> 3578[label="",style="solid", color="blue", weight=9]; 3578 -> 2484[label="",style="solid", color="blue", weight=3]; 3579[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2381 -> 3579[label="",style="solid", color="blue", weight=9]; 3579 -> 2485[label="",style="solid", color="blue", weight=3]; 3580[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2381 -> 3580[label="",style="solid", color="blue", weight=9]; 3580 -> 2486[label="",style="solid", color="blue", weight=3]; 3581[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2381 -> 3581[label="",style="solid", color="blue", weight=9]; 3581 -> 2487[label="",style="solid", color="blue", weight=3]; 3582[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2381 -> 3582[label="",style="solid", color="blue", weight=9]; 3582 -> 2488[label="",style="solid", color="blue", weight=3]; 2382[label="vxw300 == vxw310",fontsize=16,color="blue",shape="box"];3583[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2382 -> 3583[label="",style="solid", color="blue", weight=9]; 3583 -> 2489[label="",style="solid", color="blue", weight=3]; 3584[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2382 -> 3584[label="",style="solid", color="blue", weight=9]; 3584 -> 2490[label="",style="solid", color="blue", weight=3]; 3585[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2382 -> 3585[label="",style="solid", color="blue", weight=9]; 3585 -> 2491[label="",style="solid", color="blue", weight=3]; 3586[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2382 -> 3586[label="",style="solid", color="blue", weight=9]; 3586 -> 2492[label="",style="solid", color="blue", weight=3]; 3587[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2382 -> 3587[label="",style="solid", color="blue", weight=9]; 3587 -> 2493[label="",style="solid", color="blue", weight=3]; 3588[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2382 -> 3588[label="",style="solid", color="blue", weight=9]; 3588 -> 2494[label="",style="solid", color="blue", weight=3]; 3589[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2382 -> 3589[label="",style="solid", color="blue", weight=9]; 3589 -> 2495[label="",style="solid", color="blue", weight=3]; 3590[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2382 -> 3590[label="",style="solid", color="blue", weight=9]; 3590 -> 2496[label="",style="solid", color="blue", weight=3]; 3591[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2382 -> 3591[label="",style="solid", color="blue", weight=9]; 3591 -> 2497[label="",style="solid", color="blue", weight=3]; 3592[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2382 -> 3592[label="",style="solid", color="blue", weight=9]; 3592 -> 2498[label="",style="solid", color="blue", weight=3]; 3593[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2382 -> 3593[label="",style="solid", color="blue", weight=9]; 3593 -> 2499[label="",style="solid", color="blue", weight=3]; 3594[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2382 -> 3594[label="",style="solid", color="blue", weight=9]; 3594 -> 2500[label="",style="solid", color="blue", weight=3]; 3595[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2382 -> 3595[label="",style="solid", color="blue", weight=9]; 3595 -> 2501[label="",style="solid", color="blue", weight=3]; 3596[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2382 -> 3596[label="",style="solid", color="blue", weight=9]; 3596 -> 2502[label="",style="solid", color="blue", weight=3]; 2383 -> 1254[label="",style="dashed", color="red", weight=0]; 2383[label="vxw300 < vxw310",fontsize=16,color="magenta"];2383 -> 2503[label="",style="dashed", color="magenta", weight=3]; 2383 -> 2504[label="",style="dashed", color="magenta", weight=3]; 2384 -> 1255[label="",style="dashed", color="red", weight=0]; 2384[label="vxw300 < vxw310",fontsize=16,color="magenta"];2384 -> 2505[label="",style="dashed", color="magenta", weight=3]; 2384 -> 2506[label="",style="dashed", color="magenta", weight=3]; 2385 -> 1256[label="",style="dashed", color="red", weight=0]; 2385[label="vxw300 < vxw310",fontsize=16,color="magenta"];2385 -> 2507[label="",style="dashed", color="magenta", weight=3]; 2385 -> 2508[label="",style="dashed", color="magenta", weight=3]; 2386 -> 1257[label="",style="dashed", color="red", weight=0]; 2386[label="vxw300 < vxw310",fontsize=16,color="magenta"];2386 -> 2509[label="",style="dashed", color="magenta", weight=3]; 2386 -> 2510[label="",style="dashed", color="magenta", weight=3]; 2387 -> 1258[label="",style="dashed", color="red", weight=0]; 2387[label="vxw300 < vxw310",fontsize=16,color="magenta"];2387 -> 2511[label="",style="dashed", color="magenta", weight=3]; 2387 -> 2512[label="",style="dashed", color="magenta", weight=3]; 2388 -> 1259[label="",style="dashed", color="red", weight=0]; 2388[label="vxw300 < vxw310",fontsize=16,color="magenta"];2388 -> 2513[label="",style="dashed", color="magenta", weight=3]; 2388 -> 2514[label="",style="dashed", color="magenta", weight=3]; 2389 -> 1260[label="",style="dashed", color="red", weight=0]; 2389[label="vxw300 < vxw310",fontsize=16,color="magenta"];2389 -> 2515[label="",style="dashed", color="magenta", weight=3]; 2389 -> 2516[label="",style="dashed", color="magenta", weight=3]; 2390 -> 1261[label="",style="dashed", color="red", weight=0]; 2390[label="vxw300 < vxw310",fontsize=16,color="magenta"];2390 -> 2517[label="",style="dashed", color="magenta", weight=3]; 2390 -> 2518[label="",style="dashed", color="magenta", weight=3]; 2391 -> 1262[label="",style="dashed", color="red", weight=0]; 2391[label="vxw300 < vxw310",fontsize=16,color="magenta"];2391 -> 2519[label="",style="dashed", color="magenta", weight=3]; 2391 -> 2520[label="",style="dashed", color="magenta", weight=3]; 2392 -> 1263[label="",style="dashed", color="red", weight=0]; 2392[label="vxw300 < vxw310",fontsize=16,color="magenta"];2392 -> 2521[label="",style="dashed", color="magenta", weight=3]; 2392 -> 2522[label="",style="dashed", color="magenta", weight=3]; 2393 -> 1264[label="",style="dashed", color="red", weight=0]; 2393[label="vxw300 < vxw310",fontsize=16,color="magenta"];2393 -> 2523[label="",style="dashed", color="magenta", weight=3]; 2393 -> 2524[label="",style="dashed", color="magenta", weight=3]; 2394 -> 1265[label="",style="dashed", color="red", weight=0]; 2394[label="vxw300 < vxw310",fontsize=16,color="magenta"];2394 -> 2525[label="",style="dashed", color="magenta", weight=3]; 2394 -> 2526[label="",style="dashed", color="magenta", weight=3]; 2395 -> 1266[label="",style="dashed", color="red", weight=0]; 2395[label="vxw300 < vxw310",fontsize=16,color="magenta"];2395 -> 2527[label="",style="dashed", color="magenta", weight=3]; 2395 -> 2528[label="",style="dashed", color="magenta", weight=3]; 2396 -> 1267[label="",style="dashed", color="red", weight=0]; 2396[label="vxw300 < vxw310",fontsize=16,color="magenta"];2396 -> 2529[label="",style="dashed", color="magenta", weight=3]; 2396 -> 2530[label="",style="dashed", color="magenta", weight=3]; 2397 -> 1981[label="",style="dashed", color="red", weight=0]; 2397[label="vxw301 < vxw311 || vxw301 == vxw311 && vxw302 <= vxw312",fontsize=16,color="magenta"];2397 -> 2531[label="",style="dashed", color="magenta", weight=3]; 2397 -> 2532[label="",style="dashed", color="magenta", weight=3]; 2398[label="vxw300 == vxw310",fontsize=16,color="blue",shape="box"];3597[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2398 -> 3597[label="",style="solid", color="blue", weight=9]; 3597 -> 2533[label="",style="solid", color="blue", weight=3]; 3598[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2398 -> 3598[label="",style="solid", color="blue", weight=9]; 3598 -> 2534[label="",style="solid", color="blue", weight=3]; 3599[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2398 -> 3599[label="",style="solid", color="blue", weight=9]; 3599 -> 2535[label="",style="solid", color="blue", weight=3]; 3600[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2398 -> 3600[label="",style="solid", color="blue", weight=9]; 3600 -> 2536[label="",style="solid", color="blue", weight=3]; 3601[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2398 -> 3601[label="",style="solid", color="blue", weight=9]; 3601 -> 2537[label="",style="solid", color="blue", weight=3]; 3602[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2398 -> 3602[label="",style="solid", color="blue", weight=9]; 3602 -> 2538[label="",style="solid", color="blue", weight=3]; 3603[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2398 -> 3603[label="",style="solid", color="blue", weight=9]; 3603 -> 2539[label="",style="solid", color="blue", weight=3]; 3604[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2398 -> 3604[label="",style="solid", color="blue", weight=9]; 3604 -> 2540[label="",style="solid", color="blue", weight=3]; 3605[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2398 -> 3605[label="",style="solid", color="blue", weight=9]; 3605 -> 2541[label="",style="solid", color="blue", weight=3]; 3606[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2398 -> 3606[label="",style="solid", color="blue", weight=9]; 3606 -> 2542[label="",style="solid", color="blue", weight=3]; 3607[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2398 -> 3607[label="",style="solid", color="blue", weight=9]; 3607 -> 2543[label="",style="solid", color="blue", weight=3]; 3608[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2398 -> 3608[label="",style="solid", color="blue", weight=9]; 3608 -> 2544[label="",style="solid", color="blue", weight=3]; 3609[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2398 -> 3609[label="",style="solid", color="blue", weight=9]; 3609 -> 2545[label="",style="solid", color="blue", weight=3]; 3610[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2398 -> 3610[label="",style="solid", color="blue", weight=9]; 3610 -> 2546[label="",style="solid", color="blue", weight=3]; 2399 -> 1254[label="",style="dashed", color="red", weight=0]; 2399[label="vxw300 < vxw310",fontsize=16,color="magenta"];2399 -> 2547[label="",style="dashed", color="magenta", weight=3]; 2399 -> 2548[label="",style="dashed", color="magenta", weight=3]; 2400 -> 1255[label="",style="dashed", color="red", weight=0]; 2400[label="vxw300 < vxw310",fontsize=16,color="magenta"];2400 -> 2549[label="",style="dashed", color="magenta", weight=3]; 2400 -> 2550[label="",style="dashed", color="magenta", weight=3]; 2401 -> 1256[label="",style="dashed", color="red", weight=0]; 2401[label="vxw300 < vxw310",fontsize=16,color="magenta"];2401 -> 2551[label="",style="dashed", color="magenta", weight=3]; 2401 -> 2552[label="",style="dashed", color="magenta", weight=3]; 2402 -> 1257[label="",style="dashed", color="red", weight=0]; 2402[label="vxw300 < vxw310",fontsize=16,color="magenta"];2402 -> 2553[label="",style="dashed", color="magenta", weight=3]; 2402 -> 2554[label="",style="dashed", color="magenta", weight=3]; 2403 -> 1258[label="",style="dashed", color="red", weight=0]; 2403[label="vxw300 < vxw310",fontsize=16,color="magenta"];2403 -> 2555[label="",style="dashed", color="magenta", weight=3]; 2403 -> 2556[label="",style="dashed", color="magenta", weight=3]; 2404 -> 1259[label="",style="dashed", color="red", weight=0]; 2404[label="vxw300 < vxw310",fontsize=16,color="magenta"];2404 -> 2557[label="",style="dashed", color="magenta", weight=3]; 2404 -> 2558[label="",style="dashed", color="magenta", weight=3]; 2405 -> 1260[label="",style="dashed", color="red", weight=0]; 2405[label="vxw300 < vxw310",fontsize=16,color="magenta"];2405 -> 2559[label="",style="dashed", color="magenta", weight=3]; 2405 -> 2560[label="",style="dashed", color="magenta", weight=3]; 2406 -> 1261[label="",style="dashed", color="red", weight=0]; 2406[label="vxw300 < vxw310",fontsize=16,color="magenta"];2406 -> 2561[label="",style="dashed", color="magenta", weight=3]; 2406 -> 2562[label="",style="dashed", color="magenta", weight=3]; 2407 -> 1262[label="",style="dashed", color="red", weight=0]; 2407[label="vxw300 < vxw310",fontsize=16,color="magenta"];2407 -> 2563[label="",style="dashed", color="magenta", weight=3]; 2407 -> 2564[label="",style="dashed", color="magenta", weight=3]; 2408 -> 1263[label="",style="dashed", color="red", weight=0]; 2408[label="vxw300 < vxw310",fontsize=16,color="magenta"];2408 -> 2565[label="",style="dashed", color="magenta", weight=3]; 2408 -> 2566[label="",style="dashed", color="magenta", weight=3]; 2409 -> 1264[label="",style="dashed", color="red", weight=0]; 2409[label="vxw300 < vxw310",fontsize=16,color="magenta"];2409 -> 2567[label="",style="dashed", color="magenta", weight=3]; 2409 -> 2568[label="",style="dashed", color="magenta", weight=3]; 2410 -> 1265[label="",style="dashed", color="red", weight=0]; 2410[label="vxw300 < vxw310",fontsize=16,color="magenta"];2410 -> 2569[label="",style="dashed", color="magenta", weight=3]; 2410 -> 2570[label="",style="dashed", color="magenta", weight=3]; 2411 -> 1266[label="",style="dashed", color="red", weight=0]; 2411[label="vxw300 < vxw310",fontsize=16,color="magenta"];2411 -> 2571[label="",style="dashed", color="magenta", weight=3]; 2411 -> 2572[label="",style="dashed", color="magenta", weight=3]; 2412 -> 1267[label="",style="dashed", color="red", weight=0]; 2412[label="vxw300 < vxw310",fontsize=16,color="magenta"];2412 -> 2573[label="",style="dashed", color="magenta", weight=3]; 2412 -> 2574[label="",style="dashed", color="magenta", weight=3]; 2413[label="vxw310",fontsize=16,color="green",shape="box"];2414[label="vxw300",fontsize=16,color="green",shape="box"];2415[label="vxw310",fontsize=16,color="green",shape="box"];2416[label="vxw300",fontsize=16,color="green",shape="box"];2417[label="vxw310",fontsize=16,color="green",shape="box"];2418[label="vxw300",fontsize=16,color="green",shape="box"];2419[label="vxw310",fontsize=16,color="green",shape="box"];2420[label="vxw300",fontsize=16,color="green",shape="box"];2421[label="vxw310",fontsize=16,color="green",shape="box"];2422[label="vxw300",fontsize=16,color="green",shape="box"];2423[label="vxw310",fontsize=16,color="green",shape="box"];2424[label="vxw300",fontsize=16,color="green",shape="box"];2425[label="vxw310",fontsize=16,color="green",shape="box"];2426[label="vxw300",fontsize=16,color="green",shape="box"];2427[label="vxw310",fontsize=16,color="green",shape="box"];2428[label="vxw300",fontsize=16,color="green",shape="box"];2429[label="vxw310",fontsize=16,color="green",shape="box"];2430[label="vxw300",fontsize=16,color="green",shape="box"];2431[label="vxw310",fontsize=16,color="green",shape="box"];2432[label="vxw300",fontsize=16,color="green",shape="box"];2433[label="vxw310",fontsize=16,color="green",shape="box"];2434[label="vxw300",fontsize=16,color="green",shape="box"];2435[label="vxw310",fontsize=16,color="green",shape="box"];2436[label="vxw300",fontsize=16,color="green",shape="box"];2437[label="vxw310",fontsize=16,color="green",shape="box"];2438[label="vxw300",fontsize=16,color="green",shape="box"];2439[label="vxw310",fontsize=16,color="green",shape="box"];2440[label="vxw300",fontsize=16,color="green",shape="box"];2441[label="vxw310",fontsize=16,color="green",shape="box"];2442[label="vxw300",fontsize=16,color="green",shape="box"];2443[label="vxw310",fontsize=16,color="green",shape="box"];2444[label="vxw300",fontsize=16,color="green",shape="box"];2445[label="vxw310",fontsize=16,color="green",shape="box"];2446[label="vxw300",fontsize=16,color="green",shape="box"];2447[label="vxw310",fontsize=16,color="green",shape="box"];2448[label="vxw300",fontsize=16,color="green",shape="box"];2449[label="vxw310",fontsize=16,color="green",shape="box"];2450[label="vxw300",fontsize=16,color="green",shape="box"];2451[label="vxw310",fontsize=16,color="green",shape="box"];2452[label="vxw300",fontsize=16,color="green",shape="box"];2453[label="vxw310",fontsize=16,color="green",shape="box"];2454[label="vxw300",fontsize=16,color="green",shape="box"];2455[label="vxw310",fontsize=16,color="green",shape="box"];2456[label="vxw300",fontsize=16,color="green",shape="box"];2457[label="vxw310",fontsize=16,color="green",shape="box"];2458[label="vxw300",fontsize=16,color="green",shape="box"];2459[label="vxw310",fontsize=16,color="green",shape="box"];2460[label="vxw300",fontsize=16,color="green",shape="box"];2461[label="vxw310",fontsize=16,color="green",shape="box"];2462[label="vxw300",fontsize=16,color="green",shape="box"];2463[label="vxw310",fontsize=16,color="green",shape="box"];2464[label="vxw300",fontsize=16,color="green",shape="box"];2465[label="vxw310",fontsize=16,color="green",shape="box"];2466[label="vxw300",fontsize=16,color="green",shape="box"];2467[label="vxw310",fontsize=16,color="green",shape="box"];2468[label="vxw300",fontsize=16,color="green",shape="box"];2469[label="GT",fontsize=16,color="green",shape="box"];2470[label="GT",fontsize=16,color="green",shape="box"];2471[label="Succ (Succ (primPlusNat vxw1590 vxw30100))",fontsize=16,color="green",shape="box"];2471 -> 2575[label="",style="dashed", color="green", weight=3]; 2472[label="Succ vxw30100",fontsize=16,color="green",shape="box"];2473[label="True",fontsize=16,color="green",shape="box"];2474[label="False",fontsize=16,color="green",shape="box"];2475 -> 1223[label="",style="dashed", color="red", weight=0]; 2475[label="vxw301 <= vxw311",fontsize=16,color="magenta"];2475 -> 2576[label="",style="dashed", color="magenta", weight=3]; 2475 -> 2577[label="",style="dashed", color="magenta", weight=3]; 2476 -> 1224[label="",style="dashed", color="red", weight=0]; 2476[label="vxw301 <= vxw311",fontsize=16,color="magenta"];2476 -> 2578[label="",style="dashed", color="magenta", weight=3]; 2476 -> 2579[label="",style="dashed", color="magenta", weight=3]; 2477 -> 1225[label="",style="dashed", color="red", weight=0]; 2477[label="vxw301 <= vxw311",fontsize=16,color="magenta"];2477 -> 2580[label="",style="dashed", color="magenta", weight=3]; 2477 -> 2581[label="",style="dashed", color="magenta", weight=3]; 2478 -> 1226[label="",style="dashed", color="red", weight=0]; 2478[label="vxw301 <= vxw311",fontsize=16,color="magenta"];2478 -> 2582[label="",style="dashed", color="magenta", weight=3]; 2478 -> 2583[label="",style="dashed", color="magenta", weight=3]; 2479 -> 1227[label="",style="dashed", color="red", weight=0]; 2479[label="vxw301 <= vxw311",fontsize=16,color="magenta"];2479 -> 2584[label="",style="dashed", color="magenta", weight=3]; 2479 -> 2585[label="",style="dashed", color="magenta", weight=3]; 2480 -> 1228[label="",style="dashed", color="red", weight=0]; 2480[label="vxw301 <= vxw311",fontsize=16,color="magenta"];2480 -> 2586[label="",style="dashed", color="magenta", weight=3]; 2480 -> 2587[label="",style="dashed", color="magenta", weight=3]; 2481 -> 1229[label="",style="dashed", color="red", weight=0]; 2481[label="vxw301 <= vxw311",fontsize=16,color="magenta"];2481 -> 2588[label="",style="dashed", color="magenta", weight=3]; 2481 -> 2589[label="",style="dashed", color="magenta", weight=3]; 2482 -> 1230[label="",style="dashed", color="red", weight=0]; 2482[label="vxw301 <= vxw311",fontsize=16,color="magenta"];2482 -> 2590[label="",style="dashed", color="magenta", weight=3]; 2482 -> 2591[label="",style="dashed", color="magenta", weight=3]; 2483 -> 1231[label="",style="dashed", color="red", weight=0]; 2483[label="vxw301 <= vxw311",fontsize=16,color="magenta"];2483 -> 2592[label="",style="dashed", color="magenta", weight=3]; 2483 -> 2593[label="",style="dashed", color="magenta", weight=3]; 2484 -> 1232[label="",style="dashed", color="red", weight=0]; 2484[label="vxw301 <= vxw311",fontsize=16,color="magenta"];2484 -> 2594[label="",style="dashed", color="magenta", weight=3]; 2484 -> 2595[label="",style="dashed", color="magenta", weight=3]; 2485 -> 1233[label="",style="dashed", color="red", weight=0]; 2485[label="vxw301 <= vxw311",fontsize=16,color="magenta"];2485 -> 2596[label="",style="dashed", color="magenta", weight=3]; 2485 -> 2597[label="",style="dashed", color="magenta", weight=3]; 2486 -> 1234[label="",style="dashed", color="red", weight=0]; 2486[label="vxw301 <= vxw311",fontsize=16,color="magenta"];2486 -> 2598[label="",style="dashed", color="magenta", weight=3]; 2486 -> 2599[label="",style="dashed", color="magenta", weight=3]; 2487 -> 1235[label="",style="dashed", color="red", weight=0]; 2487[label="vxw301 <= vxw311",fontsize=16,color="magenta"];2487 -> 2600[label="",style="dashed", color="magenta", weight=3]; 2487 -> 2601[label="",style="dashed", color="magenta", weight=3]; 2488 -> 1236[label="",style="dashed", color="red", weight=0]; 2488[label="vxw301 <= vxw311",fontsize=16,color="magenta"];2488 -> 2602[label="",style="dashed", color="magenta", weight=3]; 2488 -> 2603[label="",style="dashed", color="magenta", weight=3]; 2489 -> 418[label="",style="dashed", color="red", weight=0]; 2489[label="vxw300 == vxw310",fontsize=16,color="magenta"];2489 -> 2604[label="",style="dashed", color="magenta", weight=3]; 2489 -> 2605[label="",style="dashed", color="magenta", weight=3]; 2490 -> 416[label="",style="dashed", color="red", weight=0]; 2490[label="vxw300 == vxw310",fontsize=16,color="magenta"];2490 -> 2606[label="",style="dashed", color="magenta", weight=3]; 2490 -> 2607[label="",style="dashed", color="magenta", weight=3]; 2491 -> 424[label="",style="dashed", color="red", weight=0]; 2491[label="vxw300 == vxw310",fontsize=16,color="magenta"];2491 -> 2608[label="",style="dashed", color="magenta", weight=3]; 2491 -> 2609[label="",style="dashed", color="magenta", weight=3]; 2492 -> 425[label="",style="dashed", color="red", weight=0]; 2492[label="vxw300 == vxw310",fontsize=16,color="magenta"];2492 -> 2610[label="",style="dashed", color="magenta", weight=3]; 2492 -> 2611[label="",style="dashed", color="magenta", weight=3]; 2493 -> 415[label="",style="dashed", color="red", weight=0]; 2493[label="vxw300 == vxw310",fontsize=16,color="magenta"];2493 -> 2612[label="",style="dashed", color="magenta", weight=3]; 2493 -> 2613[label="",style="dashed", color="magenta", weight=3]; 2494 -> 426[label="",style="dashed", color="red", weight=0]; 2494[label="vxw300 == vxw310",fontsize=16,color="magenta"];2494 -> 2614[label="",style="dashed", color="magenta", weight=3]; 2494 -> 2615[label="",style="dashed", color="magenta", weight=3]; 2495 -> 420[label="",style="dashed", color="red", weight=0]; 2495[label="vxw300 == vxw310",fontsize=16,color="magenta"];2495 -> 2616[label="",style="dashed", color="magenta", weight=3]; 2495 -> 2617[label="",style="dashed", color="magenta", weight=3]; 2496 -> 421[label="",style="dashed", color="red", weight=0]; 2496[label="vxw300 == vxw310",fontsize=16,color="magenta"];2496 -> 2618[label="",style="dashed", color="magenta", weight=3]; 2496 -> 2619[label="",style="dashed", color="magenta", weight=3]; 2497 -> 414[label="",style="dashed", color="red", weight=0]; 2497[label="vxw300 == vxw310",fontsize=16,color="magenta"];2497 -> 2620[label="",style="dashed", color="magenta", weight=3]; 2497 -> 2621[label="",style="dashed", color="magenta", weight=3]; 2498 -> 417[label="",style="dashed", color="red", weight=0]; 2498[label="vxw300 == vxw310",fontsize=16,color="magenta"];2498 -> 2622[label="",style="dashed", color="magenta", weight=3]; 2498 -> 2623[label="",style="dashed", color="magenta", weight=3]; 2499 -> 422[label="",style="dashed", color="red", weight=0]; 2499[label="vxw300 == vxw310",fontsize=16,color="magenta"];2499 -> 2624[label="",style="dashed", color="magenta", weight=3]; 2499 -> 2625[label="",style="dashed", color="magenta", weight=3]; 2500 -> 427[label="",style="dashed", color="red", weight=0]; 2500[label="vxw300 == vxw310",fontsize=16,color="magenta"];2500 -> 2626[label="",style="dashed", color="magenta", weight=3]; 2500 -> 2627[label="",style="dashed", color="magenta", weight=3]; 2501 -> 423[label="",style="dashed", color="red", weight=0]; 2501[label="vxw300 == vxw310",fontsize=16,color="magenta"];2501 -> 2628[label="",style="dashed", color="magenta", weight=3]; 2501 -> 2629[label="",style="dashed", color="magenta", weight=3]; 2502 -> 419[label="",style="dashed", color="red", weight=0]; 2502[label="vxw300 == vxw310",fontsize=16,color="magenta"];2502 -> 2630[label="",style="dashed", color="magenta", weight=3]; 2502 -> 2631[label="",style="dashed", color="magenta", weight=3]; 2503[label="vxw300",fontsize=16,color="green",shape="box"];2504[label="vxw310",fontsize=16,color="green",shape="box"];2505[label="vxw300",fontsize=16,color="green",shape="box"];2506[label="vxw310",fontsize=16,color="green",shape="box"];2507[label="vxw300",fontsize=16,color="green",shape="box"];2508[label="vxw310",fontsize=16,color="green",shape="box"];2509[label="vxw300",fontsize=16,color="green",shape="box"];2510[label="vxw310",fontsize=16,color="green",shape="box"];2511[label="vxw300",fontsize=16,color="green",shape="box"];2512[label="vxw310",fontsize=16,color="green",shape="box"];2513[label="vxw300",fontsize=16,color="green",shape="box"];2514[label="vxw310",fontsize=16,color="green",shape="box"];2515[label="vxw300",fontsize=16,color="green",shape="box"];2516[label="vxw310",fontsize=16,color="green",shape="box"];2517[label="vxw300",fontsize=16,color="green",shape="box"];2518[label="vxw310",fontsize=16,color="green",shape="box"];2519[label="vxw300",fontsize=16,color="green",shape="box"];2520[label="vxw310",fontsize=16,color="green",shape="box"];2521[label="vxw300",fontsize=16,color="green",shape="box"];2522[label="vxw310",fontsize=16,color="green",shape="box"];2523[label="vxw300",fontsize=16,color="green",shape="box"];2524[label="vxw310",fontsize=16,color="green",shape="box"];2525[label="vxw300",fontsize=16,color="green",shape="box"];2526[label="vxw310",fontsize=16,color="green",shape="box"];2527[label="vxw300",fontsize=16,color="green",shape="box"];2528[label="vxw310",fontsize=16,color="green",shape="box"];2529[label="vxw300",fontsize=16,color="green",shape="box"];2530[label="vxw310",fontsize=16,color="green",shape="box"];2531 -> 837[label="",style="dashed", color="red", weight=0]; 2531[label="vxw301 == vxw311 && vxw302 <= vxw312",fontsize=16,color="magenta"];2531 -> 2632[label="",style="dashed", color="magenta", weight=3]; 2531 -> 2633[label="",style="dashed", color="magenta", weight=3]; 2532[label="vxw301 < vxw311",fontsize=16,color="blue",shape="box"];3611[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2532 -> 3611[label="",style="solid", color="blue", weight=9]; 3611 -> 2634[label="",style="solid", color="blue", weight=3]; 3612[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2532 -> 3612[label="",style="solid", color="blue", weight=9]; 3612 -> 2635[label="",style="solid", color="blue", weight=3]; 3613[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2532 -> 3613[label="",style="solid", color="blue", weight=9]; 3613 -> 2636[label="",style="solid", color="blue", weight=3]; 3614[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2532 -> 3614[label="",style="solid", color="blue", weight=9]; 3614 -> 2637[label="",style="solid", color="blue", weight=3]; 3615[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2532 -> 3615[label="",style="solid", color="blue", weight=9]; 3615 -> 2638[label="",style="solid", color="blue", weight=3]; 3616[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2532 -> 3616[label="",style="solid", color="blue", weight=9]; 3616 -> 2639[label="",style="solid", color="blue", weight=3]; 3617[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2532 -> 3617[label="",style="solid", color="blue", weight=9]; 3617 -> 2640[label="",style="solid", color="blue", weight=3]; 3618[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2532 -> 3618[label="",style="solid", color="blue", weight=9]; 3618 -> 2641[label="",style="solid", color="blue", weight=3]; 3619[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2532 -> 3619[label="",style="solid", color="blue", weight=9]; 3619 -> 2642[label="",style="solid", color="blue", weight=3]; 3620[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2532 -> 3620[label="",style="solid", color="blue", weight=9]; 3620 -> 2643[label="",style="solid", color="blue", weight=3]; 3621[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2532 -> 3621[label="",style="solid", color="blue", weight=9]; 3621 -> 2644[label="",style="solid", color="blue", weight=3]; 3622[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2532 -> 3622[label="",style="solid", color="blue", weight=9]; 3622 -> 2645[label="",style="solid", color="blue", weight=3]; 3623[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2532 -> 3623[label="",style="solid", color="blue", weight=9]; 3623 -> 2646[label="",style="solid", color="blue", weight=3]; 3624[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2532 -> 3624[label="",style="solid", color="blue", weight=9]; 3624 -> 2647[label="",style="solid", color="blue", weight=3]; 2533 -> 418[label="",style="dashed", color="red", weight=0]; 2533[label="vxw300 == vxw310",fontsize=16,color="magenta"];2533 -> 2648[label="",style="dashed", color="magenta", weight=3]; 2533 -> 2649[label="",style="dashed", color="magenta", weight=3]; 2534 -> 416[label="",style="dashed", color="red", weight=0]; 2534[label="vxw300 == vxw310",fontsize=16,color="magenta"];2534 -> 2650[label="",style="dashed", color="magenta", weight=3]; 2534 -> 2651[label="",style="dashed", color="magenta", weight=3]; 2535 -> 424[label="",style="dashed", color="red", weight=0]; 2535[label="vxw300 == vxw310",fontsize=16,color="magenta"];2535 -> 2652[label="",style="dashed", color="magenta", weight=3]; 2535 -> 2653[label="",style="dashed", color="magenta", weight=3]; 2536 -> 425[label="",style="dashed", color="red", weight=0]; 2536[label="vxw300 == vxw310",fontsize=16,color="magenta"];2536 -> 2654[label="",style="dashed", color="magenta", weight=3]; 2536 -> 2655[label="",style="dashed", color="magenta", weight=3]; 2537 -> 415[label="",style="dashed", color="red", weight=0]; 2537[label="vxw300 == vxw310",fontsize=16,color="magenta"];2537 -> 2656[label="",style="dashed", color="magenta", weight=3]; 2537 -> 2657[label="",style="dashed", color="magenta", weight=3]; 2538 -> 426[label="",style="dashed", color="red", weight=0]; 2538[label="vxw300 == vxw310",fontsize=16,color="magenta"];2538 -> 2658[label="",style="dashed", color="magenta", weight=3]; 2538 -> 2659[label="",style="dashed", color="magenta", weight=3]; 2539 -> 420[label="",style="dashed", color="red", weight=0]; 2539[label="vxw300 == vxw310",fontsize=16,color="magenta"];2539 -> 2660[label="",style="dashed", color="magenta", weight=3]; 2539 -> 2661[label="",style="dashed", color="magenta", weight=3]; 2540 -> 421[label="",style="dashed", color="red", weight=0]; 2540[label="vxw300 == vxw310",fontsize=16,color="magenta"];2540 -> 2662[label="",style="dashed", color="magenta", weight=3]; 2540 -> 2663[label="",style="dashed", color="magenta", weight=3]; 2541 -> 414[label="",style="dashed", color="red", weight=0]; 2541[label="vxw300 == vxw310",fontsize=16,color="magenta"];2541 -> 2664[label="",style="dashed", color="magenta", weight=3]; 2541 -> 2665[label="",style="dashed", color="magenta", weight=3]; 2542 -> 417[label="",style="dashed", color="red", weight=0]; 2542[label="vxw300 == vxw310",fontsize=16,color="magenta"];2542 -> 2666[label="",style="dashed", color="magenta", weight=3]; 2542 -> 2667[label="",style="dashed", color="magenta", weight=3]; 2543 -> 422[label="",style="dashed", color="red", weight=0]; 2543[label="vxw300 == vxw310",fontsize=16,color="magenta"];2543 -> 2668[label="",style="dashed", color="magenta", weight=3]; 2543 -> 2669[label="",style="dashed", color="magenta", weight=3]; 2544 -> 427[label="",style="dashed", color="red", weight=0]; 2544[label="vxw300 == vxw310",fontsize=16,color="magenta"];2544 -> 2670[label="",style="dashed", color="magenta", weight=3]; 2544 -> 2671[label="",style="dashed", color="magenta", weight=3]; 2545 -> 423[label="",style="dashed", color="red", weight=0]; 2545[label="vxw300 == vxw310",fontsize=16,color="magenta"];2545 -> 2672[label="",style="dashed", color="magenta", weight=3]; 2545 -> 2673[label="",style="dashed", color="magenta", weight=3]; 2546 -> 419[label="",style="dashed", color="red", weight=0]; 2546[label="vxw300 == vxw310",fontsize=16,color="magenta"];2546 -> 2674[label="",style="dashed", color="magenta", weight=3]; 2546 -> 2675[label="",style="dashed", color="magenta", weight=3]; 2547[label="vxw300",fontsize=16,color="green",shape="box"];2548[label="vxw310",fontsize=16,color="green",shape="box"];2549[label="vxw300",fontsize=16,color="green",shape="box"];2550[label="vxw310",fontsize=16,color="green",shape="box"];2551[label="vxw300",fontsize=16,color="green",shape="box"];2552[label="vxw310",fontsize=16,color="green",shape="box"];2553[label="vxw300",fontsize=16,color="green",shape="box"];2554[label="vxw310",fontsize=16,color="green",shape="box"];2555[label="vxw300",fontsize=16,color="green",shape="box"];2556[label="vxw310",fontsize=16,color="green",shape="box"];2557[label="vxw300",fontsize=16,color="green",shape="box"];2558[label="vxw310",fontsize=16,color="green",shape="box"];2559[label="vxw300",fontsize=16,color="green",shape="box"];2560[label="vxw310",fontsize=16,color="green",shape="box"];2561[label="vxw300",fontsize=16,color="green",shape="box"];2562[label="vxw310",fontsize=16,color="green",shape="box"];2563[label="vxw300",fontsize=16,color="green",shape="box"];2564[label="vxw310",fontsize=16,color="green",shape="box"];2565[label="vxw300",fontsize=16,color="green",shape="box"];2566[label="vxw310",fontsize=16,color="green",shape="box"];2567[label="vxw300",fontsize=16,color="green",shape="box"];2568[label="vxw310",fontsize=16,color="green",shape="box"];2569[label="vxw300",fontsize=16,color="green",shape="box"];2570[label="vxw310",fontsize=16,color="green",shape="box"];2571[label="vxw300",fontsize=16,color="green",shape="box"];2572[label="vxw310",fontsize=16,color="green",shape="box"];2573[label="vxw300",fontsize=16,color="green",shape="box"];2574[label="vxw310",fontsize=16,color="green",shape="box"];2575[label="primPlusNat vxw1590 vxw30100",fontsize=16,color="burlywood",shape="triangle"];3625[label="vxw1590/Succ vxw15900",fontsize=10,color="white",style="solid",shape="box"];2575 -> 3625[label="",style="solid", color="burlywood", weight=9]; 3625 -> 2676[label="",style="solid", color="burlywood", weight=3]; 3626[label="vxw1590/Zero",fontsize=10,color="white",style="solid",shape="box"];2575 -> 3626[label="",style="solid", color="burlywood", weight=9]; 3626 -> 2677[label="",style="solid", color="burlywood", weight=3]; 2576[label="vxw311",fontsize=16,color="green",shape="box"];2577[label="vxw301",fontsize=16,color="green",shape="box"];2578[label="vxw311",fontsize=16,color="green",shape="box"];2579[label="vxw301",fontsize=16,color="green",shape="box"];2580[label="vxw311",fontsize=16,color="green",shape="box"];2581[label="vxw301",fontsize=16,color="green",shape="box"];2582[label="vxw311",fontsize=16,color="green",shape="box"];2583[label="vxw301",fontsize=16,color="green",shape="box"];2584[label="vxw311",fontsize=16,color="green",shape="box"];2585[label="vxw301",fontsize=16,color="green",shape="box"];2586[label="vxw311",fontsize=16,color="green",shape="box"];2587[label="vxw301",fontsize=16,color="green",shape="box"];2588[label="vxw311",fontsize=16,color="green",shape="box"];2589[label="vxw301",fontsize=16,color="green",shape="box"];2590[label="vxw311",fontsize=16,color="green",shape="box"];2591[label="vxw301",fontsize=16,color="green",shape="box"];2592[label="vxw311",fontsize=16,color="green",shape="box"];2593[label="vxw301",fontsize=16,color="green",shape="box"];2594[label="vxw311",fontsize=16,color="green",shape="box"];2595[label="vxw301",fontsize=16,color="green",shape="box"];2596[label="vxw311",fontsize=16,color="green",shape="box"];2597[label="vxw301",fontsize=16,color="green",shape="box"];2598[label="vxw311",fontsize=16,color="green",shape="box"];2599[label="vxw301",fontsize=16,color="green",shape="box"];2600[label="vxw311",fontsize=16,color="green",shape="box"];2601[label="vxw301",fontsize=16,color="green",shape="box"];2602[label="vxw311",fontsize=16,color="green",shape="box"];2603[label="vxw301",fontsize=16,color="green",shape="box"];2604[label="vxw310",fontsize=16,color="green",shape="box"];2605[label="vxw300",fontsize=16,color="green",shape="box"];2606[label="vxw310",fontsize=16,color="green",shape="box"];2607[label="vxw300",fontsize=16,color="green",shape="box"];2608[label="vxw310",fontsize=16,color="green",shape="box"];2609[label="vxw300",fontsize=16,color="green",shape="box"];2610[label="vxw310",fontsize=16,color="green",shape="box"];2611[label="vxw300",fontsize=16,color="green",shape="box"];2612[label="vxw310",fontsize=16,color="green",shape="box"];2613[label="vxw300",fontsize=16,color="green",shape="box"];2614[label="vxw310",fontsize=16,color="green",shape="box"];2615[label="vxw300",fontsize=16,color="green",shape="box"];2616[label="vxw310",fontsize=16,color="green",shape="box"];2617[label="vxw300",fontsize=16,color="green",shape="box"];2618[label="vxw310",fontsize=16,color="green",shape="box"];2619[label="vxw300",fontsize=16,color="green",shape="box"];2620[label="vxw310",fontsize=16,color="green",shape="box"];2621[label="vxw300",fontsize=16,color="green",shape="box"];2622[label="vxw310",fontsize=16,color="green",shape="box"];2623[label="vxw300",fontsize=16,color="green",shape="box"];2624[label="vxw310",fontsize=16,color="green",shape="box"];2625[label="vxw300",fontsize=16,color="green",shape="box"];2626[label="vxw310",fontsize=16,color="green",shape="box"];2627[label="vxw300",fontsize=16,color="green",shape="box"];2628[label="vxw310",fontsize=16,color="green",shape="box"];2629[label="vxw300",fontsize=16,color="green",shape="box"];2630[label="vxw310",fontsize=16,color="green",shape="box"];2631[label="vxw300",fontsize=16,color="green",shape="box"];2632[label="vxw302 <= vxw312",fontsize=16,color="blue",shape="box"];3627[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2632 -> 3627[label="",style="solid", color="blue", weight=9]; 3627 -> 2678[label="",style="solid", color="blue", weight=3]; 3628[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2632 -> 3628[label="",style="solid", color="blue", weight=9]; 3628 -> 2679[label="",style="solid", color="blue", weight=3]; 3629[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2632 -> 3629[label="",style="solid", color="blue", weight=9]; 3629 -> 2680[label="",style="solid", color="blue", weight=3]; 3630[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2632 -> 3630[label="",style="solid", color="blue", weight=9]; 3630 -> 2681[label="",style="solid", color="blue", weight=3]; 3631[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2632 -> 3631[label="",style="solid", color="blue", weight=9]; 3631 -> 2682[label="",style="solid", color="blue", weight=3]; 3632[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2632 -> 3632[label="",style="solid", color="blue", weight=9]; 3632 -> 2683[label="",style="solid", color="blue", weight=3]; 3633[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2632 -> 3633[label="",style="solid", color="blue", weight=9]; 3633 -> 2684[label="",style="solid", color="blue", weight=3]; 3634[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2632 -> 3634[label="",style="solid", color="blue", weight=9]; 3634 -> 2685[label="",style="solid", color="blue", weight=3]; 3635[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2632 -> 3635[label="",style="solid", color="blue", weight=9]; 3635 -> 2686[label="",style="solid", color="blue", weight=3]; 3636[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2632 -> 3636[label="",style="solid", color="blue", weight=9]; 3636 -> 2687[label="",style="solid", color="blue", weight=3]; 3637[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2632 -> 3637[label="",style="solid", color="blue", weight=9]; 3637 -> 2688[label="",style="solid", color="blue", weight=3]; 3638[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2632 -> 3638[label="",style="solid", color="blue", weight=9]; 3638 -> 2689[label="",style="solid", color="blue", weight=3]; 3639[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2632 -> 3639[label="",style="solid", color="blue", weight=9]; 3639 -> 2690[label="",style="solid", color="blue", weight=3]; 3640[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2632 -> 3640[label="",style="solid", color="blue", weight=9]; 3640 -> 2691[label="",style="solid", color="blue", weight=3]; 2633[label="vxw301 == vxw311",fontsize=16,color="blue",shape="box"];3641[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2633 -> 3641[label="",style="solid", color="blue", weight=9]; 3641 -> 2692[label="",style="solid", color="blue", weight=3]; 3642[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2633 -> 3642[label="",style="solid", color="blue", weight=9]; 3642 -> 2693[label="",style="solid", color="blue", weight=3]; 3643[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2633 -> 3643[label="",style="solid", color="blue", weight=9]; 3643 -> 2694[label="",style="solid", color="blue", weight=3]; 3644[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2633 -> 3644[label="",style="solid", color="blue", weight=9]; 3644 -> 2695[label="",style="solid", color="blue", weight=3]; 3645[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2633 -> 3645[label="",style="solid", color="blue", weight=9]; 3645 -> 2696[label="",style="solid", color="blue", weight=3]; 3646[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2633 -> 3646[label="",style="solid", color="blue", weight=9]; 3646 -> 2697[label="",style="solid", color="blue", weight=3]; 3647[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2633 -> 3647[label="",style="solid", color="blue", weight=9]; 3647 -> 2698[label="",style="solid", color="blue", weight=3]; 3648[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2633 -> 3648[label="",style="solid", color="blue", weight=9]; 3648 -> 2699[label="",style="solid", color="blue", weight=3]; 3649[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2633 -> 3649[label="",style="solid", color="blue", weight=9]; 3649 -> 2700[label="",style="solid", color="blue", weight=3]; 3650[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2633 -> 3650[label="",style="solid", color="blue", weight=9]; 3650 -> 2701[label="",style="solid", color="blue", weight=3]; 3651[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2633 -> 3651[label="",style="solid", color="blue", weight=9]; 3651 -> 2702[label="",style="solid", color="blue", weight=3]; 3652[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2633 -> 3652[label="",style="solid", color="blue", weight=9]; 3652 -> 2703[label="",style="solid", color="blue", weight=3]; 3653[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2633 -> 3653[label="",style="solid", color="blue", weight=9]; 3653 -> 2704[label="",style="solid", color="blue", weight=3]; 3654[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2633 -> 3654[label="",style="solid", color="blue", weight=9]; 3654 -> 2705[label="",style="solid", color="blue", weight=3]; 2634 -> 1254[label="",style="dashed", color="red", weight=0]; 2634[label="vxw301 < vxw311",fontsize=16,color="magenta"];2634 -> 2706[label="",style="dashed", color="magenta", weight=3]; 2634 -> 2707[label="",style="dashed", color="magenta", weight=3]; 2635 -> 1255[label="",style="dashed", color="red", weight=0]; 2635[label="vxw301 < vxw311",fontsize=16,color="magenta"];2635 -> 2708[label="",style="dashed", color="magenta", weight=3]; 2635 -> 2709[label="",style="dashed", color="magenta", weight=3]; 2636 -> 1256[label="",style="dashed", color="red", weight=0]; 2636[label="vxw301 < vxw311",fontsize=16,color="magenta"];2636 -> 2710[label="",style="dashed", color="magenta", weight=3]; 2636 -> 2711[label="",style="dashed", color="magenta", weight=3]; 2637 -> 1257[label="",style="dashed", color="red", weight=0]; 2637[label="vxw301 < vxw311",fontsize=16,color="magenta"];2637 -> 2712[label="",style="dashed", color="magenta", weight=3]; 2637 -> 2713[label="",style="dashed", color="magenta", weight=3]; 2638 -> 1258[label="",style="dashed", color="red", weight=0]; 2638[label="vxw301 < vxw311",fontsize=16,color="magenta"];2638 -> 2714[label="",style="dashed", color="magenta", weight=3]; 2638 -> 2715[label="",style="dashed", color="magenta", weight=3]; 2639 -> 1259[label="",style="dashed", color="red", weight=0]; 2639[label="vxw301 < vxw311",fontsize=16,color="magenta"];2639 -> 2716[label="",style="dashed", color="magenta", weight=3]; 2639 -> 2717[label="",style="dashed", color="magenta", weight=3]; 2640 -> 1260[label="",style="dashed", color="red", weight=0]; 2640[label="vxw301 < vxw311",fontsize=16,color="magenta"];2640 -> 2718[label="",style="dashed", color="magenta", weight=3]; 2640 -> 2719[label="",style="dashed", color="magenta", weight=3]; 2641 -> 1261[label="",style="dashed", color="red", weight=0]; 2641[label="vxw301 < vxw311",fontsize=16,color="magenta"];2641 -> 2720[label="",style="dashed", color="magenta", weight=3]; 2641 -> 2721[label="",style="dashed", color="magenta", weight=3]; 2642 -> 1262[label="",style="dashed", color="red", weight=0]; 2642[label="vxw301 < vxw311",fontsize=16,color="magenta"];2642 -> 2722[label="",style="dashed", color="magenta", weight=3]; 2642 -> 2723[label="",style="dashed", color="magenta", weight=3]; 2643 -> 1263[label="",style="dashed", color="red", weight=0]; 2643[label="vxw301 < vxw311",fontsize=16,color="magenta"];2643 -> 2724[label="",style="dashed", color="magenta", weight=3]; 2643 -> 2725[label="",style="dashed", color="magenta", weight=3]; 2644 -> 1264[label="",style="dashed", color="red", weight=0]; 2644[label="vxw301 < vxw311",fontsize=16,color="magenta"];2644 -> 2726[label="",style="dashed", color="magenta", weight=3]; 2644 -> 2727[label="",style="dashed", color="magenta", weight=3]; 2645 -> 1265[label="",style="dashed", color="red", weight=0]; 2645[label="vxw301 < vxw311",fontsize=16,color="magenta"];2645 -> 2728[label="",style="dashed", color="magenta", weight=3]; 2645 -> 2729[label="",style="dashed", color="magenta", weight=3]; 2646 -> 1266[label="",style="dashed", color="red", weight=0]; 2646[label="vxw301 < vxw311",fontsize=16,color="magenta"];2646 -> 2730[label="",style="dashed", color="magenta", weight=3]; 2646 -> 2731[label="",style="dashed", color="magenta", weight=3]; 2647 -> 1267[label="",style="dashed", color="red", weight=0]; 2647[label="vxw301 < vxw311",fontsize=16,color="magenta"];2647 -> 2732[label="",style="dashed", color="magenta", weight=3]; 2647 -> 2733[label="",style="dashed", color="magenta", weight=3]; 2648[label="vxw310",fontsize=16,color="green",shape="box"];2649[label="vxw300",fontsize=16,color="green",shape="box"];2650[label="vxw310",fontsize=16,color="green",shape="box"];2651[label="vxw300",fontsize=16,color="green",shape="box"];2652[label="vxw310",fontsize=16,color="green",shape="box"];2653[label="vxw300",fontsize=16,color="green",shape="box"];2654[label="vxw310",fontsize=16,color="green",shape="box"];2655[label="vxw300",fontsize=16,color="green",shape="box"];2656[label="vxw310",fontsize=16,color="green",shape="box"];2657[label="vxw300",fontsize=16,color="green",shape="box"];2658[label="vxw310",fontsize=16,color="green",shape="box"];2659[label="vxw300",fontsize=16,color="green",shape="box"];2660[label="vxw310",fontsize=16,color="green",shape="box"];2661[label="vxw300",fontsize=16,color="green",shape="box"];2662[label="vxw310",fontsize=16,color="green",shape="box"];2663[label="vxw300",fontsize=16,color="green",shape="box"];2664[label="vxw310",fontsize=16,color="green",shape="box"];2665[label="vxw300",fontsize=16,color="green",shape="box"];2666[label="vxw310",fontsize=16,color="green",shape="box"];2667[label="vxw300",fontsize=16,color="green",shape="box"];2668[label="vxw310",fontsize=16,color="green",shape="box"];2669[label="vxw300",fontsize=16,color="green",shape="box"];2670[label="vxw310",fontsize=16,color="green",shape="box"];2671[label="vxw300",fontsize=16,color="green",shape="box"];2672[label="vxw310",fontsize=16,color="green",shape="box"];2673[label="vxw300",fontsize=16,color="green",shape="box"];2674[label="vxw310",fontsize=16,color="green",shape="box"];2675[label="vxw300",fontsize=16,color="green",shape="box"];2676[label="primPlusNat (Succ vxw15900) vxw30100",fontsize=16,color="burlywood",shape="box"];3655[label="vxw30100/Succ vxw301000",fontsize=10,color="white",style="solid",shape="box"];2676 -> 3655[label="",style="solid", color="burlywood", weight=9]; 3655 -> 2734[label="",style="solid", color="burlywood", weight=3]; 3656[label="vxw30100/Zero",fontsize=10,color="white",style="solid",shape="box"];2676 -> 3656[label="",style="solid", color="burlywood", weight=9]; 3656 -> 2735[label="",style="solid", color="burlywood", weight=3]; 2677[label="primPlusNat Zero vxw30100",fontsize=16,color="burlywood",shape="box"];3657[label="vxw30100/Succ vxw301000",fontsize=10,color="white",style="solid",shape="box"];2677 -> 3657[label="",style="solid", color="burlywood", weight=9]; 3657 -> 2736[label="",style="solid", color="burlywood", weight=3]; 3658[label="vxw30100/Zero",fontsize=10,color="white",style="solid",shape="box"];2677 -> 3658[label="",style="solid", color="burlywood", weight=9]; 3658 -> 2737[label="",style="solid", color="burlywood", weight=3]; 2678 -> 1223[label="",style="dashed", color="red", weight=0]; 2678[label="vxw302 <= vxw312",fontsize=16,color="magenta"];2678 -> 2738[label="",style="dashed", color="magenta", weight=3]; 2678 -> 2739[label="",style="dashed", color="magenta", weight=3]; 2679 -> 1224[label="",style="dashed", color="red", weight=0]; 2679[label="vxw302 <= vxw312",fontsize=16,color="magenta"];2679 -> 2740[label="",style="dashed", color="magenta", weight=3]; 2679 -> 2741[label="",style="dashed", color="magenta", weight=3]; 2680 -> 1225[label="",style="dashed", color="red", weight=0]; 2680[label="vxw302 <= vxw312",fontsize=16,color="magenta"];2680 -> 2742[label="",style="dashed", color="magenta", weight=3]; 2680 -> 2743[label="",style="dashed", color="magenta", weight=3]; 2681 -> 1226[label="",style="dashed", color="red", weight=0]; 2681[label="vxw302 <= vxw312",fontsize=16,color="magenta"];2681 -> 2744[label="",style="dashed", color="magenta", weight=3]; 2681 -> 2745[label="",style="dashed", color="magenta", weight=3]; 2682 -> 1227[label="",style="dashed", color="red", weight=0]; 2682[label="vxw302 <= vxw312",fontsize=16,color="magenta"];2682 -> 2746[label="",style="dashed", color="magenta", weight=3]; 2682 -> 2747[label="",style="dashed", color="magenta", weight=3]; 2683 -> 1228[label="",style="dashed", color="red", weight=0]; 2683[label="vxw302 <= vxw312",fontsize=16,color="magenta"];2683 -> 2748[label="",style="dashed", color="magenta", weight=3]; 2683 -> 2749[label="",style="dashed", color="magenta", weight=3]; 2684 -> 1229[label="",style="dashed", color="red", weight=0]; 2684[label="vxw302 <= vxw312",fontsize=16,color="magenta"];2684 -> 2750[label="",style="dashed", color="magenta", weight=3]; 2684 -> 2751[label="",style="dashed", color="magenta", weight=3]; 2685 -> 1230[label="",style="dashed", color="red", weight=0]; 2685[label="vxw302 <= vxw312",fontsize=16,color="magenta"];2685 -> 2752[label="",style="dashed", color="magenta", weight=3]; 2685 -> 2753[label="",style="dashed", color="magenta", weight=3]; 2686 -> 1231[label="",style="dashed", color="red", weight=0]; 2686[label="vxw302 <= vxw312",fontsize=16,color="magenta"];2686 -> 2754[label="",style="dashed", color="magenta", weight=3]; 2686 -> 2755[label="",style="dashed", color="magenta", weight=3]; 2687 -> 1232[label="",style="dashed", color="red", weight=0]; 2687[label="vxw302 <= vxw312",fontsize=16,color="magenta"];2687 -> 2756[label="",style="dashed", color="magenta", weight=3]; 2687 -> 2757[label="",style="dashed", color="magenta", weight=3]; 2688 -> 1233[label="",style="dashed", color="red", weight=0]; 2688[label="vxw302 <= vxw312",fontsize=16,color="magenta"];2688 -> 2758[label="",style="dashed", color="magenta", weight=3]; 2688 -> 2759[label="",style="dashed", color="magenta", weight=3]; 2689 -> 1234[label="",style="dashed", color="red", weight=0]; 2689[label="vxw302 <= vxw312",fontsize=16,color="magenta"];2689 -> 2760[label="",style="dashed", color="magenta", weight=3]; 2689 -> 2761[label="",style="dashed", color="magenta", weight=3]; 2690 -> 1235[label="",style="dashed", color="red", weight=0]; 2690[label="vxw302 <= vxw312",fontsize=16,color="magenta"];2690 -> 2762[label="",style="dashed", color="magenta", weight=3]; 2690 -> 2763[label="",style="dashed", color="magenta", weight=3]; 2691 -> 1236[label="",style="dashed", color="red", weight=0]; 2691[label="vxw302 <= vxw312",fontsize=16,color="magenta"];2691 -> 2764[label="",style="dashed", color="magenta", weight=3]; 2691 -> 2765[label="",style="dashed", color="magenta", weight=3]; 2692 -> 418[label="",style="dashed", color="red", weight=0]; 2692[label="vxw301 == vxw311",fontsize=16,color="magenta"];2692 -> 2766[label="",style="dashed", color="magenta", weight=3]; 2692 -> 2767[label="",style="dashed", color="magenta", weight=3]; 2693 -> 416[label="",style="dashed", color="red", weight=0]; 2693[label="vxw301 == vxw311",fontsize=16,color="magenta"];2693 -> 2768[label="",style="dashed", color="magenta", weight=3]; 2693 -> 2769[label="",style="dashed", color="magenta", weight=3]; 2694 -> 424[label="",style="dashed", color="red", weight=0]; 2694[label="vxw301 == vxw311",fontsize=16,color="magenta"];2694 -> 2770[label="",style="dashed", color="magenta", weight=3]; 2694 -> 2771[label="",style="dashed", color="magenta", weight=3]; 2695 -> 425[label="",style="dashed", color="red", weight=0]; 2695[label="vxw301 == vxw311",fontsize=16,color="magenta"];2695 -> 2772[label="",style="dashed", color="magenta", weight=3]; 2695 -> 2773[label="",style="dashed", color="magenta", weight=3]; 2696 -> 415[label="",style="dashed", color="red", weight=0]; 2696[label="vxw301 == vxw311",fontsize=16,color="magenta"];2696 -> 2774[label="",style="dashed", color="magenta", weight=3]; 2696 -> 2775[label="",style="dashed", color="magenta", weight=3]; 2697 -> 426[label="",style="dashed", color="red", weight=0]; 2697[label="vxw301 == vxw311",fontsize=16,color="magenta"];2697 -> 2776[label="",style="dashed", color="magenta", weight=3]; 2697 -> 2777[label="",style="dashed", color="magenta", weight=3]; 2698 -> 420[label="",style="dashed", color="red", weight=0]; 2698[label="vxw301 == vxw311",fontsize=16,color="magenta"];2698 -> 2778[label="",style="dashed", color="magenta", weight=3]; 2698 -> 2779[label="",style="dashed", color="magenta", weight=3]; 2699 -> 421[label="",style="dashed", color="red", weight=0]; 2699[label="vxw301 == vxw311",fontsize=16,color="magenta"];2699 -> 2780[label="",style="dashed", color="magenta", weight=3]; 2699 -> 2781[label="",style="dashed", color="magenta", weight=3]; 2700 -> 414[label="",style="dashed", color="red", weight=0]; 2700[label="vxw301 == vxw311",fontsize=16,color="magenta"];2700 -> 2782[label="",style="dashed", color="magenta", weight=3]; 2700 -> 2783[label="",style="dashed", color="magenta", weight=3]; 2701 -> 417[label="",style="dashed", color="red", weight=0]; 2701[label="vxw301 == vxw311",fontsize=16,color="magenta"];2701 -> 2784[label="",style="dashed", color="magenta", weight=3]; 2701 -> 2785[label="",style="dashed", color="magenta", weight=3]; 2702 -> 422[label="",style="dashed", color="red", weight=0]; 2702[label="vxw301 == vxw311",fontsize=16,color="magenta"];2702 -> 2786[label="",style="dashed", color="magenta", weight=3]; 2702 -> 2787[label="",style="dashed", color="magenta", weight=3]; 2703 -> 427[label="",style="dashed", color="red", weight=0]; 2703[label="vxw301 == vxw311",fontsize=16,color="magenta"];2703 -> 2788[label="",style="dashed", color="magenta", weight=3]; 2703 -> 2789[label="",style="dashed", color="magenta", weight=3]; 2704 -> 423[label="",style="dashed", color="red", weight=0]; 2704[label="vxw301 == vxw311",fontsize=16,color="magenta"];2704 -> 2790[label="",style="dashed", color="magenta", weight=3]; 2704 -> 2791[label="",style="dashed", color="magenta", weight=3]; 2705 -> 419[label="",style="dashed", color="red", weight=0]; 2705[label="vxw301 == vxw311",fontsize=16,color="magenta"];2705 -> 2792[label="",style="dashed", color="magenta", weight=3]; 2705 -> 2793[label="",style="dashed", color="magenta", weight=3]; 2706[label="vxw301",fontsize=16,color="green",shape="box"];2707[label="vxw311",fontsize=16,color="green",shape="box"];2708[label="vxw301",fontsize=16,color="green",shape="box"];2709[label="vxw311",fontsize=16,color="green",shape="box"];2710[label="vxw301",fontsize=16,color="green",shape="box"];2711[label="vxw311",fontsize=16,color="green",shape="box"];2712[label="vxw301",fontsize=16,color="green",shape="box"];2713[label="vxw311",fontsize=16,color="green",shape="box"];2714[label="vxw301",fontsize=16,color="green",shape="box"];2715[label="vxw311",fontsize=16,color="green",shape="box"];2716[label="vxw301",fontsize=16,color="green",shape="box"];2717[label="vxw311",fontsize=16,color="green",shape="box"];2718[label="vxw301",fontsize=16,color="green",shape="box"];2719[label="vxw311",fontsize=16,color="green",shape="box"];2720[label="vxw301",fontsize=16,color="green",shape="box"];2721[label="vxw311",fontsize=16,color="green",shape="box"];2722[label="vxw301",fontsize=16,color="green",shape="box"];2723[label="vxw311",fontsize=16,color="green",shape="box"];2724[label="vxw301",fontsize=16,color="green",shape="box"];2725[label="vxw311",fontsize=16,color="green",shape="box"];2726[label="vxw301",fontsize=16,color="green",shape="box"];2727[label="vxw311",fontsize=16,color="green",shape="box"];2728[label="vxw301",fontsize=16,color="green",shape="box"];2729[label="vxw311",fontsize=16,color="green",shape="box"];2730[label="vxw301",fontsize=16,color="green",shape="box"];2731[label="vxw311",fontsize=16,color="green",shape="box"];2732[label="vxw301",fontsize=16,color="green",shape="box"];2733[label="vxw311",fontsize=16,color="green",shape="box"];2734[label="primPlusNat (Succ vxw15900) (Succ vxw301000)",fontsize=16,color="black",shape="box"];2734 -> 2794[label="",style="solid", color="black", weight=3]; 2735[label="primPlusNat (Succ vxw15900) Zero",fontsize=16,color="black",shape="box"];2735 -> 2795[label="",style="solid", color="black", weight=3]; 2736[label="primPlusNat Zero (Succ vxw301000)",fontsize=16,color="black",shape="box"];2736 -> 2796[label="",style="solid", color="black", weight=3]; 2737[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];2737 -> 2797[label="",style="solid", color="black", weight=3]; 2738[label="vxw312",fontsize=16,color="green",shape="box"];2739[label="vxw302",fontsize=16,color="green",shape="box"];2740[label="vxw312",fontsize=16,color="green",shape="box"];2741[label="vxw302",fontsize=16,color="green",shape="box"];2742[label="vxw312",fontsize=16,color="green",shape="box"];2743[label="vxw302",fontsize=16,color="green",shape="box"];2744[label="vxw312",fontsize=16,color="green",shape="box"];2745[label="vxw302",fontsize=16,color="green",shape="box"];2746[label="vxw312",fontsize=16,color="green",shape="box"];2747[label="vxw302",fontsize=16,color="green",shape="box"];2748[label="vxw312",fontsize=16,color="green",shape="box"];2749[label="vxw302",fontsize=16,color="green",shape="box"];2750[label="vxw312",fontsize=16,color="green",shape="box"];2751[label="vxw302",fontsize=16,color="green",shape="box"];2752[label="vxw312",fontsize=16,color="green",shape="box"];2753[label="vxw302",fontsize=16,color="green",shape="box"];2754[label="vxw312",fontsize=16,color="green",shape="box"];2755[label="vxw302",fontsize=16,color="green",shape="box"];2756[label="vxw312",fontsize=16,color="green",shape="box"];2757[label="vxw302",fontsize=16,color="green",shape="box"];2758[label="vxw312",fontsize=16,color="green",shape="box"];2759[label="vxw302",fontsize=16,color="green",shape="box"];2760[label="vxw312",fontsize=16,color="green",shape="box"];2761[label="vxw302",fontsize=16,color="green",shape="box"];2762[label="vxw312",fontsize=16,color="green",shape="box"];2763[label="vxw302",fontsize=16,color="green",shape="box"];2764[label="vxw312",fontsize=16,color="green",shape="box"];2765[label="vxw302",fontsize=16,color="green",shape="box"];2766[label="vxw311",fontsize=16,color="green",shape="box"];2767[label="vxw301",fontsize=16,color="green",shape="box"];2768[label="vxw311",fontsize=16,color="green",shape="box"];2769[label="vxw301",fontsize=16,color="green",shape="box"];2770[label="vxw311",fontsize=16,color="green",shape="box"];2771[label="vxw301",fontsize=16,color="green",shape="box"];2772[label="vxw311",fontsize=16,color="green",shape="box"];2773[label="vxw301",fontsize=16,color="green",shape="box"];2774[label="vxw311",fontsize=16,color="green",shape="box"];2775[label="vxw301",fontsize=16,color="green",shape="box"];2776[label="vxw311",fontsize=16,color="green",shape="box"];2777[label="vxw301",fontsize=16,color="green",shape="box"];2778[label="vxw311",fontsize=16,color="green",shape="box"];2779[label="vxw301",fontsize=16,color="green",shape="box"];2780[label="vxw311",fontsize=16,color="green",shape="box"];2781[label="vxw301",fontsize=16,color="green",shape="box"];2782[label="vxw311",fontsize=16,color="green",shape="box"];2783[label="vxw301",fontsize=16,color="green",shape="box"];2784[label="vxw311",fontsize=16,color="green",shape="box"];2785[label="vxw301",fontsize=16,color="green",shape="box"];2786[label="vxw311",fontsize=16,color="green",shape="box"];2787[label="vxw301",fontsize=16,color="green",shape="box"];2788[label="vxw311",fontsize=16,color="green",shape="box"];2789[label="vxw301",fontsize=16,color="green",shape="box"];2790[label="vxw311",fontsize=16,color="green",shape="box"];2791[label="vxw301",fontsize=16,color="green",shape="box"];2792[label="vxw311",fontsize=16,color="green",shape="box"];2793[label="vxw301",fontsize=16,color="green",shape="box"];2794[label="Succ (Succ (primPlusNat vxw15900 vxw301000))",fontsize=16,color="green",shape="box"];2794 -> 2798[label="",style="dashed", color="green", weight=3]; 2795[label="Succ vxw15900",fontsize=16,color="green",shape="box"];2796[label="Succ vxw301000",fontsize=16,color="green",shape="box"];2797[label="Zero",fontsize=16,color="green",shape="box"];2798 -> 2575[label="",style="dashed", color="red", weight=0]; 2798[label="primPlusNat vxw15900 vxw301000",fontsize=16,color="magenta"];2798 -> 2799[label="",style="dashed", color="magenta", weight=3]; 2798 -> 2800[label="",style="dashed", color="magenta", weight=3]; 2799[label="vxw15900",fontsize=16,color="green",shape="box"];2800[label="vxw301000",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(vxw3000), Succ(vxw40000)) -> new_primCmpNat(vxw3000, vxw40000) 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(vxw3000), Succ(vxw40000)) -> new_primCmpNat(vxw3000, vxw40000) 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_primCompAux(vxw30, vxw400, vxw31, vxw401, cc) -> new_primCompAux0(vxw31, vxw401, new_compare4(vxw30, vxw400, cc), app(ty_[], cc)) new_ltEs(vxw30, vxw31, de) -> new_compare(vxw30, vxw31, de) new_compare22(vxw52, vxw53, vxw54, vxw55, vxw56, vxw57, False, cab, cac, app(ty_Maybe, cae)) -> new_ltEs0(vxw54, vxw57, cae) new_ltEs1(@2(vxw300, vxw301), @2(vxw310, vxw311), app(app(ty_Either, hb), hc), gc) -> new_lt3(vxw300, vxw310, hb, hc) new_compare21(vxw79, vxw80, vxw81, vxw82, False, app(app(app(ty_@3, bgc), bgd), bge), bgb) -> new_compare2(vxw79, vxw81, bgc, bgd, bge) new_compare22(vxw52, vxw53, vxw54, vxw55, vxw56, vxw57, False, cab, app(ty_[], cbe), cbf) -> new_lt(vxw53, vxw56, cbe) new_compare20(@2(vxw300, vxw301), @2(vxw310, vxw311), False, app(app(ty_@2, app(ty_[], gb)), gc)) -> new_lt(vxw300, vxw310, gb) new_compare20(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), False, app(app(app(ty_@3, app(ty_[], bca)), he), bah)) -> new_lt(vxw300, vxw310, bca) new_ltEs2(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), hd, app(ty_[], bag), bah) -> new_lt(vxw301, vxw311, bag) new_compare21(vxw79, vxw80, vxw81, vxw82, False, bgh, app(app(ty_@2, bhc), bhd)) -> new_ltEs1(vxw80, vxw82, bhc, bhd) new_compare20(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), False, app(app(app(ty_@3, app(app(ty_Either, bch), bda)), he), bah)) -> new_lt3(vxw300, vxw310, bch, bda) new_ltEs2(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), hd, he, app(ty_Maybe, hg)) -> new_ltEs0(vxw302, vxw312, hg) new_compare3(Left(vxw300), Left(vxw4000), dc, dd) -> new_compare23(vxw300, vxw4000, new_esEs10(vxw300, vxw4000, dc), dc, dd) new_compare20(Just(vxw300), Just(vxw310), False, app(ty_Maybe, app(ty_Maybe, dg))) -> new_ltEs0(vxw300, vxw310, dg) new_compare20(Left(vxw300), Left(vxw310), False, app(app(ty_Either, app(app(ty_Either, beb), bec)), bdc)) -> new_ltEs3(vxw300, vxw310, beb, bec) new_ltEs3(Right(vxw300), Right(vxw310), bed, app(app(ty_@2, beg), beh)) -> new_ltEs1(vxw300, vxw310, beg, beh) new_compare21(vxw79, vxw80, vxw81, vxw82, False, app(ty_Maybe, bfg), bgb) -> new_compare0(vxw79, vxw81, bfg) new_ltEs1(@2(vxw300, vxw301), @2(vxw310, vxw311), eg, app(app(ty_Either, fh), ga)) -> new_ltEs3(vxw301, vxw311, fh, ga) new_compare22(vxw52, vxw53, vxw54, vxw55, vxw56, vxw57, False, cab, app(app(ty_Either, cce), ccf), cbf) -> new_lt3(vxw53, vxw56, cce, ccf) new_compare24(vxw70, vxw71, False, cfb, app(app(app(ty_@3, cfg), cfh), cga)) -> new_ltEs2(vxw70, vxw71, cfg, cfh, cga) new_compare20(Just(vxw300), Just(vxw310), False, app(ty_Maybe, app(ty_[], df))) -> new_ltEs(vxw300, vxw310, df) new_compare21(vxw79, vxw80, vxw81, vxw82, False, app(app(ty_@2, bfh), bga), bgb) -> new_compare1(vxw79, vxw81, bfh, bga) new_compare20(@2(vxw300, vxw301), @2(vxw310, vxw311), False, app(app(ty_@2, app(app(ty_@2, ge), gf)), gc)) -> new_lt1(vxw300, vxw310, ge, gf) new_compare20(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), False, app(app(app(ty_@3, hd), app(ty_[], bag)), bah)) -> new_lt(vxw301, vxw311, bag) new_compare22(vxw52, vxw53, vxw54, vxw55, vxw56, vxw57, False, cab, cac, app(app(ty_Either, cbc), cbd)) -> new_ltEs3(vxw54, vxw57, cbc, cbd) new_compare20(Left(vxw300), Left(vxw310), False, app(app(ty_Either, app(ty_[], bdb)), bdc)) -> new_ltEs(vxw300, vxw310, bdb) new_compare20(Right(vxw300), Right(vxw310), False, app(app(ty_Either, bed), app(app(app(ty_@3, bfa), bfb), bfc))) -> new_ltEs2(vxw300, vxw310, bfa, bfb, bfc) new_ltEs0(Just(vxw300), Just(vxw310), app(app(ty_@2, dh), ea)) -> new_ltEs1(vxw300, vxw310, dh, ea) new_compare20(Left(vxw300), Left(vxw310), False, app(app(ty_Either, app(ty_Maybe, bdd)), bdc)) -> new_ltEs0(vxw300, vxw310, bdd) new_compare20(vxw30, vxw31, False, app(ty_[], de)) -> new_compare(vxw30, vxw31, de) new_ltEs2(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), hd, he, app(ty_[], hf)) -> new_ltEs(vxw302, vxw312, hf) new_compare20(@2(vxw300, vxw301), @2(vxw310, vxw311), False, app(app(ty_@2, eg), app(app(app(ty_@3, fd), ff), fg))) -> new_ltEs2(vxw301, vxw311, fd, ff, fg) new_ltEs2(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), hd, app(ty_Maybe, bba), bah) -> new_lt0(vxw301, vxw311, bba) new_lt2(vxw79, vxw81, bgc, bgd, bge) -> new_compare2(vxw79, vxw81, bgc, bgd, bge) new_compare22(vxw52, vxw53, vxw54, vxw55, vxw56, vxw57, False, app(app(app(ty_@3, cdc), cdd), cde), cac, cbf) -> new_lt2(vxw52, vxw55, cdc, cdd, cde) new_compare20(Just(vxw300), Just(vxw310), False, app(ty_Maybe, app(app(ty_Either, ee), ef))) -> new_ltEs3(vxw300, vxw310, ee, ef) new_ltEs0(Just(vxw300), Just(vxw310), app(ty_Maybe, dg)) -> new_ltEs0(vxw300, vxw310, dg) new_ltEs1(@2(vxw300, vxw301), @2(vxw310, vxw311), app(app(ty_@2, ge), gf), gc) -> new_lt1(vxw300, vxw310, ge, gf) new_ltEs2(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), app(ty_Maybe, bcb), he, bah) -> new_lt0(vxw300, vxw310, bcb) new_primCompAux0(vxw23, vxw24, EQ, app(app(ty_Either, bh), ca)) -> new_compare3(vxw23, vxw24, bh, ca) new_ltEs3(Right(vxw300), Right(vxw310), bed, app(ty_[], bee)) -> new_ltEs(vxw300, vxw310, bee) new_primCompAux0(vxw23, vxw24, EQ, app(ty_[], ba)) -> new_compare(vxw23, vxw24, ba) new_compare20(Left(vxw300), Left(vxw310), False, app(app(ty_Either, app(app(ty_@2, bde), bdf)), bdc)) -> new_ltEs1(vxw300, vxw310, bde, bdf) new_compare20(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), False, app(app(app(ty_@3, hd), he), app(app(ty_Either, bae), baf))) -> new_ltEs3(vxw302, vxw312, bae, baf) new_compare22(vxw52, vxw53, vxw54, vxw55, vxw56, vxw57, False, cab, app(ty_Maybe, cbg), cbf) -> new_lt0(vxw53, vxw56, cbg) new_ltEs3(Left(vxw300), Left(vxw310), app(app(app(ty_@3, bdg), bdh), bea), bdc) -> new_ltEs2(vxw300, vxw310, bdg, bdh, bea) new_compare24(vxw70, vxw71, False, cfb, app(ty_[], cfc)) -> new_ltEs(vxw70, vxw71, cfc) new_primCompAux0(vxw23, vxw24, EQ, app(ty_Maybe, bb)) -> new_compare0(vxw23, vxw24, bb) new_ltEs1(@2(vxw300, vxw301), @2(vxw310, vxw311), eg, app(ty_[], eh)) -> new_ltEs(vxw301, vxw311, eh) new_ltEs2(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), hd, he, app(app(ty_Either, bae), baf)) -> new_ltEs3(vxw302, vxw312, bae, baf) new_compare23(vxw63, vxw64, False, app(ty_[], cdh), cea) -> new_ltEs(vxw63, vxw64, cdh) new_compare24(vxw70, vxw71, False, cfb, app(app(ty_@2, cfe), cff)) -> new_ltEs1(vxw70, vxw71, cfe, cff) new_ltEs2(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), app(app(app(ty_@3, bce), bcf), bcg), he, bah) -> new_lt2(vxw300, vxw310, bce, bcf, bcg) new_compare23(vxw63, vxw64, False, app(app(app(ty_@3, cee), cef), ceg), cea) -> new_ltEs2(vxw63, vxw64, cee, cef, ceg) new_ltEs3(Left(vxw300), Left(vxw310), app(ty_[], bdb), bdc) -> new_ltEs(vxw300, vxw310, bdb) new_compare20(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), False, app(app(app(ty_@3, hd), he), app(ty_Maybe, hg))) -> new_ltEs0(vxw302, vxw312, hg) new_ltEs1(@2(vxw300, vxw301), @2(vxw310, vxw311), app(app(app(ty_@3, gg), gh), ha), gc) -> new_lt2(vxw300, vxw310, gg, gh, ha) new_ltEs1(@2(vxw300, vxw301), @2(vxw310, vxw311), eg, app(app(app(ty_@3, fd), ff), fg)) -> new_ltEs2(vxw301, vxw311, fd, ff, fg) new_compare24(vxw70, vxw71, False, cfb, app(app(ty_Either, cgb), cgc)) -> new_ltEs3(vxw70, vxw71, cgb, cgc) new_compare20(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), False, app(app(app(ty_@3, app(ty_Maybe, bcb)), he), bah)) -> new_lt0(vxw300, vxw310, bcb) new_compare20(@2(vxw300, vxw301), @2(vxw310, vxw311), False, app(app(ty_@2, eg), app(app(ty_@2, fb), fc))) -> new_ltEs1(vxw301, vxw311, fb, fc) new_ltEs3(Left(vxw300), Left(vxw310), app(app(ty_Either, beb), bec), bdc) -> new_ltEs3(vxw300, vxw310, beb, bec) new_primCompAux0(vxw23, vxw24, EQ, app(app(ty_@2, bc), bd)) -> new_compare1(vxw23, vxw24, bc, bd) new_primCompAux(Just(vxw300), Just(vxw4000), vxw31, vxw401, app(ty_Maybe, cd)) -> new_compare20(vxw300, vxw4000, new_esEs4(vxw300, vxw4000, cd), cd) new_ltEs0(Just(vxw300), Just(vxw310), app(app(app(ty_@3, eb), ec), ed)) -> new_ltEs2(vxw300, vxw310, eb, ec, ed) new_compare20(Right(vxw300), Right(vxw310), False, app(app(ty_Either, bed), app(ty_Maybe, bef))) -> new_ltEs0(vxw300, vxw310, bef) new_compare20(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), False, app(app(app(ty_@3, hd), app(app(ty_@2, bbb), bbc)), bah)) -> new_lt1(vxw301, vxw311, bbb, bbc) new_compare20(Right(vxw300), Right(vxw310), False, app(app(ty_Either, bed), app(app(ty_@2, beg), beh))) -> new_ltEs1(vxw300, vxw310, beg, beh) new_ltEs0(Just(vxw300), Just(vxw310), app(ty_[], df)) -> new_ltEs(vxw300, vxw310, df) new_ltEs2(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), hd, he, app(app(ty_@2, hh), baa)) -> new_ltEs1(vxw302, vxw312, hh, baa) new_compare20(@2(vxw300, vxw301), @2(vxw310, vxw311), False, app(app(ty_@2, eg), app(ty_[], eh))) -> new_ltEs(vxw301, vxw311, eh) new_compare1(@2(vxw300, vxw301), @2(vxw4000, vxw4001), ce, cf) -> new_compare21(vxw300, vxw301, vxw4000, vxw4001, new_asAs(new_esEs6(vxw300, vxw4000, ce), new_esEs5(vxw301, vxw4001, cf)), ce, cf) new_compare2(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), cg, da, db) -> new_compare22(vxw300, vxw301, vxw302, vxw4000, vxw4001, vxw4002, new_asAs(new_esEs9(vxw300, vxw4000, cg), new_asAs(new_esEs8(vxw301, vxw4001, da), new_esEs7(vxw302, vxw4002, db))), cg, da, db) new_ltEs2(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), app(ty_[], bca), he, bah) -> new_lt(vxw300, vxw310, bca) new_ltEs0(Just(vxw300), Just(vxw310), app(app(ty_Either, ee), ef)) -> new_ltEs3(vxw300, vxw310, ee, ef) new_ltEs1(@2(vxw300, vxw301), @2(vxw310, vxw311), app(ty_Maybe, gd), gc) -> new_lt0(vxw300, vxw310, gd) new_compare3(Right(vxw300), Right(vxw4000), dc, dd) -> new_compare24(vxw300, vxw4000, new_esEs11(vxw300, vxw4000, dd), dc, dd) new_compare22(vxw52, vxw53, vxw54, vxw55, vxw56, vxw57, False, app(ty_[], ccg), cac, cbf) -> new_lt(vxw52, vxw55, ccg) new_ltEs2(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), app(app(ty_Either, bch), bda), he, bah) -> new_lt3(vxw300, vxw310, bch, bda) new_compare21(vxw79, vxw80, vxw81, vxw82, False, app(app(ty_Either, bgf), bgg), bgb) -> new_compare3(vxw79, vxw81, bgf, bgg) new_compare23(vxw63, vxw64, False, app(app(ty_@2, cec), ced), cea) -> new_ltEs1(vxw63, vxw64, cec, ced) new_compare20(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), False, app(app(app(ty_@3, app(app(app(ty_@3, bce), bcf), bcg)), he), bah)) -> new_lt2(vxw300, vxw310, bce, bcf, bcg) new_ltEs1(@2(vxw300, vxw301), @2(vxw310, vxw311), eg, app(ty_Maybe, fa)) -> new_ltEs0(vxw301, vxw311, fa) new_compare20(Left(vxw300), Left(vxw310), False, app(app(ty_Either, app(app(app(ty_@3, bdg), bdh), bea)), bdc)) -> new_ltEs2(vxw300, vxw310, bdg, bdh, bea) new_primCompAux(@2(vxw300, vxw301), @2(vxw4000, vxw4001), vxw31, vxw401, app(app(ty_@2, ce), cf)) -> new_compare21(vxw300, vxw301, vxw4000, vxw4001, new_asAs(new_esEs6(vxw300, vxw4000, ce), new_esEs5(vxw301, vxw4001, cf)), ce, cf) new_primCompAux(Right(vxw300), Right(vxw4000), vxw31, vxw401, app(app(ty_Either, dc), dd)) -> new_compare24(vxw300, vxw4000, new_esEs11(vxw300, vxw4000, dd), dc, dd) new_compare20(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), False, app(app(app(ty_@3, hd), app(app(ty_Either, bbg), bbh)), bah)) -> new_lt3(vxw301, vxw311, bbg, bbh) new_compare22(vxw52, vxw53, vxw54, vxw55, vxw56, vxw57, False, cab, cac, app(app(app(ty_@3, cah), cba), cbb)) -> new_ltEs2(vxw54, vxw57, cah, cba, cbb) new_compare21(vxw79, vxw80, vxw81, vxw82, False, bgh, app(ty_[], bha)) -> new_ltEs(vxw80, vxw82, bha) new_ltEs2(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), app(app(ty_@2, bcc), bcd), he, bah) -> new_lt1(vxw300, vxw310, bcc, bcd) new_compare20(Right(vxw300), Right(vxw310), False, app(app(ty_Either, bed), app(app(ty_Either, bfd), bfe))) -> new_ltEs3(vxw300, vxw310, bfd, bfe) new_ltEs3(Right(vxw300), Right(vxw310), bed, app(app(ty_Either, bfd), bfe)) -> new_ltEs3(vxw300, vxw310, bfd, bfe) new_ltEs1(@2(vxw300, vxw301), @2(vxw310, vxw311), eg, app(app(ty_@2, fb), fc)) -> new_ltEs1(vxw301, vxw311, fb, fc) new_lt0(vxw79, vxw81, bfg) -> new_compare0(vxw79, vxw81, bfg) new_compare20(@2(vxw300, vxw301), @2(vxw310, vxw311), False, app(app(ty_@2, eg), app(ty_Maybe, fa))) -> new_ltEs0(vxw301, vxw311, fa) new_compare20(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), False, app(app(app(ty_@3, hd), he), app(ty_[], hf))) -> new_ltEs(vxw302, vxw312, hf) new_lt3(vxw79, vxw81, bgf, bgg) -> new_compare3(vxw79, vxw81, bgf, bgg) new_lt(vxw79, vxw81, bff) -> new_compare(vxw79, vxw81, bff) new_compare22(vxw52, vxw53, vxw54, vxw55, vxw56, vxw57, False, cab, cac, app(app(ty_@2, caf), cag)) -> new_ltEs1(vxw54, vxw57, caf, cag) new_compare23(vxw63, vxw64, False, app(ty_Maybe, ceb), cea) -> new_ltEs0(vxw63, vxw64, ceb) new_compare20(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), False, app(app(app(ty_@3, hd), app(ty_Maybe, bba)), bah)) -> new_lt0(vxw301, vxw311, bba) new_compare22(vxw52, vxw53, vxw54, vxw55, vxw56, vxw57, False, app(ty_Maybe, cch), cac, cbf) -> new_lt0(vxw52, vxw55, cch) new_compare24(vxw70, vxw71, False, cfb, app(ty_Maybe, cfd)) -> new_ltEs0(vxw70, vxw71, cfd) new_compare21(vxw79, vxw80, vxw81, vxw82, False, app(ty_[], bff), bgb) -> new_compare(vxw79, vxw81, bff) new_compare20(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), False, app(app(app(ty_@3, hd), he), app(app(app(ty_@3, bab), bac), bad))) -> new_ltEs2(vxw302, vxw312, bab, bac, bad) new_compare23(vxw63, vxw64, False, app(app(ty_Either, ceh), cfa), cea) -> new_ltEs3(vxw63, vxw64, ceh, cfa) new_compare20(Just(vxw300), Just(vxw310), False, app(ty_Maybe, app(app(app(ty_@3, eb), ec), ed))) -> new_ltEs2(vxw300, vxw310, eb, ec, ed) new_ltEs2(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), hd, he, app(app(app(ty_@3, bab), bac), bad)) -> new_ltEs2(vxw302, vxw312, bab, bac, bad) new_compare21(vxw79, vxw80, vxw81, vxw82, False, bgh, app(app(app(ty_@3, bhe), bhf), bhg)) -> new_ltEs2(vxw80, vxw82, bhe, bhf, bhg) new_ltEs3(Left(vxw300), Left(vxw310), app(ty_Maybe, bdd), bdc) -> new_ltEs0(vxw300, vxw310, bdd) new_primCompAux(Left(vxw300), Left(vxw4000), vxw31, vxw401, app(app(ty_Either, dc), dd)) -> new_compare23(vxw300, vxw4000, new_esEs10(vxw300, vxw4000, dc), dc, dd) new_compare20(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), False, app(app(app(ty_@3, hd), he), app(app(ty_@2, hh), baa))) -> new_ltEs1(vxw302, vxw312, hh, baa) new_compare22(vxw52, vxw53, vxw54, vxw55, vxw56, vxw57, False, cab, app(app(ty_@2, cbh), cca), cbf) -> new_lt1(vxw53, vxw56, cbh, cca) new_primCompAux(:(vxw300, vxw301), :(vxw4000, vxw4001), vxw31, vxw401, app(ty_[], cb)) -> new_primCompAux(vxw300, vxw4000, vxw301, vxw4001, cb) new_primCompAux0(vxw23, vxw24, EQ, app(app(app(ty_@3, be), bf), bg)) -> new_compare2(vxw23, vxw24, be, bf, bg) new_compare22(vxw52, vxw53, vxw54, vxw55, vxw56, vxw57, False, cab, app(app(app(ty_@3, ccb), ccc), ccd), cbf) -> new_lt2(vxw53, vxw56, ccb, ccc, ccd) new_compare21(vxw79, vxw80, vxw81, vxw82, False, bgh, app(ty_Maybe, bhb)) -> new_ltEs0(vxw80, vxw82, bhb) new_compare22(vxw52, vxw53, vxw54, vxw55, vxw56, vxw57, False, cab, cac, app(ty_[], cad)) -> new_ltEs(vxw54, vxw57, cad) new_compare20(@2(vxw300, vxw301), @2(vxw310, vxw311), False, app(app(ty_@2, app(ty_Maybe, gd)), gc)) -> new_lt0(vxw300, vxw310, gd) new_primCompAux(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), vxw31, vxw401, app(app(app(ty_@3, cg), da), db)) -> new_compare22(vxw300, vxw301, vxw302, vxw4000, vxw4001, vxw4002, new_asAs(new_esEs9(vxw300, vxw4000, cg), new_asAs(new_esEs8(vxw301, vxw4001, da), new_esEs7(vxw302, vxw4002, db))), cg, da, db) new_compare21(vxw79, vxw80, vxw81, vxw82, False, bgh, app(app(ty_Either, bhh), caa)) -> new_ltEs3(vxw80, vxw82, bhh, caa) new_compare20(@2(vxw300, vxw301), @2(vxw310, vxw311), False, app(app(ty_@2, eg), app(app(ty_Either, fh), ga))) -> new_ltEs3(vxw301, vxw311, fh, ga) new_ltEs2(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), hd, app(app(ty_@2, bbb), bbc), bah) -> new_lt1(vxw301, vxw311, bbb, bbc) new_compare0(Just(vxw300), Just(vxw4000), cd) -> new_compare20(vxw300, vxw4000, new_esEs4(vxw300, vxw4000, cd), cd) new_compare20(Right(vxw300), Right(vxw310), False, app(app(ty_Either, bed), app(ty_[], bee))) -> new_ltEs(vxw300, vxw310, bee) new_compare(:(vxw300, vxw301), :(vxw4000, vxw4001), cb) -> new_primCompAux(vxw300, vxw4000, vxw301, vxw4001, cb) new_ltEs3(Right(vxw300), Right(vxw310), bed, app(ty_Maybe, bef)) -> new_ltEs0(vxw300, vxw310, bef) new_compare20(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), False, app(app(app(ty_@3, hd), app(app(app(ty_@3, bbd), bbe), bbf)), bah)) -> new_lt2(vxw301, vxw311, bbd, bbe, bbf) new_ltEs1(@2(vxw300, vxw301), @2(vxw310, vxw311), app(ty_[], gb), gc) -> new_lt(vxw300, vxw310, gb) new_compare20(@2(vxw300, vxw301), @2(vxw310, vxw311), False, app(app(ty_@2, app(app(ty_Either, hb), hc)), gc)) -> new_lt3(vxw300, vxw310, hb, hc) new_ltEs2(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), hd, app(app(app(ty_@3, bbd), bbe), bbf), bah) -> new_lt2(vxw301, vxw311, bbd, bbe, bbf) new_lt1(vxw79, vxw81, bfh, bga) -> new_compare1(vxw79, vxw81, bfh, bga) new_compare20(Just(vxw300), Just(vxw310), False, app(ty_Maybe, app(app(ty_@2, dh), ea))) -> new_ltEs1(vxw300, vxw310, dh, ea) new_ltEs2(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), hd, app(app(ty_Either, bbg), bbh), bah) -> new_lt3(vxw301, vxw311, bbg, bbh) new_ltEs3(Left(vxw300), Left(vxw310), app(app(ty_@2, bde), bdf), bdc) -> new_ltEs1(vxw300, vxw310, bde, bdf) new_compare20(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), False, app(app(app(ty_@3, app(app(ty_@2, bcc), bcd)), he), bah)) -> new_lt1(vxw300, vxw310, bcc, bcd) new_compare20(@2(vxw300, vxw301), @2(vxw310, vxw311), False, app(app(ty_@2, app(app(app(ty_@3, gg), gh), ha)), gc)) -> new_lt2(vxw300, vxw310, gg, gh, ha) new_ltEs3(Right(vxw300), Right(vxw310), bed, app(app(app(ty_@3, bfa), bfb), bfc)) -> new_ltEs2(vxw300, vxw310, bfa, bfb, bfc) new_compare22(vxw52, vxw53, vxw54, vxw55, vxw56, vxw57, False, app(app(ty_Either, cdf), cdg), cac, cbf) -> new_lt3(vxw52, vxw55, cdf, cdg) new_compare22(vxw52, vxw53, vxw54, vxw55, vxw56, vxw57, False, app(app(ty_@2, cda), cdb), cac, cbf) -> new_lt1(vxw52, vxw55, cda, cdb) The TRS R consists of the following rules: new_esEs26(vxw301, vxw311, ty_Double) -> new_esEs23(vxw301, vxw311) new_esEs11(vxw300, vxw4000, app(ty_[], eda)) -> new_esEs24(vxw300, vxw4000, eda) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_compare4(vxw30, vxw400, ty_Int) -> new_compare5(vxw30, vxw400) new_esEs7(vxw302, vxw4002, ty_Char) -> new_esEs18(vxw302, vxw4002) new_lt23(vxw52, vxw55, ty_Integer) -> new_lt10(vxw52, vxw55) new_pePe(True, vxw158) -> True new_esEs38(vxw52, vxw55, ty_Bool) -> new_esEs19(vxw52, vxw55) new_esEs10(vxw300, vxw4000, ty_@0) -> new_esEs22(vxw300, vxw4000) new_esEs19(False, True) -> False new_esEs19(True, False) -> False new_ltEs24(vxw30, vxw31, app(app(ty_@2, eg), gc)) -> new_ltEs10(vxw30, vxw31, eg, gc) new_esEs25(Right(vxw3000), Right(vxw40000), egb, ty_@0) -> new_esEs22(vxw3000, vxw40000) new_esEs39(vxw3000, vxw40000, ty_Int) -> new_esEs21(vxw3000, vxw40000) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_ltEs23(vxw54, vxw57, ty_Bool) -> new_ltEs18(vxw54, vxw57) new_lt20(vxw79, vxw81, app(app(ty_Either, bgf), bgg)) -> new_lt17(vxw79, vxw81, bgf, bgg) new_compare26(vxw70, vxw71, True, cfb, dbf) -> EQ new_esEs6(vxw300, vxw4000, app(ty_Maybe, ebh)) -> new_esEs13(vxw300, vxw4000, ebh) new_esEs33(vxw3000, vxw40000, ty_Integer) -> new_esEs16(vxw3000, vxw40000) new_ltEs20(vxw70, vxw71, ty_Float) -> new_ltEs13(vxw70, vxw71) new_esEs11(vxw300, vxw4000, ty_Double) -> new_esEs23(vxw300, vxw4000) new_lt23(vxw52, vxw55, app(ty_Ratio, feg)) -> new_lt15(vxw52, vxw55, feg) new_esEs28(vxw79, vxw81, ty_Char) -> new_esEs18(vxw79, vxw81) new_ltEs18(True, False) -> False new_ltEs7(vxw30, vxw31) -> new_fsEs(new_compare14(vxw30, vxw31)) new_esEs25(Right(vxw3000), Right(vxw40000), egb, app(ty_[], eha)) -> new_esEs24(vxw3000, vxw40000, eha) new_lt10(vxw79, vxw81) -> new_esEs12(new_compare14(vxw79, vxw81), LT) new_compare17(LT, GT) -> LT new_esEs25(Left(vxw3000), Left(vxw40000), ty_Integer, eeg) -> new_esEs16(vxw3000, vxw40000) new_compare211(vxw30, vxw31, True, fhf) -> EQ new_esEs25(Left(vxw3000), Left(vxw40000), ty_Bool, eeg) -> new_esEs19(vxw3000, vxw40000) new_lt23(vxw52, vxw55, app(ty_[], ccg)) -> new_lt11(vxw52, vxw55, ccg) new_esEs35(vxw3001, vxw40001, ty_Float) -> new_esEs14(vxw3001, vxw40001) new_esEs13(Just(vxw3000), Just(vxw40000), app(app(app(ty_@3, cgh), cha), chb)) -> new_esEs20(vxw3000, vxw40000, cgh, cha, chb) new_lt8(vxw300, vxw310, ty_Float) -> new_lt6(vxw300, vxw310) new_esEs27(vxw300, vxw310, app(ty_Maybe, bcb)) -> new_esEs13(vxw300, vxw310, bcb) new_esEs5(vxw301, vxw4001, app(ty_[], fgh)) -> new_esEs24(vxw301, vxw4001, fgh) new_esEs26(vxw301, vxw311, app(app(ty_@2, bbb), bbc)) -> new_esEs15(vxw301, vxw311, bbb, bbc) new_compare19(@0, @0) -> EQ new_ltEs16(Left(vxw300), Left(vxw310), app(app(app(ty_@3, bdg), bdh), bea), bdc) -> new_ltEs4(vxw300, vxw310, bdg, bdh, bea) new_esEs35(vxw3001, vxw40001, ty_@0) -> new_esEs22(vxw3001, vxw40001) new_ltEs24(vxw30, vxw31, app(app(app(ty_@3, hd), he), bah)) -> new_ltEs4(vxw30, vxw31, hd, he, bah) new_esEs36(vxw3000, vxw40000, ty_Double) -> new_esEs23(vxw3000, vxw40000) new_compare17(LT, EQ) -> LT new_ltEs20(vxw70, vxw71, app(ty_Maybe, cfd)) -> new_ltEs9(vxw70, vxw71, cfd) new_lt21(vxw300, vxw310, ty_Float) -> new_lt6(vxw300, vxw310) new_esEs34(vxw3002, vxw40002, ty_Int) -> new_esEs21(vxw3002, vxw40002) new_primCompAux1(vxw30, vxw400, vxw31, vxw401, cc) -> new_primCompAux00(vxw31, vxw401, new_compare4(vxw30, vxw400, cc), app(ty_[], cc)) new_esEs31(vxw300, vxw310, app(ty_Ratio, dhd)) -> new_esEs17(vxw300, vxw310, dhd) new_lt22(vxw53, vxw56, ty_Bool) -> new_lt19(vxw53, vxw56) new_compare17(EQ, GT) -> LT new_esEs5(vxw301, vxw4001, app(app(ty_@2, fgb), fgc)) -> new_esEs15(vxw301, vxw4001, fgb, fgc) new_esEs26(vxw301, vxw311, app(ty_[], bag)) -> new_esEs24(vxw301, vxw311, bag) new_ltEs19(vxw80, vxw82, app(app(ty_Either, bhh), caa)) -> new_ltEs16(vxw80, vxw82, bhh, caa) new_primCompAux00(vxw23, vxw24, EQ, ty_Integer) -> new_compare14(vxw23, vxw24) new_primEqNat0(Succ(vxw30000), Succ(vxw400000)) -> new_primEqNat0(vxw30000, vxw400000) new_compare4(vxw30, vxw400, ty_Char) -> new_compare13(vxw30, vxw400) new_esEs10(vxw300, vxw4000, ty_Float) -> new_esEs14(vxw300, vxw4000) new_lt22(vxw53, vxw56, ty_@0) -> new_lt16(vxw53, vxw56) new_esEs24([], [], faa) -> True new_not(True) -> False new_compare4(vxw30, vxw400, app(ty_Maybe, cd)) -> new_compare16(vxw30, vxw400, cd) new_lt7(vxw301, vxw311, app(app(ty_Either, bbg), bbh)) -> new_lt17(vxw301, vxw311, bbg, bbh) new_ltEs16(Right(vxw300), Right(vxw310), bed, app(app(ty_Either, bfd), bfe)) -> new_ltEs16(vxw300, vxw310, bfd, bfe) new_esEs30(vxw3000, vxw40000, ty_Float) -> new_esEs14(vxw3000, vxw40000) new_compare4(vxw30, vxw400, app(app(ty_@2, ce), cf)) -> new_compare6(vxw30, vxw400, ce, cf) new_ltEs20(vxw70, vxw71, ty_Int) -> new_ltEs12(vxw70, vxw71) new_primCompAux00(vxw23, vxw24, EQ, ty_Bool) -> new_compare9(vxw23, vxw24) new_esEs6(vxw300, vxw4000, app(app(app(ty_@3, ebd), ebe), ebf)) -> new_esEs20(vxw300, vxw4000, ebd, ebe, ebf) new_ltEs16(Right(vxw300), Right(vxw310), bed, ty_@0) -> new_ltEs15(vxw300, vxw310) new_primEqNat0(Succ(vxw30000), Zero) -> False new_primEqNat0(Zero, Succ(vxw400000)) -> False new_esEs18(Char(vxw3000), Char(vxw40000)) -> new_primEqNat0(vxw3000, vxw40000) new_primCompAux00(vxw23, vxw24, EQ, ty_Ordering) -> new_compare17(vxw23, vxw24) new_compare27(Left(vxw300), Right(vxw4000), dc, dd) -> LT new_esEs38(vxw52, vxw55, ty_Char) -> new_esEs18(vxw52, vxw55) new_esEs39(vxw3000, vxw40000, app(ty_Ratio, ffb)) -> new_esEs17(vxw3000, vxw40000, ffb) new_esEs8(vxw301, vxw4001, ty_Int) -> new_esEs21(vxw301, vxw4001) new_esEs13(Just(vxw3000), Just(vxw40000), app(ty_Maybe, chd)) -> new_esEs13(vxw3000, vxw40000, chd) new_ltEs21(vxw301, vxw311, ty_Integer) -> new_ltEs7(vxw301, vxw311) new_esEs4(vxw300, vxw4000, ty_Float) -> new_esEs14(vxw300, vxw4000) new_esEs11(vxw300, vxw4000, app(app(ty_@2, ecc), ecd)) -> new_esEs15(vxw300, vxw4000, ecc, ecd) new_ltEs23(vxw54, vxw57, ty_@0) -> new_ltEs15(vxw54, vxw57) new_compare4(vxw30, vxw400, app(ty_Ratio, deh)) -> new_compare8(vxw30, vxw400, deh) new_esEs4(vxw300, vxw4000, ty_@0) -> new_esEs22(vxw300, vxw4000) new_ltEs16(Right(vxw300), Right(vxw310), bed, ty_Ordering) -> new_ltEs11(vxw300, vxw310) new_esEs9(vxw300, vxw4000, ty_@0) -> new_esEs22(vxw300, vxw4000) new_lt20(vxw79, vxw81, ty_Char) -> new_lt9(vxw79, vxw81) new_esEs19(False, False) -> True new_primCmpInt(Pos(Succ(vxw3000)), Neg(vxw4000)) -> GT new_esEs28(vxw79, vxw81, ty_Bool) -> new_esEs19(vxw79, vxw81) new_esEs35(vxw3001, vxw40001, app(app(ty_Either, fce), fcf)) -> new_esEs25(vxw3001, vxw40001, fce, fcf) new_ltEs23(vxw54, vxw57, ty_Ordering) -> new_ltEs11(vxw54, vxw57) new_esEs8(vxw301, vxw4001, app(ty_Ratio, dfh)) -> new_esEs17(vxw301, vxw4001, dfh) new_esEs38(vxw52, vxw55, ty_Integer) -> new_esEs16(vxw52, vxw55) new_primPlusNat1(Succ(vxw15900), Succ(vxw301000)) -> Succ(Succ(new_primPlusNat1(vxw15900, vxw301000))) new_primCompAux00(vxw23, vxw24, GT, dfc) -> GT new_primCmpNat0(Zero, Succ(vxw40000)) -> LT new_esEs30(vxw3000, vxw40000, app(app(ty_Either, ded), dee)) -> new_esEs25(vxw3000, vxw40000, ded, dee) new_ltEs20(vxw70, vxw71, ty_Double) -> new_ltEs17(vxw70, vxw71) new_esEs5(vxw301, vxw4001, ty_Double) -> new_esEs23(vxw301, vxw4001) new_lt7(vxw301, vxw311, app(ty_[], bag)) -> new_lt11(vxw301, vxw311, bag) new_lt7(vxw301, vxw311, ty_Integer) -> new_lt10(vxw301, vxw311) new_lt7(vxw301, vxw311, ty_Int) -> new_lt4(vxw301, vxw311) new_esEs9(vxw300, vxw4000, ty_Float) -> new_esEs14(vxw300, vxw4000) new_esEs31(vxw300, vxw310, app(app(ty_@2, ge), gf)) -> new_esEs15(vxw300, vxw310, ge, gf) new_ltEs23(vxw54, vxw57, ty_Double) -> new_ltEs17(vxw54, vxw57) new_esEs5(vxw301, vxw4001, ty_Integer) -> new_esEs16(vxw301, vxw4001) new_lt16(vxw79, vxw81) -> new_esEs12(new_compare19(vxw79, vxw81), LT) new_esEs37(vxw53, vxw56, app(app(app(ty_@3, ccb), ccc), ccd)) -> new_esEs20(vxw53, vxw56, ccb, ccc, ccd) new_ltEs18(False, False) -> True new_ltEs19(vxw80, vxw82, app(app(ty_@2, bhc), bhd)) -> new_ltEs10(vxw80, vxw82, bhc, bhd) new_lt23(vxw52, vxw55, ty_Ordering) -> new_lt13(vxw52, vxw55) new_compare113(vxw102, vxw103, True, fab) -> LT new_ltEs16(Right(vxw300), Right(vxw310), bed, app(ty_Ratio, fed)) -> new_ltEs14(vxw300, vxw310, fed) new_esEs38(vxw52, vxw55, ty_Ordering) -> new_esEs12(vxw52, vxw55) new_lt20(vxw79, vxw81, app(ty_[], bff)) -> new_lt11(vxw79, vxw81, bff) new_lt21(vxw300, vxw310, app(app(app(ty_@3, gg), gh), ha)) -> new_lt14(vxw300, vxw310, gg, gh, ha) new_esEs29(vxw3001, vxw40001, app(ty_[], dch)) -> new_esEs24(vxw3001, vxw40001, dch) new_esEs10(vxw300, vxw4000, ty_Char) -> new_esEs18(vxw300, vxw4000) new_esEs9(vxw300, vxw4000, app(app(ty_Either, dag), dah)) -> new_esEs25(vxw300, vxw4000, dag, dah) new_esEs8(vxw301, vxw4001, app(ty_[], dgd)) -> new_esEs24(vxw301, vxw4001, dgd) new_esEs11(vxw300, vxw4000, ty_Ordering) -> new_esEs12(vxw300, vxw4000) new_compare28(Double(vxw300, Neg(vxw3010)), Double(vxw4000, Neg(vxw40010))) -> new_compare5(new_sr(vxw300, Neg(vxw40010)), new_sr(Neg(vxw3010), vxw4000)) new_esEs25(Right(vxw3000), Right(vxw40000), egb, app(app(ty_Either, ehc), ehd)) -> new_esEs25(vxw3000, vxw40000, ehc, ehd) new_esEs26(vxw301, vxw311, app(ty_Ratio, dbb)) -> new_esEs17(vxw301, vxw311, dbb) new_esEs25(Left(vxw3000), Left(vxw40000), app(ty_Maybe, efg), eeg) -> new_esEs13(vxw3000, vxw40000, efg) new_esEs39(vxw3000, vxw40000, app(ty_Maybe, ffg)) -> new_esEs13(vxw3000, vxw40000, ffg) new_esEs31(vxw300, vxw310, ty_Double) -> new_esEs23(vxw300, vxw310) new_ltEs5(vxw302, vxw312, app(app(ty_@2, hh), baa)) -> new_ltEs10(vxw302, vxw312, hh, baa) new_lt20(vxw79, vxw81, app(ty_Maybe, bfg)) -> new_lt12(vxw79, vxw81, bfg) new_esEs29(vxw3001, vxw40001, app(app(app(ty_@3, dce), dcf), dcg)) -> new_esEs20(vxw3001, vxw40001, dce, dcf, dcg) new_ltEs19(vxw80, vxw82, ty_Integer) -> new_ltEs7(vxw80, vxw82) new_primEqInt(Neg(Succ(vxw30000)), Neg(Succ(vxw400000))) -> new_primEqNat0(vxw30000, vxw400000) new_esEs28(vxw79, vxw81, ty_Integer) -> new_esEs16(vxw79, vxw81) new_esEs30(vxw3000, vxw40000, ty_@0) -> new_esEs22(vxw3000, vxw40000) new_ltEs22(vxw63, vxw64, ty_Int) -> new_ltEs12(vxw63, vxw64) new_primCmpInt(Neg(Zero), Pos(Succ(vxw40000))) -> LT new_compare13(Char(vxw300), Char(vxw4000)) -> new_primCmpNat0(vxw300, vxw4000) new_lt22(vxw53, vxw56, ty_Int) -> new_lt4(vxw53, vxw56) new_esEs30(vxw3000, vxw40000, ty_Bool) -> new_esEs19(vxw3000, vxw40000) new_esEs7(vxw302, vxw4002, ty_Integer) -> new_esEs16(vxw302, vxw4002) new_primMulInt(Pos(vxw40000), Pos(vxw3010)) -> Pos(new_primMulNat0(vxw40000, vxw3010)) new_ltEs15(vxw30, vxw31) -> new_fsEs(new_compare19(vxw30, vxw31)) new_esEs5(vxw301, vxw4001, ty_Bool) -> new_esEs19(vxw301, vxw4001) new_esEs26(vxw301, vxw311, ty_Ordering) -> new_esEs12(vxw301, vxw311) new_esEs25(Right(vxw3000), Right(vxw40000), egb, app(app(ty_@2, egc), egd)) -> new_esEs15(vxw3000, vxw40000, egc, egd) new_esEs7(vxw302, vxw4002, app(app(ty_Either, eae), eaf)) -> new_esEs25(vxw302, vxw4002, eae, eaf) new_primCompAux00(vxw23, vxw24, EQ, ty_Float) -> new_compare7(vxw23, vxw24) new_esEs11(vxw300, vxw4000, app(ty_Ratio, ece)) -> new_esEs17(vxw300, vxw4000, ece) new_ltEs23(vxw54, vxw57, ty_Float) -> new_ltEs13(vxw54, vxw57) new_primMulNat0(Succ(vxw400000), Zero) -> Zero new_primMulNat0(Zero, Succ(vxw30100)) -> Zero new_ltEs20(vxw70, vxw71, ty_Bool) -> new_ltEs18(vxw70, vxw71) new_esEs34(vxw3002, vxw40002, app(ty_Ratio, fae)) -> new_esEs17(vxw3002, vxw40002, fae) new_ltEs6(vxw30, vxw31) -> new_fsEs(new_compare13(vxw30, vxw31)) new_esEs25(Left(vxw3000), Left(vxw40000), ty_Float, eeg) -> new_esEs14(vxw3000, vxw40000) new_lt22(vxw53, vxw56, app(ty_Maybe, cbg)) -> new_lt12(vxw53, vxw56, cbg) new_compare9(True, True) -> EQ new_ltEs14(vxw30, vxw31, dfe) -> new_fsEs(new_compare8(vxw30, vxw31, dfe)) new_lt14(vxw79, vxw81, bgc, bgd, bge) -> new_esEs12(new_compare18(vxw79, vxw81, bgc, bgd, bge), LT) new_esEs27(vxw300, vxw310, app(app(app(ty_@3, bce), bcf), bcg)) -> new_esEs20(vxw300, vxw310, bce, bcf, bcg) new_esEs7(vxw302, vxw4002, ty_Bool) -> new_esEs19(vxw302, vxw4002) new_esEs36(vxw3000, vxw40000, ty_Int) -> new_esEs21(vxw3000, vxw40000) new_esEs29(vxw3001, vxw40001, app(app(ty_@2, dcb), dcc)) -> new_esEs15(vxw3001, vxw40001, dcb, dcc) new_lt8(vxw300, vxw310, app(app(app(ty_@3, bce), bcf), bcg)) -> new_lt14(vxw300, vxw310, bce, bcf, bcg) new_esEs10(vxw300, vxw4000, app(app(ty_Either, eee), eef)) -> new_esEs25(vxw300, vxw4000, eee, eef) new_lt20(vxw79, vxw81, ty_Int) -> new_lt4(vxw79, vxw81) new_compare4(vxw30, vxw400, app(app(ty_Either, dc), dd)) -> new_compare27(vxw30, vxw400, dc, dd) new_primCompAux00(vxw23, vxw24, EQ, ty_@0) -> new_compare19(vxw23, vxw24) new_primPlusNat1(Succ(vxw15900), Zero) -> Succ(vxw15900) new_primPlusNat1(Zero, Succ(vxw301000)) -> Succ(vxw301000) new_compare15(:(vxw300, vxw301), :(vxw4000, vxw4001), cb) -> new_primCompAux1(vxw300, vxw4000, vxw301, vxw4001, cb) new_esEs25(Left(vxw3000), Left(vxw40000), ty_Char, eeg) -> new_esEs18(vxw3000, vxw40000) new_esEs31(vxw300, vxw310, app(ty_[], gb)) -> new_esEs24(vxw300, vxw310, gb) new_esEs30(vxw3000, vxw40000, ty_Char) -> new_esEs18(vxw3000, vxw40000) new_esEs7(vxw302, vxw4002, app(app(ty_@2, dhe), dhf)) -> new_esEs15(vxw302, vxw4002, dhe, dhf) new_compare210(vxw63, vxw64, False, eag, cea) -> new_compare110(vxw63, vxw64, new_ltEs22(vxw63, vxw64, eag), eag, cea) new_compare7(Float(vxw300, Pos(vxw3010)), Float(vxw4000, Pos(vxw40010))) -> new_compare5(new_sr(vxw300, Pos(vxw40010)), new_sr(Pos(vxw3010), vxw4000)) new_esEs37(vxw53, vxw56, app(ty_Maybe, cbg)) -> new_esEs13(vxw53, vxw56, cbg) new_esEs36(vxw3000, vxw40000, app(ty_Ratio, fda)) -> new_esEs17(vxw3000, vxw40000, fda) new_esEs30(vxw3000, vxw40000, ty_Integer) -> new_esEs16(vxw3000, vxw40000) new_esEs25(Left(vxw3000), Left(vxw40000), app(app(ty_@2, eeh), efa), eeg) -> new_esEs15(vxw3000, vxw40000, eeh, efa) new_lt15(vxw79, vxw81, dbd) -> new_esEs12(new_compare8(vxw79, vxw81, dbd), LT) new_fsEs(vxw153) -> new_not(new_esEs12(vxw153, GT)) new_esEs25(Left(vxw3000), Left(vxw40000), ty_@0, eeg) -> new_esEs22(vxw3000, vxw40000) new_ltEs22(vxw63, vxw64, ty_Float) -> new_ltEs13(vxw63, vxw64) new_esEs8(vxw301, vxw4001, ty_Double) -> new_esEs23(vxw301, vxw4001) new_esEs25(Left(vxw3000), Left(vxw40000), ty_Double, eeg) -> new_esEs23(vxw3000, vxw40000) new_lt17(vxw79, vxw81, bgf, bgg) -> new_esEs12(new_compare27(vxw79, vxw81, bgf, bgg), LT) new_ltEs21(vxw301, vxw311, app(app(ty_Either, fh), ga)) -> new_ltEs16(vxw301, vxw311, fh, ga) new_esEs7(vxw302, vxw4002, ty_Float) -> new_esEs14(vxw302, vxw4002) new_lt20(vxw79, vxw81, ty_Integer) -> new_lt10(vxw79, vxw81) new_ltEs21(vxw301, vxw311, ty_@0) -> new_ltEs15(vxw301, vxw311) new_esEs7(vxw302, vxw4002, ty_@0) -> new_esEs22(vxw302, vxw4002) new_ltEs16(Right(vxw300), Right(vxw310), bed, ty_Integer) -> new_ltEs7(vxw300, vxw310) new_esEs39(vxw3000, vxw40000, app(app(app(ty_@3, ffc), ffd), ffe)) -> new_esEs20(vxw3000, vxw40000, ffc, ffd, ffe) new_ltEs16(Left(vxw300), Left(vxw310), app(ty_[], bdb), bdc) -> new_ltEs8(vxw300, vxw310, bdb) new_esEs36(vxw3000, vxw40000, ty_Ordering) -> new_esEs12(vxw3000, vxw40000) new_lt21(vxw300, vxw310, ty_Ordering) -> new_lt13(vxw300, vxw310) new_compare16(Just(vxw300), Just(vxw4000), cd) -> new_compare211(vxw300, vxw4000, new_esEs4(vxw300, vxw4000, cd), cd) new_ltEs24(vxw30, vxw31, app(ty_Ratio, dfe)) -> new_ltEs14(vxw30, vxw31, dfe) new_ltEs9(Just(vxw300), Just(vxw310), ty_Char) -> new_ltEs6(vxw300, vxw310) new_ltEs4(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), hd, he, bah) -> new_pePe(new_lt8(vxw300, vxw310, hd), new_asAs(new_esEs27(vxw300, vxw310, hd), new_pePe(new_lt7(vxw301, vxw311, he), new_asAs(new_esEs26(vxw301, vxw311, he), new_ltEs5(vxw302, vxw312, bah))))) new_esEs6(vxw300, vxw4000, ty_@0) -> new_esEs22(vxw300, vxw4000) new_esEs29(vxw3001, vxw40001, ty_Ordering) -> new_esEs12(vxw3001, vxw40001) new_esEs27(vxw300, vxw310, app(ty_Ratio, dbc)) -> new_esEs17(vxw300, vxw310, dbc) new_ltEs11(EQ, GT) -> True new_esEs7(vxw302, vxw4002, app(ty_[], eac)) -> new_esEs24(vxw302, vxw4002, eac) new_lt23(vxw52, vxw55, ty_Float) -> new_lt6(vxw52, vxw55) new_esEs37(vxw53, vxw56, app(app(ty_Either, cce), ccf)) -> new_esEs25(vxw53, vxw56, cce, ccf) new_ltEs21(vxw301, vxw311, ty_Bool) -> new_ltEs18(vxw301, vxw311) new_esEs11(vxw300, vxw4000, ty_Char) -> new_esEs18(vxw300, vxw4000) new_lt7(vxw301, vxw311, ty_@0) -> new_lt16(vxw301, vxw311) new_esEs32(vxw3001, vxw40001, ty_Int) -> new_esEs21(vxw3001, vxw40001) new_ltEs18(False, True) -> True new_compare17(GT, GT) -> EQ new_lt20(vxw79, vxw81, ty_Bool) -> new_lt19(vxw79, vxw81) new_esEs10(vxw300, vxw4000, ty_Integer) -> new_esEs16(vxw300, vxw4000) new_esEs28(vxw79, vxw81, app(ty_[], bff)) -> new_esEs24(vxw79, vxw81, bff) new_esEs35(vxw3001, vxw40001, ty_Ordering) -> new_esEs12(vxw3001, vxw40001) new_esEs28(vxw79, vxw81, ty_Double) -> new_esEs23(vxw79, vxw81) new_esEs30(vxw3000, vxw40000, app(app(ty_@2, ddd), dde)) -> new_esEs15(vxw3000, vxw40000, ddd, dde) new_ltEs11(EQ, EQ) -> True new_esEs10(vxw300, vxw4000, app(ty_Maybe, eed)) -> new_esEs13(vxw300, vxw4000, eed) new_compare211(vxw30, vxw31, False, fhf) -> new_compare113(vxw30, vxw31, new_ltEs24(vxw30, vxw31, fhf), fhf) new_ltEs16(Left(vxw300), Left(vxw310), ty_Ordering, bdc) -> new_ltEs11(vxw300, vxw310) new_esEs6(vxw300, vxw4000, ty_Float) -> new_esEs14(vxw300, vxw4000) new_esEs5(vxw301, vxw4001, ty_Char) -> new_esEs18(vxw301, vxw4001) new_esEs26(vxw301, vxw311, ty_Int) -> new_esEs21(vxw301, vxw311) new_esEs12(GT, GT) -> True new_lt22(vxw53, vxw56, app(app(app(ty_@3, ccb), ccc), ccd)) -> new_lt14(vxw53, vxw56, ccb, ccc, ccd) new_lt20(vxw79, vxw81, ty_Ordering) -> new_lt13(vxw79, vxw81) new_lt22(vxw53, vxw56, app(app(ty_Either, cce), ccf)) -> new_lt17(vxw53, vxw56, cce, ccf) new_ltEs22(vxw63, vxw64, app(app(ty_@2, cec), ced)) -> new_ltEs10(vxw63, vxw64, cec, ced) new_lt8(vxw300, vxw310, app(ty_[], bca)) -> new_lt11(vxw300, vxw310, bca) new_ltEs20(vxw70, vxw71, ty_@0) -> new_ltEs15(vxw70, vxw71) new_ltEs16(Right(vxw300), Left(vxw310), bed, bdc) -> False new_esEs31(vxw300, vxw310, ty_Integer) -> new_esEs16(vxw300, vxw310) new_primCompAux00(vxw23, vxw24, EQ, app(app(app(ty_@3, be), bf), bg)) -> new_compare18(vxw23, vxw24, be, bf, bg) new_ltEs24(vxw30, vxw31, app(ty_[], de)) -> new_ltEs8(vxw30, vxw31, de) new_lt21(vxw300, vxw310, app(ty_[], gb)) -> new_lt11(vxw300, vxw310, gb) new_ltEs16(Right(vxw300), Right(vxw310), bed, ty_Float) -> new_ltEs13(vxw300, vxw310) new_ltEs19(vxw80, vxw82, ty_@0) -> new_ltEs15(vxw80, vxw82) new_primCmpInt(Pos(Succ(vxw3000)), Pos(vxw4000)) -> new_primCmpNat0(Succ(vxw3000), vxw4000) new_esEs38(vxw52, vxw55, ty_@0) -> new_esEs22(vxw52, vxw55) new_esEs13(Just(vxw3000), Just(vxw40000), app(ty_[], chc)) -> new_esEs24(vxw3000, vxw40000, chc) new_esEs31(vxw300, vxw310, app(ty_Maybe, gd)) -> new_esEs13(vxw300, vxw310, gd) new_esEs4(vxw300, vxw4000, ty_Integer) -> new_esEs16(vxw300, vxw4000) new_ltEs11(GT, GT) -> True new_esEs12(EQ, EQ) -> True new_esEs6(vxw300, vxw4000, app(app(ty_Either, eca), ecb)) -> new_esEs25(vxw300, vxw4000, eca, ecb) new_lt19(vxw79, vxw81) -> new_esEs12(new_compare9(vxw79, vxw81), LT) new_esEs25(Right(vxw3000), Right(vxw40000), egb, ty_Ordering) -> new_esEs12(vxw3000, vxw40000) new_esEs10(vxw300, vxw4000, ty_Bool) -> new_esEs19(vxw300, vxw4000) new_esEs36(vxw3000, vxw40000, app(ty_Maybe, fdf)) -> new_esEs13(vxw3000, vxw40000, fdf) new_esEs8(vxw301, vxw4001, app(app(ty_@2, dff), dfg)) -> new_esEs15(vxw301, vxw4001, dff, dfg) new_ltEs16(Left(vxw300), Left(vxw310), ty_@0, bdc) -> new_ltEs15(vxw300, vxw310) new_esEs13(Just(vxw3000), Just(vxw40000), app(app(ty_@2, cge), cgf)) -> new_esEs15(vxw3000, vxw40000, cge, cgf) new_ltEs19(vxw80, vxw82, app(ty_[], bha)) -> new_ltEs8(vxw80, vxw82, bha) new_ltEs19(vxw80, vxw82, ty_Bool) -> new_ltEs18(vxw80, vxw82) new_esEs11(vxw300, vxw4000, ty_Int) -> new_esEs21(vxw300, vxw4000) new_ltEs5(vxw302, vxw312, app(app(ty_Either, bae), baf)) -> new_ltEs16(vxw302, vxw312, bae, baf) new_esEs25(Right(vxw3000), Right(vxw40000), egb, app(app(app(ty_@3, egf), egg), egh)) -> new_esEs20(vxw3000, vxw40000, egf, egg, egh) new_esEs5(vxw301, vxw4001, app(app(ty_Either, fhb), fhc)) -> new_esEs25(vxw301, vxw4001, fhb, fhc) new_esEs5(vxw301, vxw4001, ty_Float) -> new_esEs14(vxw301, vxw4001) new_ltEs21(vxw301, vxw311, app(app(ty_@2, fb), fc)) -> new_ltEs10(vxw301, vxw311, fb, fc) new_lt21(vxw300, vxw310, ty_Char) -> new_lt9(vxw300, vxw310) new_compare10(vxw129, vxw130, vxw131, vxw132, True, vxw134, def, deg) -> new_compare12(vxw129, vxw130, vxw131, vxw132, True, def, deg) new_esEs28(vxw79, vxw81, app(app(ty_@2, bfh), bga)) -> new_esEs15(vxw79, vxw81, bfh, bga) new_esEs30(vxw3000, vxw40000, ty_Double) -> new_esEs23(vxw3000, vxw40000) new_primCompAux00(vxw23, vxw24, EQ, app(ty_Ratio, dfd)) -> new_compare8(vxw23, vxw24, dfd) new_esEs4(vxw300, vxw4000, ty_Bool) -> new_esEs19(vxw300, vxw4000) new_esEs31(vxw300, vxw310, app(app(app(ty_@3, gg), gh), ha)) -> new_esEs20(vxw300, vxw310, gg, gh, ha) new_esEs33(vxw3000, vxw40000, ty_Int) -> new_esEs21(vxw3000, vxw40000) new_ltEs20(vxw70, vxw71, app(ty_[], cfc)) -> new_ltEs8(vxw70, vxw71, cfc) new_esEs36(vxw3000, vxw40000, app(app(app(ty_@3, fdb), fdc), fdd)) -> new_esEs20(vxw3000, vxw40000, fdb, fdc, fdd) new_esEs29(vxw3001, vxw40001, ty_Double) -> new_esEs23(vxw3001, vxw40001) new_esEs30(vxw3000, vxw40000, app(ty_Maybe, dec)) -> new_esEs13(vxw3000, vxw40000, dec) new_esEs10(vxw300, vxw4000, ty_Ordering) -> new_esEs12(vxw300, vxw4000) new_esEs13(Just(vxw3000), Just(vxw40000), ty_Double) -> new_esEs23(vxw3000, vxw40000) new_compare25(vxw79, vxw80, vxw81, vxw82, False, bgh, bgb) -> new_compare10(vxw79, vxw80, vxw81, vxw82, new_lt20(vxw79, vxw81, bgh), new_asAs(new_esEs28(vxw79, vxw81, bgh), new_ltEs19(vxw80, vxw82, bgb)), bgh, bgb) new_lt8(vxw300, vxw310, ty_Bool) -> new_lt19(vxw300, vxw310) new_lt7(vxw301, vxw311, ty_Float) -> new_lt6(vxw301, vxw311) new_compare4(vxw30, vxw400, app(app(app(ty_@3, cg), da), db)) -> new_compare18(vxw30, vxw400, cg, da, db) new_primCompAux00(vxw23, vxw24, EQ, app(ty_Maybe, bb)) -> new_compare16(vxw23, vxw24, bb) new_ltEs5(vxw302, vxw312, ty_Float) -> new_ltEs13(vxw302, vxw312) new_esEs34(vxw3002, vxw40002, ty_@0) -> new_esEs22(vxw3002, vxw40002) new_esEs4(vxw300, vxw4000, ty_Char) -> new_esEs18(vxw300, vxw4000) new_esEs27(vxw300, vxw310, ty_Int) -> new_esEs21(vxw300, vxw310) new_esEs11(vxw300, vxw4000, ty_Bool) -> new_esEs19(vxw300, vxw4000) new_compare17(EQ, EQ) -> EQ new_ltEs9(Just(vxw300), Just(vxw310), app(ty_Maybe, dg)) -> new_ltEs9(vxw300, vxw310, dg) new_esEs29(vxw3001, vxw40001, app(ty_Maybe, dda)) -> new_esEs13(vxw3001, vxw40001, dda) new_lt22(vxw53, vxw56, ty_Float) -> new_lt6(vxw53, vxw56) new_lt23(vxw52, vxw55, app(app(ty_Either, cdf), cdg)) -> new_lt17(vxw52, vxw55, cdf, cdg) new_compare4(vxw30, vxw400, ty_Bool) -> new_compare9(vxw30, vxw400) new_lt8(vxw300, vxw310, ty_@0) -> new_lt16(vxw300, vxw310) new_esEs35(vxw3001, vxw40001, app(ty_Maybe, fcd)) -> new_esEs13(vxw3001, vxw40001, fcd) new_esEs27(vxw300, vxw310, app(ty_[], bca)) -> new_esEs24(vxw300, vxw310, bca) new_esEs31(vxw300, vxw310, ty_Int) -> new_esEs21(vxw300, vxw310) new_ltEs9(Just(vxw300), Just(vxw310), ty_Bool) -> new_ltEs18(vxw300, vxw310) new_ltEs16(Left(vxw300), Left(vxw310), ty_Char, bdc) -> new_ltEs6(vxw300, vxw310) new_ltEs23(vxw54, vxw57, app(ty_[], cad)) -> new_ltEs8(vxw54, vxw57, cad) new_lt23(vxw52, vxw55, ty_@0) -> new_lt16(vxw52, vxw55) new_esEs36(vxw3000, vxw40000, ty_Float) -> new_esEs14(vxw3000, vxw40000) new_esEs27(vxw300, vxw310, ty_Double) -> new_esEs23(vxw300, vxw310) new_ltEs9(Just(vxw300), Just(vxw310), app(app(ty_Either, ee), ef)) -> new_ltEs16(vxw300, vxw310, ee, ef) new_esEs28(vxw79, vxw81, ty_Ordering) -> new_esEs12(vxw79, vxw81) new_ltEs12(vxw30, vxw31) -> new_fsEs(new_compare5(vxw30, vxw31)) new_esEs37(vxw53, vxw56, ty_Bool) -> new_esEs19(vxw53, vxw56) new_lt21(vxw300, vxw310, app(app(ty_Either, hb), hc)) -> new_lt17(vxw300, vxw310, hb, hc) new_esEs36(vxw3000, vxw40000, app(app(ty_Either, fdg), fdh)) -> new_esEs25(vxw3000, vxw40000, fdg, fdh) new_esEs16(Integer(vxw3000), Integer(vxw40000)) -> new_primEqInt(vxw3000, vxw40000) new_ltEs16(Right(vxw300), Right(vxw310), bed, ty_Bool) -> new_ltEs18(vxw300, vxw310) new_esEs13(Just(vxw3000), Just(vxw40000), app(ty_Ratio, cgg)) -> new_esEs17(vxw3000, vxw40000, cgg) new_esEs11(vxw300, vxw4000, ty_Integer) -> new_esEs16(vxw300, vxw4000) new_esEs4(vxw300, vxw4000, app(app(ty_Either, egb), eeg)) -> new_esEs25(vxw300, vxw4000, egb, eeg) new_esEs34(vxw3002, vxw40002, ty_Integer) -> new_esEs16(vxw3002, vxw40002) new_ltEs16(Left(vxw300), Left(vxw310), app(ty_Ratio, fec), bdc) -> new_ltEs14(vxw300, vxw310, fec) new_compare113(vxw102, vxw103, False, fab) -> GT new_esEs38(vxw52, vxw55, ty_Float) -> new_esEs14(vxw52, vxw55) new_primPlusNat0(Succ(vxw1590), vxw30100) -> Succ(Succ(new_primPlusNat1(vxw1590, vxw30100))) new_primCompAux00(vxw23, vxw24, EQ, ty_Double) -> new_compare28(vxw23, vxw24) new_esEs11(vxw300, vxw4000, app(ty_Maybe, edb)) -> new_esEs13(vxw300, vxw4000, edb) new_compare11(vxw119, vxw120, True, fea, feb) -> LT new_esEs25(Right(vxw3000), Right(vxw40000), egb, app(ty_Ratio, ege)) -> new_esEs17(vxw3000, vxw40000, ege) new_esEs34(vxw3002, vxw40002, app(ty_Maybe, fbb)) -> new_esEs13(vxw3002, vxw40002, fbb) new_compare7(Float(vxw300, Pos(vxw3010)), Float(vxw4000, Neg(vxw40010))) -> new_compare5(new_sr(vxw300, Pos(vxw40010)), new_sr(Neg(vxw3010), vxw4000)) new_compare7(Float(vxw300, Neg(vxw3010)), Float(vxw4000, Pos(vxw40010))) -> new_compare5(new_sr(vxw300, Neg(vxw40010)), new_sr(Pos(vxw3010), vxw4000)) new_esEs17(:%(vxw3000, vxw3001), :%(vxw40000, vxw40001), ehe) -> new_asAs(new_esEs33(vxw3000, vxw40000, ehe), new_esEs32(vxw3001, vxw40001, ehe)) new_ltEs21(vxw301, vxw311, app(ty_[], eh)) -> new_ltEs8(vxw301, vxw311, eh) new_esEs35(vxw3001, vxw40001, ty_Char) -> new_esEs18(vxw3001, vxw40001) new_esEs35(vxw3001, vxw40001, app(app(app(ty_@3, fbh), fca), fcb)) -> new_esEs20(vxw3001, vxw40001, fbh, fca, fcb) new_primPlusNat1(Zero, Zero) -> Zero new_lt7(vxw301, vxw311, ty_Bool) -> new_lt19(vxw301, vxw311) new_esEs35(vxw3001, vxw40001, ty_Bool) -> new_esEs19(vxw3001, vxw40001) new_esEs13(Just(vxw3000), Just(vxw40000), ty_Ordering) -> new_esEs12(vxw3000, vxw40000) new_esEs25(Right(vxw3000), Right(vxw40000), egb, app(ty_Maybe, ehb)) -> new_esEs13(vxw3000, vxw40000, ehb) new_esEs28(vxw79, vxw81, app(ty_Ratio, dbd)) -> new_esEs17(vxw79, vxw81, dbd) new_esEs10(vxw300, vxw4000, app(app(app(ty_@3, edh), eea), eeb)) -> new_esEs20(vxw300, vxw4000, edh, eea, eeb) new_lt11(vxw79, vxw81, bff) -> new_esEs12(new_compare15(vxw79, vxw81, bff), LT) new_esEs23(Double(vxw3000, vxw3001), Double(vxw40000, vxw40001)) -> new_esEs21(new_sr(vxw3000, vxw40001), new_sr(vxw3001, vxw40000)) new_esEs13(Just(vxw3000), Just(vxw40000), ty_Int) -> new_esEs21(vxw3000, vxw40000) new_esEs37(vxw53, vxw56, ty_@0) -> new_esEs22(vxw53, vxw56) new_lt22(vxw53, vxw56, ty_Char) -> new_lt9(vxw53, vxw56) new_primCmpNat0(Succ(vxw3000), Succ(vxw40000)) -> new_primCmpNat0(vxw3000, vxw40000) new_lt20(vxw79, vxw81, ty_@0) -> new_lt16(vxw79, vxw81) new_esEs11(vxw300, vxw4000, app(app(app(ty_@3, ecf), ecg), ech)) -> new_esEs20(vxw300, vxw4000, ecf, ecg, ech) new_esEs31(vxw300, vxw310, ty_Ordering) -> new_esEs12(vxw300, vxw310) new_esEs36(vxw3000, vxw40000, ty_Integer) -> new_esEs16(vxw3000, vxw40000) new_esEs29(vxw3001, vxw40001, ty_Int) -> new_esEs21(vxw3001, vxw40001) new_esEs34(vxw3002, vxw40002, app(app(app(ty_@3, faf), fag), fah)) -> new_esEs20(vxw3002, vxw40002, faf, fag, fah) new_esEs37(vxw53, vxw56, ty_Char) -> new_esEs18(vxw53, vxw56) new_ltEs16(Left(vxw300), Left(vxw310), app(app(ty_@2, bde), bdf), bdc) -> new_ltEs10(vxw300, vxw310, bde, bdf) new_esEs36(vxw3000, vxw40000, ty_@0) -> new_esEs22(vxw3000, vxw40000) new_ltEs16(Right(vxw300), Right(vxw310), bed, app(ty_[], bee)) -> new_ltEs8(vxw300, vxw310, bee) new_ltEs9(Just(vxw300), Just(vxw310), ty_@0) -> new_ltEs15(vxw300, vxw310) new_lt7(vxw301, vxw311, ty_Char) -> new_lt9(vxw301, vxw311) new_ltEs18(True, True) -> True new_lt12(vxw79, vxw81, bfg) -> new_esEs12(new_compare16(vxw79, vxw81, bfg), LT) new_esEs13(Nothing, Nothing, cgd) -> True new_lt21(vxw300, vxw310, ty_@0) -> new_lt16(vxw300, vxw310) new_ltEs16(Left(vxw300), Left(vxw310), ty_Integer, bdc) -> new_ltEs7(vxw300, vxw310) new_lt21(vxw300, vxw310, ty_Bool) -> new_lt19(vxw300, vxw310) new_esEs36(vxw3000, vxw40000, ty_Char) -> new_esEs18(vxw3000, vxw40000) new_esEs35(vxw3001, vxw40001, ty_Integer) -> new_esEs16(vxw3001, vxw40001) new_ltEs9(Just(vxw300), Just(vxw310), ty_Float) -> new_ltEs13(vxw300, vxw310) new_esEs36(vxw3000, vxw40000, ty_Bool) -> new_esEs19(vxw3000, vxw40000) new_lt8(vxw300, vxw310, ty_Char) -> new_lt9(vxw300, vxw310) new_esEs30(vxw3000, vxw40000, ty_Ordering) -> new_esEs12(vxw3000, vxw40000) new_esEs29(vxw3001, vxw40001, app(ty_Ratio, dcd)) -> new_esEs17(vxw3001, vxw40001, dcd) new_esEs30(vxw3000, vxw40000, app(ty_Ratio, ddf)) -> new_esEs17(vxw3000, vxw40000, ddf) new_esEs14(Float(vxw3000, vxw3001), Float(vxw40000, vxw40001)) -> new_esEs21(new_sr(vxw3000, vxw40001), new_sr(vxw3001, vxw40000)) new_esEs25(Right(vxw3000), Right(vxw40000), egb, ty_Double) -> new_esEs23(vxw3000, vxw40000) new_primCompAux00(vxw23, vxw24, EQ, ty_Char) -> new_compare13(vxw23, vxw24) new_ltEs13(vxw30, vxw31) -> new_fsEs(new_compare7(vxw30, vxw31)) new_compare4(vxw30, vxw400, ty_Integer) -> new_compare14(vxw30, vxw400) new_esEs30(vxw3000, vxw40000, ty_Int) -> new_esEs21(vxw3000, vxw40000) new_esEs38(vxw52, vxw55, app(app(ty_Either, cdf), cdg)) -> new_esEs25(vxw52, vxw55, cdf, cdg) new_esEs37(vxw53, vxw56, ty_Float) -> new_esEs14(vxw53, vxw56) new_ltEs16(Right(vxw300), Right(vxw310), bed, app(app(ty_@2, beg), beh)) -> new_ltEs10(vxw300, vxw310, beg, beh) new_ltEs23(vxw54, vxw57, app(app(ty_@2, caf), cag)) -> new_ltEs10(vxw54, vxw57, caf, cag) new_compare14(Integer(vxw300), Integer(vxw4000)) -> new_primCmpInt(vxw300, vxw4000) new_esEs13(Nothing, Just(vxw40000), cgd) -> False new_esEs13(Just(vxw3000), Nothing, cgd) -> False new_compare9(False, True) -> LT new_esEs19(True, True) -> True new_lt23(vxw52, vxw55, ty_Char) -> new_lt9(vxw52, vxw55) new_compare29(vxw52, vxw53, vxw54, vxw55, vxw56, vxw57, False, cab, cac, cbf) -> new_compare112(vxw52, vxw53, vxw54, vxw55, vxw56, vxw57, new_lt23(vxw52, vxw55, cab), new_asAs(new_esEs38(vxw52, vxw55, cab), new_pePe(new_lt22(vxw53, vxw56, cac), new_asAs(new_esEs37(vxw53, vxw56, cac), new_ltEs23(vxw54, vxw57, cbf)))), cab, cac, cbf) new_compare17(GT, LT) -> GT new_esEs10(vxw300, vxw4000, app(ty_Ratio, edg)) -> new_esEs17(vxw300, vxw4000, edg) new_ltEs22(vxw63, vxw64, app(ty_[], cdh)) -> new_ltEs8(vxw63, vxw64, cdh) new_primCmpInt(Neg(Succ(vxw3000)), Pos(vxw4000)) -> LT new_lt22(vxw53, vxw56, ty_Ordering) -> new_lt13(vxw53, vxw56) new_esEs34(vxw3002, vxw40002, ty_Char) -> new_esEs18(vxw3002, vxw40002) new_esEs38(vxw52, vxw55, app(app(app(ty_@3, cdc), cdd), cde)) -> new_esEs20(vxw52, vxw55, cdc, cdd, cde) new_ltEs5(vxw302, vxw312, ty_@0) -> new_ltEs15(vxw302, vxw312) new_esEs37(vxw53, vxw56, ty_Ordering) -> new_esEs12(vxw53, vxw56) new_compare9(False, False) -> EQ new_ltEs10(@2(vxw300, vxw301), @2(vxw310, vxw311), eg, gc) -> new_pePe(new_lt21(vxw300, vxw310, eg), new_asAs(new_esEs31(vxw300, vxw310, eg), new_ltEs21(vxw301, vxw311, gc))) new_esEs25(Left(vxw3000), Left(vxw40000), app(ty_[], eff), eeg) -> new_esEs24(vxw3000, vxw40000, eff) new_ltEs9(Just(vxw300), Just(vxw310), ty_Ordering) -> new_ltEs11(vxw300, vxw310) new_compare4(vxw30, vxw400, ty_Float) -> new_compare7(vxw30, vxw400) new_ltEs9(Just(vxw300), Just(vxw310), app(ty_[], df)) -> new_ltEs8(vxw300, vxw310, df) new_primCmpInt(Pos(Zero), Neg(Succ(vxw40000))) -> GT new_compare26(vxw70, vxw71, False, cfb, dbf) -> new_compare11(vxw70, vxw71, new_ltEs20(vxw70, vxw71, dbf), cfb, dbf) new_primCmpInt(Neg(Succ(vxw3000)), Neg(vxw4000)) -> new_primCmpNat0(vxw4000, Succ(vxw3000)) new_esEs27(vxw300, vxw310, ty_Integer) -> new_esEs16(vxw300, vxw310) new_esEs6(vxw300, vxw4000, ty_Integer) -> new_esEs16(vxw300, vxw4000) new_ltEs21(vxw301, vxw311, ty_Char) -> new_ltEs6(vxw301, vxw311) new_ltEs11(GT, EQ) -> False new_esEs13(Just(vxw3000), Just(vxw40000), ty_Bool) -> new_esEs19(vxw3000, vxw40000) new_ltEs19(vxw80, vxw82, app(ty_Maybe, bhb)) -> new_ltEs9(vxw80, vxw82, bhb) new_esEs8(vxw301, vxw4001, ty_Float) -> new_esEs14(vxw301, vxw4001) new_compare12(vxw129, vxw130, vxw131, vxw132, True, def, deg) -> LT new_esEs29(vxw3001, vxw40001, ty_Float) -> new_esEs14(vxw3001, vxw40001) new_ltEs16(Left(vxw300), Left(vxw310), ty_Float, bdc) -> new_ltEs13(vxw300, vxw310) new_esEs9(vxw300, vxw4000, ty_Double) -> new_esEs23(vxw300, vxw4000) new_esEs21(vxw300, vxw4000) -> new_primEqInt(vxw300, vxw4000) new_ltEs5(vxw302, vxw312, ty_Ordering) -> new_ltEs11(vxw302, vxw312) new_ltEs22(vxw63, vxw64, ty_Integer) -> new_ltEs7(vxw63, vxw64) new_esEs8(vxw301, vxw4001, ty_@0) -> new_esEs22(vxw301, vxw4001) new_esEs7(vxw302, vxw4002, ty_Int) -> new_esEs21(vxw302, vxw4002) new_compare17(GT, EQ) -> GT new_esEs4(vxw300, vxw4000, app(ty_Ratio, ehe)) -> new_esEs17(vxw300, vxw4000, ehe) new_esEs39(vxw3000, vxw40000, app(app(ty_Either, ffh), fga)) -> new_esEs25(vxw3000, vxw40000, ffh, fga) new_esEs13(Just(vxw3000), Just(vxw40000), ty_Char) -> new_esEs18(vxw3000, vxw40000) new_primEqInt(Pos(Succ(vxw30000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(vxw400000))) -> False new_lt21(vxw300, vxw310, app(app(ty_@2, ge), gf)) -> new_lt5(vxw300, vxw310, ge, gf) new_compare210(vxw63, vxw64, True, eag, cea) -> EQ new_esEs37(vxw53, vxw56, app(app(ty_@2, cbh), cca)) -> new_esEs15(vxw53, vxw56, cbh, cca) new_ltEs19(vxw80, vxw82, ty_Int) -> new_ltEs12(vxw80, vxw82) new_esEs29(vxw3001, vxw40001, ty_@0) -> new_esEs22(vxw3001, vxw40001) new_ltEs9(Just(vxw300), Just(vxw310), ty_Integer) -> new_ltEs7(vxw300, vxw310) new_esEs25(Left(vxw3000), Left(vxw40000), app(app(ty_Either, efh), ega), eeg) -> new_esEs25(vxw3000, vxw40000, efh, ega) new_primCompAux00(vxw23, vxw24, EQ, app(app(ty_@2, bc), bd)) -> new_compare6(vxw23, vxw24, bc, bd) new_compare4(vxw30, vxw400, ty_Ordering) -> new_compare17(vxw30, vxw400) new_ltEs16(Left(vxw300), Left(vxw310), app(app(ty_Either, beb), bec), bdc) -> new_ltEs16(vxw300, vxw310, beb, bec) new_ltEs22(vxw63, vxw64, ty_Ordering) -> new_ltEs11(vxw63, vxw64) new_ltEs24(vxw30, vxw31, ty_Double) -> new_ltEs17(vxw30, vxw31) new_ltEs20(vxw70, vxw71, app(app(ty_@2, cfe), cff)) -> new_ltEs10(vxw70, vxw71, cfe, cff) new_lt23(vxw52, vxw55, ty_Bool) -> new_lt19(vxw52, vxw55) new_esEs39(vxw3000, vxw40000, ty_Char) -> new_esEs18(vxw3000, vxw40000) new_primCmpNat0(Zero, Zero) -> EQ new_ltEs5(vxw302, vxw312, app(ty_[], hf)) -> new_ltEs8(vxw302, vxw312, hf) new_ltEs24(vxw30, vxw31, ty_Float) -> new_ltEs13(vxw30, vxw31) new_esEs28(vxw79, vxw81, ty_Int) -> new_esEs21(vxw79, vxw81) new_esEs37(vxw53, vxw56, ty_Integer) -> new_esEs16(vxw53, vxw56) new_compare4(vxw30, vxw400, ty_Double) -> new_compare28(vxw30, vxw400) new_ltEs19(vxw80, vxw82, ty_Double) -> new_ltEs17(vxw80, vxw82) new_ltEs16(Left(vxw300), Right(vxw310), bed, bdc) -> True new_esEs12(LT, LT) -> True new_esEs4(vxw300, vxw4000, app(ty_[], faa)) -> new_esEs24(vxw300, vxw4000, faa) new_esEs27(vxw300, vxw310, ty_Bool) -> new_esEs19(vxw300, vxw310) new_ltEs21(vxw301, vxw311, app(ty_Maybe, fa)) -> new_ltEs9(vxw301, vxw311, fa) new_ltEs19(vxw80, vxw82, ty_Char) -> new_ltEs6(vxw80, vxw82) new_primCompAux00(vxw23, vxw24, EQ, app(app(ty_Either, bh), ca)) -> new_compare27(vxw23, vxw24, bh, ca) new_esEs39(vxw3000, vxw40000, ty_Float) -> new_esEs14(vxw3000, vxw40000) new_ltEs5(vxw302, vxw312, ty_Bool) -> new_ltEs18(vxw302, vxw312) new_esEs7(vxw302, vxw4002, app(app(app(ty_@3, dhh), eaa), eab)) -> new_esEs20(vxw302, vxw4002, dhh, eaa, eab) new_lt4(vxw79, vxw81) -> new_esEs12(new_compare5(vxw79, vxw81), LT) new_ltEs19(vxw80, vxw82, ty_Float) -> new_ltEs13(vxw80, vxw82) new_ltEs24(vxw30, vxw31, ty_Bool) -> new_ltEs18(vxw30, vxw31) new_esEs27(vxw300, vxw310, ty_Ordering) -> new_esEs12(vxw300, vxw310) new_compare15([], [], cb) -> EQ new_esEs29(vxw3001, vxw40001, app(app(ty_Either, ddb), ddc)) -> new_esEs25(vxw3001, vxw40001, ddb, ddc) new_primCompAux00(vxw23, vxw24, EQ, ty_Int) -> new_compare5(vxw23, vxw24) new_ltEs11(GT, LT) -> False new_compare110(vxw109, vxw110, True, dfa, dfb) -> LT new_esEs38(vxw52, vxw55, ty_Int) -> new_esEs21(vxw52, vxw55) new_compare29(vxw52, vxw53, vxw54, vxw55, vxw56, vxw57, True, cab, cac, cbf) -> EQ new_esEs39(vxw3000, vxw40000, ty_Bool) -> new_esEs19(vxw3000, vxw40000) new_compare17(EQ, LT) -> GT new_esEs27(vxw300, vxw310, app(app(ty_@2, bcc), bcd)) -> new_esEs15(vxw300, vxw310, bcc, bcd) new_esEs25(Left(vxw3000), Left(vxw40000), app(app(app(ty_@3, efc), efd), efe), eeg) -> new_esEs20(vxw3000, vxw40000, efc, efd, efe) new_esEs39(vxw3000, vxw40000, ty_@0) -> new_esEs22(vxw3000, vxw40000) new_esEs9(vxw300, vxw4000, app(ty_[], dae)) -> new_esEs24(vxw300, vxw4000, dae) new_esEs34(vxw3002, vxw40002, ty_Bool) -> new_esEs19(vxw3002, vxw40002) new_lt8(vxw300, vxw310, ty_Int) -> new_lt4(vxw300, vxw310) new_esEs9(vxw300, vxw4000, ty_Ordering) -> new_esEs12(vxw300, vxw4000) new_lt8(vxw300, vxw310, app(app(ty_Either, bch), bda)) -> new_lt17(vxw300, vxw310, bch, bda) new_ltEs11(LT, LT) -> True new_lt20(vxw79, vxw81, app(app(app(ty_@3, bgc), bgd), bge)) -> new_lt14(vxw79, vxw81, bgc, bgd, bge) new_ltEs21(vxw301, vxw311, ty_Int) -> new_ltEs12(vxw301, vxw311) new_compare8(:%(vxw300, vxw301), :%(vxw4000, vxw4001), ty_Integer) -> new_compare14(new_sr0(vxw300, vxw4001), new_sr0(vxw4000, vxw301)) new_ltEs23(vxw54, vxw57, app(app(app(ty_@3, cah), cba), cbb)) -> new_ltEs4(vxw54, vxw57, cah, cba, cbb) new_esEs9(vxw300, vxw4000, app(app(ty_@2, chg), chh)) -> new_esEs15(vxw300, vxw4000, chg, chh) new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_esEs11(vxw300, vxw4000, ty_@0) -> new_esEs22(vxw300, vxw4000) new_esEs10(vxw300, vxw4000, ty_Int) -> new_esEs21(vxw300, vxw4000) new_esEs4(vxw300, vxw4000, app(app(ty_@2, dbh), dca)) -> new_esEs15(vxw300, vxw4000, dbh, dca) new_esEs32(vxw3001, vxw40001, ty_Integer) -> new_esEs16(vxw3001, vxw40001) new_primCmpNat0(Succ(vxw3000), Zero) -> GT new_esEs5(vxw301, vxw4001, app(ty_Maybe, fha)) -> new_esEs13(vxw301, vxw4001, fha) new_ltEs22(vxw63, vxw64, ty_Bool) -> new_ltEs18(vxw63, vxw64) new_ltEs22(vxw63, vxw64, app(app(ty_Either, ceh), cfa)) -> new_ltEs16(vxw63, vxw64, ceh, cfa) new_compare16(Just(vxw300), Nothing, cd) -> GT new_pePe(False, vxw158) -> vxw158 new_esEs10(vxw300, vxw4000, ty_Double) -> new_esEs23(vxw300, vxw4000) new_compare25(vxw79, vxw80, vxw81, vxw82, True, bgh, bgb) -> EQ new_esEs11(vxw300, vxw4000, ty_Float) -> new_esEs14(vxw300, vxw4000) new_esEs8(vxw301, vxw4001, ty_Char) -> new_esEs18(vxw301, vxw4001) new_esEs10(vxw300, vxw4000, app(ty_[], eec)) -> new_esEs24(vxw300, vxw4000, eec) new_lt22(vxw53, vxw56, app(ty_[], cbe)) -> new_lt11(vxw53, vxw56, cbe) new_compare6(@2(vxw300, vxw301), @2(vxw4000, vxw4001), ce, cf) -> new_compare25(vxw300, vxw301, vxw4000, vxw4001, new_asAs(new_esEs6(vxw300, vxw4000, ce), new_esEs5(vxw301, vxw4001, cf)), ce, cf) new_esEs6(vxw300, vxw4000, ty_Double) -> new_esEs23(vxw300, vxw4000) new_ltEs21(vxw301, vxw311, ty_Double) -> new_ltEs17(vxw301, vxw311) new_esEs34(vxw3002, vxw40002, ty_Float) -> new_esEs14(vxw3002, vxw40002) new_esEs30(vxw3000, vxw40000, app(app(app(ty_@3, ddg), ddh), dea)) -> new_esEs20(vxw3000, vxw40000, ddg, ddh, dea) new_esEs5(vxw301, vxw4001, ty_@0) -> new_esEs22(vxw301, vxw4001) new_esEs6(vxw300, vxw4000, ty_Char) -> new_esEs18(vxw300, vxw4000) new_lt22(vxw53, vxw56, ty_Integer) -> new_lt10(vxw53, vxw56) new_compare16(Nothing, Nothing, cd) -> EQ new_compare11(vxw119, vxw120, False, fea, feb) -> GT new_primEqInt(Pos(Zero), Neg(Succ(vxw400000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(vxw400000))) -> False new_lt6(vxw79, vxw81) -> new_esEs12(new_compare7(vxw79, vxw81), LT) new_compare9(True, False) -> GT new_lt8(vxw300, vxw310, app(ty_Maybe, bcb)) -> new_lt12(vxw300, vxw310, bcb) new_esEs9(vxw300, vxw4000, app(ty_Ratio, daa)) -> new_esEs17(vxw300, vxw4000, daa) new_esEs25(Right(vxw3000), Right(vxw40000), egb, ty_Int) -> new_esEs21(vxw3000, vxw40000) new_ltEs20(vxw70, vxw71, app(app(ty_Either, cgb), cgc)) -> new_ltEs16(vxw70, vxw71, cgb, cgc) new_compare17(LT, LT) -> EQ new_lt20(vxw79, vxw81, ty_Float) -> new_lt6(vxw79, vxw81) new_esEs39(vxw3000, vxw40000, ty_Integer) -> new_esEs16(vxw3000, vxw40000) new_esEs29(vxw3001, vxw40001, ty_Char) -> new_esEs18(vxw3001, vxw40001) new_ltEs21(vxw301, vxw311, ty_Float) -> new_ltEs13(vxw301, vxw311) new_esEs34(vxw3002, vxw40002, ty_Ordering) -> new_esEs12(vxw3002, vxw40002) new_esEs31(vxw300, vxw310, app(app(ty_Either, hb), hc)) -> new_esEs25(vxw300, vxw310, hb, hc) new_compare27(Left(vxw300), Left(vxw4000), dc, dd) -> new_compare210(vxw300, vxw4000, new_esEs10(vxw300, vxw4000, dc), dc, dd) new_esEs28(vxw79, vxw81, app(ty_Maybe, bfg)) -> new_esEs13(vxw79, vxw81, bfg) new_compare7(Float(vxw300, Neg(vxw3010)), Float(vxw4000, Neg(vxw40010))) -> new_compare5(new_sr(vxw300, Neg(vxw40010)), new_sr(Neg(vxw3010), vxw4000)) new_compare5(vxw30, vxw400) -> new_primCmpInt(vxw30, vxw400) new_ltEs16(Right(vxw300), Right(vxw310), bed, ty_Char) -> new_ltEs6(vxw300, vxw310) new_ltEs16(Left(vxw300), Left(vxw310), ty_Int, bdc) -> new_ltEs12(vxw300, vxw310) new_esEs24(:(vxw3000, vxw3001), [], faa) -> False new_esEs24([], :(vxw40000, vxw40001), faa) -> False new_primPlusNat0(Zero, vxw30100) -> Succ(vxw30100) new_esEs11(vxw300, vxw4000, app(app(ty_Either, edc), edd)) -> new_esEs25(vxw300, vxw4000, edc, edd) new_esEs5(vxw301, vxw4001, app(app(app(ty_@3, fge), fgf), fgg)) -> new_esEs20(vxw301, vxw4001, fge, fgf, fgg) new_esEs8(vxw301, vxw4001, ty_Bool) -> new_esEs19(vxw301, vxw4001) new_esEs29(vxw3001, vxw40001, ty_Bool) -> new_esEs19(vxw3001, vxw40001) new_esEs25(Left(vxw3000), Left(vxw40000), app(ty_Ratio, efb), eeg) -> new_esEs17(vxw3000, vxw40000, efb) new_ltEs5(vxw302, vxw312, ty_Integer) -> new_ltEs7(vxw302, vxw312) new_ltEs16(Left(vxw300), Left(vxw310), ty_Bool, bdc) -> new_ltEs18(vxw300, vxw310) new_esEs26(vxw301, vxw311, app(app(app(ty_@3, bbd), bbe), bbf)) -> new_esEs20(vxw301, vxw311, bbd, bbe, bbf) new_esEs34(vxw3002, vxw40002, app(app(ty_Either, fbc), fbd)) -> new_esEs25(vxw3002, vxw40002, fbc, fbd) new_ltEs22(vxw63, vxw64, ty_@0) -> new_ltEs15(vxw63, vxw64) new_lt7(vxw301, vxw311, app(app(app(ty_@3, bbd), bbe), bbf)) -> new_lt14(vxw301, vxw311, bbd, bbe, bbf) new_esEs30(vxw3000, vxw40000, app(ty_[], deb)) -> new_esEs24(vxw3000, vxw40000, deb) new_compare8(:%(vxw300, vxw301), :%(vxw4000, vxw4001), ty_Int) -> new_compare5(new_sr(vxw300, vxw4001), new_sr(vxw4000, vxw301)) new_compare15([], :(vxw4000, vxw4001), cb) -> LT new_ltEs23(vxw54, vxw57, app(ty_Ratio, fee)) -> new_ltEs14(vxw54, vxw57, fee) new_lt13(vxw79, vxw81) -> new_esEs12(new_compare17(vxw79, vxw81), LT) new_esEs13(Just(vxw3000), Just(vxw40000), ty_Integer) -> new_esEs16(vxw3000, vxw40000) new_esEs31(vxw300, vxw310, ty_Float) -> new_esEs14(vxw300, vxw310) new_lt21(vxw300, vxw310, ty_Int) -> new_lt4(vxw300, vxw310) new_esEs28(vxw79, vxw81, app(app(app(ty_@3, bgc), bgd), bge)) -> new_esEs20(vxw79, vxw81, bgc, bgd, bge) new_esEs35(vxw3001, vxw40001, ty_Int) -> new_esEs21(vxw3001, vxw40001) new_esEs6(vxw300, vxw4000, ty_Bool) -> new_esEs19(vxw300, vxw4000) new_esEs31(vxw300, vxw310, ty_Bool) -> new_esEs19(vxw300, vxw310) new_esEs6(vxw300, vxw4000, app(app(ty_@2, eba), ebb)) -> new_esEs15(vxw300, vxw4000, eba, ebb) new_compare111(vxw144, vxw145, vxw146, vxw147, vxw148, vxw149, True, dgh, dha, dhb) -> LT new_esEs31(vxw300, vxw310, ty_@0) -> new_esEs22(vxw300, vxw310) new_primMulInt(Neg(vxw40000), Neg(vxw3010)) -> Pos(new_primMulNat0(vxw40000, vxw3010)) new_primCmpInt(Pos(Zero), Pos(Succ(vxw40000))) -> new_primCmpNat0(Zero, Succ(vxw40000)) new_compare28(Double(vxw300, Pos(vxw3010)), Double(vxw4000, Pos(vxw40010))) -> new_compare5(new_sr(vxw300, Pos(vxw40010)), new_sr(Pos(vxw3010), vxw4000)) new_esEs35(vxw3001, vxw40001, app(ty_Ratio, fbg)) -> new_esEs17(vxw3001, vxw40001, fbg) new_esEs8(vxw301, vxw4001, app(app(ty_Either, dgf), dgg)) -> new_esEs25(vxw301, vxw4001, dgf, dgg) new_esEs38(vxw52, vxw55, app(ty_Maybe, cch)) -> new_esEs13(vxw52, vxw55, cch) new_esEs25(Left(vxw3000), Right(vxw40000), egb, eeg) -> False new_esEs25(Right(vxw3000), Left(vxw40000), egb, eeg) -> False new_esEs4(vxw300, vxw4000, app(app(app(ty_@3, ehf), ehg), ehh)) -> new_esEs20(vxw300, vxw4000, ehf, ehg, ehh) new_compare4(vxw30, vxw400, ty_@0) -> new_compare19(vxw30, vxw400) new_lt21(vxw300, vxw310, app(ty_Maybe, gd)) -> new_lt12(vxw300, vxw310, gd) new_ltEs24(vxw30, vxw31, ty_Int) -> new_ltEs12(vxw30, vxw31) new_esEs26(vxw301, vxw311, app(ty_Maybe, bba)) -> new_esEs13(vxw301, vxw311, bba) new_esEs31(vxw300, vxw310, ty_Char) -> new_esEs18(vxw300, vxw310) new_lt23(vxw52, vxw55, app(app(app(ty_@3, cdc), cdd), cde)) -> new_lt14(vxw52, vxw55, cdc, cdd, cde) new_esEs29(vxw3001, vxw40001, ty_Integer) -> new_esEs16(vxw3001, vxw40001) new_esEs6(vxw300, vxw4000, app(ty_[], ebg)) -> new_esEs24(vxw300, vxw4000, ebg) new_ltEs16(Left(vxw300), Left(vxw310), ty_Double, bdc) -> new_ltEs17(vxw300, vxw310) new_ltEs24(vxw30, vxw31, ty_Integer) -> new_ltEs7(vxw30, vxw31) new_esEs25(Right(vxw3000), Right(vxw40000), egb, ty_Integer) -> new_esEs16(vxw3000, vxw40000) new_ltEs5(vxw302, vxw312, app(ty_Maybe, hg)) -> new_ltEs9(vxw302, vxw312, hg) new_esEs15(@2(vxw3000, vxw3001), @2(vxw40000, vxw40001), dbh, dca) -> new_asAs(new_esEs30(vxw3000, vxw40000, dbh), new_esEs29(vxw3001, vxw40001, dca)) new_primMulInt(Pos(vxw40000), Neg(vxw3010)) -> Neg(new_primMulNat0(vxw40000, vxw3010)) new_primMulInt(Neg(vxw40000), Pos(vxw3010)) -> Neg(new_primMulNat0(vxw40000, vxw3010)) new_esEs34(vxw3002, vxw40002, app(ty_[], fba)) -> new_esEs24(vxw3002, vxw40002, fba) new_lt8(vxw300, vxw310, app(ty_Ratio, dbc)) -> new_lt15(vxw300, vxw310, dbc) new_compare15(:(vxw300, vxw301), [], cb) -> GT new_esEs6(vxw300, vxw4000, app(ty_Ratio, ebc)) -> new_esEs17(vxw300, vxw4000, ebc) new_ltEs9(Just(vxw300), Just(vxw310), ty_Double) -> new_ltEs17(vxw300, vxw310) new_esEs27(vxw300, vxw310, ty_@0) -> new_esEs22(vxw300, vxw310) new_sr0(Integer(vxw40000), Integer(vxw3010)) -> Integer(new_primMulInt(vxw40000, vxw3010)) new_esEs34(vxw3002, vxw40002, ty_Double) -> new_esEs23(vxw3002, vxw40002) new_ltEs16(Right(vxw300), Right(vxw310), bed, ty_Double) -> new_ltEs17(vxw300, vxw310) new_ltEs23(vxw54, vxw57, app(app(ty_Either, cbc), cbd)) -> new_ltEs16(vxw54, vxw57, cbc, cbd) new_lt8(vxw300, vxw310, ty_Integer) -> new_lt10(vxw300, vxw310) new_esEs5(vxw301, vxw4001, ty_Int) -> new_esEs21(vxw301, vxw4001) new_esEs7(vxw302, vxw4002, ty_Double) -> new_esEs23(vxw302, vxw4002) new_ltEs20(vxw70, vxw71, ty_Ordering) -> new_ltEs11(vxw70, vxw71) new_esEs8(vxw301, vxw4001, ty_Ordering) -> new_esEs12(vxw301, vxw4001) new_ltEs23(vxw54, vxw57, ty_Int) -> new_ltEs12(vxw54, vxw57) new_ltEs22(vxw63, vxw64, ty_Double) -> new_ltEs17(vxw63, vxw64) new_lt21(vxw300, vxw310, ty_Integer) -> new_lt10(vxw300, vxw310) new_ltEs16(Left(vxw300), Left(vxw310), app(ty_Maybe, bdd), bdc) -> new_ltEs9(vxw300, vxw310, bdd) new_ltEs5(vxw302, vxw312, ty_Int) -> new_ltEs12(vxw302, vxw312) new_ltEs9(Nothing, Just(vxw310), fhd) -> True new_lt7(vxw301, vxw311, ty_Ordering) -> new_lt13(vxw301, vxw311) new_asAs(True, vxw97) -> vxw97 new_esEs22(@0, @0) -> True new_lt7(vxw301, vxw311, app(ty_Maybe, bba)) -> new_lt12(vxw301, vxw311, bba) new_esEs39(vxw3000, vxw40000, ty_Double) -> new_esEs23(vxw3000, vxw40000) new_esEs4(vxw300, vxw4000, app(ty_Maybe, cgd)) -> new_esEs13(vxw300, vxw4000, cgd) new_ltEs23(vxw54, vxw57, ty_Char) -> new_ltEs6(vxw54, vxw57) new_esEs26(vxw301, vxw311, ty_Char) -> new_esEs18(vxw301, vxw311) new_esEs27(vxw300, vxw310, ty_Float) -> new_esEs14(vxw300, vxw310) new_esEs37(vxw53, vxw56, app(ty_Ratio, fef)) -> new_esEs17(vxw53, vxw56, fef) new_ltEs9(Just(vxw300), Just(vxw310), app(app(ty_@2, dh), ea)) -> new_ltEs10(vxw300, vxw310, dh, ea) new_esEs25(Right(vxw3000), Right(vxw40000), egb, ty_Bool) -> new_esEs19(vxw3000, vxw40000) new_compare18(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), cg, da, db) -> new_compare29(vxw300, vxw301, vxw302, vxw4000, vxw4001, vxw4002, new_asAs(new_esEs9(vxw300, vxw4000, cg), new_asAs(new_esEs8(vxw301, vxw4001, da), new_esEs7(vxw302, vxw4002, db))), cg, da, db) new_compare12(vxw129, vxw130, vxw131, vxw132, False, def, deg) -> GT new_esEs37(vxw53, vxw56, ty_Int) -> new_esEs21(vxw53, vxw56) new_lt21(vxw300, vxw310, ty_Double) -> new_lt18(vxw300, vxw310) new_ltEs23(vxw54, vxw57, app(ty_Maybe, cae)) -> new_ltEs9(vxw54, vxw57, cae) new_sr(vxw4000, vxw301) -> new_primMulInt(vxw4000, vxw301) new_esEs39(vxw3000, vxw40000, app(ty_[], fff)) -> new_esEs24(vxw3000, vxw40000, fff) new_esEs38(vxw52, vxw55, app(ty_Ratio, feg)) -> new_esEs17(vxw52, vxw55, feg) new_esEs9(vxw300, vxw4000, ty_Int) -> new_esEs21(vxw300, vxw4000) new_ltEs9(Just(vxw300), Just(vxw310), app(app(app(ty_@3, eb), ec), ed)) -> new_ltEs4(vxw300, vxw310, eb, ec, ed) new_primMulNat0(Zero, Zero) -> Zero new_compare27(Right(vxw300), Right(vxw4000), dc, dd) -> new_compare26(vxw300, vxw4000, new_esEs11(vxw300, vxw4000, dd), dc, dd) new_ltEs5(vxw302, vxw312, ty_Double) -> new_ltEs17(vxw302, vxw312) new_ltEs22(vxw63, vxw64, app(app(app(ty_@3, cee), cef), ceg)) -> new_ltEs4(vxw63, vxw64, cee, cef, ceg) new_ltEs20(vxw70, vxw71, ty_Integer) -> new_ltEs7(vxw70, vxw71) new_esEs20(@3(vxw3000, vxw3001, vxw3002), @3(vxw40000, vxw40001, vxw40002), ehf, ehg, ehh) -> new_asAs(new_esEs36(vxw3000, vxw40000, ehf), new_asAs(new_esEs35(vxw3001, vxw40001, ehg), new_esEs34(vxw3002, vxw40002, ehh))) new_lt23(vxw52, vxw55, app(ty_Maybe, cch)) -> new_lt12(vxw52, vxw55, cch) new_ltEs22(vxw63, vxw64, app(ty_Maybe, ceb)) -> new_ltEs9(vxw63, vxw64, ceb) new_ltEs24(vxw30, vxw31, ty_Ordering) -> new_ltEs11(vxw30, vxw31) new_esEs9(vxw300, vxw4000, ty_Integer) -> new_esEs16(vxw300, vxw4000) new_esEs38(vxw52, vxw55, app(ty_[], ccg)) -> new_esEs24(vxw52, vxw55, ccg) new_esEs4(vxw300, vxw4000, ty_Ordering) -> new_esEs12(vxw300, vxw4000) new_ltEs9(Just(vxw300), Just(vxw310), app(ty_Ratio, fhe)) -> new_ltEs14(vxw300, vxw310, fhe) new_lt20(vxw79, vxw81, app(ty_Ratio, dbd)) -> new_lt15(vxw79, vxw81, dbd) new_lt8(vxw300, vxw310, ty_Ordering) -> new_lt13(vxw300, vxw310) new_esEs13(Just(vxw3000), Just(vxw40000), ty_@0) -> new_esEs22(vxw3000, vxw40000) new_ltEs22(vxw63, vxw64, app(ty_Ratio, eah)) -> new_ltEs14(vxw63, vxw64, eah) new_ltEs9(Just(vxw300), Just(vxw310), ty_Int) -> new_ltEs12(vxw300, vxw310) new_esEs34(vxw3002, vxw40002, app(app(ty_@2, fac), fad)) -> new_esEs15(vxw3002, vxw40002, fac, fad) new_compare111(vxw144, vxw145, vxw146, vxw147, vxw148, vxw149, False, dgh, dha, dhb) -> GT new_esEs39(vxw3000, vxw40000, ty_Ordering) -> new_esEs12(vxw3000, vxw40000) new_esEs8(vxw301, vxw4001, ty_Integer) -> new_esEs16(vxw301, vxw4001) new_esEs28(vxw79, vxw81, ty_@0) -> new_esEs22(vxw79, vxw81) new_esEs35(vxw3001, vxw40001, ty_Double) -> new_esEs23(vxw3001, vxw40001) new_primEqInt(Neg(Succ(vxw30000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(vxw400000))) -> False new_esEs10(vxw300, vxw4000, app(app(ty_@2, ede), edf)) -> new_esEs15(vxw300, vxw4000, ede, edf) new_esEs9(vxw300, vxw4000, ty_Bool) -> new_esEs19(vxw300, vxw4000) new_primEqInt(Pos(Succ(vxw30000)), Pos(Succ(vxw400000))) -> new_primEqNat0(vxw30000, vxw400000) new_ltEs24(vxw30, vxw31, ty_Char) -> new_ltEs6(vxw30, vxw31) new_ltEs16(Right(vxw300), Right(vxw310), bed, app(ty_Maybe, bef)) -> new_ltEs9(vxw300, vxw310, bef) new_ltEs17(vxw30, vxw31) -> new_fsEs(new_compare28(vxw30, vxw31)) new_ltEs24(vxw30, vxw31, ty_@0) -> new_ltEs15(vxw30, vxw31) new_esEs39(vxw3000, vxw40000, app(app(ty_@2, feh), ffa)) -> new_esEs15(vxw3000, vxw40000, feh, ffa) new_lt18(vxw79, vxw81) -> new_esEs12(new_compare28(vxw79, vxw81), LT) new_lt23(vxw52, vxw55, ty_Int) -> new_lt4(vxw52, vxw55) new_ltEs21(vxw301, vxw311, app(ty_Ratio, dhc)) -> new_ltEs14(vxw301, vxw311, dhc) new_primEqInt(Pos(Succ(vxw30000)), Neg(vxw40000)) -> False new_primEqInt(Neg(Succ(vxw30000)), Pos(vxw40000)) -> False new_lt21(vxw300, vxw310, app(ty_Ratio, dhd)) -> new_lt15(vxw300, vxw310, dhd) new_esEs9(vxw300, vxw4000, ty_Char) -> new_esEs18(vxw300, vxw4000) new_ltEs5(vxw302, vxw312, ty_Char) -> new_ltEs6(vxw302, vxw312) new_primCmpInt(Neg(Zero), Neg(Succ(vxw40000))) -> new_primCmpNat0(Succ(vxw40000), Zero) new_esEs13(Just(vxw3000), Just(vxw40000), ty_Float) -> new_esEs14(vxw3000, vxw40000) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_ltEs5(vxw302, vxw312, app(ty_Ratio, dba)) -> new_ltEs14(vxw302, vxw312, dba) new_esEs28(vxw79, vxw81, ty_Float) -> new_esEs14(vxw79, vxw81) new_esEs4(vxw300, vxw4000, ty_Int) -> new_esEs21(vxw300, vxw4000) new_esEs27(vxw300, vxw310, ty_Char) -> new_esEs18(vxw300, vxw310) new_ltEs19(vxw80, vxw82, app(app(app(ty_@3, bhe), bhf), bhg)) -> new_ltEs4(vxw80, vxw82, bhe, bhf, bhg) new_ltEs22(vxw63, vxw64, ty_Char) -> new_ltEs6(vxw63, vxw64) new_lt7(vxw301, vxw311, app(ty_Ratio, dbb)) -> new_lt15(vxw301, vxw311, dbb) new_primCompAux00(vxw23, vxw24, LT, dfc) -> LT new_esEs26(vxw301, vxw311, ty_@0) -> new_esEs22(vxw301, vxw311) new_lt9(vxw79, vxw81) -> new_esEs12(new_compare13(vxw79, vxw81), LT) new_ltEs21(vxw301, vxw311, ty_Ordering) -> new_ltEs11(vxw301, vxw311) new_compare27(Right(vxw300), Left(vxw4000), dc, dd) -> GT new_compare4(vxw30, vxw400, app(ty_[], cb)) -> new_compare15(vxw30, vxw400, cb) new_lt20(vxw79, vxw81, ty_Double) -> new_lt18(vxw79, vxw81) new_esEs26(vxw301, vxw311, ty_Integer) -> new_esEs16(vxw301, vxw311) new_not(False) -> True new_esEs35(vxw3001, vxw40001, app(ty_[], fcc)) -> new_esEs24(vxw3001, vxw40001, fcc) new_ltEs24(vxw30, vxw31, app(app(ty_Either, bed), bdc)) -> new_ltEs16(vxw30, vxw31, bed, bdc) new_esEs5(vxw301, vxw4001, app(ty_Ratio, fgd)) -> new_esEs17(vxw301, vxw4001, fgd) new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_lt20(vxw79, vxw81, app(app(ty_@2, bfh), bga)) -> new_lt5(vxw79, vxw81, bfh, bga) new_esEs38(vxw52, vxw55, app(app(ty_@2, cda), cdb)) -> new_esEs15(vxw52, vxw55, cda, cdb) new_esEs4(vxw300, vxw4000, ty_Double) -> new_esEs23(vxw300, vxw4000) new_esEs28(vxw79, vxw81, app(app(ty_Either, bgf), bgg)) -> new_esEs25(vxw79, vxw81, bgf, bgg) new_compare112(vxw144, vxw145, vxw146, vxw147, vxw148, vxw149, False, vxw151, dgh, dha, dhb) -> new_compare111(vxw144, vxw145, vxw146, vxw147, vxw148, vxw149, vxw151, dgh, dha, dhb) new_esEs25(Right(vxw3000), Right(vxw40000), egb, ty_Char) -> new_esEs18(vxw3000, vxw40000) new_ltEs20(vxw70, vxw71, app(ty_Ratio, dbg)) -> new_ltEs14(vxw70, vxw71, dbg) new_esEs37(vxw53, vxw56, app(ty_[], cbe)) -> new_esEs24(vxw53, vxw56, cbe) new_lt22(vxw53, vxw56, app(ty_Ratio, fef)) -> new_lt15(vxw53, vxw56, fef) new_compare10(vxw129, vxw130, vxw131, vxw132, False, vxw134, def, deg) -> new_compare12(vxw129, vxw130, vxw131, vxw132, vxw134, def, deg) new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_esEs7(vxw302, vxw4002, app(ty_Maybe, ead)) -> new_esEs13(vxw302, vxw4002, ead) new_esEs7(vxw302, vxw4002, ty_Ordering) -> new_esEs12(vxw302, vxw4002) new_esEs13(Just(vxw3000), Just(vxw40000), app(app(ty_Either, che), chf)) -> new_esEs25(vxw3000, vxw40000, che, chf) new_ltEs20(vxw70, vxw71, ty_Char) -> new_ltEs6(vxw70, vxw71) new_ltEs11(LT, EQ) -> True new_ltEs5(vxw302, vxw312, app(app(app(ty_@3, bab), bac), bad)) -> new_ltEs4(vxw302, vxw312, bab, bac, bad) new_esEs8(vxw301, vxw4001, app(app(app(ty_@3, dga), dgb), dgc)) -> new_esEs20(vxw301, vxw4001, dga, dgb, dgc) new_ltEs19(vxw80, vxw82, app(ty_Ratio, dbe)) -> new_ltEs14(vxw80, vxw82, dbe) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs25(Left(vxw3000), Left(vxw40000), ty_Ordering, eeg) -> new_esEs12(vxw3000, vxw40000) new_lt8(vxw300, vxw310, app(app(ty_@2, bcc), bcd)) -> new_lt5(vxw300, vxw310, bcc, bcd) new_esEs25(Left(vxw3000), Left(vxw40000), ty_Int, eeg) -> new_esEs21(vxw3000, vxw40000) new_lt5(vxw79, vxw81, bfh, bga) -> new_esEs12(new_compare6(vxw79, vxw81, bfh, bga), LT) new_esEs7(vxw302, vxw4002, app(ty_Ratio, dhg)) -> new_esEs17(vxw302, vxw4002, dhg) new_esEs26(vxw301, vxw311, ty_Bool) -> new_esEs19(vxw301, vxw311) new_esEs5(vxw301, vxw4001, ty_Ordering) -> new_esEs12(vxw301, vxw4001) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs38(vxw52, vxw55, ty_Double) -> new_esEs23(vxw52, vxw55) new_ltEs21(vxw301, vxw311, app(app(app(ty_@3, fd), ff), fg)) -> new_ltEs4(vxw301, vxw311, fd, ff, fg) new_lt7(vxw301, vxw311, app(app(ty_@2, bbb), bbc)) -> new_lt5(vxw301, vxw311, bbb, bbc) new_primMulNat0(Succ(vxw400000), Succ(vxw30100)) -> new_primPlusNat0(new_primMulNat0(vxw400000, Succ(vxw30100)), vxw30100) new_compare112(vxw144, vxw145, vxw146, vxw147, vxw148, vxw149, True, vxw151, dgh, dha, dhb) -> new_compare111(vxw144, vxw145, vxw146, vxw147, vxw148, vxw149, True, dgh, dha, dhb) new_ltEs19(vxw80, vxw82, ty_Ordering) -> new_ltEs11(vxw80, vxw82) new_esEs9(vxw300, vxw4000, app(ty_Maybe, daf)) -> new_esEs13(vxw300, vxw4000, daf) new_lt23(vxw52, vxw55, app(app(ty_@2, cda), cdb)) -> new_lt5(vxw52, vxw55, cda, cdb) new_esEs35(vxw3001, vxw40001, app(app(ty_@2, fbe), fbf)) -> new_esEs15(vxw3001, vxw40001, fbe, fbf) new_lt8(vxw300, vxw310, ty_Double) -> new_lt18(vxw300, vxw310) new_ltEs11(LT, GT) -> True new_esEs27(vxw300, vxw310, app(app(ty_Either, bch), bda)) -> new_esEs25(vxw300, vxw310, bch, bda) new_esEs37(vxw53, vxw56, ty_Double) -> new_esEs23(vxw53, vxw56) new_esEs25(Right(vxw3000), Right(vxw40000), egb, ty_Float) -> new_esEs14(vxw3000, vxw40000) new_ltEs16(Right(vxw300), Right(vxw310), bed, app(app(app(ty_@3, bfa), bfb), bfc)) -> new_ltEs4(vxw300, vxw310, bfa, bfb, bfc) new_esEs26(vxw301, vxw311, app(app(ty_Either, bbg), bbh)) -> new_esEs25(vxw301, vxw311, bbg, bbh) new_esEs24(:(vxw3000, vxw3001), :(vxw40000, vxw40001), faa) -> new_asAs(new_esEs39(vxw3000, vxw40000, faa), new_esEs24(vxw3001, vxw40001, faa)) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_primCompAux00(vxw23, vxw24, EQ, app(ty_[], ba)) -> new_compare15(vxw23, vxw24, ba) new_lt23(vxw52, vxw55, ty_Double) -> new_lt18(vxw52, vxw55) new_compare28(Double(vxw300, Pos(vxw3010)), Double(vxw4000, Neg(vxw40010))) -> new_compare5(new_sr(vxw300, Pos(vxw40010)), new_sr(Neg(vxw3010), vxw4000)) new_compare28(Double(vxw300, Neg(vxw3010)), Double(vxw4000, Pos(vxw40010))) -> new_compare5(new_sr(vxw300, Neg(vxw40010)), new_sr(Pos(vxw3010), vxw4000)) new_compare110(vxw109, vxw110, False, dfa, dfb) -> GT new_esEs9(vxw300, vxw4000, app(app(app(ty_@3, dab), dac), dad)) -> new_esEs20(vxw300, vxw4000, dab, dac, dad) new_primEqNat0(Zero, Zero) -> True new_ltEs9(Just(vxw300), Nothing, fhd) -> False new_ltEs9(Nothing, Nothing, fhd) -> True new_ltEs16(Right(vxw300), Right(vxw310), bed, ty_Int) -> new_ltEs12(vxw300, vxw310) new_esEs6(vxw300, vxw4000, ty_Int) -> new_esEs21(vxw300, vxw4000) new_compare16(Nothing, Just(vxw4000), cd) -> LT new_esEs26(vxw301, vxw311, ty_Float) -> new_esEs14(vxw301, vxw311) new_lt22(vxw53, vxw56, ty_Double) -> new_lt18(vxw53, vxw56) new_asAs(False, vxw97) -> False new_lt22(vxw53, vxw56, app(app(ty_@2, cbh), cca)) -> new_lt5(vxw53, vxw56, cbh, cca) new_ltEs24(vxw30, vxw31, app(ty_Maybe, fhd)) -> new_ltEs9(vxw30, vxw31, fhd) new_ltEs23(vxw54, vxw57, ty_Integer) -> new_ltEs7(vxw54, vxw57) new_esEs6(vxw300, vxw4000, ty_Ordering) -> new_esEs12(vxw300, vxw4000) new_esEs36(vxw3000, vxw40000, app(ty_[], fde)) -> new_esEs24(vxw3000, vxw40000, fde) new_ltEs20(vxw70, vxw71, app(app(app(ty_@3, cfg), cfh), cga)) -> new_ltEs4(vxw70, vxw71, cfg, cfh, cga) new_esEs36(vxw3000, vxw40000, app(app(ty_@2, fcg), fch)) -> new_esEs15(vxw3000, vxw40000, fcg, fch) new_esEs8(vxw301, vxw4001, app(ty_Maybe, dge)) -> new_esEs13(vxw301, vxw4001, dge) new_ltEs8(vxw30, vxw31, de) -> new_fsEs(new_compare15(vxw30, vxw31, de)) new_lt7(vxw301, vxw311, ty_Double) -> new_lt18(vxw301, vxw311) new_ltEs11(EQ, LT) -> False The set Q consists of the following terms: new_ltEs24(x0, x1, ty_Bool) new_ltEs23(x0, x1, ty_Ordering) new_ltEs9(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, ty_Char) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_esEs27(x0, x1, ty_Int) new_esEs36(x0, x1, ty_Integer) new_ltEs9(Just(x0), Just(x1), ty_Integer) new_esEs37(x0, x1, ty_Ordering) new_ltEs21(x0, x1, ty_@0) new_esEs37(x0, x1, ty_Double) new_ltEs23(x0, x1, ty_Double) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(x0, x1, ty_Float) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat1(Zero, Zero) new_esEs31(x0, x1, ty_@0) new_lt7(x0, x1, app(ty_[], x2)) new_compare4(x0, x1, app(ty_[], x2)) new_compare7(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare7(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs34(x0, x1, ty_Float) new_esEs25(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_compare10(x0, x1, x2, x3, False, x4, x5, x6) new_esEs14(Float(x0, x1), Float(x2, x3)) new_esEs28(x0, x1, ty_Int) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, ty_Ordering) new_esEs19(False, False) new_esEs31(x0, x1, ty_Bool) new_compare4(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_Bool) new_primCompAux00(x0, x1, EQ, app(ty_[], x2)) new_compare15([], :(x0, x1), x2) new_primEqInt(Pos(Zero), Pos(Zero)) new_ltEs16(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_compare111(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_sr0(Integer(x0), Integer(x1)) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Left(x0), Left(x1), ty_Float, x2) new_ltEs20(x0, x1, ty_Ordering) new_esEs9(x0, x1, ty_Double) new_ltEs24(x0, x1, ty_Integer) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_esEs35(x0, x1, app(ty_Maybe, x2)) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_ltEs16(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs23(x0, x1, ty_Char) new_ltEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs38(x0, x1, ty_Double) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs36(x0, x1, ty_@0) new_ltEs24(x0, x1, ty_@0) new_ltEs9(Just(x0), Just(x1), ty_@0) new_esEs26(x0, x1, ty_Bool) new_esEs37(x0, x1, app(ty_[], x2)) new_primEqInt(Neg(Zero), Neg(Zero)) new_ltEs20(x0, x1, ty_Double) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_ltEs7(x0, x1) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs38(x0, x1, ty_Ordering) new_esEs37(x0, x1, ty_Char) new_esEs13(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, ty_Integer) new_lt9(x0, x1) new_compare112(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_esEs25(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, ty_Ordering) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_primCompAux1(x0, x1, x2, x3, x4) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, ty_Integer) new_esEs35(x0, x1, ty_@0) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat1(Succ(x0), Zero) new_primCompAux00(x0, x1, EQ, app(ty_Ratio, x2)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_compare110(x0, x1, False, x2, x3) new_esEs12(LT, GT) new_esEs12(GT, LT) new_ltEs9(Just(x0), Just(x1), ty_Bool) new_compare4(x0, x1, ty_@0) new_esEs35(x0, x1, ty_Float) new_esEs13(Just(x0), Just(x1), ty_@0) new_esEs28(x0, x1, ty_Bool) new_compare210(x0, x1, True, x2, x3) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_lt7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs13(Just(x0), Just(x1), ty_Int) new_lt21(x0, x1, ty_Integer) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, ty_Integer) new_esEs36(x0, x1, ty_Bool) new_compare113(x0, x1, False, x2) new_ltEs16(Right(x0), Left(x1), x2, x3) new_ltEs16(Left(x0), Right(x1), x2, x3) new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(x0, x1, ty_@0) new_ltEs11(GT, GT) new_ltEs16(Left(x0), Left(x1), ty_Integer, x2) new_esEs34(x0, x1, ty_Bool) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_lt22(x0, x1, ty_Ordering) new_esEs29(x0, x1, ty_Ordering) new_esEs4(x0, x1, ty_Bool) new_lt23(x0, x1, ty_Double) new_esEs31(x0, x1, ty_Float) new_primMulNat0(Zero, Succ(x0)) new_compare17(EQ, EQ) new_lt7(x0, x1, ty_Bool) new_lt22(x0, x1, ty_Float) new_esEs12(GT, GT) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, ty_@0) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_compare15(:(x0, x1), [], x2) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs9(x0, x1, ty_Char) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_esEs34(x0, x1, ty_Integer) new_compare4(x0, x1, ty_Bool) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs31(x0, x1, ty_Int) new_esEs38(x0, x1, ty_Char) new_esEs20(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs16(Left(x0), Left(x1), ty_@0, x2) new_ltEs5(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, ty_Int) new_esEs28(x0, x1, ty_Integer) new_compare16(Nothing, Nothing, x0) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs8(x0, x1, x2) new_ltEs9(Just(x0), Just(x1), ty_Int) new_compare8(:%(x0, x1), :%(x2, x3), ty_Integer) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_Char) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs29(x0, x1, ty_Char) new_esEs30(x0, x1, ty_Ordering) new_lt23(x0, x1, app(ty_Maybe, x2)) new_esEs13(Nothing, Just(x0), x1) new_lt20(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, ty_Integer) new_ltEs15(x0, x1) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_lt7(x0, x1, ty_Int) new_compare17(LT, EQ) new_compare17(EQ, LT) new_lt14(x0, x1, x2, x3, x4) new_lt13(x0, x1) new_ltEs5(x0, x1, ty_Char) new_esEs13(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, ty_Int) new_esEs9(x0, x1, ty_Ordering) new_esEs25(Right(x0), Right(x1), x2, ty_Bool) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, app(ty_[], x2)) new_ltEs9(Just(x0), Just(x1), ty_Float) new_esEs27(x0, x1, ty_@0) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt8(x0, x1, app(ty_Maybe, x2)) new_compare19(@0, @0) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_lt22(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Float) new_esEs5(x0, x1, ty_Char) new_asAs(True, x0) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_ltEs5(x0, x1, ty_Float) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_esEs25(Right(x0), Right(x1), x2, ty_Int) new_compare14(Integer(x0), Integer(x1)) new_lt21(x0, x1, ty_@0) new_lt8(x0, x1, app(ty_Ratio, x2)) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, ty_Float) new_compare12(x0, x1, x2, x3, True, x4, x5) new_ltEs19(x0, x1, ty_Float) new_esEs11(x0, x1, ty_@0) new_compare4(x0, x1, ty_Integer) new_esEs8(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Float) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs16(Right(x0), Right(x1), x2, ty_Int) new_lt21(x0, x1, app(ty_Maybe, x2)) new_compare16(Just(x0), Just(x1), x2) new_lt22(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs9(Nothing, Nothing, x0) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, ty_Ordering) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_ltEs22(x0, x1, ty_Double) new_esEs8(x0, x1, ty_Float) new_lt8(x0, x1, app(app(ty_@2, x2), x3)) new_lt7(x0, x1, app(ty_Ratio, x2)) new_primCompAux00(x0, x1, EQ, app(app(ty_Either, x2), x3)) new_esEs25(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs4(x0, x1, ty_Ordering) new_esEs11(x0, x1, ty_Float) new_lt20(x0, x1, ty_Double) new_lt18(x0, x1) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_ltEs16(Left(x0), Left(x1), ty_Ordering, x2) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs5(x0, x1, ty_Bool) new_esEs6(x0, x1, ty_Ordering) new_primMulNat0(Succ(x0), Succ(x1)) new_primCompAux00(x0, x1, EQ, ty_Ordering) new_esEs6(x0, x1, ty_Double) new_compare29(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs10(x0, x1, ty_Ordering) new_lt23(x0, x1, ty_@0) new_esEs6(x0, x1, app(ty_[], x2)) new_ltEs22(x0, x1, ty_Char) new_esEs33(x0, x1, ty_Integer) new_lt15(x0, x1, x2) new_esEs28(x0, x1, ty_Float) new_ltEs22(x0, x1, ty_Int) new_primMulInt(Neg(x0), Neg(x1)) new_lt7(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, ty_Ordering) new_esEs7(x0, x1, app(ty_[], x2)) new_lt8(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, ty_Integer) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt7(x0, x1, ty_Integer) new_ltEs5(x0, x1, ty_Integer) new_not(True) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_compare8(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs13(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_lt11(x0, x1, x2) new_esEs13(Just(x0), Just(x1), app(ty_[], x2)) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(x0, x1) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, ty_Ordering) new_lt6(x0, x1) new_esEs35(x0, x1, ty_Double) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_lt22(x0, x1, app(ty_Ratio, x2)) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_esEs8(x0, x1, app(ty_[], x2)) new_esEs36(x0, x1, ty_Double) new_primPlusNat0(Succ(x0), x1) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs18(True, False) new_ltEs18(False, True) new_compare211(x0, x1, False, x2) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs16(Integer(x0), Integer(x1)) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, app(ty_[], x2)) new_esEs12(LT, LT) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs19(True, True) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_lt23(x0, x1, app(ty_[], x2)) new_compare16(Just(x0), Nothing, x1) new_fsEs(x0) new_compare4(x0, x1, ty_Float) new_esEs25(Left(x0), Left(x1), ty_Double, x2) new_primPlusNat1(Zero, Succ(x0)) new_esEs8(x0, x1, ty_Bool) new_compare27(Left(x0), Right(x1), x2, x3) new_compare27(Right(x0), Left(x1), x2, x3) new_esEs36(x0, x1, ty_Int) new_ltEs16(Right(x0), Right(x1), x2, ty_Integer) new_compare4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs24(x0, x1, ty_Float) new_primCompAux00(x0, x1, EQ, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_compare9(False, False) new_lt7(x0, x1, ty_@0) new_esEs36(x0, x1, ty_Char) new_lt23(x0, x1, ty_Float) new_ltEs9(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs22(x0, x1, ty_Bool) new_esEs39(x0, x1, ty_Double) new_lt22(x0, x1, app(ty_[], x2)) new_ltEs24(x0, x1, ty_Int) new_esEs9(x0, x1, ty_@0) new_compare17(EQ, GT) new_compare17(GT, EQ) new_esEs36(x0, x1, ty_Float) new_esEs11(x0, x1, ty_Bool) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, ty_Integer) new_ltEs23(x0, x1, ty_@0) new_primCmpNat0(Succ(x0), Zero) new_ltEs20(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_primEqNat0(Zero, Succ(x0)) new_ltEs19(x0, x1, ty_Double) new_lt8(x0, x1, ty_Ordering) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs34(x0, x1, ty_@0) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_esEs39(x0, x1, ty_Ordering) new_lt23(x0, x1, ty_Int) new_compare210(x0, x1, False, x2, x3) new_compare211(x0, x1, True, x2) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_primEqNat0(Zero, Zero) new_lt23(x0, x1, ty_Integer) new_esEs7(x0, x1, ty_Double) new_not(False) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_lt4(x0, x1) new_lt23(x0, x1, ty_Char) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs11(x0, x1, ty_Char) new_ltEs18(False, False) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs24(:(x0, x1), :(x2, x3), x4) new_esEs25(Left(x0), Left(x1), ty_Ordering, x2) new_esEs5(x0, x1, ty_@0) new_lt16(x0, x1) new_lt22(x0, x1, ty_Double) new_ltEs16(Right(x0), Right(x1), x2, ty_Bool) new_esEs8(x0, x1, ty_Int) new_lt23(x0, x1, ty_Bool) new_compare29(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, ty_@0) new_ltEs11(EQ, GT) new_ltEs11(GT, EQ) new_esEs8(x0, x1, ty_Char) new_esEs35(x0, x1, ty_Ordering) new_esEs25(Right(x0), Right(x1), x2, ty_Double) new_ltEs5(x0, x1, ty_@0) new_esEs11(x0, x1, ty_Int) new_ltEs5(x0, x1, app(ty_Maybe, x2)) new_compare28(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare28(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs29(x0, x1, ty_Double) new_ltEs16(Right(x0), Right(x1), x2, ty_Char) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_compare17(LT, GT) new_compare17(GT, LT) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_pePe(True, x0) new_esEs29(x0, x1, ty_@0) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs5(x0, x1, app(ty_[], x2)) new_esEs12(EQ, EQ) new_compare28(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_lt20(x0, x1, ty_Float) new_compare28(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs13(Just(x0), Just(x1), ty_Ordering) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_esEs13(Just(x0), Just(x1), ty_Double) new_compare7(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_compare4(x0, x1, ty_Ordering) new_esEs29(x0, x1, ty_Bool) new_esEs11(x0, x1, ty_Double) new_esEs28(x0, x1, ty_Ordering) new_compare26(x0, x1, False, x2, x3) new_esEs5(x0, x1, ty_Float) new_ltEs22(x0, x1, ty_Float) new_esEs6(x0, x1, ty_Float) new_esEs7(x0, x1, ty_Int) new_esEs27(x0, x1, ty_Ordering) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_compare27(Left(x0), Left(x1), x2, x3) new_compare4(x0, x1, ty_Double) new_ltEs16(Right(x0), Right(x1), x2, ty_Float) new_primCompAux00(x0, x1, EQ, ty_Float) new_esEs37(x0, x1, ty_Int) new_esEs26(x0, x1, ty_Char) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_ltEs9(Just(x0), Just(x1), app(ty_[], x2)) new_compare113(x0, x1, True, x2) new_compare110(x0, x1, True, x2, x3) new_ltEs16(Right(x0), Right(x1), x2, app(ty_[], x3)) new_lt7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, ty_Integer) new_compare12(x0, x1, x2, x3, False, x4, x5) new_compare4(x0, x1, ty_Char) new_esEs25(Left(x0), Left(x1), ty_Float, x2) new_esEs10(x0, x1, ty_Float) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_primCompAux00(x0, x1, EQ, ty_Integer) new_compare7(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt17(x0, x1, x2, x3) new_ltEs23(x0, x1, ty_Int) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs13(x0, x1) new_esEs30(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_Char) new_esEs30(x0, x1, ty_Float) new_esEs26(x0, x1, ty_Ordering) new_lt5(x0, x1, x2, x3) new_esEs7(x0, x1, ty_Bool) new_esEs29(x0, x1, ty_Integer) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs25(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, ty_@0) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_sr(x0, x1) new_ltEs24(x0, x1, ty_Char) new_esEs11(x0, x1, ty_Ordering) new_esEs28(x0, x1, ty_Char) new_ltEs22(x0, x1, ty_Integer) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs28(x0, x1, ty_Double) new_lt7(x0, x1, ty_Ordering) new_esEs22(@0, @0) new_compare111(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs25(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs13(Just(x0), Just(x1), ty_Char) new_esEs7(x0, x1, ty_Integer) new_compare6(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs10(x0, x1, ty_Bool) new_primEqNat0(Succ(x0), Zero) new_ltEs21(x0, x1, app(ty_[], x2)) new_compare4(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_primCompAux00(x0, x1, EQ, ty_Bool) new_ltEs16(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs11(LT, EQ) new_ltEs11(EQ, LT) new_esEs24([], :(x0, x1), x2) new_ltEs21(x0, x1, ty_Double) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_ltEs23(x0, x1, ty_Bool) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, ty_Float) new_esEs15(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs37(x0, x1, ty_@0) new_lt20(x0, x1, ty_Bool) new_primCompAux00(x0, x1, LT, x2) new_esEs13(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs10(x0, x1, ty_@0) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_esEs8(x0, x1, ty_@0) new_ltEs21(x0, x1, ty_Ordering) new_esEs25(Left(x0), Right(x1), x2, x3) new_esEs25(Right(x0), Left(x1), x2, x3) new_ltEs9(Just(x0), Just(x1), ty_Char) new_esEs5(x0, x1, ty_Integer) new_primPlusNat1(Succ(x0), Succ(x1)) new_ltEs24(x0, x1, ty_Double) new_esEs33(x0, x1, ty_Int) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_esEs5(x0, x1, ty_Bool) new_ltEs14(x0, x1, x2) new_ltEs20(x0, x1, ty_Bool) new_compare15(:(x0, x1), :(x2, x3), x4) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_ltEs10(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs36(x0, x1, ty_Ordering) new_esEs19(False, True) new_esEs19(True, False) new_esEs39(x0, x1, ty_Float) new_compare4(x0, x1, app(ty_Ratio, x2)) new_ltEs22(x0, x1, ty_@0) new_esEs6(x0, x1, ty_@0) new_esEs9(x0, x1, ty_Int) new_esEs25(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs38(x0, x1, ty_Bool) new_primCompAux00(x0, x1, EQ, ty_@0) new_esEs31(x0, x1, ty_Char) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_ltEs24(x0, x1, ty_Ordering) new_esEs37(x0, x1, ty_Integer) new_lt21(x0, x1, app(ty_[], x2)) new_lt12(x0, x1, x2) new_esEs10(x0, x1, ty_Integer) new_esEs39(x0, x1, app(ty_[], x2)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_ltEs20(x0, x1, ty_Int) new_esEs32(x0, x1, ty_Integer) new_lt23(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_ltEs5(x0, x1, ty_Int) new_lt8(x0, x1, ty_Double) new_esEs25(Right(x0), Right(x1), x2, ty_Float) new_esEs34(x0, x1, ty_Char) new_esEs9(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Int) new_ltEs6(x0, x1) new_esEs25(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs9(x0, x1, ty_Integer) new_ltEs16(Right(x0), Right(x1), x2, ty_@0) new_esEs38(x0, x1, ty_Int) new_esEs30(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, ty_Integer) new_ltEs9(Just(x0), Just(x1), app(ty_Maybe, x2)) new_ltEs11(EQ, EQ) new_esEs27(x0, x1, ty_Double) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_ltEs24(x0, x1, app(ty_[], x2)) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs36(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, ty_Int) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_compare17(LT, LT) new_lt7(x0, x1, ty_Char) new_lt19(x0, x1) new_esEs17(:%(x0, x1), :%(x2, x3), x4) new_esEs4(x0, x1, app(ty_[], x2)) new_esEs5(x0, x1, ty_Int) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, ty_Int) new_esEs7(x0, x1, ty_Float) new_esEs25(Right(x0), Right(x1), x2, ty_Char) new_ltEs16(Right(x0), Right(x1), x2, ty_Double) new_esEs37(x0, x1, ty_Float) new_esEs34(x0, x1, ty_Ordering) new_compare13(Char(x0), Char(x1)) new_esEs23(Double(x0, x1), Double(x2, x3)) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt21(x0, x1, ty_Double) new_lt8(x0, x1, app(app(ty_Either, x2), x3)) new_esEs13(Nothing, Nothing, x0) new_esEs10(x0, x1, ty_Double) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs22(x0, x1, ty_Ordering) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare9(False, True) new_compare9(True, False) new_ltEs16(Left(x0), Left(x1), ty_Char, x2) new_lt22(x0, x1, ty_Integer) new_primMulNat0(Zero, Zero) new_esEs25(Left(x0), Left(x1), ty_Int, x2) new_esEs5(x0, x1, ty_Ordering) new_esEs34(x0, x1, ty_Double) new_ltEs9(Nothing, Just(x0), x1) new_lt7(x0, x1, ty_Float) new_esEs31(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, app(ty_[], x2)) new_lt22(x0, x1, ty_Bool) new_primMulInt(Pos(x0), Pos(x1)) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs23(x0, x1, ty_Float) new_lt8(x0, x1, ty_Integer) new_esEs13(Just(x0), Just(x1), ty_Float) new_esEs18(Char(x0), Char(x1)) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_ltEs11(LT, LT) new_compare11(x0, x1, False, x2, x3) new_lt20(x0, x1, ty_Int) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, ty_Float) new_ltEs16(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs39(x0, x1, ty_Integer) new_esEs25(Right(x0), Right(x1), x2, ty_Integer) new_asAs(False, x0) new_primCompAux00(x0, x1, EQ, app(app(ty_@2, x2), x3)) new_compare17(GT, GT) new_ltEs16(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_esEs35(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, ty_Char) new_esEs25(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_esEs34(x0, x1, ty_Int) new_ltEs16(Left(x0), Left(x1), ty_Int, x2) new_esEs6(x0, x1, ty_Int) new_esEs39(x0, x1, ty_@0) new_ltEs18(True, True) new_esEs25(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_compare25(x0, x1, x2, x3, False, x4, x5) new_ltEs5(x0, x1, app(ty_[], x2)) new_primCompAux00(x0, x1, EQ, ty_Int) new_compare25(x0, x1, x2, x3, True, x4, x5) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_esEs10(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Integer) new_compare16(Nothing, Just(x0), x1) new_esEs35(x0, x1, ty_Int) new_esEs11(x0, x1, app(ty_[], x2)) new_lt8(x0, x1, ty_@0) new_esEs25(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs13(Just(x0), Nothing, x1) new_primPlusNat0(Zero, x0) new_ltEs19(x0, x1, ty_Bool) new_lt20(x0, x1, ty_Char) new_ltEs9(Just(x0), Nothing, x1) new_esEs10(x0, x1, ty_Int) new_compare4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24([], [], x0) new_esEs25(Left(x0), Left(x1), ty_Bool, x2) new_ltEs9(Just(x0), Just(x1), ty_Double) new_ltEs16(Left(x0), Left(x1), ty_Double, x2) new_esEs9(x0, x1, ty_Float) new_esEs25(Left(x0), Left(x1), ty_@0, x2) new_esEs9(x0, x1, app(ty_[], x2)) new_compare112(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_primCompAux00(x0, x1, EQ, ty_Char) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs16(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs39(x0, x1, ty_Char) new_lt8(x0, x1, ty_Float) new_ltEs16(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_primCompAux00(x0, x1, EQ, ty_Double) new_ltEs19(x0, x1, ty_Integer) new_primCompAux00(x0, x1, EQ, app(ty_Maybe, x2)) new_ltEs16(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs5(x0, x1, ty_Ordering) new_esEs30(x0, x1, ty_Int) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_ltEs16(Left(x0), Left(x1), ty_Bool, x2) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(x0, x1, ty_Int) new_esEs39(x0, x1, ty_Bool) new_esEs30(x0, x1, ty_Char) new_ltEs5(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs25(Left(x0), Left(x1), ty_Char, x2) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, ty_Double) new_esEs25(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs4(x0, x1, ty_Char) new_esEs38(x0, x1, ty_Integer) new_esEs30(x0, x1, ty_Double) new_compare27(Right(x0), Right(x1), x2, x3) new_esEs37(x0, x1, ty_Bool) new_primCmpInt(Pos(Zero), Pos(Zero)) new_ltEs5(x0, x1, app(app(ty_@2, x2), x3)) new_lt21(x0, x1, ty_Bool) new_lt8(x0, x1, ty_Char) new_esEs31(x0, x1, ty_Ordering) new_esEs34(x0, x1, app(ty_[], x2)) new_esEs13(Just(x0), Just(x1), ty_Bool) new_ltEs21(x0, x1, ty_Float) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt21(x0, x1, app(ty_Ratio, x2)) new_esEs25(Left(x0), Left(x1), ty_Integer, x2) new_pePe(False, x0) new_esEs13(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs22(x0, x1, app(ty_[], x2)) new_compare10(x0, x1, x2, x3, True, x4, x5, x6) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_compare9(True, True) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs5(x0, x1, ty_Double) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_@0) new_compare5(x0, x1) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs35(x0, x1, ty_Char) new_ltEs9(Just(x0), Just(x1), ty_Ordering) new_lt20(x0, x1, ty_Integer) new_compare15([], [], x0) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_compare11(x0, x1, True, x2, x3) new_lt23(x0, x1, ty_Ordering) new_compare26(x0, x1, True, x2, x3) new_ltEs21(x0, x1, ty_Int) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(x0, x1, ty_Char) new_esEs26(x0, x1, ty_Double) new_primCompAux00(x0, x1, GT, x2) new_esEs31(x0, x1, ty_Double) new_ltEs9(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs35(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Integer) new_esEs24(:(x0, x1), [], x2) new_esEs25(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_lt8(x0, x1, ty_Int) new_compare4(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_@0) new_compare18(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt10(x0, x1) new_esEs7(x0, x1, ty_@0) new_primCmpNat0(Zero, Succ(x0)) new_ltEs4(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs11(GT, LT) new_ltEs11(LT, GT) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_esEs25(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_ltEs17(x0, x1) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_lt21(x0, x1, ty_Char) new_lt8(x0, x1, ty_Bool) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, ty_@0) new_esEs25(Right(x0), Right(x1), x2, ty_@0) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(x0, x1, ty_Integer) new_esEs13(Just(x0), Just(x1), ty_Integer) new_ltEs12(x0, x1) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs38(x0, x1, app(ty_[], x2)) new_primMulNat0(Succ(x0), Zero) new_esEs5(x0, x1, ty_Double) new_lt21(x0, x1, ty_Int) new_esEs6(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Char) new_esEs38(x0, x1, ty_@0) new_esEs35(x0, x1, ty_Integer) new_esEs27(x0, x1, ty_Bool) new_lt22(x0, x1, ty_@0) new_ltEs9(Just(x0), Just(x1), app(ty_Ratio, x2)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_lt7(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_lt7(x0, x1, ty_Double) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, ty_Float) new_primCmpNat0(Zero, Zero) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (19) DependencyGraphProof (EQUIVALENT) The approximation of the Dependency Graph [LPAR04,FROCOS05,EDGSTAR] contains 1 SCC with 4 less nodes. ---------------------------------------- (20) Obligation: Q DP problem: The TRS P consists of the following rules: new_primCompAux0(vxw23, vxw24, EQ, app(ty_[], ba)) -> new_compare(vxw23, vxw24, ba) new_compare(:(vxw300, vxw301), :(vxw4000, vxw4001), cb) -> new_primCompAux(vxw300, vxw4000, vxw301, vxw4001, cb) new_primCompAux(vxw30, vxw400, vxw31, vxw401, cc) -> new_primCompAux0(vxw31, vxw401, new_compare4(vxw30, vxw400, cc), app(ty_[], cc)) new_primCompAux(Just(vxw300), Just(vxw4000), vxw31, vxw401, app(ty_Maybe, cd)) -> new_compare20(vxw300, vxw4000, new_esEs4(vxw300, vxw4000, cd), cd) new_compare20(@2(vxw300, vxw301), @2(vxw310, vxw311), False, app(app(ty_@2, app(ty_[], gb)), gc)) -> new_lt(vxw300, vxw310, gb) new_lt(vxw79, vxw81, bff) -> new_compare(vxw79, vxw81, bff) new_compare20(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), False, app(app(app(ty_@3, app(ty_[], bca)), he), bah)) -> new_lt(vxw300, vxw310, bca) new_compare20(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), False, app(app(app(ty_@3, app(app(ty_Either, bch), bda)), he), bah)) -> new_lt3(vxw300, vxw310, bch, bda) new_lt3(vxw79, vxw81, bgf, bgg) -> new_compare3(vxw79, vxw81, bgf, bgg) new_compare3(Left(vxw300), Left(vxw4000), dc, dd) -> new_compare23(vxw300, vxw4000, new_esEs10(vxw300, vxw4000, dc), dc, dd) new_compare23(vxw63, vxw64, False, app(ty_[], cdh), cea) -> new_ltEs(vxw63, vxw64, cdh) new_ltEs(vxw30, vxw31, de) -> new_compare(vxw30, vxw31, de) new_compare23(vxw63, vxw64, False, app(app(app(ty_@3, cee), cef), ceg), cea) -> new_ltEs2(vxw63, vxw64, cee, cef, ceg) new_ltEs2(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), hd, app(ty_[], bag), bah) -> new_lt(vxw301, vxw311, bag) new_ltEs2(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), hd, he, app(ty_Maybe, hg)) -> new_ltEs0(vxw302, vxw312, hg) new_ltEs0(Just(vxw300), Just(vxw310), app(app(ty_@2, dh), ea)) -> new_ltEs1(vxw300, vxw310, dh, ea) new_ltEs1(@2(vxw300, vxw301), @2(vxw310, vxw311), app(app(ty_Either, hb), hc), gc) -> new_lt3(vxw300, vxw310, hb, hc) new_ltEs1(@2(vxw300, vxw301), @2(vxw310, vxw311), eg, app(app(ty_Either, fh), ga)) -> new_ltEs3(vxw301, vxw311, fh, ga) new_ltEs3(Right(vxw300), Right(vxw310), bed, app(app(ty_@2, beg), beh)) -> new_ltEs1(vxw300, vxw310, beg, beh) new_ltEs1(@2(vxw300, vxw301), @2(vxw310, vxw311), app(app(ty_@2, ge), gf), gc) -> new_lt1(vxw300, vxw310, ge, gf) new_lt1(vxw79, vxw81, bfh, bga) -> new_compare1(vxw79, vxw81, bfh, bga) new_compare1(@2(vxw300, vxw301), @2(vxw4000, vxw4001), ce, cf) -> new_compare21(vxw300, vxw301, vxw4000, vxw4001, new_asAs(new_esEs6(vxw300, vxw4000, ce), new_esEs5(vxw301, vxw4001, cf)), ce, cf) new_compare21(vxw79, vxw80, vxw81, vxw82, False, app(app(app(ty_@3, bgc), bgd), bge), bgb) -> new_compare2(vxw79, vxw81, bgc, bgd, bge) new_compare2(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), cg, da, db) -> new_compare22(vxw300, vxw301, vxw302, vxw4000, vxw4001, vxw4002, new_asAs(new_esEs9(vxw300, vxw4000, cg), new_asAs(new_esEs8(vxw301, vxw4001, da), new_esEs7(vxw302, vxw4002, db))), cg, da, db) new_compare22(vxw52, vxw53, vxw54, vxw55, vxw56, vxw57, False, cab, cac, app(ty_Maybe, cae)) -> new_ltEs0(vxw54, vxw57, cae) new_ltEs0(Just(vxw300), Just(vxw310), app(ty_Maybe, dg)) -> new_ltEs0(vxw300, vxw310, dg) new_ltEs0(Just(vxw300), Just(vxw310), app(app(app(ty_@3, eb), ec), ed)) -> new_ltEs2(vxw300, vxw310, eb, ec, ed) new_ltEs2(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), hd, he, app(ty_[], hf)) -> new_ltEs(vxw302, vxw312, hf) new_ltEs2(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), hd, app(ty_Maybe, bba), bah) -> new_lt0(vxw301, vxw311, bba) new_lt0(vxw79, vxw81, bfg) -> new_compare0(vxw79, vxw81, bfg) new_compare0(Just(vxw300), Just(vxw4000), cd) -> new_compare20(vxw300, vxw4000, new_esEs4(vxw300, vxw4000, cd), cd) new_compare20(Just(vxw300), Just(vxw310), False, app(ty_Maybe, app(ty_Maybe, dg))) -> new_ltEs0(vxw300, vxw310, dg) new_ltEs0(Just(vxw300), Just(vxw310), app(ty_[], df)) -> new_ltEs(vxw300, vxw310, df) new_ltEs0(Just(vxw300), Just(vxw310), app(app(ty_Either, ee), ef)) -> new_ltEs3(vxw300, vxw310, ee, ef) new_ltEs3(Right(vxw300), Right(vxw310), bed, app(ty_[], bee)) -> new_ltEs(vxw300, vxw310, bee) new_ltEs3(Left(vxw300), Left(vxw310), app(app(app(ty_@3, bdg), bdh), bea), bdc) -> new_ltEs2(vxw300, vxw310, bdg, bdh, bea) new_ltEs2(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), app(ty_Maybe, bcb), he, bah) -> new_lt0(vxw300, vxw310, bcb) new_ltEs2(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), hd, he, app(app(ty_Either, bae), baf)) -> new_ltEs3(vxw302, vxw312, bae, baf) new_ltEs3(Left(vxw300), Left(vxw310), app(ty_[], bdb), bdc) -> new_ltEs(vxw300, vxw310, bdb) new_ltEs3(Left(vxw300), Left(vxw310), app(app(ty_Either, beb), bec), bdc) -> new_ltEs3(vxw300, vxw310, beb, bec) new_ltEs3(Right(vxw300), Right(vxw310), bed, app(app(ty_Either, bfd), bfe)) -> new_ltEs3(vxw300, vxw310, bfd, bfe) new_ltEs3(Left(vxw300), Left(vxw310), app(ty_Maybe, bdd), bdc) -> new_ltEs0(vxw300, vxw310, bdd) new_ltEs3(Right(vxw300), Right(vxw310), bed, app(ty_Maybe, bef)) -> new_ltEs0(vxw300, vxw310, bef) new_ltEs3(Left(vxw300), Left(vxw310), app(app(ty_@2, bde), bdf), bdc) -> new_ltEs1(vxw300, vxw310, bde, bdf) new_ltEs1(@2(vxw300, vxw301), @2(vxw310, vxw311), eg, app(ty_[], eh)) -> new_ltEs(vxw301, vxw311, eh) new_ltEs1(@2(vxw300, vxw301), @2(vxw310, vxw311), app(app(app(ty_@3, gg), gh), ha), gc) -> new_lt2(vxw300, vxw310, gg, gh, ha) new_lt2(vxw79, vxw81, bgc, bgd, bge) -> new_compare2(vxw79, vxw81, bgc, bgd, bge) new_ltEs1(@2(vxw300, vxw301), @2(vxw310, vxw311), eg, app(app(app(ty_@3, fd), ff), fg)) -> new_ltEs2(vxw301, vxw311, fd, ff, fg) new_ltEs2(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), app(app(app(ty_@3, bce), bcf), bcg), he, bah) -> new_lt2(vxw300, vxw310, bce, bcf, bcg) new_ltEs2(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), hd, he, app(app(ty_@2, hh), baa)) -> new_ltEs1(vxw302, vxw312, hh, baa) new_ltEs1(@2(vxw300, vxw301), @2(vxw310, vxw311), app(ty_Maybe, gd), gc) -> new_lt0(vxw300, vxw310, gd) new_ltEs1(@2(vxw300, vxw301), @2(vxw310, vxw311), eg, app(ty_Maybe, fa)) -> new_ltEs0(vxw301, vxw311, fa) new_ltEs1(@2(vxw300, vxw301), @2(vxw310, vxw311), eg, app(app(ty_@2, fb), fc)) -> new_ltEs1(vxw301, vxw311, fb, fc) new_ltEs1(@2(vxw300, vxw301), @2(vxw310, vxw311), app(ty_[], gb), gc) -> new_lt(vxw300, vxw310, gb) new_ltEs2(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), app(ty_[], bca), he, bah) -> new_lt(vxw300, vxw310, bca) new_ltEs2(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), app(app(ty_Either, bch), bda), he, bah) -> new_lt3(vxw300, vxw310, bch, bda) new_ltEs2(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), app(app(ty_@2, bcc), bcd), he, bah) -> new_lt1(vxw300, vxw310, bcc, bcd) new_ltEs2(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), hd, he, app(app(app(ty_@3, bab), bac), bad)) -> new_ltEs2(vxw302, vxw312, bab, bac, bad) new_ltEs2(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), hd, app(app(ty_@2, bbb), bbc), bah) -> new_lt1(vxw301, vxw311, bbb, bbc) new_ltEs2(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), hd, app(app(app(ty_@3, bbd), bbe), bbf), bah) -> new_lt2(vxw301, vxw311, bbd, bbe, bbf) new_ltEs2(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), hd, app(app(ty_Either, bbg), bbh), bah) -> new_lt3(vxw301, vxw311, bbg, bbh) new_ltEs3(Right(vxw300), Right(vxw310), bed, app(app(app(ty_@3, bfa), bfb), bfc)) -> new_ltEs2(vxw300, vxw310, bfa, bfb, bfc) new_compare20(Left(vxw300), Left(vxw310), False, app(app(ty_Either, app(app(ty_Either, beb), bec)), bdc)) -> new_ltEs3(vxw300, vxw310, beb, bec) new_compare20(Just(vxw300), Just(vxw310), False, app(ty_Maybe, app(ty_[], df))) -> new_ltEs(vxw300, vxw310, df) new_compare20(@2(vxw300, vxw301), @2(vxw310, vxw311), False, app(app(ty_@2, app(app(ty_@2, ge), gf)), gc)) -> new_lt1(vxw300, vxw310, ge, gf) new_compare20(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), False, app(app(app(ty_@3, hd), app(ty_[], bag)), bah)) -> new_lt(vxw301, vxw311, bag) new_compare20(Left(vxw300), Left(vxw310), False, app(app(ty_Either, app(ty_[], bdb)), bdc)) -> new_ltEs(vxw300, vxw310, bdb) new_compare20(Right(vxw300), Right(vxw310), False, app(app(ty_Either, bed), app(app(app(ty_@3, bfa), bfb), bfc))) -> new_ltEs2(vxw300, vxw310, bfa, bfb, bfc) new_compare20(Left(vxw300), Left(vxw310), False, app(app(ty_Either, app(ty_Maybe, bdd)), bdc)) -> new_ltEs0(vxw300, vxw310, bdd) new_compare20(vxw30, vxw31, False, app(ty_[], de)) -> new_compare(vxw30, vxw31, de) new_compare20(@2(vxw300, vxw301), @2(vxw310, vxw311), False, app(app(ty_@2, eg), app(app(app(ty_@3, fd), ff), fg))) -> new_ltEs2(vxw301, vxw311, fd, ff, fg) new_compare20(Just(vxw300), Just(vxw310), False, app(ty_Maybe, app(app(ty_Either, ee), ef))) -> new_ltEs3(vxw300, vxw310, ee, ef) new_compare20(Left(vxw300), Left(vxw310), False, app(app(ty_Either, app(app(ty_@2, bde), bdf)), bdc)) -> new_ltEs1(vxw300, vxw310, bde, bdf) new_compare20(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), False, app(app(app(ty_@3, hd), he), app(app(ty_Either, bae), baf))) -> new_ltEs3(vxw302, vxw312, bae, baf) new_compare20(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), False, app(app(app(ty_@3, hd), he), app(ty_Maybe, hg))) -> new_ltEs0(vxw302, vxw312, hg) new_compare20(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), False, app(app(app(ty_@3, app(ty_Maybe, bcb)), he), bah)) -> new_lt0(vxw300, vxw310, bcb) new_compare20(@2(vxw300, vxw301), @2(vxw310, vxw311), False, app(app(ty_@2, eg), app(app(ty_@2, fb), fc))) -> new_ltEs1(vxw301, vxw311, fb, fc) new_compare20(Right(vxw300), Right(vxw310), False, app(app(ty_Either, bed), app(ty_Maybe, bef))) -> new_ltEs0(vxw300, vxw310, bef) new_compare20(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), False, app(app(app(ty_@3, hd), app(app(ty_@2, bbb), bbc)), bah)) -> new_lt1(vxw301, vxw311, bbb, bbc) new_compare20(Right(vxw300), Right(vxw310), False, app(app(ty_Either, bed), app(app(ty_@2, beg), beh))) -> new_ltEs1(vxw300, vxw310, beg, beh) new_compare20(@2(vxw300, vxw301), @2(vxw310, vxw311), False, app(app(ty_@2, eg), app(ty_[], eh))) -> new_ltEs(vxw301, vxw311, eh) new_compare20(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), False, app(app(app(ty_@3, app(app(app(ty_@3, bce), bcf), bcg)), he), bah)) -> new_lt2(vxw300, vxw310, bce, bcf, bcg) new_compare20(Left(vxw300), Left(vxw310), False, app(app(ty_Either, app(app(app(ty_@3, bdg), bdh), bea)), bdc)) -> new_ltEs2(vxw300, vxw310, bdg, bdh, bea) new_compare20(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), False, app(app(app(ty_@3, hd), app(app(ty_Either, bbg), bbh)), bah)) -> new_lt3(vxw301, vxw311, bbg, bbh) new_compare20(Right(vxw300), Right(vxw310), False, app(app(ty_Either, bed), app(app(ty_Either, bfd), bfe))) -> new_ltEs3(vxw300, vxw310, bfd, bfe) new_compare20(@2(vxw300, vxw301), @2(vxw310, vxw311), False, app(app(ty_@2, eg), app(ty_Maybe, fa))) -> new_ltEs0(vxw301, vxw311, fa) new_compare20(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), False, app(app(app(ty_@3, hd), he), app(ty_[], hf))) -> new_ltEs(vxw302, vxw312, hf) new_compare20(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), False, app(app(app(ty_@3, hd), app(ty_Maybe, bba)), bah)) -> new_lt0(vxw301, vxw311, bba) new_compare20(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), False, app(app(app(ty_@3, hd), he), app(app(app(ty_@3, bab), bac), bad))) -> new_ltEs2(vxw302, vxw312, bab, bac, bad) new_compare20(Just(vxw300), Just(vxw310), False, app(ty_Maybe, app(app(app(ty_@3, eb), ec), ed))) -> new_ltEs2(vxw300, vxw310, eb, ec, ed) new_compare20(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), False, app(app(app(ty_@3, hd), he), app(app(ty_@2, hh), baa))) -> new_ltEs1(vxw302, vxw312, hh, baa) new_compare20(@2(vxw300, vxw301), @2(vxw310, vxw311), False, app(app(ty_@2, app(ty_Maybe, gd)), gc)) -> new_lt0(vxw300, vxw310, gd) new_compare20(@2(vxw300, vxw301), @2(vxw310, vxw311), False, app(app(ty_@2, eg), app(app(ty_Either, fh), ga))) -> new_ltEs3(vxw301, vxw311, fh, ga) new_compare20(Right(vxw300), Right(vxw310), False, app(app(ty_Either, bed), app(ty_[], bee))) -> new_ltEs(vxw300, vxw310, bee) new_compare20(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), False, app(app(app(ty_@3, hd), app(app(app(ty_@3, bbd), bbe), bbf)), bah)) -> new_lt2(vxw301, vxw311, bbd, bbe, bbf) new_compare20(@2(vxw300, vxw301), @2(vxw310, vxw311), False, app(app(ty_@2, app(app(ty_Either, hb), hc)), gc)) -> new_lt3(vxw300, vxw310, hb, hc) new_compare20(Just(vxw300), Just(vxw310), False, app(ty_Maybe, app(app(ty_@2, dh), ea))) -> new_ltEs1(vxw300, vxw310, dh, ea) new_compare20(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), False, app(app(app(ty_@3, app(app(ty_@2, bcc), bcd)), he), bah)) -> new_lt1(vxw300, vxw310, bcc, bcd) new_compare20(@2(vxw300, vxw301), @2(vxw310, vxw311), False, app(app(ty_@2, app(app(app(ty_@3, gg), gh), ha)), gc)) -> new_lt2(vxw300, vxw310, gg, gh, ha) new_compare22(vxw52, vxw53, vxw54, vxw55, vxw56, vxw57, False, cab, app(ty_[], cbe), cbf) -> new_lt(vxw53, vxw56, cbe) new_compare22(vxw52, vxw53, vxw54, vxw55, vxw56, vxw57, False, cab, app(app(ty_Either, cce), ccf), cbf) -> new_lt3(vxw53, vxw56, cce, ccf) new_compare22(vxw52, vxw53, vxw54, vxw55, vxw56, vxw57, False, cab, cac, app(app(ty_Either, cbc), cbd)) -> new_ltEs3(vxw54, vxw57, cbc, cbd) new_compare22(vxw52, vxw53, vxw54, vxw55, vxw56, vxw57, False, app(app(app(ty_@3, cdc), cdd), cde), cac, cbf) -> new_lt2(vxw52, vxw55, cdc, cdd, cde) new_compare22(vxw52, vxw53, vxw54, vxw55, vxw56, vxw57, False, cab, app(ty_Maybe, cbg), cbf) -> new_lt0(vxw53, vxw56, cbg) new_compare22(vxw52, vxw53, vxw54, vxw55, vxw56, vxw57, False, app(ty_[], ccg), cac, cbf) -> new_lt(vxw52, vxw55, ccg) new_compare22(vxw52, vxw53, vxw54, vxw55, vxw56, vxw57, False, cab, cac, app(app(app(ty_@3, cah), cba), cbb)) -> new_ltEs2(vxw54, vxw57, cah, cba, cbb) new_compare22(vxw52, vxw53, vxw54, vxw55, vxw56, vxw57, False, cab, cac, app(app(ty_@2, caf), cag)) -> new_ltEs1(vxw54, vxw57, caf, cag) new_compare22(vxw52, vxw53, vxw54, vxw55, vxw56, vxw57, False, app(ty_Maybe, cch), cac, cbf) -> new_lt0(vxw52, vxw55, cch) new_compare22(vxw52, vxw53, vxw54, vxw55, vxw56, vxw57, False, cab, app(app(ty_@2, cbh), cca), cbf) -> new_lt1(vxw53, vxw56, cbh, cca) new_compare22(vxw52, vxw53, vxw54, vxw55, vxw56, vxw57, False, cab, app(app(app(ty_@3, ccb), ccc), ccd), cbf) -> new_lt2(vxw53, vxw56, ccb, ccc, ccd) new_compare22(vxw52, vxw53, vxw54, vxw55, vxw56, vxw57, False, cab, cac, app(ty_[], cad)) -> new_ltEs(vxw54, vxw57, cad) new_compare22(vxw52, vxw53, vxw54, vxw55, vxw56, vxw57, False, app(app(ty_Either, cdf), cdg), cac, cbf) -> new_lt3(vxw52, vxw55, cdf, cdg) new_compare22(vxw52, vxw53, vxw54, vxw55, vxw56, vxw57, False, app(app(ty_@2, cda), cdb), cac, cbf) -> new_lt1(vxw52, vxw55, cda, cdb) new_compare21(vxw79, vxw80, vxw81, vxw82, False, bgh, app(app(ty_@2, bhc), bhd)) -> new_ltEs1(vxw80, vxw82, bhc, bhd) new_compare21(vxw79, vxw80, vxw81, vxw82, False, app(ty_Maybe, bfg), bgb) -> new_compare0(vxw79, vxw81, bfg) new_compare21(vxw79, vxw80, vxw81, vxw82, False, app(app(ty_@2, bfh), bga), bgb) -> new_compare1(vxw79, vxw81, bfh, bga) new_compare21(vxw79, vxw80, vxw81, vxw82, False, app(app(ty_Either, bgf), bgg), bgb) -> new_compare3(vxw79, vxw81, bgf, bgg) new_compare3(Right(vxw300), Right(vxw4000), dc, dd) -> new_compare24(vxw300, vxw4000, new_esEs11(vxw300, vxw4000, dd), dc, dd) new_compare24(vxw70, vxw71, False, cfb, app(app(app(ty_@3, cfg), cfh), cga)) -> new_ltEs2(vxw70, vxw71, cfg, cfh, cga) new_compare24(vxw70, vxw71, False, cfb, app(ty_[], cfc)) -> new_ltEs(vxw70, vxw71, cfc) new_compare24(vxw70, vxw71, False, cfb, app(app(ty_@2, cfe), cff)) -> new_ltEs1(vxw70, vxw71, cfe, cff) new_compare24(vxw70, vxw71, False, cfb, app(app(ty_Either, cgb), cgc)) -> new_ltEs3(vxw70, vxw71, cgb, cgc) new_compare24(vxw70, vxw71, False, cfb, app(ty_Maybe, cfd)) -> new_ltEs0(vxw70, vxw71, cfd) new_compare21(vxw79, vxw80, vxw81, vxw82, False, bgh, app(ty_[], bha)) -> new_ltEs(vxw80, vxw82, bha) new_compare21(vxw79, vxw80, vxw81, vxw82, False, app(ty_[], bff), bgb) -> new_compare(vxw79, vxw81, bff) new_compare21(vxw79, vxw80, vxw81, vxw82, False, bgh, app(app(app(ty_@3, bhe), bhf), bhg)) -> new_ltEs2(vxw80, vxw82, bhe, bhf, bhg) new_compare21(vxw79, vxw80, vxw81, vxw82, False, bgh, app(ty_Maybe, bhb)) -> new_ltEs0(vxw80, vxw82, bhb) new_compare21(vxw79, vxw80, vxw81, vxw82, False, bgh, app(app(ty_Either, bhh), caa)) -> new_ltEs3(vxw80, vxw82, bhh, caa) new_compare23(vxw63, vxw64, False, app(app(ty_@2, cec), ced), cea) -> new_ltEs1(vxw63, vxw64, cec, ced) new_compare23(vxw63, vxw64, False, app(ty_Maybe, ceb), cea) -> new_ltEs0(vxw63, vxw64, ceb) new_compare23(vxw63, vxw64, False, app(app(ty_Either, ceh), cfa), cea) -> new_ltEs3(vxw63, vxw64, ceh, cfa) new_primCompAux(@2(vxw300, vxw301), @2(vxw4000, vxw4001), vxw31, vxw401, app(app(ty_@2, ce), cf)) -> new_compare21(vxw300, vxw301, vxw4000, vxw4001, new_asAs(new_esEs6(vxw300, vxw4000, ce), new_esEs5(vxw301, vxw4001, cf)), ce, cf) new_primCompAux(Right(vxw300), Right(vxw4000), vxw31, vxw401, app(app(ty_Either, dc), dd)) -> new_compare24(vxw300, vxw4000, new_esEs11(vxw300, vxw4000, dd), dc, dd) new_primCompAux(Left(vxw300), Left(vxw4000), vxw31, vxw401, app(app(ty_Either, dc), dd)) -> new_compare23(vxw300, vxw4000, new_esEs10(vxw300, vxw4000, dc), dc, dd) new_primCompAux(:(vxw300, vxw301), :(vxw4000, vxw4001), vxw31, vxw401, app(ty_[], cb)) -> new_primCompAux(vxw300, vxw4000, vxw301, vxw4001, cb) new_primCompAux(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), vxw31, vxw401, app(app(app(ty_@3, cg), da), db)) -> new_compare22(vxw300, vxw301, vxw302, vxw4000, vxw4001, vxw4002, new_asAs(new_esEs9(vxw300, vxw4000, cg), new_asAs(new_esEs8(vxw301, vxw4001, da), new_esEs7(vxw302, vxw4002, db))), cg, da, db) The TRS R consists of the following rules: new_esEs26(vxw301, vxw311, ty_Double) -> new_esEs23(vxw301, vxw311) new_esEs11(vxw300, vxw4000, app(ty_[], eda)) -> new_esEs24(vxw300, vxw4000, eda) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_compare4(vxw30, vxw400, ty_Int) -> new_compare5(vxw30, vxw400) new_esEs7(vxw302, vxw4002, ty_Char) -> new_esEs18(vxw302, vxw4002) new_lt23(vxw52, vxw55, ty_Integer) -> new_lt10(vxw52, vxw55) new_pePe(True, vxw158) -> True new_esEs38(vxw52, vxw55, ty_Bool) -> new_esEs19(vxw52, vxw55) new_esEs10(vxw300, vxw4000, ty_@0) -> new_esEs22(vxw300, vxw4000) new_esEs19(False, True) -> False new_esEs19(True, False) -> False new_ltEs24(vxw30, vxw31, app(app(ty_@2, eg), gc)) -> new_ltEs10(vxw30, vxw31, eg, gc) new_esEs25(Right(vxw3000), Right(vxw40000), egb, ty_@0) -> new_esEs22(vxw3000, vxw40000) new_esEs39(vxw3000, vxw40000, ty_Int) -> new_esEs21(vxw3000, vxw40000) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_ltEs23(vxw54, vxw57, ty_Bool) -> new_ltEs18(vxw54, vxw57) new_lt20(vxw79, vxw81, app(app(ty_Either, bgf), bgg)) -> new_lt17(vxw79, vxw81, bgf, bgg) new_compare26(vxw70, vxw71, True, cfb, dbf) -> EQ new_esEs6(vxw300, vxw4000, app(ty_Maybe, ebh)) -> new_esEs13(vxw300, vxw4000, ebh) new_esEs33(vxw3000, vxw40000, ty_Integer) -> new_esEs16(vxw3000, vxw40000) new_ltEs20(vxw70, vxw71, ty_Float) -> new_ltEs13(vxw70, vxw71) new_esEs11(vxw300, vxw4000, ty_Double) -> new_esEs23(vxw300, vxw4000) new_lt23(vxw52, vxw55, app(ty_Ratio, feg)) -> new_lt15(vxw52, vxw55, feg) new_esEs28(vxw79, vxw81, ty_Char) -> new_esEs18(vxw79, vxw81) new_ltEs18(True, False) -> False new_ltEs7(vxw30, vxw31) -> new_fsEs(new_compare14(vxw30, vxw31)) new_esEs25(Right(vxw3000), Right(vxw40000), egb, app(ty_[], eha)) -> new_esEs24(vxw3000, vxw40000, eha) new_lt10(vxw79, vxw81) -> new_esEs12(new_compare14(vxw79, vxw81), LT) new_compare17(LT, GT) -> LT new_esEs25(Left(vxw3000), Left(vxw40000), ty_Integer, eeg) -> new_esEs16(vxw3000, vxw40000) new_compare211(vxw30, vxw31, True, fhf) -> EQ new_esEs25(Left(vxw3000), Left(vxw40000), ty_Bool, eeg) -> new_esEs19(vxw3000, vxw40000) new_lt23(vxw52, vxw55, app(ty_[], ccg)) -> new_lt11(vxw52, vxw55, ccg) new_esEs35(vxw3001, vxw40001, ty_Float) -> new_esEs14(vxw3001, vxw40001) new_esEs13(Just(vxw3000), Just(vxw40000), app(app(app(ty_@3, cgh), cha), chb)) -> new_esEs20(vxw3000, vxw40000, cgh, cha, chb) new_lt8(vxw300, vxw310, ty_Float) -> new_lt6(vxw300, vxw310) new_esEs27(vxw300, vxw310, app(ty_Maybe, bcb)) -> new_esEs13(vxw300, vxw310, bcb) new_esEs5(vxw301, vxw4001, app(ty_[], fgh)) -> new_esEs24(vxw301, vxw4001, fgh) new_esEs26(vxw301, vxw311, app(app(ty_@2, bbb), bbc)) -> new_esEs15(vxw301, vxw311, bbb, bbc) new_compare19(@0, @0) -> EQ new_ltEs16(Left(vxw300), Left(vxw310), app(app(app(ty_@3, bdg), bdh), bea), bdc) -> new_ltEs4(vxw300, vxw310, bdg, bdh, bea) new_esEs35(vxw3001, vxw40001, ty_@0) -> new_esEs22(vxw3001, vxw40001) new_ltEs24(vxw30, vxw31, app(app(app(ty_@3, hd), he), bah)) -> new_ltEs4(vxw30, vxw31, hd, he, bah) new_esEs36(vxw3000, vxw40000, ty_Double) -> new_esEs23(vxw3000, vxw40000) new_compare17(LT, EQ) -> LT new_ltEs20(vxw70, vxw71, app(ty_Maybe, cfd)) -> new_ltEs9(vxw70, vxw71, cfd) new_lt21(vxw300, vxw310, ty_Float) -> new_lt6(vxw300, vxw310) new_esEs34(vxw3002, vxw40002, ty_Int) -> new_esEs21(vxw3002, vxw40002) new_primCompAux1(vxw30, vxw400, vxw31, vxw401, cc) -> new_primCompAux00(vxw31, vxw401, new_compare4(vxw30, vxw400, cc), app(ty_[], cc)) new_esEs31(vxw300, vxw310, app(ty_Ratio, dhd)) -> new_esEs17(vxw300, vxw310, dhd) new_lt22(vxw53, vxw56, ty_Bool) -> new_lt19(vxw53, vxw56) new_compare17(EQ, GT) -> LT new_esEs5(vxw301, vxw4001, app(app(ty_@2, fgb), fgc)) -> new_esEs15(vxw301, vxw4001, fgb, fgc) new_esEs26(vxw301, vxw311, app(ty_[], bag)) -> new_esEs24(vxw301, vxw311, bag) new_ltEs19(vxw80, vxw82, app(app(ty_Either, bhh), caa)) -> new_ltEs16(vxw80, vxw82, bhh, caa) new_primCompAux00(vxw23, vxw24, EQ, ty_Integer) -> new_compare14(vxw23, vxw24) new_primEqNat0(Succ(vxw30000), Succ(vxw400000)) -> new_primEqNat0(vxw30000, vxw400000) new_compare4(vxw30, vxw400, ty_Char) -> new_compare13(vxw30, vxw400) new_esEs10(vxw300, vxw4000, ty_Float) -> new_esEs14(vxw300, vxw4000) new_lt22(vxw53, vxw56, ty_@0) -> new_lt16(vxw53, vxw56) new_esEs24([], [], faa) -> True new_not(True) -> False new_compare4(vxw30, vxw400, app(ty_Maybe, cd)) -> new_compare16(vxw30, vxw400, cd) new_lt7(vxw301, vxw311, app(app(ty_Either, bbg), bbh)) -> new_lt17(vxw301, vxw311, bbg, bbh) new_ltEs16(Right(vxw300), Right(vxw310), bed, app(app(ty_Either, bfd), bfe)) -> new_ltEs16(vxw300, vxw310, bfd, bfe) new_esEs30(vxw3000, vxw40000, ty_Float) -> new_esEs14(vxw3000, vxw40000) new_compare4(vxw30, vxw400, app(app(ty_@2, ce), cf)) -> new_compare6(vxw30, vxw400, ce, cf) new_ltEs20(vxw70, vxw71, ty_Int) -> new_ltEs12(vxw70, vxw71) new_primCompAux00(vxw23, vxw24, EQ, ty_Bool) -> new_compare9(vxw23, vxw24) new_esEs6(vxw300, vxw4000, app(app(app(ty_@3, ebd), ebe), ebf)) -> new_esEs20(vxw300, vxw4000, ebd, ebe, ebf) new_ltEs16(Right(vxw300), Right(vxw310), bed, ty_@0) -> new_ltEs15(vxw300, vxw310) new_primEqNat0(Succ(vxw30000), Zero) -> False new_primEqNat0(Zero, Succ(vxw400000)) -> False new_esEs18(Char(vxw3000), Char(vxw40000)) -> new_primEqNat0(vxw3000, vxw40000) new_primCompAux00(vxw23, vxw24, EQ, ty_Ordering) -> new_compare17(vxw23, vxw24) new_compare27(Left(vxw300), Right(vxw4000), dc, dd) -> LT new_esEs38(vxw52, vxw55, ty_Char) -> new_esEs18(vxw52, vxw55) new_esEs39(vxw3000, vxw40000, app(ty_Ratio, ffb)) -> new_esEs17(vxw3000, vxw40000, ffb) new_esEs8(vxw301, vxw4001, ty_Int) -> new_esEs21(vxw301, vxw4001) new_esEs13(Just(vxw3000), Just(vxw40000), app(ty_Maybe, chd)) -> new_esEs13(vxw3000, vxw40000, chd) new_ltEs21(vxw301, vxw311, ty_Integer) -> new_ltEs7(vxw301, vxw311) new_esEs4(vxw300, vxw4000, ty_Float) -> new_esEs14(vxw300, vxw4000) new_esEs11(vxw300, vxw4000, app(app(ty_@2, ecc), ecd)) -> new_esEs15(vxw300, vxw4000, ecc, ecd) new_ltEs23(vxw54, vxw57, ty_@0) -> new_ltEs15(vxw54, vxw57) new_compare4(vxw30, vxw400, app(ty_Ratio, deh)) -> new_compare8(vxw30, vxw400, deh) new_esEs4(vxw300, vxw4000, ty_@0) -> new_esEs22(vxw300, vxw4000) new_ltEs16(Right(vxw300), Right(vxw310), bed, ty_Ordering) -> new_ltEs11(vxw300, vxw310) new_esEs9(vxw300, vxw4000, ty_@0) -> new_esEs22(vxw300, vxw4000) new_lt20(vxw79, vxw81, ty_Char) -> new_lt9(vxw79, vxw81) new_esEs19(False, False) -> True new_primCmpInt(Pos(Succ(vxw3000)), Neg(vxw4000)) -> GT new_esEs28(vxw79, vxw81, ty_Bool) -> new_esEs19(vxw79, vxw81) new_esEs35(vxw3001, vxw40001, app(app(ty_Either, fce), fcf)) -> new_esEs25(vxw3001, vxw40001, fce, fcf) new_ltEs23(vxw54, vxw57, ty_Ordering) -> new_ltEs11(vxw54, vxw57) new_esEs8(vxw301, vxw4001, app(ty_Ratio, dfh)) -> new_esEs17(vxw301, vxw4001, dfh) new_esEs38(vxw52, vxw55, ty_Integer) -> new_esEs16(vxw52, vxw55) new_primPlusNat1(Succ(vxw15900), Succ(vxw301000)) -> Succ(Succ(new_primPlusNat1(vxw15900, vxw301000))) new_primCompAux00(vxw23, vxw24, GT, dfc) -> GT new_primCmpNat0(Zero, Succ(vxw40000)) -> LT new_esEs30(vxw3000, vxw40000, app(app(ty_Either, ded), dee)) -> new_esEs25(vxw3000, vxw40000, ded, dee) new_ltEs20(vxw70, vxw71, ty_Double) -> new_ltEs17(vxw70, vxw71) new_esEs5(vxw301, vxw4001, ty_Double) -> new_esEs23(vxw301, vxw4001) new_lt7(vxw301, vxw311, app(ty_[], bag)) -> new_lt11(vxw301, vxw311, bag) new_lt7(vxw301, vxw311, ty_Integer) -> new_lt10(vxw301, vxw311) new_lt7(vxw301, vxw311, ty_Int) -> new_lt4(vxw301, vxw311) new_esEs9(vxw300, vxw4000, ty_Float) -> new_esEs14(vxw300, vxw4000) new_esEs31(vxw300, vxw310, app(app(ty_@2, ge), gf)) -> new_esEs15(vxw300, vxw310, ge, gf) new_ltEs23(vxw54, vxw57, ty_Double) -> new_ltEs17(vxw54, vxw57) new_esEs5(vxw301, vxw4001, ty_Integer) -> new_esEs16(vxw301, vxw4001) new_lt16(vxw79, vxw81) -> new_esEs12(new_compare19(vxw79, vxw81), LT) new_esEs37(vxw53, vxw56, app(app(app(ty_@3, ccb), ccc), ccd)) -> new_esEs20(vxw53, vxw56, ccb, ccc, ccd) new_ltEs18(False, False) -> True new_ltEs19(vxw80, vxw82, app(app(ty_@2, bhc), bhd)) -> new_ltEs10(vxw80, vxw82, bhc, bhd) new_lt23(vxw52, vxw55, ty_Ordering) -> new_lt13(vxw52, vxw55) new_compare113(vxw102, vxw103, True, fab) -> LT new_ltEs16(Right(vxw300), Right(vxw310), bed, app(ty_Ratio, fed)) -> new_ltEs14(vxw300, vxw310, fed) new_esEs38(vxw52, vxw55, ty_Ordering) -> new_esEs12(vxw52, vxw55) new_lt20(vxw79, vxw81, app(ty_[], bff)) -> new_lt11(vxw79, vxw81, bff) new_lt21(vxw300, vxw310, app(app(app(ty_@3, gg), gh), ha)) -> new_lt14(vxw300, vxw310, gg, gh, ha) new_esEs29(vxw3001, vxw40001, app(ty_[], dch)) -> new_esEs24(vxw3001, vxw40001, dch) new_esEs10(vxw300, vxw4000, ty_Char) -> new_esEs18(vxw300, vxw4000) new_esEs9(vxw300, vxw4000, app(app(ty_Either, dag), dah)) -> new_esEs25(vxw300, vxw4000, dag, dah) new_esEs8(vxw301, vxw4001, app(ty_[], dgd)) -> new_esEs24(vxw301, vxw4001, dgd) new_esEs11(vxw300, vxw4000, ty_Ordering) -> new_esEs12(vxw300, vxw4000) new_compare28(Double(vxw300, Neg(vxw3010)), Double(vxw4000, Neg(vxw40010))) -> new_compare5(new_sr(vxw300, Neg(vxw40010)), new_sr(Neg(vxw3010), vxw4000)) new_esEs25(Right(vxw3000), Right(vxw40000), egb, app(app(ty_Either, ehc), ehd)) -> new_esEs25(vxw3000, vxw40000, ehc, ehd) new_esEs26(vxw301, vxw311, app(ty_Ratio, dbb)) -> new_esEs17(vxw301, vxw311, dbb) new_esEs25(Left(vxw3000), Left(vxw40000), app(ty_Maybe, efg), eeg) -> new_esEs13(vxw3000, vxw40000, efg) new_esEs39(vxw3000, vxw40000, app(ty_Maybe, ffg)) -> new_esEs13(vxw3000, vxw40000, ffg) new_esEs31(vxw300, vxw310, ty_Double) -> new_esEs23(vxw300, vxw310) new_ltEs5(vxw302, vxw312, app(app(ty_@2, hh), baa)) -> new_ltEs10(vxw302, vxw312, hh, baa) new_lt20(vxw79, vxw81, app(ty_Maybe, bfg)) -> new_lt12(vxw79, vxw81, bfg) new_esEs29(vxw3001, vxw40001, app(app(app(ty_@3, dce), dcf), dcg)) -> new_esEs20(vxw3001, vxw40001, dce, dcf, dcg) new_ltEs19(vxw80, vxw82, ty_Integer) -> new_ltEs7(vxw80, vxw82) new_primEqInt(Neg(Succ(vxw30000)), Neg(Succ(vxw400000))) -> new_primEqNat0(vxw30000, vxw400000) new_esEs28(vxw79, vxw81, ty_Integer) -> new_esEs16(vxw79, vxw81) new_esEs30(vxw3000, vxw40000, ty_@0) -> new_esEs22(vxw3000, vxw40000) new_ltEs22(vxw63, vxw64, ty_Int) -> new_ltEs12(vxw63, vxw64) new_primCmpInt(Neg(Zero), Pos(Succ(vxw40000))) -> LT new_compare13(Char(vxw300), Char(vxw4000)) -> new_primCmpNat0(vxw300, vxw4000) new_lt22(vxw53, vxw56, ty_Int) -> new_lt4(vxw53, vxw56) new_esEs30(vxw3000, vxw40000, ty_Bool) -> new_esEs19(vxw3000, vxw40000) new_esEs7(vxw302, vxw4002, ty_Integer) -> new_esEs16(vxw302, vxw4002) new_primMulInt(Pos(vxw40000), Pos(vxw3010)) -> Pos(new_primMulNat0(vxw40000, vxw3010)) new_ltEs15(vxw30, vxw31) -> new_fsEs(new_compare19(vxw30, vxw31)) new_esEs5(vxw301, vxw4001, ty_Bool) -> new_esEs19(vxw301, vxw4001) new_esEs26(vxw301, vxw311, ty_Ordering) -> new_esEs12(vxw301, vxw311) new_esEs25(Right(vxw3000), Right(vxw40000), egb, app(app(ty_@2, egc), egd)) -> new_esEs15(vxw3000, vxw40000, egc, egd) new_esEs7(vxw302, vxw4002, app(app(ty_Either, eae), eaf)) -> new_esEs25(vxw302, vxw4002, eae, eaf) new_primCompAux00(vxw23, vxw24, EQ, ty_Float) -> new_compare7(vxw23, vxw24) new_esEs11(vxw300, vxw4000, app(ty_Ratio, ece)) -> new_esEs17(vxw300, vxw4000, ece) new_ltEs23(vxw54, vxw57, ty_Float) -> new_ltEs13(vxw54, vxw57) new_primMulNat0(Succ(vxw400000), Zero) -> Zero new_primMulNat0(Zero, Succ(vxw30100)) -> Zero new_ltEs20(vxw70, vxw71, ty_Bool) -> new_ltEs18(vxw70, vxw71) new_esEs34(vxw3002, vxw40002, app(ty_Ratio, fae)) -> new_esEs17(vxw3002, vxw40002, fae) new_ltEs6(vxw30, vxw31) -> new_fsEs(new_compare13(vxw30, vxw31)) new_esEs25(Left(vxw3000), Left(vxw40000), ty_Float, eeg) -> new_esEs14(vxw3000, vxw40000) new_lt22(vxw53, vxw56, app(ty_Maybe, cbg)) -> new_lt12(vxw53, vxw56, cbg) new_compare9(True, True) -> EQ new_ltEs14(vxw30, vxw31, dfe) -> new_fsEs(new_compare8(vxw30, vxw31, dfe)) new_lt14(vxw79, vxw81, bgc, bgd, bge) -> new_esEs12(new_compare18(vxw79, vxw81, bgc, bgd, bge), LT) new_esEs27(vxw300, vxw310, app(app(app(ty_@3, bce), bcf), bcg)) -> new_esEs20(vxw300, vxw310, bce, bcf, bcg) new_esEs7(vxw302, vxw4002, ty_Bool) -> new_esEs19(vxw302, vxw4002) new_esEs36(vxw3000, vxw40000, ty_Int) -> new_esEs21(vxw3000, vxw40000) new_esEs29(vxw3001, vxw40001, app(app(ty_@2, dcb), dcc)) -> new_esEs15(vxw3001, vxw40001, dcb, dcc) new_lt8(vxw300, vxw310, app(app(app(ty_@3, bce), bcf), bcg)) -> new_lt14(vxw300, vxw310, bce, bcf, bcg) new_esEs10(vxw300, vxw4000, app(app(ty_Either, eee), eef)) -> new_esEs25(vxw300, vxw4000, eee, eef) new_lt20(vxw79, vxw81, ty_Int) -> new_lt4(vxw79, vxw81) new_compare4(vxw30, vxw400, app(app(ty_Either, dc), dd)) -> new_compare27(vxw30, vxw400, dc, dd) new_primCompAux00(vxw23, vxw24, EQ, ty_@0) -> new_compare19(vxw23, vxw24) new_primPlusNat1(Succ(vxw15900), Zero) -> Succ(vxw15900) new_primPlusNat1(Zero, Succ(vxw301000)) -> Succ(vxw301000) new_compare15(:(vxw300, vxw301), :(vxw4000, vxw4001), cb) -> new_primCompAux1(vxw300, vxw4000, vxw301, vxw4001, cb) new_esEs25(Left(vxw3000), Left(vxw40000), ty_Char, eeg) -> new_esEs18(vxw3000, vxw40000) new_esEs31(vxw300, vxw310, app(ty_[], gb)) -> new_esEs24(vxw300, vxw310, gb) new_esEs30(vxw3000, vxw40000, ty_Char) -> new_esEs18(vxw3000, vxw40000) new_esEs7(vxw302, vxw4002, app(app(ty_@2, dhe), dhf)) -> new_esEs15(vxw302, vxw4002, dhe, dhf) new_compare210(vxw63, vxw64, False, eag, cea) -> new_compare110(vxw63, vxw64, new_ltEs22(vxw63, vxw64, eag), eag, cea) new_compare7(Float(vxw300, Pos(vxw3010)), Float(vxw4000, Pos(vxw40010))) -> new_compare5(new_sr(vxw300, Pos(vxw40010)), new_sr(Pos(vxw3010), vxw4000)) new_esEs37(vxw53, vxw56, app(ty_Maybe, cbg)) -> new_esEs13(vxw53, vxw56, cbg) new_esEs36(vxw3000, vxw40000, app(ty_Ratio, fda)) -> new_esEs17(vxw3000, vxw40000, fda) new_esEs30(vxw3000, vxw40000, ty_Integer) -> new_esEs16(vxw3000, vxw40000) new_esEs25(Left(vxw3000), Left(vxw40000), app(app(ty_@2, eeh), efa), eeg) -> new_esEs15(vxw3000, vxw40000, eeh, efa) new_lt15(vxw79, vxw81, dbd) -> new_esEs12(new_compare8(vxw79, vxw81, dbd), LT) new_fsEs(vxw153) -> new_not(new_esEs12(vxw153, GT)) new_esEs25(Left(vxw3000), Left(vxw40000), ty_@0, eeg) -> new_esEs22(vxw3000, vxw40000) new_ltEs22(vxw63, vxw64, ty_Float) -> new_ltEs13(vxw63, vxw64) new_esEs8(vxw301, vxw4001, ty_Double) -> new_esEs23(vxw301, vxw4001) new_esEs25(Left(vxw3000), Left(vxw40000), ty_Double, eeg) -> new_esEs23(vxw3000, vxw40000) new_lt17(vxw79, vxw81, bgf, bgg) -> new_esEs12(new_compare27(vxw79, vxw81, bgf, bgg), LT) new_ltEs21(vxw301, vxw311, app(app(ty_Either, fh), ga)) -> new_ltEs16(vxw301, vxw311, fh, ga) new_esEs7(vxw302, vxw4002, ty_Float) -> new_esEs14(vxw302, vxw4002) new_lt20(vxw79, vxw81, ty_Integer) -> new_lt10(vxw79, vxw81) new_ltEs21(vxw301, vxw311, ty_@0) -> new_ltEs15(vxw301, vxw311) new_esEs7(vxw302, vxw4002, ty_@0) -> new_esEs22(vxw302, vxw4002) new_ltEs16(Right(vxw300), Right(vxw310), bed, ty_Integer) -> new_ltEs7(vxw300, vxw310) new_esEs39(vxw3000, vxw40000, app(app(app(ty_@3, ffc), ffd), ffe)) -> new_esEs20(vxw3000, vxw40000, ffc, ffd, ffe) new_ltEs16(Left(vxw300), Left(vxw310), app(ty_[], bdb), bdc) -> new_ltEs8(vxw300, vxw310, bdb) new_esEs36(vxw3000, vxw40000, ty_Ordering) -> new_esEs12(vxw3000, vxw40000) new_lt21(vxw300, vxw310, ty_Ordering) -> new_lt13(vxw300, vxw310) new_compare16(Just(vxw300), Just(vxw4000), cd) -> new_compare211(vxw300, vxw4000, new_esEs4(vxw300, vxw4000, cd), cd) new_ltEs24(vxw30, vxw31, app(ty_Ratio, dfe)) -> new_ltEs14(vxw30, vxw31, dfe) new_ltEs9(Just(vxw300), Just(vxw310), ty_Char) -> new_ltEs6(vxw300, vxw310) new_ltEs4(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), hd, he, bah) -> new_pePe(new_lt8(vxw300, vxw310, hd), new_asAs(new_esEs27(vxw300, vxw310, hd), new_pePe(new_lt7(vxw301, vxw311, he), new_asAs(new_esEs26(vxw301, vxw311, he), new_ltEs5(vxw302, vxw312, bah))))) new_esEs6(vxw300, vxw4000, ty_@0) -> new_esEs22(vxw300, vxw4000) new_esEs29(vxw3001, vxw40001, ty_Ordering) -> new_esEs12(vxw3001, vxw40001) new_esEs27(vxw300, vxw310, app(ty_Ratio, dbc)) -> new_esEs17(vxw300, vxw310, dbc) new_ltEs11(EQ, GT) -> True new_esEs7(vxw302, vxw4002, app(ty_[], eac)) -> new_esEs24(vxw302, vxw4002, eac) new_lt23(vxw52, vxw55, ty_Float) -> new_lt6(vxw52, vxw55) new_esEs37(vxw53, vxw56, app(app(ty_Either, cce), ccf)) -> new_esEs25(vxw53, vxw56, cce, ccf) new_ltEs21(vxw301, vxw311, ty_Bool) -> new_ltEs18(vxw301, vxw311) new_esEs11(vxw300, vxw4000, ty_Char) -> new_esEs18(vxw300, vxw4000) new_lt7(vxw301, vxw311, ty_@0) -> new_lt16(vxw301, vxw311) new_esEs32(vxw3001, vxw40001, ty_Int) -> new_esEs21(vxw3001, vxw40001) new_ltEs18(False, True) -> True new_compare17(GT, GT) -> EQ new_lt20(vxw79, vxw81, ty_Bool) -> new_lt19(vxw79, vxw81) new_esEs10(vxw300, vxw4000, ty_Integer) -> new_esEs16(vxw300, vxw4000) new_esEs28(vxw79, vxw81, app(ty_[], bff)) -> new_esEs24(vxw79, vxw81, bff) new_esEs35(vxw3001, vxw40001, ty_Ordering) -> new_esEs12(vxw3001, vxw40001) new_esEs28(vxw79, vxw81, ty_Double) -> new_esEs23(vxw79, vxw81) new_esEs30(vxw3000, vxw40000, app(app(ty_@2, ddd), dde)) -> new_esEs15(vxw3000, vxw40000, ddd, dde) new_ltEs11(EQ, EQ) -> True new_esEs10(vxw300, vxw4000, app(ty_Maybe, eed)) -> new_esEs13(vxw300, vxw4000, eed) new_compare211(vxw30, vxw31, False, fhf) -> new_compare113(vxw30, vxw31, new_ltEs24(vxw30, vxw31, fhf), fhf) new_ltEs16(Left(vxw300), Left(vxw310), ty_Ordering, bdc) -> new_ltEs11(vxw300, vxw310) new_esEs6(vxw300, vxw4000, ty_Float) -> new_esEs14(vxw300, vxw4000) new_esEs5(vxw301, vxw4001, ty_Char) -> new_esEs18(vxw301, vxw4001) new_esEs26(vxw301, vxw311, ty_Int) -> new_esEs21(vxw301, vxw311) new_esEs12(GT, GT) -> True new_lt22(vxw53, vxw56, app(app(app(ty_@3, ccb), ccc), ccd)) -> new_lt14(vxw53, vxw56, ccb, ccc, ccd) new_lt20(vxw79, vxw81, ty_Ordering) -> new_lt13(vxw79, vxw81) new_lt22(vxw53, vxw56, app(app(ty_Either, cce), ccf)) -> new_lt17(vxw53, vxw56, cce, ccf) new_ltEs22(vxw63, vxw64, app(app(ty_@2, cec), ced)) -> new_ltEs10(vxw63, vxw64, cec, ced) new_lt8(vxw300, vxw310, app(ty_[], bca)) -> new_lt11(vxw300, vxw310, bca) new_ltEs20(vxw70, vxw71, ty_@0) -> new_ltEs15(vxw70, vxw71) new_ltEs16(Right(vxw300), Left(vxw310), bed, bdc) -> False new_esEs31(vxw300, vxw310, ty_Integer) -> new_esEs16(vxw300, vxw310) new_primCompAux00(vxw23, vxw24, EQ, app(app(app(ty_@3, be), bf), bg)) -> new_compare18(vxw23, vxw24, be, bf, bg) new_ltEs24(vxw30, vxw31, app(ty_[], de)) -> new_ltEs8(vxw30, vxw31, de) new_lt21(vxw300, vxw310, app(ty_[], gb)) -> new_lt11(vxw300, vxw310, gb) new_ltEs16(Right(vxw300), Right(vxw310), bed, ty_Float) -> new_ltEs13(vxw300, vxw310) new_ltEs19(vxw80, vxw82, ty_@0) -> new_ltEs15(vxw80, vxw82) new_primCmpInt(Pos(Succ(vxw3000)), Pos(vxw4000)) -> new_primCmpNat0(Succ(vxw3000), vxw4000) new_esEs38(vxw52, vxw55, ty_@0) -> new_esEs22(vxw52, vxw55) new_esEs13(Just(vxw3000), Just(vxw40000), app(ty_[], chc)) -> new_esEs24(vxw3000, vxw40000, chc) new_esEs31(vxw300, vxw310, app(ty_Maybe, gd)) -> new_esEs13(vxw300, vxw310, gd) new_esEs4(vxw300, vxw4000, ty_Integer) -> new_esEs16(vxw300, vxw4000) new_ltEs11(GT, GT) -> True new_esEs12(EQ, EQ) -> True new_esEs6(vxw300, vxw4000, app(app(ty_Either, eca), ecb)) -> new_esEs25(vxw300, vxw4000, eca, ecb) new_lt19(vxw79, vxw81) -> new_esEs12(new_compare9(vxw79, vxw81), LT) new_esEs25(Right(vxw3000), Right(vxw40000), egb, ty_Ordering) -> new_esEs12(vxw3000, vxw40000) new_esEs10(vxw300, vxw4000, ty_Bool) -> new_esEs19(vxw300, vxw4000) new_esEs36(vxw3000, vxw40000, app(ty_Maybe, fdf)) -> new_esEs13(vxw3000, vxw40000, fdf) new_esEs8(vxw301, vxw4001, app(app(ty_@2, dff), dfg)) -> new_esEs15(vxw301, vxw4001, dff, dfg) new_ltEs16(Left(vxw300), Left(vxw310), ty_@0, bdc) -> new_ltEs15(vxw300, vxw310) new_esEs13(Just(vxw3000), Just(vxw40000), app(app(ty_@2, cge), cgf)) -> new_esEs15(vxw3000, vxw40000, cge, cgf) new_ltEs19(vxw80, vxw82, app(ty_[], bha)) -> new_ltEs8(vxw80, vxw82, bha) new_ltEs19(vxw80, vxw82, ty_Bool) -> new_ltEs18(vxw80, vxw82) new_esEs11(vxw300, vxw4000, ty_Int) -> new_esEs21(vxw300, vxw4000) new_ltEs5(vxw302, vxw312, app(app(ty_Either, bae), baf)) -> new_ltEs16(vxw302, vxw312, bae, baf) new_esEs25(Right(vxw3000), Right(vxw40000), egb, app(app(app(ty_@3, egf), egg), egh)) -> new_esEs20(vxw3000, vxw40000, egf, egg, egh) new_esEs5(vxw301, vxw4001, app(app(ty_Either, fhb), fhc)) -> new_esEs25(vxw301, vxw4001, fhb, fhc) new_esEs5(vxw301, vxw4001, ty_Float) -> new_esEs14(vxw301, vxw4001) new_ltEs21(vxw301, vxw311, app(app(ty_@2, fb), fc)) -> new_ltEs10(vxw301, vxw311, fb, fc) new_lt21(vxw300, vxw310, ty_Char) -> new_lt9(vxw300, vxw310) new_compare10(vxw129, vxw130, vxw131, vxw132, True, vxw134, def, deg) -> new_compare12(vxw129, vxw130, vxw131, vxw132, True, def, deg) new_esEs28(vxw79, vxw81, app(app(ty_@2, bfh), bga)) -> new_esEs15(vxw79, vxw81, bfh, bga) new_esEs30(vxw3000, vxw40000, ty_Double) -> new_esEs23(vxw3000, vxw40000) new_primCompAux00(vxw23, vxw24, EQ, app(ty_Ratio, dfd)) -> new_compare8(vxw23, vxw24, dfd) new_esEs4(vxw300, vxw4000, ty_Bool) -> new_esEs19(vxw300, vxw4000) new_esEs31(vxw300, vxw310, app(app(app(ty_@3, gg), gh), ha)) -> new_esEs20(vxw300, vxw310, gg, gh, ha) new_esEs33(vxw3000, vxw40000, ty_Int) -> new_esEs21(vxw3000, vxw40000) new_ltEs20(vxw70, vxw71, app(ty_[], cfc)) -> new_ltEs8(vxw70, vxw71, cfc) new_esEs36(vxw3000, vxw40000, app(app(app(ty_@3, fdb), fdc), fdd)) -> new_esEs20(vxw3000, vxw40000, fdb, fdc, fdd) new_esEs29(vxw3001, vxw40001, ty_Double) -> new_esEs23(vxw3001, vxw40001) new_esEs30(vxw3000, vxw40000, app(ty_Maybe, dec)) -> new_esEs13(vxw3000, vxw40000, dec) new_esEs10(vxw300, vxw4000, ty_Ordering) -> new_esEs12(vxw300, vxw4000) new_esEs13(Just(vxw3000), Just(vxw40000), ty_Double) -> new_esEs23(vxw3000, vxw40000) new_compare25(vxw79, vxw80, vxw81, vxw82, False, bgh, bgb) -> new_compare10(vxw79, vxw80, vxw81, vxw82, new_lt20(vxw79, vxw81, bgh), new_asAs(new_esEs28(vxw79, vxw81, bgh), new_ltEs19(vxw80, vxw82, bgb)), bgh, bgb) new_lt8(vxw300, vxw310, ty_Bool) -> new_lt19(vxw300, vxw310) new_lt7(vxw301, vxw311, ty_Float) -> new_lt6(vxw301, vxw311) new_compare4(vxw30, vxw400, app(app(app(ty_@3, cg), da), db)) -> new_compare18(vxw30, vxw400, cg, da, db) new_primCompAux00(vxw23, vxw24, EQ, app(ty_Maybe, bb)) -> new_compare16(vxw23, vxw24, bb) new_ltEs5(vxw302, vxw312, ty_Float) -> new_ltEs13(vxw302, vxw312) new_esEs34(vxw3002, vxw40002, ty_@0) -> new_esEs22(vxw3002, vxw40002) new_esEs4(vxw300, vxw4000, ty_Char) -> new_esEs18(vxw300, vxw4000) new_esEs27(vxw300, vxw310, ty_Int) -> new_esEs21(vxw300, vxw310) new_esEs11(vxw300, vxw4000, ty_Bool) -> new_esEs19(vxw300, vxw4000) new_compare17(EQ, EQ) -> EQ new_ltEs9(Just(vxw300), Just(vxw310), app(ty_Maybe, dg)) -> new_ltEs9(vxw300, vxw310, dg) new_esEs29(vxw3001, vxw40001, app(ty_Maybe, dda)) -> new_esEs13(vxw3001, vxw40001, dda) new_lt22(vxw53, vxw56, ty_Float) -> new_lt6(vxw53, vxw56) new_lt23(vxw52, vxw55, app(app(ty_Either, cdf), cdg)) -> new_lt17(vxw52, vxw55, cdf, cdg) new_compare4(vxw30, vxw400, ty_Bool) -> new_compare9(vxw30, vxw400) new_lt8(vxw300, vxw310, ty_@0) -> new_lt16(vxw300, vxw310) new_esEs35(vxw3001, vxw40001, app(ty_Maybe, fcd)) -> new_esEs13(vxw3001, vxw40001, fcd) new_esEs27(vxw300, vxw310, app(ty_[], bca)) -> new_esEs24(vxw300, vxw310, bca) new_esEs31(vxw300, vxw310, ty_Int) -> new_esEs21(vxw300, vxw310) new_ltEs9(Just(vxw300), Just(vxw310), ty_Bool) -> new_ltEs18(vxw300, vxw310) new_ltEs16(Left(vxw300), Left(vxw310), ty_Char, bdc) -> new_ltEs6(vxw300, vxw310) new_ltEs23(vxw54, vxw57, app(ty_[], cad)) -> new_ltEs8(vxw54, vxw57, cad) new_lt23(vxw52, vxw55, ty_@0) -> new_lt16(vxw52, vxw55) new_esEs36(vxw3000, vxw40000, ty_Float) -> new_esEs14(vxw3000, vxw40000) new_esEs27(vxw300, vxw310, ty_Double) -> new_esEs23(vxw300, vxw310) new_ltEs9(Just(vxw300), Just(vxw310), app(app(ty_Either, ee), ef)) -> new_ltEs16(vxw300, vxw310, ee, ef) new_esEs28(vxw79, vxw81, ty_Ordering) -> new_esEs12(vxw79, vxw81) new_ltEs12(vxw30, vxw31) -> new_fsEs(new_compare5(vxw30, vxw31)) new_esEs37(vxw53, vxw56, ty_Bool) -> new_esEs19(vxw53, vxw56) new_lt21(vxw300, vxw310, app(app(ty_Either, hb), hc)) -> new_lt17(vxw300, vxw310, hb, hc) new_esEs36(vxw3000, vxw40000, app(app(ty_Either, fdg), fdh)) -> new_esEs25(vxw3000, vxw40000, fdg, fdh) new_esEs16(Integer(vxw3000), Integer(vxw40000)) -> new_primEqInt(vxw3000, vxw40000) new_ltEs16(Right(vxw300), Right(vxw310), bed, ty_Bool) -> new_ltEs18(vxw300, vxw310) new_esEs13(Just(vxw3000), Just(vxw40000), app(ty_Ratio, cgg)) -> new_esEs17(vxw3000, vxw40000, cgg) new_esEs11(vxw300, vxw4000, ty_Integer) -> new_esEs16(vxw300, vxw4000) new_esEs4(vxw300, vxw4000, app(app(ty_Either, egb), eeg)) -> new_esEs25(vxw300, vxw4000, egb, eeg) new_esEs34(vxw3002, vxw40002, ty_Integer) -> new_esEs16(vxw3002, vxw40002) new_ltEs16(Left(vxw300), Left(vxw310), app(ty_Ratio, fec), bdc) -> new_ltEs14(vxw300, vxw310, fec) new_compare113(vxw102, vxw103, False, fab) -> GT new_esEs38(vxw52, vxw55, ty_Float) -> new_esEs14(vxw52, vxw55) new_primPlusNat0(Succ(vxw1590), vxw30100) -> Succ(Succ(new_primPlusNat1(vxw1590, vxw30100))) new_primCompAux00(vxw23, vxw24, EQ, ty_Double) -> new_compare28(vxw23, vxw24) new_esEs11(vxw300, vxw4000, app(ty_Maybe, edb)) -> new_esEs13(vxw300, vxw4000, edb) new_compare11(vxw119, vxw120, True, fea, feb) -> LT new_esEs25(Right(vxw3000), Right(vxw40000), egb, app(ty_Ratio, ege)) -> new_esEs17(vxw3000, vxw40000, ege) new_esEs34(vxw3002, vxw40002, app(ty_Maybe, fbb)) -> new_esEs13(vxw3002, vxw40002, fbb) new_compare7(Float(vxw300, Pos(vxw3010)), Float(vxw4000, Neg(vxw40010))) -> new_compare5(new_sr(vxw300, Pos(vxw40010)), new_sr(Neg(vxw3010), vxw4000)) new_compare7(Float(vxw300, Neg(vxw3010)), Float(vxw4000, Pos(vxw40010))) -> new_compare5(new_sr(vxw300, Neg(vxw40010)), new_sr(Pos(vxw3010), vxw4000)) new_esEs17(:%(vxw3000, vxw3001), :%(vxw40000, vxw40001), ehe) -> new_asAs(new_esEs33(vxw3000, vxw40000, ehe), new_esEs32(vxw3001, vxw40001, ehe)) new_ltEs21(vxw301, vxw311, app(ty_[], eh)) -> new_ltEs8(vxw301, vxw311, eh) new_esEs35(vxw3001, vxw40001, ty_Char) -> new_esEs18(vxw3001, vxw40001) new_esEs35(vxw3001, vxw40001, app(app(app(ty_@3, fbh), fca), fcb)) -> new_esEs20(vxw3001, vxw40001, fbh, fca, fcb) new_primPlusNat1(Zero, Zero) -> Zero new_lt7(vxw301, vxw311, ty_Bool) -> new_lt19(vxw301, vxw311) new_esEs35(vxw3001, vxw40001, ty_Bool) -> new_esEs19(vxw3001, vxw40001) new_esEs13(Just(vxw3000), Just(vxw40000), ty_Ordering) -> new_esEs12(vxw3000, vxw40000) new_esEs25(Right(vxw3000), Right(vxw40000), egb, app(ty_Maybe, ehb)) -> new_esEs13(vxw3000, vxw40000, ehb) new_esEs28(vxw79, vxw81, app(ty_Ratio, dbd)) -> new_esEs17(vxw79, vxw81, dbd) new_esEs10(vxw300, vxw4000, app(app(app(ty_@3, edh), eea), eeb)) -> new_esEs20(vxw300, vxw4000, edh, eea, eeb) new_lt11(vxw79, vxw81, bff) -> new_esEs12(new_compare15(vxw79, vxw81, bff), LT) new_esEs23(Double(vxw3000, vxw3001), Double(vxw40000, vxw40001)) -> new_esEs21(new_sr(vxw3000, vxw40001), new_sr(vxw3001, vxw40000)) new_esEs13(Just(vxw3000), Just(vxw40000), ty_Int) -> new_esEs21(vxw3000, vxw40000) new_esEs37(vxw53, vxw56, ty_@0) -> new_esEs22(vxw53, vxw56) new_lt22(vxw53, vxw56, ty_Char) -> new_lt9(vxw53, vxw56) new_primCmpNat0(Succ(vxw3000), Succ(vxw40000)) -> new_primCmpNat0(vxw3000, vxw40000) new_lt20(vxw79, vxw81, ty_@0) -> new_lt16(vxw79, vxw81) new_esEs11(vxw300, vxw4000, app(app(app(ty_@3, ecf), ecg), ech)) -> new_esEs20(vxw300, vxw4000, ecf, ecg, ech) new_esEs31(vxw300, vxw310, ty_Ordering) -> new_esEs12(vxw300, vxw310) new_esEs36(vxw3000, vxw40000, ty_Integer) -> new_esEs16(vxw3000, vxw40000) new_esEs29(vxw3001, vxw40001, ty_Int) -> new_esEs21(vxw3001, vxw40001) new_esEs34(vxw3002, vxw40002, app(app(app(ty_@3, faf), fag), fah)) -> new_esEs20(vxw3002, vxw40002, faf, fag, fah) new_esEs37(vxw53, vxw56, ty_Char) -> new_esEs18(vxw53, vxw56) new_ltEs16(Left(vxw300), Left(vxw310), app(app(ty_@2, bde), bdf), bdc) -> new_ltEs10(vxw300, vxw310, bde, bdf) new_esEs36(vxw3000, vxw40000, ty_@0) -> new_esEs22(vxw3000, vxw40000) new_ltEs16(Right(vxw300), Right(vxw310), bed, app(ty_[], bee)) -> new_ltEs8(vxw300, vxw310, bee) new_ltEs9(Just(vxw300), Just(vxw310), ty_@0) -> new_ltEs15(vxw300, vxw310) new_lt7(vxw301, vxw311, ty_Char) -> new_lt9(vxw301, vxw311) new_ltEs18(True, True) -> True new_lt12(vxw79, vxw81, bfg) -> new_esEs12(new_compare16(vxw79, vxw81, bfg), LT) new_esEs13(Nothing, Nothing, cgd) -> True new_lt21(vxw300, vxw310, ty_@0) -> new_lt16(vxw300, vxw310) new_ltEs16(Left(vxw300), Left(vxw310), ty_Integer, bdc) -> new_ltEs7(vxw300, vxw310) new_lt21(vxw300, vxw310, ty_Bool) -> new_lt19(vxw300, vxw310) new_esEs36(vxw3000, vxw40000, ty_Char) -> new_esEs18(vxw3000, vxw40000) new_esEs35(vxw3001, vxw40001, ty_Integer) -> new_esEs16(vxw3001, vxw40001) new_ltEs9(Just(vxw300), Just(vxw310), ty_Float) -> new_ltEs13(vxw300, vxw310) new_esEs36(vxw3000, vxw40000, ty_Bool) -> new_esEs19(vxw3000, vxw40000) new_lt8(vxw300, vxw310, ty_Char) -> new_lt9(vxw300, vxw310) new_esEs30(vxw3000, vxw40000, ty_Ordering) -> new_esEs12(vxw3000, vxw40000) new_esEs29(vxw3001, vxw40001, app(ty_Ratio, dcd)) -> new_esEs17(vxw3001, vxw40001, dcd) new_esEs30(vxw3000, vxw40000, app(ty_Ratio, ddf)) -> new_esEs17(vxw3000, vxw40000, ddf) new_esEs14(Float(vxw3000, vxw3001), Float(vxw40000, vxw40001)) -> new_esEs21(new_sr(vxw3000, vxw40001), new_sr(vxw3001, vxw40000)) new_esEs25(Right(vxw3000), Right(vxw40000), egb, ty_Double) -> new_esEs23(vxw3000, vxw40000) new_primCompAux00(vxw23, vxw24, EQ, ty_Char) -> new_compare13(vxw23, vxw24) new_ltEs13(vxw30, vxw31) -> new_fsEs(new_compare7(vxw30, vxw31)) new_compare4(vxw30, vxw400, ty_Integer) -> new_compare14(vxw30, vxw400) new_esEs30(vxw3000, vxw40000, ty_Int) -> new_esEs21(vxw3000, vxw40000) new_esEs38(vxw52, vxw55, app(app(ty_Either, cdf), cdg)) -> new_esEs25(vxw52, vxw55, cdf, cdg) new_esEs37(vxw53, vxw56, ty_Float) -> new_esEs14(vxw53, vxw56) new_ltEs16(Right(vxw300), Right(vxw310), bed, app(app(ty_@2, beg), beh)) -> new_ltEs10(vxw300, vxw310, beg, beh) new_ltEs23(vxw54, vxw57, app(app(ty_@2, caf), cag)) -> new_ltEs10(vxw54, vxw57, caf, cag) new_compare14(Integer(vxw300), Integer(vxw4000)) -> new_primCmpInt(vxw300, vxw4000) new_esEs13(Nothing, Just(vxw40000), cgd) -> False new_esEs13(Just(vxw3000), Nothing, cgd) -> False new_compare9(False, True) -> LT new_esEs19(True, True) -> True new_lt23(vxw52, vxw55, ty_Char) -> new_lt9(vxw52, vxw55) new_compare29(vxw52, vxw53, vxw54, vxw55, vxw56, vxw57, False, cab, cac, cbf) -> new_compare112(vxw52, vxw53, vxw54, vxw55, vxw56, vxw57, new_lt23(vxw52, vxw55, cab), new_asAs(new_esEs38(vxw52, vxw55, cab), new_pePe(new_lt22(vxw53, vxw56, cac), new_asAs(new_esEs37(vxw53, vxw56, cac), new_ltEs23(vxw54, vxw57, cbf)))), cab, cac, cbf) new_compare17(GT, LT) -> GT new_esEs10(vxw300, vxw4000, app(ty_Ratio, edg)) -> new_esEs17(vxw300, vxw4000, edg) new_ltEs22(vxw63, vxw64, app(ty_[], cdh)) -> new_ltEs8(vxw63, vxw64, cdh) new_primCmpInt(Neg(Succ(vxw3000)), Pos(vxw4000)) -> LT new_lt22(vxw53, vxw56, ty_Ordering) -> new_lt13(vxw53, vxw56) new_esEs34(vxw3002, vxw40002, ty_Char) -> new_esEs18(vxw3002, vxw40002) new_esEs38(vxw52, vxw55, app(app(app(ty_@3, cdc), cdd), cde)) -> new_esEs20(vxw52, vxw55, cdc, cdd, cde) new_ltEs5(vxw302, vxw312, ty_@0) -> new_ltEs15(vxw302, vxw312) new_esEs37(vxw53, vxw56, ty_Ordering) -> new_esEs12(vxw53, vxw56) new_compare9(False, False) -> EQ new_ltEs10(@2(vxw300, vxw301), @2(vxw310, vxw311), eg, gc) -> new_pePe(new_lt21(vxw300, vxw310, eg), new_asAs(new_esEs31(vxw300, vxw310, eg), new_ltEs21(vxw301, vxw311, gc))) new_esEs25(Left(vxw3000), Left(vxw40000), app(ty_[], eff), eeg) -> new_esEs24(vxw3000, vxw40000, eff) new_ltEs9(Just(vxw300), Just(vxw310), ty_Ordering) -> new_ltEs11(vxw300, vxw310) new_compare4(vxw30, vxw400, ty_Float) -> new_compare7(vxw30, vxw400) new_ltEs9(Just(vxw300), Just(vxw310), app(ty_[], df)) -> new_ltEs8(vxw300, vxw310, df) new_primCmpInt(Pos(Zero), Neg(Succ(vxw40000))) -> GT new_compare26(vxw70, vxw71, False, cfb, dbf) -> new_compare11(vxw70, vxw71, new_ltEs20(vxw70, vxw71, dbf), cfb, dbf) new_primCmpInt(Neg(Succ(vxw3000)), Neg(vxw4000)) -> new_primCmpNat0(vxw4000, Succ(vxw3000)) new_esEs27(vxw300, vxw310, ty_Integer) -> new_esEs16(vxw300, vxw310) new_esEs6(vxw300, vxw4000, ty_Integer) -> new_esEs16(vxw300, vxw4000) new_ltEs21(vxw301, vxw311, ty_Char) -> new_ltEs6(vxw301, vxw311) new_ltEs11(GT, EQ) -> False new_esEs13(Just(vxw3000), Just(vxw40000), ty_Bool) -> new_esEs19(vxw3000, vxw40000) new_ltEs19(vxw80, vxw82, app(ty_Maybe, bhb)) -> new_ltEs9(vxw80, vxw82, bhb) new_esEs8(vxw301, vxw4001, ty_Float) -> new_esEs14(vxw301, vxw4001) new_compare12(vxw129, vxw130, vxw131, vxw132, True, def, deg) -> LT new_esEs29(vxw3001, vxw40001, ty_Float) -> new_esEs14(vxw3001, vxw40001) new_ltEs16(Left(vxw300), Left(vxw310), ty_Float, bdc) -> new_ltEs13(vxw300, vxw310) new_esEs9(vxw300, vxw4000, ty_Double) -> new_esEs23(vxw300, vxw4000) new_esEs21(vxw300, vxw4000) -> new_primEqInt(vxw300, vxw4000) new_ltEs5(vxw302, vxw312, ty_Ordering) -> new_ltEs11(vxw302, vxw312) new_ltEs22(vxw63, vxw64, ty_Integer) -> new_ltEs7(vxw63, vxw64) new_esEs8(vxw301, vxw4001, ty_@0) -> new_esEs22(vxw301, vxw4001) new_esEs7(vxw302, vxw4002, ty_Int) -> new_esEs21(vxw302, vxw4002) new_compare17(GT, EQ) -> GT new_esEs4(vxw300, vxw4000, app(ty_Ratio, ehe)) -> new_esEs17(vxw300, vxw4000, ehe) new_esEs39(vxw3000, vxw40000, app(app(ty_Either, ffh), fga)) -> new_esEs25(vxw3000, vxw40000, ffh, fga) new_esEs13(Just(vxw3000), Just(vxw40000), ty_Char) -> new_esEs18(vxw3000, vxw40000) new_primEqInt(Pos(Succ(vxw30000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(vxw400000))) -> False new_lt21(vxw300, vxw310, app(app(ty_@2, ge), gf)) -> new_lt5(vxw300, vxw310, ge, gf) new_compare210(vxw63, vxw64, True, eag, cea) -> EQ new_esEs37(vxw53, vxw56, app(app(ty_@2, cbh), cca)) -> new_esEs15(vxw53, vxw56, cbh, cca) new_ltEs19(vxw80, vxw82, ty_Int) -> new_ltEs12(vxw80, vxw82) new_esEs29(vxw3001, vxw40001, ty_@0) -> new_esEs22(vxw3001, vxw40001) new_ltEs9(Just(vxw300), Just(vxw310), ty_Integer) -> new_ltEs7(vxw300, vxw310) new_esEs25(Left(vxw3000), Left(vxw40000), app(app(ty_Either, efh), ega), eeg) -> new_esEs25(vxw3000, vxw40000, efh, ega) new_primCompAux00(vxw23, vxw24, EQ, app(app(ty_@2, bc), bd)) -> new_compare6(vxw23, vxw24, bc, bd) new_compare4(vxw30, vxw400, ty_Ordering) -> new_compare17(vxw30, vxw400) new_ltEs16(Left(vxw300), Left(vxw310), app(app(ty_Either, beb), bec), bdc) -> new_ltEs16(vxw300, vxw310, beb, bec) new_ltEs22(vxw63, vxw64, ty_Ordering) -> new_ltEs11(vxw63, vxw64) new_ltEs24(vxw30, vxw31, ty_Double) -> new_ltEs17(vxw30, vxw31) new_ltEs20(vxw70, vxw71, app(app(ty_@2, cfe), cff)) -> new_ltEs10(vxw70, vxw71, cfe, cff) new_lt23(vxw52, vxw55, ty_Bool) -> new_lt19(vxw52, vxw55) new_esEs39(vxw3000, vxw40000, ty_Char) -> new_esEs18(vxw3000, vxw40000) new_primCmpNat0(Zero, Zero) -> EQ new_ltEs5(vxw302, vxw312, app(ty_[], hf)) -> new_ltEs8(vxw302, vxw312, hf) new_ltEs24(vxw30, vxw31, ty_Float) -> new_ltEs13(vxw30, vxw31) new_esEs28(vxw79, vxw81, ty_Int) -> new_esEs21(vxw79, vxw81) new_esEs37(vxw53, vxw56, ty_Integer) -> new_esEs16(vxw53, vxw56) new_compare4(vxw30, vxw400, ty_Double) -> new_compare28(vxw30, vxw400) new_ltEs19(vxw80, vxw82, ty_Double) -> new_ltEs17(vxw80, vxw82) new_ltEs16(Left(vxw300), Right(vxw310), bed, bdc) -> True new_esEs12(LT, LT) -> True new_esEs4(vxw300, vxw4000, app(ty_[], faa)) -> new_esEs24(vxw300, vxw4000, faa) new_esEs27(vxw300, vxw310, ty_Bool) -> new_esEs19(vxw300, vxw310) new_ltEs21(vxw301, vxw311, app(ty_Maybe, fa)) -> new_ltEs9(vxw301, vxw311, fa) new_ltEs19(vxw80, vxw82, ty_Char) -> new_ltEs6(vxw80, vxw82) new_primCompAux00(vxw23, vxw24, EQ, app(app(ty_Either, bh), ca)) -> new_compare27(vxw23, vxw24, bh, ca) new_esEs39(vxw3000, vxw40000, ty_Float) -> new_esEs14(vxw3000, vxw40000) new_ltEs5(vxw302, vxw312, ty_Bool) -> new_ltEs18(vxw302, vxw312) new_esEs7(vxw302, vxw4002, app(app(app(ty_@3, dhh), eaa), eab)) -> new_esEs20(vxw302, vxw4002, dhh, eaa, eab) new_lt4(vxw79, vxw81) -> new_esEs12(new_compare5(vxw79, vxw81), LT) new_ltEs19(vxw80, vxw82, ty_Float) -> new_ltEs13(vxw80, vxw82) new_ltEs24(vxw30, vxw31, ty_Bool) -> new_ltEs18(vxw30, vxw31) new_esEs27(vxw300, vxw310, ty_Ordering) -> new_esEs12(vxw300, vxw310) new_compare15([], [], cb) -> EQ new_esEs29(vxw3001, vxw40001, app(app(ty_Either, ddb), ddc)) -> new_esEs25(vxw3001, vxw40001, ddb, ddc) new_primCompAux00(vxw23, vxw24, EQ, ty_Int) -> new_compare5(vxw23, vxw24) new_ltEs11(GT, LT) -> False new_compare110(vxw109, vxw110, True, dfa, dfb) -> LT new_esEs38(vxw52, vxw55, ty_Int) -> new_esEs21(vxw52, vxw55) new_compare29(vxw52, vxw53, vxw54, vxw55, vxw56, vxw57, True, cab, cac, cbf) -> EQ new_esEs39(vxw3000, vxw40000, ty_Bool) -> new_esEs19(vxw3000, vxw40000) new_compare17(EQ, LT) -> GT new_esEs27(vxw300, vxw310, app(app(ty_@2, bcc), bcd)) -> new_esEs15(vxw300, vxw310, bcc, bcd) new_esEs25(Left(vxw3000), Left(vxw40000), app(app(app(ty_@3, efc), efd), efe), eeg) -> new_esEs20(vxw3000, vxw40000, efc, efd, efe) new_esEs39(vxw3000, vxw40000, ty_@0) -> new_esEs22(vxw3000, vxw40000) new_esEs9(vxw300, vxw4000, app(ty_[], dae)) -> new_esEs24(vxw300, vxw4000, dae) new_esEs34(vxw3002, vxw40002, ty_Bool) -> new_esEs19(vxw3002, vxw40002) new_lt8(vxw300, vxw310, ty_Int) -> new_lt4(vxw300, vxw310) new_esEs9(vxw300, vxw4000, ty_Ordering) -> new_esEs12(vxw300, vxw4000) new_lt8(vxw300, vxw310, app(app(ty_Either, bch), bda)) -> new_lt17(vxw300, vxw310, bch, bda) new_ltEs11(LT, LT) -> True new_lt20(vxw79, vxw81, app(app(app(ty_@3, bgc), bgd), bge)) -> new_lt14(vxw79, vxw81, bgc, bgd, bge) new_ltEs21(vxw301, vxw311, ty_Int) -> new_ltEs12(vxw301, vxw311) new_compare8(:%(vxw300, vxw301), :%(vxw4000, vxw4001), ty_Integer) -> new_compare14(new_sr0(vxw300, vxw4001), new_sr0(vxw4000, vxw301)) new_ltEs23(vxw54, vxw57, app(app(app(ty_@3, cah), cba), cbb)) -> new_ltEs4(vxw54, vxw57, cah, cba, cbb) new_esEs9(vxw300, vxw4000, app(app(ty_@2, chg), chh)) -> new_esEs15(vxw300, vxw4000, chg, chh) new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_esEs11(vxw300, vxw4000, ty_@0) -> new_esEs22(vxw300, vxw4000) new_esEs10(vxw300, vxw4000, ty_Int) -> new_esEs21(vxw300, vxw4000) new_esEs4(vxw300, vxw4000, app(app(ty_@2, dbh), dca)) -> new_esEs15(vxw300, vxw4000, dbh, dca) new_esEs32(vxw3001, vxw40001, ty_Integer) -> new_esEs16(vxw3001, vxw40001) new_primCmpNat0(Succ(vxw3000), Zero) -> GT new_esEs5(vxw301, vxw4001, app(ty_Maybe, fha)) -> new_esEs13(vxw301, vxw4001, fha) new_ltEs22(vxw63, vxw64, ty_Bool) -> new_ltEs18(vxw63, vxw64) new_ltEs22(vxw63, vxw64, app(app(ty_Either, ceh), cfa)) -> new_ltEs16(vxw63, vxw64, ceh, cfa) new_compare16(Just(vxw300), Nothing, cd) -> GT new_pePe(False, vxw158) -> vxw158 new_esEs10(vxw300, vxw4000, ty_Double) -> new_esEs23(vxw300, vxw4000) new_compare25(vxw79, vxw80, vxw81, vxw82, True, bgh, bgb) -> EQ new_esEs11(vxw300, vxw4000, ty_Float) -> new_esEs14(vxw300, vxw4000) new_esEs8(vxw301, vxw4001, ty_Char) -> new_esEs18(vxw301, vxw4001) new_esEs10(vxw300, vxw4000, app(ty_[], eec)) -> new_esEs24(vxw300, vxw4000, eec) new_lt22(vxw53, vxw56, app(ty_[], cbe)) -> new_lt11(vxw53, vxw56, cbe) new_compare6(@2(vxw300, vxw301), @2(vxw4000, vxw4001), ce, cf) -> new_compare25(vxw300, vxw301, vxw4000, vxw4001, new_asAs(new_esEs6(vxw300, vxw4000, ce), new_esEs5(vxw301, vxw4001, cf)), ce, cf) new_esEs6(vxw300, vxw4000, ty_Double) -> new_esEs23(vxw300, vxw4000) new_ltEs21(vxw301, vxw311, ty_Double) -> new_ltEs17(vxw301, vxw311) new_esEs34(vxw3002, vxw40002, ty_Float) -> new_esEs14(vxw3002, vxw40002) new_esEs30(vxw3000, vxw40000, app(app(app(ty_@3, ddg), ddh), dea)) -> new_esEs20(vxw3000, vxw40000, ddg, ddh, dea) new_esEs5(vxw301, vxw4001, ty_@0) -> new_esEs22(vxw301, vxw4001) new_esEs6(vxw300, vxw4000, ty_Char) -> new_esEs18(vxw300, vxw4000) new_lt22(vxw53, vxw56, ty_Integer) -> new_lt10(vxw53, vxw56) new_compare16(Nothing, Nothing, cd) -> EQ new_compare11(vxw119, vxw120, False, fea, feb) -> GT new_primEqInt(Pos(Zero), Neg(Succ(vxw400000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(vxw400000))) -> False new_lt6(vxw79, vxw81) -> new_esEs12(new_compare7(vxw79, vxw81), LT) new_compare9(True, False) -> GT new_lt8(vxw300, vxw310, app(ty_Maybe, bcb)) -> new_lt12(vxw300, vxw310, bcb) new_esEs9(vxw300, vxw4000, app(ty_Ratio, daa)) -> new_esEs17(vxw300, vxw4000, daa) new_esEs25(Right(vxw3000), Right(vxw40000), egb, ty_Int) -> new_esEs21(vxw3000, vxw40000) new_ltEs20(vxw70, vxw71, app(app(ty_Either, cgb), cgc)) -> new_ltEs16(vxw70, vxw71, cgb, cgc) new_compare17(LT, LT) -> EQ new_lt20(vxw79, vxw81, ty_Float) -> new_lt6(vxw79, vxw81) new_esEs39(vxw3000, vxw40000, ty_Integer) -> new_esEs16(vxw3000, vxw40000) new_esEs29(vxw3001, vxw40001, ty_Char) -> new_esEs18(vxw3001, vxw40001) new_ltEs21(vxw301, vxw311, ty_Float) -> new_ltEs13(vxw301, vxw311) new_esEs34(vxw3002, vxw40002, ty_Ordering) -> new_esEs12(vxw3002, vxw40002) new_esEs31(vxw300, vxw310, app(app(ty_Either, hb), hc)) -> new_esEs25(vxw300, vxw310, hb, hc) new_compare27(Left(vxw300), Left(vxw4000), dc, dd) -> new_compare210(vxw300, vxw4000, new_esEs10(vxw300, vxw4000, dc), dc, dd) new_esEs28(vxw79, vxw81, app(ty_Maybe, bfg)) -> new_esEs13(vxw79, vxw81, bfg) new_compare7(Float(vxw300, Neg(vxw3010)), Float(vxw4000, Neg(vxw40010))) -> new_compare5(new_sr(vxw300, Neg(vxw40010)), new_sr(Neg(vxw3010), vxw4000)) new_compare5(vxw30, vxw400) -> new_primCmpInt(vxw30, vxw400) new_ltEs16(Right(vxw300), Right(vxw310), bed, ty_Char) -> new_ltEs6(vxw300, vxw310) new_ltEs16(Left(vxw300), Left(vxw310), ty_Int, bdc) -> new_ltEs12(vxw300, vxw310) new_esEs24(:(vxw3000, vxw3001), [], faa) -> False new_esEs24([], :(vxw40000, vxw40001), faa) -> False new_primPlusNat0(Zero, vxw30100) -> Succ(vxw30100) new_esEs11(vxw300, vxw4000, app(app(ty_Either, edc), edd)) -> new_esEs25(vxw300, vxw4000, edc, edd) new_esEs5(vxw301, vxw4001, app(app(app(ty_@3, fge), fgf), fgg)) -> new_esEs20(vxw301, vxw4001, fge, fgf, fgg) new_esEs8(vxw301, vxw4001, ty_Bool) -> new_esEs19(vxw301, vxw4001) new_esEs29(vxw3001, vxw40001, ty_Bool) -> new_esEs19(vxw3001, vxw40001) new_esEs25(Left(vxw3000), Left(vxw40000), app(ty_Ratio, efb), eeg) -> new_esEs17(vxw3000, vxw40000, efb) new_ltEs5(vxw302, vxw312, ty_Integer) -> new_ltEs7(vxw302, vxw312) new_ltEs16(Left(vxw300), Left(vxw310), ty_Bool, bdc) -> new_ltEs18(vxw300, vxw310) new_esEs26(vxw301, vxw311, app(app(app(ty_@3, bbd), bbe), bbf)) -> new_esEs20(vxw301, vxw311, bbd, bbe, bbf) new_esEs34(vxw3002, vxw40002, app(app(ty_Either, fbc), fbd)) -> new_esEs25(vxw3002, vxw40002, fbc, fbd) new_ltEs22(vxw63, vxw64, ty_@0) -> new_ltEs15(vxw63, vxw64) new_lt7(vxw301, vxw311, app(app(app(ty_@3, bbd), bbe), bbf)) -> new_lt14(vxw301, vxw311, bbd, bbe, bbf) new_esEs30(vxw3000, vxw40000, app(ty_[], deb)) -> new_esEs24(vxw3000, vxw40000, deb) new_compare8(:%(vxw300, vxw301), :%(vxw4000, vxw4001), ty_Int) -> new_compare5(new_sr(vxw300, vxw4001), new_sr(vxw4000, vxw301)) new_compare15([], :(vxw4000, vxw4001), cb) -> LT new_ltEs23(vxw54, vxw57, app(ty_Ratio, fee)) -> new_ltEs14(vxw54, vxw57, fee) new_lt13(vxw79, vxw81) -> new_esEs12(new_compare17(vxw79, vxw81), LT) new_esEs13(Just(vxw3000), Just(vxw40000), ty_Integer) -> new_esEs16(vxw3000, vxw40000) new_esEs31(vxw300, vxw310, ty_Float) -> new_esEs14(vxw300, vxw310) new_lt21(vxw300, vxw310, ty_Int) -> new_lt4(vxw300, vxw310) new_esEs28(vxw79, vxw81, app(app(app(ty_@3, bgc), bgd), bge)) -> new_esEs20(vxw79, vxw81, bgc, bgd, bge) new_esEs35(vxw3001, vxw40001, ty_Int) -> new_esEs21(vxw3001, vxw40001) new_esEs6(vxw300, vxw4000, ty_Bool) -> new_esEs19(vxw300, vxw4000) new_esEs31(vxw300, vxw310, ty_Bool) -> new_esEs19(vxw300, vxw310) new_esEs6(vxw300, vxw4000, app(app(ty_@2, eba), ebb)) -> new_esEs15(vxw300, vxw4000, eba, ebb) new_compare111(vxw144, vxw145, vxw146, vxw147, vxw148, vxw149, True, dgh, dha, dhb) -> LT new_esEs31(vxw300, vxw310, ty_@0) -> new_esEs22(vxw300, vxw310) new_primMulInt(Neg(vxw40000), Neg(vxw3010)) -> Pos(new_primMulNat0(vxw40000, vxw3010)) new_primCmpInt(Pos(Zero), Pos(Succ(vxw40000))) -> new_primCmpNat0(Zero, Succ(vxw40000)) new_compare28(Double(vxw300, Pos(vxw3010)), Double(vxw4000, Pos(vxw40010))) -> new_compare5(new_sr(vxw300, Pos(vxw40010)), new_sr(Pos(vxw3010), vxw4000)) new_esEs35(vxw3001, vxw40001, app(ty_Ratio, fbg)) -> new_esEs17(vxw3001, vxw40001, fbg) new_esEs8(vxw301, vxw4001, app(app(ty_Either, dgf), dgg)) -> new_esEs25(vxw301, vxw4001, dgf, dgg) new_esEs38(vxw52, vxw55, app(ty_Maybe, cch)) -> new_esEs13(vxw52, vxw55, cch) new_esEs25(Left(vxw3000), Right(vxw40000), egb, eeg) -> False new_esEs25(Right(vxw3000), Left(vxw40000), egb, eeg) -> False new_esEs4(vxw300, vxw4000, app(app(app(ty_@3, ehf), ehg), ehh)) -> new_esEs20(vxw300, vxw4000, ehf, ehg, ehh) new_compare4(vxw30, vxw400, ty_@0) -> new_compare19(vxw30, vxw400) new_lt21(vxw300, vxw310, app(ty_Maybe, gd)) -> new_lt12(vxw300, vxw310, gd) new_ltEs24(vxw30, vxw31, ty_Int) -> new_ltEs12(vxw30, vxw31) new_esEs26(vxw301, vxw311, app(ty_Maybe, bba)) -> new_esEs13(vxw301, vxw311, bba) new_esEs31(vxw300, vxw310, ty_Char) -> new_esEs18(vxw300, vxw310) new_lt23(vxw52, vxw55, app(app(app(ty_@3, cdc), cdd), cde)) -> new_lt14(vxw52, vxw55, cdc, cdd, cde) new_esEs29(vxw3001, vxw40001, ty_Integer) -> new_esEs16(vxw3001, vxw40001) new_esEs6(vxw300, vxw4000, app(ty_[], ebg)) -> new_esEs24(vxw300, vxw4000, ebg) new_ltEs16(Left(vxw300), Left(vxw310), ty_Double, bdc) -> new_ltEs17(vxw300, vxw310) new_ltEs24(vxw30, vxw31, ty_Integer) -> new_ltEs7(vxw30, vxw31) new_esEs25(Right(vxw3000), Right(vxw40000), egb, ty_Integer) -> new_esEs16(vxw3000, vxw40000) new_ltEs5(vxw302, vxw312, app(ty_Maybe, hg)) -> new_ltEs9(vxw302, vxw312, hg) new_esEs15(@2(vxw3000, vxw3001), @2(vxw40000, vxw40001), dbh, dca) -> new_asAs(new_esEs30(vxw3000, vxw40000, dbh), new_esEs29(vxw3001, vxw40001, dca)) new_primMulInt(Pos(vxw40000), Neg(vxw3010)) -> Neg(new_primMulNat0(vxw40000, vxw3010)) new_primMulInt(Neg(vxw40000), Pos(vxw3010)) -> Neg(new_primMulNat0(vxw40000, vxw3010)) new_esEs34(vxw3002, vxw40002, app(ty_[], fba)) -> new_esEs24(vxw3002, vxw40002, fba) new_lt8(vxw300, vxw310, app(ty_Ratio, dbc)) -> new_lt15(vxw300, vxw310, dbc) new_compare15(:(vxw300, vxw301), [], cb) -> GT new_esEs6(vxw300, vxw4000, app(ty_Ratio, ebc)) -> new_esEs17(vxw300, vxw4000, ebc) new_ltEs9(Just(vxw300), Just(vxw310), ty_Double) -> new_ltEs17(vxw300, vxw310) new_esEs27(vxw300, vxw310, ty_@0) -> new_esEs22(vxw300, vxw310) new_sr0(Integer(vxw40000), Integer(vxw3010)) -> Integer(new_primMulInt(vxw40000, vxw3010)) new_esEs34(vxw3002, vxw40002, ty_Double) -> new_esEs23(vxw3002, vxw40002) new_ltEs16(Right(vxw300), Right(vxw310), bed, ty_Double) -> new_ltEs17(vxw300, vxw310) new_ltEs23(vxw54, vxw57, app(app(ty_Either, cbc), cbd)) -> new_ltEs16(vxw54, vxw57, cbc, cbd) new_lt8(vxw300, vxw310, ty_Integer) -> new_lt10(vxw300, vxw310) new_esEs5(vxw301, vxw4001, ty_Int) -> new_esEs21(vxw301, vxw4001) new_esEs7(vxw302, vxw4002, ty_Double) -> new_esEs23(vxw302, vxw4002) new_ltEs20(vxw70, vxw71, ty_Ordering) -> new_ltEs11(vxw70, vxw71) new_esEs8(vxw301, vxw4001, ty_Ordering) -> new_esEs12(vxw301, vxw4001) new_ltEs23(vxw54, vxw57, ty_Int) -> new_ltEs12(vxw54, vxw57) new_ltEs22(vxw63, vxw64, ty_Double) -> new_ltEs17(vxw63, vxw64) new_lt21(vxw300, vxw310, ty_Integer) -> new_lt10(vxw300, vxw310) new_ltEs16(Left(vxw300), Left(vxw310), app(ty_Maybe, bdd), bdc) -> new_ltEs9(vxw300, vxw310, bdd) new_ltEs5(vxw302, vxw312, ty_Int) -> new_ltEs12(vxw302, vxw312) new_ltEs9(Nothing, Just(vxw310), fhd) -> True new_lt7(vxw301, vxw311, ty_Ordering) -> new_lt13(vxw301, vxw311) new_asAs(True, vxw97) -> vxw97 new_esEs22(@0, @0) -> True new_lt7(vxw301, vxw311, app(ty_Maybe, bba)) -> new_lt12(vxw301, vxw311, bba) new_esEs39(vxw3000, vxw40000, ty_Double) -> new_esEs23(vxw3000, vxw40000) new_esEs4(vxw300, vxw4000, app(ty_Maybe, cgd)) -> new_esEs13(vxw300, vxw4000, cgd) new_ltEs23(vxw54, vxw57, ty_Char) -> new_ltEs6(vxw54, vxw57) new_esEs26(vxw301, vxw311, ty_Char) -> new_esEs18(vxw301, vxw311) new_esEs27(vxw300, vxw310, ty_Float) -> new_esEs14(vxw300, vxw310) new_esEs37(vxw53, vxw56, app(ty_Ratio, fef)) -> new_esEs17(vxw53, vxw56, fef) new_ltEs9(Just(vxw300), Just(vxw310), app(app(ty_@2, dh), ea)) -> new_ltEs10(vxw300, vxw310, dh, ea) new_esEs25(Right(vxw3000), Right(vxw40000), egb, ty_Bool) -> new_esEs19(vxw3000, vxw40000) new_compare18(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), cg, da, db) -> new_compare29(vxw300, vxw301, vxw302, vxw4000, vxw4001, vxw4002, new_asAs(new_esEs9(vxw300, vxw4000, cg), new_asAs(new_esEs8(vxw301, vxw4001, da), new_esEs7(vxw302, vxw4002, db))), cg, da, db) new_compare12(vxw129, vxw130, vxw131, vxw132, False, def, deg) -> GT new_esEs37(vxw53, vxw56, ty_Int) -> new_esEs21(vxw53, vxw56) new_lt21(vxw300, vxw310, ty_Double) -> new_lt18(vxw300, vxw310) new_ltEs23(vxw54, vxw57, app(ty_Maybe, cae)) -> new_ltEs9(vxw54, vxw57, cae) new_sr(vxw4000, vxw301) -> new_primMulInt(vxw4000, vxw301) new_esEs39(vxw3000, vxw40000, app(ty_[], fff)) -> new_esEs24(vxw3000, vxw40000, fff) new_esEs38(vxw52, vxw55, app(ty_Ratio, feg)) -> new_esEs17(vxw52, vxw55, feg) new_esEs9(vxw300, vxw4000, ty_Int) -> new_esEs21(vxw300, vxw4000) new_ltEs9(Just(vxw300), Just(vxw310), app(app(app(ty_@3, eb), ec), ed)) -> new_ltEs4(vxw300, vxw310, eb, ec, ed) new_primMulNat0(Zero, Zero) -> Zero new_compare27(Right(vxw300), Right(vxw4000), dc, dd) -> new_compare26(vxw300, vxw4000, new_esEs11(vxw300, vxw4000, dd), dc, dd) new_ltEs5(vxw302, vxw312, ty_Double) -> new_ltEs17(vxw302, vxw312) new_ltEs22(vxw63, vxw64, app(app(app(ty_@3, cee), cef), ceg)) -> new_ltEs4(vxw63, vxw64, cee, cef, ceg) new_ltEs20(vxw70, vxw71, ty_Integer) -> new_ltEs7(vxw70, vxw71) new_esEs20(@3(vxw3000, vxw3001, vxw3002), @3(vxw40000, vxw40001, vxw40002), ehf, ehg, ehh) -> new_asAs(new_esEs36(vxw3000, vxw40000, ehf), new_asAs(new_esEs35(vxw3001, vxw40001, ehg), new_esEs34(vxw3002, vxw40002, ehh))) new_lt23(vxw52, vxw55, app(ty_Maybe, cch)) -> new_lt12(vxw52, vxw55, cch) new_ltEs22(vxw63, vxw64, app(ty_Maybe, ceb)) -> new_ltEs9(vxw63, vxw64, ceb) new_ltEs24(vxw30, vxw31, ty_Ordering) -> new_ltEs11(vxw30, vxw31) new_esEs9(vxw300, vxw4000, ty_Integer) -> new_esEs16(vxw300, vxw4000) new_esEs38(vxw52, vxw55, app(ty_[], ccg)) -> new_esEs24(vxw52, vxw55, ccg) new_esEs4(vxw300, vxw4000, ty_Ordering) -> new_esEs12(vxw300, vxw4000) new_ltEs9(Just(vxw300), Just(vxw310), app(ty_Ratio, fhe)) -> new_ltEs14(vxw300, vxw310, fhe) new_lt20(vxw79, vxw81, app(ty_Ratio, dbd)) -> new_lt15(vxw79, vxw81, dbd) new_lt8(vxw300, vxw310, ty_Ordering) -> new_lt13(vxw300, vxw310) new_esEs13(Just(vxw3000), Just(vxw40000), ty_@0) -> new_esEs22(vxw3000, vxw40000) new_ltEs22(vxw63, vxw64, app(ty_Ratio, eah)) -> new_ltEs14(vxw63, vxw64, eah) new_ltEs9(Just(vxw300), Just(vxw310), ty_Int) -> new_ltEs12(vxw300, vxw310) new_esEs34(vxw3002, vxw40002, app(app(ty_@2, fac), fad)) -> new_esEs15(vxw3002, vxw40002, fac, fad) new_compare111(vxw144, vxw145, vxw146, vxw147, vxw148, vxw149, False, dgh, dha, dhb) -> GT new_esEs39(vxw3000, vxw40000, ty_Ordering) -> new_esEs12(vxw3000, vxw40000) new_esEs8(vxw301, vxw4001, ty_Integer) -> new_esEs16(vxw301, vxw4001) new_esEs28(vxw79, vxw81, ty_@0) -> new_esEs22(vxw79, vxw81) new_esEs35(vxw3001, vxw40001, ty_Double) -> new_esEs23(vxw3001, vxw40001) new_primEqInt(Neg(Succ(vxw30000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(vxw400000))) -> False new_esEs10(vxw300, vxw4000, app(app(ty_@2, ede), edf)) -> new_esEs15(vxw300, vxw4000, ede, edf) new_esEs9(vxw300, vxw4000, ty_Bool) -> new_esEs19(vxw300, vxw4000) new_primEqInt(Pos(Succ(vxw30000)), Pos(Succ(vxw400000))) -> new_primEqNat0(vxw30000, vxw400000) new_ltEs24(vxw30, vxw31, ty_Char) -> new_ltEs6(vxw30, vxw31) new_ltEs16(Right(vxw300), Right(vxw310), bed, app(ty_Maybe, bef)) -> new_ltEs9(vxw300, vxw310, bef) new_ltEs17(vxw30, vxw31) -> new_fsEs(new_compare28(vxw30, vxw31)) new_ltEs24(vxw30, vxw31, ty_@0) -> new_ltEs15(vxw30, vxw31) new_esEs39(vxw3000, vxw40000, app(app(ty_@2, feh), ffa)) -> new_esEs15(vxw3000, vxw40000, feh, ffa) new_lt18(vxw79, vxw81) -> new_esEs12(new_compare28(vxw79, vxw81), LT) new_lt23(vxw52, vxw55, ty_Int) -> new_lt4(vxw52, vxw55) new_ltEs21(vxw301, vxw311, app(ty_Ratio, dhc)) -> new_ltEs14(vxw301, vxw311, dhc) new_primEqInt(Pos(Succ(vxw30000)), Neg(vxw40000)) -> False new_primEqInt(Neg(Succ(vxw30000)), Pos(vxw40000)) -> False new_lt21(vxw300, vxw310, app(ty_Ratio, dhd)) -> new_lt15(vxw300, vxw310, dhd) new_esEs9(vxw300, vxw4000, ty_Char) -> new_esEs18(vxw300, vxw4000) new_ltEs5(vxw302, vxw312, ty_Char) -> new_ltEs6(vxw302, vxw312) new_primCmpInt(Neg(Zero), Neg(Succ(vxw40000))) -> new_primCmpNat0(Succ(vxw40000), Zero) new_esEs13(Just(vxw3000), Just(vxw40000), ty_Float) -> new_esEs14(vxw3000, vxw40000) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_ltEs5(vxw302, vxw312, app(ty_Ratio, dba)) -> new_ltEs14(vxw302, vxw312, dba) new_esEs28(vxw79, vxw81, ty_Float) -> new_esEs14(vxw79, vxw81) new_esEs4(vxw300, vxw4000, ty_Int) -> new_esEs21(vxw300, vxw4000) new_esEs27(vxw300, vxw310, ty_Char) -> new_esEs18(vxw300, vxw310) new_ltEs19(vxw80, vxw82, app(app(app(ty_@3, bhe), bhf), bhg)) -> new_ltEs4(vxw80, vxw82, bhe, bhf, bhg) new_ltEs22(vxw63, vxw64, ty_Char) -> new_ltEs6(vxw63, vxw64) new_lt7(vxw301, vxw311, app(ty_Ratio, dbb)) -> new_lt15(vxw301, vxw311, dbb) new_primCompAux00(vxw23, vxw24, LT, dfc) -> LT new_esEs26(vxw301, vxw311, ty_@0) -> new_esEs22(vxw301, vxw311) new_lt9(vxw79, vxw81) -> new_esEs12(new_compare13(vxw79, vxw81), LT) new_ltEs21(vxw301, vxw311, ty_Ordering) -> new_ltEs11(vxw301, vxw311) new_compare27(Right(vxw300), Left(vxw4000), dc, dd) -> GT new_compare4(vxw30, vxw400, app(ty_[], cb)) -> new_compare15(vxw30, vxw400, cb) new_lt20(vxw79, vxw81, ty_Double) -> new_lt18(vxw79, vxw81) new_esEs26(vxw301, vxw311, ty_Integer) -> new_esEs16(vxw301, vxw311) new_not(False) -> True new_esEs35(vxw3001, vxw40001, app(ty_[], fcc)) -> new_esEs24(vxw3001, vxw40001, fcc) new_ltEs24(vxw30, vxw31, app(app(ty_Either, bed), bdc)) -> new_ltEs16(vxw30, vxw31, bed, bdc) new_esEs5(vxw301, vxw4001, app(ty_Ratio, fgd)) -> new_esEs17(vxw301, vxw4001, fgd) new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_lt20(vxw79, vxw81, app(app(ty_@2, bfh), bga)) -> new_lt5(vxw79, vxw81, bfh, bga) new_esEs38(vxw52, vxw55, app(app(ty_@2, cda), cdb)) -> new_esEs15(vxw52, vxw55, cda, cdb) new_esEs4(vxw300, vxw4000, ty_Double) -> new_esEs23(vxw300, vxw4000) new_esEs28(vxw79, vxw81, app(app(ty_Either, bgf), bgg)) -> new_esEs25(vxw79, vxw81, bgf, bgg) new_compare112(vxw144, vxw145, vxw146, vxw147, vxw148, vxw149, False, vxw151, dgh, dha, dhb) -> new_compare111(vxw144, vxw145, vxw146, vxw147, vxw148, vxw149, vxw151, dgh, dha, dhb) new_esEs25(Right(vxw3000), Right(vxw40000), egb, ty_Char) -> new_esEs18(vxw3000, vxw40000) new_ltEs20(vxw70, vxw71, app(ty_Ratio, dbg)) -> new_ltEs14(vxw70, vxw71, dbg) new_esEs37(vxw53, vxw56, app(ty_[], cbe)) -> new_esEs24(vxw53, vxw56, cbe) new_lt22(vxw53, vxw56, app(ty_Ratio, fef)) -> new_lt15(vxw53, vxw56, fef) new_compare10(vxw129, vxw130, vxw131, vxw132, False, vxw134, def, deg) -> new_compare12(vxw129, vxw130, vxw131, vxw132, vxw134, def, deg) new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_esEs7(vxw302, vxw4002, app(ty_Maybe, ead)) -> new_esEs13(vxw302, vxw4002, ead) new_esEs7(vxw302, vxw4002, ty_Ordering) -> new_esEs12(vxw302, vxw4002) new_esEs13(Just(vxw3000), Just(vxw40000), app(app(ty_Either, che), chf)) -> new_esEs25(vxw3000, vxw40000, che, chf) new_ltEs20(vxw70, vxw71, ty_Char) -> new_ltEs6(vxw70, vxw71) new_ltEs11(LT, EQ) -> True new_ltEs5(vxw302, vxw312, app(app(app(ty_@3, bab), bac), bad)) -> new_ltEs4(vxw302, vxw312, bab, bac, bad) new_esEs8(vxw301, vxw4001, app(app(app(ty_@3, dga), dgb), dgc)) -> new_esEs20(vxw301, vxw4001, dga, dgb, dgc) new_ltEs19(vxw80, vxw82, app(ty_Ratio, dbe)) -> new_ltEs14(vxw80, vxw82, dbe) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs25(Left(vxw3000), Left(vxw40000), ty_Ordering, eeg) -> new_esEs12(vxw3000, vxw40000) new_lt8(vxw300, vxw310, app(app(ty_@2, bcc), bcd)) -> new_lt5(vxw300, vxw310, bcc, bcd) new_esEs25(Left(vxw3000), Left(vxw40000), ty_Int, eeg) -> new_esEs21(vxw3000, vxw40000) new_lt5(vxw79, vxw81, bfh, bga) -> new_esEs12(new_compare6(vxw79, vxw81, bfh, bga), LT) new_esEs7(vxw302, vxw4002, app(ty_Ratio, dhg)) -> new_esEs17(vxw302, vxw4002, dhg) new_esEs26(vxw301, vxw311, ty_Bool) -> new_esEs19(vxw301, vxw311) new_esEs5(vxw301, vxw4001, ty_Ordering) -> new_esEs12(vxw301, vxw4001) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs38(vxw52, vxw55, ty_Double) -> new_esEs23(vxw52, vxw55) new_ltEs21(vxw301, vxw311, app(app(app(ty_@3, fd), ff), fg)) -> new_ltEs4(vxw301, vxw311, fd, ff, fg) new_lt7(vxw301, vxw311, app(app(ty_@2, bbb), bbc)) -> new_lt5(vxw301, vxw311, bbb, bbc) new_primMulNat0(Succ(vxw400000), Succ(vxw30100)) -> new_primPlusNat0(new_primMulNat0(vxw400000, Succ(vxw30100)), vxw30100) new_compare112(vxw144, vxw145, vxw146, vxw147, vxw148, vxw149, True, vxw151, dgh, dha, dhb) -> new_compare111(vxw144, vxw145, vxw146, vxw147, vxw148, vxw149, True, dgh, dha, dhb) new_ltEs19(vxw80, vxw82, ty_Ordering) -> new_ltEs11(vxw80, vxw82) new_esEs9(vxw300, vxw4000, app(ty_Maybe, daf)) -> new_esEs13(vxw300, vxw4000, daf) new_lt23(vxw52, vxw55, app(app(ty_@2, cda), cdb)) -> new_lt5(vxw52, vxw55, cda, cdb) new_esEs35(vxw3001, vxw40001, app(app(ty_@2, fbe), fbf)) -> new_esEs15(vxw3001, vxw40001, fbe, fbf) new_lt8(vxw300, vxw310, ty_Double) -> new_lt18(vxw300, vxw310) new_ltEs11(LT, GT) -> True new_esEs27(vxw300, vxw310, app(app(ty_Either, bch), bda)) -> new_esEs25(vxw300, vxw310, bch, bda) new_esEs37(vxw53, vxw56, ty_Double) -> new_esEs23(vxw53, vxw56) new_esEs25(Right(vxw3000), Right(vxw40000), egb, ty_Float) -> new_esEs14(vxw3000, vxw40000) new_ltEs16(Right(vxw300), Right(vxw310), bed, app(app(app(ty_@3, bfa), bfb), bfc)) -> new_ltEs4(vxw300, vxw310, bfa, bfb, bfc) new_esEs26(vxw301, vxw311, app(app(ty_Either, bbg), bbh)) -> new_esEs25(vxw301, vxw311, bbg, bbh) new_esEs24(:(vxw3000, vxw3001), :(vxw40000, vxw40001), faa) -> new_asAs(new_esEs39(vxw3000, vxw40000, faa), new_esEs24(vxw3001, vxw40001, faa)) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_primCompAux00(vxw23, vxw24, EQ, app(ty_[], ba)) -> new_compare15(vxw23, vxw24, ba) new_lt23(vxw52, vxw55, ty_Double) -> new_lt18(vxw52, vxw55) new_compare28(Double(vxw300, Pos(vxw3010)), Double(vxw4000, Neg(vxw40010))) -> new_compare5(new_sr(vxw300, Pos(vxw40010)), new_sr(Neg(vxw3010), vxw4000)) new_compare28(Double(vxw300, Neg(vxw3010)), Double(vxw4000, Pos(vxw40010))) -> new_compare5(new_sr(vxw300, Neg(vxw40010)), new_sr(Pos(vxw3010), vxw4000)) new_compare110(vxw109, vxw110, False, dfa, dfb) -> GT new_esEs9(vxw300, vxw4000, app(app(app(ty_@3, dab), dac), dad)) -> new_esEs20(vxw300, vxw4000, dab, dac, dad) new_primEqNat0(Zero, Zero) -> True new_ltEs9(Just(vxw300), Nothing, fhd) -> False new_ltEs9(Nothing, Nothing, fhd) -> True new_ltEs16(Right(vxw300), Right(vxw310), bed, ty_Int) -> new_ltEs12(vxw300, vxw310) new_esEs6(vxw300, vxw4000, ty_Int) -> new_esEs21(vxw300, vxw4000) new_compare16(Nothing, Just(vxw4000), cd) -> LT new_esEs26(vxw301, vxw311, ty_Float) -> new_esEs14(vxw301, vxw311) new_lt22(vxw53, vxw56, ty_Double) -> new_lt18(vxw53, vxw56) new_asAs(False, vxw97) -> False new_lt22(vxw53, vxw56, app(app(ty_@2, cbh), cca)) -> new_lt5(vxw53, vxw56, cbh, cca) new_ltEs24(vxw30, vxw31, app(ty_Maybe, fhd)) -> new_ltEs9(vxw30, vxw31, fhd) new_ltEs23(vxw54, vxw57, ty_Integer) -> new_ltEs7(vxw54, vxw57) new_esEs6(vxw300, vxw4000, ty_Ordering) -> new_esEs12(vxw300, vxw4000) new_esEs36(vxw3000, vxw40000, app(ty_[], fde)) -> new_esEs24(vxw3000, vxw40000, fde) new_ltEs20(vxw70, vxw71, app(app(app(ty_@3, cfg), cfh), cga)) -> new_ltEs4(vxw70, vxw71, cfg, cfh, cga) new_esEs36(vxw3000, vxw40000, app(app(ty_@2, fcg), fch)) -> new_esEs15(vxw3000, vxw40000, fcg, fch) new_esEs8(vxw301, vxw4001, app(ty_Maybe, dge)) -> new_esEs13(vxw301, vxw4001, dge) new_ltEs8(vxw30, vxw31, de) -> new_fsEs(new_compare15(vxw30, vxw31, de)) new_lt7(vxw301, vxw311, ty_Double) -> new_lt18(vxw301, vxw311) new_ltEs11(EQ, LT) -> False The set Q consists of the following terms: new_ltEs24(x0, x1, ty_Bool) new_ltEs23(x0, x1, ty_Ordering) new_ltEs9(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, ty_Char) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_esEs27(x0, x1, ty_Int) new_esEs36(x0, x1, ty_Integer) new_ltEs9(Just(x0), Just(x1), ty_Integer) new_esEs37(x0, x1, ty_Ordering) new_ltEs21(x0, x1, ty_@0) new_esEs37(x0, x1, ty_Double) new_ltEs23(x0, x1, ty_Double) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(x0, x1, ty_Float) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat1(Zero, Zero) new_esEs31(x0, x1, ty_@0) new_lt7(x0, x1, app(ty_[], x2)) new_compare4(x0, x1, app(ty_[], x2)) new_compare7(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare7(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs34(x0, x1, ty_Float) new_esEs25(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_compare10(x0, x1, x2, x3, False, x4, x5, x6) new_esEs14(Float(x0, x1), Float(x2, x3)) new_esEs28(x0, x1, ty_Int) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, ty_Ordering) new_esEs19(False, False) new_esEs31(x0, x1, ty_Bool) new_compare4(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_Bool) new_primCompAux00(x0, x1, EQ, app(ty_[], x2)) new_compare15([], :(x0, x1), x2) new_primEqInt(Pos(Zero), Pos(Zero)) new_ltEs16(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_compare111(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_sr0(Integer(x0), Integer(x1)) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Left(x0), Left(x1), ty_Float, x2) new_ltEs20(x0, x1, ty_Ordering) new_esEs9(x0, x1, ty_Double) new_ltEs24(x0, x1, ty_Integer) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_esEs35(x0, x1, app(ty_Maybe, x2)) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_ltEs16(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs23(x0, x1, ty_Char) new_ltEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs38(x0, x1, ty_Double) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs36(x0, x1, ty_@0) new_ltEs24(x0, x1, ty_@0) new_ltEs9(Just(x0), Just(x1), ty_@0) new_esEs26(x0, x1, ty_Bool) new_esEs37(x0, x1, app(ty_[], x2)) new_primEqInt(Neg(Zero), Neg(Zero)) new_ltEs20(x0, x1, ty_Double) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_ltEs7(x0, x1) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs38(x0, x1, ty_Ordering) new_esEs37(x0, x1, ty_Char) new_esEs13(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, ty_Integer) new_lt9(x0, x1) new_compare112(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_esEs25(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, ty_Ordering) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_primCompAux1(x0, x1, x2, x3, x4) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, ty_Integer) new_esEs35(x0, x1, ty_@0) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat1(Succ(x0), Zero) new_primCompAux00(x0, x1, EQ, app(ty_Ratio, x2)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_compare110(x0, x1, False, x2, x3) new_esEs12(LT, GT) new_esEs12(GT, LT) new_ltEs9(Just(x0), Just(x1), ty_Bool) new_compare4(x0, x1, ty_@0) new_esEs35(x0, x1, ty_Float) new_esEs13(Just(x0), Just(x1), ty_@0) new_esEs28(x0, x1, ty_Bool) new_compare210(x0, x1, True, x2, x3) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_lt7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs13(Just(x0), Just(x1), ty_Int) new_lt21(x0, x1, ty_Integer) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, ty_Integer) new_esEs36(x0, x1, ty_Bool) new_compare113(x0, x1, False, x2) new_ltEs16(Right(x0), Left(x1), x2, x3) new_ltEs16(Left(x0), Right(x1), x2, x3) new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(x0, x1, ty_@0) new_ltEs11(GT, GT) new_ltEs16(Left(x0), Left(x1), ty_Integer, x2) new_esEs34(x0, x1, ty_Bool) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_lt22(x0, x1, ty_Ordering) new_esEs29(x0, x1, ty_Ordering) new_esEs4(x0, x1, ty_Bool) new_lt23(x0, x1, ty_Double) new_esEs31(x0, x1, ty_Float) new_primMulNat0(Zero, Succ(x0)) new_compare17(EQ, EQ) new_lt7(x0, x1, ty_Bool) new_lt22(x0, x1, ty_Float) new_esEs12(GT, GT) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, ty_@0) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_compare15(:(x0, x1), [], x2) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs9(x0, x1, ty_Char) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_esEs34(x0, x1, ty_Integer) new_compare4(x0, x1, ty_Bool) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs31(x0, x1, ty_Int) new_esEs38(x0, x1, ty_Char) new_esEs20(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs16(Left(x0), Left(x1), ty_@0, x2) new_ltEs5(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, ty_Int) new_esEs28(x0, x1, ty_Integer) new_compare16(Nothing, Nothing, x0) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs8(x0, x1, x2) new_ltEs9(Just(x0), Just(x1), ty_Int) new_compare8(:%(x0, x1), :%(x2, x3), ty_Integer) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_Char) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs29(x0, x1, ty_Char) new_esEs30(x0, x1, ty_Ordering) new_lt23(x0, x1, app(ty_Maybe, x2)) new_esEs13(Nothing, Just(x0), x1) new_lt20(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, ty_Integer) new_ltEs15(x0, x1) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_lt7(x0, x1, ty_Int) new_compare17(LT, EQ) new_compare17(EQ, LT) new_lt14(x0, x1, x2, x3, x4) new_lt13(x0, x1) new_ltEs5(x0, x1, ty_Char) new_esEs13(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, ty_Int) new_esEs9(x0, x1, ty_Ordering) new_esEs25(Right(x0), Right(x1), x2, ty_Bool) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, app(ty_[], x2)) new_ltEs9(Just(x0), Just(x1), ty_Float) new_esEs27(x0, x1, ty_@0) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt8(x0, x1, app(ty_Maybe, x2)) new_compare19(@0, @0) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_lt22(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Float) new_esEs5(x0, x1, ty_Char) new_asAs(True, x0) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_ltEs5(x0, x1, ty_Float) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_esEs25(Right(x0), Right(x1), x2, ty_Int) new_compare14(Integer(x0), Integer(x1)) new_lt21(x0, x1, ty_@0) new_lt8(x0, x1, app(ty_Ratio, x2)) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, ty_Float) new_compare12(x0, x1, x2, x3, True, x4, x5) new_ltEs19(x0, x1, ty_Float) new_esEs11(x0, x1, ty_@0) new_compare4(x0, x1, ty_Integer) new_esEs8(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Float) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs16(Right(x0), Right(x1), x2, ty_Int) new_lt21(x0, x1, app(ty_Maybe, x2)) new_compare16(Just(x0), Just(x1), x2) new_lt22(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs9(Nothing, Nothing, x0) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, ty_Ordering) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_ltEs22(x0, x1, ty_Double) new_esEs8(x0, x1, ty_Float) new_lt8(x0, x1, app(app(ty_@2, x2), x3)) new_lt7(x0, x1, app(ty_Ratio, x2)) new_primCompAux00(x0, x1, EQ, app(app(ty_Either, x2), x3)) new_esEs25(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs4(x0, x1, ty_Ordering) new_esEs11(x0, x1, ty_Float) new_lt20(x0, x1, ty_Double) new_lt18(x0, x1) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_ltEs16(Left(x0), Left(x1), ty_Ordering, x2) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs5(x0, x1, ty_Bool) new_esEs6(x0, x1, ty_Ordering) new_primMulNat0(Succ(x0), Succ(x1)) new_primCompAux00(x0, x1, EQ, ty_Ordering) new_esEs6(x0, x1, ty_Double) new_compare29(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs10(x0, x1, ty_Ordering) new_lt23(x0, x1, ty_@0) new_esEs6(x0, x1, app(ty_[], x2)) new_ltEs22(x0, x1, ty_Char) new_esEs33(x0, x1, ty_Integer) new_lt15(x0, x1, x2) new_esEs28(x0, x1, ty_Float) new_ltEs22(x0, x1, ty_Int) new_primMulInt(Neg(x0), Neg(x1)) new_lt7(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, ty_Ordering) new_esEs7(x0, x1, app(ty_[], x2)) new_lt8(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, ty_Integer) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt7(x0, x1, ty_Integer) new_ltEs5(x0, x1, ty_Integer) new_not(True) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_compare8(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs13(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_lt11(x0, x1, x2) new_esEs13(Just(x0), Just(x1), app(ty_[], x2)) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(x0, x1) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, ty_Ordering) new_lt6(x0, x1) new_esEs35(x0, x1, ty_Double) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_lt22(x0, x1, app(ty_Ratio, x2)) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_esEs8(x0, x1, app(ty_[], x2)) new_esEs36(x0, x1, ty_Double) new_primPlusNat0(Succ(x0), x1) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs18(True, False) new_ltEs18(False, True) new_compare211(x0, x1, False, x2) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs16(Integer(x0), Integer(x1)) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, app(ty_[], x2)) new_esEs12(LT, LT) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs19(True, True) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_lt23(x0, x1, app(ty_[], x2)) new_compare16(Just(x0), Nothing, x1) new_fsEs(x0) new_compare4(x0, x1, ty_Float) new_esEs25(Left(x0), Left(x1), ty_Double, x2) new_primPlusNat1(Zero, Succ(x0)) new_esEs8(x0, x1, ty_Bool) new_compare27(Left(x0), Right(x1), x2, x3) new_compare27(Right(x0), Left(x1), x2, x3) new_esEs36(x0, x1, ty_Int) new_ltEs16(Right(x0), Right(x1), x2, ty_Integer) new_compare4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs24(x0, x1, ty_Float) new_primCompAux00(x0, x1, EQ, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_compare9(False, False) new_lt7(x0, x1, ty_@0) new_esEs36(x0, x1, ty_Char) new_lt23(x0, x1, ty_Float) new_ltEs9(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs22(x0, x1, ty_Bool) new_esEs39(x0, x1, ty_Double) new_lt22(x0, x1, app(ty_[], x2)) new_ltEs24(x0, x1, ty_Int) new_esEs9(x0, x1, ty_@0) new_compare17(EQ, GT) new_compare17(GT, EQ) new_esEs36(x0, x1, ty_Float) new_esEs11(x0, x1, ty_Bool) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, ty_Integer) new_ltEs23(x0, x1, ty_@0) new_primCmpNat0(Succ(x0), Zero) new_ltEs20(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_primEqNat0(Zero, Succ(x0)) new_ltEs19(x0, x1, ty_Double) new_lt8(x0, x1, ty_Ordering) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs34(x0, x1, ty_@0) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_esEs39(x0, x1, ty_Ordering) new_lt23(x0, x1, ty_Int) new_compare210(x0, x1, False, x2, x3) new_compare211(x0, x1, True, x2) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_primEqNat0(Zero, Zero) new_lt23(x0, x1, ty_Integer) new_esEs7(x0, x1, ty_Double) new_not(False) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_lt4(x0, x1) new_lt23(x0, x1, ty_Char) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs11(x0, x1, ty_Char) new_ltEs18(False, False) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs24(:(x0, x1), :(x2, x3), x4) new_esEs25(Left(x0), Left(x1), ty_Ordering, x2) new_esEs5(x0, x1, ty_@0) new_lt16(x0, x1) new_lt22(x0, x1, ty_Double) new_ltEs16(Right(x0), Right(x1), x2, ty_Bool) new_esEs8(x0, x1, ty_Int) new_lt23(x0, x1, ty_Bool) new_compare29(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, ty_@0) new_ltEs11(EQ, GT) new_ltEs11(GT, EQ) new_esEs8(x0, x1, ty_Char) new_esEs35(x0, x1, ty_Ordering) new_esEs25(Right(x0), Right(x1), x2, ty_Double) new_ltEs5(x0, x1, ty_@0) new_esEs11(x0, x1, ty_Int) new_ltEs5(x0, x1, app(ty_Maybe, x2)) new_compare28(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare28(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs29(x0, x1, ty_Double) new_ltEs16(Right(x0), Right(x1), x2, ty_Char) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_compare17(LT, GT) new_compare17(GT, LT) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_pePe(True, x0) new_esEs29(x0, x1, ty_@0) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs5(x0, x1, app(ty_[], x2)) new_esEs12(EQ, EQ) new_compare28(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_lt20(x0, x1, ty_Float) new_compare28(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs13(Just(x0), Just(x1), ty_Ordering) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_esEs13(Just(x0), Just(x1), ty_Double) new_compare7(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_compare4(x0, x1, ty_Ordering) new_esEs29(x0, x1, ty_Bool) new_esEs11(x0, x1, ty_Double) new_esEs28(x0, x1, ty_Ordering) new_compare26(x0, x1, False, x2, x3) new_esEs5(x0, x1, ty_Float) new_ltEs22(x0, x1, ty_Float) new_esEs6(x0, x1, ty_Float) new_esEs7(x0, x1, ty_Int) new_esEs27(x0, x1, ty_Ordering) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_compare27(Left(x0), Left(x1), x2, x3) new_compare4(x0, x1, ty_Double) new_ltEs16(Right(x0), Right(x1), x2, ty_Float) new_primCompAux00(x0, x1, EQ, ty_Float) new_esEs37(x0, x1, ty_Int) new_esEs26(x0, x1, ty_Char) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_ltEs9(Just(x0), Just(x1), app(ty_[], x2)) new_compare113(x0, x1, True, x2) new_compare110(x0, x1, True, x2, x3) new_ltEs16(Right(x0), Right(x1), x2, app(ty_[], x3)) new_lt7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, ty_Integer) new_compare12(x0, x1, x2, x3, False, x4, x5) new_compare4(x0, x1, ty_Char) new_esEs25(Left(x0), Left(x1), ty_Float, x2) new_esEs10(x0, x1, ty_Float) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_primCompAux00(x0, x1, EQ, ty_Integer) new_compare7(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt17(x0, x1, x2, x3) new_ltEs23(x0, x1, ty_Int) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs13(x0, x1) new_esEs30(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_Char) new_esEs30(x0, x1, ty_Float) new_esEs26(x0, x1, ty_Ordering) new_lt5(x0, x1, x2, x3) new_esEs7(x0, x1, ty_Bool) new_esEs29(x0, x1, ty_Integer) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs25(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, ty_@0) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_sr(x0, x1) new_ltEs24(x0, x1, ty_Char) new_esEs11(x0, x1, ty_Ordering) new_esEs28(x0, x1, ty_Char) new_ltEs22(x0, x1, ty_Integer) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs28(x0, x1, ty_Double) new_lt7(x0, x1, ty_Ordering) new_esEs22(@0, @0) new_compare111(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs25(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs13(Just(x0), Just(x1), ty_Char) new_esEs7(x0, x1, ty_Integer) new_compare6(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs10(x0, x1, ty_Bool) new_primEqNat0(Succ(x0), Zero) new_ltEs21(x0, x1, app(ty_[], x2)) new_compare4(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_primCompAux00(x0, x1, EQ, ty_Bool) new_ltEs16(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs11(LT, EQ) new_ltEs11(EQ, LT) new_esEs24([], :(x0, x1), x2) new_ltEs21(x0, x1, ty_Double) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_ltEs23(x0, x1, ty_Bool) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, ty_Float) new_esEs15(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs37(x0, x1, ty_@0) new_lt20(x0, x1, ty_Bool) new_primCompAux00(x0, x1, LT, x2) new_esEs13(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs10(x0, x1, ty_@0) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_esEs8(x0, x1, ty_@0) new_ltEs21(x0, x1, ty_Ordering) new_esEs25(Left(x0), Right(x1), x2, x3) new_esEs25(Right(x0), Left(x1), x2, x3) new_ltEs9(Just(x0), Just(x1), ty_Char) new_esEs5(x0, x1, ty_Integer) new_primPlusNat1(Succ(x0), Succ(x1)) new_ltEs24(x0, x1, ty_Double) new_esEs33(x0, x1, ty_Int) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_esEs5(x0, x1, ty_Bool) new_ltEs14(x0, x1, x2) new_ltEs20(x0, x1, ty_Bool) new_compare15(:(x0, x1), :(x2, x3), x4) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_ltEs10(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs36(x0, x1, ty_Ordering) new_esEs19(False, True) new_esEs19(True, False) new_esEs39(x0, x1, ty_Float) new_compare4(x0, x1, app(ty_Ratio, x2)) new_ltEs22(x0, x1, ty_@0) new_esEs6(x0, x1, ty_@0) new_esEs9(x0, x1, ty_Int) new_esEs25(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs38(x0, x1, ty_Bool) new_primCompAux00(x0, x1, EQ, ty_@0) new_esEs31(x0, x1, ty_Char) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_ltEs24(x0, x1, ty_Ordering) new_esEs37(x0, x1, ty_Integer) new_lt21(x0, x1, app(ty_[], x2)) new_lt12(x0, x1, x2) new_esEs10(x0, x1, ty_Integer) new_esEs39(x0, x1, app(ty_[], x2)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_ltEs20(x0, x1, ty_Int) new_esEs32(x0, x1, ty_Integer) new_lt23(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_ltEs5(x0, x1, ty_Int) new_lt8(x0, x1, ty_Double) new_esEs25(Right(x0), Right(x1), x2, ty_Float) new_esEs34(x0, x1, ty_Char) new_esEs9(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Int) new_ltEs6(x0, x1) new_esEs25(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs9(x0, x1, ty_Integer) new_ltEs16(Right(x0), Right(x1), x2, ty_@0) new_esEs38(x0, x1, ty_Int) new_esEs30(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, ty_Integer) new_ltEs9(Just(x0), Just(x1), app(ty_Maybe, x2)) new_ltEs11(EQ, EQ) new_esEs27(x0, x1, ty_Double) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_ltEs24(x0, x1, app(ty_[], x2)) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs36(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, ty_Int) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_compare17(LT, LT) new_lt7(x0, x1, ty_Char) new_lt19(x0, x1) new_esEs17(:%(x0, x1), :%(x2, x3), x4) new_esEs4(x0, x1, app(ty_[], x2)) new_esEs5(x0, x1, ty_Int) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, ty_Int) new_esEs7(x0, x1, ty_Float) new_esEs25(Right(x0), Right(x1), x2, ty_Char) new_ltEs16(Right(x0), Right(x1), x2, ty_Double) new_esEs37(x0, x1, ty_Float) new_esEs34(x0, x1, ty_Ordering) new_compare13(Char(x0), Char(x1)) new_esEs23(Double(x0, x1), Double(x2, x3)) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt21(x0, x1, ty_Double) new_lt8(x0, x1, app(app(ty_Either, x2), x3)) new_esEs13(Nothing, Nothing, x0) new_esEs10(x0, x1, ty_Double) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs22(x0, x1, ty_Ordering) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare9(False, True) new_compare9(True, False) new_ltEs16(Left(x0), Left(x1), ty_Char, x2) new_lt22(x0, x1, ty_Integer) new_primMulNat0(Zero, Zero) new_esEs25(Left(x0), Left(x1), ty_Int, x2) new_esEs5(x0, x1, ty_Ordering) new_esEs34(x0, x1, ty_Double) new_ltEs9(Nothing, Just(x0), x1) new_lt7(x0, x1, ty_Float) new_esEs31(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, app(ty_[], x2)) new_lt22(x0, x1, ty_Bool) new_primMulInt(Pos(x0), Pos(x1)) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs23(x0, x1, ty_Float) new_lt8(x0, x1, ty_Integer) new_esEs13(Just(x0), Just(x1), ty_Float) new_esEs18(Char(x0), Char(x1)) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_ltEs11(LT, LT) new_compare11(x0, x1, False, x2, x3) new_lt20(x0, x1, ty_Int) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, ty_Float) new_ltEs16(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs39(x0, x1, ty_Integer) new_esEs25(Right(x0), Right(x1), x2, ty_Integer) new_asAs(False, x0) new_primCompAux00(x0, x1, EQ, app(app(ty_@2, x2), x3)) new_compare17(GT, GT) new_ltEs16(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_esEs35(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, ty_Char) new_esEs25(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_esEs34(x0, x1, ty_Int) new_ltEs16(Left(x0), Left(x1), ty_Int, x2) new_esEs6(x0, x1, ty_Int) new_esEs39(x0, x1, ty_@0) new_ltEs18(True, True) new_esEs25(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_compare25(x0, x1, x2, x3, False, x4, x5) new_ltEs5(x0, x1, app(ty_[], x2)) new_primCompAux00(x0, x1, EQ, ty_Int) new_compare25(x0, x1, x2, x3, True, x4, x5) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_esEs10(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Integer) new_compare16(Nothing, Just(x0), x1) new_esEs35(x0, x1, ty_Int) new_esEs11(x0, x1, app(ty_[], x2)) new_lt8(x0, x1, ty_@0) new_esEs25(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs13(Just(x0), Nothing, x1) new_primPlusNat0(Zero, x0) new_ltEs19(x0, x1, ty_Bool) new_lt20(x0, x1, ty_Char) new_ltEs9(Just(x0), Nothing, x1) new_esEs10(x0, x1, ty_Int) new_compare4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24([], [], x0) new_esEs25(Left(x0), Left(x1), ty_Bool, x2) new_ltEs9(Just(x0), Just(x1), ty_Double) new_ltEs16(Left(x0), Left(x1), ty_Double, x2) new_esEs9(x0, x1, ty_Float) new_esEs25(Left(x0), Left(x1), ty_@0, x2) new_esEs9(x0, x1, app(ty_[], x2)) new_compare112(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_primCompAux00(x0, x1, EQ, ty_Char) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs16(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs39(x0, x1, ty_Char) new_lt8(x0, x1, ty_Float) new_ltEs16(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_primCompAux00(x0, x1, EQ, ty_Double) new_ltEs19(x0, x1, ty_Integer) new_primCompAux00(x0, x1, EQ, app(ty_Maybe, x2)) new_ltEs16(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs5(x0, x1, ty_Ordering) new_esEs30(x0, x1, ty_Int) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_ltEs16(Left(x0), Left(x1), ty_Bool, x2) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(x0, x1, ty_Int) new_esEs39(x0, x1, ty_Bool) new_esEs30(x0, x1, ty_Char) new_ltEs5(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs25(Left(x0), Left(x1), ty_Char, x2) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, ty_Double) new_esEs25(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs4(x0, x1, ty_Char) new_esEs38(x0, x1, ty_Integer) new_esEs30(x0, x1, ty_Double) new_compare27(Right(x0), Right(x1), x2, x3) new_esEs37(x0, x1, ty_Bool) new_primCmpInt(Pos(Zero), Pos(Zero)) new_ltEs5(x0, x1, app(app(ty_@2, x2), x3)) new_lt21(x0, x1, ty_Bool) new_lt8(x0, x1, ty_Char) new_esEs31(x0, x1, ty_Ordering) new_esEs34(x0, x1, app(ty_[], x2)) new_esEs13(Just(x0), Just(x1), ty_Bool) new_ltEs21(x0, x1, ty_Float) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt21(x0, x1, app(ty_Ratio, x2)) new_esEs25(Left(x0), Left(x1), ty_Integer, x2) new_pePe(False, x0) new_esEs13(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs22(x0, x1, app(ty_[], x2)) new_compare10(x0, x1, x2, x3, True, x4, x5, x6) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_compare9(True, True) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs5(x0, x1, ty_Double) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_@0) new_compare5(x0, x1) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs35(x0, x1, ty_Char) new_ltEs9(Just(x0), Just(x1), ty_Ordering) new_lt20(x0, x1, ty_Integer) new_compare15([], [], x0) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_compare11(x0, x1, True, x2, x3) new_lt23(x0, x1, ty_Ordering) new_compare26(x0, x1, True, x2, x3) new_ltEs21(x0, x1, ty_Int) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(x0, x1, ty_Char) new_esEs26(x0, x1, ty_Double) new_primCompAux00(x0, x1, GT, x2) new_esEs31(x0, x1, ty_Double) new_ltEs9(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs35(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Integer) new_esEs24(:(x0, x1), [], x2) new_esEs25(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_lt8(x0, x1, ty_Int) new_compare4(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_@0) new_compare18(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt10(x0, x1) new_esEs7(x0, x1, ty_@0) new_primCmpNat0(Zero, Succ(x0)) new_ltEs4(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs11(GT, LT) new_ltEs11(LT, GT) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_esEs25(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_ltEs17(x0, x1) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_lt21(x0, x1, ty_Char) new_lt8(x0, x1, ty_Bool) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, ty_@0) new_esEs25(Right(x0), Right(x1), x2, ty_@0) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(x0, x1, ty_Integer) new_esEs13(Just(x0), Just(x1), ty_Integer) new_ltEs12(x0, x1) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs38(x0, x1, app(ty_[], x2)) new_primMulNat0(Succ(x0), Zero) new_esEs5(x0, x1, ty_Double) new_lt21(x0, x1, ty_Int) new_esEs6(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Char) new_esEs38(x0, x1, ty_@0) new_esEs35(x0, x1, ty_Integer) new_esEs27(x0, x1, ty_Bool) new_lt22(x0, x1, ty_@0) new_ltEs9(Just(x0), Just(x1), app(ty_Ratio, x2)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_lt7(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_lt7(x0, x1, ty_Double) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, ty_Float) new_primCmpNat0(Zero, Zero) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (21) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_compare(:(vxw300, vxw301), :(vxw4000, vxw4001), cb) -> new_primCompAux(vxw300, vxw4000, vxw301, vxw4001, cb) The graph contains the following edges 1 > 1, 2 > 2, 1 > 3, 2 > 4, 3 >= 5 *new_primCompAux(vxw30, vxw400, vxw31, vxw401, cc) -> new_primCompAux0(vxw31, vxw401, new_compare4(vxw30, vxw400, cc), app(ty_[], cc)) The graph contains the following edges 3 >= 1, 4 >= 2 *new_primCompAux(:(vxw300, vxw301), :(vxw4000, vxw4001), vxw31, vxw401, app(ty_[], cb)) -> new_primCompAux(vxw300, vxw4000, vxw301, vxw4001, cb) The graph contains the following edges 1 > 1, 2 > 2, 1 > 3, 2 > 4, 5 > 5 *new_primCompAux0(vxw23, vxw24, EQ, app(ty_[], ba)) -> new_compare(vxw23, vxw24, ba) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_compare20(vxw30, vxw31, False, app(ty_[], de)) -> new_compare(vxw30, vxw31, de) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_primCompAux(Just(vxw300), Just(vxw4000), vxw31, vxw401, app(ty_Maybe, cd)) -> new_compare20(vxw300, vxw4000, new_esEs4(vxw300, vxw4000, cd), cd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 4 *new_lt(vxw79, vxw81, bff) -> new_compare(vxw79, vxw81, bff) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_compare0(Just(vxw300), Just(vxw4000), cd) -> new_compare20(vxw300, vxw4000, new_esEs4(vxw300, vxw4000, cd), cd) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_lt3(vxw79, vxw81, bgf, bgg) -> new_compare3(vxw79, vxw81, bgf, bgg) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4 *new_compare21(vxw79, vxw80, vxw81, vxw82, False, app(app(ty_Either, bgf), bgg), bgb) -> new_compare3(vxw79, vxw81, bgf, bgg) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4 *new_primCompAux(Left(vxw300), Left(vxw4000), vxw31, vxw401, app(app(ty_Either, dc), dd)) -> new_compare23(vxw300, vxw4000, new_esEs10(vxw300, vxw4000, dc), dc, dd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 4, 5 > 5 *new_ltEs(vxw30, vxw31, de) -> new_compare(vxw30, vxw31, de) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_compare21(vxw79, vxw80, vxw81, vxw82, False, app(ty_[], bff), bgb) -> new_compare(vxw79, vxw81, bff) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3 *new_compare3(Left(vxw300), Left(vxw4000), dc, dd) -> new_compare23(vxw300, vxw4000, new_esEs10(vxw300, vxw4000, dc), dc, dd) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 *new_compare3(Right(vxw300), Right(vxw4000), dc, dd) -> new_compare24(vxw300, vxw4000, new_esEs11(vxw300, vxw4000, dd), dc, dd) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 *new_compare23(vxw63, vxw64, False, app(ty_[], cdh), cea) -> new_ltEs(vxw63, vxw64, cdh) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_ltEs2(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), hd, he, app(ty_[], hf)) -> new_ltEs(vxw302, vxw312, hf) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare23(vxw63, vxw64, False, app(app(app(ty_@3, cee), cef), ceg), cea) -> new_ltEs2(vxw63, vxw64, cee, cef, ceg) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs2(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), hd, he, app(app(app(ty_@3, bab), bac), bad)) -> new_ltEs2(vxw302, vxw312, bab, bac, bad) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_ltEs0(Just(vxw300), Just(vxw310), app(ty_[], df)) -> new_ltEs(vxw300, vxw310, df) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs0(Just(vxw300), Just(vxw310), app(app(app(ty_@3, eb), ec), ed)) -> new_ltEs2(vxw300, vxw310, eb, ec, ed) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs1(@2(vxw300, vxw301), @2(vxw310, vxw311), app(ty_[], gb), gc) -> new_lt(vxw300, vxw310, gb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs1(@2(vxw300, vxw301), @2(vxw310, vxw311), app(app(ty_Either, hb), hc), gc) -> new_lt3(vxw300, vxw310, hb, hc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_compare23(vxw63, vxw64, False, app(ty_Maybe, ceb), cea) -> new_ltEs0(vxw63, vxw64, ceb) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_ltEs1(@2(vxw300, vxw301), @2(vxw310, vxw311), eg, app(ty_[], eh)) -> new_ltEs(vxw301, vxw311, eh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs2(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), hd, he, app(ty_Maybe, hg)) -> new_ltEs0(vxw302, vxw312, hg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_ltEs1(@2(vxw300, vxw301), @2(vxw310, vxw311), eg, app(app(app(ty_@3, fd), ff), fg)) -> new_ltEs2(vxw301, vxw311, fd, ff, fg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs0(Just(vxw300), Just(vxw310), app(ty_Maybe, dg)) -> new_ltEs0(vxw300, vxw310, dg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs1(@2(vxw300, vxw301), @2(vxw310, vxw311), eg, app(ty_Maybe, fa)) -> new_ltEs0(vxw301, vxw311, fa) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare23(vxw63, vxw64, False, app(app(ty_@2, cec), ced), cea) -> new_ltEs1(vxw63, vxw64, cec, ced) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_compare23(vxw63, vxw64, False, app(app(ty_Either, ceh), cfa), cea) -> new_ltEs3(vxw63, vxw64, ceh, cfa) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_ltEs2(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), hd, he, app(app(ty_@2, hh), baa)) -> new_ltEs1(vxw302, vxw312, hh, baa) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs0(Just(vxw300), Just(vxw310), app(app(ty_@2, dh), ea)) -> new_ltEs1(vxw300, vxw310, dh, ea) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs0(Just(vxw300), Just(vxw310), app(app(ty_Either, ee), ef)) -> new_ltEs3(vxw300, vxw310, ee, ef) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs1(@2(vxw300, vxw301), @2(vxw310, vxw311), eg, app(app(ty_@2, fb), fc)) -> new_ltEs1(vxw301, vxw311, fb, fc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs2(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), hd, he, app(app(ty_Either, bae), baf)) -> new_ltEs3(vxw302, vxw312, bae, baf) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs1(@2(vxw300, vxw301), @2(vxw310, vxw311), eg, app(app(ty_Either, fh), ga)) -> new_ltEs3(vxw301, vxw311, fh, ga) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_lt1(vxw79, vxw81, bfh, bga) -> new_compare1(vxw79, vxw81, bfh, bga) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4 *new_ltEs1(@2(vxw300, vxw301), @2(vxw310, vxw311), app(app(ty_@2, ge), gf), gc) -> new_lt1(vxw300, vxw310, ge, gf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_compare1(@2(vxw300, vxw301), @2(vxw4000, vxw4001), ce, cf) -> new_compare21(vxw300, vxw301, vxw4000, vxw4001, new_asAs(new_esEs6(vxw300, vxw4000, ce), new_esEs5(vxw301, vxw4001, cf)), ce, cf) The graph contains the following edges 1 > 1, 1 > 2, 2 > 3, 2 > 4, 3 >= 6, 4 >= 7 *new_compare21(vxw79, vxw80, vxw81, vxw82, False, bgh, app(ty_[], bha)) -> new_ltEs(vxw80, vxw82, bha) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3 *new_compare21(vxw79, vxw80, vxw81, vxw82, False, bgh, app(app(app(ty_@3, bhe), bhf), bhg)) -> new_ltEs2(vxw80, vxw82, bhe, bhf, bhg) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4, 7 > 5 *new_compare21(vxw79, vxw80, vxw81, vxw82, False, bgh, app(ty_Maybe, bhb)) -> new_ltEs0(vxw80, vxw82, bhb) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3 *new_compare21(vxw79, vxw80, vxw81, vxw82, False, bgh, app(app(ty_@2, bhc), bhd)) -> new_ltEs1(vxw80, vxw82, bhc, bhd) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4 *new_compare21(vxw79, vxw80, vxw81, vxw82, False, bgh, app(app(ty_Either, bhh), caa)) -> new_ltEs3(vxw80, vxw82, bhh, caa) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4 *new_compare21(vxw79, vxw80, vxw81, vxw82, False, app(app(ty_@2, bfh), bga), bgb) -> new_compare1(vxw79, vxw81, bfh, bga) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4 *new_primCompAux(@2(vxw300, vxw301), @2(vxw4000, vxw4001), vxw31, vxw401, app(app(ty_@2, ce), cf)) -> new_compare21(vxw300, vxw301, vxw4000, vxw4001, new_asAs(new_esEs6(vxw300, vxw4000, ce), new_esEs5(vxw301, vxw4001, cf)), ce, cf) The graph contains the following edges 1 > 1, 1 > 2, 2 > 3, 2 > 4, 5 > 6, 5 > 7 *new_compare2(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), cg, da, db) -> new_compare22(vxw300, vxw301, vxw302, vxw4000, vxw4001, vxw4002, new_asAs(new_esEs9(vxw300, vxw4000, cg), new_asAs(new_esEs8(vxw301, vxw4001, da), new_esEs7(vxw302, vxw4002, db))), cg, da, db) 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_compare22(vxw52, vxw53, vxw54, vxw55, vxw56, vxw57, False, cab, cac, app(ty_[], cad)) -> new_ltEs(vxw54, vxw57, cad) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3 *new_compare24(vxw70, vxw71, False, cfb, app(ty_[], cfc)) -> new_ltEs(vxw70, vxw71, cfc) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3 *new_compare22(vxw52, vxw53, vxw54, vxw55, vxw56, vxw57, False, cab, cac, app(app(app(ty_@3, cah), cba), cbb)) -> new_ltEs2(vxw54, vxw57, cah, cba, cbb) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4, 10 > 5 *new_compare24(vxw70, vxw71, False, cfb, app(app(app(ty_@3, cfg), cfh), cga)) -> new_ltEs2(vxw70, vxw71, cfg, cfh, cga) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4, 5 > 5 *new_compare22(vxw52, vxw53, vxw54, vxw55, vxw56, vxw57, False, cab, cac, app(ty_Maybe, cae)) -> new_ltEs0(vxw54, vxw57, cae) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3 *new_compare24(vxw70, vxw71, False, cfb, app(ty_Maybe, cfd)) -> new_ltEs0(vxw70, vxw71, cfd) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3 *new_compare22(vxw52, vxw53, vxw54, vxw55, vxw56, vxw57, False, cab, cac, app(app(ty_@2, caf), cag)) -> new_ltEs1(vxw54, vxw57, caf, cag) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4 *new_compare24(vxw70, vxw71, False, cfb, app(app(ty_@2, cfe), cff)) -> new_ltEs1(vxw70, vxw71, cfe, cff) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4 *new_compare22(vxw52, vxw53, vxw54, vxw55, vxw56, vxw57, False, cab, cac, app(app(ty_Either, cbc), cbd)) -> new_ltEs3(vxw54, vxw57, cbc, cbd) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4 *new_compare24(vxw70, vxw71, False, cfb, app(app(ty_Either, cgb), cgc)) -> new_ltEs3(vxw70, vxw71, cgb, cgc) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4 *new_compare21(vxw79, vxw80, vxw81, vxw82, False, app(app(app(ty_@3, bgc), bgd), bge), bgb) -> new_compare2(vxw79, vxw81, bgc, bgd, bge) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4, 6 > 5 *new_compare21(vxw79, vxw80, vxw81, vxw82, False, app(ty_Maybe, bfg), bgb) -> new_compare0(vxw79, vxw81, bfg) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3 *new_lt2(vxw79, vxw81, bgc, bgd, bge) -> new_compare2(vxw79, vxw81, bgc, bgd, bge) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5 *new_lt0(vxw79, vxw81, bfg) -> new_compare0(vxw79, vxw81, bfg) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_primCompAux(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), vxw31, vxw401, app(app(app(ty_@3, cg), da), db)) -> new_compare22(vxw300, vxw301, vxw302, vxw4000, vxw4001, vxw4002, new_asAs(new_esEs9(vxw300, vxw4000, cg), new_asAs(new_esEs8(vxw301, vxw4001, da), new_esEs7(vxw302, vxw4002, db))), cg, da, db) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 2 > 4, 2 > 5, 2 > 6, 5 > 8, 5 > 9, 5 > 10 *new_primCompAux(Right(vxw300), Right(vxw4000), vxw31, vxw401, app(app(ty_Either, dc), dd)) -> new_compare24(vxw300, vxw4000, new_esEs11(vxw300, vxw4000, dd), dc, dd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 4, 5 > 5 *new_ltEs1(@2(vxw300, vxw301), @2(vxw310, vxw311), app(ty_Maybe, gd), gc) -> new_lt0(vxw300, vxw310, gd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs1(@2(vxw300, vxw301), @2(vxw310, vxw311), app(app(app(ty_@3, gg), gh), ha), gc) -> new_lt2(vxw300, vxw310, gg, gh, ha) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_compare20(@2(vxw300, vxw301), @2(vxw310, vxw311), False, app(app(ty_@2, app(ty_[], gb)), gc)) -> new_lt(vxw300, vxw310, gb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), False, app(app(app(ty_@3, app(ty_[], bca)), he), bah)) -> new_lt(vxw300, vxw310, bca) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), False, app(app(app(ty_@3, hd), app(ty_[], bag)), bah)) -> new_lt(vxw301, vxw311, bag) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), False, app(app(app(ty_@3, app(app(ty_Either, bch), bda)), he), bah)) -> new_lt3(vxw300, vxw310, bch, bda) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), False, app(app(app(ty_@3, hd), app(app(ty_Either, bbg), bbh)), bah)) -> new_lt3(vxw301, vxw311, bbg, bbh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@2(vxw300, vxw301), @2(vxw310, vxw311), False, app(app(ty_@2, app(app(ty_Either, hb), hc)), gc)) -> new_lt3(vxw300, vxw310, hb, hc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Just(vxw300), Just(vxw310), False, app(ty_Maybe, app(ty_[], df))) -> new_ltEs(vxw300, vxw310, df) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Left(vxw300), Left(vxw310), False, app(app(ty_Either, app(ty_[], bdb)), bdc)) -> new_ltEs(vxw300, vxw310, bdb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@2(vxw300, vxw301), @2(vxw310, vxw311), False, app(app(ty_@2, eg), app(ty_[], eh))) -> new_ltEs(vxw301, vxw311, eh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), False, app(app(app(ty_@3, hd), he), app(ty_[], hf))) -> new_ltEs(vxw302, vxw312, hf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Right(vxw300), Right(vxw310), False, app(app(ty_Either, bed), app(ty_[], bee))) -> new_ltEs(vxw300, vxw310, bee) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Right(vxw300), Right(vxw310), False, app(app(ty_Either, bed), app(app(app(ty_@3, bfa), bfb), bfc))) -> new_ltEs2(vxw300, vxw310, bfa, bfb, bfc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(@2(vxw300, vxw301), @2(vxw310, vxw311), False, app(app(ty_@2, eg), app(app(app(ty_@3, fd), ff), fg))) -> new_ltEs2(vxw301, vxw311, fd, ff, fg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(Left(vxw300), Left(vxw310), False, app(app(ty_Either, app(app(app(ty_@3, bdg), bdh), bea)), bdc)) -> new_ltEs2(vxw300, vxw310, bdg, bdh, bea) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), False, app(app(app(ty_@3, hd), he), app(app(app(ty_@3, bab), bac), bad))) -> new_ltEs2(vxw302, vxw312, bab, bac, bad) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(Just(vxw300), Just(vxw310), False, app(ty_Maybe, app(app(app(ty_@3, eb), ec), ed))) -> new_ltEs2(vxw300, vxw310, eb, ec, ed) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(Just(vxw300), Just(vxw310), False, app(ty_Maybe, app(ty_Maybe, dg))) -> new_ltEs0(vxw300, vxw310, dg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Left(vxw300), Left(vxw310), False, app(app(ty_Either, app(ty_Maybe, bdd)), bdc)) -> new_ltEs0(vxw300, vxw310, bdd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), False, app(app(app(ty_@3, hd), he), app(ty_Maybe, hg))) -> new_ltEs0(vxw302, vxw312, hg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Right(vxw300), Right(vxw310), False, app(app(ty_Either, bed), app(ty_Maybe, bef))) -> new_ltEs0(vxw300, vxw310, bef) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@2(vxw300, vxw301), @2(vxw310, vxw311), False, app(app(ty_@2, eg), app(ty_Maybe, fa))) -> new_ltEs0(vxw301, vxw311, fa) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Left(vxw300), Left(vxw310), False, app(app(ty_Either, app(app(ty_@2, bde), bdf)), bdc)) -> new_ltEs1(vxw300, vxw310, bde, bdf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@2(vxw300, vxw301), @2(vxw310, vxw311), False, app(app(ty_@2, eg), app(app(ty_@2, fb), fc))) -> new_ltEs1(vxw301, vxw311, fb, fc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Right(vxw300), Right(vxw310), False, app(app(ty_Either, bed), app(app(ty_@2, beg), beh))) -> new_ltEs1(vxw300, vxw310, beg, beh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), False, app(app(app(ty_@3, hd), he), app(app(ty_@2, hh), baa))) -> new_ltEs1(vxw302, vxw312, hh, baa) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Just(vxw300), Just(vxw310), False, app(ty_Maybe, app(app(ty_@2, dh), ea))) -> new_ltEs1(vxw300, vxw310, dh, ea) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Left(vxw300), Left(vxw310), False, app(app(ty_Either, app(app(ty_Either, beb), bec)), bdc)) -> new_ltEs3(vxw300, vxw310, beb, bec) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Just(vxw300), Just(vxw310), False, app(ty_Maybe, app(app(ty_Either, ee), ef))) -> new_ltEs3(vxw300, vxw310, ee, ef) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), False, app(app(app(ty_@3, hd), he), app(app(ty_Either, bae), baf))) -> new_ltEs3(vxw302, vxw312, bae, baf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Right(vxw300), Right(vxw310), False, app(app(ty_Either, bed), app(app(ty_Either, bfd), bfe))) -> new_ltEs3(vxw300, vxw310, bfd, bfe) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@2(vxw300, vxw301), @2(vxw310, vxw311), False, app(app(ty_@2, eg), app(app(ty_Either, fh), ga))) -> new_ltEs3(vxw301, vxw311, fh, ga) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@2(vxw300, vxw301), @2(vxw310, vxw311), False, app(app(ty_@2, app(app(ty_@2, ge), gf)), gc)) -> new_lt1(vxw300, vxw310, ge, gf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), False, app(app(app(ty_@3, hd), app(app(ty_@2, bbb), bbc)), bah)) -> new_lt1(vxw301, vxw311, bbb, bbc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), False, app(app(app(ty_@3, app(app(ty_@2, bcc), bcd)), he), bah)) -> new_lt1(vxw300, vxw310, bcc, bcd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), False, app(app(app(ty_@3, app(ty_Maybe, bcb)), he), bah)) -> new_lt0(vxw300, vxw310, bcb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), False, app(app(app(ty_@3, hd), app(ty_Maybe, bba)), bah)) -> new_lt0(vxw301, vxw311, bba) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@2(vxw300, vxw301), @2(vxw310, vxw311), False, app(app(ty_@2, app(ty_Maybe, gd)), gc)) -> new_lt0(vxw300, vxw310, gd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), False, app(app(app(ty_@3, app(app(app(ty_@3, bce), bcf), bcg)), he), bah)) -> new_lt2(vxw300, vxw310, bce, bcf, bcg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), False, app(app(app(ty_@3, hd), app(app(app(ty_@3, bbd), bbe), bbf)), bah)) -> new_lt2(vxw301, vxw311, bbd, bbe, bbf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(@2(vxw300, vxw301), @2(vxw310, vxw311), False, app(app(ty_@2, app(app(app(ty_@3, gg), gh), ha)), gc)) -> new_lt2(vxw300, vxw310, gg, gh, ha) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs2(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), hd, app(ty_[], bag), bah) -> new_lt(vxw301, vxw311, bag) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs2(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), app(ty_[], bca), he, bah) -> new_lt(vxw300, vxw310, bca) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_compare22(vxw52, vxw53, vxw54, vxw55, vxw56, vxw57, False, cab, app(ty_[], cbe), cbf) -> new_lt(vxw53, vxw56, cbe) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3 *new_compare22(vxw52, vxw53, vxw54, vxw55, vxw56, vxw57, False, app(ty_[], ccg), cac, cbf) -> new_lt(vxw52, vxw55, ccg) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3 *new_ltEs2(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), app(app(ty_Either, bch), bda), he, bah) -> new_lt3(vxw300, vxw310, bch, bda) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs2(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), hd, app(app(ty_Either, bbg), bbh), bah) -> new_lt3(vxw301, vxw311, bbg, bbh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare22(vxw52, vxw53, vxw54, vxw55, vxw56, vxw57, False, cab, app(app(ty_Either, cce), ccf), cbf) -> new_lt3(vxw53, vxw56, cce, ccf) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4 *new_compare22(vxw52, vxw53, vxw54, vxw55, vxw56, vxw57, False, app(app(ty_Either, cdf), cdg), cac, cbf) -> new_lt3(vxw52, vxw55, cdf, cdg) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4 *new_ltEs3(Right(vxw300), Right(vxw310), bed, app(ty_[], bee)) -> new_ltEs(vxw300, vxw310, bee) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs3(Left(vxw300), Left(vxw310), app(ty_[], bdb), bdc) -> new_ltEs(vxw300, vxw310, bdb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs2(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), app(app(ty_@2, bcc), bcd), he, bah) -> new_lt1(vxw300, vxw310, bcc, bcd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs2(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), hd, app(app(ty_@2, bbb), bbc), bah) -> new_lt1(vxw301, vxw311, bbb, bbc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs2(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), hd, app(ty_Maybe, bba), bah) -> new_lt0(vxw301, vxw311, bba) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs2(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), app(ty_Maybe, bcb), he, bah) -> new_lt0(vxw300, vxw310, bcb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs2(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), app(app(app(ty_@3, bce), bcf), bcg), he, bah) -> new_lt2(vxw300, vxw310, bce, bcf, bcg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs2(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), hd, app(app(app(ty_@3, bbd), bbe), bbf), bah) -> new_lt2(vxw301, vxw311, bbd, bbe, bbf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs3(Left(vxw300), Left(vxw310), app(app(app(ty_@3, bdg), bdh), bea), bdc) -> new_ltEs2(vxw300, vxw310, bdg, bdh, bea) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs3(Right(vxw300), Right(vxw310), bed, app(app(app(ty_@3, bfa), bfb), bfc)) -> new_ltEs2(vxw300, vxw310, bfa, bfb, bfc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs3(Left(vxw300), Left(vxw310), app(ty_Maybe, bdd), bdc) -> new_ltEs0(vxw300, vxw310, bdd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs3(Right(vxw300), Right(vxw310), bed, app(ty_Maybe, bef)) -> new_ltEs0(vxw300, vxw310, bef) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs3(Right(vxw300), Right(vxw310), bed, app(app(ty_@2, beg), beh)) -> new_ltEs1(vxw300, vxw310, beg, beh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs3(Left(vxw300), Left(vxw310), app(app(ty_@2, bde), bdf), bdc) -> new_ltEs1(vxw300, vxw310, bde, bdf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs3(Left(vxw300), Left(vxw310), app(app(ty_Either, beb), bec), bdc) -> new_ltEs3(vxw300, vxw310, beb, bec) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs3(Right(vxw300), Right(vxw310), bed, app(app(ty_Either, bfd), bfe)) -> new_ltEs3(vxw300, vxw310, bfd, bfe) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare22(vxw52, vxw53, vxw54, vxw55, vxw56, vxw57, False, cab, app(app(ty_@2, cbh), cca), cbf) -> new_lt1(vxw53, vxw56, cbh, cca) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4 *new_compare22(vxw52, vxw53, vxw54, vxw55, vxw56, vxw57, False, app(app(ty_@2, cda), cdb), cac, cbf) -> new_lt1(vxw52, vxw55, cda, cdb) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4 *new_compare22(vxw52, vxw53, vxw54, vxw55, vxw56, vxw57, False, cab, app(ty_Maybe, cbg), cbf) -> new_lt0(vxw53, vxw56, cbg) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3 *new_compare22(vxw52, vxw53, vxw54, vxw55, vxw56, vxw57, False, app(ty_Maybe, cch), cac, cbf) -> new_lt0(vxw52, vxw55, cch) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3 *new_compare22(vxw52, vxw53, vxw54, vxw55, vxw56, vxw57, False, app(app(app(ty_@3, cdc), cdd), cde), cac, cbf) -> new_lt2(vxw52, vxw55, cdc, cdd, cde) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4, 8 > 5 *new_compare22(vxw52, vxw53, vxw54, vxw55, vxw56, vxw57, False, cab, app(app(app(ty_@3, ccb), ccc), ccd), cbf) -> new_lt2(vxw53, vxw56, ccb, ccc, ccd) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4, 9 > 5 ---------------------------------------- (22) YES ---------------------------------------- (23) Obligation: Q DP problem: The TRS P consists of the following rules: new_insertBy0(vxw12, vxw13, vxw14, vxw15, vxw16, GT, ba) -> new_insertBy(:(vxw14, vxw15), vxw16, ba) new_insertBy(:(vxw30, vxw31), :([], vxw41), bb) -> new_insertBy(:(vxw30, vxw31), vxw41, bb) new_insertBy(:(vxw30, vxw31), :(:(vxw400, vxw401), vxw41), bb) -> new_insertBy0(vxw400, vxw401, vxw30, vxw31, vxw41, new_primCompAux1(vxw30, vxw400, vxw31, vxw401, bb), bb) The TRS R consists of the following rules: new_esEs26(vxw301, vxw311, ty_Double) -> new_esEs23(vxw301, vxw311) new_esEs11(vxw300, vxw4000, app(ty_[], dda)) -> new_esEs24(vxw300, vxw4000, dda) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_esEs7(vxw302, vxw4002, ty_Char) -> new_esEs18(vxw302, vxw4002) new_lt23(vxw52, vxw55, ty_Integer) -> new_lt10(vxw52, vxw55) new_compare4(vxw30, vxw400, ty_Int) -> new_compare5(vxw30, vxw400) new_pePe(True, vxw158) -> True new_esEs38(vxw52, vxw55, ty_Bool) -> new_esEs19(vxw52, vxw55) new_esEs10(vxw300, vxw4000, ty_@0) -> new_esEs22(vxw300, vxw4000) new_esEs19(False, True) -> False new_esEs19(True, False) -> False new_ltEs24(vxw30, vxw31, app(app(ty_@2, cad), cae)) -> new_ltEs10(vxw30, vxw31, cad, cae) new_esEs25(Right(vxw3000), Right(vxw40000), deh, ty_@0) -> new_esEs22(vxw3000, vxw40000) new_esEs39(vxw3000, vxw40000, ty_Int) -> new_esEs21(vxw3000, vxw40000) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_ltEs23(vxw54, vxw57, ty_Bool) -> new_ltEs18(vxw54, vxw57) new_lt20(vxw79, vxw81, app(app(ty_Either, bac), bad)) -> new_lt17(vxw79, vxw81, bac, bad) new_compare26(vxw70, vxw71, True, bbg, bbh) -> EQ new_esEs33(vxw3000, vxw40000, ty_Integer) -> new_esEs16(vxw3000, vxw40000) new_esEs6(vxw300, vxw4000, app(ty_Maybe, ffg)) -> new_esEs13(vxw300, vxw4000, ffg) new_ltEs20(vxw70, vxw71, ty_Float) -> new_ltEs13(vxw70, vxw71) new_esEs11(vxw300, vxw4000, ty_Double) -> new_esEs23(vxw300, vxw4000) new_lt23(vxw52, vxw55, app(ty_Ratio, fbg)) -> new_lt15(vxw52, vxw55, fbg) new_esEs28(vxw79, vxw81, ty_Char) -> new_esEs18(vxw79, vxw81) new_ltEs18(True, False) -> False new_ltEs7(vxw30, vxw31) -> new_fsEs(new_compare14(vxw30, vxw31)) new_esEs25(Right(vxw3000), Right(vxw40000), deh, app(ty_[], dfg)) -> new_esEs24(vxw3000, vxw40000, dfg) new_lt10(vxw79, vxw81) -> new_esEs12(new_compare14(vxw79, vxw81), LT) new_compare17(LT, GT) -> LT new_esEs25(Left(vxw3000), Left(vxw40000), ty_Integer, dde) -> new_esEs16(vxw3000, vxw40000) new_compare211(vxw30, vxw31, True, fhg) -> EQ new_esEs25(Left(vxw3000), Left(vxw40000), ty_Bool, dde) -> new_esEs19(vxw3000, vxw40000) new_lt23(vxw52, vxw55, app(ty_[], fah)) -> new_lt11(vxw52, vxw55, fah) new_esEs35(vxw3001, vxw40001, ty_Float) -> new_esEs14(vxw3001, vxw40001) new_esEs13(Just(vxw3000), Just(vxw40000), app(app(app(ty_@3, bg), bh), ca)) -> new_esEs20(vxw3000, vxw40000, bg, bh, ca) new_lt8(vxw300, vxw310, ty_Float) -> new_lt6(vxw300, vxw310) new_esEs27(vxw300, vxw310, app(ty_Maybe, gb)) -> new_esEs13(vxw300, vxw310, gb) new_esEs5(vxw301, vxw4001, app(ty_[], fed)) -> new_esEs24(vxw301, vxw4001, fed) new_esEs26(vxw301, vxw311, app(app(ty_@2, eh), fa)) -> new_esEs15(vxw301, vxw311, eh, fa) new_compare19(@0, @0) -> EQ new_ltEs16(Left(vxw300), Left(vxw310), app(app(app(ty_@3, edh), eea), eeb), edc) -> new_ltEs4(vxw300, vxw310, edh, eea, eeb) new_esEs35(vxw3001, vxw40001, ty_@0) -> new_esEs22(vxw3001, vxw40001) new_ltEs24(vxw30, vxw31, app(app(app(ty_@3, da), db), dc)) -> new_ltEs4(vxw30, vxw31, da, db, dc) new_esEs36(vxw3000, vxw40000, ty_Double) -> new_esEs23(vxw3000, vxw40000) new_compare17(LT, EQ) -> LT new_ltEs20(vxw70, vxw71, app(ty_Maybe, bcb)) -> new_ltEs9(vxw70, vxw71, bcb) new_lt21(vxw300, vxw310, ty_Float) -> new_lt6(vxw300, vxw310) new_esEs34(vxw3002, vxw40002, ty_Int) -> new_esEs21(vxw3002, vxw40002) new_primCompAux1(vxw30, vxw400, vxw31, vxw401, bb) -> new_primCompAux00(vxw31, vxw401, new_compare4(vxw30, vxw400, bb), app(ty_[], bb)) new_esEs31(vxw300, vxw310, app(ty_Ratio, ccg)) -> new_esEs17(vxw300, vxw310, ccg) new_lt22(vxw53, vxw56, ty_Bool) -> new_lt19(vxw53, vxw56) new_compare17(EQ, GT) -> LT new_esEs5(vxw301, vxw4001, app(app(ty_@2, fdf), fdg)) -> new_esEs15(vxw301, vxw4001, fdf, fdg) new_esEs26(vxw301, vxw311, app(ty_[], ef)) -> new_esEs24(vxw301, vxw311, ef) new_ltEs19(vxw80, vxw82, app(app(ty_Either, bbe), bbf)) -> new_ltEs16(vxw80, vxw82, bbe, bbf) new_primCompAux00(vxw23, vxw24, EQ, ty_Integer) -> new_compare14(vxw23, vxw24) new_primEqNat0(Succ(vxw30000), Succ(vxw400000)) -> new_primEqNat0(vxw30000, vxw400000) new_compare4(vxw30, vxw400, ty_Char) -> new_compare13(vxw30, vxw400) new_esEs10(vxw300, vxw4000, ty_Float) -> new_esEs14(vxw300, vxw4000) new_lt22(vxw53, vxw56, ty_@0) -> new_lt16(vxw53, vxw56) new_esEs24([], [], dgh) -> True new_not(True) -> False new_compare4(vxw30, vxw400, app(ty_Maybe, dgc)) -> new_compare16(vxw30, vxw400, dgc) new_lt7(vxw301, vxw311, app(app(ty_Either, fg), fh)) -> new_lt17(vxw301, vxw311, fg, fh) new_ltEs16(Right(vxw300), Right(vxw310), eef, app(app(ty_Either, efg), efh)) -> new_ltEs16(vxw300, vxw310, efg, efh) new_esEs30(vxw3000, vxw40000, ty_Float) -> new_esEs14(vxw3000, vxw40000) new_compare4(vxw30, vxw400, app(app(ty_@2, fdd), fde)) -> new_compare6(vxw30, vxw400, fdd, fde) new_ltEs20(vxw70, vxw71, ty_Int) -> new_ltEs12(vxw70, vxw71) new_primCompAux00(vxw23, vxw24, EQ, ty_Bool) -> new_compare9(vxw23, vxw24) new_esEs6(vxw300, vxw4000, app(app(app(ty_@3, ffc), ffd), ffe)) -> new_esEs20(vxw300, vxw4000, ffc, ffd, ffe) new_ltEs16(Right(vxw300), Right(vxw310), eef, ty_@0) -> new_ltEs15(vxw300, vxw310) new_primEqNat0(Succ(vxw30000), Zero) -> False new_primEqNat0(Zero, Succ(vxw400000)) -> False new_esEs18(Char(vxw3000), Char(vxw40000)) -> new_primEqNat0(vxw3000, vxw40000) new_primCompAux00(vxw23, vxw24, EQ, ty_Ordering) -> new_compare17(vxw23, vxw24) new_compare27(Left(vxw300), Right(vxw4000), dag, dah) -> LT new_esEs38(vxw52, vxw55, ty_Char) -> new_esEs18(vxw52, vxw55) new_esEs39(vxw3000, vxw40000, app(ty_Ratio, fcd)) -> new_esEs17(vxw3000, vxw40000, fcd) new_esEs8(vxw301, vxw4001, ty_Int) -> new_esEs21(vxw301, vxw4001) new_esEs13(Just(vxw3000), Just(vxw40000), app(ty_Maybe, cc)) -> new_esEs13(vxw3000, vxw40000, cc) new_ltEs21(vxw301, vxw311, ty_Integer) -> new_ltEs7(vxw301, vxw311) new_esEs4(vxw300, vxw4000, ty_Float) -> new_esEs14(vxw300, vxw4000) new_esEs11(vxw300, vxw4000, app(app(ty_@2, dcc), dcd)) -> new_esEs15(vxw300, vxw4000, dcc, dcd) new_ltEs23(vxw54, vxw57, ty_@0) -> new_ltEs15(vxw54, vxw57) new_compare4(vxw30, vxw400, app(ty_Ratio, fhf)) -> new_compare8(vxw30, vxw400, fhf) new_esEs4(vxw300, vxw4000, ty_@0) -> new_esEs22(vxw300, vxw4000) new_ltEs16(Right(vxw300), Right(vxw310), eef, ty_Ordering) -> new_ltEs11(vxw300, vxw310) new_esEs9(vxw300, vxw4000, ty_@0) -> new_esEs22(vxw300, vxw4000) new_lt20(vxw79, vxw81, ty_Char) -> new_lt9(vxw79, vxw81) new_esEs19(False, False) -> True new_primCmpInt(Pos(Succ(vxw3000)), Neg(vxw4000)) -> GT new_esEs28(vxw79, vxw81, ty_Bool) -> new_esEs19(vxw79, vxw81) new_esEs35(vxw3001, vxw40001, app(app(ty_Either, ebe), ebf)) -> new_esEs25(vxw3001, vxw40001, ebe, ebf) new_ltEs23(vxw54, vxw57, ty_Ordering) -> new_ltEs11(vxw54, vxw57) new_esEs8(vxw301, vxw4001, app(ty_Ratio, cfa)) -> new_esEs17(vxw301, vxw4001, cfa) new_esEs38(vxw52, vxw55, ty_Integer) -> new_esEs16(vxw52, vxw55) new_primPlusNat1(Succ(vxw15900), Succ(vxw301000)) -> Succ(Succ(new_primPlusNat1(vxw15900, vxw301000))) new_primCompAux00(vxw23, vxw24, GT, bge) -> GT new_primCmpNat0(Zero, Succ(vxw40000)) -> LT new_esEs30(vxw3000, vxw40000, app(app(ty_Either, bfg), bfh)) -> new_esEs25(vxw3000, vxw40000, bfg, bfh) new_ltEs20(vxw70, vxw71, ty_Double) -> new_ltEs17(vxw70, vxw71) new_esEs5(vxw301, vxw4001, ty_Double) -> new_esEs23(vxw301, vxw4001) new_lt7(vxw301, vxw311, app(ty_[], ef)) -> new_lt11(vxw301, vxw311, ef) new_lt7(vxw301, vxw311, ty_Integer) -> new_lt10(vxw301, vxw311) new_lt7(vxw301, vxw311, ty_Int) -> new_lt4(vxw301, vxw311) new_esEs9(vxw300, vxw4000, ty_Float) -> new_esEs14(vxw300, vxw4000) new_esEs31(vxw300, vxw310, app(app(ty_@2, ccb), ccc)) -> new_esEs15(vxw300, vxw310, ccb, ccc) new_ltEs23(vxw54, vxw57, ty_Double) -> new_ltEs17(vxw54, vxw57) new_esEs5(vxw301, vxw4001, ty_Integer) -> new_esEs16(vxw301, vxw4001) new_lt16(vxw79, vxw81) -> new_esEs12(new_compare19(vxw79, vxw81), LT) new_esEs37(vxw53, vxw56, app(app(app(ty_@3, fab), fac), fad)) -> new_esEs20(vxw53, vxw56, fab, fac, fad) new_ltEs18(False, False) -> True new_ltEs19(vxw80, vxw82, app(app(ty_@2, bag), bah)) -> new_ltEs10(vxw80, vxw82, bag, bah) new_lt23(vxw52, vxw55, ty_Ordering) -> new_lt13(vxw52, vxw55) new_compare113(vxw102, vxw103, True, dha) -> LT new_ltEs16(Right(vxw300), Right(vxw310), eef, app(ty_Ratio, eff)) -> new_ltEs14(vxw300, vxw310, eff) new_esEs38(vxw52, vxw55, ty_Ordering) -> new_esEs12(vxw52, vxw55) new_lt20(vxw79, vxw81, app(ty_[], he)) -> new_lt11(vxw79, vxw81, he) new_lt21(vxw300, vxw310, app(app(app(ty_@3, ccd), cce), ccf)) -> new_lt14(vxw300, vxw310, ccd, cce, ccf) new_esEs29(vxw3001, vxw40001, app(ty_[], bec)) -> new_esEs24(vxw3001, vxw40001, bec) new_esEs10(vxw300, vxw4000, ty_Char) -> new_esEs18(vxw300, vxw4000) new_esEs9(vxw300, vxw4000, app(app(ty_Either, cha), chb)) -> new_esEs25(vxw300, vxw4000, cha, chb) new_esEs8(vxw301, vxw4001, app(ty_[], cfe)) -> new_esEs24(vxw301, vxw4001, cfe) new_esEs11(vxw300, vxw4000, ty_Ordering) -> new_esEs12(vxw300, vxw4000) new_compare28(Double(vxw300, Neg(vxw3010)), Double(vxw4000, Neg(vxw40010))) -> new_compare5(new_sr(vxw300, Neg(vxw40010)), new_sr(Neg(vxw3010), vxw4000)) new_esEs25(Right(vxw3000), Right(vxw40000), deh, app(app(ty_Either, dga), dgb)) -> new_esEs25(vxw3000, vxw40000, dga, dgb) new_esEs26(vxw301, vxw311, app(ty_Ratio, ff)) -> new_esEs17(vxw301, vxw311, ff) new_esEs25(Left(vxw3000), Left(vxw40000), app(ty_Maybe, dee), dde) -> new_esEs13(vxw3000, vxw40000, dee) new_esEs39(vxw3000, vxw40000, app(ty_Maybe, fda)) -> new_esEs13(vxw3000, vxw40000, fda) new_esEs31(vxw300, vxw310, ty_Double) -> new_esEs23(vxw300, vxw310) new_ltEs5(vxw302, vxw312, app(app(ty_@2, df), dg)) -> new_ltEs10(vxw302, vxw312, df, dg) new_lt20(vxw79, vxw81, app(ty_Maybe, hf)) -> new_lt12(vxw79, vxw81, hf) new_esEs29(vxw3001, vxw40001, app(app(app(ty_@3, bdh), bea), beb)) -> new_esEs20(vxw3001, vxw40001, bdh, bea, beb) new_ltEs19(vxw80, vxw82, ty_Integer) -> new_ltEs7(vxw80, vxw82) new_primEqInt(Neg(Succ(vxw30000)), Neg(Succ(vxw400000))) -> new_primEqNat0(vxw30000, vxw400000) new_esEs28(vxw79, vxw81, ty_Integer) -> new_esEs16(vxw79, vxw81) new_esEs30(vxw3000, vxw40000, ty_@0) -> new_esEs22(vxw3000, vxw40000) new_ltEs22(vxw63, vxw64, ty_Int) -> new_ltEs12(vxw63, vxw64) new_primCmpInt(Neg(Zero), Pos(Succ(vxw40000))) -> LT new_compare13(Char(vxw300), Char(vxw4000)) -> new_primCmpNat0(vxw300, vxw4000) new_lt22(vxw53, vxw56, ty_Int) -> new_lt4(vxw53, vxw56) new_esEs30(vxw3000, vxw40000, ty_Bool) -> new_esEs19(vxw3000, vxw40000) new_esEs7(vxw302, vxw4002, ty_Integer) -> new_esEs16(vxw302, vxw4002) new_primMulInt(Pos(vxw40000), Pos(vxw3010)) -> Pos(new_primMulNat0(vxw40000, vxw3010)) new_ltEs15(vxw30, vxw31) -> new_fsEs(new_compare19(vxw30, vxw31)) new_esEs5(vxw301, vxw4001, ty_Bool) -> new_esEs19(vxw301, vxw4001) new_esEs26(vxw301, vxw311, ty_Ordering) -> new_esEs12(vxw301, vxw311) new_esEs25(Right(vxw3000), Right(vxw40000), deh, app(app(ty_@2, dfa), dfb)) -> new_esEs15(vxw3000, vxw40000, dfa, dfb) new_esEs7(vxw302, vxw4002, app(app(ty_Either, cee), cef)) -> new_esEs25(vxw302, vxw4002, cee, cef) new_primCompAux00(vxw23, vxw24, EQ, ty_Float) -> new_compare7(vxw23, vxw24) new_esEs11(vxw300, vxw4000, app(ty_Ratio, dce)) -> new_esEs17(vxw300, vxw4000, dce) new_ltEs23(vxw54, vxw57, ty_Float) -> new_ltEs13(vxw54, vxw57) new_primMulNat0(Succ(vxw400000), Zero) -> Zero new_primMulNat0(Zero, Succ(vxw30100)) -> Zero new_ltEs20(vxw70, vxw71, ty_Bool) -> new_ltEs18(vxw70, vxw71) new_esEs34(vxw3002, vxw40002, app(ty_Ratio, dhe)) -> new_esEs17(vxw3002, vxw40002, dhe) new_ltEs6(vxw30, vxw31) -> new_fsEs(new_compare13(vxw30, vxw31)) new_esEs25(Left(vxw3000), Left(vxw40000), ty_Float, dde) -> new_esEs14(vxw3000, vxw40000) new_lt22(vxw53, vxw56, app(ty_Maybe, ehg)) -> new_lt12(vxw53, vxw56, ehg) new_compare9(True, True) -> EQ new_ltEs14(vxw30, vxw31, bhh) -> new_fsEs(new_compare8(vxw30, vxw31, bhh)) new_lt14(vxw79, vxw81, hg, hh, baa) -> new_esEs12(new_compare18(vxw79, vxw81, hg, hh, baa), LT) new_esEs27(vxw300, vxw310, app(app(app(ty_@3, ge), gf), gg)) -> new_esEs20(vxw300, vxw310, ge, gf, gg) new_esEs7(vxw302, vxw4002, ty_Bool) -> new_esEs19(vxw302, vxw4002) new_esEs36(vxw3000, vxw40000, ty_Int) -> new_esEs21(vxw3000, vxw40000) new_esEs29(vxw3001, vxw40001, app(app(ty_@2, bde), bdf)) -> new_esEs15(vxw3001, vxw40001, bde, bdf) new_lt8(vxw300, vxw310, app(app(app(ty_@3, ge), gf), gg)) -> new_lt14(vxw300, vxw310, ge, gf, gg) new_esEs10(vxw300, vxw4000, app(app(ty_Either, dca), dcb)) -> new_esEs25(vxw300, vxw4000, dca, dcb) new_lt20(vxw79, vxw81, ty_Int) -> new_lt4(vxw79, vxw81) new_compare4(vxw30, vxw400, app(app(ty_Either, dag), dah)) -> new_compare27(vxw30, vxw400, dag, dah) new_primCompAux00(vxw23, vxw24, EQ, ty_@0) -> new_compare19(vxw23, vxw24) new_primPlusNat1(Succ(vxw15900), Zero) -> Succ(vxw15900) new_primPlusNat1(Zero, Succ(vxw301000)) -> Succ(vxw301000) new_compare15(:(vxw300, vxw301), :(vxw4000, vxw4001), fgb) -> new_primCompAux1(vxw300, vxw4000, vxw301, vxw4001, fgb) new_esEs25(Left(vxw3000), Left(vxw40000), ty_Char, dde) -> new_esEs18(vxw3000, vxw40000) new_esEs31(vxw300, vxw310, app(ty_[], cbh)) -> new_esEs24(vxw300, vxw310, cbh) new_esEs30(vxw3000, vxw40000, ty_Char) -> new_esEs18(vxw3000, vxw40000) new_esEs7(vxw302, vxw4002, app(app(ty_@2, cde), cdf)) -> new_esEs15(vxw302, vxw4002, cde, cdf) new_compare210(vxw63, vxw64, False, chc, chd) -> new_compare110(vxw63, vxw64, new_ltEs22(vxw63, vxw64, chc), chc, chd) new_compare7(Float(vxw300, Pos(vxw3010)), Float(vxw4000, Pos(vxw40010))) -> new_compare5(new_sr(vxw300, Pos(vxw40010)), new_sr(Pos(vxw3010), vxw4000)) new_esEs37(vxw53, vxw56, app(ty_Maybe, ehg)) -> new_esEs13(vxw53, vxw56, ehg) new_esEs36(vxw3000, vxw40000, app(ty_Ratio, eca)) -> new_esEs17(vxw3000, vxw40000, eca) new_esEs30(vxw3000, vxw40000, ty_Integer) -> new_esEs16(vxw3000, vxw40000) new_esEs25(Left(vxw3000), Left(vxw40000), app(app(ty_@2, ddf), ddg), dde) -> new_esEs15(vxw3000, vxw40000, ddf, ddg) new_lt15(vxw79, vxw81, bab) -> new_esEs12(new_compare8(vxw79, vxw81, bab), LT) new_fsEs(vxw153) -> new_not(new_esEs12(vxw153, GT)) new_esEs25(Left(vxw3000), Left(vxw40000), ty_@0, dde) -> new_esEs22(vxw3000, vxw40000) new_ltEs22(vxw63, vxw64, ty_Float) -> new_ltEs13(vxw63, vxw64) new_esEs8(vxw301, vxw4001, ty_Double) -> new_esEs23(vxw301, vxw4001) new_esEs25(Left(vxw3000), Left(vxw40000), ty_Double, dde) -> new_esEs23(vxw3000, vxw40000) new_lt17(vxw79, vxw81, bac, bad) -> new_esEs12(new_compare27(vxw79, vxw81, bac, bad), LT) new_ltEs21(vxw301, vxw311, app(app(ty_Either, cbf), cbg)) -> new_ltEs16(vxw301, vxw311, cbf, cbg) new_esEs7(vxw302, vxw4002, ty_Float) -> new_esEs14(vxw302, vxw4002) new_lt20(vxw79, vxw81, ty_Integer) -> new_lt10(vxw79, vxw81) new_ltEs21(vxw301, vxw311, ty_@0) -> new_ltEs15(vxw301, vxw311) new_esEs7(vxw302, vxw4002, ty_@0) -> new_esEs22(vxw302, vxw4002) new_ltEs16(Right(vxw300), Right(vxw310), eef, ty_Integer) -> new_ltEs7(vxw300, vxw310) new_esEs39(vxw3000, vxw40000, app(app(app(ty_@3, fce), fcf), fcg)) -> new_esEs20(vxw3000, vxw40000, fce, fcf, fcg) new_ltEs16(Left(vxw300), Left(vxw310), app(ty_[], edd), edc) -> new_ltEs8(vxw300, vxw310, edd) new_esEs36(vxw3000, vxw40000, ty_Ordering) -> new_esEs12(vxw3000, vxw40000) new_lt21(vxw300, vxw310, ty_Ordering) -> new_lt13(vxw300, vxw310) new_compare16(Just(vxw300), Just(vxw4000), dgc) -> new_compare211(vxw300, vxw4000, new_esEs4(vxw300, vxw4000, dgc), dgc) new_ltEs24(vxw30, vxw31, app(ty_Ratio, bhh)) -> new_ltEs14(vxw30, vxw31, bhh) new_ltEs9(Just(vxw300), Just(vxw310), ty_Char) -> new_ltEs6(vxw300, vxw310) new_ltEs4(@3(vxw300, vxw301, vxw302), @3(vxw310, vxw311, vxw312), da, db, dc) -> new_pePe(new_lt8(vxw300, vxw310, da), new_asAs(new_esEs27(vxw300, vxw310, da), new_pePe(new_lt7(vxw301, vxw311, db), new_asAs(new_esEs26(vxw301, vxw311, db), new_ltEs5(vxw302, vxw312, dc))))) new_esEs6(vxw300, vxw4000, ty_@0) -> new_esEs22(vxw300, vxw4000) new_esEs29(vxw3001, vxw40001, ty_Ordering) -> new_esEs12(vxw3001, vxw40001) new_esEs27(vxw300, vxw310, app(ty_Ratio, gh)) -> new_esEs17(vxw300, vxw310, gh) new_ltEs11(EQ, GT) -> True new_esEs7(vxw302, vxw4002, app(ty_[], cec)) -> new_esEs24(vxw302, vxw4002, cec) new_lt23(vxw52, vxw55, ty_Float) -> new_lt6(vxw52, vxw55) new_esEs37(vxw53, vxw56, app(app(ty_Either, faf), fag)) -> new_esEs25(vxw53, vxw56, faf, fag) new_ltEs21(vxw301, vxw311, ty_Bool) -> new_ltEs18(vxw301, vxw311) new_esEs11(vxw300, vxw4000, ty_Char) -> new_esEs18(vxw300, vxw4000) new_lt7(vxw301, vxw311, ty_@0) -> new_lt16(vxw301, vxw311) new_esEs32(vxw3001, vxw40001, ty_Int) -> new_esEs21(vxw3001, vxw40001) new_ltEs18(False, True) -> True new_compare17(GT, GT) -> EQ new_lt20(vxw79, vxw81, ty_Bool) -> new_lt19(vxw79, vxw81) new_esEs10(vxw300, vxw4000, ty_Integer) -> new_esEs16(vxw300, vxw4000) new_esEs28(vxw79, vxw81, app(ty_[], he)) -> new_esEs24(vxw79, vxw81, he) new_esEs35(vxw3001, vxw40001, ty_Ordering) -> new_esEs12(vxw3001, vxw40001) new_esEs28(vxw79, vxw81, ty_Double) -> new_esEs23(vxw79, vxw81) new_esEs30(vxw3000, vxw40000, app(app(ty_@2, beg), beh)) -> new_esEs15(vxw3000, vxw40000, beg, beh) new_ltEs11(EQ, EQ) -> True new_esEs10(vxw300, vxw4000, app(ty_Maybe, dbh)) -> new_esEs13(vxw300, vxw4000, dbh) new_compare211(vxw30, vxw31, False, fhg) -> new_compare113(vxw30, vxw31, new_ltEs24(vxw30, vxw31, fhg), fhg) new_ltEs16(Left(vxw300), Left(vxw310), ty_Ordering, edc) -> new_ltEs11(vxw300, vxw310) new_esEs5(vxw301, vxw4001, ty_Char) -> new_esEs18(vxw301, vxw4001) new_esEs6(vxw300, vxw4000, ty_Float) -> new_esEs14(vxw300, vxw4000) new_esEs26(vxw301, vxw311, ty_Int) -> new_esEs21(vxw301, vxw311) new_esEs12(GT, GT) -> True new_lt22(vxw53, vxw56, app(app(app(ty_@3, fab), fac), fad)) -> new_lt14(vxw53, vxw56, fab, fac, fad) new_lt20(vxw79, vxw81, ty_Ordering) -> new_lt13(vxw79, vxw81) new_lt22(vxw53, vxw56, app(app(ty_Either, faf), fag)) -> new_lt17(vxw53, vxw56, faf, fag) new_ltEs22(vxw63, vxw64, app(app(ty_@2, chg), chh)) -> new_ltEs10(vxw63, vxw64, chg, chh) new_lt8(vxw300, vxw310, app(ty_[], ga)) -> new_lt11(vxw300, vxw310, ga) new_ltEs20(vxw70, vxw71, ty_@0) -> new_ltEs15(vxw70, vxw71) new_ltEs16(Right(vxw300), Left(vxw310), eef, edc) -> False new_esEs31(vxw300, vxw310, ty_Integer) -> new_esEs16(vxw300, vxw310) new_primCompAux00(vxw23, vxw24, EQ, app(app(app(ty_@3, bhb), bhc), bhd)) -> new_compare18(vxw23, vxw24, bhb, bhc, bhd) new_ltEs24(vxw30, vxw31, app(ty_[], dhb)) -> new_ltEs8(vxw30, vxw31, dhb) new_lt21(vxw300, vxw310, app(ty_[], cbh)) -> new_lt11(vxw300, vxw310, cbh) new_ltEs16(Right(vxw300), Right(vxw310), eef, ty_Float) -> new_ltEs13(vxw300, vxw310) new_ltEs19(vxw80, vxw82, ty_@0) -> new_ltEs15(vxw80, vxw82) new_primCmpInt(Pos(Succ(vxw3000)), Pos(vxw4000)) -> new_primCmpNat0(Succ(vxw3000), vxw4000) new_esEs38(vxw52, vxw55, ty_@0) -> new_esEs22(vxw52, vxw55) new_esEs13(Just(vxw3000), Just(vxw40000), app(ty_[], cb)) -> new_esEs24(vxw3000, vxw40000, cb) new_esEs31(vxw300, vxw310, app(ty_Maybe, cca)) -> new_esEs13(vxw300, vxw310, cca) new_esEs4(vxw300, vxw4000, ty_Integer) -> new_esEs16(vxw300, vxw4000) new_ltEs11(GT, GT) -> True new_esEs12(EQ, EQ) -> True new_esEs6(vxw300, vxw4000, app(app(ty_Either, ffh), fga)) -> new_esEs25(vxw300, vxw4000, ffh, fga) new_lt19(vxw79, vxw81) -> new_esEs12(new_compare9(vxw79, vxw81), LT) new_esEs25(Right(vxw3000), Right(vxw40000), deh, ty_Ordering) -> new_esEs12(vxw3000, vxw40000) new_esEs10(vxw300, vxw4000, ty_Bool) -> new_esEs19(vxw300, vxw4000) new_esEs36(vxw3000, vxw40000, app(ty_Maybe, ecf)) -> new_esEs13(vxw3000, vxw40000, ecf) new_esEs8(vxw301, vxw4001, app(app(ty_@2, ceg), ceh)) -> new_esEs15(vxw301, vxw4001, ceg, ceh) new_ltEs16(Left(vxw300), Left(vxw310), ty_@0, edc) -> new_ltEs15(vxw300, vxw310) new_esEs13(Just(vxw3000), Just(vxw40000), app(app(ty_@2, bd), be)) -> new_esEs15(vxw3000, vxw40000, bd, be) new_ltEs19(vxw80, vxw82, app(ty_[], bae)) -> new_ltEs8(vxw80, vxw82, bae) new_ltEs19(vxw80, vxw82, ty_Bool) -> new_ltEs18(vxw80, vxw82) new_esEs11(vxw300, vxw4000, ty_Int) -> new_esEs21(vxw300, vxw4000) new_ltEs5(vxw302, vxw312, app(app(ty_Either, ed), ee)) -> new_ltEs16(vxw302, vxw312, ed, ee) new_esEs25(Right(vxw3000), Right(vxw40000), deh, app(app(app(ty_@3, dfd), dfe), dff)) -> new_esEs20(vxw3000, vxw40000, dfd, dfe, dff) new_esEs5(vxw301, vxw4001, app(app(ty_Either, fef), feg)) -> new_esEs25(vxw301, vxw4001, fef, feg) new_esEs5(vxw301, vxw4001, ty_Float) -> new_esEs14(vxw301, vxw4001) new_ltEs21(vxw301, vxw311, app(app(ty_@2, cah), cba)) -> new_ltEs10(vxw301, vxw311, cah, cba) new_lt21(vxw300, vxw310, ty_Char) -> new_lt9(vxw300, vxw310) new_compare10(vxw129, vxw130, vxw131, vxw132, True, vxw134, bga, bgb) -> new_compare12(vxw129, vxw130, vxw131, vxw132, True, bga, bgb) new_esEs28(vxw79, vxw81, app(app(ty_@2, cf), cg)) -> new_esEs15(vxw79, vxw81, cf, cg) new_esEs30(vxw3000, vxw40000, ty_Double) -> new_esEs23(vxw3000, vxw40000) new_primCompAux00(vxw23, vxw24, EQ, app(ty_Ratio, bhe)) -> new_compare8(vxw23, vxw24, bhe) new_esEs4(vxw300, vxw4000, ty_Bool) -> new_esEs19(vxw300, vxw4000) new_esEs31(vxw300, vxw310, app(app(app(ty_@3, ccd), cce), ccf)) -> new_esEs20(vxw300, vxw310, ccd, cce, ccf) new_esEs33(vxw3000, vxw40000, ty_Int) -> new_esEs21(vxw3000, vxw40000) new_ltEs20(vxw70, vxw71, app(ty_[], bca)) -> new_ltEs8(vxw70, vxw71, bca) new_esEs36(vxw3000, vxw40000, app(app(app(ty_@3, ecb), ecc), ecd)) -> new_esEs20(vxw3000, vxw40000, ecb, ecc, ecd) new_esEs29(vxw3001, vxw40001, ty_Double) -> new_esEs23(vxw3001, vxw40001) new_esEs30(vxw3000, vxw40000, app(ty_Maybe, bff)) -> new_esEs13(vxw3000, vxw40000, bff) new_esEs10(vxw300, vxw4000, ty_Ordering) -> new_esEs12(vxw300, vxw4000) new_esEs13(Just(vxw3000), Just(vxw40000), ty_Double) -> new_esEs23(vxw3000, vxw40000) new_compare25(vxw79, vxw80, vxw81, vxw82, False, hc, hd) -> new_compare10(vxw79, vxw80, vxw81, vxw82, new_lt20(vxw79, vxw81, hc), new_asAs(new_esEs28(vxw79, vxw81, hc), new_ltEs19(vxw80, vxw82, hd)), hc, hd) new_lt8(vxw300, vxw310, ty_Bool) -> new_lt19(vxw300, vxw310) new_lt7(vxw301, vxw311, ty_Float) -> new_lt6(vxw301, vxw311) new_compare4(vxw30, vxw400, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_compare18(vxw30, vxw400, cdb, cdc, cdd) new_primCompAux00(vxw23, vxw24, EQ, app(ty_Maybe, bgg)) -> new_compare16(vxw23, vxw24, bgg) new_ltEs5(vxw302, vxw312, ty_Float) -> new_ltEs13(vxw302, vxw312) new_esEs34(vxw3002, vxw40002, ty_@0) -> new_esEs22(vxw3002, vxw40002) new_esEs4(vxw300, vxw4000, ty_Char) -> new_esEs18(vxw300, vxw4000) new_esEs27(vxw300, vxw310, ty_Int) -> new_esEs21(vxw300, vxw310) new_esEs11(vxw300, vxw4000, ty_Bool) -> new_esEs19(vxw300, vxw4000) new_compare17(EQ, EQ) -> EQ new_ltEs9(Just(vxw300), Just(vxw310), app(ty_Maybe, fge)) -> new_ltEs9(vxw300, vxw310, fge) new_esEs29(vxw3001, vxw40001, app(ty_Maybe, bed)) -> new_esEs13(vxw3001, vxw40001, bed) new_lt22(vxw53, vxw56, ty_Float) -> new_lt6(vxw53, vxw56) new_lt23(vxw52, vxw55, app(app(ty_Either, fbh), fca)) -> new_lt17(vxw52, vxw55, fbh, fca) new_compare4(vxw30, vxw400, ty_Bool) -> new_compare9(vxw30, vxw400) new_lt8(vxw300, vxw310, ty_@0) -> new_lt16(vxw300, vxw310) new_esEs35(vxw3001, vxw40001, app(ty_Maybe, ebd)) -> new_esEs13(vxw3001, vxw40001, ebd) new_esEs27(vxw300, vxw310, app(ty_[], ga)) -> new_esEs24(vxw300, vxw310, ga) new_esEs31(vxw300, vxw310, ty_Int) -> new_esEs21(vxw300, vxw310) new_ltEs9(Just(vxw300), Just(vxw310), ty_Bool) -> new_ltEs18(vxw300, vxw310) new_ltEs16(Left(vxw300), Left(vxw310), ty_Char, edc) -> new_ltEs6(vxw300, vxw310) new_ltEs23(vxw54, vxw57, app(ty_[], egd)) -> new_ltEs8(vxw54, vxw57, egd) new_lt23(vxw52, vxw55, ty_@0) -> new_lt16(vxw52, vxw55) new_esEs36(vxw3000, vxw40000, ty_Float) -> new_esEs14(vxw3000, vxw40000) new_esEs27(vxw300, vxw310, ty_Double) -> new_esEs23(vxw300, vxw310) new_ltEs9(Just(vxw300), Just(vxw310), app(app(ty_Either, fhd), fhe)) -> new_ltEs16(vxw300, vxw310, fhd, fhe) new_esEs28(vxw79, vxw81, ty_Ordering) -> new_esEs12(vxw79, vxw81) new_ltEs12(vxw30, vxw31) -> new_fsEs(new_compare5(vxw30, vxw31)) new_esEs37(vxw53, vxw56, ty_Bool) -> new_esEs19(vxw53, vxw56) new_lt21(vxw300, vxw310, app(app(ty_Either, cch), cda)) -> new_lt17(vxw300, vxw310, cch, cda) new_esEs36(vxw3000, vxw40000, app(app(ty_Either, ecg), ech)) -> new_esEs25(vxw3000, vxw40000, ecg, ech) new_esEs16(Integer(vxw3000), Integer(vxw40000)) -> new_primEqInt(vxw3000, vxw40000) new_ltEs16(Right(vxw300), Right(vxw310), eef, ty_Bool) -> new_ltEs18(vxw300, vxw310) new_esEs13(Just(vxw3000), Just(vxw40000), app(ty_Ratio, bf)) -> new_esEs17(vxw3000, vxw40000, bf) new_esEs11(vxw300, vxw4000, ty_Integer) -> new_esEs16(vxw300, vxw4000) new_esEs4(vxw300, vxw4000, app(app(ty_Either, deh), dde)) -> new_esEs25(vxw300, vxw4000, deh, dde) new_esEs34(vxw3002, vxw40002, ty_Integer) -> new_esEs16(vxw3002, vxw40002) new_ltEs16(Left(vxw300), Left(vxw310), app(ty_Ratio, eec), edc) -> new_ltEs14(vxw300, vxw310, eec) new_compare113(vxw102, vxw103, False, dha) -> GT new_esEs38(vxw52, vxw55, ty_Float) -> new_esEs14(vxw52, vxw55) new_primPlusNat0(Succ(vxw1590), vxw30100) -> Succ(Succ(new_primPlusNat1(vxw1590, vxw30100))) new_primCompAux00(vxw23, vxw24, EQ, ty_Double) -> new_compare28(vxw23, vxw24) new_esEs11(vxw300, vxw4000, app(ty_Maybe, ddb)) -> new_esEs13(vxw300, vxw4000, ddb) new_compare11(vxw119, vxw120, True, eda, edb) -> LT new_esEs25(Right(vxw3000), Right(vxw40000), deh, app(ty_Ratio, dfc)) -> new_esEs17(vxw3000, vxw40000, dfc) new_esEs34(vxw3002, vxw40002, app(ty_Maybe, eab)) -> new_esEs13(vxw3002, vxw40002, eab) new_compare7(Float(vxw300, Pos(vxw3010)), Float(vxw4000, Neg(vxw40010))) -> new_compare5(new_sr(vxw300, Pos(vxw40010)), new_sr(Neg(vxw3010), vxw4000)) new_compare7(Float(vxw300, Neg(vxw3010)), Float(vxw4000, Pos(vxw40010))) -> new_compare5(new_sr(vxw300, Neg(vxw40010)), new_sr(Pos(vxw3010), vxw4000)) new_esEs17(:%(vxw3000, vxw3001), :%(vxw40000, vxw40001), dgd) -> new_asAs(new_esEs33(vxw3000, vxw40000, dgd), new_esEs32(vxw3001, vxw40001, dgd)) new_ltEs21(vxw301, vxw311, app(ty_[], caf)) -> new_ltEs8(vxw301, vxw311, caf) new_esEs35(vxw3001, vxw40001, ty_Char) -> new_esEs18(vxw3001, vxw40001) new_esEs35(vxw3001, vxw40001, app(app(app(ty_@3, eah), eba), ebb)) -> new_esEs20(vxw3001, vxw40001, eah, eba, ebb) new_primPlusNat1(Zero, Zero) -> Zero new_lt7(vxw301, vxw311, ty_Bool) -> new_lt19(vxw301, vxw311) new_esEs35(vxw3001, vxw40001, ty_Bool) -> new_esEs19(vxw3001, vxw40001) new_esEs13(Just(vxw3000), Just(vxw40000), ty_Ordering) -> new_esEs12(vxw3000, vxw40000) new_esEs25(Right(vxw3000), Right(vxw40000), deh, app(ty_Maybe, dfh)) -> new_esEs13(vxw3000, vxw40000, dfh) new_esEs28(vxw79, vxw81, app(ty_Ratio, bab)) -> new_esEs17(vxw79, vxw81, bab) new_esEs10(vxw300, vxw4000, app(app(app(ty_@3, dbd), dbe), dbf)) -> new_esEs20(vxw300, vxw4000, dbd, dbe, dbf) new_lt11(vxw79, vxw81, he) -> new_esEs12(new_compare15(vxw79, vxw81, he), LT) new_esEs23(Double(vxw3000, vxw3001), Double(vxw40000, vxw40001)) -> new_esEs21(new_sr(vxw3000, vxw40001), new_sr(vxw3001, vxw40000)) new_esEs13(Just(vxw3000), Just(vxw40000), ty_Int) -> new_esEs21(vxw3000, vxw40000) new_esEs37(vxw53, vxw56, ty_@0) -> new_esEs22(vxw53, vxw56) new_lt22(vxw53, vxw56, ty_Char) -> new_lt9(vxw53, vxw56) new_primCmpNat0(Succ(vxw3000), Succ(vxw40000)) -> new_primCmpNat0(vxw3000, vxw40000) new_lt20(vxw79, vxw81, ty_@0) -> new_lt16(vxw79, vxw81) new_esEs11(vxw300, vxw4000, app(app(app(ty_@3, dcf), dcg), dch)) -> new_esEs20(vxw300, vxw4000, dcf, dcg, dch) new_esEs31(vxw300, vxw310, ty_Ordering) -> new_esEs12(vxw300, vxw310) new_esEs36(vxw3000, vxw40000, ty_Integer) -> new_esEs16(vxw3000, vxw40000) new_esEs29(vxw3001, vxw40001, ty_Int) -> new_esEs21(vxw3001, vxw40001) new_esEs34(vxw3002, vxw40002, app(app(app(ty_@3, dhf), dhg), dhh)) -> new_esEs20(vxw3002, vxw40002, dhf, dhg, dhh) new_esEs37(vxw53, vxw56, ty_Char) -> new_esEs18(vxw53, vxw56) new_ltEs16(Left(vxw300), Left(vxw310), app(app(ty_@2, edf), edg), edc) -> new_ltEs10(vxw300, vxw310, edf, edg) new_esEs36(vxw3000, vxw40000, ty_@0) -> new_esEs22(vxw3000, vxw40000) new_ltEs16(Right(vxw300), Right(vxw310), eef, app(ty_[], eeg)) -> new_ltEs8(vxw300, vxw310, eeg) new_ltEs9(Just(vxw300), Just(vxw310), ty_@0) -> new_ltEs15(vxw300, vxw310) new_lt7(vxw301, vxw311, ty_Char) -> new_lt9(vxw301, vxw311) new_ltEs18(True, True) -> True new_lt12(vxw79, vxw81, hf) -> new_esEs12(new_compare16(vxw79, vxw81, hf), LT) new_esEs13(Nothing, Nothing, bc) -> True new_lt21(vxw300, vxw310, ty_@0) -> new_lt16(vxw300, vxw310) new_ltEs16(Left(vxw300), Left(vxw310), ty_Integer, edc) -> new_ltEs7(vxw300, vxw310) new_lt21(vxw300, vxw310, ty_Bool) -> new_lt19(vxw300, vxw310) new_esEs36(vxw3000, vxw40000, ty_Char) -> new_esEs18(vxw3000, vxw40000) new_esEs35(vxw3001, vxw40001, ty_Integer) -> new_esEs16(vxw3001, vxw40001) new_ltEs9(Just(vxw300), Just(vxw310), ty_Float) -> new_ltEs13(vxw300, vxw310) new_esEs36(vxw3000, vxw40000, ty_Bool) -> new_esEs19(vxw3000, vxw40000) new_lt8(vxw300, vxw310, ty_Char) -> new_lt9(vxw300, vxw310) new_esEs30(vxw3000, vxw40000, ty_Ordering) -> new_esEs12(vxw3000, vxw40000) new_esEs29(vxw3001, vxw40001, app(ty_Ratio, bdg)) -> new_esEs17(vxw3001, vxw40001, bdg) new_esEs30(vxw3000, vxw40000, app(ty_Ratio, bfa)) -> new_esEs17(vxw3000, vxw40000, bfa) new_esEs14(Float(vxw3000, vxw3001), Float(vxw40000, vxw40001)) -> new_esEs21(new_sr(vxw3000, vxw40001), new_sr(vxw3001, vxw40000)) new_esEs25(Right(vxw3000), Right(vxw40000), deh, ty_Double) -> new_esEs23(vxw3000, vxw40000) new_primCompAux00(vxw23, vxw24, EQ, ty_Char) -> new_compare13(vxw23, vxw24) new_ltEs13(vxw30, vxw31) -> new_fsEs(new_compare7(vxw30, vxw31)) new_compare4(vxw30, vxw400, ty_Integer) -> new_compare14(vxw30, vxw400) new_esEs30(vxw3000, vxw40000, ty_Int) -> new_esEs21(vxw3000, vxw40000) new_esEs38(vxw52, vxw55, app(app(ty_Either, fbh), fca)) -> new_esEs25(vxw52, vxw55, fbh, fca) new_esEs37(vxw53, vxw56, ty_Float) -> new_esEs14(vxw53, vxw56) new_ltEs16(Right(vxw300), Right(vxw310), eef, app(app(ty_@2, efa), efb)) -> new_ltEs10(vxw300, vxw310, efa, efb) new_ltEs23(vxw54, vxw57, app(app(ty_@2, egf), egg)) -> new_ltEs10(vxw54, vxw57, egf, egg) new_compare14(Integer(vxw300), Integer(vxw4000)) -> new_primCmpInt(vxw300, vxw4000) new_esEs13(Nothing, Just(vxw40000), bc) -> False new_esEs13(Just(vxw3000), Nothing, bc) -> False new_compare9(False, True) -> LT new_esEs19(True, True) -> True new_lt23(vxw52, vxw55, ty_Char) -> new_lt9(vxw52, vxw55) new_compare29(vxw52, vxw53, vxw54, vxw55, vxw56, vxw57, False, ega, egb, egc) -> new_compare112(vxw52, vxw53, vxw54, vxw55, vxw56, vxw57, new_lt23(vxw52, vxw55, ega), new_asAs(new_esEs38(vxw52, vxw55, ega), new_pePe(new_lt22(vxw53, vxw56, egb), new_asAs(new_esEs37(vxw53, vxw56, egb), new_ltEs23(vxw54, vxw57, egc)))), ega, egb, egc) new_compare17(GT, LT) -> GT new_esEs10(vxw300, vxw4000, app(ty_Ratio, dbc)) -> new_esEs17(vxw300, vxw4000, dbc) new_ltEs22(vxw63, vxw64, app(ty_[], che)) -> new_ltEs8(vxw63, vxw64, che) new_primCmpInt(Neg(Succ(vxw3000)), Pos(vxw4000)) -> LT new_lt22(vxw53, vxw56, ty_Ordering) -> new_lt13(vxw53, vxw56) new_esEs34(vxw3002, vxw40002, ty_Char) -> new_esEs18(vxw3002, vxw40002) new_esEs38(vxw52, vxw55, app(app(app(ty_@3, fbd), fbe), fbf)) -> new_esEs20(vxw52, vxw55, fbd, fbe, fbf) new_ltEs5(vxw302, vxw312, ty_@0) -> new_ltEs15(vxw302, vxw312) new_esEs37(vxw53, vxw56, ty_Ordering) -> new_esEs12(vxw53, vxw56) new_compare9(False, False) -> EQ new_ltEs10(@2(vxw300, vxw301), @2(vxw310, vxw311), cad, cae) -> new_pePe(new_lt21(vxw300, vxw310, cad), new_asAs(new_esEs31(vxw300, vxw310, cad), new_ltEs21(vxw301, vxw311, cae))) new_esEs25(Left(vxw3000), Left(vxw40000), app(ty_[], ded), dde) -> new_esEs24(vxw3000, vxw40000, ded) new_ltEs9(Just(vxw300), Just(vxw310), ty_Ordering) -> new_ltEs11(vxw300, vxw310) new_compare4(vxw30, vxw400, ty_Float) -> new_compare7(vxw30, vxw400) new_ltEs9(Just(vxw300), Just(vxw310), app(ty_[], fgd)) -> new_ltEs8(vxw300, vxw310, fgd) new_primCmpInt(Pos(Zero), Neg(Succ(vxw40000))) -> GT new_compare26(vxw70, vxw71, False, bbg, bbh) -> new_compare11(vxw70, vxw71, new_ltEs20(vxw70, vxw71, bbh), bbg, bbh) new_primCmpInt(Neg(Succ(vxw3000)), Neg(vxw4000)) -> new_primCmpNat0(vxw4000, Succ(vxw3000)) new_esEs27(vxw300, vxw310, ty_Integer) -> new_esEs16(vxw300, vxw310) new_esEs6(vxw300, vxw4000, ty_Integer) -> new_esEs16(vxw300, vxw4000) new_ltEs21(vxw301, vxw311, ty_Char) -> new_ltEs6(vxw301, vxw311) new_ltEs11(GT, EQ) -> False new_esEs13(Just(vxw3000), Just(vxw40000), ty_Bool) -> new_esEs19(vxw3000, vxw40000) new_ltEs19(vxw80, vxw82, app(ty_Maybe, baf)) -> new_ltEs9(vxw80, vxw82, baf) new_esEs8(vxw301, vxw4001, ty_Float) -> new_esEs14(vxw301, vxw4001) new_compare12(vxw129, vxw130, vxw131, vxw132, True, bga, bgb) -> LT new_esEs29(vxw3001, vxw40001, ty_Float) -> new_esEs14(vxw3001, vxw40001) new_ltEs16(Left(vxw300), Left(vxw310), ty_Float, edc) -> new_ltEs13(vxw300, vxw310) new_esEs9(vxw300, vxw4000, ty_Double) -> new_esEs23(vxw300, vxw4000) new_esEs21(vxw300, vxw4000) -> new_primEqInt(vxw300, vxw4000) new_ltEs5(vxw302, vxw312, ty_Ordering) -> new_ltEs11(vxw302, vxw312) new_ltEs22(vxw63, vxw64, ty_Integer) -> new_ltEs7(vxw63, vxw64) new_esEs8(vxw301, vxw4001, ty_@0) -> new_esEs22(vxw301, vxw4001) new_esEs7(vxw302, vxw4002, ty_Int) -> new_esEs21(vxw302, vxw4002) new_compare17(GT, EQ) -> GT new_esEs4(vxw300, vxw4000, app(ty_Ratio, dgd)) -> new_esEs17(vxw300, vxw4000, dgd) new_esEs39(vxw3000, vxw40000, app(app(ty_Either, fdb), fdc)) -> new_esEs25(vxw3000, vxw40000, fdb, fdc) new_esEs13(Just(vxw3000), Just(vxw40000), ty_Char) -> new_esEs18(vxw3000, vxw40000) new_primEqInt(Pos(Succ(vxw30000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(vxw400000))) -> False new_lt21(vxw300, vxw310, app(app(ty_@2, ccb), ccc)) -> new_lt5(vxw300, vxw310, ccb, ccc) new_compare210(vxw63, vxw64, True, chc, chd) -> EQ new_esEs37(vxw53, vxw56, app(app(ty_@2, ehh), faa)) -> new_esEs15(vxw53, vxw56, ehh, faa) new_ltEs19(vxw80, vxw82, ty_Int) -> new_ltEs12(vxw80, vxw82) new_esEs29(vxw3001, vxw40001, ty_@0) -> new_esEs22(vxw3001, vxw40001) new_ltEs9(Just(vxw300), Just(vxw310), ty_Integer) -> new_ltEs7(vxw300, vxw310) new_esEs25(Left(vxw3000), Left(vxw40000), app(app(ty_Either, def), deg), dde) -> new_esEs25(vxw3000, vxw40000, def, deg) new_primCompAux00(vxw23, vxw24, EQ, app(app(ty_@2, bgh), bha)) -> new_compare6(vxw23, vxw24, bgh, bha) new_compare4(vxw30, vxw400, ty_Ordering) -> new_compare17(vxw30, vxw400) new_ltEs16(Left(vxw300), Left(vxw310), app(app(ty_Either, eed), eee), edc) -> new_ltEs16(vxw300, vxw310, eed, eee) new_ltEs22(vxw63, vxw64, ty_Ordering) -> new_ltEs11(vxw63, vxw64) new_ltEs24(vxw30, vxw31, ty_Double) -> new_ltEs17(vxw30, vxw31) new_ltEs20(vxw70, vxw71, app(app(ty_@2, bcc), bcd)) -> new_ltEs10(vxw70, vxw71, bcc, bcd) new_lt23(vxw52, vxw55, ty_Bool) -> new_lt19(vxw52, vxw55) new_esEs39(vxw3000, vxw40000, ty_Char) -> new_esEs18(vxw3000, vxw40000) new_primCmpNat0(Zero, Zero) -> EQ new_ltEs5(vxw302, vxw312, app(ty_[], dd)) -> new_ltEs8(vxw302, vxw312, dd) new_ltEs24(vxw30, vxw31, ty_Float) -> new_ltEs13(vxw30, vxw31) new_esEs28(vxw79, vxw81, ty_Int) -> new_esEs21(vxw79, vxw81) new_esEs37(vxw53, vxw56, ty_Integer) -> new_esEs16(vxw53, vxw56) new_compare4(vxw30, vxw400, ty_Double) -> new_compare28(vxw30, vxw400) new_ltEs19(vxw80, vxw82, ty_Double) -> new_ltEs17(vxw80, vxw82) new_ltEs16(Left(vxw300), Right(vxw310), eef, edc) -> True new_esEs12(LT, LT) -> True new_esEs4(vxw300, vxw4000, app(ty_[], dgh)) -> new_esEs24(vxw300, vxw4000, dgh) new_esEs27(vxw300, vxw310, ty_Bool) -> new_esEs19(vxw300, vxw310) new_ltEs21(vxw301, vxw311, app(ty_Maybe, cag)) -> new_ltEs9(vxw301, vxw311, cag) new_ltEs19(vxw80, vxw82, ty_Char) -> new_ltEs6(vxw80, vxw82) new_primCompAux00(vxw23, vxw24, EQ, app(app(ty_Either, bhf), bhg)) -> new_compare27(vxw23, vxw24, bhf, bhg) new_esEs39(vxw3000, vxw40000, ty_Float) -> new_esEs14(vxw3000, vxw40000) new_ltEs5(vxw302, vxw312, ty_Bool) -> new_ltEs18(vxw302, vxw312) new_esEs7(vxw302, vxw4002, app(app(app(ty_@3, cdh), cea), ceb)) -> new_esEs20(vxw302, vxw4002, cdh, cea, ceb) new_lt4(vxw79, vxw81) -> new_esEs12(new_compare5(vxw79, vxw81), LT) new_ltEs19(vxw80, vxw82, ty_Float) -> new_ltEs13(vxw80, vxw82) new_ltEs24(vxw30, vxw31, ty_Bool) -> new_ltEs18(vxw30, vxw31) new_esEs27(vxw300, vxw310, ty_Ordering) -> new_esEs12(vxw300, vxw310) new_compare15([], [], fgb) -> EQ new_esEs29(vxw3001, vxw40001, app(app(ty_Either, bee), bef)) -> new_esEs25(vxw3001, vxw40001, bee, bef) new_primCompAux00(vxw23, vxw24, EQ, ty_Int) -> new_compare5(vxw23, vxw24) new_ltEs11(GT, LT) -> False new_compare110(vxw109, vxw110, True, bgc, bgd) -> LT new_esEs38(vxw52, vxw55, ty_Int) -> new_esEs21(vxw52, vxw55) new_compare29(vxw52, vxw53, vxw54, vxw55, vxw56, vxw57, True, ega, egb, egc) -> EQ new_esEs39(vxw3000, vxw40000, ty_Bool) -> new_esEs19(vxw3000, vxw40000) new_compare17(EQ, LT) -> GT new_esEs27(vxw300, vxw310, app(app(ty_@2, gc), gd)) -> new_esEs15(vxw300, vxw310, gc, gd) new_esEs25(Left(vxw3000), Left(vxw40000), app(app(app(ty_@3, dea), deb), dec), dde) -> new_esEs20(vxw3000, vxw40000, dea, deb, dec) new_esEs39(vxw3000, vxw40000, ty_@0) -> new_esEs22(vxw3000, vxw40000) new_esEs9(vxw300, vxw4000, app(ty_[], cgg)) -> new_esEs24(vxw300, vxw4000, cgg) new_esEs34(vxw3002, vxw40002, ty_Bool) -> new_esEs19(vxw3002, vxw40002) new_lt8(vxw300, vxw310, ty_Int) -> new_lt4(vxw300, vxw310) new_lt8(vxw300, vxw310, app(app(ty_Either, ha), hb)) -> new_lt17(vxw300, vxw310, ha, hb) new_esEs9(vxw300, vxw4000, ty_Ordering) -> new_esEs12(vxw300, vxw4000) new_ltEs11(LT, LT) -> True new_lt20(vxw79, vxw81, app(app(app(ty_@3, hg), hh), baa)) -> new_lt14(vxw79, vxw81, hg, hh, baa) new_ltEs21(vxw301, vxw311, ty_Int) -> new_ltEs12(vxw301, vxw311) new_compare8(:%(vxw300, vxw301), :%(vxw4000, vxw4001), ty_Integer) -> new_compare14(new_sr0(vxw300, vxw4001), new_sr0(vxw4000, vxw301)) new_ltEs23(vxw54, vxw57, app(app(app(ty_@3, egh), eha), ehb)) -> new_ltEs4(vxw54, vxw57, egh, eha, ehb) new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_esEs9(vxw300, vxw4000, app(app(ty_@2, cga), cgb)) -> new_esEs15(vxw300, vxw4000, cga, cgb) new_esEs11(vxw300, vxw4000, ty_@0) -> new_esEs22(vxw300, vxw4000) new_esEs10(vxw300, vxw4000, ty_Int) -> new_esEs21(vxw300, vxw4000) new_esEs4(vxw300, vxw4000, app(app(ty_@2, bdc), bdd)) -> new_esEs15(vxw300, vxw4000, bdc, bdd) new_esEs32(vxw3001, vxw40001, ty_Integer) -> new_esEs16(vxw3001, vxw40001) new_primCmpNat0(Succ(vxw3000), Zero) -> GT new_esEs5(vxw301, vxw4001, app(ty_Maybe, fee)) -> new_esEs13(vxw301, vxw4001, fee) new_ltEs22(vxw63, vxw64, ty_Bool) -> new_ltEs18(vxw63, vxw64) new_ltEs22(vxw63, vxw64, app(app(ty_Either, dae), daf)) -> new_ltEs16(vxw63, vxw64, dae, daf) new_compare16(Just(vxw300), Nothing, dgc) -> GT new_pePe(False, vxw158) -> vxw158 new_esEs10(vxw300, vxw4000, ty_Double) -> new_esEs23(vxw300, vxw4000) new_compare25(vxw79, vxw80, vxw81, vxw82, True, hc, hd) -> EQ new_esEs11(vxw300, vxw4000, ty_Float) -> new_esEs14(vxw300, vxw4000) new_esEs8(vxw301, vxw4001, ty_Char) -> new_esEs18(vxw301, vxw4001) new_esEs10(vxw300, vxw4000, app(ty_[], dbg)) -> new_esEs24(vxw300, vxw4000, dbg) new_lt22(vxw53, vxw56, app(ty_[], ehf)) -> new_lt11(vxw53, vxw56, ehf) new_compare6(@2(vxw300, vxw301), @2(vxw4000, vxw4001), fdd, fde) -> new_compare25(vxw300, vxw301, vxw4000, vxw4001, new_asAs(new_esEs6(vxw300, vxw4000, fdd), new_esEs5(vxw301, vxw4001, fde)), fdd, fde) new_esEs6(vxw300, vxw4000, ty_Double) -> new_esEs23(vxw300, vxw4000) new_ltEs21(vxw301, vxw311, ty_Double) -> new_ltEs17(vxw301, vxw311) new_esEs34(vxw3002, vxw40002, ty_Float) -> new_esEs14(vxw3002, vxw40002) new_esEs30(vxw3000, vxw40000, app(app(app(ty_@3, bfb), bfc), bfd)) -> new_esEs20(vxw3000, vxw40000, bfb, bfc, bfd) new_esEs5(vxw301, vxw4001, ty_@0) -> new_esEs22(vxw301, vxw4001) new_lt22(vxw53, vxw56, ty_Integer) -> new_lt10(vxw53, vxw56) new_esEs6(vxw300, vxw4000, ty_Char) -> new_esEs18(vxw300, vxw4000) new_compare16(Nothing, Nothing, dgc) -> EQ new_compare11(vxw119, vxw120, False, eda, edb) -> GT new_primEqInt(Pos(Zero), Neg(Succ(vxw400000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(vxw400000))) -> False new_lt6(vxw79, vxw81) -> new_esEs12(new_compare7(vxw79, vxw81), LT) new_compare9(True, False) -> GT new_lt8(vxw300, vxw310, app(ty_Maybe, gb)) -> new_lt12(vxw300, vxw310, gb) new_esEs9(vxw300, vxw4000, app(ty_Ratio, cgc)) -> new_esEs17(vxw300, vxw4000, cgc) new_esEs25(Right(vxw3000), Right(vxw40000), deh, ty_Int) -> new_esEs21(vxw3000, vxw40000) new_ltEs20(vxw70, vxw71, app(app(ty_Either, bda), bdb)) -> new_ltEs16(vxw70, vxw71, bda, bdb) new_compare17(LT, LT) -> EQ new_lt20(vxw79, vxw81, ty_Float) -> new_lt6(vxw79, vxw81) new_esEs39(vxw3000, vxw40000, ty_Integer) -> new_esEs16(vxw3000, vxw40000) new_esEs29(vxw3001, vxw40001, ty_Char) -> new_esEs18(vxw3001, vxw40001) new_ltEs21(vxw301, vxw311, ty_Float) -> new_ltEs13(vxw301, vxw311) new_esEs34(vxw3002, vxw40002, ty_Ordering) -> new_esEs12(vxw3002, vxw40002) new_esEs31(vxw300, vxw310, app(app(ty_Either, cch), cda)) -> new_esEs25(vxw300, vxw310, cch, cda) new_compare27(Left(vxw300), Left(vxw4000), dag, dah) -> new_compare210(vxw300, vxw4000, new_esEs10(vxw300, vxw4000, dag), dag, dah) new_esEs28(vxw79, vxw81, app(ty_Maybe, hf)) -> new_esEs13(vxw79, vxw81, hf) new_compare7(Float(vxw300, Neg(vxw3010)), Float(vxw4000, Neg(vxw40010))) -> new_compare5(new_sr(vxw300, Neg(vxw40010)), new_sr(Neg(vxw3010), vxw4000)) new_compare5(vxw30, vxw400) -> new_primCmpInt(vxw30, vxw400) new_ltEs16(Right(vxw300), Right(vxw310), eef, ty_Char) -> new_ltEs6(vxw300, vxw310) new_ltEs16(Left(vxw300), Left(vxw310), ty_Int, edc) -> new_ltEs12(vxw300, vxw310) new_esEs24(:(vxw3000, vxw3001), [], dgh) -> False new_esEs24([], :(vxw40000, vxw40001), dgh) -> False new_primPlusNat0(Zero, vxw30100) -> Succ(vxw30100) new_esEs11(vxw300, vxw4000, app(app(ty_Either, ddc), ddd)) -> new_esEs25(vxw300, vxw4000, ddc, ddd) new_esEs5(vxw301, vxw4001, app(app(app(ty_@3, fea), feb), fec)) -> new_esEs20(vxw301, vxw4001, fea, feb, fec) new_esEs8(vxw301, vxw4001, ty_Bool) -> new_esEs19(vxw301, vxw4001) new_esEs29(vxw3001, vxw40001, ty_Bool) -> new_esEs19(vxw3001, vxw40001) new_esEs25(Left(vxw3000), Left(vxw40000), app(ty_Ratio, ddh), dde) -> new_esEs17(vxw3000, vxw40000, ddh) new_ltEs5(vxw302, vxw312, ty_Integer) -> new_ltEs7(vxw302, vxw312) new_ltEs16(Left(vxw300), Left(vxw310), ty_Bool, edc) -> new_ltEs18(vxw300, vxw310) new_esEs26(vxw301, vxw311, app(app(app(ty_@3, fb), fc), fd)) -> new_esEs20(vxw301, vxw311, fb, fc, fd) new_esEs34(vxw3002, vxw40002, app(app(ty_Either, eac), ead)) -> new_esEs25(vxw3002, vxw40002, eac, ead) new_ltEs22(vxw63, vxw64, ty_@0) -> new_ltEs15(vxw63, vxw64) new_lt7(vxw301, vxw311, app(app(app(ty_@3, fb), fc), fd)) -> new_lt14(vxw301, vxw311, fb, fc, fd) new_esEs30(vxw3000, vxw40000, app(ty_[], bfe)) -> new_esEs24(vxw3000, vxw40000, bfe) new_compare8(:%(vxw300, vxw301), :%(vxw4000, vxw4001), ty_Int) -> new_compare5(new_sr(vxw300, vxw4001), new_sr(vxw4000, vxw301)) new_compare15([], :(vxw4000, vxw4001), fgb) -> LT new_ltEs23(vxw54, vxw57, app(ty_Ratio, ehc)) -> new_ltEs14(vxw54, vxw57, ehc) new_lt13(vxw79, vxw81) -> new_esEs12(new_compare17(vxw79, vxw81), LT) new_esEs13(Just(vxw3000), Just(vxw40000), ty_Integer) -> new_esEs16(vxw3000, vxw40000) new_esEs31(vxw300, vxw310, ty_Float) -> new_esEs14(vxw300, vxw310) new_lt21(vxw300, vxw310, ty_Int) -> new_lt4(vxw300, vxw310) new_esEs28(vxw79, vxw81, app(app(app(ty_@3, hg), hh), baa)) -> new_esEs20(vxw79, vxw81, hg, hh, baa) new_esEs35(vxw3001, vxw40001, ty_Int) -> new_esEs21(vxw3001, vxw40001) new_esEs6(vxw300, vxw4000, ty_Bool) -> new_esEs19(vxw300, vxw4000) new_esEs31(vxw300, vxw310, ty_Bool) -> new_esEs19(vxw300, vxw310) new_esEs6(vxw300, vxw4000, app(app(ty_@2, feh), ffa)) -> new_esEs15(vxw300, vxw4000, feh, ffa) new_compare111(vxw144, vxw145, vxw146, vxw147, vxw148, vxw149, True, caa, cab, cac) -> LT new_esEs31(vxw300, vxw310, ty_@0) -> new_esEs22(vxw300, vxw310) new_primMulInt(Neg(vxw40000), Neg(vxw3010)) -> Pos(new_primMulNat0(vxw40000, vxw3010)) new_primCmpInt(Pos(Zero), Pos(Succ(vxw40000))) -> new_primCmpNat0(Zero, Succ(vxw40000)) new_compare28(Double(vxw300, Pos(vxw3010)), Double(vxw4000, Pos(vxw40010))) -> new_compare5(new_sr(vxw300, Pos(vxw40010)), new_sr(Pos(vxw3010), vxw4000)) new_esEs35(vxw3001, vxw40001, app(ty_Ratio, eag)) -> new_esEs17(vxw3001, vxw40001, eag) new_esEs8(vxw301, vxw4001, app(app(ty_Either, cfg), cfh)) -> new_esEs25(vxw301, vxw4001, cfg, cfh) new_esEs38(vxw52, vxw55, app(ty_Maybe, fba)) -> new_esEs13(vxw52, vxw55, fba) new_esEs25(Left(vxw3000), Right(vxw40000), deh, dde) -> False new_esEs25(Right(vxw3000), Left(vxw40000), deh, dde) -> False new_esEs4(vxw300, vxw4000, app(app(app(ty_@3, dge), dgf), dgg)) -> new_esEs20(vxw300, vxw4000, dge, dgf, dgg) new_lt21(vxw300, vxw310, app(ty_Maybe, cca)) -> new_lt12(vxw300, vxw310, cca) new_compare4(vxw30, vxw400, ty_@0) -> new_compare19(vxw30, vxw400) new_ltEs24(vxw30, vxw31, ty_Int) -> new_ltEs12(vxw30, vxw31) new_esEs26(vxw301, vxw311, app(ty_Maybe, eg)) -> new_esEs13(vxw301, vxw311, eg) new_esEs31(vxw300, vxw310, ty_Char) -> new_esEs18(vxw300, vxw310) new_lt23(vxw52, vxw55, app(app(app(ty_@3, fbd), fbe), fbf)) -> new_lt14(vxw52, vxw55, fbd, fbe, fbf) new_esEs29(vxw3001, vxw40001, ty_Integer) -> new_esEs16(vxw3001, vxw40001) new_esEs6(vxw300, vxw4000, app(ty_[], fff)) -> new_esEs24(vxw300, vxw4000, fff) new_ltEs16(Left(vxw300), Left(vxw310), ty_Double, edc) -> new_ltEs17(vxw300, vxw310) new_ltEs24(vxw30, vxw31, ty_Integer) -> new_ltEs7(vxw30, vxw31) new_esEs25(Right(vxw3000), Right(vxw40000), deh, ty_Integer) -> new_esEs16(vxw3000, vxw40000) new_ltEs5(vxw302, vxw312, app(ty_Maybe, de)) -> new_ltEs9(vxw302, vxw312, de) new_esEs15(@2(vxw3000, vxw3001), @2(vxw40000, vxw40001), bdc, bdd) -> new_asAs(new_esEs30(vxw3000, vxw40000, bdc), new_esEs29(vxw3001, vxw40001, bdd)) new_primMulInt(Pos(vxw40000), Neg(vxw3010)) -> Neg(new_primMulNat0(vxw40000, vxw3010)) new_primMulInt(Neg(vxw40000), Pos(vxw3010)) -> Neg(new_primMulNat0(vxw40000, vxw3010)) new_esEs34(vxw3002, vxw40002, app(ty_[], eaa)) -> new_esEs24(vxw3002, vxw40002, eaa) new_lt8(vxw300, vxw310, app(ty_Ratio, gh)) -> new_lt15(vxw300, vxw310, gh) new_compare15(:(vxw300, vxw301), [], fgb) -> GT new_esEs6(vxw300, vxw4000, app(ty_Ratio, ffb)) -> new_esEs17(vxw300, vxw4000, ffb) new_ltEs9(Just(vxw300), Just(vxw310), ty_Double) -> new_ltEs17(vxw300, vxw310) new_esEs27(vxw300, vxw310, ty_@0) -> new_esEs22(vxw300, vxw310) new_sr0(Integer(vxw40000), Integer(vxw3010)) -> Integer(new_primMulInt(vxw40000, vxw3010)) new_esEs34(vxw3002, vxw40002, ty_Double) -> new_esEs23(vxw3002, vxw40002) new_ltEs16(Right(vxw300), Right(vxw310), eef, ty_Double) -> new_ltEs17(vxw300, vxw310) new_ltEs23(vxw54, vxw57, app(app(ty_Either, ehd), ehe)) -> new_ltEs16(vxw54, vxw57, ehd, ehe) new_lt8(vxw300, vxw310, ty_Integer) -> new_lt10(vxw300, vxw310) new_esEs5(vxw301, vxw4001, ty_Int) -> new_esEs21(vxw301, vxw4001) new_esEs7(vxw302, vxw4002, ty_Double) -> new_esEs23(vxw302, vxw4002) new_ltEs20(vxw70, vxw71, ty_Ordering) -> new_ltEs11(vxw70, vxw71) new_esEs8(vxw301, vxw4001, ty_Ordering) -> new_esEs12(vxw301, vxw4001) new_ltEs23(vxw54, vxw57, ty_Int) -> new_ltEs12(vxw54, vxw57) new_ltEs22(vxw63, vxw64, ty_Double) -> new_ltEs17(vxw63, vxw64) new_lt21(vxw300, vxw310, ty_Integer) -> new_lt10(vxw300, vxw310) new_ltEs16(Left(vxw300), Left(vxw310), app(ty_Maybe, ede), edc) -> new_ltEs9(vxw300, vxw310, ede) new_ltEs5(vxw302, vxw312, ty_Int) -> new_ltEs12(vxw302, vxw312) new_ltEs9(Nothing, Just(vxw310), fgc) -> True new_lt7(vxw301, vxw311, ty_Ordering) -> new_lt13(vxw301, vxw311) new_asAs(True, vxw97) -> vxw97 new_esEs22(@0, @0) -> True new_lt7(vxw301, vxw311, app(ty_Maybe, eg)) -> new_lt12(vxw301, vxw311, eg) new_esEs39(vxw3000, vxw40000, ty_Double) -> new_esEs23(vxw3000, vxw40000) new_esEs4(vxw300, vxw4000, app(ty_Maybe, bc)) -> new_esEs13(vxw300, vxw4000, bc) new_ltEs23(vxw54, vxw57, ty_Char) -> new_ltEs6(vxw54, vxw57) new_esEs26(vxw301, vxw311, ty_Char) -> new_esEs18(vxw301, vxw311) new_esEs27(vxw300, vxw310, ty_Float) -> new_esEs14(vxw300, vxw310) new_esEs37(vxw53, vxw56, app(ty_Ratio, fae)) -> new_esEs17(vxw53, vxw56, fae) new_ltEs9(Just(vxw300), Just(vxw310), app(app(ty_@2, fgf), fgg)) -> new_ltEs10(vxw300, vxw310, fgf, fgg) new_esEs25(Right(vxw3000), Right(vxw40000), deh, ty_Bool) -> new_esEs19(vxw3000, vxw40000) new_compare18(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), cdb, cdc, cdd) -> new_compare29(vxw300, vxw301, vxw302, vxw4000, vxw4001, vxw4002, new_asAs(new_esEs9(vxw300, vxw4000, cdb), new_asAs(new_esEs8(vxw301, vxw4001, cdc), new_esEs7(vxw302, vxw4002, cdd))), cdb, cdc, cdd) new_compare12(vxw129, vxw130, vxw131, vxw132, False, bga, bgb) -> GT new_esEs37(vxw53, vxw56, ty_Int) -> new_esEs21(vxw53, vxw56) new_lt21(vxw300, vxw310, ty_Double) -> new_lt18(vxw300, vxw310) new_ltEs23(vxw54, vxw57, app(ty_Maybe, ege)) -> new_ltEs9(vxw54, vxw57, ege) new_sr(vxw4000, vxw301) -> new_primMulInt(vxw4000, vxw301) new_esEs39(vxw3000, vxw40000, app(ty_[], fch)) -> new_esEs24(vxw3000, vxw40000, fch) new_esEs38(vxw52, vxw55, app(ty_Ratio, fbg)) -> new_esEs17(vxw52, vxw55, fbg) new_esEs9(vxw300, vxw4000, ty_Int) -> new_esEs21(vxw300, vxw4000) new_ltEs9(Just(vxw300), Just(vxw310), app(app(app(ty_@3, fgh), fha), fhb)) -> new_ltEs4(vxw300, vxw310, fgh, fha, fhb) new_primMulNat0(Zero, Zero) -> Zero new_compare27(Right(vxw300), Right(vxw4000), dag, dah) -> new_compare26(vxw300, vxw4000, new_esEs11(vxw300, vxw4000, dah), dag, dah) new_ltEs5(vxw302, vxw312, ty_Double) -> new_ltEs17(vxw302, vxw312) new_ltEs22(vxw63, vxw64, app(app(app(ty_@3, daa), dab), dac)) -> new_ltEs4(vxw63, vxw64, daa, dab, dac) new_ltEs20(vxw70, vxw71, ty_Integer) -> new_ltEs7(vxw70, vxw71) new_esEs20(@3(vxw3000, vxw3001, vxw3002), @3(vxw40000, vxw40001, vxw40002), dge, dgf, dgg) -> new_asAs(new_esEs36(vxw3000, vxw40000, dge), new_asAs(new_esEs35(vxw3001, vxw40001, dgf), new_esEs34(vxw3002, vxw40002, dgg))) new_lt23(vxw52, vxw55, app(ty_Maybe, fba)) -> new_lt12(vxw52, vxw55, fba) new_ltEs22(vxw63, vxw64, app(ty_Maybe, chf)) -> new_ltEs9(vxw63, vxw64, chf) new_ltEs24(vxw30, vxw31, ty_Ordering) -> new_ltEs11(vxw30, vxw31) new_esEs9(vxw300, vxw4000, ty_Integer) -> new_esEs16(vxw300, vxw4000) new_esEs38(vxw52, vxw55, app(ty_[], fah)) -> new_esEs24(vxw52, vxw55, fah) new_esEs4(vxw300, vxw4000, ty_Ordering) -> new_esEs12(vxw300, vxw4000) new_ltEs9(Just(vxw300), Just(vxw310), app(ty_Ratio, fhc)) -> new_ltEs14(vxw300, vxw310, fhc) new_lt20(vxw79, vxw81, app(ty_Ratio, bab)) -> new_lt15(vxw79, vxw81, bab) new_lt8(vxw300, vxw310, ty_Ordering) -> new_lt13(vxw300, vxw310) new_esEs13(Just(vxw3000), Just(vxw40000), ty_@0) -> new_esEs22(vxw3000, vxw40000) new_ltEs22(vxw63, vxw64, app(ty_Ratio, dad)) -> new_ltEs14(vxw63, vxw64, dad) new_ltEs9(Just(vxw300), Just(vxw310), ty_Int) -> new_ltEs12(vxw300, vxw310) new_esEs34(vxw3002, vxw40002, app(app(ty_@2, dhc), dhd)) -> new_esEs15(vxw3002, vxw40002, dhc, dhd) new_compare111(vxw144, vxw145, vxw146, vxw147, vxw148, vxw149, False, caa, cab, cac) -> GT new_esEs39(vxw3000, vxw40000, ty_Ordering) -> new_esEs12(vxw3000, vxw40000) new_esEs8(vxw301, vxw4001, ty_Integer) -> new_esEs16(vxw301, vxw4001) new_esEs28(vxw79, vxw81, ty_@0) -> new_esEs22(vxw79, vxw81) new_esEs35(vxw3001, vxw40001, ty_Double) -> new_esEs23(vxw3001, vxw40001) new_primEqInt(Neg(Succ(vxw30000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(vxw400000))) -> False new_esEs10(vxw300, vxw4000, app(app(ty_@2, dba), dbb)) -> new_esEs15(vxw300, vxw4000, dba, dbb) new_esEs9(vxw300, vxw4000, ty_Bool) -> new_esEs19(vxw300, vxw4000) new_primEqInt(Pos(Succ(vxw30000)), Pos(Succ(vxw400000))) -> new_primEqNat0(vxw30000, vxw400000) new_ltEs24(vxw30, vxw31, ty_Char) -> new_ltEs6(vxw30, vxw31) new_ltEs16(Right(vxw300), Right(vxw310), eef, app(ty_Maybe, eeh)) -> new_ltEs9(vxw300, vxw310, eeh) new_ltEs17(vxw30, vxw31) -> new_fsEs(new_compare28(vxw30, vxw31)) new_ltEs24(vxw30, vxw31, ty_@0) -> new_ltEs15(vxw30, vxw31) new_esEs39(vxw3000, vxw40000, app(app(ty_@2, fcb), fcc)) -> new_esEs15(vxw3000, vxw40000, fcb, fcc) new_lt18(vxw79, vxw81) -> new_esEs12(new_compare28(vxw79, vxw81), LT) new_lt23(vxw52, vxw55, ty_Int) -> new_lt4(vxw52, vxw55) new_ltEs21(vxw301, vxw311, app(ty_Ratio, cbe)) -> new_ltEs14(vxw301, vxw311, cbe) new_primEqInt(Pos(Succ(vxw30000)), Neg(vxw40000)) -> False new_primEqInt(Neg(Succ(vxw30000)), Pos(vxw40000)) -> False new_lt21(vxw300, vxw310, app(ty_Ratio, ccg)) -> new_lt15(vxw300, vxw310, ccg) new_esEs9(vxw300, vxw4000, ty_Char) -> new_esEs18(vxw300, vxw4000) new_ltEs5(vxw302, vxw312, ty_Char) -> new_ltEs6(vxw302, vxw312) new_primCmpInt(Neg(Zero), Neg(Succ(vxw40000))) -> new_primCmpNat0(Succ(vxw40000), Zero) new_esEs13(Just(vxw3000), Just(vxw40000), ty_Float) -> new_esEs14(vxw3000, vxw40000) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_ltEs5(vxw302, vxw312, app(ty_Ratio, ec)) -> new_ltEs14(vxw302, vxw312, ec) new_esEs28(vxw79, vxw81, ty_Float) -> new_esEs14(vxw79, vxw81) new_esEs4(vxw300, vxw4000, ty_Int) -> new_esEs21(vxw300, vxw4000) new_esEs27(vxw300, vxw310, ty_Char) -> new_esEs18(vxw300, vxw310) new_ltEs19(vxw80, vxw82, app(app(app(ty_@3, bba), bbb), bbc)) -> new_ltEs4(vxw80, vxw82, bba, bbb, bbc) new_ltEs22(vxw63, vxw64, ty_Char) -> new_ltEs6(vxw63, vxw64) new_lt7(vxw301, vxw311, app(ty_Ratio, ff)) -> new_lt15(vxw301, vxw311, ff) new_primCompAux00(vxw23, vxw24, LT, bge) -> LT new_esEs26(vxw301, vxw311, ty_@0) -> new_esEs22(vxw301, vxw311) new_lt9(vxw79, vxw81) -> new_esEs12(new_compare13(vxw79, vxw81), LT) new_ltEs21(vxw301, vxw311, ty_Ordering) -> new_ltEs11(vxw301, vxw311) new_compare27(Right(vxw300), Left(vxw4000), dag, dah) -> GT new_compare4(vxw30, vxw400, app(ty_[], fgb)) -> new_compare15(vxw30, vxw400, fgb) new_lt20(vxw79, vxw81, ty_Double) -> new_lt18(vxw79, vxw81) new_esEs26(vxw301, vxw311, ty_Integer) -> new_esEs16(vxw301, vxw311) new_not(False) -> True new_esEs35(vxw3001, vxw40001, app(ty_[], ebc)) -> new_esEs24(vxw3001, vxw40001, ebc) new_ltEs24(vxw30, vxw31, app(app(ty_Either, eef), edc)) -> new_ltEs16(vxw30, vxw31, eef, edc) new_esEs5(vxw301, vxw4001, app(ty_Ratio, fdh)) -> new_esEs17(vxw301, vxw4001, fdh) new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_lt20(vxw79, vxw81, app(app(ty_@2, cf), cg)) -> new_lt5(vxw79, vxw81, cf, cg) new_esEs38(vxw52, vxw55, app(app(ty_@2, fbb), fbc)) -> new_esEs15(vxw52, vxw55, fbb, fbc) new_esEs4(vxw300, vxw4000, ty_Double) -> new_esEs23(vxw300, vxw4000) new_esEs28(vxw79, vxw81, app(app(ty_Either, bac), bad)) -> new_esEs25(vxw79, vxw81, bac, bad) new_compare112(vxw144, vxw145, vxw146, vxw147, vxw148, vxw149, False, vxw151, caa, cab, cac) -> new_compare111(vxw144, vxw145, vxw146, vxw147, vxw148, vxw149, vxw151, caa, cab, cac) new_esEs25(Right(vxw3000), Right(vxw40000), deh, ty_Char) -> new_esEs18(vxw3000, vxw40000) new_ltEs20(vxw70, vxw71, app(ty_Ratio, bch)) -> new_ltEs14(vxw70, vxw71, bch) new_esEs37(vxw53, vxw56, app(ty_[], ehf)) -> new_esEs24(vxw53, vxw56, ehf) new_lt22(vxw53, vxw56, app(ty_Ratio, fae)) -> new_lt15(vxw53, vxw56, fae) new_compare10(vxw129, vxw130, vxw131, vxw132, False, vxw134, bga, bgb) -> new_compare12(vxw129, vxw130, vxw131, vxw132, vxw134, bga, bgb) new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_esEs7(vxw302, vxw4002, app(ty_Maybe, ced)) -> new_esEs13(vxw302, vxw4002, ced) new_esEs7(vxw302, vxw4002, ty_Ordering) -> new_esEs12(vxw302, vxw4002) new_esEs13(Just(vxw3000), Just(vxw40000), app(app(ty_Either, cd), ce)) -> new_esEs25(vxw3000, vxw40000, cd, ce) new_ltEs20(vxw70, vxw71, ty_Char) -> new_ltEs6(vxw70, vxw71) new_ltEs11(LT, EQ) -> True new_ltEs5(vxw302, vxw312, app(app(app(ty_@3, dh), ea), eb)) -> new_ltEs4(vxw302, vxw312, dh, ea, eb) new_esEs8(vxw301, vxw4001, app(app(app(ty_@3, cfb), cfc), cfd)) -> new_esEs20(vxw301, vxw4001, cfb, cfc, cfd) new_ltEs19(vxw80, vxw82, app(ty_Ratio, bbd)) -> new_ltEs14(vxw80, vxw82, bbd) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs25(Left(vxw3000), Left(vxw40000), ty_Ordering, dde) -> new_esEs12(vxw3000, vxw40000) new_lt8(vxw300, vxw310, app(app(ty_@2, gc), gd)) -> new_lt5(vxw300, vxw310, gc, gd) new_esEs25(Left(vxw3000), Left(vxw40000), ty_Int, dde) -> new_esEs21(vxw3000, vxw40000) new_lt5(vxw79, vxw81, cf, cg) -> new_esEs12(new_compare6(vxw79, vxw81, cf, cg), LT) new_esEs7(vxw302, vxw4002, app(ty_Ratio, cdg)) -> new_esEs17(vxw302, vxw4002, cdg) new_esEs26(vxw301, vxw311, ty_Bool) -> new_esEs19(vxw301, vxw311) new_esEs5(vxw301, vxw4001, ty_Ordering) -> new_esEs12(vxw301, vxw4001) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs38(vxw52, vxw55, ty_Double) -> new_esEs23(vxw52, vxw55) new_ltEs21(vxw301, vxw311, app(app(app(ty_@3, cbb), cbc), cbd)) -> new_ltEs4(vxw301, vxw311, cbb, cbc, cbd) new_lt7(vxw301, vxw311, app(app(ty_@2, eh), fa)) -> new_lt5(vxw301, vxw311, eh, fa) new_primMulNat0(Succ(vxw400000), Succ(vxw30100)) -> new_primPlusNat0(new_primMulNat0(vxw400000, Succ(vxw30100)), vxw30100) new_compare112(vxw144, vxw145, vxw146, vxw147, vxw148, vxw149, True, vxw151, caa, cab, cac) -> new_compare111(vxw144, vxw145, vxw146, vxw147, vxw148, vxw149, True, caa, cab, cac) new_ltEs19(vxw80, vxw82, ty_Ordering) -> new_ltEs11(vxw80, vxw82) new_esEs9(vxw300, vxw4000, app(ty_Maybe, cgh)) -> new_esEs13(vxw300, vxw4000, cgh) new_lt23(vxw52, vxw55, app(app(ty_@2, fbb), fbc)) -> new_lt5(vxw52, vxw55, fbb, fbc) new_esEs35(vxw3001, vxw40001, app(app(ty_@2, eae), eaf)) -> new_esEs15(vxw3001, vxw40001, eae, eaf) new_lt8(vxw300, vxw310, ty_Double) -> new_lt18(vxw300, vxw310) new_ltEs11(LT, GT) -> True new_esEs27(vxw300, vxw310, app(app(ty_Either, ha), hb)) -> new_esEs25(vxw300, vxw310, ha, hb) new_esEs37(vxw53, vxw56, ty_Double) -> new_esEs23(vxw53, vxw56) new_esEs25(Right(vxw3000), Right(vxw40000), deh, ty_Float) -> new_esEs14(vxw3000, vxw40000) new_ltEs16(Right(vxw300), Right(vxw310), eef, app(app(app(ty_@3, efc), efd), efe)) -> new_ltEs4(vxw300, vxw310, efc, efd, efe) new_esEs26(vxw301, vxw311, app(app(ty_Either, fg), fh)) -> new_esEs25(vxw301, vxw311, fg, fh) new_esEs24(:(vxw3000, vxw3001), :(vxw40000, vxw40001), dgh) -> new_asAs(new_esEs39(vxw3000, vxw40000, dgh), new_esEs24(vxw3001, vxw40001, dgh)) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_primCompAux00(vxw23, vxw24, EQ, app(ty_[], bgf)) -> new_compare15(vxw23, vxw24, bgf) new_lt23(vxw52, vxw55, ty_Double) -> new_lt18(vxw52, vxw55) new_compare28(Double(vxw300, Pos(vxw3010)), Double(vxw4000, Neg(vxw40010))) -> new_compare5(new_sr(vxw300, Pos(vxw40010)), new_sr(Neg(vxw3010), vxw4000)) new_compare28(Double(vxw300, Neg(vxw3010)), Double(vxw4000, Pos(vxw40010))) -> new_compare5(new_sr(vxw300, Neg(vxw40010)), new_sr(Pos(vxw3010), vxw4000)) new_compare110(vxw109, vxw110, False, bgc, bgd) -> GT new_esEs9(vxw300, vxw4000, app(app(app(ty_@3, cgd), cge), cgf)) -> new_esEs20(vxw300, vxw4000, cgd, cge, cgf) new_primEqNat0(Zero, Zero) -> True new_ltEs9(Just(vxw300), Nothing, fgc) -> False new_ltEs9(Nothing, Nothing, fgc) -> True new_ltEs16(Right(vxw300), Right(vxw310), eef, ty_Int) -> new_ltEs12(vxw300, vxw310) new_esEs6(vxw300, vxw4000, ty_Int) -> new_esEs21(vxw300, vxw4000) new_compare16(Nothing, Just(vxw4000), dgc) -> LT new_esEs26(vxw301, vxw311, ty_Float) -> new_esEs14(vxw301, vxw311) new_lt22(vxw53, vxw56, ty_Double) -> new_lt18(vxw53, vxw56) new_asAs(False, vxw97) -> False new_lt22(vxw53, vxw56, app(app(ty_@2, ehh), faa)) -> new_lt5(vxw53, vxw56, ehh, faa) new_ltEs24(vxw30, vxw31, app(ty_Maybe, fgc)) -> new_ltEs9(vxw30, vxw31, fgc) new_ltEs23(vxw54, vxw57, ty_Integer) -> new_ltEs7(vxw54, vxw57) new_esEs6(vxw300, vxw4000, ty_Ordering) -> new_esEs12(vxw300, vxw4000) new_esEs36(vxw3000, vxw40000, app(ty_[], ece)) -> new_esEs24(vxw3000, vxw40000, ece) new_ltEs20(vxw70, vxw71, app(app(app(ty_@3, bce), bcf), bcg)) -> new_ltEs4(vxw70, vxw71, bce, bcf, bcg) new_esEs36(vxw3000, vxw40000, app(app(ty_@2, ebg), ebh)) -> new_esEs15(vxw3000, vxw40000, ebg, ebh) new_esEs8(vxw301, vxw4001, app(ty_Maybe, cff)) -> new_esEs13(vxw301, vxw4001, cff) new_ltEs8(vxw30, vxw31, dhb) -> new_fsEs(new_compare15(vxw30, vxw31, dhb)) new_lt7(vxw301, vxw311, ty_Double) -> new_lt18(vxw301, vxw311) new_ltEs11(EQ, LT) -> False The set Q consists of the following terms: new_ltEs24(x0, x1, ty_Bool) new_ltEs23(x0, x1, ty_Ordering) new_ltEs16(Left(x0), Left(x1), ty_Ordering, x2) new_esEs15(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, ty_Char) new_lt12(x0, x1, x2) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, ty_Int) new_esEs36(x0, x1, ty_Integer) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs9(Just(x0), Just(x1), ty_Integer) new_lt8(x0, x1, app(ty_Maybe, x2)) new_esEs34(x0, x1, app(ty_[], x2)) new_esEs13(Just(x0), Just(x1), app(ty_[], x2)) new_esEs37(x0, x1, ty_Ordering) new_compare4(x0, x1, app(ty_Maybe, x2)) new_ltEs21(x0, x1, ty_@0) new_esEs37(x0, x1, ty_Double) new_esEs38(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, ty_Double) new_lt20(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, ty_Float) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_primPlusNat1(Zero, Zero) new_esEs31(x0, x1, ty_@0) new_lt7(x0, x1, app(ty_Ratio, x2)) new_compare7(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare7(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs34(x0, x1, ty_Float) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs37(x0, x1, app(ty_[], x2)) new_esEs25(Right(x0), Right(x1), x2, ty_Int) new_esEs14(Float(x0, x1), Float(x2, x3)) new_esEs28(x0, x1, ty_Int) new_esEs8(x0, x1, ty_Ordering) new_esEs19(False, False) new_ltEs9(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs31(x0, x1, ty_Bool) new_compare4(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_Bool) new_ltEs9(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Pos(Zero), Pos(Zero)) new_sr0(Integer(x0), Integer(x1)) new_ltEs20(x0, x1, ty_Ordering) new_esEs9(x0, x1, ty_Double) new_esEs26(x0, x1, app(ty_[], x2)) new_ltEs24(x0, x1, ty_Integer) new_ltEs5(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24(:(x0, x1), :(x2, x3), x4) new_ltEs23(x0, x1, ty_Char) new_esEs38(x0, x1, ty_Double) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs36(x0, x1, ty_@0) new_ltEs24(x0, x1, ty_@0) new_ltEs9(Just(x0), Just(x1), ty_@0) new_compare4(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs9(Nothing, Just(x0), x1) new_esEs26(x0, x1, ty_Bool) new_primEqInt(Neg(Zero), Neg(Zero)) new_ltEs20(x0, x1, ty_Double) new_lt23(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_ltEs7(x0, x1) new_esEs38(x0, x1, ty_Ordering) new_esEs37(x0, x1, ty_Char) new_esEs13(Just(x0), Nothing, x1) new_ltEs9(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, ty_Integer) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_lt9(x0, x1) new_lt22(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, ty_Ordering) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_esEs25(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs23(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs9(x0, x1, app(ty_[], x2)) new_ltEs16(Right(x0), Right(x1), x2, ty_Float) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs31(x0, x1, ty_Integer) new_esEs35(x0, x1, ty_@0) new_primPlusNat1(Succ(x0), Zero) new_esEs11(x0, x1, app(ty_[], x2)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs12(LT, GT) new_esEs12(GT, LT) new_ltEs9(Just(x0), Just(x1), ty_Bool) new_compare4(x0, x1, ty_@0) new_compare29(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs25(Left(x0), Left(x1), ty_Float, x2) new_esEs30(x0, x1, app(ty_[], x2)) new_esEs35(x0, x1, ty_Float) new_esEs13(Just(x0), Just(x1), ty_@0) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_lt22(x0, x1, app(ty_[], x2)) new_esEs25(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs28(x0, x1, ty_Bool) new_esEs25(Left(x0), Left(x1), ty_@0, x2) new_lt8(x0, x1, app(ty_Ratio, x2)) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_primCompAux00(x0, x1, LT, x2) new_esEs13(Just(x0), Just(x1), ty_Int) new_lt21(x0, x1, ty_Integer) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, ty_Integer) new_esEs36(x0, x1, ty_Bool) new_compare26(x0, x1, False, x2, x3) new_esEs4(x0, x1, ty_@0) new_esEs13(Nothing, Nothing, x0) new_ltEs11(GT, GT) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_esEs34(x0, x1, ty_Bool) new_primCompAux00(x0, x1, EQ, app(ty_Maybe, x2)) new_lt22(x0, x1, ty_Ordering) new_esEs29(x0, x1, ty_Ordering) new_esEs4(x0, x1, ty_Bool) new_lt7(x0, x1, app(app(ty_Either, x2), x3)) new_lt7(x0, x1, app(ty_[], x2)) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_lt23(x0, x1, ty_Double) new_esEs31(x0, x1, ty_Float) new_primMulNat0(Zero, Succ(x0)) new_compare17(EQ, EQ) new_lt7(x0, x1, ty_Bool) new_lt22(x0, x1, ty_Float) new_esEs12(GT, GT) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_compare16(Just(x0), Nothing, x1) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_@0) new_esEs25(Left(x0), Left(x1), ty_Bool, x2) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, ty_Char) new_esEs35(x0, x1, app(ty_Maybe, x2)) new_esEs34(x0, x1, ty_Integer) new_compare4(x0, x1, ty_Bool) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs31(x0, x1, ty_Int) new_esEs38(x0, x1, ty_Char) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, ty_Int) new_esEs28(x0, x1, ty_Integer) new_esEs25(Right(x0), Right(x1), x2, ty_Bool) new_ltEs9(Just(x0), Just(x1), ty_Int) new_compare8(:%(x0, x1), :%(x2, x3), ty_Integer) new_ltEs20(x0, x1, ty_Char) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs29(x0, x1, ty_Char) new_esEs30(x0, x1, ty_Ordering) new_compare16(Nothing, Nothing, x0) new_esEs13(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare211(x0, x1, False, x2) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_esEs4(x0, x1, ty_Integer) new_ltEs15(x0, x1) new_esEs25(Left(x0), Left(x1), ty_Integer, x2) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_lt7(x0, x1, ty_Int) new_compare17(LT, EQ) new_compare17(EQ, LT) new_lt13(x0, x1) new_ltEs5(x0, x1, ty_Char) new_esEs26(x0, x1, ty_Int) new_lt5(x0, x1, x2, x3) new_lt22(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, ty_Ordering) new_ltEs9(Just(x0), Just(x1), ty_Float) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs27(x0, x1, ty_@0) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs25(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_compare19(@0, @0) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_lt22(x0, x1, ty_Char) new_esEs35(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Float) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs5(x0, x1, ty_Char) new_asAs(True, x0) new_ltEs5(x0, x1, ty_Float) new_compare14(Integer(x0), Integer(x1)) new_compare15([], [], x0) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Left(x0), Left(x1), ty_Char, x2) new_lt21(x0, x1, ty_@0) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Right(x0), Left(x1), x2, x3) new_ltEs16(Left(x0), Right(x1), x2, x3) new_esEs38(x0, x1, ty_Float) new_ltEs19(x0, x1, ty_Float) new_esEs11(x0, x1, ty_@0) new_lt7(x0, x1, app(ty_Maybe, x2)) new_compare113(x0, x1, False, x2) new_esEs25(Right(x0), Right(x1), x2, ty_Float) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_compare4(x0, x1, ty_Integer) new_esEs8(x0, x1, ty_Double) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, ty_Float) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_ltEs16(Left(x0), Left(x1), ty_Float, x2) new_compare110(x0, x1, True, x2, x3) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, ty_Ordering) new_ltEs22(x0, x1, ty_Double) new_esEs8(x0, x1, ty_Float) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs9(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs25(Left(x0), Left(x1), ty_Double, x2) new_esEs4(x0, x1, ty_Ordering) new_esEs11(x0, x1, ty_Float) new_lt20(x0, x1, ty_Double) new_lt18(x0, x1) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_compare111(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_ltEs5(x0, x1, ty_Bool) new_esEs6(x0, x1, ty_Ordering) new_primMulNat0(Succ(x0), Succ(x1)) new_primCompAux00(x0, x1, EQ, ty_Ordering) new_esEs6(x0, x1, ty_Double) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare6(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs10(x0, x1, ty_Ordering) new_lt23(x0, x1, ty_@0) new_ltEs20(x0, x1, app(ty_[], x2)) new_ltEs22(x0, x1, ty_Char) new_esEs33(x0, x1, ty_Integer) new_esEs28(x0, x1, ty_Float) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, ty_Int) new_primCompAux1(x0, x1, x2, x3, x4) new_primMulInt(Neg(x0), Neg(x1)) new_lt20(x0, x1, ty_Ordering) new_esEs11(x0, x1, ty_Integer) new_lt7(x0, x1, ty_Integer) new_ltEs5(x0, x1, ty_Integer) new_not(True) new_compare113(x0, x1, True, x2) new_compare8(:%(x0, x1), :%(x2, x3), ty_Int) new_lt8(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs16(Right(x0), Right(x1), x2, ty_Double) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs25(Left(x0), Left(x1), ty_Int, x2) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_primCompAux00(x0, x1, GT, x2) new_lt21(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_ltEs19(x0, x1, ty_Ordering) new_lt6(x0, x1) new_esEs25(Left(x0), Left(x1), ty_Char, x2) new_esEs35(x0, x1, ty_Double) new_esEs17(:%(x0, x1), :%(x2, x3), x4) new_ltEs4(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs36(x0, x1, ty_Double) new_esEs31(x0, x1, app(ty_[], x2)) new_primPlusNat0(Succ(x0), x1) new_ltEs18(True, False) new_ltEs18(False, True) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs16(Integer(x0), Integer(x1)) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs12(LT, LT) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_esEs19(True, True) new_ltEs8(x0, x1, x2) new_fsEs(x0) new_compare4(x0, x1, ty_Float) new_primCompAux00(x0, x1, EQ, app(app(ty_Either, x2), x3)) new_compare12(x0, x1, x2, x3, False, x4, x5) new_primPlusNat1(Zero, Succ(x0)) new_esEs8(x0, x1, ty_Bool) new_esEs36(x0, x1, ty_Int) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs24(x0, x1, ty_Float) new_ltEs10(@2(x0, x1), @2(x2, x3), x4, x5) new_compare9(False, False) new_lt7(x0, x1, ty_@0) new_esEs36(x0, x1, ty_Char) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_lt23(x0, x1, ty_Float) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs22(x0, x1, ty_Bool) new_compare25(x0, x1, x2, x3, True, x4, x5) new_esEs25(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_lt15(x0, x1, x2) new_esEs39(x0, x1, ty_Double) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs24(x0, x1, ty_Int) new_esEs9(x0, x1, ty_@0) new_compare17(EQ, GT) new_compare17(GT, EQ) new_esEs36(x0, x1, ty_Float) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_lt23(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, ty_Bool) new_esEs8(x0, x1, ty_Integer) new_ltEs23(x0, x1, ty_@0) new_primCmpNat0(Succ(x0), Zero) new_esEs13(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_primEqNat0(Zero, Succ(x0)) new_ltEs19(x0, x1, ty_Double) new_lt8(x0, x1, ty_Ordering) new_esEs34(x0, x1, ty_@0) new_compare15([], :(x0, x1), x2) new_esEs25(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_lt21(x0, x1, app(ty_Maybe, x2)) new_esEs39(x0, x1, ty_Ordering) new_esEs25(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_lt23(x0, x1, ty_Int) new_compare27(Left(x0), Right(x1), x2, x3) new_compare27(Right(x0), Left(x1), x2, x3) new_primEqNat0(Zero, Zero) new_lt23(x0, x1, ty_Integer) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_esEs8(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, ty_Double) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_lt8(x0, x1, app(ty_[], x2)) new_ltEs5(x0, x1, app(app(ty_Either, x2), x3)) new_not(False) new_compare12(x0, x1, x2, x3, True, x4, x5) new_lt4(x0, x1) new_lt23(x0, x1, ty_Char) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_esEs11(x0, x1, ty_Char) new_ltEs18(False, False) new_lt17(x0, x1, x2, x3) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs16(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_primCompAux00(x0, x1, EQ, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(x0, x1, ty_@0) new_lt16(x0, x1) new_lt22(x0, x1, ty_Double) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, ty_Int) new_lt23(x0, x1, ty_Bool) new_compare111(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs16(Right(x0), Right(x1), x2, ty_Ordering) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs26(x0, x1, ty_@0) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs11(EQ, GT) new_ltEs11(GT, EQ) new_compare15(:(x0, x1), [], x2) new_esEs8(x0, x1, ty_Char) new_esEs35(x0, x1, ty_Ordering) new_ltEs16(Left(x0), Left(x1), ty_Double, x2) new_ltEs5(x0, x1, ty_@0) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_esEs11(x0, x1, ty_Int) new_compare28(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare28(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs13(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, ty_Double) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_compare17(LT, GT) new_compare17(GT, LT) new_esEs6(x0, x1, app(ty_[], x2)) new_pePe(True, x0) new_esEs29(x0, x1, ty_@0) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs12(EQ, EQ) new_compare28(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs39(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_Float) new_compare4(x0, x1, app(ty_Ratio, x2)) new_compare28(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs13(Just(x0), Just(x1), ty_Ordering) new_esEs25(Right(x0), Right(x1), x2, ty_Ordering) new_esEs13(Just(x0), Just(x1), ty_Double) new_esEs25(Right(x0), Right(x1), x2, ty_Double) new_esEs25(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_compare7(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_compare4(x0, x1, ty_Ordering) new_esEs29(x0, x1, ty_Bool) new_esEs11(x0, x1, ty_Double) new_esEs28(x0, x1, ty_Ordering) new_ltEs16(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs5(x0, x1, ty_Float) new_ltEs22(x0, x1, ty_Float) new_esEs6(x0, x1, ty_Float) new_esEs7(x0, x1, ty_Int) new_esEs27(x0, x1, ty_Ordering) new_compare4(x0, x1, ty_Double) new_ltEs16(Left(x0), Left(x1), app(ty_[], x2), x3) new_primCompAux00(x0, x1, EQ, ty_Float) new_esEs37(x0, x1, ty_Int) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs26(x0, x1, ty_Char) new_esEs25(Right(x0), Right(x1), x2, ty_Char) new_esEs30(x0, x1, ty_Integer) new_compare4(x0, x1, ty_Char) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_esEs10(x0, x1, ty_Float) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCompAux00(x0, x1, EQ, ty_Integer) new_ltEs5(x0, x1, app(ty_Maybe, x2)) new_compare7(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_ltEs23(x0, x1, ty_Int) new_compare4(x0, x1, app(ty_[], x2)) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_primCompAux00(x0, x1, EQ, app(app(ty_@2, x2), x3)) new_ltEs24(x0, x1, app(ty_[], x2)) new_ltEs13(x0, x1) new_esEs30(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_Char) new_esEs30(x0, x1, ty_Float) new_ltEs9(Nothing, Nothing, x0) new_esEs26(x0, x1, ty_Ordering) new_esEs7(x0, x1, ty_Bool) new_esEs29(x0, x1, ty_Integer) new_compare211(x0, x1, True, x2) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_ltEs16(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, ty_@0) new_sr(x0, x1) new_ltEs24(x0, x1, ty_Char) new_esEs11(x0, x1, ty_Ordering) new_esEs28(x0, x1, ty_Char) new_ltEs22(x0, x1, ty_Integer) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_lt8(x0, x1, app(app(ty_Either, x2), x3)) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs28(x0, x1, ty_Double) new_lt7(x0, x1, ty_Ordering) new_esEs22(@0, @0) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_lt11(x0, x1, x2) new_lt7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs13(Just(x0), Just(x1), ty_Char) new_esEs7(x0, x1, ty_Integer) new_esEs10(x0, x1, ty_Bool) new_primEqNat0(Succ(x0), Zero) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_primCompAux00(x0, x1, EQ, ty_Bool) new_ltEs9(Just(x0), Nothing, x1) new_ltEs9(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs11(LT, EQ) new_ltEs11(EQ, LT) new_esEs25(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs21(x0, x1, ty_Double) new_ltEs16(Left(x0), Left(x1), ty_Bool, x2) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_compare110(x0, x1, False, x2, x3) new_ltEs23(x0, x1, ty_Bool) new_primCompAux00(x0, x1, EQ, app(ty_Ratio, x2)) new_esEs29(x0, x1, ty_Float) new_esEs37(x0, x1, ty_@0) new_lt20(x0, x1, ty_Bool) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs10(x0, x1, ty_@0) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_compare4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, ty_@0) new_ltEs21(x0, x1, ty_Ordering) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs9(Just(x0), Just(x1), ty_Char) new_esEs5(x0, x1, ty_Integer) new_primPlusNat1(Succ(x0), Succ(x1)) new_ltEs24(x0, x1, ty_Double) new_esEs33(x0, x1, ty_Int) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_ltEs22(x0, x1, app(ty_[], x2)) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_esEs5(x0, x1, ty_Bool) new_esEs24([], :(x0, x1), x2) new_ltEs20(x0, x1, ty_Bool) new_ltEs16(Left(x0), Left(x1), ty_Integer, x2) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs36(x0, x1, ty_Ordering) new_esEs19(False, True) new_esEs19(True, False) new_esEs39(x0, x1, ty_Float) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs22(x0, x1, ty_@0) new_esEs6(x0, x1, ty_@0) new_esEs9(x0, x1, ty_Int) new_compare16(Nothing, Just(x0), x1) new_esEs38(x0, x1, ty_Bool) new_primCompAux00(x0, x1, EQ, ty_@0) new_esEs31(x0, x1, ty_Char) new_ltEs16(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_ltEs24(x0, x1, ty_Ordering) new_esEs37(x0, x1, ty_Integer) new_esEs10(x0, x1, ty_Integer) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_compare10(x0, x1, x2, x3, True, x4, x5, x6) new_primCmpInt(Neg(Zero), Neg(Zero)) new_ltEs20(x0, x1, ty_Int) new_esEs32(x0, x1, ty_Integer) new_ltEs16(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs25(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs14(x0, x1, x2) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_ltEs5(x0, x1, ty_Int) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs13(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_lt8(x0, x1, ty_Double) new_esEs34(x0, x1, ty_Char) new_esEs9(x0, x1, ty_Bool) new_ltEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs19(x0, x1, ty_Int) new_ltEs6(x0, x1) new_esEs9(x0, x1, ty_Integer) new_esEs24([], [], x0) new_esEs38(x0, x1, ty_Int) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, ty_Integer) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(x0, x1, app(ty_[], x2)) new_ltEs11(EQ, EQ) new_esEs27(x0, x1, ty_Double) new_esEs25(Left(x0), Left(x1), ty_Ordering, x2) new_compare25(x0, x1, x2, x3, False, x4, x5) new_esEs5(x0, x1, app(ty_[], x2)) new_ltEs16(Left(x0), Left(x1), ty_Int, x2) new_esEs29(x0, x1, ty_Int) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_compare17(LT, LT) new_lt7(x0, x1, ty_Char) new_esEs13(Nothing, Just(x0), x1) new_lt19(x0, x1) new_esEs5(x0, x1, ty_Int) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt22(x0, x1, ty_Int) new_esEs7(x0, x1, ty_Float) new_esEs20(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs37(x0, x1, ty_Float) new_esEs34(x0, x1, ty_Ordering) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_compare13(Char(x0), Char(x1)) new_compare26(x0, x1, True, x2, x3) new_ltEs21(x0, x1, app(ty_[], x2)) new_esEs23(Double(x0, x1), Double(x2, x3)) new_lt21(x0, x1, ty_Double) new_ltEs16(Right(x0), Right(x1), x2, ty_Char) new_compare10(x0, x1, x2, x3, False, x4, x5, x6) new_compare15(:(x0, x1), :(x2, x3), x4) new_esEs10(x0, x1, ty_Double) new_ltEs22(x0, x1, ty_Ordering) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_compare9(False, True) new_compare9(True, False) new_lt22(x0, x1, ty_Integer) new_primMulNat0(Zero, Zero) new_esEs5(x0, x1, ty_Ordering) new_esEs34(x0, x1, ty_Double) new_compare16(Just(x0), Just(x1), x2) new_lt7(x0, x1, ty_Float) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_lt22(x0, x1, ty_Bool) new_primMulInt(Pos(x0), Pos(x1)) new_ltEs23(x0, x1, ty_Float) new_lt8(x0, x1, ty_Integer) new_esEs13(Just(x0), Just(x1), ty_Float) new_esEs18(Char(x0), Char(x1)) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs11(LT, LT) new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, ty_Int) new_compare11(x0, x1, False, x2, x3) new_esEs27(x0, x1, ty_Float) new_esEs39(x0, x1, ty_Integer) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs16(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_asAs(False, x0) new_compare17(GT, GT) new_esEs4(x0, x1, app(ty_[], x2)) new_ltEs5(x0, x1, app(ty_Ratio, x2)) new_compare112(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_ltEs19(x0, x1, ty_Char) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_compare210(x0, x1, True, x2, x3) new_esEs34(x0, x1, ty_Int) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_esEs6(x0, x1, ty_Int) new_esEs39(x0, x1, ty_@0) new_lt21(x0, x1, app(ty_Ratio, x2)) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs18(True, True) new_ltEs16(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_primCompAux00(x0, x1, EQ, ty_Int) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_esEs10(x0, x1, ty_Char) new_lt14(x0, x1, x2, x3, x4) new_ltEs20(x0, x1, ty_Integer) new_esEs25(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs35(x0, x1, ty_Int) new_lt8(x0, x1, ty_@0) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_ltEs16(Right(x0), Right(x1), x2, ty_@0) new_primPlusNat0(Zero, x0) new_ltEs19(x0, x1, ty_Bool) new_lt20(x0, x1, ty_Char) new_primCompAux00(x0, x1, EQ, app(ty_[], x2)) new_esEs10(x0, x1, ty_Int) new_ltEs16(Right(x0), Right(x1), x2, ty_Bool) new_ltEs9(Just(x0), Just(x1), ty_Double) new_esEs9(x0, x1, ty_Float) new_esEs36(x0, x1, app(ty_[], x2)) new_primCompAux00(x0, x1, EQ, ty_Char) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs39(x0, x1, ty_Char) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt8(x0, x1, ty_Float) new_esEs25(Right(x0), Right(x1), x2, ty_Integer) new_primCompAux00(x0, x1, EQ, ty_Double) new_ltEs19(x0, x1, ty_Integer) new_ltEs5(x0, x1, ty_Ordering) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_compare210(x0, x1, False, x2, x3) new_esEs30(x0, x1, ty_Int) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, ty_Int) new_esEs39(x0, x1, ty_Bool) new_esEs30(x0, x1, ty_Char) new_ltEs16(Right(x0), Right(x1), x2, ty_Int) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(x0, x1, ty_Double) new_esEs4(x0, x1, ty_Char) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_compare4(x0, x1, app(app(ty_Either, x2), x3)) new_esEs38(x0, x1, ty_Integer) new_esEs30(x0, x1, ty_Double) new_esEs37(x0, x1, ty_Bool) new_primCmpInt(Pos(Zero), Pos(Zero)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt21(x0, x1, ty_Bool) new_compare18(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt8(x0, x1, ty_Char) new_esEs25(Left(x0), Right(x1), x2, x3) new_esEs25(Right(x0), Left(x1), x2, x3) new_esEs31(x0, x1, ty_Ordering) new_esEs13(Just(x0), Just(x1), ty_Bool) new_ltEs21(x0, x1, ty_Float) new_pePe(False, x0) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_compare9(True, True) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs16(Left(x0), Left(x1), ty_@0, x2) new_ltEs5(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_@0) new_esEs29(x0, x1, app(ty_[], x2)) new_compare5(x0, x1) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_compare11(x0, x1, True, x2, x3) new_ltEs16(Right(x0), Right(x1), x2, ty_Integer) new_esEs35(x0, x1, ty_Char) new_ltEs9(Just(x0), Just(x1), ty_Ordering) new_lt20(x0, x1, ty_Integer) new_lt7(x0, x1, app(app(ty_@2, x2), x3)) new_lt23(x0, x1, ty_Ordering) new_compare29(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_ltEs21(x0, x1, ty_Int) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_esEs6(x0, x1, ty_Char) new_esEs26(x0, x1, ty_Double) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_lt23(x0, x1, app(ty_Ratio, x2)) new_esEs24(:(x0, x1), [], x2) new_esEs25(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs31(x0, x1, ty_Double) new_esEs35(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Integer) new_lt8(x0, x1, ty_Int) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_@0) new_esEs13(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt10(x0, x1) new_esEs7(x0, x1, ty_@0) new_primCmpNat0(Zero, Succ(x0)) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs11(GT, LT) new_ltEs11(LT, GT) new_ltEs17(x0, x1) new_lt21(x0, x1, ty_Char) new_lt8(x0, x1, ty_Bool) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_@0) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs6(x0, x1, ty_Integer) new_esEs13(Just(x0), Just(x1), ty_Integer) new_ltEs12(x0, x1) new_compare27(Right(x0), Right(x1), x2, x3) new_primMulNat0(Succ(x0), Zero) new_compare27(Left(x0), Left(x1), x2, x3) new_esEs5(x0, x1, ty_Double) new_lt21(x0, x1, ty_Int) new_esEs6(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Char) new_esEs38(x0, x1, ty_@0) new_esEs35(x0, x1, ty_Integer) new_esEs27(x0, x1, ty_Bool) new_compare112(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_lt22(x0, x1, ty_@0) new_esEs25(Right(x0), Right(x1), x2, ty_@0) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs9(Just(x0), Just(x1), app(ty_[], x2)) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_lt7(x0, x1, ty_Double) new_esEs25(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_lt21(x0, x1, ty_Float) new_primCmpNat0(Zero, Zero) new_ltEs22(x0, x1, app(ty_Ratio, x2)) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (24) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_insertBy(:(vxw30, vxw31), :(:(vxw400, vxw401), vxw41), bb) -> new_insertBy0(vxw400, vxw401, vxw30, vxw31, vxw41, new_primCompAux1(vxw30, vxw400, vxw31, vxw401, bb), bb) The graph contains the following edges 2 > 1, 2 > 2, 1 > 3, 1 > 4, 2 > 5, 3 >= 7 *new_insertBy(:(vxw30, vxw31), :([], vxw41), bb) -> new_insertBy(:(vxw30, vxw31), vxw41, bb) The graph contains the following edges 1 >= 1, 2 > 2, 3 >= 3 *new_insertBy0(vxw12, vxw13, vxw14, vxw15, vxw16, GT, ba) -> new_insertBy(:(vxw14, vxw15), vxw16, ba) The graph contains the following edges 5 >= 2, 7 >= 3 ---------------------------------------- (25) YES ---------------------------------------- (26) Obligation: Q DP problem: The TRS P consists of the following rules: new_primMulNat(Succ(vxw400000), Succ(vxw30100)) -> new_primMulNat(vxw400000, Succ(vxw30100)) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (27) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_primMulNat(Succ(vxw400000), Succ(vxw30100)) -> new_primMulNat(vxw400000, Succ(vxw30100)) The graph contains the following edges 1 > 1, 2 >= 2 ---------------------------------------- (28) YES ---------------------------------------- (29) Obligation: Q DP problem: The TRS P consists of the following rules: new_esEs(@2(vxw3000, vxw3001), @2(vxw40000, vxw40001), ba, app(ty_[], bg)) -> new_esEs1(vxw3001, vxw40001, bg) new_esEs2(Just(vxw3000), Just(vxw40000), app(ty_[], bbd)) -> new_esEs1(vxw3000, vxw40000, bbd) new_esEs3(Left(vxw3000), Left(vxw40000), app(app(ty_Either, bch), bda), bcb) -> new_esEs3(vxw3000, vxw40000, bch, bda) new_esEs0(@3(vxw3000, vxw3001, vxw3002), @3(vxw40000, vxw40001, vxw40002), df, app(ty_Maybe, ga), fc) -> new_esEs2(vxw3001, vxw40001, ga) new_esEs1(:(vxw3000, vxw3001), :(vxw40000, vxw40001), app(ty_Maybe, bad)) -> new_esEs2(vxw3000, vxw40000, bad) new_esEs3(Right(vxw3000), Right(vxw40000), bdb, app(ty_[], bdh)) -> new_esEs1(vxw3000, vxw40000, bdh) new_esEs0(@3(vxw3000, vxw3001, vxw3002), @3(vxw40000, vxw40001, vxw40002), app(ty_Maybe, hb), dg, fc) -> new_esEs2(vxw3000, vxw40000, hb) new_esEs0(@3(vxw3000, vxw3001, vxw3002), @3(vxw40000, vxw40001, vxw40002), df, app(app(ty_Either, gb), gc), fc) -> new_esEs3(vxw3001, vxw40001, gb, gc) new_esEs0(@3(vxw3000, vxw3001, vxw3002), @3(vxw40000, vxw40001, vxw40002), df, app(app(app(ty_@3, fd), ff), fg), fc) -> new_esEs0(vxw3001, vxw40001, fd, ff, fg) new_esEs2(Just(vxw3000), Just(vxw40000), app(app(ty_@2, bag), bah)) -> new_esEs(vxw3000, vxw40000, bag, bah) new_esEs(@2(vxw3000, vxw3001), @2(vxw40000, vxw40001), app(app(ty_@2, cc), cd), ce) -> new_esEs(vxw3000, vxw40000, cc, cd) new_esEs(@2(vxw3000, vxw3001), @2(vxw40000, vxw40001), ba, app(app(app(ty_@3, bd), be), bf)) -> new_esEs0(vxw3001, vxw40001, bd, be, bf) new_esEs(@2(vxw3000, vxw3001), @2(vxw40000, vxw40001), app(ty_[], db), ce) -> new_esEs1(vxw3000, vxw40000, db) new_esEs(@2(vxw3000, vxw3001), @2(vxw40000, vxw40001), ba, app(ty_Maybe, bh)) -> new_esEs2(vxw3001, vxw40001, bh) new_esEs(@2(vxw3000, vxw3001), @2(vxw40000, vxw40001), app(app(ty_Either, dd), de), ce) -> new_esEs3(vxw3000, vxw40000, dd, de) new_esEs2(Just(vxw3000), Just(vxw40000), app(ty_Maybe, bbe)) -> new_esEs2(vxw3000, vxw40000, bbe) new_esEs1(:(vxw3000, vxw3001), :(vxw40000, vxw40001), app(app(ty_Either, bae), baf)) -> new_esEs3(vxw3000, vxw40000, bae, baf) new_esEs0(@3(vxw3000, vxw3001, vxw3002), @3(vxw40000, vxw40001, vxw40002), app(app(ty_@2, gd), ge), dg, fc) -> new_esEs(vxw3000, vxw40000, gd, ge) new_esEs(@2(vxw3000, vxw3001), @2(vxw40000, vxw40001), app(ty_Maybe, dc), ce) -> new_esEs2(vxw3000, vxw40000, dc) new_esEs0(@3(vxw3000, vxw3001, vxw3002), @3(vxw40000, vxw40001, vxw40002), df, dg, app(app(ty_Either, eg), eh)) -> new_esEs3(vxw3002, vxw40002, eg, eh) new_esEs3(Right(vxw3000), Right(vxw40000), bdb, app(app(ty_Either, beb), bec)) -> new_esEs3(vxw3000, vxw40000, beb, bec) new_esEs0(@3(vxw3000, vxw3001, vxw3002), @3(vxw40000, vxw40001, vxw40002), df, dg, app(app(app(ty_@3, eb), ec), ed)) -> new_esEs0(vxw3002, vxw40002, eb, ec, ed) new_esEs(@2(vxw3000, vxw3001), @2(vxw40000, vxw40001), ba, app(app(ty_@2, bb), bc)) -> new_esEs(vxw3001, vxw40001, bb, bc) new_esEs0(@3(vxw3000, vxw3001, vxw3002), @3(vxw40000, vxw40001, vxw40002), df, dg, app(ty_Maybe, ef)) -> new_esEs2(vxw3002, vxw40002, ef) new_esEs2(Just(vxw3000), Just(vxw40000), app(app(ty_Either, bbf), bbg)) -> new_esEs3(vxw3000, vxw40000, bbf, bbg) new_esEs3(Left(vxw3000), Left(vxw40000), app(app(app(ty_@3, bcc), bcd), bce), bcb) -> new_esEs0(vxw3000, vxw40000, bcc, bcd, bce) new_esEs3(Left(vxw3000), Left(vxw40000), app(app(ty_@2, bbh), bca), bcb) -> new_esEs(vxw3000, vxw40000, bbh, bca) new_esEs3(Left(vxw3000), Left(vxw40000), app(ty_Maybe, bcg), bcb) -> new_esEs2(vxw3000, vxw40000, bcg) new_esEs3(Left(vxw3000), Left(vxw40000), app(ty_[], bcf), bcb) -> new_esEs1(vxw3000, vxw40000, bcf) new_esEs(@2(vxw3000, vxw3001), @2(vxw40000, vxw40001), ba, app(app(ty_Either, ca), cb)) -> new_esEs3(vxw3001, vxw40001, ca, cb) new_esEs1(:(vxw3000, vxw3001), :(vxw40000, vxw40001), he) -> new_esEs1(vxw3001, vxw40001, he) new_esEs1(:(vxw3000, vxw3001), :(vxw40000, vxw40001), app(app(app(ty_@3, hh), baa), bab)) -> new_esEs0(vxw3000, vxw40000, hh, baa, bab) new_esEs3(Right(vxw3000), Right(vxw40000), bdb, app(app(app(ty_@3, bde), bdf), bdg)) -> new_esEs0(vxw3000, vxw40000, bde, bdf, bdg) new_esEs1(:(vxw3000, vxw3001), :(vxw40000, vxw40001), app(app(ty_@2, hf), hg)) -> new_esEs(vxw3000, vxw40000, hf, hg) new_esEs0(@3(vxw3000, vxw3001, vxw3002), @3(vxw40000, vxw40001, vxw40002), df, app(app(ty_@2, fa), fb), fc) -> new_esEs(vxw3001, vxw40001, fa, fb) new_esEs0(@3(vxw3000, vxw3001, vxw3002), @3(vxw40000, vxw40001, vxw40002), df, app(ty_[], fh), fc) -> new_esEs1(vxw3001, vxw40001, fh) new_esEs1(:(vxw3000, vxw3001), :(vxw40000, vxw40001), app(ty_[], bac)) -> new_esEs1(vxw3000, vxw40000, bac) new_esEs0(@3(vxw3000, vxw3001, vxw3002), @3(vxw40000, vxw40001, vxw40002), df, dg, app(app(ty_@2, dh), ea)) -> new_esEs(vxw3002, vxw40002, dh, ea) new_esEs0(@3(vxw3000, vxw3001, vxw3002), @3(vxw40000, vxw40001, vxw40002), app(ty_[], ha), dg, fc) -> new_esEs1(vxw3000, vxw40000, ha) new_esEs(@2(vxw3000, vxw3001), @2(vxw40000, vxw40001), app(app(app(ty_@3, cf), cg), da), ce) -> new_esEs0(vxw3000, vxw40000, cf, cg, da) new_esEs3(Right(vxw3000), Right(vxw40000), bdb, app(app(ty_@2, bdc), bdd)) -> new_esEs(vxw3000, vxw40000, bdc, bdd) new_esEs2(Just(vxw3000), Just(vxw40000), app(app(app(ty_@3, bba), bbb), bbc)) -> new_esEs0(vxw3000, vxw40000, bba, bbb, bbc) new_esEs0(@3(vxw3000, vxw3001, vxw3002), @3(vxw40000, vxw40001, vxw40002), app(app(app(ty_@3, gf), gg), gh), dg, fc) -> new_esEs0(vxw3000, vxw40000, gf, gg, gh) new_esEs0(@3(vxw3000, vxw3001, vxw3002), @3(vxw40000, vxw40001, vxw40002), df, dg, app(ty_[], ee)) -> new_esEs1(vxw3002, vxw40002, ee) new_esEs0(@3(vxw3000, vxw3001, vxw3002), @3(vxw40000, vxw40001, vxw40002), app(app(ty_Either, hc), hd), dg, fc) -> new_esEs3(vxw3000, vxw40000, hc, hd) new_esEs3(Right(vxw3000), Right(vxw40000), bdb, app(ty_Maybe, bea)) -> new_esEs2(vxw3000, vxw40000, bea) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (30) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_esEs1(:(vxw3000, vxw3001), :(vxw40000, vxw40001), app(app(ty_@2, hf), hg)) -> new_esEs(vxw3000, vxw40000, hf, hg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(:(vxw3000, vxw3001), :(vxw40000, vxw40001), app(ty_Maybe, bad)) -> new_esEs2(vxw3000, vxw40000, bad) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(:(vxw3000, vxw3001), :(vxw40000, vxw40001), app(app(ty_Either, bae), baf)) -> new_esEs3(vxw3000, vxw40000, bae, baf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(:(vxw3000, vxw3001), :(vxw40000, vxw40001), app(app(app(ty_@3, hh), baa), bab)) -> new_esEs0(vxw3000, vxw40000, hh, baa, bab) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs2(Just(vxw3000), Just(vxw40000), app(app(ty_@2, bag), bah)) -> new_esEs(vxw3000, vxw40000, bag, bah) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(Just(vxw3000), Just(vxw40000), app(ty_Maybe, bbe)) -> new_esEs2(vxw3000, vxw40000, bbe) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(Just(vxw3000), Just(vxw40000), app(app(ty_Either, bbf), bbg)) -> new_esEs3(vxw3000, vxw40000, bbf, bbg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(Just(vxw3000), Just(vxw40000), app(app(app(ty_@3, bba), bbb), bbc)) -> new_esEs0(vxw3000, vxw40000, bba, bbb, bbc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs2(Just(vxw3000), Just(vxw40000), app(ty_[], bbd)) -> new_esEs1(vxw3000, vxw40000, bbd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(:(vxw3000, vxw3001), :(vxw40000, vxw40001), he) -> new_esEs1(vxw3001, vxw40001, he) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_esEs1(:(vxw3000, vxw3001), :(vxw40000, vxw40001), app(ty_[], bac)) -> new_esEs1(vxw3000, vxw40000, bac) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(Left(vxw3000), Left(vxw40000), app(app(ty_@2, bbh), bca), bcb) -> new_esEs(vxw3000, vxw40000, bbh, bca) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(Right(vxw3000), Right(vxw40000), bdb, app(app(ty_@2, bdc), bdd)) -> new_esEs(vxw3000, vxw40000, bdc, bdd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs0(@3(vxw3000, vxw3001, vxw3002), @3(vxw40000, vxw40001, vxw40002), app(app(ty_@2, gd), ge), dg, fc) -> new_esEs(vxw3000, vxw40000, gd, ge) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(@3(vxw3000, vxw3001, vxw3002), @3(vxw40000, vxw40001, vxw40002), df, app(app(ty_@2, fa), fb), fc) -> new_esEs(vxw3001, vxw40001, fa, fb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs0(@3(vxw3000, vxw3001, vxw3002), @3(vxw40000, vxw40001, vxw40002), df, dg, app(app(ty_@2, dh), ea)) -> new_esEs(vxw3002, vxw40002, dh, ea) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs(@2(vxw3000, vxw3001), @2(vxw40000, vxw40001), app(app(ty_@2, cc), cd), ce) -> new_esEs(vxw3000, vxw40000, cc, cd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(@2(vxw3000, vxw3001), @2(vxw40000, vxw40001), ba, app(app(ty_@2, bb), bc)) -> new_esEs(vxw3001, vxw40001, bb, bc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs3(Left(vxw3000), Left(vxw40000), app(ty_Maybe, bcg), bcb) -> new_esEs2(vxw3000, vxw40000, bcg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(Right(vxw3000), Right(vxw40000), bdb, app(ty_Maybe, bea)) -> new_esEs2(vxw3000, vxw40000, bea) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs0(@3(vxw3000, vxw3001, vxw3002), @3(vxw40000, vxw40001, vxw40002), df, app(ty_Maybe, ga), fc) -> new_esEs2(vxw3001, vxw40001, ga) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs0(@3(vxw3000, vxw3001, vxw3002), @3(vxw40000, vxw40001, vxw40002), app(ty_Maybe, hb), dg, fc) -> new_esEs2(vxw3000, vxw40000, hb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(@3(vxw3000, vxw3001, vxw3002), @3(vxw40000, vxw40001, vxw40002), df, dg, app(ty_Maybe, ef)) -> new_esEs2(vxw3002, vxw40002, ef) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs(@2(vxw3000, vxw3001), @2(vxw40000, vxw40001), ba, app(ty_Maybe, bh)) -> new_esEs2(vxw3001, vxw40001, bh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs(@2(vxw3000, vxw3001), @2(vxw40000, vxw40001), app(ty_Maybe, dc), ce) -> new_esEs2(vxw3000, vxw40000, dc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(Left(vxw3000), Left(vxw40000), app(app(ty_Either, bch), bda), bcb) -> new_esEs3(vxw3000, vxw40000, bch, bda) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(Right(vxw3000), Right(vxw40000), bdb, app(app(ty_Either, beb), bec)) -> new_esEs3(vxw3000, vxw40000, beb, bec) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs3(Left(vxw3000), Left(vxw40000), app(app(app(ty_@3, bcc), bcd), bce), bcb) -> new_esEs0(vxw3000, vxw40000, bcc, bcd, bce) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs3(Right(vxw3000), Right(vxw40000), bdb, app(app(app(ty_@3, bde), bdf), bdg)) -> new_esEs0(vxw3000, vxw40000, bde, bdf, bdg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs3(Right(vxw3000), Right(vxw40000), bdb, app(ty_[], bdh)) -> new_esEs1(vxw3000, vxw40000, bdh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs3(Left(vxw3000), Left(vxw40000), app(ty_[], bcf), bcb) -> new_esEs1(vxw3000, vxw40000, bcf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(@3(vxw3000, vxw3001, vxw3002), @3(vxw40000, vxw40001, vxw40002), df, app(app(ty_Either, gb), gc), fc) -> new_esEs3(vxw3001, vxw40001, gb, gc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs0(@3(vxw3000, vxw3001, vxw3002), @3(vxw40000, vxw40001, vxw40002), df, dg, app(app(ty_Either, eg), eh)) -> new_esEs3(vxw3002, vxw40002, eg, eh) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs0(@3(vxw3000, vxw3001, vxw3002), @3(vxw40000, vxw40001, vxw40002), app(app(ty_Either, hc), hd), dg, fc) -> new_esEs3(vxw3000, vxw40000, hc, hd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(@2(vxw3000, vxw3001), @2(vxw40000, vxw40001), app(app(ty_Either, dd), de), ce) -> new_esEs3(vxw3000, vxw40000, dd, de) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(@2(vxw3000, vxw3001), @2(vxw40000, vxw40001), ba, app(app(ty_Either, ca), cb)) -> new_esEs3(vxw3001, vxw40001, ca, cb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs0(@3(vxw3000, vxw3001, vxw3002), @3(vxw40000, vxw40001, vxw40002), df, app(app(app(ty_@3, fd), ff), fg), fc) -> new_esEs0(vxw3001, vxw40001, fd, ff, fg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs0(@3(vxw3000, vxw3001, vxw3002), @3(vxw40000, vxw40001, vxw40002), df, dg, app(app(app(ty_@3, eb), ec), ed)) -> new_esEs0(vxw3002, vxw40002, eb, ec, ed) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_esEs0(@3(vxw3000, vxw3001, vxw3002), @3(vxw40000, vxw40001, vxw40002), app(app(app(ty_@3, gf), gg), gh), dg, fc) -> new_esEs0(vxw3000, vxw40000, gf, gg, gh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs(@2(vxw3000, vxw3001), @2(vxw40000, vxw40001), ba, app(app(app(ty_@3, bd), be), bf)) -> new_esEs0(vxw3001, vxw40001, bd, be, bf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs(@2(vxw3000, vxw3001), @2(vxw40000, vxw40001), app(app(app(ty_@3, cf), cg), da), ce) -> new_esEs0(vxw3000, vxw40000, cf, cg, da) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs0(@3(vxw3000, vxw3001, vxw3002), @3(vxw40000, vxw40001, vxw40002), df, app(ty_[], fh), fc) -> new_esEs1(vxw3001, vxw40001, fh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs0(@3(vxw3000, vxw3001, vxw3002), @3(vxw40000, vxw40001, vxw40002), app(ty_[], ha), dg, fc) -> new_esEs1(vxw3000, vxw40000, ha) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(@3(vxw3000, vxw3001, vxw3002), @3(vxw40000, vxw40001, vxw40002), df, dg, app(ty_[], ee)) -> new_esEs1(vxw3002, vxw40002, ee) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs(@2(vxw3000, vxw3001), @2(vxw40000, vxw40001), ba, app(ty_[], bg)) -> new_esEs1(vxw3001, vxw40001, bg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs(@2(vxw3000, vxw3001), @2(vxw40000, vxw40001), app(ty_[], db), ce) -> new_esEs1(vxw3000, vxw40000, db) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 ---------------------------------------- (31) YES ---------------------------------------- (32) Obligation: Q DP problem: The TRS P consists of the following rules: new_primEqNat(Succ(vxw30000), Succ(vxw400000)) -> new_primEqNat(vxw30000, vxw400000) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (33) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_primEqNat(Succ(vxw30000), Succ(vxw400000)) -> new_primEqNat(vxw30000, vxw400000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (34) YES ---------------------------------------- (35) Obligation: Q DP problem: The TRS P consists of the following rules: new_primPlusNat(Succ(vxw15900), Succ(vxw301000)) -> new_primPlusNat(vxw15900, vxw301000) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (36) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_primPlusNat(Succ(vxw15900), Succ(vxw301000)) -> new_primPlusNat(vxw15900, vxw301000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (37) YES