/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, 12 ms] (8) HASKELL (9) LetRed [EQUIVALENT, 0 ms] (10) HASKELL (11) NumRed [SOUND, 0 ms] (12) HASKELL (13) Narrow [SOUND, 0 ms] (14) AND (15) QDP (16) QDPSizeChangeProof [EQUIVALENT, 0 ms] (17) YES (18) QDP (19) QDPSizeChangeProof [EQUIVALENT, 152 ms] (20) YES (21) QDP (22) QDPSizeChangeProof [EQUIVALENT, 0 ms] (23) YES (24) QDP (25) QDPSizeChangeProof [EQUIVALENT, 0 ms] (26) YES (27) QDP (28) QDPSizeChangeProof [EQUIVALENT, 0 ms] (29) YES (30) QDP (31) QDPSizeChangeProof [EQUIVALENT, 0 ms] (32) YES ---------------------------------------- (0) Obligation: mainModule Main module Main where { import qualified Prelude; } ---------------------------------------- (1) CR (EQUIVALENT) Case Reductions: The following Case expression "case compare x y of { EQ -> o; LT -> LT; GT -> GT} " is transformed to "primCompAux0 o EQ = o; primCompAux0 o LT = LT; primCompAux0 o GT = GT; " ---------------------------------------- (2) Obligation: mainModule Main module Main where { import qualified Prelude; } ---------------------------------------- (3) IFR (EQUIVALENT) If Reductions: The following If expression "if primGEqNatS x y then Succ (primDivNatS (primMinusNatS x y) (Succ y)) else Zero" is transformed to "primDivNatS0 x y True = Succ (primDivNatS (primMinusNatS x y) (Succ y)); primDivNatS0 x y False = Zero; " The following If expression "if primGEqNatS x y then primModNatS (primMinusNatS x y) (Succ y) else Succ x" is transformed to "primModNatS0 x y True = primModNatS (primMinusNatS x y) (Succ y); primModNatS0 x y False = Succ x; " ---------------------------------------- (4) Obligation: mainModule Main module Main where { import qualified Prelude; } ---------------------------------------- (5) BR (EQUIVALENT) Replaced joker patterns by fresh variables and removed binding patterns. ---------------------------------------- (6) Obligation: mainModule Main module Main where { import qualified Prelude; } ---------------------------------------- (7) COR (EQUIVALENT) Cond Reductions: The following Function with conditions "absReal x|x >= 0x|otherwise`negate` x; " is transformed to "absReal x = absReal2 x; " "absReal0 x True = `negate` x; " "absReal1 x True = x; absReal1 x False = absReal0 x otherwise; " "absReal2 x = absReal1 x (x >= 0); " The following Function with conditions "gcd' x 0 = x; gcd' x y = gcd' y (x `rem` y); " is transformed to "gcd' x zx = gcd'2 x zx; gcd' x y = gcd'0 x y; " "gcd'0 x y = gcd' y (x `rem` y); " "gcd'1 True x zx = x; gcd'1 zy zz vuu = gcd'0 zz vuu; " "gcd'2 x zx = gcd'1 (zx == 0) x zx; gcd'2 vuv vuw = gcd'0 vuv vuw; " The following Function with conditions "gcd 0 0 = error []; gcd x y = gcd' (abs x) (abs y) where { gcd' x 0 = x; gcd' x y = gcd' y (x `rem` y); } ; " is transformed to "gcd vux vuy = gcd3 vux vuy; gcd x y = gcd0 x y; " "gcd0 x y = gcd' (abs x) (abs y) where { gcd' x zx = gcd'2 x zx; gcd' x y = gcd'0 x y; ; gcd'0 x y = gcd' y (x `rem` y); ; gcd'1 True x zx = x; gcd'1 zy zz vuu = gcd'0 zz vuu; ; gcd'2 x zx = gcd'1 (zx == 0) x zx; gcd'2 vuv vuw = gcd'0 vuv vuw; } ; " "gcd1 True vux vuy = error []; gcd1 vuz vvu vvv = gcd0 vvu vvv; " "gcd2 True vux vuy = gcd1 (vuy == 0) vux vuy; gcd2 vvw vvx vvy = gcd0 vvx vvy; " "gcd3 vux vuy = gcd2 (vux == 0) vux vuy; gcd3 vvz vwu = gcd0 vvz vwu; " The following Function with conditions "undefined |Falseundefined; " is transformed to "undefined = undefined1; " "undefined0 True = undefined; " "undefined1 = undefined0 False; " The following Function with conditions "reduce x y|y == 0error []|otherwisex `quot` d :% (y `quot` d) where { d = gcd x y; } ; " is transformed to "reduce x y = reduce2 x y; " "reduce2 x y = reduce1 x y (y == 0) where { d = gcd x y; ; reduce0 x y True = x `quot` d :% (y `quot` d); ; reduce1 x y True = error []; reduce1 x y False = reduce0 x y otherwise; } ; " The following Function with conditions "compare x y|x == yEQ|x <= yLT|otherwiseGT; " is transformed to "compare x y = compare3 x y; " "compare1 x y True = LT; compare1 x y False = compare0 x y otherwise; " "compare2 x y True = EQ; compare2 x y False = compare1 x y (x <= y); " "compare0 x y True = GT; " "compare3 x y = compare2 x y (x == y); " ---------------------------------------- (8) Obligation: mainModule Main module Main where { import qualified Prelude; } ---------------------------------------- (9) LetRed (EQUIVALENT) Let/Where Reductions: The bindings of the following Let/Where expression "gcd' (abs x) (abs y) where { gcd' x zx = gcd'2 x zx; gcd' x y = gcd'0 x y; ; gcd'0 x y = gcd' y (x `rem` y); ; gcd'1 True x zx = x; gcd'1 zy zz vuu = gcd'0 zz vuu; ; gcd'2 x zx = gcd'1 (zx == 0) x zx; gcd'2 vuv vuw = gcd'0 vuv vuw; } " are unpacked to the following functions on top level "gcd0Gcd'1 True x zx = x; gcd0Gcd'1 zy zz vuu = gcd0Gcd'0 zz vuu; " "gcd0Gcd'2 x zx = gcd0Gcd'1 (zx == 0) x zx; gcd0Gcd'2 vuv vuw = gcd0Gcd'0 vuv vuw; " "gcd0Gcd'0 x y = gcd0Gcd' y (x `rem` y); " "gcd0Gcd' x zx = gcd0Gcd'2 x zx; gcd0Gcd' x y = gcd0Gcd'0 x y; " The bindings of the following Let/Where expression "reduce1 x y (y == 0) where { d = gcd x y; ; reduce0 x y True = x `quot` d :% (y `quot` d); ; reduce1 x y True = error []; reduce1 x y False = reduce0 x y otherwise; } " are unpacked to the following functions on top level "reduce2D vwv vww = gcd vwv vww; " "reduce2Reduce0 vwv vww x y True = x `quot` reduce2D vwv vww :% (y `quot` reduce2D vwv vww); " "reduce2Reduce1 vwv vww x y True = error []; reduce2Reduce1 vwv vww x y False = reduce2Reduce0 vwv vww x y otherwise; " ---------------------------------------- (10) Obligation: mainModule Main module Main where { import qualified Prelude; } ---------------------------------------- (11) NumRed (SOUND) Num Reduction:All numbers are transformed to their corresponding representation with Succ, Pred and Zero. ---------------------------------------- (12) Obligation: mainModule Main module Main where { import qualified Prelude; } ---------------------------------------- (13) Narrow (SOUND) Haskell To QDPs digraph dp_graph { node [outthreshold=100, inthreshold=100];1[label="(>=)",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 3[label="(>=) vwx3",fontsize=16,color="grey",shape="box"];3 -> 4[label="",style="dashed", color="grey", weight=3]; 4[label="(>=) vwx3 vwx4",fontsize=16,color="black",shape="triangle"];4 -> 5[label="",style="solid", color="black", weight=3]; 5[label="compare vwx3 vwx4 /= LT",fontsize=16,color="black",shape="box"];5 -> 6[label="",style="solid", color="black", weight=3]; 6 -> 2258[label="",style="dashed", color="red", weight=0]; 6[label="not (compare vwx3 vwx4 == LT)",fontsize=16,color="magenta"];6 -> 2259[label="",style="dashed", color="magenta", weight=3]; 2259 -> 2340[label="",style="dashed", color="red", weight=0]; 2259[label="compare vwx3 vwx4 == LT",fontsize=16,color="magenta"];2259 -> 2341[label="",style="dashed", color="magenta", weight=3]; 2258[label="not vwx170",fontsize=16,color="burlywood",shape="triangle"];5073[label="vwx170/False",fontsize=10,color="white",style="solid",shape="box"];2258 -> 5073[label="",style="solid", color="burlywood", weight=9]; 5073 -> 2267[label="",style="solid", color="burlywood", weight=3]; 5074[label="vwx170/True",fontsize=10,color="white",style="solid",shape="box"];2258 -> 5074[label="",style="solid", color="burlywood", weight=9]; 5074 -> 2268[label="",style="solid", color="burlywood", weight=3]; 2341[label="compare vwx3 vwx4",fontsize=16,color="burlywood",shape="triangle"];5075[label="vwx3/vwx30 : vwx31",fontsize=10,color="white",style="solid",shape="box"];2341 -> 5075[label="",style="solid", color="burlywood", weight=9]; 5075 -> 2351[label="",style="solid", color="burlywood", weight=3]; 5076[label="vwx3/[]",fontsize=10,color="white",style="solid",shape="box"];2341 -> 5076[label="",style="solid", color="burlywood", weight=9]; 5076 -> 2352[label="",style="solid", color="burlywood", weight=3]; 2340[label="vwx180 == LT",fontsize=16,color="burlywood",shape="triangle"];5077[label="vwx180/LT",fontsize=10,color="white",style="solid",shape="box"];2340 -> 5077[label="",style="solid", color="burlywood", weight=9]; 5077 -> 2353[label="",style="solid", color="burlywood", weight=3]; 5078[label="vwx180/EQ",fontsize=10,color="white",style="solid",shape="box"];2340 -> 5078[label="",style="solid", color="burlywood", weight=9]; 5078 -> 2354[label="",style="solid", color="burlywood", weight=3]; 5079[label="vwx180/GT",fontsize=10,color="white",style="solid",shape="box"];2340 -> 5079[label="",style="solid", color="burlywood", weight=9]; 5079 -> 2355[label="",style="solid", color="burlywood", weight=3]; 2267[label="not False",fontsize=16,color="black",shape="box"];2267 -> 2273[label="",style="solid", color="black", weight=3]; 2268[label="not True",fontsize=16,color="black",shape="box"];2268 -> 2274[label="",style="solid", color="black", weight=3]; 2351[label="compare (vwx30 : vwx31) vwx4",fontsize=16,color="burlywood",shape="box"];5080[label="vwx4/vwx40 : vwx41",fontsize=10,color="white",style="solid",shape="box"];2351 -> 5080[label="",style="solid", color="burlywood", weight=9]; 5080 -> 2356[label="",style="solid", color="burlywood", weight=3]; 5081[label="vwx4/[]",fontsize=10,color="white",style="solid",shape="box"];2351 -> 5081[label="",style="solid", color="burlywood", weight=9]; 5081 -> 2357[label="",style="solid", color="burlywood", weight=3]; 2352[label="compare [] vwx4",fontsize=16,color="burlywood",shape="box"];5082[label="vwx4/vwx40 : vwx41",fontsize=10,color="white",style="solid",shape="box"];2352 -> 5082[label="",style="solid", color="burlywood", weight=9]; 5082 -> 2358[label="",style="solid", color="burlywood", weight=3]; 5083[label="vwx4/[]",fontsize=10,color="white",style="solid",shape="box"];2352 -> 5083[label="",style="solid", color="burlywood", weight=9]; 5083 -> 2359[label="",style="solid", color="burlywood", weight=3]; 2353[label="LT == LT",fontsize=16,color="black",shape="box"];2353 -> 2360[label="",style="solid", color="black", weight=3]; 2354[label="EQ == LT",fontsize=16,color="black",shape="box"];2354 -> 2361[label="",style="solid", color="black", weight=3]; 2355[label="GT == LT",fontsize=16,color="black",shape="box"];2355 -> 2362[label="",style="solid", color="black", weight=3]; 2273[label="True",fontsize=16,color="green",shape="box"];2274[label="False",fontsize=16,color="green",shape="box"];2356[label="compare (vwx30 : vwx31) (vwx40 : vwx41)",fontsize=16,color="black",shape="box"];2356 -> 2363[label="",style="solid", color="black", weight=3]; 2357[label="compare (vwx30 : vwx31) []",fontsize=16,color="black",shape="box"];2357 -> 2364[label="",style="solid", color="black", weight=3]; 2358[label="compare [] (vwx40 : vwx41)",fontsize=16,color="black",shape="box"];2358 -> 2365[label="",style="solid", color="black", weight=3]; 2359[label="compare [] []",fontsize=16,color="black",shape="box"];2359 -> 2366[label="",style="solid", color="black", weight=3]; 2360[label="True",fontsize=16,color="green",shape="box"];2361[label="False",fontsize=16,color="green",shape="box"];2362[label="False",fontsize=16,color="green",shape="box"];2363 -> 2367[label="",style="dashed", color="red", weight=0]; 2363[label="primCompAux vwx30 vwx40 (compare vwx31 vwx41)",fontsize=16,color="magenta"];2363 -> 2368[label="",style="dashed", color="magenta", weight=3]; 2364[label="GT",fontsize=16,color="green",shape="box"];2365[label="LT",fontsize=16,color="green",shape="box"];2366[label="EQ",fontsize=16,color="green",shape="box"];2368 -> 2341[label="",style="dashed", color="red", weight=0]; 2368[label="compare vwx31 vwx41",fontsize=16,color="magenta"];2368 -> 2369[label="",style="dashed", color="magenta", weight=3]; 2368 -> 2370[label="",style="dashed", color="magenta", weight=3]; 2367[label="primCompAux vwx30 vwx40 vwx181",fontsize=16,color="black",shape="triangle"];2367 -> 2371[label="",style="solid", color="black", weight=3]; 2369[label="vwx41",fontsize=16,color="green",shape="box"];2370[label="vwx31",fontsize=16,color="green",shape="box"];2371 -> 2372[label="",style="dashed", color="red", weight=0]; 2371[label="primCompAux0 vwx181 (compare vwx30 vwx40)",fontsize=16,color="magenta"];2371 -> 2373[label="",style="dashed", color="magenta", weight=3]; 2371 -> 2374[label="",style="dashed", color="magenta", weight=3]; 2373[label="vwx181",fontsize=16,color="green",shape="box"];2374[label="compare vwx30 vwx40",fontsize=16,color="blue",shape="box"];5084[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2374 -> 5084[label="",style="solid", color="blue", weight=9]; 5084 -> 2375[label="",style="solid", color="blue", weight=3]; 5085[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2374 -> 5085[label="",style="solid", color="blue", weight=9]; 5085 -> 2376[label="",style="solid", color="blue", weight=3]; 5086[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2374 -> 5086[label="",style="solid", color="blue", weight=9]; 5086 -> 2377[label="",style="solid", color="blue", weight=3]; 5087[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2374 -> 5087[label="",style="solid", color="blue", weight=9]; 5087 -> 2378[label="",style="solid", color="blue", weight=3]; 5088[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2374 -> 5088[label="",style="solid", color="blue", weight=9]; 5088 -> 2379[label="",style="solid", color="blue", weight=3]; 5089[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2374 -> 5089[label="",style="solid", color="blue", weight=9]; 5089 -> 2380[label="",style="solid", color="blue", weight=3]; 5090[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2374 -> 5090[label="",style="solid", color="blue", weight=9]; 5090 -> 2381[label="",style="solid", color="blue", weight=3]; 5091[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2374 -> 5091[label="",style="solid", color="blue", weight=9]; 5091 -> 2382[label="",style="solid", color="blue", weight=3]; 5092[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2374 -> 5092[label="",style="solid", color="blue", weight=9]; 5092 -> 2383[label="",style="solid", color="blue", weight=3]; 5093[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2374 -> 5093[label="",style="solid", color="blue", weight=9]; 5093 -> 2384[label="",style="solid", color="blue", weight=3]; 5094[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2374 -> 5094[label="",style="solid", color="blue", weight=9]; 5094 -> 2385[label="",style="solid", color="blue", weight=3]; 5095[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2374 -> 5095[label="",style="solid", color="blue", weight=9]; 5095 -> 2386[label="",style="solid", color="blue", weight=3]; 5096[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2374 -> 5096[label="",style="solid", color="blue", weight=9]; 5096 -> 2387[label="",style="solid", color="blue", weight=3]; 5097[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2374 -> 5097[label="",style="solid", color="blue", weight=9]; 5097 -> 2388[label="",style="solid", color="blue", weight=3]; 2372[label="primCompAux0 vwx185 vwx186",fontsize=16,color="burlywood",shape="triangle"];5098[label="vwx186/LT",fontsize=10,color="white",style="solid",shape="box"];2372 -> 5098[label="",style="solid", color="burlywood", weight=9]; 5098 -> 2389[label="",style="solid", color="burlywood", weight=3]; 5099[label="vwx186/EQ",fontsize=10,color="white",style="solid",shape="box"];2372 -> 5099[label="",style="solid", color="burlywood", weight=9]; 5099 -> 2390[label="",style="solid", color="burlywood", weight=3]; 5100[label="vwx186/GT",fontsize=10,color="white",style="solid",shape="box"];2372 -> 5100[label="",style="solid", color="burlywood", weight=9]; 5100 -> 2391[label="",style="solid", color="burlywood", weight=3]; 2375[label="compare vwx30 vwx40",fontsize=16,color="black",shape="triangle"];2375 -> 2392[label="",style="solid", color="black", weight=3]; 2376[label="compare vwx30 vwx40",fontsize=16,color="black",shape="triangle"];2376 -> 2393[label="",style="solid", color="black", weight=3]; 2377[label="compare vwx30 vwx40",fontsize=16,color="black",shape="triangle"];2377 -> 2394[label="",style="solid", color="black", weight=3]; 2378[label="compare vwx30 vwx40",fontsize=16,color="burlywood",shape="triangle"];5101[label="vwx30/Integer vwx300",fontsize=10,color="white",style="solid",shape="box"];2378 -> 5101[label="",style="solid", color="burlywood", weight=9]; 5101 -> 2395[label="",style="solid", color="burlywood", weight=3]; 2379[label="compare vwx30 vwx40",fontsize=16,color="black",shape="triangle"];2379 -> 2396[label="",style="solid", color="black", weight=3]; 2380[label="compare vwx30 vwx40",fontsize=16,color="black",shape="triangle"];2380 -> 2397[label="",style="solid", color="black", weight=3]; 2381[label="compare vwx30 vwx40",fontsize=16,color="black",shape="triangle"];2381 -> 2398[label="",style="solid", color="black", weight=3]; 2382[label="compare vwx30 vwx40",fontsize=16,color="black",shape="triangle"];2382 -> 2399[label="",style="solid", color="black", weight=3]; 2383[label="compare vwx30 vwx40",fontsize=16,color="black",shape="triangle"];2383 -> 2400[label="",style="solid", color="black", weight=3]; 2384[label="compare vwx30 vwx40",fontsize=16,color="black",shape="triangle"];2384 -> 2401[label="",style="solid", color="black", weight=3]; 2385 -> 2341[label="",style="dashed", color="red", weight=0]; 2385[label="compare vwx30 vwx40",fontsize=16,color="magenta"];2385 -> 2402[label="",style="dashed", color="magenta", weight=3]; 2385 -> 2403[label="",style="dashed", color="magenta", weight=3]; 2386[label="compare vwx30 vwx40",fontsize=16,color="black",shape="triangle"];2386 -> 2404[label="",style="solid", color="black", weight=3]; 2387[label="compare vwx30 vwx40",fontsize=16,color="burlywood",shape="triangle"];5102[label="vwx30/vwx300 :% vwx301",fontsize=10,color="white",style="solid",shape="box"];2387 -> 5102[label="",style="solid", color="burlywood", weight=9]; 5102 -> 2405[label="",style="solid", color="burlywood", weight=3]; 2388[label="compare vwx30 vwx40",fontsize=16,color="burlywood",shape="triangle"];5103[label="vwx30/()",fontsize=10,color="white",style="solid",shape="box"];2388 -> 5103[label="",style="solid", color="burlywood", weight=9]; 5103 -> 2406[label="",style="solid", color="burlywood", weight=3]; 2389[label="primCompAux0 vwx185 LT",fontsize=16,color="black",shape="box"];2389 -> 2407[label="",style="solid", color="black", weight=3]; 2390[label="primCompAux0 vwx185 EQ",fontsize=16,color="black",shape="box"];2390 -> 2408[label="",style="solid", color="black", weight=3]; 2391[label="primCompAux0 vwx185 GT",fontsize=16,color="black",shape="box"];2391 -> 2409[label="",style="solid", color="black", weight=3]; 2392[label="primCmpDouble vwx30 vwx40",fontsize=16,color="burlywood",shape="box"];5104[label="vwx30/Double vwx300 vwx301",fontsize=10,color="white",style="solid",shape="box"];2392 -> 5104[label="",style="solid", color="burlywood", weight=9]; 5104 -> 2410[label="",style="solid", color="burlywood", weight=3]; 2393[label="primCmpFloat vwx30 vwx40",fontsize=16,color="burlywood",shape="box"];5105[label="vwx30/Float vwx300 vwx301",fontsize=10,color="white",style="solid",shape="box"];2393 -> 5105[label="",style="solid", color="burlywood", weight=9]; 5105 -> 2411[label="",style="solid", color="burlywood", weight=3]; 2394[label="compare3 vwx30 vwx40",fontsize=16,color="black",shape="box"];2394 -> 2412[label="",style="solid", color="black", weight=3]; 2395[label="compare (Integer vwx300) vwx40",fontsize=16,color="burlywood",shape="box"];5106[label="vwx40/Integer vwx400",fontsize=10,color="white",style="solid",shape="box"];2395 -> 5106[label="",style="solid", color="burlywood", weight=9]; 5106 -> 2413[label="",style="solid", color="burlywood", weight=3]; 2396[label="primCmpChar vwx30 vwx40",fontsize=16,color="burlywood",shape="box"];5107[label="vwx30/Char vwx300",fontsize=10,color="white",style="solid",shape="box"];2396 -> 5107[label="",style="solid", color="burlywood", weight=9]; 5107 -> 2414[label="",style="solid", color="burlywood", weight=3]; 2397[label="compare3 vwx30 vwx40",fontsize=16,color="black",shape="box"];2397 -> 2415[label="",style="solid", color="black", weight=3]; 2398[label="compare3 vwx30 vwx40",fontsize=16,color="black",shape="box"];2398 -> 2416[label="",style="solid", color="black", weight=3]; 2399[label="compare3 vwx30 vwx40",fontsize=16,color="black",shape="box"];2399 -> 2417[label="",style="solid", color="black", weight=3]; 2400[label="primCmpInt vwx30 vwx40",fontsize=16,color="burlywood",shape="triangle"];5108[label="vwx30/Pos vwx300",fontsize=10,color="white",style="solid",shape="box"];2400 -> 5108[label="",style="solid", color="burlywood", weight=9]; 5108 -> 2418[label="",style="solid", color="burlywood", weight=3]; 5109[label="vwx30/Neg vwx300",fontsize=10,color="white",style="solid",shape="box"];2400 -> 5109[label="",style="solid", color="burlywood", weight=9]; 5109 -> 2419[label="",style="solid", color="burlywood", weight=3]; 2401[label="compare3 vwx30 vwx40",fontsize=16,color="black",shape="box"];2401 -> 2420[label="",style="solid", color="black", weight=3]; 2402[label="vwx40",fontsize=16,color="green",shape="box"];2403[label="vwx30",fontsize=16,color="green",shape="box"];2404[label="compare3 vwx30 vwx40",fontsize=16,color="black",shape="box"];2404 -> 2421[label="",style="solid", color="black", weight=3]; 2405[label="compare (vwx300 :% vwx301) vwx40",fontsize=16,color="burlywood",shape="box"];5110[label="vwx40/vwx400 :% vwx401",fontsize=10,color="white",style="solid",shape="box"];2405 -> 5110[label="",style="solid", color="burlywood", weight=9]; 5110 -> 2422[label="",style="solid", color="burlywood", weight=3]; 2406[label="compare () vwx40",fontsize=16,color="burlywood",shape="box"];5111[label="vwx40/()",fontsize=10,color="white",style="solid",shape="box"];2406 -> 5111[label="",style="solid", color="burlywood", weight=9]; 5111 -> 2423[label="",style="solid", color="burlywood", weight=3]; 2407[label="LT",fontsize=16,color="green",shape="box"];2408[label="vwx185",fontsize=16,color="green",shape="box"];2409[label="GT",fontsize=16,color="green",shape="box"];2410[label="primCmpDouble (Double vwx300 vwx301) vwx40",fontsize=16,color="burlywood",shape="box"];5112[label="vwx301/Pos vwx3010",fontsize=10,color="white",style="solid",shape="box"];2410 -> 5112[label="",style="solid", color="burlywood", weight=9]; 5112 -> 2424[label="",style="solid", color="burlywood", weight=3]; 5113[label="vwx301/Neg vwx3010",fontsize=10,color="white",style="solid",shape="box"];2410 -> 5113[label="",style="solid", color="burlywood", weight=9]; 5113 -> 2425[label="",style="solid", color="burlywood", weight=3]; 2411[label="primCmpFloat (Float vwx300 vwx301) vwx40",fontsize=16,color="burlywood",shape="box"];5114[label="vwx301/Pos vwx3010",fontsize=10,color="white",style="solid",shape="box"];2411 -> 5114[label="",style="solid", color="burlywood", weight=9]; 5114 -> 2426[label="",style="solid", color="burlywood", weight=3]; 5115[label="vwx301/Neg vwx3010",fontsize=10,color="white",style="solid",shape="box"];2411 -> 5115[label="",style="solid", color="burlywood", weight=9]; 5115 -> 2427[label="",style="solid", color="burlywood", weight=3]; 2412[label="compare2 vwx30 vwx40 (vwx30 == vwx40)",fontsize=16,color="burlywood",shape="box"];5116[label="vwx30/LT",fontsize=10,color="white",style="solid",shape="box"];2412 -> 5116[label="",style="solid", color="burlywood", weight=9]; 5116 -> 2428[label="",style="solid", color="burlywood", weight=3]; 5117[label="vwx30/EQ",fontsize=10,color="white",style="solid",shape="box"];2412 -> 5117[label="",style="solid", color="burlywood", weight=9]; 5117 -> 2429[label="",style="solid", color="burlywood", weight=3]; 5118[label="vwx30/GT",fontsize=10,color="white",style="solid",shape="box"];2412 -> 5118[label="",style="solid", color="burlywood", weight=9]; 5118 -> 2430[label="",style="solid", color="burlywood", weight=3]; 2413[label="compare (Integer vwx300) (Integer vwx400)",fontsize=16,color="black",shape="box"];2413 -> 2431[label="",style="solid", color="black", weight=3]; 2414[label="primCmpChar (Char vwx300) vwx40",fontsize=16,color="burlywood",shape="box"];5119[label="vwx40/Char vwx400",fontsize=10,color="white",style="solid",shape="box"];2414 -> 5119[label="",style="solid", color="burlywood", weight=9]; 5119 -> 2432[label="",style="solid", color="burlywood", weight=3]; 2415[label="compare2 vwx30 vwx40 (vwx30 == vwx40)",fontsize=16,color="burlywood",shape="box"];5120[label="vwx30/False",fontsize=10,color="white",style="solid",shape="box"];2415 -> 5120[label="",style="solid", color="burlywood", weight=9]; 5120 -> 2433[label="",style="solid", color="burlywood", weight=3]; 5121[label="vwx30/True",fontsize=10,color="white",style="solid",shape="box"];2415 -> 5121[label="",style="solid", color="burlywood", weight=9]; 5121 -> 2434[label="",style="solid", color="burlywood", weight=3]; 2416[label="compare2 vwx30 vwx40 (vwx30 == vwx40)",fontsize=16,color="burlywood",shape="box"];5122[label="vwx30/Nothing",fontsize=10,color="white",style="solid",shape="box"];2416 -> 5122[label="",style="solid", color="burlywood", weight=9]; 5122 -> 2435[label="",style="solid", color="burlywood", weight=3]; 5123[label="vwx30/Just vwx300",fontsize=10,color="white",style="solid",shape="box"];2416 -> 5123[label="",style="solid", color="burlywood", weight=9]; 5123 -> 2436[label="",style="solid", color="burlywood", weight=3]; 2417[label="compare2 vwx30 vwx40 (vwx30 == vwx40)",fontsize=16,color="burlywood",shape="box"];5124[label="vwx30/Left vwx300",fontsize=10,color="white",style="solid",shape="box"];2417 -> 5124[label="",style="solid", color="burlywood", weight=9]; 5124 -> 2437[label="",style="solid", color="burlywood", weight=3]; 5125[label="vwx30/Right vwx300",fontsize=10,color="white",style="solid",shape="box"];2417 -> 5125[label="",style="solid", color="burlywood", weight=9]; 5125 -> 2438[label="",style="solid", color="burlywood", weight=3]; 2418[label="primCmpInt (Pos vwx300) vwx40",fontsize=16,color="burlywood",shape="box"];5126[label="vwx300/Succ vwx3000",fontsize=10,color="white",style="solid",shape="box"];2418 -> 5126[label="",style="solid", color="burlywood", weight=9]; 5126 -> 2439[label="",style="solid", color="burlywood", weight=3]; 5127[label="vwx300/Zero",fontsize=10,color="white",style="solid",shape="box"];2418 -> 5127[label="",style="solid", color="burlywood", weight=9]; 5127 -> 2440[label="",style="solid", color="burlywood", weight=3]; 2419[label="primCmpInt (Neg vwx300) vwx40",fontsize=16,color="burlywood",shape="box"];5128[label="vwx300/Succ vwx3000",fontsize=10,color="white",style="solid",shape="box"];2419 -> 5128[label="",style="solid", color="burlywood", weight=9]; 5128 -> 2441[label="",style="solid", color="burlywood", weight=3]; 5129[label="vwx300/Zero",fontsize=10,color="white",style="solid",shape="box"];2419 -> 5129[label="",style="solid", color="burlywood", weight=9]; 5129 -> 2442[label="",style="solid", color="burlywood", weight=3]; 2420[label="compare2 vwx30 vwx40 (vwx30 == vwx40)",fontsize=16,color="burlywood",shape="box"];5130[label="vwx30/(vwx300,vwx301,vwx302)",fontsize=10,color="white",style="solid",shape="box"];2420 -> 5130[label="",style="solid", color="burlywood", weight=9]; 5130 -> 2443[label="",style="solid", color="burlywood", weight=3]; 2421[label="compare2 vwx30 vwx40 (vwx30 == vwx40)",fontsize=16,color="burlywood",shape="box"];5131[label="vwx30/(vwx300,vwx301)",fontsize=10,color="white",style="solid",shape="box"];2421 -> 5131[label="",style="solid", color="burlywood", weight=9]; 5131 -> 2444[label="",style="solid", color="burlywood", weight=3]; 2422[label="compare (vwx300 :% vwx301) (vwx400 :% vwx401)",fontsize=16,color="black",shape="box"];2422 -> 2445[label="",style="solid", color="black", weight=3]; 2423[label="compare () ()",fontsize=16,color="black",shape="box"];2423 -> 2446[label="",style="solid", color="black", weight=3]; 2424[label="primCmpDouble (Double vwx300 (Pos vwx3010)) vwx40",fontsize=16,color="burlywood",shape="box"];5132[label="vwx40/Double vwx400 vwx401",fontsize=10,color="white",style="solid",shape="box"];2424 -> 5132[label="",style="solid", color="burlywood", weight=9]; 5132 -> 2447[label="",style="solid", color="burlywood", weight=3]; 2425[label="primCmpDouble (Double vwx300 (Neg vwx3010)) vwx40",fontsize=16,color="burlywood",shape="box"];5133[label="vwx40/Double vwx400 vwx401",fontsize=10,color="white",style="solid",shape="box"];2425 -> 5133[label="",style="solid", color="burlywood", weight=9]; 5133 -> 2448[label="",style="solid", color="burlywood", weight=3]; 2426[label="primCmpFloat (Float vwx300 (Pos vwx3010)) vwx40",fontsize=16,color="burlywood",shape="box"];5134[label="vwx40/Float vwx400 vwx401",fontsize=10,color="white",style="solid",shape="box"];2426 -> 5134[label="",style="solid", color="burlywood", weight=9]; 5134 -> 2449[label="",style="solid", color="burlywood", weight=3]; 2427[label="primCmpFloat (Float vwx300 (Neg vwx3010)) vwx40",fontsize=16,color="burlywood",shape="box"];5135[label="vwx40/Float vwx400 vwx401",fontsize=10,color="white",style="solid",shape="box"];2427 -> 5135[label="",style="solid", color="burlywood", weight=9]; 5135 -> 2450[label="",style="solid", color="burlywood", weight=3]; 2428[label="compare2 LT vwx40 (LT == vwx40)",fontsize=16,color="burlywood",shape="box"];5136[label="vwx40/LT",fontsize=10,color="white",style="solid",shape="box"];2428 -> 5136[label="",style="solid", color="burlywood", weight=9]; 5136 -> 2451[label="",style="solid", color="burlywood", weight=3]; 5137[label="vwx40/EQ",fontsize=10,color="white",style="solid",shape="box"];2428 -> 5137[label="",style="solid", color="burlywood", weight=9]; 5137 -> 2452[label="",style="solid", color="burlywood", weight=3]; 5138[label="vwx40/GT",fontsize=10,color="white",style="solid",shape="box"];2428 -> 5138[label="",style="solid", color="burlywood", weight=9]; 5138 -> 2453[label="",style="solid", color="burlywood", weight=3]; 2429[label="compare2 EQ vwx40 (EQ == vwx40)",fontsize=16,color="burlywood",shape="box"];5139[label="vwx40/LT",fontsize=10,color="white",style="solid",shape="box"];2429 -> 5139[label="",style="solid", color="burlywood", weight=9]; 5139 -> 2454[label="",style="solid", color="burlywood", weight=3]; 5140[label="vwx40/EQ",fontsize=10,color="white",style="solid",shape="box"];2429 -> 5140[label="",style="solid", color="burlywood", weight=9]; 5140 -> 2455[label="",style="solid", color="burlywood", weight=3]; 5141[label="vwx40/GT",fontsize=10,color="white",style="solid",shape="box"];2429 -> 5141[label="",style="solid", color="burlywood", weight=9]; 5141 -> 2456[label="",style="solid", color="burlywood", weight=3]; 2430[label="compare2 GT vwx40 (GT == vwx40)",fontsize=16,color="burlywood",shape="box"];5142[label="vwx40/LT",fontsize=10,color="white",style="solid",shape="box"];2430 -> 5142[label="",style="solid", color="burlywood", weight=9]; 5142 -> 2457[label="",style="solid", color="burlywood", weight=3]; 5143[label="vwx40/EQ",fontsize=10,color="white",style="solid",shape="box"];2430 -> 5143[label="",style="solid", color="burlywood", weight=9]; 5143 -> 2458[label="",style="solid", color="burlywood", weight=3]; 5144[label="vwx40/GT",fontsize=10,color="white",style="solid",shape="box"];2430 -> 5144[label="",style="solid", color="burlywood", weight=9]; 5144 -> 2459[label="",style="solid", color="burlywood", weight=3]; 2431 -> 2400[label="",style="dashed", color="red", weight=0]; 2431[label="primCmpInt vwx300 vwx400",fontsize=16,color="magenta"];2431 -> 2460[label="",style="dashed", color="magenta", weight=3]; 2431 -> 2461[label="",style="dashed", color="magenta", weight=3]; 2432[label="primCmpChar (Char vwx300) (Char vwx400)",fontsize=16,color="black",shape="box"];2432 -> 2462[label="",style="solid", color="black", weight=3]; 2433[label="compare2 False vwx40 (False == vwx40)",fontsize=16,color="burlywood",shape="box"];5145[label="vwx40/False",fontsize=10,color="white",style="solid",shape="box"];2433 -> 5145[label="",style="solid", color="burlywood", weight=9]; 5145 -> 2463[label="",style="solid", color="burlywood", weight=3]; 5146[label="vwx40/True",fontsize=10,color="white",style="solid",shape="box"];2433 -> 5146[label="",style="solid", color="burlywood", weight=9]; 5146 -> 2464[label="",style="solid", color="burlywood", weight=3]; 2434[label="compare2 True vwx40 (True == vwx40)",fontsize=16,color="burlywood",shape="box"];5147[label="vwx40/False",fontsize=10,color="white",style="solid",shape="box"];2434 -> 5147[label="",style="solid", color="burlywood", weight=9]; 5147 -> 2465[label="",style="solid", color="burlywood", weight=3]; 5148[label="vwx40/True",fontsize=10,color="white",style="solid",shape="box"];2434 -> 5148[label="",style="solid", color="burlywood", weight=9]; 5148 -> 2466[label="",style="solid", color="burlywood", weight=3]; 2435[label="compare2 Nothing vwx40 (Nothing == vwx40)",fontsize=16,color="burlywood",shape="box"];5149[label="vwx40/Nothing",fontsize=10,color="white",style="solid",shape="box"];2435 -> 5149[label="",style="solid", color="burlywood", weight=9]; 5149 -> 2467[label="",style="solid", color="burlywood", weight=3]; 5150[label="vwx40/Just vwx400",fontsize=10,color="white",style="solid",shape="box"];2435 -> 5150[label="",style="solid", color="burlywood", weight=9]; 5150 -> 2468[label="",style="solid", color="burlywood", weight=3]; 2436[label="compare2 (Just vwx300) vwx40 (Just vwx300 == vwx40)",fontsize=16,color="burlywood",shape="box"];5151[label="vwx40/Nothing",fontsize=10,color="white",style="solid",shape="box"];2436 -> 5151[label="",style="solid", color="burlywood", weight=9]; 5151 -> 2469[label="",style="solid", color="burlywood", weight=3]; 5152[label="vwx40/Just vwx400",fontsize=10,color="white",style="solid",shape="box"];2436 -> 5152[label="",style="solid", color="burlywood", weight=9]; 5152 -> 2470[label="",style="solid", color="burlywood", weight=3]; 2437[label="compare2 (Left vwx300) vwx40 (Left vwx300 == vwx40)",fontsize=16,color="burlywood",shape="box"];5153[label="vwx40/Left vwx400",fontsize=10,color="white",style="solid",shape="box"];2437 -> 5153[label="",style="solid", color="burlywood", weight=9]; 5153 -> 2471[label="",style="solid", color="burlywood", weight=3]; 5154[label="vwx40/Right vwx400",fontsize=10,color="white",style="solid",shape="box"];2437 -> 5154[label="",style="solid", color="burlywood", weight=9]; 5154 -> 2472[label="",style="solid", color="burlywood", weight=3]; 2438[label="compare2 (Right vwx300) vwx40 (Right vwx300 == vwx40)",fontsize=16,color="burlywood",shape="box"];5155[label="vwx40/Left vwx400",fontsize=10,color="white",style="solid",shape="box"];2438 -> 5155[label="",style="solid", color="burlywood", weight=9]; 5155 -> 2473[label="",style="solid", color="burlywood", weight=3]; 5156[label="vwx40/Right vwx400",fontsize=10,color="white",style="solid",shape="box"];2438 -> 5156[label="",style="solid", color="burlywood", weight=9]; 5156 -> 2474[label="",style="solid", color="burlywood", weight=3]; 2439[label="primCmpInt (Pos (Succ vwx3000)) vwx40",fontsize=16,color="burlywood",shape="box"];5157[label="vwx40/Pos vwx400",fontsize=10,color="white",style="solid",shape="box"];2439 -> 5157[label="",style="solid", color="burlywood", weight=9]; 5157 -> 2475[label="",style="solid", color="burlywood", weight=3]; 5158[label="vwx40/Neg vwx400",fontsize=10,color="white",style="solid",shape="box"];2439 -> 5158[label="",style="solid", color="burlywood", weight=9]; 5158 -> 2476[label="",style="solid", color="burlywood", weight=3]; 2440[label="primCmpInt (Pos Zero) vwx40",fontsize=16,color="burlywood",shape="box"];5159[label="vwx40/Pos vwx400",fontsize=10,color="white",style="solid",shape="box"];2440 -> 5159[label="",style="solid", color="burlywood", weight=9]; 5159 -> 2477[label="",style="solid", color="burlywood", weight=3]; 5160[label="vwx40/Neg vwx400",fontsize=10,color="white",style="solid",shape="box"];2440 -> 5160[label="",style="solid", color="burlywood", weight=9]; 5160 -> 2478[label="",style="solid", color="burlywood", weight=3]; 2441[label="primCmpInt (Neg (Succ vwx3000)) vwx40",fontsize=16,color="burlywood",shape="box"];5161[label="vwx40/Pos vwx400",fontsize=10,color="white",style="solid",shape="box"];2441 -> 5161[label="",style="solid", color="burlywood", weight=9]; 5161 -> 2479[label="",style="solid", color="burlywood", weight=3]; 5162[label="vwx40/Neg vwx400",fontsize=10,color="white",style="solid",shape="box"];2441 -> 5162[label="",style="solid", color="burlywood", weight=9]; 5162 -> 2480[label="",style="solid", color="burlywood", weight=3]; 2442[label="primCmpInt (Neg Zero) vwx40",fontsize=16,color="burlywood",shape="box"];5163[label="vwx40/Pos vwx400",fontsize=10,color="white",style="solid",shape="box"];2442 -> 5163[label="",style="solid", color="burlywood", weight=9]; 5163 -> 2481[label="",style="solid", color="burlywood", weight=3]; 5164[label="vwx40/Neg vwx400",fontsize=10,color="white",style="solid",shape="box"];2442 -> 5164[label="",style="solid", color="burlywood", weight=9]; 5164 -> 2482[label="",style="solid", color="burlywood", weight=3]; 2443[label="compare2 (vwx300,vwx301,vwx302) vwx40 ((vwx300,vwx301,vwx302) == vwx40)",fontsize=16,color="burlywood",shape="box"];5165[label="vwx40/(vwx400,vwx401,vwx402)",fontsize=10,color="white",style="solid",shape="box"];2443 -> 5165[label="",style="solid", color="burlywood", weight=9]; 5165 -> 2483[label="",style="solid", color="burlywood", weight=3]; 2444[label="compare2 (vwx300,vwx301) vwx40 ((vwx300,vwx301) == vwx40)",fontsize=16,color="burlywood",shape="box"];5166[label="vwx40/(vwx400,vwx401)",fontsize=10,color="white",style="solid",shape="box"];2444 -> 5166[label="",style="solid", color="burlywood", weight=9]; 5166 -> 2484[label="",style="solid", color="burlywood", weight=3]; 2445[label="compare (vwx300 * vwx401) (vwx400 * vwx301)",fontsize=16,color="blue",shape="box"];5167[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2445 -> 5167[label="",style="solid", color="blue", weight=9]; 5167 -> 2485[label="",style="solid", color="blue", weight=3]; 5168[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2445 -> 5168[label="",style="solid", color="blue", weight=9]; 5168 -> 2486[label="",style="solid", color="blue", weight=3]; 2446[label="EQ",fontsize=16,color="green",shape="box"];2447[label="primCmpDouble (Double vwx300 (Pos vwx3010)) (Double vwx400 vwx401)",fontsize=16,color="burlywood",shape="box"];5169[label="vwx401/Pos vwx4010",fontsize=10,color="white",style="solid",shape="box"];2447 -> 5169[label="",style="solid", color="burlywood", weight=9]; 5169 -> 2487[label="",style="solid", color="burlywood", weight=3]; 5170[label="vwx401/Neg vwx4010",fontsize=10,color="white",style="solid",shape="box"];2447 -> 5170[label="",style="solid", color="burlywood", weight=9]; 5170 -> 2488[label="",style="solid", color="burlywood", weight=3]; 2448[label="primCmpDouble (Double vwx300 (Neg vwx3010)) (Double vwx400 vwx401)",fontsize=16,color="burlywood",shape="box"];5171[label="vwx401/Pos vwx4010",fontsize=10,color="white",style="solid",shape="box"];2448 -> 5171[label="",style="solid", color="burlywood", weight=9]; 5171 -> 2489[label="",style="solid", color="burlywood", weight=3]; 5172[label="vwx401/Neg vwx4010",fontsize=10,color="white",style="solid",shape="box"];2448 -> 5172[label="",style="solid", color="burlywood", weight=9]; 5172 -> 2490[label="",style="solid", color="burlywood", weight=3]; 2449[label="primCmpFloat (Float vwx300 (Pos vwx3010)) (Float vwx400 vwx401)",fontsize=16,color="burlywood",shape="box"];5173[label="vwx401/Pos vwx4010",fontsize=10,color="white",style="solid",shape="box"];2449 -> 5173[label="",style="solid", color="burlywood", weight=9]; 5173 -> 2491[label="",style="solid", color="burlywood", weight=3]; 5174[label="vwx401/Neg vwx4010",fontsize=10,color="white",style="solid",shape="box"];2449 -> 5174[label="",style="solid", color="burlywood", weight=9]; 5174 -> 2492[label="",style="solid", color="burlywood", weight=3]; 2450[label="primCmpFloat (Float vwx300 (Neg vwx3010)) (Float vwx400 vwx401)",fontsize=16,color="burlywood",shape="box"];5175[label="vwx401/Pos vwx4010",fontsize=10,color="white",style="solid",shape="box"];2450 -> 5175[label="",style="solid", color="burlywood", weight=9]; 5175 -> 2493[label="",style="solid", color="burlywood", weight=3]; 5176[label="vwx401/Neg vwx4010",fontsize=10,color="white",style="solid",shape="box"];2450 -> 5176[label="",style="solid", color="burlywood", weight=9]; 5176 -> 2494[label="",style="solid", color="burlywood", weight=3]; 2451[label="compare2 LT LT (LT == LT)",fontsize=16,color="black",shape="box"];2451 -> 2495[label="",style="solid", color="black", weight=3]; 2452[label="compare2 LT EQ (LT == EQ)",fontsize=16,color="black",shape="box"];2452 -> 2496[label="",style="solid", color="black", weight=3]; 2453[label="compare2 LT GT (LT == GT)",fontsize=16,color="black",shape="box"];2453 -> 2497[label="",style="solid", color="black", weight=3]; 2454[label="compare2 EQ LT (EQ == LT)",fontsize=16,color="black",shape="box"];2454 -> 2498[label="",style="solid", color="black", weight=3]; 2455[label="compare2 EQ EQ (EQ == EQ)",fontsize=16,color="black",shape="box"];2455 -> 2499[label="",style="solid", color="black", weight=3]; 2456[label="compare2 EQ GT (EQ == GT)",fontsize=16,color="black",shape="box"];2456 -> 2500[label="",style="solid", color="black", weight=3]; 2457[label="compare2 GT LT (GT == LT)",fontsize=16,color="black",shape="box"];2457 -> 2501[label="",style="solid", color="black", weight=3]; 2458[label="compare2 GT EQ (GT == EQ)",fontsize=16,color="black",shape="box"];2458 -> 2502[label="",style="solid", color="black", weight=3]; 2459[label="compare2 GT GT (GT == GT)",fontsize=16,color="black",shape="box"];2459 -> 2503[label="",style="solid", color="black", weight=3]; 2460[label="vwx300",fontsize=16,color="green",shape="box"];2461[label="vwx400",fontsize=16,color="green",shape="box"];2462[label="primCmpNat vwx300 vwx400",fontsize=16,color="burlywood",shape="triangle"];5177[label="vwx300/Succ vwx3000",fontsize=10,color="white",style="solid",shape="box"];2462 -> 5177[label="",style="solid", color="burlywood", weight=9]; 5177 -> 2504[label="",style="solid", color="burlywood", weight=3]; 5178[label="vwx300/Zero",fontsize=10,color="white",style="solid",shape="box"];2462 -> 5178[label="",style="solid", color="burlywood", weight=9]; 5178 -> 2505[label="",style="solid", color="burlywood", weight=3]; 2463[label="compare2 False False (False == False)",fontsize=16,color="black",shape="box"];2463 -> 2506[label="",style="solid", color="black", weight=3]; 2464[label="compare2 False True (False == True)",fontsize=16,color="black",shape="box"];2464 -> 2507[label="",style="solid", color="black", weight=3]; 2465[label="compare2 True False (True == False)",fontsize=16,color="black",shape="box"];2465 -> 2508[label="",style="solid", color="black", weight=3]; 2466[label="compare2 True True (True == True)",fontsize=16,color="black",shape="box"];2466 -> 2509[label="",style="solid", color="black", weight=3]; 2467[label="compare2 Nothing Nothing (Nothing == Nothing)",fontsize=16,color="black",shape="box"];2467 -> 2510[label="",style="solid", color="black", weight=3]; 2468[label="compare2 Nothing (Just vwx400) (Nothing == Just vwx400)",fontsize=16,color="black",shape="box"];2468 -> 2511[label="",style="solid", color="black", weight=3]; 2469[label="compare2 (Just vwx300) Nothing (Just vwx300 == Nothing)",fontsize=16,color="black",shape="box"];2469 -> 2512[label="",style="solid", color="black", weight=3]; 2470[label="compare2 (Just vwx300) (Just vwx400) (Just vwx300 == Just vwx400)",fontsize=16,color="black",shape="box"];2470 -> 2513[label="",style="solid", color="black", weight=3]; 2471[label="compare2 (Left vwx300) (Left vwx400) (Left vwx300 == Left vwx400)",fontsize=16,color="black",shape="box"];2471 -> 2514[label="",style="solid", color="black", weight=3]; 2472[label="compare2 (Left vwx300) (Right vwx400) (Left vwx300 == Right vwx400)",fontsize=16,color="black",shape="box"];2472 -> 2515[label="",style="solid", color="black", weight=3]; 2473[label="compare2 (Right vwx300) (Left vwx400) (Right vwx300 == Left vwx400)",fontsize=16,color="black",shape="box"];2473 -> 2516[label="",style="solid", color="black", weight=3]; 2474[label="compare2 (Right vwx300) (Right vwx400) (Right vwx300 == Right vwx400)",fontsize=16,color="black",shape="box"];2474 -> 2517[label="",style="solid", color="black", weight=3]; 2475[label="primCmpInt (Pos (Succ vwx3000)) (Pos vwx400)",fontsize=16,color="black",shape="box"];2475 -> 2518[label="",style="solid", color="black", weight=3]; 2476[label="primCmpInt (Pos (Succ vwx3000)) (Neg vwx400)",fontsize=16,color="black",shape="box"];2476 -> 2519[label="",style="solid", color="black", weight=3]; 2477[label="primCmpInt (Pos Zero) (Pos vwx400)",fontsize=16,color="burlywood",shape="box"];5179[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];2477 -> 5179[label="",style="solid", color="burlywood", weight=9]; 5179 -> 2520[label="",style="solid", color="burlywood", weight=3]; 5180[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];2477 -> 5180[label="",style="solid", color="burlywood", weight=9]; 5180 -> 2521[label="",style="solid", color="burlywood", weight=3]; 2478[label="primCmpInt (Pos Zero) (Neg vwx400)",fontsize=16,color="burlywood",shape="box"];5181[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];2478 -> 5181[label="",style="solid", color="burlywood", weight=9]; 5181 -> 2522[label="",style="solid", color="burlywood", weight=3]; 5182[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];2478 -> 5182[label="",style="solid", color="burlywood", weight=9]; 5182 -> 2523[label="",style="solid", color="burlywood", weight=3]; 2479[label="primCmpInt (Neg (Succ vwx3000)) (Pos vwx400)",fontsize=16,color="black",shape="box"];2479 -> 2524[label="",style="solid", color="black", weight=3]; 2480[label="primCmpInt (Neg (Succ vwx3000)) (Neg vwx400)",fontsize=16,color="black",shape="box"];2480 -> 2525[label="",style="solid", color="black", weight=3]; 2481[label="primCmpInt (Neg Zero) (Pos vwx400)",fontsize=16,color="burlywood",shape="box"];5183[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];2481 -> 5183[label="",style="solid", color="burlywood", weight=9]; 5183 -> 2526[label="",style="solid", color="burlywood", weight=3]; 5184[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];2481 -> 5184[label="",style="solid", color="burlywood", weight=9]; 5184 -> 2527[label="",style="solid", color="burlywood", weight=3]; 2482[label="primCmpInt (Neg Zero) (Neg vwx400)",fontsize=16,color="burlywood",shape="box"];5185[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];2482 -> 5185[label="",style="solid", color="burlywood", weight=9]; 5185 -> 2528[label="",style="solid", color="burlywood", weight=3]; 5186[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];2482 -> 5186[label="",style="solid", color="burlywood", weight=9]; 5186 -> 2529[label="",style="solid", color="burlywood", weight=3]; 2483[label="compare2 (vwx300,vwx301,vwx302) (vwx400,vwx401,vwx402) ((vwx300,vwx301,vwx302) == (vwx400,vwx401,vwx402))",fontsize=16,color="black",shape="box"];2483 -> 2530[label="",style="solid", color="black", weight=3]; 2484[label="compare2 (vwx300,vwx301) (vwx400,vwx401) ((vwx300,vwx301) == (vwx400,vwx401))",fontsize=16,color="black",shape="box"];2484 -> 2531[label="",style="solid", color="black", weight=3]; 2485 -> 2378[label="",style="dashed", color="red", weight=0]; 2485[label="compare (vwx300 * vwx401) (vwx400 * vwx301)",fontsize=16,color="magenta"];2485 -> 2532[label="",style="dashed", color="magenta", weight=3]; 2485 -> 2533[label="",style="dashed", color="magenta", weight=3]; 2486 -> 2383[label="",style="dashed", color="red", weight=0]; 2486[label="compare (vwx300 * vwx401) (vwx400 * vwx301)",fontsize=16,color="magenta"];2486 -> 2534[label="",style="dashed", color="magenta", weight=3]; 2486 -> 2535[label="",style="dashed", color="magenta", weight=3]; 2487[label="primCmpDouble (Double vwx300 (Pos vwx3010)) (Double vwx400 (Pos vwx4010))",fontsize=16,color="black",shape="box"];2487 -> 2536[label="",style="solid", color="black", weight=3]; 2488[label="primCmpDouble (Double vwx300 (Pos vwx3010)) (Double vwx400 (Neg vwx4010))",fontsize=16,color="black",shape="box"];2488 -> 2537[label="",style="solid", color="black", weight=3]; 2489[label="primCmpDouble (Double vwx300 (Neg vwx3010)) (Double vwx400 (Pos vwx4010))",fontsize=16,color="black",shape="box"];2489 -> 2538[label="",style="solid", color="black", weight=3]; 2490[label="primCmpDouble (Double vwx300 (Neg vwx3010)) (Double vwx400 (Neg vwx4010))",fontsize=16,color="black",shape="box"];2490 -> 2539[label="",style="solid", color="black", weight=3]; 2491[label="primCmpFloat (Float vwx300 (Pos vwx3010)) (Float vwx400 (Pos vwx4010))",fontsize=16,color="black",shape="box"];2491 -> 2540[label="",style="solid", color="black", weight=3]; 2492[label="primCmpFloat (Float vwx300 (Pos vwx3010)) (Float vwx400 (Neg vwx4010))",fontsize=16,color="black",shape="box"];2492 -> 2541[label="",style="solid", color="black", weight=3]; 2493[label="primCmpFloat (Float vwx300 (Neg vwx3010)) (Float vwx400 (Pos vwx4010))",fontsize=16,color="black",shape="box"];2493 -> 2542[label="",style="solid", color="black", weight=3]; 2494[label="primCmpFloat (Float vwx300 (Neg vwx3010)) (Float vwx400 (Neg vwx4010))",fontsize=16,color="black",shape="box"];2494 -> 2543[label="",style="solid", color="black", weight=3]; 2495[label="compare2 LT LT True",fontsize=16,color="black",shape="box"];2495 -> 2544[label="",style="solid", color="black", weight=3]; 2496[label="compare2 LT EQ False",fontsize=16,color="black",shape="box"];2496 -> 2545[label="",style="solid", color="black", weight=3]; 2497[label="compare2 LT GT False",fontsize=16,color="black",shape="box"];2497 -> 2546[label="",style="solid", color="black", weight=3]; 2498[label="compare2 EQ LT False",fontsize=16,color="black",shape="box"];2498 -> 2547[label="",style="solid", color="black", weight=3]; 2499[label="compare2 EQ EQ True",fontsize=16,color="black",shape="box"];2499 -> 2548[label="",style="solid", color="black", weight=3]; 2500[label="compare2 EQ GT False",fontsize=16,color="black",shape="box"];2500 -> 2549[label="",style="solid", color="black", weight=3]; 2501[label="compare2 GT LT False",fontsize=16,color="black",shape="box"];2501 -> 2550[label="",style="solid", color="black", weight=3]; 2502[label="compare2 GT EQ False",fontsize=16,color="black",shape="box"];2502 -> 2551[label="",style="solid", color="black", weight=3]; 2503[label="compare2 GT GT True",fontsize=16,color="black",shape="box"];2503 -> 2552[label="",style="solid", color="black", weight=3]; 2504[label="primCmpNat (Succ vwx3000) vwx400",fontsize=16,color="burlywood",shape="box"];5187[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];2504 -> 5187[label="",style="solid", color="burlywood", weight=9]; 5187 -> 2553[label="",style="solid", color="burlywood", weight=3]; 5188[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];2504 -> 5188[label="",style="solid", color="burlywood", weight=9]; 5188 -> 2554[label="",style="solid", color="burlywood", weight=3]; 2505[label="primCmpNat Zero vwx400",fontsize=16,color="burlywood",shape="box"];5189[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];2505 -> 5189[label="",style="solid", color="burlywood", weight=9]; 5189 -> 2555[label="",style="solid", color="burlywood", weight=3]; 5190[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];2505 -> 5190[label="",style="solid", color="burlywood", weight=9]; 5190 -> 2556[label="",style="solid", color="burlywood", weight=3]; 2506[label="compare2 False False True",fontsize=16,color="black",shape="box"];2506 -> 2557[label="",style="solid", color="black", weight=3]; 2507[label="compare2 False True False",fontsize=16,color="black",shape="box"];2507 -> 2558[label="",style="solid", color="black", weight=3]; 2508[label="compare2 True False False",fontsize=16,color="black",shape="box"];2508 -> 2559[label="",style="solid", color="black", weight=3]; 2509[label="compare2 True True True",fontsize=16,color="black",shape="box"];2509 -> 2560[label="",style="solid", color="black", weight=3]; 2510[label="compare2 Nothing Nothing True",fontsize=16,color="black",shape="box"];2510 -> 2561[label="",style="solid", color="black", weight=3]; 2511[label="compare2 Nothing (Just vwx400) False",fontsize=16,color="black",shape="box"];2511 -> 2562[label="",style="solid", color="black", weight=3]; 2512[label="compare2 (Just vwx300) Nothing False",fontsize=16,color="black",shape="box"];2512 -> 2563[label="",style="solid", color="black", weight=3]; 2513 -> 2564[label="",style="dashed", color="red", weight=0]; 2513[label="compare2 (Just vwx300) (Just vwx400) (vwx300 == vwx400)",fontsize=16,color="magenta"];2513 -> 2565[label="",style="dashed", color="magenta", weight=3]; 2513 -> 2566[label="",style="dashed", color="magenta", weight=3]; 2513 -> 2567[label="",style="dashed", color="magenta", weight=3]; 2514 -> 2568[label="",style="dashed", color="red", weight=0]; 2514[label="compare2 (Left vwx300) (Left vwx400) (vwx300 == vwx400)",fontsize=16,color="magenta"];2514 -> 2569[label="",style="dashed", color="magenta", weight=3]; 2514 -> 2570[label="",style="dashed", color="magenta", weight=3]; 2514 -> 2571[label="",style="dashed", color="magenta", weight=3]; 2515[label="compare2 (Left vwx300) (Right vwx400) False",fontsize=16,color="black",shape="box"];2515 -> 2572[label="",style="solid", color="black", weight=3]; 2516[label="compare2 (Right vwx300) (Left vwx400) False",fontsize=16,color="black",shape="box"];2516 -> 2573[label="",style="solid", color="black", weight=3]; 2517 -> 2574[label="",style="dashed", color="red", weight=0]; 2517[label="compare2 (Right vwx300) (Right vwx400) (vwx300 == vwx400)",fontsize=16,color="magenta"];2517 -> 2575[label="",style="dashed", color="magenta", weight=3]; 2517 -> 2576[label="",style="dashed", color="magenta", weight=3]; 2517 -> 2577[label="",style="dashed", color="magenta", weight=3]; 2518 -> 2462[label="",style="dashed", color="red", weight=0]; 2518[label="primCmpNat (Succ vwx3000) vwx400",fontsize=16,color="magenta"];2518 -> 2578[label="",style="dashed", color="magenta", weight=3]; 2518 -> 2579[label="",style="dashed", color="magenta", weight=3]; 2519[label="GT",fontsize=16,color="green",shape="box"];2520[label="primCmpInt (Pos Zero) (Pos (Succ vwx4000))",fontsize=16,color="black",shape="box"];2520 -> 2580[label="",style="solid", color="black", weight=3]; 2521[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2521 -> 2581[label="",style="solid", color="black", weight=3]; 2522[label="primCmpInt (Pos Zero) (Neg (Succ vwx4000))",fontsize=16,color="black",shape="box"];2522 -> 2582[label="",style="solid", color="black", weight=3]; 2523[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2523 -> 2583[label="",style="solid", color="black", weight=3]; 2524[label="LT",fontsize=16,color="green",shape="box"];2525 -> 2462[label="",style="dashed", color="red", weight=0]; 2525[label="primCmpNat vwx400 (Succ vwx3000)",fontsize=16,color="magenta"];2525 -> 2584[label="",style="dashed", color="magenta", weight=3]; 2525 -> 2585[label="",style="dashed", color="magenta", weight=3]; 2526[label="primCmpInt (Neg Zero) (Pos (Succ vwx4000))",fontsize=16,color="black",shape="box"];2526 -> 2586[label="",style="solid", color="black", weight=3]; 2527[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2527 -> 2587[label="",style="solid", color="black", weight=3]; 2528[label="primCmpInt (Neg Zero) (Neg (Succ vwx4000))",fontsize=16,color="black",shape="box"];2528 -> 2588[label="",style="solid", color="black", weight=3]; 2529[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2529 -> 2589[label="",style="solid", color="black", weight=3]; 2530 -> 3145[label="",style="dashed", color="red", weight=0]; 2530[label="compare2 (vwx300,vwx301,vwx302) (vwx400,vwx401,vwx402) (vwx300 == vwx400 && vwx301 == vwx401 && vwx302 == vwx402)",fontsize=16,color="magenta"];2530 -> 3146[label="",style="dashed", color="magenta", weight=3]; 2530 -> 3147[label="",style="dashed", color="magenta", weight=3]; 2530 -> 3148[label="",style="dashed", color="magenta", weight=3]; 2530 -> 3149[label="",style="dashed", color="magenta", weight=3]; 2530 -> 3150[label="",style="dashed", color="magenta", weight=3]; 2530 -> 3151[label="",style="dashed", color="magenta", weight=3]; 2530 -> 3152[label="",style="dashed", color="magenta", weight=3]; 2531 -> 2976[label="",style="dashed", color="red", weight=0]; 2531[label="compare2 (vwx300,vwx301) (vwx400,vwx401) (vwx300 == vwx400 && vwx301 == vwx401)",fontsize=16,color="magenta"];2531 -> 2977[label="",style="dashed", color="magenta", weight=3]; 2531 -> 2978[label="",style="dashed", color="magenta", weight=3]; 2531 -> 2979[label="",style="dashed", color="magenta", weight=3]; 2531 -> 2980[label="",style="dashed", color="magenta", weight=3]; 2531 -> 2981[label="",style="dashed", color="magenta", weight=3]; 2532[label="vwx300 * vwx401",fontsize=16,color="burlywood",shape="triangle"];5191[label="vwx300/Integer vwx3000",fontsize=10,color="white",style="solid",shape="box"];2532 -> 5191[label="",style="solid", color="burlywood", weight=9]; 5191 -> 2604[label="",style="solid", color="burlywood", weight=3]; 2533 -> 2532[label="",style="dashed", color="red", weight=0]; 2533[label="vwx400 * vwx301",fontsize=16,color="magenta"];2533 -> 2605[label="",style="dashed", color="magenta", weight=3]; 2533 -> 2606[label="",style="dashed", color="magenta", weight=3]; 2534[label="vwx300 * vwx401",fontsize=16,color="black",shape="triangle"];2534 -> 2607[label="",style="solid", color="black", weight=3]; 2535 -> 2534[label="",style="dashed", color="red", weight=0]; 2535[label="vwx400 * vwx301",fontsize=16,color="magenta"];2535 -> 2608[label="",style="dashed", color="magenta", weight=3]; 2535 -> 2609[label="",style="dashed", color="magenta", weight=3]; 2536 -> 2383[label="",style="dashed", color="red", weight=0]; 2536[label="compare (vwx300 * Pos vwx4010) (Pos vwx3010 * vwx400)",fontsize=16,color="magenta"];2536 -> 2610[label="",style="dashed", color="magenta", weight=3]; 2536 -> 2611[label="",style="dashed", color="magenta", weight=3]; 2537 -> 2383[label="",style="dashed", color="red", weight=0]; 2537[label="compare (vwx300 * Pos vwx4010) (Neg vwx3010 * vwx400)",fontsize=16,color="magenta"];2537 -> 2612[label="",style="dashed", color="magenta", weight=3]; 2537 -> 2613[label="",style="dashed", color="magenta", weight=3]; 2538 -> 2383[label="",style="dashed", color="red", weight=0]; 2538[label="compare (vwx300 * Neg vwx4010) (Pos vwx3010 * vwx400)",fontsize=16,color="magenta"];2538 -> 2614[label="",style="dashed", color="magenta", weight=3]; 2538 -> 2615[label="",style="dashed", color="magenta", weight=3]; 2539 -> 2383[label="",style="dashed", color="red", weight=0]; 2539[label="compare (vwx300 * Neg vwx4010) (Neg vwx3010 * vwx400)",fontsize=16,color="magenta"];2539 -> 2616[label="",style="dashed", color="magenta", weight=3]; 2539 -> 2617[label="",style="dashed", color="magenta", weight=3]; 2540 -> 2383[label="",style="dashed", color="red", weight=0]; 2540[label="compare (vwx300 * Pos vwx4010) (Pos vwx3010 * vwx400)",fontsize=16,color="magenta"];2540 -> 2618[label="",style="dashed", color="magenta", weight=3]; 2540 -> 2619[label="",style="dashed", color="magenta", weight=3]; 2541 -> 2383[label="",style="dashed", color="red", weight=0]; 2541[label="compare (vwx300 * Pos vwx4010) (Neg vwx3010 * vwx400)",fontsize=16,color="magenta"];2541 -> 2620[label="",style="dashed", color="magenta", weight=3]; 2541 -> 2621[label="",style="dashed", color="magenta", weight=3]; 2542 -> 2383[label="",style="dashed", color="red", weight=0]; 2542[label="compare (vwx300 * Neg vwx4010) (Pos vwx3010 * vwx400)",fontsize=16,color="magenta"];2542 -> 2622[label="",style="dashed", color="magenta", weight=3]; 2542 -> 2623[label="",style="dashed", color="magenta", weight=3]; 2543 -> 2383[label="",style="dashed", color="red", weight=0]; 2543[label="compare (vwx300 * Neg vwx4010) (Neg vwx3010 * vwx400)",fontsize=16,color="magenta"];2543 -> 2624[label="",style="dashed", color="magenta", weight=3]; 2543 -> 2625[label="",style="dashed", color="magenta", weight=3]; 2544[label="EQ",fontsize=16,color="green",shape="box"];2545[label="compare1 LT EQ (LT <= EQ)",fontsize=16,color="black",shape="box"];2545 -> 2626[label="",style="solid", color="black", weight=3]; 2546[label="compare1 LT GT (LT <= GT)",fontsize=16,color="black",shape="box"];2546 -> 2627[label="",style="solid", color="black", weight=3]; 2547[label="compare1 EQ LT (EQ <= LT)",fontsize=16,color="black",shape="box"];2547 -> 2628[label="",style="solid", color="black", weight=3]; 2548[label="EQ",fontsize=16,color="green",shape="box"];2549[label="compare1 EQ GT (EQ <= GT)",fontsize=16,color="black",shape="box"];2549 -> 2629[label="",style="solid", color="black", weight=3]; 2550[label="compare1 GT LT (GT <= LT)",fontsize=16,color="black",shape="box"];2550 -> 2630[label="",style="solid", color="black", weight=3]; 2551[label="compare1 GT EQ (GT <= EQ)",fontsize=16,color="black",shape="box"];2551 -> 2631[label="",style="solid", color="black", weight=3]; 2552[label="EQ",fontsize=16,color="green",shape="box"];2553[label="primCmpNat (Succ vwx3000) (Succ vwx4000)",fontsize=16,color="black",shape="box"];2553 -> 2632[label="",style="solid", color="black", weight=3]; 2554[label="primCmpNat (Succ vwx3000) Zero",fontsize=16,color="black",shape="box"];2554 -> 2633[label="",style="solid", color="black", weight=3]; 2555[label="primCmpNat Zero (Succ vwx4000)",fontsize=16,color="black",shape="box"];2555 -> 2634[label="",style="solid", color="black", weight=3]; 2556[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];2556 -> 2635[label="",style="solid", color="black", weight=3]; 2557[label="EQ",fontsize=16,color="green",shape="box"];2558[label="compare1 False True (False <= True)",fontsize=16,color="black",shape="box"];2558 -> 2636[label="",style="solid", color="black", weight=3]; 2559[label="compare1 True False (True <= False)",fontsize=16,color="black",shape="box"];2559 -> 2637[label="",style="solid", color="black", weight=3]; 2560[label="EQ",fontsize=16,color="green",shape="box"];2561[label="EQ",fontsize=16,color="green",shape="box"];2562[label="compare1 Nothing (Just vwx400) (Nothing <= Just vwx400)",fontsize=16,color="black",shape="box"];2562 -> 2638[label="",style="solid", color="black", weight=3]; 2563[label="compare1 (Just vwx300) Nothing (Just vwx300 <= Nothing)",fontsize=16,color="black",shape="box"];2563 -> 2639[label="",style="solid", color="black", weight=3]; 2565[label="vwx300",fontsize=16,color="green",shape="box"];2566[label="vwx400",fontsize=16,color="green",shape="box"];2567[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];5192[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2567 -> 5192[label="",style="solid", color="blue", weight=9]; 5192 -> 2640[label="",style="solid", color="blue", weight=3]; 5193[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2567 -> 5193[label="",style="solid", color="blue", weight=9]; 5193 -> 2641[label="",style="solid", color="blue", weight=3]; 5194[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2567 -> 5194[label="",style="solid", color="blue", weight=9]; 5194 -> 2642[label="",style="solid", color="blue", weight=3]; 5195[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2567 -> 5195[label="",style="solid", color="blue", weight=9]; 5195 -> 2643[label="",style="solid", color="blue", weight=3]; 5196[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2567 -> 5196[label="",style="solid", color="blue", weight=9]; 5196 -> 2644[label="",style="solid", color="blue", weight=3]; 5197[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2567 -> 5197[label="",style="solid", color="blue", weight=9]; 5197 -> 2645[label="",style="solid", color="blue", weight=3]; 5198[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2567 -> 5198[label="",style="solid", color="blue", weight=9]; 5198 -> 2646[label="",style="solid", color="blue", weight=3]; 5199[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2567 -> 5199[label="",style="solid", color="blue", weight=9]; 5199 -> 2647[label="",style="solid", color="blue", weight=3]; 5200[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2567 -> 5200[label="",style="solid", color="blue", weight=9]; 5200 -> 2648[label="",style="solid", color="blue", weight=3]; 5201[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2567 -> 5201[label="",style="solid", color="blue", weight=9]; 5201 -> 2649[label="",style="solid", color="blue", weight=3]; 5202[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2567 -> 5202[label="",style="solid", color="blue", weight=9]; 5202 -> 2650[label="",style="solid", color="blue", weight=3]; 5203[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2567 -> 5203[label="",style="solid", color="blue", weight=9]; 5203 -> 2651[label="",style="solid", color="blue", weight=3]; 5204[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2567 -> 5204[label="",style="solid", color="blue", weight=9]; 5204 -> 2652[label="",style="solid", color="blue", weight=3]; 5205[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2567 -> 5205[label="",style="solid", color="blue", weight=9]; 5205 -> 2653[label="",style="solid", color="blue", weight=3]; 2564[label="compare2 (Just vwx191) (Just vwx192) vwx193",fontsize=16,color="burlywood",shape="triangle"];5206[label="vwx193/False",fontsize=10,color="white",style="solid",shape="box"];2564 -> 5206[label="",style="solid", color="burlywood", weight=9]; 5206 -> 2654[label="",style="solid", color="burlywood", weight=3]; 5207[label="vwx193/True",fontsize=10,color="white",style="solid",shape="box"];2564 -> 5207[label="",style="solid", color="burlywood", weight=9]; 5207 -> 2655[label="",style="solid", color="burlywood", weight=3]; 2569[label="vwx300",fontsize=16,color="green",shape="box"];2570[label="vwx400",fontsize=16,color="green",shape="box"];2571[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];5208[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2571 -> 5208[label="",style="solid", color="blue", weight=9]; 5208 -> 2656[label="",style="solid", color="blue", weight=3]; 5209[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2571 -> 5209[label="",style="solid", color="blue", weight=9]; 5209 -> 2657[label="",style="solid", color="blue", weight=3]; 5210[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2571 -> 5210[label="",style="solid", color="blue", weight=9]; 5210 -> 2658[label="",style="solid", color="blue", weight=3]; 5211[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2571 -> 5211[label="",style="solid", color="blue", weight=9]; 5211 -> 2659[label="",style="solid", color="blue", weight=3]; 5212[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2571 -> 5212[label="",style="solid", color="blue", weight=9]; 5212 -> 2660[label="",style="solid", color="blue", weight=3]; 5213[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2571 -> 5213[label="",style="solid", color="blue", weight=9]; 5213 -> 2661[label="",style="solid", color="blue", weight=3]; 5214[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2571 -> 5214[label="",style="solid", color="blue", weight=9]; 5214 -> 2662[label="",style="solid", color="blue", weight=3]; 5215[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2571 -> 5215[label="",style="solid", color="blue", weight=9]; 5215 -> 2663[label="",style="solid", color="blue", weight=3]; 5216[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2571 -> 5216[label="",style="solid", color="blue", weight=9]; 5216 -> 2664[label="",style="solid", color="blue", weight=3]; 5217[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2571 -> 5217[label="",style="solid", color="blue", weight=9]; 5217 -> 2665[label="",style="solid", color="blue", weight=3]; 5218[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2571 -> 5218[label="",style="solid", color="blue", weight=9]; 5218 -> 2666[label="",style="solid", color="blue", weight=3]; 5219[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2571 -> 5219[label="",style="solid", color="blue", weight=9]; 5219 -> 2667[label="",style="solid", color="blue", weight=3]; 5220[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2571 -> 5220[label="",style="solid", color="blue", weight=9]; 5220 -> 2668[label="",style="solid", color="blue", weight=3]; 5221[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2571 -> 5221[label="",style="solid", color="blue", weight=9]; 5221 -> 2669[label="",style="solid", color="blue", weight=3]; 2568[label="compare2 (Left vwx198) (Left vwx199) vwx200",fontsize=16,color="burlywood",shape="triangle"];5222[label="vwx200/False",fontsize=10,color="white",style="solid",shape="box"];2568 -> 5222[label="",style="solid", color="burlywood", weight=9]; 5222 -> 2670[label="",style="solid", color="burlywood", weight=3]; 5223[label="vwx200/True",fontsize=10,color="white",style="solid",shape="box"];2568 -> 5223[label="",style="solid", color="burlywood", weight=9]; 5223 -> 2671[label="",style="solid", color="burlywood", weight=3]; 2572[label="compare1 (Left vwx300) (Right vwx400) (Left vwx300 <= Right vwx400)",fontsize=16,color="black",shape="box"];2572 -> 2672[label="",style="solid", color="black", weight=3]; 2573[label="compare1 (Right vwx300) (Left vwx400) (Right vwx300 <= Left vwx400)",fontsize=16,color="black",shape="box"];2573 -> 2673[label="",style="solid", color="black", weight=3]; 2575[label="vwx300",fontsize=16,color="green",shape="box"];2576[label="vwx400",fontsize=16,color="green",shape="box"];2577[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];5224[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2577 -> 5224[label="",style="solid", color="blue", weight=9]; 5224 -> 2674[label="",style="solid", color="blue", weight=3]; 5225[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2577 -> 5225[label="",style="solid", color="blue", weight=9]; 5225 -> 2675[label="",style="solid", color="blue", weight=3]; 5226[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2577 -> 5226[label="",style="solid", color="blue", weight=9]; 5226 -> 2676[label="",style="solid", color="blue", weight=3]; 5227[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2577 -> 5227[label="",style="solid", color="blue", weight=9]; 5227 -> 2677[label="",style="solid", color="blue", weight=3]; 5228[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2577 -> 5228[label="",style="solid", color="blue", weight=9]; 5228 -> 2678[label="",style="solid", color="blue", weight=3]; 5229[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2577 -> 5229[label="",style="solid", color="blue", weight=9]; 5229 -> 2679[label="",style="solid", color="blue", weight=3]; 5230[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2577 -> 5230[label="",style="solid", color="blue", weight=9]; 5230 -> 2680[label="",style="solid", color="blue", weight=3]; 5231[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2577 -> 5231[label="",style="solid", color="blue", weight=9]; 5231 -> 2681[label="",style="solid", color="blue", weight=3]; 5232[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2577 -> 5232[label="",style="solid", color="blue", weight=9]; 5232 -> 2682[label="",style="solid", color="blue", weight=3]; 5233[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2577 -> 5233[label="",style="solid", color="blue", weight=9]; 5233 -> 2683[label="",style="solid", color="blue", weight=3]; 5234[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2577 -> 5234[label="",style="solid", color="blue", weight=9]; 5234 -> 2684[label="",style="solid", color="blue", weight=3]; 5235[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2577 -> 5235[label="",style="solid", color="blue", weight=9]; 5235 -> 2685[label="",style="solid", color="blue", weight=3]; 5236[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2577 -> 5236[label="",style="solid", color="blue", weight=9]; 5236 -> 2686[label="",style="solid", color="blue", weight=3]; 5237[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2577 -> 5237[label="",style="solid", color="blue", weight=9]; 5237 -> 2687[label="",style="solid", color="blue", weight=3]; 2574[label="compare2 (Right vwx205) (Right vwx206) vwx207",fontsize=16,color="burlywood",shape="triangle"];5238[label="vwx207/False",fontsize=10,color="white",style="solid",shape="box"];2574 -> 5238[label="",style="solid", color="burlywood", weight=9]; 5238 -> 2688[label="",style="solid", color="burlywood", weight=3]; 5239[label="vwx207/True",fontsize=10,color="white",style="solid",shape="box"];2574 -> 5239[label="",style="solid", color="burlywood", weight=9]; 5239 -> 2689[label="",style="solid", color="burlywood", weight=3]; 2578[label="Succ vwx3000",fontsize=16,color="green",shape="box"];2579[label="vwx400",fontsize=16,color="green",shape="box"];2580 -> 2462[label="",style="dashed", color="red", weight=0]; 2580[label="primCmpNat Zero (Succ vwx4000)",fontsize=16,color="magenta"];2580 -> 2690[label="",style="dashed", color="magenta", weight=3]; 2580 -> 2691[label="",style="dashed", color="magenta", weight=3]; 2581[label="EQ",fontsize=16,color="green",shape="box"];2582[label="GT",fontsize=16,color="green",shape="box"];2583[label="EQ",fontsize=16,color="green",shape="box"];2584[label="vwx400",fontsize=16,color="green",shape="box"];2585[label="Succ vwx3000",fontsize=16,color="green",shape="box"];2586[label="LT",fontsize=16,color="green",shape="box"];2587[label="EQ",fontsize=16,color="green",shape="box"];2588 -> 2462[label="",style="dashed", color="red", weight=0]; 2588[label="primCmpNat (Succ vwx4000) Zero",fontsize=16,color="magenta"];2588 -> 2692[label="",style="dashed", color="magenta", weight=3]; 2588 -> 2693[label="",style="dashed", color="magenta", weight=3]; 2589[label="EQ",fontsize=16,color="green",shape="box"];3146[label="vwx300",fontsize=16,color="green",shape="box"];3147[label="vwx401",fontsize=16,color="green",shape="box"];3148[label="vwx400",fontsize=16,color="green",shape="box"];3149 -> 3197[label="",style="dashed", color="red", weight=0]; 3149[label="vwx300 == vwx400 && vwx301 == vwx401 && vwx302 == vwx402",fontsize=16,color="magenta"];3149 -> 3198[label="",style="dashed", color="magenta", weight=3]; 3149 -> 3199[label="",style="dashed", color="magenta", weight=3]; 3150[label="vwx302",fontsize=16,color="green",shape="box"];3151[label="vwx402",fontsize=16,color="green",shape="box"];3152[label="vwx301",fontsize=16,color="green",shape="box"];3145[label="compare2 (vwx242,vwx243,vwx244) (vwx245,vwx246,vwx247) vwx288",fontsize=16,color="burlywood",shape="triangle"];5240[label="vwx288/False",fontsize=10,color="white",style="solid",shape="box"];3145 -> 5240[label="",style="solid", color="burlywood", weight=9]; 5240 -> 3192[label="",style="solid", color="burlywood", weight=3]; 5241[label="vwx288/True",fontsize=10,color="white",style="solid",shape="box"];3145 -> 5241[label="",style="solid", color="burlywood", weight=9]; 5241 -> 3193[label="",style="solid", color="burlywood", weight=3]; 2977[label="vwx300",fontsize=16,color="green",shape="box"];2978[label="vwx400",fontsize=16,color="green",shape="box"];2979[label="vwx401",fontsize=16,color="green",shape="box"];2980[label="vwx301",fontsize=16,color="green",shape="box"];2981 -> 3197[label="",style="dashed", color="red", weight=0]; 2981[label="vwx300 == vwx400 && vwx301 == vwx401",fontsize=16,color="magenta"];2981 -> 3200[label="",style="dashed", color="magenta", weight=3]; 2981 -> 3201[label="",style="dashed", color="magenta", weight=3]; 2976[label="compare2 (vwx255,vwx256) (vwx257,vwx258) vwx259",fontsize=16,color="burlywood",shape="triangle"];5242[label="vwx259/False",fontsize=10,color="white",style="solid",shape="box"];2976 -> 5242[label="",style="solid", color="burlywood", weight=9]; 5242 -> 3001[label="",style="solid", color="burlywood", weight=3]; 5243[label="vwx259/True",fontsize=10,color="white",style="solid",shape="box"];2976 -> 5243[label="",style="solid", color="burlywood", weight=9]; 5243 -> 3002[label="",style="solid", color="burlywood", weight=3]; 2604[label="Integer vwx3000 * vwx401",fontsize=16,color="burlywood",shape="box"];5244[label="vwx401/Integer vwx4010",fontsize=10,color="white",style="solid",shape="box"];2604 -> 5244[label="",style="solid", color="burlywood", weight=9]; 5244 -> 2726[label="",style="solid", color="burlywood", weight=3]; 2605[label="vwx400",fontsize=16,color="green",shape="box"];2606[label="vwx301",fontsize=16,color="green",shape="box"];2607[label="primMulInt vwx300 vwx401",fontsize=16,color="burlywood",shape="triangle"];5245[label="vwx300/Pos vwx3000",fontsize=10,color="white",style="solid",shape="box"];2607 -> 5245[label="",style="solid", color="burlywood", weight=9]; 5245 -> 2727[label="",style="solid", color="burlywood", weight=3]; 5246[label="vwx300/Neg vwx3000",fontsize=10,color="white",style="solid",shape="box"];2607 -> 5246[label="",style="solid", color="burlywood", weight=9]; 5246 -> 2728[label="",style="solid", color="burlywood", weight=3]; 2608[label="vwx400",fontsize=16,color="green",shape="box"];2609[label="vwx301",fontsize=16,color="green",shape="box"];2610 -> 2534[label="",style="dashed", color="red", weight=0]; 2610[label="vwx300 * Pos vwx4010",fontsize=16,color="magenta"];2610 -> 2729[label="",style="dashed", color="magenta", weight=3]; 2610 -> 2730[label="",style="dashed", color="magenta", weight=3]; 2611 -> 2534[label="",style="dashed", color="red", weight=0]; 2611[label="Pos vwx3010 * vwx400",fontsize=16,color="magenta"];2611 -> 2731[label="",style="dashed", color="magenta", weight=3]; 2611 -> 2732[label="",style="dashed", color="magenta", weight=3]; 2612 -> 2534[label="",style="dashed", color="red", weight=0]; 2612[label="vwx300 * Pos vwx4010",fontsize=16,color="magenta"];2612 -> 2733[label="",style="dashed", color="magenta", weight=3]; 2612 -> 2734[label="",style="dashed", color="magenta", weight=3]; 2613 -> 2534[label="",style="dashed", color="red", weight=0]; 2613[label="Neg vwx3010 * vwx400",fontsize=16,color="magenta"];2613 -> 2735[label="",style="dashed", color="magenta", weight=3]; 2613 -> 2736[label="",style="dashed", color="magenta", weight=3]; 2614 -> 2534[label="",style="dashed", color="red", weight=0]; 2614[label="vwx300 * Neg vwx4010",fontsize=16,color="magenta"];2614 -> 2737[label="",style="dashed", color="magenta", weight=3]; 2614 -> 2738[label="",style="dashed", color="magenta", weight=3]; 2615 -> 2534[label="",style="dashed", color="red", weight=0]; 2615[label="Pos vwx3010 * vwx400",fontsize=16,color="magenta"];2615 -> 2739[label="",style="dashed", color="magenta", weight=3]; 2615 -> 2740[label="",style="dashed", color="magenta", weight=3]; 2616 -> 2534[label="",style="dashed", color="red", weight=0]; 2616[label="vwx300 * Neg vwx4010",fontsize=16,color="magenta"];2616 -> 2741[label="",style="dashed", color="magenta", weight=3]; 2616 -> 2742[label="",style="dashed", color="magenta", weight=3]; 2617 -> 2534[label="",style="dashed", color="red", weight=0]; 2617[label="Neg vwx3010 * vwx400",fontsize=16,color="magenta"];2617 -> 2743[label="",style="dashed", color="magenta", weight=3]; 2617 -> 2744[label="",style="dashed", color="magenta", weight=3]; 2618 -> 2534[label="",style="dashed", color="red", weight=0]; 2618[label="vwx300 * Pos vwx4010",fontsize=16,color="magenta"];2618 -> 2745[label="",style="dashed", color="magenta", weight=3]; 2618 -> 2746[label="",style="dashed", color="magenta", weight=3]; 2619 -> 2534[label="",style="dashed", color="red", weight=0]; 2619[label="Pos vwx3010 * vwx400",fontsize=16,color="magenta"];2619 -> 2747[label="",style="dashed", color="magenta", weight=3]; 2619 -> 2748[label="",style="dashed", color="magenta", weight=3]; 2620 -> 2534[label="",style="dashed", color="red", weight=0]; 2620[label="vwx300 * Pos vwx4010",fontsize=16,color="magenta"];2620 -> 2749[label="",style="dashed", color="magenta", weight=3]; 2620 -> 2750[label="",style="dashed", color="magenta", weight=3]; 2621 -> 2534[label="",style="dashed", color="red", weight=0]; 2621[label="Neg vwx3010 * vwx400",fontsize=16,color="magenta"];2621 -> 2751[label="",style="dashed", color="magenta", weight=3]; 2621 -> 2752[label="",style="dashed", color="magenta", weight=3]; 2622 -> 2534[label="",style="dashed", color="red", weight=0]; 2622[label="vwx300 * Neg vwx4010",fontsize=16,color="magenta"];2622 -> 2753[label="",style="dashed", color="magenta", weight=3]; 2622 -> 2754[label="",style="dashed", color="magenta", weight=3]; 2623 -> 2534[label="",style="dashed", color="red", weight=0]; 2623[label="Pos vwx3010 * vwx400",fontsize=16,color="magenta"];2623 -> 2755[label="",style="dashed", color="magenta", weight=3]; 2623 -> 2756[label="",style="dashed", color="magenta", weight=3]; 2624 -> 2534[label="",style="dashed", color="red", weight=0]; 2624[label="vwx300 * Neg vwx4010",fontsize=16,color="magenta"];2624 -> 2757[label="",style="dashed", color="magenta", weight=3]; 2624 -> 2758[label="",style="dashed", color="magenta", weight=3]; 2625 -> 2534[label="",style="dashed", color="red", weight=0]; 2625[label="Neg vwx3010 * vwx400",fontsize=16,color="magenta"];2625 -> 2759[label="",style="dashed", color="magenta", weight=3]; 2625 -> 2760[label="",style="dashed", color="magenta", weight=3]; 2626[label="compare1 LT EQ True",fontsize=16,color="black",shape="box"];2626 -> 2761[label="",style="solid", color="black", weight=3]; 2627[label="compare1 LT GT True",fontsize=16,color="black",shape="box"];2627 -> 2762[label="",style="solid", color="black", weight=3]; 2628[label="compare1 EQ LT False",fontsize=16,color="black",shape="box"];2628 -> 2763[label="",style="solid", color="black", weight=3]; 2629[label="compare1 EQ GT True",fontsize=16,color="black",shape="box"];2629 -> 2764[label="",style="solid", color="black", weight=3]; 2630[label="compare1 GT LT False",fontsize=16,color="black",shape="box"];2630 -> 2765[label="",style="solid", color="black", weight=3]; 2631[label="compare1 GT EQ False",fontsize=16,color="black",shape="box"];2631 -> 2766[label="",style="solid", color="black", weight=3]; 2632 -> 2462[label="",style="dashed", color="red", weight=0]; 2632[label="primCmpNat vwx3000 vwx4000",fontsize=16,color="magenta"];2632 -> 2767[label="",style="dashed", color="magenta", weight=3]; 2632 -> 2768[label="",style="dashed", color="magenta", weight=3]; 2633[label="GT",fontsize=16,color="green",shape="box"];2634[label="LT",fontsize=16,color="green",shape="box"];2635[label="EQ",fontsize=16,color="green",shape="box"];2636[label="compare1 False True True",fontsize=16,color="black",shape="box"];2636 -> 2769[label="",style="solid", color="black", weight=3]; 2637[label="compare1 True False False",fontsize=16,color="black",shape="box"];2637 -> 2770[label="",style="solid", color="black", weight=3]; 2638[label="compare1 Nothing (Just vwx400) True",fontsize=16,color="black",shape="box"];2638 -> 2771[label="",style="solid", color="black", weight=3]; 2639[label="compare1 (Just vwx300) Nothing False",fontsize=16,color="black",shape="box"];2639 -> 2772[label="",style="solid", color="black", weight=3]; 2640[label="vwx300 == vwx400",fontsize=16,color="burlywood",shape="triangle"];5247[label="vwx300/vwx3000 : vwx3001",fontsize=10,color="white",style="solid",shape="box"];2640 -> 5247[label="",style="solid", color="burlywood", weight=9]; 5247 -> 2773[label="",style="solid", color="burlywood", weight=3]; 5248[label="vwx300/[]",fontsize=10,color="white",style="solid",shape="box"];2640 -> 5248[label="",style="solid", color="burlywood", weight=9]; 5248 -> 2774[label="",style="solid", color="burlywood", weight=3]; 2641[label="vwx300 == vwx400",fontsize=16,color="burlywood",shape="triangle"];5249[label="vwx300/LT",fontsize=10,color="white",style="solid",shape="box"];2641 -> 5249[label="",style="solid", color="burlywood", weight=9]; 5249 -> 2775[label="",style="solid", color="burlywood", weight=3]; 5250[label="vwx300/EQ",fontsize=10,color="white",style="solid",shape="box"];2641 -> 5250[label="",style="solid", color="burlywood", weight=9]; 5250 -> 2776[label="",style="solid", color="burlywood", weight=3]; 5251[label="vwx300/GT",fontsize=10,color="white",style="solid",shape="box"];2641 -> 5251[label="",style="solid", color="burlywood", weight=9]; 5251 -> 2777[label="",style="solid", color="burlywood", weight=3]; 2642[label="vwx300 == vwx400",fontsize=16,color="black",shape="triangle"];2642 -> 2778[label="",style="solid", color="black", weight=3]; 2643[label="vwx300 == vwx400",fontsize=16,color="burlywood",shape="triangle"];5252[label="vwx300/Integer vwx3000",fontsize=10,color="white",style="solid",shape="box"];2643 -> 5252[label="",style="solid", color="burlywood", weight=9]; 5252 -> 2779[label="",style="solid", color="burlywood", weight=3]; 2644[label="vwx300 == vwx400",fontsize=16,color="burlywood",shape="triangle"];5253[label="vwx300/(vwx3000,vwx3001)",fontsize=10,color="white",style="solid",shape="box"];2644 -> 5253[label="",style="solid", color="burlywood", weight=9]; 5253 -> 2780[label="",style="solid", color="burlywood", weight=3]; 2645[label="vwx300 == vwx400",fontsize=16,color="black",shape="triangle"];2645 -> 2781[label="",style="solid", color="black", weight=3]; 2646[label="vwx300 == vwx400",fontsize=16,color="black",shape="triangle"];2646 -> 2782[label="",style="solid", color="black", weight=3]; 2647[label="vwx300 == vwx400",fontsize=16,color="burlywood",shape="triangle"];5254[label="vwx300/False",fontsize=10,color="white",style="solid",shape="box"];2647 -> 5254[label="",style="solid", color="burlywood", weight=9]; 5254 -> 2783[label="",style="solid", color="burlywood", weight=3]; 5255[label="vwx300/True",fontsize=10,color="white",style="solid",shape="box"];2647 -> 5255[label="",style="solid", color="burlywood", weight=9]; 5255 -> 2784[label="",style="solid", color="burlywood", weight=3]; 2648[label="vwx300 == vwx400",fontsize=16,color="burlywood",shape="triangle"];5256[label="vwx300/Nothing",fontsize=10,color="white",style="solid",shape="box"];2648 -> 5256[label="",style="solid", color="burlywood", weight=9]; 5256 -> 2785[label="",style="solid", color="burlywood", weight=3]; 5257[label="vwx300/Just vwx3000",fontsize=10,color="white",style="solid",shape="box"];2648 -> 5257[label="",style="solid", color="burlywood", weight=9]; 5257 -> 2786[label="",style="solid", color="burlywood", weight=3]; 2649[label="vwx300 == vwx400",fontsize=16,color="burlywood",shape="triangle"];5258[label="vwx300/vwx3000 :% vwx3001",fontsize=10,color="white",style="solid",shape="box"];2649 -> 5258[label="",style="solid", color="burlywood", weight=9]; 5258 -> 2787[label="",style="solid", color="burlywood", weight=3]; 2650[label="vwx300 == vwx400",fontsize=16,color="burlywood",shape="triangle"];5259[label="vwx300/Left vwx3000",fontsize=10,color="white",style="solid",shape="box"];2650 -> 5259[label="",style="solid", color="burlywood", weight=9]; 5259 -> 2788[label="",style="solid", color="burlywood", weight=3]; 5260[label="vwx300/Right vwx3000",fontsize=10,color="white",style="solid",shape="box"];2650 -> 5260[label="",style="solid", color="burlywood", weight=9]; 5260 -> 2789[label="",style="solid", color="burlywood", weight=3]; 2651[label="vwx300 == vwx400",fontsize=16,color="burlywood",shape="triangle"];5261[label="vwx300/()",fontsize=10,color="white",style="solid",shape="box"];2651 -> 5261[label="",style="solid", color="burlywood", weight=9]; 5261 -> 2790[label="",style="solid", color="burlywood", weight=3]; 2652[label="vwx300 == vwx400",fontsize=16,color="black",shape="triangle"];2652 -> 2791[label="",style="solid", color="black", weight=3]; 2653[label="vwx300 == vwx400",fontsize=16,color="burlywood",shape="triangle"];5262[label="vwx300/(vwx3000,vwx3001,vwx3002)",fontsize=10,color="white",style="solid",shape="box"];2653 -> 5262[label="",style="solid", color="burlywood", weight=9]; 5262 -> 2792[label="",style="solid", color="burlywood", weight=3]; 2654[label="compare2 (Just vwx191) (Just vwx192) False",fontsize=16,color="black",shape="box"];2654 -> 2793[label="",style="solid", color="black", weight=3]; 2655[label="compare2 (Just vwx191) (Just vwx192) True",fontsize=16,color="black",shape="box"];2655 -> 2794[label="",style="solid", color="black", weight=3]; 2656 -> 2640[label="",style="dashed", color="red", weight=0]; 2656[label="vwx300 == vwx400",fontsize=16,color="magenta"];2656 -> 2795[label="",style="dashed", color="magenta", weight=3]; 2656 -> 2796[label="",style="dashed", color="magenta", weight=3]; 2657 -> 2641[label="",style="dashed", color="red", weight=0]; 2657[label="vwx300 == vwx400",fontsize=16,color="magenta"];2657 -> 2797[label="",style="dashed", color="magenta", weight=3]; 2657 -> 2798[label="",style="dashed", color="magenta", weight=3]; 2658 -> 2642[label="",style="dashed", color="red", weight=0]; 2658[label="vwx300 == vwx400",fontsize=16,color="magenta"];2658 -> 2799[label="",style="dashed", color="magenta", weight=3]; 2658 -> 2800[label="",style="dashed", color="magenta", weight=3]; 2659 -> 2643[label="",style="dashed", color="red", weight=0]; 2659[label="vwx300 == vwx400",fontsize=16,color="magenta"];2659 -> 2801[label="",style="dashed", color="magenta", weight=3]; 2659 -> 2802[label="",style="dashed", color="magenta", weight=3]; 2660 -> 2644[label="",style="dashed", color="red", weight=0]; 2660[label="vwx300 == vwx400",fontsize=16,color="magenta"];2660 -> 2803[label="",style="dashed", color="magenta", weight=3]; 2660 -> 2804[label="",style="dashed", color="magenta", weight=3]; 2661 -> 2645[label="",style="dashed", color="red", weight=0]; 2661[label="vwx300 == vwx400",fontsize=16,color="magenta"];2661 -> 2805[label="",style="dashed", color="magenta", weight=3]; 2661 -> 2806[label="",style="dashed", color="magenta", weight=3]; 2662 -> 2646[label="",style="dashed", color="red", weight=0]; 2662[label="vwx300 == vwx400",fontsize=16,color="magenta"];2662 -> 2807[label="",style="dashed", color="magenta", weight=3]; 2662 -> 2808[label="",style="dashed", color="magenta", weight=3]; 2663 -> 2647[label="",style="dashed", color="red", weight=0]; 2663[label="vwx300 == vwx400",fontsize=16,color="magenta"];2663 -> 2809[label="",style="dashed", color="magenta", weight=3]; 2663 -> 2810[label="",style="dashed", color="magenta", weight=3]; 2664 -> 2648[label="",style="dashed", color="red", weight=0]; 2664[label="vwx300 == vwx400",fontsize=16,color="magenta"];2664 -> 2811[label="",style="dashed", color="magenta", weight=3]; 2664 -> 2812[label="",style="dashed", color="magenta", weight=3]; 2665 -> 2649[label="",style="dashed", color="red", weight=0]; 2665[label="vwx300 == vwx400",fontsize=16,color="magenta"];2665 -> 2813[label="",style="dashed", color="magenta", weight=3]; 2665 -> 2814[label="",style="dashed", color="magenta", weight=3]; 2666 -> 2650[label="",style="dashed", color="red", weight=0]; 2666[label="vwx300 == vwx400",fontsize=16,color="magenta"];2666 -> 2815[label="",style="dashed", color="magenta", weight=3]; 2666 -> 2816[label="",style="dashed", color="magenta", weight=3]; 2667 -> 2651[label="",style="dashed", color="red", weight=0]; 2667[label="vwx300 == vwx400",fontsize=16,color="magenta"];2667 -> 2817[label="",style="dashed", color="magenta", weight=3]; 2667 -> 2818[label="",style="dashed", color="magenta", weight=3]; 2668 -> 2652[label="",style="dashed", color="red", weight=0]; 2668[label="vwx300 == vwx400",fontsize=16,color="magenta"];2668 -> 2819[label="",style="dashed", color="magenta", weight=3]; 2668 -> 2820[label="",style="dashed", color="magenta", weight=3]; 2669 -> 2653[label="",style="dashed", color="red", weight=0]; 2669[label="vwx300 == vwx400",fontsize=16,color="magenta"];2669 -> 2821[label="",style="dashed", color="magenta", weight=3]; 2669 -> 2822[label="",style="dashed", color="magenta", weight=3]; 2670[label="compare2 (Left vwx198) (Left vwx199) False",fontsize=16,color="black",shape="box"];2670 -> 2823[label="",style="solid", color="black", weight=3]; 2671[label="compare2 (Left vwx198) (Left vwx199) True",fontsize=16,color="black",shape="box"];2671 -> 2824[label="",style="solid", color="black", weight=3]; 2672[label="compare1 (Left vwx300) (Right vwx400) True",fontsize=16,color="black",shape="box"];2672 -> 2825[label="",style="solid", color="black", weight=3]; 2673[label="compare1 (Right vwx300) (Left vwx400) False",fontsize=16,color="black",shape="box"];2673 -> 2826[label="",style="solid", color="black", weight=3]; 2674 -> 2640[label="",style="dashed", color="red", weight=0]; 2674[label="vwx300 == vwx400",fontsize=16,color="magenta"];2674 -> 2827[label="",style="dashed", color="magenta", weight=3]; 2674 -> 2828[label="",style="dashed", color="magenta", weight=3]; 2675 -> 2641[label="",style="dashed", color="red", weight=0]; 2675[label="vwx300 == vwx400",fontsize=16,color="magenta"];2675 -> 2829[label="",style="dashed", color="magenta", weight=3]; 2675 -> 2830[label="",style="dashed", color="magenta", weight=3]; 2676 -> 2642[label="",style="dashed", color="red", weight=0]; 2676[label="vwx300 == vwx400",fontsize=16,color="magenta"];2676 -> 2831[label="",style="dashed", color="magenta", weight=3]; 2676 -> 2832[label="",style="dashed", color="magenta", weight=3]; 2677 -> 2643[label="",style="dashed", color="red", weight=0]; 2677[label="vwx300 == vwx400",fontsize=16,color="magenta"];2677 -> 2833[label="",style="dashed", color="magenta", weight=3]; 2677 -> 2834[label="",style="dashed", color="magenta", weight=3]; 2678 -> 2644[label="",style="dashed", color="red", weight=0]; 2678[label="vwx300 == vwx400",fontsize=16,color="magenta"];2678 -> 2835[label="",style="dashed", color="magenta", weight=3]; 2678 -> 2836[label="",style="dashed", color="magenta", weight=3]; 2679 -> 2645[label="",style="dashed", color="red", weight=0]; 2679[label="vwx300 == vwx400",fontsize=16,color="magenta"];2679 -> 2837[label="",style="dashed", color="magenta", weight=3]; 2679 -> 2838[label="",style="dashed", color="magenta", weight=3]; 2680 -> 2646[label="",style="dashed", color="red", weight=0]; 2680[label="vwx300 == vwx400",fontsize=16,color="magenta"];2680 -> 2839[label="",style="dashed", color="magenta", weight=3]; 2680 -> 2840[label="",style="dashed", color="magenta", weight=3]; 2681 -> 2647[label="",style="dashed", color="red", weight=0]; 2681[label="vwx300 == vwx400",fontsize=16,color="magenta"];2681 -> 2841[label="",style="dashed", color="magenta", weight=3]; 2681 -> 2842[label="",style="dashed", color="magenta", weight=3]; 2682 -> 2648[label="",style="dashed", color="red", weight=0]; 2682[label="vwx300 == vwx400",fontsize=16,color="magenta"];2682 -> 2843[label="",style="dashed", color="magenta", weight=3]; 2682 -> 2844[label="",style="dashed", color="magenta", weight=3]; 2683 -> 2649[label="",style="dashed", color="red", weight=0]; 2683[label="vwx300 == vwx400",fontsize=16,color="magenta"];2683 -> 2845[label="",style="dashed", color="magenta", weight=3]; 2683 -> 2846[label="",style="dashed", color="magenta", weight=3]; 2684 -> 2650[label="",style="dashed", color="red", weight=0]; 2684[label="vwx300 == vwx400",fontsize=16,color="magenta"];2684 -> 2847[label="",style="dashed", color="magenta", weight=3]; 2684 -> 2848[label="",style="dashed", color="magenta", weight=3]; 2685 -> 2651[label="",style="dashed", color="red", weight=0]; 2685[label="vwx300 == vwx400",fontsize=16,color="magenta"];2685 -> 2849[label="",style="dashed", color="magenta", weight=3]; 2685 -> 2850[label="",style="dashed", color="magenta", weight=3]; 2686 -> 2652[label="",style="dashed", color="red", weight=0]; 2686[label="vwx300 == vwx400",fontsize=16,color="magenta"];2686 -> 2851[label="",style="dashed", color="magenta", weight=3]; 2686 -> 2852[label="",style="dashed", color="magenta", weight=3]; 2687 -> 2653[label="",style="dashed", color="red", weight=0]; 2687[label="vwx300 == vwx400",fontsize=16,color="magenta"];2687 -> 2853[label="",style="dashed", color="magenta", weight=3]; 2687 -> 2854[label="",style="dashed", color="magenta", weight=3]; 2688[label="compare2 (Right vwx205) (Right vwx206) False",fontsize=16,color="black",shape="box"];2688 -> 2855[label="",style="solid", color="black", weight=3]; 2689[label="compare2 (Right vwx205) (Right vwx206) True",fontsize=16,color="black",shape="box"];2689 -> 2856[label="",style="solid", color="black", weight=3]; 2690[label="Zero",fontsize=16,color="green",shape="box"];2691[label="Succ vwx4000",fontsize=16,color="green",shape="box"];2692[label="Succ vwx4000",fontsize=16,color="green",shape="box"];2693[label="Zero",fontsize=16,color="green",shape="box"];3198[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];5263[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3198 -> 5263[label="",style="solid", color="blue", weight=9]; 5263 -> 3216[label="",style="solid", color="blue", weight=3]; 5264[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3198 -> 5264[label="",style="solid", color="blue", weight=9]; 5264 -> 3217[label="",style="solid", color="blue", weight=3]; 5265[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3198 -> 5265[label="",style="solid", color="blue", weight=9]; 5265 -> 3218[label="",style="solid", color="blue", weight=3]; 5266[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3198 -> 5266[label="",style="solid", color="blue", weight=9]; 5266 -> 3219[label="",style="solid", color="blue", weight=3]; 5267[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3198 -> 5267[label="",style="solid", color="blue", weight=9]; 5267 -> 3220[label="",style="solid", color="blue", weight=3]; 5268[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3198 -> 5268[label="",style="solid", color="blue", weight=9]; 5268 -> 3221[label="",style="solid", color="blue", weight=3]; 5269[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3198 -> 5269[label="",style="solid", color="blue", weight=9]; 5269 -> 3222[label="",style="solid", color="blue", weight=3]; 5270[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3198 -> 5270[label="",style="solid", color="blue", weight=9]; 5270 -> 3223[label="",style="solid", color="blue", weight=3]; 5271[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3198 -> 5271[label="",style="solid", color="blue", weight=9]; 5271 -> 3224[label="",style="solid", color="blue", weight=3]; 5272[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3198 -> 5272[label="",style="solid", color="blue", weight=9]; 5272 -> 3225[label="",style="solid", color="blue", weight=3]; 5273[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3198 -> 5273[label="",style="solid", color="blue", weight=9]; 5273 -> 3226[label="",style="solid", color="blue", weight=3]; 5274[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3198 -> 5274[label="",style="solid", color="blue", weight=9]; 5274 -> 3227[label="",style="solid", color="blue", weight=3]; 5275[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3198 -> 5275[label="",style="solid", color="blue", weight=9]; 5275 -> 3228[label="",style="solid", color="blue", weight=3]; 5276[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3198 -> 5276[label="",style="solid", color="blue", weight=9]; 5276 -> 3229[label="",style="solid", color="blue", weight=3]; 3199 -> 3197[label="",style="dashed", color="red", weight=0]; 3199[label="vwx301 == vwx401 && vwx302 == vwx402",fontsize=16,color="magenta"];3199 -> 3230[label="",style="dashed", color="magenta", weight=3]; 3199 -> 3231[label="",style="dashed", color="magenta", weight=3]; 3197[label="vwx293 && vwx294",fontsize=16,color="burlywood",shape="triangle"];5277[label="vwx293/False",fontsize=10,color="white",style="solid",shape="box"];3197 -> 5277[label="",style="solid", color="burlywood", weight=9]; 5277 -> 3232[label="",style="solid", color="burlywood", weight=3]; 5278[label="vwx293/True",fontsize=10,color="white",style="solid",shape="box"];3197 -> 5278[label="",style="solid", color="burlywood", weight=9]; 5278 -> 3233[label="",style="solid", color="burlywood", weight=3]; 3192[label="compare2 (vwx242,vwx243,vwx244) (vwx245,vwx246,vwx247) False",fontsize=16,color="black",shape="box"];3192 -> 3234[label="",style="solid", color="black", weight=3]; 3193[label="compare2 (vwx242,vwx243,vwx244) (vwx245,vwx246,vwx247) True",fontsize=16,color="black",shape="box"];3193 -> 3235[label="",style="solid", color="black", weight=3]; 3200[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];5279[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3200 -> 5279[label="",style="solid", color="blue", weight=9]; 5279 -> 3236[label="",style="solid", color="blue", weight=3]; 5280[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3200 -> 5280[label="",style="solid", color="blue", weight=9]; 5280 -> 3237[label="",style="solid", color="blue", weight=3]; 5281[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3200 -> 5281[label="",style="solid", color="blue", weight=9]; 5281 -> 3238[label="",style="solid", color="blue", weight=3]; 5282[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3200 -> 5282[label="",style="solid", color="blue", weight=9]; 5282 -> 3239[label="",style="solid", color="blue", weight=3]; 5283[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3200 -> 5283[label="",style="solid", color="blue", weight=9]; 5283 -> 3240[label="",style="solid", color="blue", weight=3]; 5284[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3200 -> 5284[label="",style="solid", color="blue", weight=9]; 5284 -> 3241[label="",style="solid", color="blue", weight=3]; 5285[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3200 -> 5285[label="",style="solid", color="blue", weight=9]; 5285 -> 3242[label="",style="solid", color="blue", weight=3]; 5286[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3200 -> 5286[label="",style="solid", color="blue", weight=9]; 5286 -> 3243[label="",style="solid", color="blue", weight=3]; 5287[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3200 -> 5287[label="",style="solid", color="blue", weight=9]; 5287 -> 3244[label="",style="solid", color="blue", weight=3]; 5288[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3200 -> 5288[label="",style="solid", color="blue", weight=9]; 5288 -> 3245[label="",style="solid", color="blue", weight=3]; 5289[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3200 -> 5289[label="",style="solid", color="blue", weight=9]; 5289 -> 3246[label="",style="solid", color="blue", weight=3]; 5290[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3200 -> 5290[label="",style="solid", color="blue", weight=9]; 5290 -> 3247[label="",style="solid", color="blue", weight=3]; 5291[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3200 -> 5291[label="",style="solid", color="blue", weight=9]; 5291 -> 3248[label="",style="solid", color="blue", weight=3]; 5292[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3200 -> 5292[label="",style="solid", color="blue", weight=9]; 5292 -> 3249[label="",style="solid", color="blue", weight=3]; 3201[label="vwx301 == vwx401",fontsize=16,color="blue",shape="box"];5293[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3201 -> 5293[label="",style="solid", color="blue", weight=9]; 5293 -> 3250[label="",style="solid", color="blue", weight=3]; 5294[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3201 -> 5294[label="",style="solid", color="blue", weight=9]; 5294 -> 3251[label="",style="solid", color="blue", weight=3]; 5295[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3201 -> 5295[label="",style="solid", color="blue", weight=9]; 5295 -> 3252[label="",style="solid", color="blue", weight=3]; 5296[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3201 -> 5296[label="",style="solid", color="blue", weight=9]; 5296 -> 3253[label="",style="solid", color="blue", weight=3]; 5297[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3201 -> 5297[label="",style="solid", color="blue", weight=9]; 5297 -> 3254[label="",style="solid", color="blue", weight=3]; 5298[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3201 -> 5298[label="",style="solid", color="blue", weight=9]; 5298 -> 3255[label="",style="solid", color="blue", weight=3]; 5299[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3201 -> 5299[label="",style="solid", color="blue", weight=9]; 5299 -> 3256[label="",style="solid", color="blue", weight=3]; 5300[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3201 -> 5300[label="",style="solid", color="blue", weight=9]; 5300 -> 3257[label="",style="solid", color="blue", weight=3]; 5301[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3201 -> 5301[label="",style="solid", color="blue", weight=9]; 5301 -> 3258[label="",style="solid", color="blue", weight=3]; 5302[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3201 -> 5302[label="",style="solid", color="blue", weight=9]; 5302 -> 3259[label="",style="solid", color="blue", weight=3]; 5303[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3201 -> 5303[label="",style="solid", color="blue", weight=9]; 5303 -> 3260[label="",style="solid", color="blue", weight=3]; 5304[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3201 -> 5304[label="",style="solid", color="blue", weight=9]; 5304 -> 3261[label="",style="solid", color="blue", weight=3]; 5305[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3201 -> 5305[label="",style="solid", color="blue", weight=9]; 5305 -> 3262[label="",style="solid", color="blue", weight=3]; 5306[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3201 -> 5306[label="",style="solid", color="blue", weight=9]; 5306 -> 3263[label="",style="solid", color="blue", weight=3]; 3001[label="compare2 (vwx255,vwx256) (vwx257,vwx258) False",fontsize=16,color="black",shape="box"];3001 -> 3073[label="",style="solid", color="black", weight=3]; 3002[label="compare2 (vwx255,vwx256) (vwx257,vwx258) True",fontsize=16,color="black",shape="box"];3002 -> 3074[label="",style="solid", color="black", weight=3]; 2726[label="Integer vwx3000 * Integer vwx4010",fontsize=16,color="black",shape="box"];2726 -> 2917[label="",style="solid", color="black", weight=3]; 2727[label="primMulInt (Pos vwx3000) vwx401",fontsize=16,color="burlywood",shape="box"];5307[label="vwx401/Pos vwx4010",fontsize=10,color="white",style="solid",shape="box"];2727 -> 5307[label="",style="solid", color="burlywood", weight=9]; 5307 -> 2918[label="",style="solid", color="burlywood", weight=3]; 5308[label="vwx401/Neg vwx4010",fontsize=10,color="white",style="solid",shape="box"];2727 -> 5308[label="",style="solid", color="burlywood", weight=9]; 5308 -> 2919[label="",style="solid", color="burlywood", weight=3]; 2728[label="primMulInt (Neg vwx3000) vwx401",fontsize=16,color="burlywood",shape="box"];5309[label="vwx401/Pos vwx4010",fontsize=10,color="white",style="solid",shape="box"];2728 -> 5309[label="",style="solid", color="burlywood", weight=9]; 5309 -> 2920[label="",style="solid", color="burlywood", weight=3]; 5310[label="vwx401/Neg vwx4010",fontsize=10,color="white",style="solid",shape="box"];2728 -> 5310[label="",style="solid", color="burlywood", weight=9]; 5310 -> 2921[label="",style="solid", color="burlywood", weight=3]; 2729[label="vwx300",fontsize=16,color="green",shape="box"];2730[label="Pos vwx4010",fontsize=16,color="green",shape="box"];2731[label="Pos vwx3010",fontsize=16,color="green",shape="box"];2732[label="vwx400",fontsize=16,color="green",shape="box"];2733[label="vwx300",fontsize=16,color="green",shape="box"];2734[label="Pos vwx4010",fontsize=16,color="green",shape="box"];2735[label="Neg vwx3010",fontsize=16,color="green",shape="box"];2736[label="vwx400",fontsize=16,color="green",shape="box"];2737[label="vwx300",fontsize=16,color="green",shape="box"];2738[label="Neg vwx4010",fontsize=16,color="green",shape="box"];2739[label="Pos vwx3010",fontsize=16,color="green",shape="box"];2740[label="vwx400",fontsize=16,color="green",shape="box"];2741[label="vwx300",fontsize=16,color="green",shape="box"];2742[label="Neg vwx4010",fontsize=16,color="green",shape="box"];2743[label="Neg vwx3010",fontsize=16,color="green",shape="box"];2744[label="vwx400",fontsize=16,color="green",shape="box"];2745[label="vwx300",fontsize=16,color="green",shape="box"];2746[label="Pos vwx4010",fontsize=16,color="green",shape="box"];2747[label="Pos vwx3010",fontsize=16,color="green",shape="box"];2748[label="vwx400",fontsize=16,color="green",shape="box"];2749[label="vwx300",fontsize=16,color="green",shape="box"];2750[label="Pos vwx4010",fontsize=16,color="green",shape="box"];2751[label="Neg vwx3010",fontsize=16,color="green",shape="box"];2752[label="vwx400",fontsize=16,color="green",shape="box"];2753[label="vwx300",fontsize=16,color="green",shape="box"];2754[label="Neg vwx4010",fontsize=16,color="green",shape="box"];2755[label="Pos vwx3010",fontsize=16,color="green",shape="box"];2756[label="vwx400",fontsize=16,color="green",shape="box"];2757[label="vwx300",fontsize=16,color="green",shape="box"];2758[label="Neg vwx4010",fontsize=16,color="green",shape="box"];2759[label="Neg vwx3010",fontsize=16,color="green",shape="box"];2760[label="vwx400",fontsize=16,color="green",shape="box"];2761[label="LT",fontsize=16,color="green",shape="box"];2762[label="LT",fontsize=16,color="green",shape="box"];2763[label="compare0 EQ LT otherwise",fontsize=16,color="black",shape="box"];2763 -> 2922[label="",style="solid", color="black", weight=3]; 2764[label="LT",fontsize=16,color="green",shape="box"];2765[label="compare0 GT LT otherwise",fontsize=16,color="black",shape="box"];2765 -> 2923[label="",style="solid", color="black", weight=3]; 2766[label="compare0 GT EQ otherwise",fontsize=16,color="black",shape="box"];2766 -> 2924[label="",style="solid", color="black", weight=3]; 2767[label="vwx3000",fontsize=16,color="green",shape="box"];2768[label="vwx4000",fontsize=16,color="green",shape="box"];2769[label="LT",fontsize=16,color="green",shape="box"];2770[label="compare0 True False otherwise",fontsize=16,color="black",shape="box"];2770 -> 2925[label="",style="solid", color="black", weight=3]; 2771[label="LT",fontsize=16,color="green",shape="box"];2772[label="compare0 (Just vwx300) Nothing otherwise",fontsize=16,color="black",shape="box"];2772 -> 2926[label="",style="solid", color="black", weight=3]; 2773[label="vwx3000 : vwx3001 == vwx400",fontsize=16,color="burlywood",shape="box"];5311[label="vwx400/vwx4000 : vwx4001",fontsize=10,color="white",style="solid",shape="box"];2773 -> 5311[label="",style="solid", color="burlywood", weight=9]; 5311 -> 2927[label="",style="solid", color="burlywood", weight=3]; 5312[label="vwx400/[]",fontsize=10,color="white",style="solid",shape="box"];2773 -> 5312[label="",style="solid", color="burlywood", weight=9]; 5312 -> 2928[label="",style="solid", color="burlywood", weight=3]; 2774[label="[] == vwx400",fontsize=16,color="burlywood",shape="box"];5313[label="vwx400/vwx4000 : vwx4001",fontsize=10,color="white",style="solid",shape="box"];2774 -> 5313[label="",style="solid", color="burlywood", weight=9]; 5313 -> 2929[label="",style="solid", color="burlywood", weight=3]; 5314[label="vwx400/[]",fontsize=10,color="white",style="solid",shape="box"];2774 -> 5314[label="",style="solid", color="burlywood", weight=9]; 5314 -> 2930[label="",style="solid", color="burlywood", weight=3]; 2775[label="LT == vwx400",fontsize=16,color="burlywood",shape="box"];5315[label="vwx400/LT",fontsize=10,color="white",style="solid",shape="box"];2775 -> 5315[label="",style="solid", color="burlywood", weight=9]; 5315 -> 2931[label="",style="solid", color="burlywood", weight=3]; 5316[label="vwx400/EQ",fontsize=10,color="white",style="solid",shape="box"];2775 -> 5316[label="",style="solid", color="burlywood", weight=9]; 5316 -> 2932[label="",style="solid", color="burlywood", weight=3]; 5317[label="vwx400/GT",fontsize=10,color="white",style="solid",shape="box"];2775 -> 5317[label="",style="solid", color="burlywood", weight=9]; 5317 -> 2933[label="",style="solid", color="burlywood", weight=3]; 2776[label="EQ == vwx400",fontsize=16,color="burlywood",shape="box"];5318[label="vwx400/LT",fontsize=10,color="white",style="solid",shape="box"];2776 -> 5318[label="",style="solid", color="burlywood", weight=9]; 5318 -> 2934[label="",style="solid", color="burlywood", weight=3]; 5319[label="vwx400/EQ",fontsize=10,color="white",style="solid",shape="box"];2776 -> 5319[label="",style="solid", color="burlywood", weight=9]; 5319 -> 2935[label="",style="solid", color="burlywood", weight=3]; 5320[label="vwx400/GT",fontsize=10,color="white",style="solid",shape="box"];2776 -> 5320[label="",style="solid", color="burlywood", weight=9]; 5320 -> 2936[label="",style="solid", color="burlywood", weight=3]; 2777[label="GT == vwx400",fontsize=16,color="burlywood",shape="box"];5321[label="vwx400/LT",fontsize=10,color="white",style="solid",shape="box"];2777 -> 5321[label="",style="solid", color="burlywood", weight=9]; 5321 -> 2937[label="",style="solid", color="burlywood", weight=3]; 5322[label="vwx400/EQ",fontsize=10,color="white",style="solid",shape="box"];2777 -> 5322[label="",style="solid", color="burlywood", weight=9]; 5322 -> 2938[label="",style="solid", color="burlywood", weight=3]; 5323[label="vwx400/GT",fontsize=10,color="white",style="solid",shape="box"];2777 -> 5323[label="",style="solid", color="burlywood", weight=9]; 5323 -> 2939[label="",style="solid", color="burlywood", weight=3]; 2778[label="primEqDouble vwx300 vwx400",fontsize=16,color="burlywood",shape="box"];5324[label="vwx300/Double vwx3000 vwx3001",fontsize=10,color="white",style="solid",shape="box"];2778 -> 5324[label="",style="solid", color="burlywood", weight=9]; 5324 -> 2940[label="",style="solid", color="burlywood", weight=3]; 2779[label="Integer vwx3000 == vwx400",fontsize=16,color="burlywood",shape="box"];5325[label="vwx400/Integer vwx4000",fontsize=10,color="white",style="solid",shape="box"];2779 -> 5325[label="",style="solid", color="burlywood", weight=9]; 5325 -> 2941[label="",style="solid", color="burlywood", weight=3]; 2780[label="(vwx3000,vwx3001) == vwx400",fontsize=16,color="burlywood",shape="box"];5326[label="vwx400/(vwx4000,vwx4001)",fontsize=10,color="white",style="solid",shape="box"];2780 -> 5326[label="",style="solid", color="burlywood", weight=9]; 5326 -> 2942[label="",style="solid", color="burlywood", weight=3]; 2781[label="primEqFloat vwx300 vwx400",fontsize=16,color="burlywood",shape="box"];5327[label="vwx300/Float vwx3000 vwx3001",fontsize=10,color="white",style="solid",shape="box"];2781 -> 5327[label="",style="solid", color="burlywood", weight=9]; 5327 -> 2943[label="",style="solid", color="burlywood", weight=3]; 2782[label="primEqInt vwx300 vwx400",fontsize=16,color="burlywood",shape="triangle"];5328[label="vwx300/Pos vwx3000",fontsize=10,color="white",style="solid",shape="box"];2782 -> 5328[label="",style="solid", color="burlywood", weight=9]; 5328 -> 2944[label="",style="solid", color="burlywood", weight=3]; 5329[label="vwx300/Neg vwx3000",fontsize=10,color="white",style="solid",shape="box"];2782 -> 5329[label="",style="solid", color="burlywood", weight=9]; 5329 -> 2945[label="",style="solid", color="burlywood", weight=3]; 2783[label="False == vwx400",fontsize=16,color="burlywood",shape="box"];5330[label="vwx400/False",fontsize=10,color="white",style="solid",shape="box"];2783 -> 5330[label="",style="solid", color="burlywood", weight=9]; 5330 -> 2946[label="",style="solid", color="burlywood", weight=3]; 5331[label="vwx400/True",fontsize=10,color="white",style="solid",shape="box"];2783 -> 5331[label="",style="solid", color="burlywood", weight=9]; 5331 -> 2947[label="",style="solid", color="burlywood", weight=3]; 2784[label="True == vwx400",fontsize=16,color="burlywood",shape="box"];5332[label="vwx400/False",fontsize=10,color="white",style="solid",shape="box"];2784 -> 5332[label="",style="solid", color="burlywood", weight=9]; 5332 -> 2948[label="",style="solid", color="burlywood", weight=3]; 5333[label="vwx400/True",fontsize=10,color="white",style="solid",shape="box"];2784 -> 5333[label="",style="solid", color="burlywood", weight=9]; 5333 -> 2949[label="",style="solid", color="burlywood", weight=3]; 2785[label="Nothing == vwx400",fontsize=16,color="burlywood",shape="box"];5334[label="vwx400/Nothing",fontsize=10,color="white",style="solid",shape="box"];2785 -> 5334[label="",style="solid", color="burlywood", weight=9]; 5334 -> 2950[label="",style="solid", color="burlywood", weight=3]; 5335[label="vwx400/Just vwx4000",fontsize=10,color="white",style="solid",shape="box"];2785 -> 5335[label="",style="solid", color="burlywood", weight=9]; 5335 -> 2951[label="",style="solid", color="burlywood", weight=3]; 2786[label="Just vwx3000 == vwx400",fontsize=16,color="burlywood",shape="box"];5336[label="vwx400/Nothing",fontsize=10,color="white",style="solid",shape="box"];2786 -> 5336[label="",style="solid", color="burlywood", weight=9]; 5336 -> 2952[label="",style="solid", color="burlywood", weight=3]; 5337[label="vwx400/Just vwx4000",fontsize=10,color="white",style="solid",shape="box"];2786 -> 5337[label="",style="solid", color="burlywood", weight=9]; 5337 -> 2953[label="",style="solid", color="burlywood", weight=3]; 2787[label="vwx3000 :% vwx3001 == vwx400",fontsize=16,color="burlywood",shape="box"];5338[label="vwx400/vwx4000 :% vwx4001",fontsize=10,color="white",style="solid",shape="box"];2787 -> 5338[label="",style="solid", color="burlywood", weight=9]; 5338 -> 2954[label="",style="solid", color="burlywood", weight=3]; 2788[label="Left vwx3000 == vwx400",fontsize=16,color="burlywood",shape="box"];5339[label="vwx400/Left vwx4000",fontsize=10,color="white",style="solid",shape="box"];2788 -> 5339[label="",style="solid", color="burlywood", weight=9]; 5339 -> 2955[label="",style="solid", color="burlywood", weight=3]; 5340[label="vwx400/Right vwx4000",fontsize=10,color="white",style="solid",shape="box"];2788 -> 5340[label="",style="solid", color="burlywood", weight=9]; 5340 -> 2956[label="",style="solid", color="burlywood", weight=3]; 2789[label="Right vwx3000 == vwx400",fontsize=16,color="burlywood",shape="box"];5341[label="vwx400/Left vwx4000",fontsize=10,color="white",style="solid",shape="box"];2789 -> 5341[label="",style="solid", color="burlywood", weight=9]; 5341 -> 2957[label="",style="solid", color="burlywood", weight=3]; 5342[label="vwx400/Right vwx4000",fontsize=10,color="white",style="solid",shape="box"];2789 -> 5342[label="",style="solid", color="burlywood", weight=9]; 5342 -> 2958[label="",style="solid", color="burlywood", weight=3]; 2790[label="() == vwx400",fontsize=16,color="burlywood",shape="box"];5343[label="vwx400/()",fontsize=10,color="white",style="solid",shape="box"];2790 -> 5343[label="",style="solid", color="burlywood", weight=9]; 5343 -> 2959[label="",style="solid", color="burlywood", weight=3]; 2791[label="primEqChar vwx300 vwx400",fontsize=16,color="burlywood",shape="box"];5344[label="vwx300/Char vwx3000",fontsize=10,color="white",style="solid",shape="box"];2791 -> 5344[label="",style="solid", color="burlywood", weight=9]; 5344 -> 2960[label="",style="solid", color="burlywood", weight=3]; 2792[label="(vwx3000,vwx3001,vwx3002) == vwx400",fontsize=16,color="burlywood",shape="box"];5345[label="vwx400/(vwx4000,vwx4001,vwx4002)",fontsize=10,color="white",style="solid",shape="box"];2792 -> 5345[label="",style="solid", color="burlywood", weight=9]; 5345 -> 2961[label="",style="solid", color="burlywood", weight=3]; 2793 -> 3066[label="",style="dashed", color="red", weight=0]; 2793[label="compare1 (Just vwx191) (Just vwx192) (Just vwx191 <= Just vwx192)",fontsize=16,color="magenta"];2793 -> 3067[label="",style="dashed", color="magenta", weight=3]; 2793 -> 3068[label="",style="dashed", color="magenta", weight=3]; 2793 -> 3069[label="",style="dashed", color="magenta", weight=3]; 2794[label="EQ",fontsize=16,color="green",shape="box"];2795[label="vwx300",fontsize=16,color="green",shape="box"];2796[label="vwx400",fontsize=16,color="green",shape="box"];2797[label="vwx300",fontsize=16,color="green",shape="box"];2798[label="vwx400",fontsize=16,color="green",shape="box"];2799[label="vwx300",fontsize=16,color="green",shape="box"];2800[label="vwx400",fontsize=16,color="green",shape="box"];2801[label="vwx300",fontsize=16,color="green",shape="box"];2802[label="vwx400",fontsize=16,color="green",shape="box"];2803[label="vwx300",fontsize=16,color="green",shape="box"];2804[label="vwx400",fontsize=16,color="green",shape="box"];2805[label="vwx300",fontsize=16,color="green",shape="box"];2806[label="vwx400",fontsize=16,color="green",shape="box"];2807[label="vwx300",fontsize=16,color="green",shape="box"];2808[label="vwx400",fontsize=16,color="green",shape="box"];2809[label="vwx300",fontsize=16,color="green",shape="box"];2810[label="vwx400",fontsize=16,color="green",shape="box"];2811[label="vwx300",fontsize=16,color="green",shape="box"];2812[label="vwx400",fontsize=16,color="green",shape="box"];2813[label="vwx300",fontsize=16,color="green",shape="box"];2814[label="vwx400",fontsize=16,color="green",shape="box"];2815[label="vwx300",fontsize=16,color="green",shape="box"];2816[label="vwx400",fontsize=16,color="green",shape="box"];2817[label="vwx300",fontsize=16,color="green",shape="box"];2818[label="vwx400",fontsize=16,color="green",shape="box"];2819[label="vwx300",fontsize=16,color="green",shape="box"];2820[label="vwx400",fontsize=16,color="green",shape="box"];2821[label="vwx300",fontsize=16,color="green",shape="box"];2822[label="vwx400",fontsize=16,color="green",shape="box"];2823 -> 3108[label="",style="dashed", color="red", weight=0]; 2823[label="compare1 (Left vwx198) (Left vwx199) (Left vwx198 <= Left vwx199)",fontsize=16,color="magenta"];2823 -> 3109[label="",style="dashed", color="magenta", weight=3]; 2823 -> 3110[label="",style="dashed", color="magenta", weight=3]; 2823 -> 3111[label="",style="dashed", color="magenta", weight=3]; 2824[label="EQ",fontsize=16,color="green",shape="box"];2825[label="LT",fontsize=16,color="green",shape="box"];2826[label="compare0 (Right vwx300) (Left vwx400) otherwise",fontsize=16,color="black",shape="box"];2826 -> 2964[label="",style="solid", color="black", weight=3]; 2827[label="vwx300",fontsize=16,color="green",shape="box"];2828[label="vwx400",fontsize=16,color="green",shape="box"];2829[label="vwx300",fontsize=16,color="green",shape="box"];2830[label="vwx400",fontsize=16,color="green",shape="box"];2831[label="vwx300",fontsize=16,color="green",shape="box"];2832[label="vwx400",fontsize=16,color="green",shape="box"];2833[label="vwx300",fontsize=16,color="green",shape="box"];2834[label="vwx400",fontsize=16,color="green",shape="box"];2835[label="vwx300",fontsize=16,color="green",shape="box"];2836[label="vwx400",fontsize=16,color="green",shape="box"];2837[label="vwx300",fontsize=16,color="green",shape="box"];2838[label="vwx400",fontsize=16,color="green",shape="box"];2839[label="vwx300",fontsize=16,color="green",shape="box"];2840[label="vwx400",fontsize=16,color="green",shape="box"];2841[label="vwx300",fontsize=16,color="green",shape="box"];2842[label="vwx400",fontsize=16,color="green",shape="box"];2843[label="vwx300",fontsize=16,color="green",shape="box"];2844[label="vwx400",fontsize=16,color="green",shape="box"];2845[label="vwx300",fontsize=16,color="green",shape="box"];2846[label="vwx400",fontsize=16,color="green",shape="box"];2847[label="vwx300",fontsize=16,color="green",shape="box"];2848[label="vwx400",fontsize=16,color="green",shape="box"];2849[label="vwx300",fontsize=16,color="green",shape="box"];2850[label="vwx400",fontsize=16,color="green",shape="box"];2851[label="vwx300",fontsize=16,color="green",shape="box"];2852[label="vwx400",fontsize=16,color="green",shape="box"];2853[label="vwx300",fontsize=16,color="green",shape="box"];2854[label="vwx400",fontsize=16,color="green",shape="box"];2855 -> 3120[label="",style="dashed", color="red", weight=0]; 2855[label="compare1 (Right vwx205) (Right vwx206) (Right vwx205 <= Right vwx206)",fontsize=16,color="magenta"];2855 -> 3121[label="",style="dashed", color="magenta", weight=3]; 2855 -> 3122[label="",style="dashed", color="magenta", weight=3]; 2855 -> 3123[label="",style="dashed", color="magenta", weight=3]; 2856[label="EQ",fontsize=16,color="green",shape="box"];3216 -> 2640[label="",style="dashed", color="red", weight=0]; 3216[label="vwx300 == vwx400",fontsize=16,color="magenta"];3216 -> 3266[label="",style="dashed", color="magenta", weight=3]; 3216 -> 3267[label="",style="dashed", color="magenta", weight=3]; 3217 -> 2641[label="",style="dashed", color="red", weight=0]; 3217[label="vwx300 == vwx400",fontsize=16,color="magenta"];3217 -> 3268[label="",style="dashed", color="magenta", weight=3]; 3217 -> 3269[label="",style="dashed", color="magenta", weight=3]; 3218 -> 2642[label="",style="dashed", color="red", weight=0]; 3218[label="vwx300 == vwx400",fontsize=16,color="magenta"];3218 -> 3270[label="",style="dashed", color="magenta", weight=3]; 3218 -> 3271[label="",style="dashed", color="magenta", weight=3]; 3219 -> 2643[label="",style="dashed", color="red", weight=0]; 3219[label="vwx300 == vwx400",fontsize=16,color="magenta"];3219 -> 3272[label="",style="dashed", color="magenta", weight=3]; 3219 -> 3273[label="",style="dashed", color="magenta", weight=3]; 3220 -> 2644[label="",style="dashed", color="red", weight=0]; 3220[label="vwx300 == vwx400",fontsize=16,color="magenta"];3220 -> 3274[label="",style="dashed", color="magenta", weight=3]; 3220 -> 3275[label="",style="dashed", color="magenta", weight=3]; 3221 -> 2645[label="",style="dashed", color="red", weight=0]; 3221[label="vwx300 == vwx400",fontsize=16,color="magenta"];3221 -> 3276[label="",style="dashed", color="magenta", weight=3]; 3221 -> 3277[label="",style="dashed", color="magenta", weight=3]; 3222 -> 2646[label="",style="dashed", color="red", weight=0]; 3222[label="vwx300 == vwx400",fontsize=16,color="magenta"];3222 -> 3278[label="",style="dashed", color="magenta", weight=3]; 3222 -> 3279[label="",style="dashed", color="magenta", weight=3]; 3223 -> 2647[label="",style="dashed", color="red", weight=0]; 3223[label="vwx300 == vwx400",fontsize=16,color="magenta"];3223 -> 3280[label="",style="dashed", color="magenta", weight=3]; 3223 -> 3281[label="",style="dashed", color="magenta", weight=3]; 3224 -> 2648[label="",style="dashed", color="red", weight=0]; 3224[label="vwx300 == vwx400",fontsize=16,color="magenta"];3224 -> 3282[label="",style="dashed", color="magenta", weight=3]; 3224 -> 3283[label="",style="dashed", color="magenta", weight=3]; 3225 -> 2649[label="",style="dashed", color="red", weight=0]; 3225[label="vwx300 == vwx400",fontsize=16,color="magenta"];3225 -> 3284[label="",style="dashed", color="magenta", weight=3]; 3225 -> 3285[label="",style="dashed", color="magenta", weight=3]; 3226 -> 2650[label="",style="dashed", color="red", weight=0]; 3226[label="vwx300 == vwx400",fontsize=16,color="magenta"];3226 -> 3286[label="",style="dashed", color="magenta", weight=3]; 3226 -> 3287[label="",style="dashed", color="magenta", weight=3]; 3227 -> 2651[label="",style="dashed", color="red", weight=0]; 3227[label="vwx300 == vwx400",fontsize=16,color="magenta"];3227 -> 3288[label="",style="dashed", color="magenta", weight=3]; 3227 -> 3289[label="",style="dashed", color="magenta", weight=3]; 3228 -> 2652[label="",style="dashed", color="red", weight=0]; 3228[label="vwx300 == vwx400",fontsize=16,color="magenta"];3228 -> 3290[label="",style="dashed", color="magenta", weight=3]; 3228 -> 3291[label="",style="dashed", color="magenta", weight=3]; 3229 -> 2653[label="",style="dashed", color="red", weight=0]; 3229[label="vwx300 == vwx400",fontsize=16,color="magenta"];3229 -> 3292[label="",style="dashed", color="magenta", weight=3]; 3229 -> 3293[label="",style="dashed", color="magenta", weight=3]; 3230[label="vwx301 == vwx401",fontsize=16,color="blue",shape="box"];5346[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3230 -> 5346[label="",style="solid", color="blue", weight=9]; 5346 -> 3294[label="",style="solid", color="blue", weight=3]; 5347[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3230 -> 5347[label="",style="solid", color="blue", weight=9]; 5347 -> 3295[label="",style="solid", color="blue", weight=3]; 5348[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3230 -> 5348[label="",style="solid", color="blue", weight=9]; 5348 -> 3296[label="",style="solid", color="blue", weight=3]; 5349[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3230 -> 5349[label="",style="solid", color="blue", weight=9]; 5349 -> 3297[label="",style="solid", color="blue", weight=3]; 5350[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3230 -> 5350[label="",style="solid", color="blue", weight=9]; 5350 -> 3298[label="",style="solid", color="blue", weight=3]; 5351[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3230 -> 5351[label="",style="solid", color="blue", weight=9]; 5351 -> 3299[label="",style="solid", color="blue", weight=3]; 5352[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3230 -> 5352[label="",style="solid", color="blue", weight=9]; 5352 -> 3300[label="",style="solid", color="blue", weight=3]; 5353[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3230 -> 5353[label="",style="solid", color="blue", weight=9]; 5353 -> 3301[label="",style="solid", color="blue", weight=3]; 5354[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3230 -> 5354[label="",style="solid", color="blue", weight=9]; 5354 -> 3302[label="",style="solid", color="blue", weight=3]; 5355[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3230 -> 5355[label="",style="solid", color="blue", weight=9]; 5355 -> 3303[label="",style="solid", color="blue", weight=3]; 5356[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3230 -> 5356[label="",style="solid", color="blue", weight=9]; 5356 -> 3304[label="",style="solid", color="blue", weight=3]; 5357[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3230 -> 5357[label="",style="solid", color="blue", weight=9]; 5357 -> 3305[label="",style="solid", color="blue", weight=3]; 5358[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3230 -> 5358[label="",style="solid", color="blue", weight=9]; 5358 -> 3306[label="",style="solid", color="blue", weight=3]; 5359[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3230 -> 5359[label="",style="solid", color="blue", weight=9]; 5359 -> 3307[label="",style="solid", color="blue", weight=3]; 3231[label="vwx302 == vwx402",fontsize=16,color="blue",shape="box"];5360[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3231 -> 5360[label="",style="solid", color="blue", weight=9]; 5360 -> 3308[label="",style="solid", color="blue", weight=3]; 5361[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3231 -> 5361[label="",style="solid", color="blue", weight=9]; 5361 -> 3309[label="",style="solid", color="blue", weight=3]; 5362[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3231 -> 5362[label="",style="solid", color="blue", weight=9]; 5362 -> 3310[label="",style="solid", color="blue", weight=3]; 5363[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3231 -> 5363[label="",style="solid", color="blue", weight=9]; 5363 -> 3311[label="",style="solid", color="blue", weight=3]; 5364[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3231 -> 5364[label="",style="solid", color="blue", weight=9]; 5364 -> 3312[label="",style="solid", color="blue", weight=3]; 5365[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3231 -> 5365[label="",style="solid", color="blue", weight=9]; 5365 -> 3313[label="",style="solid", color="blue", weight=3]; 5366[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3231 -> 5366[label="",style="solid", color="blue", weight=9]; 5366 -> 3314[label="",style="solid", color="blue", weight=3]; 5367[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3231 -> 5367[label="",style="solid", color="blue", weight=9]; 5367 -> 3315[label="",style="solid", color="blue", weight=3]; 5368[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3231 -> 5368[label="",style="solid", color="blue", weight=9]; 5368 -> 3316[label="",style="solid", color="blue", weight=3]; 5369[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3231 -> 5369[label="",style="solid", color="blue", weight=9]; 5369 -> 3317[label="",style="solid", color="blue", weight=3]; 5370[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3231 -> 5370[label="",style="solid", color="blue", weight=9]; 5370 -> 3318[label="",style="solid", color="blue", weight=3]; 5371[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3231 -> 5371[label="",style="solid", color="blue", weight=9]; 5371 -> 3319[label="",style="solid", color="blue", weight=3]; 5372[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3231 -> 5372[label="",style="solid", color="blue", weight=9]; 5372 -> 3320[label="",style="solid", color="blue", weight=3]; 5373[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3231 -> 5373[label="",style="solid", color="blue", weight=9]; 5373 -> 3321[label="",style="solid", color="blue", weight=3]; 3232[label="False && vwx294",fontsize=16,color="black",shape="box"];3232 -> 3322[label="",style="solid", color="black", weight=3]; 3233[label="True && vwx294",fontsize=16,color="black",shape="box"];3233 -> 3323[label="",style="solid", color="black", weight=3]; 3234[label="compare1 (vwx242,vwx243,vwx244) (vwx245,vwx246,vwx247) ((vwx242,vwx243,vwx244) <= (vwx245,vwx246,vwx247))",fontsize=16,color="black",shape="box"];3234 -> 3324[label="",style="solid", color="black", weight=3]; 3235[label="EQ",fontsize=16,color="green",shape="box"];3236 -> 2640[label="",style="dashed", color="red", weight=0]; 3236[label="vwx300 == vwx400",fontsize=16,color="magenta"];3236 -> 3325[label="",style="dashed", color="magenta", weight=3]; 3236 -> 3326[label="",style="dashed", color="magenta", weight=3]; 3237 -> 2641[label="",style="dashed", color="red", weight=0]; 3237[label="vwx300 == vwx400",fontsize=16,color="magenta"];3237 -> 3327[label="",style="dashed", color="magenta", weight=3]; 3237 -> 3328[label="",style="dashed", color="magenta", weight=3]; 3238 -> 2642[label="",style="dashed", color="red", weight=0]; 3238[label="vwx300 == vwx400",fontsize=16,color="magenta"];3238 -> 3329[label="",style="dashed", color="magenta", weight=3]; 3238 -> 3330[label="",style="dashed", color="magenta", weight=3]; 3239 -> 2643[label="",style="dashed", color="red", weight=0]; 3239[label="vwx300 == vwx400",fontsize=16,color="magenta"];3239 -> 3331[label="",style="dashed", color="magenta", weight=3]; 3239 -> 3332[label="",style="dashed", color="magenta", weight=3]; 3240 -> 2644[label="",style="dashed", color="red", weight=0]; 3240[label="vwx300 == vwx400",fontsize=16,color="magenta"];3240 -> 3333[label="",style="dashed", color="magenta", weight=3]; 3240 -> 3334[label="",style="dashed", color="magenta", weight=3]; 3241 -> 2645[label="",style="dashed", color="red", weight=0]; 3241[label="vwx300 == vwx400",fontsize=16,color="magenta"];3241 -> 3335[label="",style="dashed", color="magenta", weight=3]; 3241 -> 3336[label="",style="dashed", color="magenta", weight=3]; 3242 -> 2646[label="",style="dashed", color="red", weight=0]; 3242[label="vwx300 == vwx400",fontsize=16,color="magenta"];3242 -> 3337[label="",style="dashed", color="magenta", weight=3]; 3242 -> 3338[label="",style="dashed", color="magenta", weight=3]; 3243 -> 2647[label="",style="dashed", color="red", weight=0]; 3243[label="vwx300 == vwx400",fontsize=16,color="magenta"];3243 -> 3339[label="",style="dashed", color="magenta", weight=3]; 3243 -> 3340[label="",style="dashed", color="magenta", weight=3]; 3244 -> 2648[label="",style="dashed", color="red", weight=0]; 3244[label="vwx300 == vwx400",fontsize=16,color="magenta"];3244 -> 3341[label="",style="dashed", color="magenta", weight=3]; 3244 -> 3342[label="",style="dashed", color="magenta", weight=3]; 3245 -> 2649[label="",style="dashed", color="red", weight=0]; 3245[label="vwx300 == vwx400",fontsize=16,color="magenta"];3245 -> 3343[label="",style="dashed", color="magenta", weight=3]; 3245 -> 3344[label="",style="dashed", color="magenta", weight=3]; 3246 -> 2650[label="",style="dashed", color="red", weight=0]; 3246[label="vwx300 == vwx400",fontsize=16,color="magenta"];3246 -> 3345[label="",style="dashed", color="magenta", weight=3]; 3246 -> 3346[label="",style="dashed", color="magenta", weight=3]; 3247 -> 2651[label="",style="dashed", color="red", weight=0]; 3247[label="vwx300 == vwx400",fontsize=16,color="magenta"];3247 -> 3347[label="",style="dashed", color="magenta", weight=3]; 3247 -> 3348[label="",style="dashed", color="magenta", weight=3]; 3248 -> 2652[label="",style="dashed", color="red", weight=0]; 3248[label="vwx300 == vwx400",fontsize=16,color="magenta"];3248 -> 3349[label="",style="dashed", color="magenta", weight=3]; 3248 -> 3350[label="",style="dashed", color="magenta", weight=3]; 3249 -> 2653[label="",style="dashed", color="red", weight=0]; 3249[label="vwx300 == vwx400",fontsize=16,color="magenta"];3249 -> 3351[label="",style="dashed", color="magenta", weight=3]; 3249 -> 3352[label="",style="dashed", color="magenta", weight=3]; 3250 -> 2640[label="",style="dashed", color="red", weight=0]; 3250[label="vwx301 == vwx401",fontsize=16,color="magenta"];3250 -> 3353[label="",style="dashed", color="magenta", weight=3]; 3250 -> 3354[label="",style="dashed", color="magenta", weight=3]; 3251 -> 2641[label="",style="dashed", color="red", weight=0]; 3251[label="vwx301 == vwx401",fontsize=16,color="magenta"];3251 -> 3355[label="",style="dashed", color="magenta", weight=3]; 3251 -> 3356[label="",style="dashed", color="magenta", weight=3]; 3252 -> 2642[label="",style="dashed", color="red", weight=0]; 3252[label="vwx301 == vwx401",fontsize=16,color="magenta"];3252 -> 3357[label="",style="dashed", color="magenta", weight=3]; 3252 -> 3358[label="",style="dashed", color="magenta", weight=3]; 3253 -> 2643[label="",style="dashed", color="red", weight=0]; 3253[label="vwx301 == vwx401",fontsize=16,color="magenta"];3253 -> 3359[label="",style="dashed", color="magenta", weight=3]; 3253 -> 3360[label="",style="dashed", color="magenta", weight=3]; 3254 -> 2644[label="",style="dashed", color="red", weight=0]; 3254[label="vwx301 == vwx401",fontsize=16,color="magenta"];3254 -> 3361[label="",style="dashed", color="magenta", weight=3]; 3254 -> 3362[label="",style="dashed", color="magenta", weight=3]; 3255 -> 2645[label="",style="dashed", color="red", weight=0]; 3255[label="vwx301 == vwx401",fontsize=16,color="magenta"];3255 -> 3363[label="",style="dashed", color="magenta", weight=3]; 3255 -> 3364[label="",style="dashed", color="magenta", weight=3]; 3256 -> 2646[label="",style="dashed", color="red", weight=0]; 3256[label="vwx301 == vwx401",fontsize=16,color="magenta"];3256 -> 3365[label="",style="dashed", color="magenta", weight=3]; 3256 -> 3366[label="",style="dashed", color="magenta", weight=3]; 3257 -> 2647[label="",style="dashed", color="red", weight=0]; 3257[label="vwx301 == vwx401",fontsize=16,color="magenta"];3257 -> 3367[label="",style="dashed", color="magenta", weight=3]; 3257 -> 3368[label="",style="dashed", color="magenta", weight=3]; 3258 -> 2648[label="",style="dashed", color="red", weight=0]; 3258[label="vwx301 == vwx401",fontsize=16,color="magenta"];3258 -> 3369[label="",style="dashed", color="magenta", weight=3]; 3258 -> 3370[label="",style="dashed", color="magenta", weight=3]; 3259 -> 2649[label="",style="dashed", color="red", weight=0]; 3259[label="vwx301 == vwx401",fontsize=16,color="magenta"];3259 -> 3371[label="",style="dashed", color="magenta", weight=3]; 3259 -> 3372[label="",style="dashed", color="magenta", weight=3]; 3260 -> 2650[label="",style="dashed", color="red", weight=0]; 3260[label="vwx301 == vwx401",fontsize=16,color="magenta"];3260 -> 3373[label="",style="dashed", color="magenta", weight=3]; 3260 -> 3374[label="",style="dashed", color="magenta", weight=3]; 3261 -> 2651[label="",style="dashed", color="red", weight=0]; 3261[label="vwx301 == vwx401",fontsize=16,color="magenta"];3261 -> 3375[label="",style="dashed", color="magenta", weight=3]; 3261 -> 3376[label="",style="dashed", color="magenta", weight=3]; 3262 -> 2652[label="",style="dashed", color="red", weight=0]; 3262[label="vwx301 == vwx401",fontsize=16,color="magenta"];3262 -> 3377[label="",style="dashed", color="magenta", weight=3]; 3262 -> 3378[label="",style="dashed", color="magenta", weight=3]; 3263 -> 2653[label="",style="dashed", color="red", weight=0]; 3263[label="vwx301 == vwx401",fontsize=16,color="magenta"];3263 -> 3379[label="",style="dashed", color="magenta", weight=3]; 3263 -> 3380[label="",style="dashed", color="magenta", weight=3]; 3073[label="compare1 (vwx255,vwx256) (vwx257,vwx258) ((vwx255,vwx256) <= (vwx257,vwx258))",fontsize=16,color="black",shape="box"];3073 -> 3115[label="",style="solid", color="black", weight=3]; 3074[label="EQ",fontsize=16,color="green",shape="box"];2917[label="Integer (primMulInt vwx3000 vwx4010)",fontsize=16,color="green",shape="box"];2917 -> 3019[label="",style="dashed", color="green", weight=3]; 2918[label="primMulInt (Pos vwx3000) (Pos vwx4010)",fontsize=16,color="black",shape="box"];2918 -> 3020[label="",style="solid", color="black", weight=3]; 2919[label="primMulInt (Pos vwx3000) (Neg vwx4010)",fontsize=16,color="black",shape="box"];2919 -> 3021[label="",style="solid", color="black", weight=3]; 2920[label="primMulInt (Neg vwx3000) (Pos vwx4010)",fontsize=16,color="black",shape="box"];2920 -> 3022[label="",style="solid", color="black", weight=3]; 2921[label="primMulInt (Neg vwx3000) (Neg vwx4010)",fontsize=16,color="black",shape="box"];2921 -> 3023[label="",style="solid", color="black", weight=3]; 2922[label="compare0 EQ LT True",fontsize=16,color="black",shape="box"];2922 -> 3024[label="",style="solid", color="black", weight=3]; 2923[label="compare0 GT LT True",fontsize=16,color="black",shape="box"];2923 -> 3025[label="",style="solid", color="black", weight=3]; 2924[label="compare0 GT EQ True",fontsize=16,color="black",shape="box"];2924 -> 3026[label="",style="solid", color="black", weight=3]; 2925[label="compare0 True False True",fontsize=16,color="black",shape="box"];2925 -> 3027[label="",style="solid", color="black", weight=3]; 2926[label="compare0 (Just vwx300) Nothing True",fontsize=16,color="black",shape="box"];2926 -> 3028[label="",style="solid", color="black", weight=3]; 2927[label="vwx3000 : vwx3001 == vwx4000 : vwx4001",fontsize=16,color="black",shape="box"];2927 -> 3029[label="",style="solid", color="black", weight=3]; 2928[label="vwx3000 : vwx3001 == []",fontsize=16,color="black",shape="box"];2928 -> 3030[label="",style="solid", color="black", weight=3]; 2929[label="[] == vwx4000 : vwx4001",fontsize=16,color="black",shape="box"];2929 -> 3031[label="",style="solid", color="black", weight=3]; 2930[label="[] == []",fontsize=16,color="black",shape="box"];2930 -> 3032[label="",style="solid", color="black", weight=3]; 2931[label="LT == LT",fontsize=16,color="black",shape="box"];2931 -> 3033[label="",style="solid", color="black", weight=3]; 2932[label="LT == EQ",fontsize=16,color="black",shape="box"];2932 -> 3034[label="",style="solid", color="black", weight=3]; 2933[label="LT == GT",fontsize=16,color="black",shape="box"];2933 -> 3035[label="",style="solid", color="black", weight=3]; 2934[label="EQ == LT",fontsize=16,color="black",shape="box"];2934 -> 3036[label="",style="solid", color="black", weight=3]; 2935[label="EQ == EQ",fontsize=16,color="black",shape="box"];2935 -> 3037[label="",style="solid", color="black", weight=3]; 2936[label="EQ == GT",fontsize=16,color="black",shape="box"];2936 -> 3038[label="",style="solid", color="black", weight=3]; 2937[label="GT == LT",fontsize=16,color="black",shape="box"];2937 -> 3039[label="",style="solid", color="black", weight=3]; 2938[label="GT == EQ",fontsize=16,color="black",shape="box"];2938 -> 3040[label="",style="solid", color="black", weight=3]; 2939[label="GT == GT",fontsize=16,color="black",shape="box"];2939 -> 3041[label="",style="solid", color="black", weight=3]; 2940[label="primEqDouble (Double vwx3000 vwx3001) vwx400",fontsize=16,color="burlywood",shape="box"];5374[label="vwx400/Double vwx4000 vwx4001",fontsize=10,color="white",style="solid",shape="box"];2940 -> 5374[label="",style="solid", color="burlywood", weight=9]; 5374 -> 3042[label="",style="solid", color="burlywood", weight=3]; 2941[label="Integer vwx3000 == Integer vwx4000",fontsize=16,color="black",shape="box"];2941 -> 3043[label="",style="solid", color="black", weight=3]; 2942[label="(vwx3000,vwx3001) == (vwx4000,vwx4001)",fontsize=16,color="black",shape="box"];2942 -> 3044[label="",style="solid", color="black", weight=3]; 2943[label="primEqFloat (Float vwx3000 vwx3001) vwx400",fontsize=16,color="burlywood",shape="box"];5375[label="vwx400/Float vwx4000 vwx4001",fontsize=10,color="white",style="solid",shape="box"];2943 -> 5375[label="",style="solid", color="burlywood", weight=9]; 5375 -> 3045[label="",style="solid", color="burlywood", weight=3]; 2944[label="primEqInt (Pos vwx3000) vwx400",fontsize=16,color="burlywood",shape="box"];5376[label="vwx3000/Succ vwx30000",fontsize=10,color="white",style="solid",shape="box"];2944 -> 5376[label="",style="solid", color="burlywood", weight=9]; 5376 -> 3046[label="",style="solid", color="burlywood", weight=3]; 5377[label="vwx3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2944 -> 5377[label="",style="solid", color="burlywood", weight=9]; 5377 -> 3047[label="",style="solid", color="burlywood", weight=3]; 2945[label="primEqInt (Neg vwx3000) vwx400",fontsize=16,color="burlywood",shape="box"];5378[label="vwx3000/Succ vwx30000",fontsize=10,color="white",style="solid",shape="box"];2945 -> 5378[label="",style="solid", color="burlywood", weight=9]; 5378 -> 3048[label="",style="solid", color="burlywood", weight=3]; 5379[label="vwx3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2945 -> 5379[label="",style="solid", color="burlywood", weight=9]; 5379 -> 3049[label="",style="solid", color="burlywood", weight=3]; 2946[label="False == False",fontsize=16,color="black",shape="box"];2946 -> 3050[label="",style="solid", color="black", weight=3]; 2947[label="False == True",fontsize=16,color="black",shape="box"];2947 -> 3051[label="",style="solid", color="black", weight=3]; 2948[label="True == False",fontsize=16,color="black",shape="box"];2948 -> 3052[label="",style="solid", color="black", weight=3]; 2949[label="True == True",fontsize=16,color="black",shape="box"];2949 -> 3053[label="",style="solid", color="black", weight=3]; 2950[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];2950 -> 3054[label="",style="solid", color="black", weight=3]; 2951[label="Nothing == Just vwx4000",fontsize=16,color="black",shape="box"];2951 -> 3055[label="",style="solid", color="black", weight=3]; 2952[label="Just vwx3000 == Nothing",fontsize=16,color="black",shape="box"];2952 -> 3056[label="",style="solid", color="black", weight=3]; 2953[label="Just vwx3000 == Just vwx4000",fontsize=16,color="black",shape="box"];2953 -> 3057[label="",style="solid", color="black", weight=3]; 2954[label="vwx3000 :% vwx3001 == vwx4000 :% vwx4001",fontsize=16,color="black",shape="box"];2954 -> 3058[label="",style="solid", color="black", weight=3]; 2955[label="Left vwx3000 == Left vwx4000",fontsize=16,color="black",shape="box"];2955 -> 3059[label="",style="solid", color="black", weight=3]; 2956[label="Left vwx3000 == Right vwx4000",fontsize=16,color="black",shape="box"];2956 -> 3060[label="",style="solid", color="black", weight=3]; 2957[label="Right vwx3000 == Left vwx4000",fontsize=16,color="black",shape="box"];2957 -> 3061[label="",style="solid", color="black", weight=3]; 2958[label="Right vwx3000 == Right vwx4000",fontsize=16,color="black",shape="box"];2958 -> 3062[label="",style="solid", color="black", weight=3]; 2959[label="() == ()",fontsize=16,color="black",shape="box"];2959 -> 3063[label="",style="solid", color="black", weight=3]; 2960[label="primEqChar (Char vwx3000) vwx400",fontsize=16,color="burlywood",shape="box"];5380[label="vwx400/Char vwx4000",fontsize=10,color="white",style="solid",shape="box"];2960 -> 5380[label="",style="solid", color="burlywood", weight=9]; 5380 -> 3064[label="",style="solid", color="burlywood", weight=3]; 2961[label="(vwx3000,vwx3001,vwx3002) == (vwx4000,vwx4001,vwx4002)",fontsize=16,color="black",shape="box"];2961 -> 3065[label="",style="solid", color="black", weight=3]; 3067[label="vwx191",fontsize=16,color="green",shape="box"];3068[label="Just vwx191 <= Just vwx192",fontsize=16,color="black",shape="box"];3068 -> 3105[label="",style="solid", color="black", weight=3]; 3069[label="vwx192",fontsize=16,color="green",shape="box"];3066[label="compare1 (Just vwx271) (Just vwx272) vwx273",fontsize=16,color="burlywood",shape="triangle"];5381[label="vwx273/False",fontsize=10,color="white",style="solid",shape="box"];3066 -> 5381[label="",style="solid", color="burlywood", weight=9]; 5381 -> 3106[label="",style="solid", color="burlywood", weight=3]; 5382[label="vwx273/True",fontsize=10,color="white",style="solid",shape="box"];3066 -> 5382[label="",style="solid", color="burlywood", weight=9]; 5382 -> 3107[label="",style="solid", color="burlywood", weight=3]; 3109[label="Left vwx198 <= Left vwx199",fontsize=16,color="black",shape="box"];3109 -> 3116[label="",style="solid", color="black", weight=3]; 3110[label="vwx199",fontsize=16,color="green",shape="box"];3111[label="vwx198",fontsize=16,color="green",shape="box"];3108[label="compare1 (Left vwx278) (Left vwx279) vwx280",fontsize=16,color="burlywood",shape="triangle"];5383[label="vwx280/False",fontsize=10,color="white",style="solid",shape="box"];3108 -> 5383[label="",style="solid", color="burlywood", weight=9]; 5383 -> 3117[label="",style="solid", color="burlywood", weight=3]; 5384[label="vwx280/True",fontsize=10,color="white",style="solid",shape="box"];3108 -> 5384[label="",style="solid", color="burlywood", weight=9]; 5384 -> 3118[label="",style="solid", color="burlywood", weight=3]; 2964[label="compare0 (Right vwx300) (Left vwx400) True",fontsize=16,color="black",shape="box"];2964 -> 3119[label="",style="solid", color="black", weight=3]; 3121[label="Right vwx205 <= Right vwx206",fontsize=16,color="black",shape="box"];3121 -> 3127[label="",style="solid", color="black", weight=3]; 3122[label="vwx205",fontsize=16,color="green",shape="box"];3123[label="vwx206",fontsize=16,color="green",shape="box"];3120[label="compare1 (Right vwx285) (Right vwx286) vwx287",fontsize=16,color="burlywood",shape="triangle"];5385[label="vwx287/False",fontsize=10,color="white",style="solid",shape="box"];3120 -> 5385[label="",style="solid", color="burlywood", weight=9]; 5385 -> 3128[label="",style="solid", color="burlywood", weight=3]; 5386[label="vwx287/True",fontsize=10,color="white",style="solid",shape="box"];3120 -> 5386[label="",style="solid", color="burlywood", weight=9]; 5386 -> 3129[label="",style="solid", color="burlywood", weight=3]; 3266[label="vwx300",fontsize=16,color="green",shape="box"];3267[label="vwx400",fontsize=16,color="green",shape="box"];3268[label="vwx300",fontsize=16,color="green",shape="box"];3269[label="vwx400",fontsize=16,color="green",shape="box"];3270[label="vwx300",fontsize=16,color="green",shape="box"];3271[label="vwx400",fontsize=16,color="green",shape="box"];3272[label="vwx300",fontsize=16,color="green",shape="box"];3273[label="vwx400",fontsize=16,color="green",shape="box"];3274[label="vwx300",fontsize=16,color="green",shape="box"];3275[label="vwx400",fontsize=16,color="green",shape="box"];3276[label="vwx300",fontsize=16,color="green",shape="box"];3277[label="vwx400",fontsize=16,color="green",shape="box"];3278[label="vwx300",fontsize=16,color="green",shape="box"];3279[label="vwx400",fontsize=16,color="green",shape="box"];3280[label="vwx300",fontsize=16,color="green",shape="box"];3281[label="vwx400",fontsize=16,color="green",shape="box"];3282[label="vwx300",fontsize=16,color="green",shape="box"];3283[label="vwx400",fontsize=16,color="green",shape="box"];3284[label="vwx300",fontsize=16,color="green",shape="box"];3285[label="vwx400",fontsize=16,color="green",shape="box"];3286[label="vwx300",fontsize=16,color="green",shape="box"];3287[label="vwx400",fontsize=16,color="green",shape="box"];3288[label="vwx300",fontsize=16,color="green",shape="box"];3289[label="vwx400",fontsize=16,color="green",shape="box"];3290[label="vwx300",fontsize=16,color="green",shape="box"];3291[label="vwx400",fontsize=16,color="green",shape="box"];3292[label="vwx300",fontsize=16,color="green",shape="box"];3293[label="vwx400",fontsize=16,color="green",shape="box"];3294 -> 2640[label="",style="dashed", color="red", weight=0]; 3294[label="vwx301 == vwx401",fontsize=16,color="magenta"];3294 -> 3505[label="",style="dashed", color="magenta", weight=3]; 3294 -> 3506[label="",style="dashed", color="magenta", weight=3]; 3295 -> 2641[label="",style="dashed", color="red", weight=0]; 3295[label="vwx301 == vwx401",fontsize=16,color="magenta"];3295 -> 3507[label="",style="dashed", color="magenta", weight=3]; 3295 -> 3508[label="",style="dashed", color="magenta", weight=3]; 3296 -> 2642[label="",style="dashed", color="red", weight=0]; 3296[label="vwx301 == vwx401",fontsize=16,color="magenta"];3296 -> 3509[label="",style="dashed", color="magenta", weight=3]; 3296 -> 3510[label="",style="dashed", color="magenta", weight=3]; 3297 -> 2643[label="",style="dashed", color="red", weight=0]; 3297[label="vwx301 == vwx401",fontsize=16,color="magenta"];3297 -> 3511[label="",style="dashed", color="magenta", weight=3]; 3297 -> 3512[label="",style="dashed", color="magenta", weight=3]; 3298 -> 2644[label="",style="dashed", color="red", weight=0]; 3298[label="vwx301 == vwx401",fontsize=16,color="magenta"];3298 -> 3513[label="",style="dashed", color="magenta", weight=3]; 3298 -> 3514[label="",style="dashed", color="magenta", weight=3]; 3299 -> 2645[label="",style="dashed", color="red", weight=0]; 3299[label="vwx301 == vwx401",fontsize=16,color="magenta"];3299 -> 3515[label="",style="dashed", color="magenta", weight=3]; 3299 -> 3516[label="",style="dashed", color="magenta", weight=3]; 3300 -> 2646[label="",style="dashed", color="red", weight=0]; 3300[label="vwx301 == vwx401",fontsize=16,color="magenta"];3300 -> 3517[label="",style="dashed", color="magenta", weight=3]; 3300 -> 3518[label="",style="dashed", color="magenta", weight=3]; 3301 -> 2647[label="",style="dashed", color="red", weight=0]; 3301[label="vwx301 == vwx401",fontsize=16,color="magenta"];3301 -> 3519[label="",style="dashed", color="magenta", weight=3]; 3301 -> 3520[label="",style="dashed", color="magenta", weight=3]; 3302 -> 2648[label="",style="dashed", color="red", weight=0]; 3302[label="vwx301 == vwx401",fontsize=16,color="magenta"];3302 -> 3521[label="",style="dashed", color="magenta", weight=3]; 3302 -> 3522[label="",style="dashed", color="magenta", weight=3]; 3303 -> 2649[label="",style="dashed", color="red", weight=0]; 3303[label="vwx301 == vwx401",fontsize=16,color="magenta"];3303 -> 3523[label="",style="dashed", color="magenta", weight=3]; 3303 -> 3524[label="",style="dashed", color="magenta", weight=3]; 3304 -> 2650[label="",style="dashed", color="red", weight=0]; 3304[label="vwx301 == vwx401",fontsize=16,color="magenta"];3304 -> 3525[label="",style="dashed", color="magenta", weight=3]; 3304 -> 3526[label="",style="dashed", color="magenta", weight=3]; 3305 -> 2651[label="",style="dashed", color="red", weight=0]; 3305[label="vwx301 == vwx401",fontsize=16,color="magenta"];3305 -> 3527[label="",style="dashed", color="magenta", weight=3]; 3305 -> 3528[label="",style="dashed", color="magenta", weight=3]; 3306 -> 2652[label="",style="dashed", color="red", weight=0]; 3306[label="vwx301 == vwx401",fontsize=16,color="magenta"];3306 -> 3529[label="",style="dashed", color="magenta", weight=3]; 3306 -> 3530[label="",style="dashed", color="magenta", weight=3]; 3307 -> 2653[label="",style="dashed", color="red", weight=0]; 3307[label="vwx301 == vwx401",fontsize=16,color="magenta"];3307 -> 3531[label="",style="dashed", color="magenta", weight=3]; 3307 -> 3532[label="",style="dashed", color="magenta", weight=3]; 3308 -> 2640[label="",style="dashed", color="red", weight=0]; 3308[label="vwx302 == vwx402",fontsize=16,color="magenta"];3308 -> 3533[label="",style="dashed", color="magenta", weight=3]; 3308 -> 3534[label="",style="dashed", color="magenta", weight=3]; 3309 -> 2641[label="",style="dashed", color="red", weight=0]; 3309[label="vwx302 == vwx402",fontsize=16,color="magenta"];3309 -> 3535[label="",style="dashed", color="magenta", weight=3]; 3309 -> 3536[label="",style="dashed", color="magenta", weight=3]; 3310 -> 2642[label="",style="dashed", color="red", weight=0]; 3310[label="vwx302 == vwx402",fontsize=16,color="magenta"];3310 -> 3537[label="",style="dashed", color="magenta", weight=3]; 3310 -> 3538[label="",style="dashed", color="magenta", weight=3]; 3311 -> 2643[label="",style="dashed", color="red", weight=0]; 3311[label="vwx302 == vwx402",fontsize=16,color="magenta"];3311 -> 3539[label="",style="dashed", color="magenta", weight=3]; 3311 -> 3540[label="",style="dashed", color="magenta", weight=3]; 3312 -> 2644[label="",style="dashed", color="red", weight=0]; 3312[label="vwx302 == vwx402",fontsize=16,color="magenta"];3312 -> 3541[label="",style="dashed", color="magenta", weight=3]; 3312 -> 3542[label="",style="dashed", color="magenta", weight=3]; 3313 -> 2645[label="",style="dashed", color="red", weight=0]; 3313[label="vwx302 == vwx402",fontsize=16,color="magenta"];3313 -> 3543[label="",style="dashed", color="magenta", weight=3]; 3313 -> 3544[label="",style="dashed", color="magenta", weight=3]; 3314 -> 2646[label="",style="dashed", color="red", weight=0]; 3314[label="vwx302 == vwx402",fontsize=16,color="magenta"];3314 -> 3545[label="",style="dashed", color="magenta", weight=3]; 3314 -> 3546[label="",style="dashed", color="magenta", weight=3]; 3315 -> 2647[label="",style="dashed", color="red", weight=0]; 3315[label="vwx302 == vwx402",fontsize=16,color="magenta"];3315 -> 3547[label="",style="dashed", color="magenta", weight=3]; 3315 -> 3548[label="",style="dashed", color="magenta", weight=3]; 3316 -> 2648[label="",style="dashed", color="red", weight=0]; 3316[label="vwx302 == vwx402",fontsize=16,color="magenta"];3316 -> 3549[label="",style="dashed", color="magenta", weight=3]; 3316 -> 3550[label="",style="dashed", color="magenta", weight=3]; 3317 -> 2649[label="",style="dashed", color="red", weight=0]; 3317[label="vwx302 == vwx402",fontsize=16,color="magenta"];3317 -> 3551[label="",style="dashed", color="magenta", weight=3]; 3317 -> 3552[label="",style="dashed", color="magenta", weight=3]; 3318 -> 2650[label="",style="dashed", color="red", weight=0]; 3318[label="vwx302 == vwx402",fontsize=16,color="magenta"];3318 -> 3553[label="",style="dashed", color="magenta", weight=3]; 3318 -> 3554[label="",style="dashed", color="magenta", weight=3]; 3319 -> 2651[label="",style="dashed", color="red", weight=0]; 3319[label="vwx302 == vwx402",fontsize=16,color="magenta"];3319 -> 3555[label="",style="dashed", color="magenta", weight=3]; 3319 -> 3556[label="",style="dashed", color="magenta", weight=3]; 3320 -> 2652[label="",style="dashed", color="red", weight=0]; 3320[label="vwx302 == vwx402",fontsize=16,color="magenta"];3320 -> 3557[label="",style="dashed", color="magenta", weight=3]; 3320 -> 3558[label="",style="dashed", color="magenta", weight=3]; 3321 -> 2653[label="",style="dashed", color="red", weight=0]; 3321[label="vwx302 == vwx402",fontsize=16,color="magenta"];3321 -> 3559[label="",style="dashed", color="magenta", weight=3]; 3321 -> 3560[label="",style="dashed", color="magenta", weight=3]; 3322[label="False",fontsize=16,color="green",shape="box"];3323[label="vwx294",fontsize=16,color="green",shape="box"];3324 -> 3565[label="",style="dashed", color="red", weight=0]; 3324[label="compare1 (vwx242,vwx243,vwx244) (vwx245,vwx246,vwx247) (vwx242 < vwx245 || vwx242 == vwx245 && (vwx243 < vwx246 || vwx243 == vwx246 && vwx244 <= vwx247))",fontsize=16,color="magenta"];3324 -> 3566[label="",style="dashed", color="magenta", weight=3]; 3324 -> 3567[label="",style="dashed", color="magenta", weight=3]; 3324 -> 3568[label="",style="dashed", color="magenta", weight=3]; 3324 -> 3569[label="",style="dashed", color="magenta", weight=3]; 3324 -> 3570[label="",style="dashed", color="magenta", weight=3]; 3324 -> 3571[label="",style="dashed", color="magenta", weight=3]; 3324 -> 3572[label="",style="dashed", color="magenta", weight=3]; 3324 -> 3573[label="",style="dashed", color="magenta", weight=3]; 3325[label="vwx300",fontsize=16,color="green",shape="box"];3326[label="vwx400",fontsize=16,color="green",shape="box"];3327[label="vwx300",fontsize=16,color="green",shape="box"];3328[label="vwx400",fontsize=16,color="green",shape="box"];3329[label="vwx300",fontsize=16,color="green",shape="box"];3330[label="vwx400",fontsize=16,color="green",shape="box"];3331[label="vwx300",fontsize=16,color="green",shape="box"];3332[label="vwx400",fontsize=16,color="green",shape="box"];3333[label="vwx300",fontsize=16,color="green",shape="box"];3334[label="vwx400",fontsize=16,color="green",shape="box"];3335[label="vwx300",fontsize=16,color="green",shape="box"];3336[label="vwx400",fontsize=16,color="green",shape="box"];3337[label="vwx300",fontsize=16,color="green",shape="box"];3338[label="vwx400",fontsize=16,color="green",shape="box"];3339[label="vwx300",fontsize=16,color="green",shape="box"];3340[label="vwx400",fontsize=16,color="green",shape="box"];3341[label="vwx300",fontsize=16,color="green",shape="box"];3342[label="vwx400",fontsize=16,color="green",shape="box"];3343[label="vwx300",fontsize=16,color="green",shape="box"];3344[label="vwx400",fontsize=16,color="green",shape="box"];3345[label="vwx300",fontsize=16,color="green",shape="box"];3346[label="vwx400",fontsize=16,color="green",shape="box"];3347[label="vwx300",fontsize=16,color="green",shape="box"];3348[label="vwx400",fontsize=16,color="green",shape="box"];3349[label="vwx300",fontsize=16,color="green",shape="box"];3350[label="vwx400",fontsize=16,color="green",shape="box"];3351[label="vwx300",fontsize=16,color="green",shape="box"];3352[label="vwx400",fontsize=16,color="green",shape="box"];3353[label="vwx301",fontsize=16,color="green",shape="box"];3354[label="vwx401",fontsize=16,color="green",shape="box"];3355[label="vwx301",fontsize=16,color="green",shape="box"];3356[label="vwx401",fontsize=16,color="green",shape="box"];3357[label="vwx301",fontsize=16,color="green",shape="box"];3358[label="vwx401",fontsize=16,color="green",shape="box"];3359[label="vwx301",fontsize=16,color="green",shape="box"];3360[label="vwx401",fontsize=16,color="green",shape="box"];3361[label="vwx301",fontsize=16,color="green",shape="box"];3362[label="vwx401",fontsize=16,color="green",shape="box"];3363[label="vwx301",fontsize=16,color="green",shape="box"];3364[label="vwx401",fontsize=16,color="green",shape="box"];3365[label="vwx301",fontsize=16,color="green",shape="box"];3366[label="vwx401",fontsize=16,color="green",shape="box"];3367[label="vwx301",fontsize=16,color="green",shape="box"];3368[label="vwx401",fontsize=16,color="green",shape="box"];3369[label="vwx301",fontsize=16,color="green",shape="box"];3370[label="vwx401",fontsize=16,color="green",shape="box"];3371[label="vwx301",fontsize=16,color="green",shape="box"];3372[label="vwx401",fontsize=16,color="green",shape="box"];3373[label="vwx301",fontsize=16,color="green",shape="box"];3374[label="vwx401",fontsize=16,color="green",shape="box"];3375[label="vwx301",fontsize=16,color="green",shape="box"];3376[label="vwx401",fontsize=16,color="green",shape="box"];3377[label="vwx301",fontsize=16,color="green",shape="box"];3378[label="vwx401",fontsize=16,color="green",shape="box"];3379[label="vwx301",fontsize=16,color="green",shape="box"];3380[label="vwx401",fontsize=16,color="green",shape="box"];3115 -> 3492[label="",style="dashed", color="red", weight=0]; 3115[label="compare1 (vwx255,vwx256) (vwx257,vwx258) (vwx255 < vwx257 || vwx255 == vwx257 && vwx256 <= vwx258)",fontsize=16,color="magenta"];3115 -> 3493[label="",style="dashed", color="magenta", weight=3]; 3115 -> 3494[label="",style="dashed", color="magenta", weight=3]; 3115 -> 3495[label="",style="dashed", color="magenta", weight=3]; 3115 -> 3496[label="",style="dashed", color="magenta", weight=3]; 3115 -> 3497[label="",style="dashed", color="magenta", weight=3]; 3115 -> 3498[label="",style="dashed", color="magenta", weight=3]; 3019 -> 2607[label="",style="dashed", color="red", weight=0]; 3019[label="primMulInt vwx3000 vwx4010",fontsize=16,color="magenta"];3019 -> 3381[label="",style="dashed", color="magenta", weight=3]; 3019 -> 3382[label="",style="dashed", color="magenta", weight=3]; 3020[label="Pos (primMulNat vwx3000 vwx4010)",fontsize=16,color="green",shape="box"];3020 -> 3383[label="",style="dashed", color="green", weight=3]; 3021[label="Neg (primMulNat vwx3000 vwx4010)",fontsize=16,color="green",shape="box"];3021 -> 3384[label="",style="dashed", color="green", weight=3]; 3022[label="Neg (primMulNat vwx3000 vwx4010)",fontsize=16,color="green",shape="box"];3022 -> 3385[label="",style="dashed", color="green", weight=3]; 3023[label="Pos (primMulNat vwx3000 vwx4010)",fontsize=16,color="green",shape="box"];3023 -> 3386[label="",style="dashed", color="green", weight=3]; 3024[label="GT",fontsize=16,color="green",shape="box"];3025[label="GT",fontsize=16,color="green",shape="box"];3026[label="GT",fontsize=16,color="green",shape="box"];3027[label="GT",fontsize=16,color="green",shape="box"];3028[label="GT",fontsize=16,color="green",shape="box"];3029 -> 3197[label="",style="dashed", color="red", weight=0]; 3029[label="vwx3000 == vwx4000 && vwx3001 == vwx4001",fontsize=16,color="magenta"];3029 -> 3206[label="",style="dashed", color="magenta", weight=3]; 3029 -> 3207[label="",style="dashed", color="magenta", weight=3]; 3030[label="False",fontsize=16,color="green",shape="box"];3031[label="False",fontsize=16,color="green",shape="box"];3032[label="True",fontsize=16,color="green",shape="box"];3033[label="True",fontsize=16,color="green",shape="box"];3034[label="False",fontsize=16,color="green",shape="box"];3035[label="False",fontsize=16,color="green",shape="box"];3036[label="False",fontsize=16,color="green",shape="box"];3037[label="True",fontsize=16,color="green",shape="box"];3038[label="False",fontsize=16,color="green",shape="box"];3039[label="False",fontsize=16,color="green",shape="box"];3040[label="False",fontsize=16,color="green",shape="box"];3041[label="True",fontsize=16,color="green",shape="box"];3042[label="primEqDouble (Double vwx3000 vwx3001) (Double vwx4000 vwx4001)",fontsize=16,color="black",shape="box"];3042 -> 3387[label="",style="solid", color="black", weight=3]; 3043 -> 2782[label="",style="dashed", color="red", weight=0]; 3043[label="primEqInt vwx3000 vwx4000",fontsize=16,color="magenta"];3043 -> 3388[label="",style="dashed", color="magenta", weight=3]; 3043 -> 3389[label="",style="dashed", color="magenta", weight=3]; 3044 -> 3197[label="",style="dashed", color="red", weight=0]; 3044[label="vwx3000 == vwx4000 && vwx3001 == vwx4001",fontsize=16,color="magenta"];3044 -> 3208[label="",style="dashed", color="magenta", weight=3]; 3044 -> 3209[label="",style="dashed", color="magenta", weight=3]; 3045[label="primEqFloat (Float vwx3000 vwx3001) (Float vwx4000 vwx4001)",fontsize=16,color="black",shape="box"];3045 -> 3390[label="",style="solid", color="black", weight=3]; 3046[label="primEqInt (Pos (Succ vwx30000)) vwx400",fontsize=16,color="burlywood",shape="box"];5387[label="vwx400/Pos vwx4000",fontsize=10,color="white",style="solid",shape="box"];3046 -> 5387[label="",style="solid", color="burlywood", weight=9]; 5387 -> 3391[label="",style="solid", color="burlywood", weight=3]; 5388[label="vwx400/Neg vwx4000",fontsize=10,color="white",style="solid",shape="box"];3046 -> 5388[label="",style="solid", color="burlywood", weight=9]; 5388 -> 3392[label="",style="solid", color="burlywood", weight=3]; 3047[label="primEqInt (Pos Zero) vwx400",fontsize=16,color="burlywood",shape="box"];5389[label="vwx400/Pos vwx4000",fontsize=10,color="white",style="solid",shape="box"];3047 -> 5389[label="",style="solid", color="burlywood", weight=9]; 5389 -> 3393[label="",style="solid", color="burlywood", weight=3]; 5390[label="vwx400/Neg vwx4000",fontsize=10,color="white",style="solid",shape="box"];3047 -> 5390[label="",style="solid", color="burlywood", weight=9]; 5390 -> 3394[label="",style="solid", color="burlywood", weight=3]; 3048[label="primEqInt (Neg (Succ vwx30000)) vwx400",fontsize=16,color="burlywood",shape="box"];5391[label="vwx400/Pos vwx4000",fontsize=10,color="white",style="solid",shape="box"];3048 -> 5391[label="",style="solid", color="burlywood", weight=9]; 5391 -> 3395[label="",style="solid", color="burlywood", weight=3]; 5392[label="vwx400/Neg vwx4000",fontsize=10,color="white",style="solid",shape="box"];3048 -> 5392[label="",style="solid", color="burlywood", weight=9]; 5392 -> 3396[label="",style="solid", color="burlywood", weight=3]; 3049[label="primEqInt (Neg Zero) vwx400",fontsize=16,color="burlywood",shape="box"];5393[label="vwx400/Pos vwx4000",fontsize=10,color="white",style="solid",shape="box"];3049 -> 5393[label="",style="solid", color="burlywood", weight=9]; 5393 -> 3397[label="",style="solid", color="burlywood", weight=3]; 5394[label="vwx400/Neg vwx4000",fontsize=10,color="white",style="solid",shape="box"];3049 -> 5394[label="",style="solid", color="burlywood", weight=9]; 5394 -> 3398[label="",style="solid", color="burlywood", weight=3]; 3050[label="True",fontsize=16,color="green",shape="box"];3051[label="False",fontsize=16,color="green",shape="box"];3052[label="False",fontsize=16,color="green",shape="box"];3053[label="True",fontsize=16,color="green",shape="box"];3054[label="True",fontsize=16,color="green",shape="box"];3055[label="False",fontsize=16,color="green",shape="box"];3056[label="False",fontsize=16,color="green",shape="box"];3057[label="vwx3000 == vwx4000",fontsize=16,color="blue",shape="box"];5395[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3057 -> 5395[label="",style="solid", color="blue", weight=9]; 5395 -> 3399[label="",style="solid", color="blue", weight=3]; 5396[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3057 -> 5396[label="",style="solid", color="blue", weight=9]; 5396 -> 3400[label="",style="solid", color="blue", weight=3]; 5397[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3057 -> 5397[label="",style="solid", color="blue", weight=9]; 5397 -> 3401[label="",style="solid", color="blue", weight=3]; 5398[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3057 -> 5398[label="",style="solid", color="blue", weight=9]; 5398 -> 3402[label="",style="solid", color="blue", weight=3]; 5399[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3057 -> 5399[label="",style="solid", color="blue", weight=9]; 5399 -> 3403[label="",style="solid", color="blue", weight=3]; 5400[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3057 -> 5400[label="",style="solid", color="blue", weight=9]; 5400 -> 3404[label="",style="solid", color="blue", weight=3]; 5401[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3057 -> 5401[label="",style="solid", color="blue", weight=9]; 5401 -> 3405[label="",style="solid", color="blue", weight=3]; 5402[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3057 -> 5402[label="",style="solid", color="blue", weight=9]; 5402 -> 3406[label="",style="solid", color="blue", weight=3]; 5403[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3057 -> 5403[label="",style="solid", color="blue", weight=9]; 5403 -> 3407[label="",style="solid", color="blue", weight=3]; 5404[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3057 -> 5404[label="",style="solid", color="blue", weight=9]; 5404 -> 3408[label="",style="solid", color="blue", weight=3]; 5405[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3057 -> 5405[label="",style="solid", color="blue", weight=9]; 5405 -> 3409[label="",style="solid", color="blue", weight=3]; 5406[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3057 -> 5406[label="",style="solid", color="blue", weight=9]; 5406 -> 3410[label="",style="solid", color="blue", weight=3]; 5407[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3057 -> 5407[label="",style="solid", color="blue", weight=9]; 5407 -> 3411[label="",style="solid", color="blue", weight=3]; 5408[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3057 -> 5408[label="",style="solid", color="blue", weight=9]; 5408 -> 3412[label="",style="solid", color="blue", weight=3]; 3058 -> 3197[label="",style="dashed", color="red", weight=0]; 3058[label="vwx3000 == vwx4000 && vwx3001 == vwx4001",fontsize=16,color="magenta"];3058 -> 3210[label="",style="dashed", color="magenta", weight=3]; 3058 -> 3211[label="",style="dashed", color="magenta", weight=3]; 3059[label="vwx3000 == vwx4000",fontsize=16,color="blue",shape="box"];5409[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3059 -> 5409[label="",style="solid", color="blue", weight=9]; 5409 -> 3413[label="",style="solid", color="blue", weight=3]; 5410[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3059 -> 5410[label="",style="solid", color="blue", weight=9]; 5410 -> 3414[label="",style="solid", color="blue", weight=3]; 5411[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3059 -> 5411[label="",style="solid", color="blue", weight=9]; 5411 -> 3415[label="",style="solid", color="blue", weight=3]; 5412[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3059 -> 5412[label="",style="solid", color="blue", weight=9]; 5412 -> 3416[label="",style="solid", color="blue", weight=3]; 5413[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3059 -> 5413[label="",style="solid", color="blue", weight=9]; 5413 -> 3417[label="",style="solid", color="blue", weight=3]; 5414[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3059 -> 5414[label="",style="solid", color="blue", weight=9]; 5414 -> 3418[label="",style="solid", color="blue", weight=3]; 5415[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3059 -> 5415[label="",style="solid", color="blue", weight=9]; 5415 -> 3419[label="",style="solid", color="blue", weight=3]; 5416[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3059 -> 5416[label="",style="solid", color="blue", weight=9]; 5416 -> 3420[label="",style="solid", color="blue", weight=3]; 5417[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3059 -> 5417[label="",style="solid", color="blue", weight=9]; 5417 -> 3421[label="",style="solid", color="blue", weight=3]; 5418[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3059 -> 5418[label="",style="solid", color="blue", weight=9]; 5418 -> 3422[label="",style="solid", color="blue", weight=3]; 5419[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3059 -> 5419[label="",style="solid", color="blue", weight=9]; 5419 -> 3423[label="",style="solid", color="blue", weight=3]; 5420[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3059 -> 5420[label="",style="solid", color="blue", weight=9]; 5420 -> 3424[label="",style="solid", color="blue", weight=3]; 5421[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3059 -> 5421[label="",style="solid", color="blue", weight=9]; 5421 -> 3425[label="",style="solid", color="blue", weight=3]; 5422[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3059 -> 5422[label="",style="solid", color="blue", weight=9]; 5422 -> 3426[label="",style="solid", color="blue", weight=3]; 3060[label="False",fontsize=16,color="green",shape="box"];3061[label="False",fontsize=16,color="green",shape="box"];3062[label="vwx3000 == vwx4000",fontsize=16,color="blue",shape="box"];5423[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3062 -> 5423[label="",style="solid", color="blue", weight=9]; 5423 -> 3427[label="",style="solid", color="blue", weight=3]; 5424[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3062 -> 5424[label="",style="solid", color="blue", weight=9]; 5424 -> 3428[label="",style="solid", color="blue", weight=3]; 5425[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3062 -> 5425[label="",style="solid", color="blue", weight=9]; 5425 -> 3429[label="",style="solid", color="blue", weight=3]; 5426[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3062 -> 5426[label="",style="solid", color="blue", weight=9]; 5426 -> 3430[label="",style="solid", color="blue", weight=3]; 5427[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3062 -> 5427[label="",style="solid", color="blue", weight=9]; 5427 -> 3431[label="",style="solid", color="blue", weight=3]; 5428[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3062 -> 5428[label="",style="solid", color="blue", weight=9]; 5428 -> 3432[label="",style="solid", color="blue", weight=3]; 5429[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3062 -> 5429[label="",style="solid", color="blue", weight=9]; 5429 -> 3433[label="",style="solid", color="blue", weight=3]; 5430[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3062 -> 5430[label="",style="solid", color="blue", weight=9]; 5430 -> 3434[label="",style="solid", color="blue", weight=3]; 5431[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3062 -> 5431[label="",style="solid", color="blue", weight=9]; 5431 -> 3435[label="",style="solid", color="blue", weight=3]; 5432[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3062 -> 5432[label="",style="solid", color="blue", weight=9]; 5432 -> 3436[label="",style="solid", color="blue", weight=3]; 5433[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3062 -> 5433[label="",style="solid", color="blue", weight=9]; 5433 -> 3437[label="",style="solid", color="blue", weight=3]; 5434[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3062 -> 5434[label="",style="solid", color="blue", weight=9]; 5434 -> 3438[label="",style="solid", color="blue", weight=3]; 5435[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3062 -> 5435[label="",style="solid", color="blue", weight=9]; 5435 -> 3439[label="",style="solid", color="blue", weight=3]; 5436[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3062 -> 5436[label="",style="solid", color="blue", weight=9]; 5436 -> 3440[label="",style="solid", color="blue", weight=3]; 3063[label="True",fontsize=16,color="green",shape="box"];3064[label="primEqChar (Char vwx3000) (Char vwx4000)",fontsize=16,color="black",shape="box"];3064 -> 3441[label="",style="solid", color="black", weight=3]; 3065 -> 3197[label="",style="dashed", color="red", weight=0]; 3065[label="vwx3000 == vwx4000 && vwx3001 == vwx4001 && vwx3002 == vwx4002",fontsize=16,color="magenta"];3065 -> 3212[label="",style="dashed", color="magenta", weight=3]; 3065 -> 3213[label="",style="dashed", color="magenta", weight=3]; 3105[label="vwx191 <= vwx192",fontsize=16,color="blue",shape="box"];5437[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3105 -> 5437[label="",style="solid", color="blue", weight=9]; 5437 -> 3442[label="",style="solid", color="blue", weight=3]; 5438[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3105 -> 5438[label="",style="solid", color="blue", weight=9]; 5438 -> 3443[label="",style="solid", color="blue", weight=3]; 5439[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3105 -> 5439[label="",style="solid", color="blue", weight=9]; 5439 -> 3444[label="",style="solid", color="blue", weight=3]; 5440[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3105 -> 5440[label="",style="solid", color="blue", weight=9]; 5440 -> 3445[label="",style="solid", color="blue", weight=3]; 5441[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3105 -> 5441[label="",style="solid", color="blue", weight=9]; 5441 -> 3446[label="",style="solid", color="blue", weight=3]; 5442[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3105 -> 5442[label="",style="solid", color="blue", weight=9]; 5442 -> 3447[label="",style="solid", color="blue", weight=3]; 5443[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3105 -> 5443[label="",style="solid", color="blue", weight=9]; 5443 -> 3448[label="",style="solid", color="blue", weight=3]; 5444[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3105 -> 5444[label="",style="solid", color="blue", weight=9]; 5444 -> 3449[label="",style="solid", color="blue", weight=3]; 5445[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3105 -> 5445[label="",style="solid", color="blue", weight=9]; 5445 -> 3450[label="",style="solid", color="blue", weight=3]; 5446[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3105 -> 5446[label="",style="solid", color="blue", weight=9]; 5446 -> 3451[label="",style="solid", color="blue", weight=3]; 5447[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3105 -> 5447[label="",style="solid", color="blue", weight=9]; 5447 -> 3452[label="",style="solid", color="blue", weight=3]; 5448[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3105 -> 5448[label="",style="solid", color="blue", weight=9]; 5448 -> 3453[label="",style="solid", color="blue", weight=3]; 5449[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3105 -> 5449[label="",style="solid", color="blue", weight=9]; 5449 -> 3454[label="",style="solid", color="blue", weight=3]; 5450[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3105 -> 5450[label="",style="solid", color="blue", weight=9]; 5450 -> 3455[label="",style="solid", color="blue", weight=3]; 3106[label="compare1 (Just vwx271) (Just vwx272) False",fontsize=16,color="black",shape="box"];3106 -> 3456[label="",style="solid", color="black", weight=3]; 3107[label="compare1 (Just vwx271) (Just vwx272) True",fontsize=16,color="black",shape="box"];3107 -> 3457[label="",style="solid", color="black", weight=3]; 3116[label="vwx198 <= vwx199",fontsize=16,color="blue",shape="box"];5451[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3116 -> 5451[label="",style="solid", color="blue", weight=9]; 5451 -> 3458[label="",style="solid", color="blue", weight=3]; 5452[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3116 -> 5452[label="",style="solid", color="blue", weight=9]; 5452 -> 3459[label="",style="solid", color="blue", weight=3]; 5453[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3116 -> 5453[label="",style="solid", color="blue", weight=9]; 5453 -> 3460[label="",style="solid", color="blue", weight=3]; 5454[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3116 -> 5454[label="",style="solid", color="blue", weight=9]; 5454 -> 3461[label="",style="solid", color="blue", weight=3]; 5455[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3116 -> 5455[label="",style="solid", color="blue", weight=9]; 5455 -> 3462[label="",style="solid", color="blue", weight=3]; 5456[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3116 -> 5456[label="",style="solid", color="blue", weight=9]; 5456 -> 3463[label="",style="solid", color="blue", weight=3]; 5457[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3116 -> 5457[label="",style="solid", color="blue", weight=9]; 5457 -> 3464[label="",style="solid", color="blue", weight=3]; 5458[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3116 -> 5458[label="",style="solid", color="blue", weight=9]; 5458 -> 3465[label="",style="solid", color="blue", weight=3]; 5459[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3116 -> 5459[label="",style="solid", color="blue", weight=9]; 5459 -> 3466[label="",style="solid", color="blue", weight=3]; 5460[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3116 -> 5460[label="",style="solid", color="blue", weight=9]; 5460 -> 3467[label="",style="solid", color="blue", weight=3]; 5461[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3116 -> 5461[label="",style="solid", color="blue", weight=9]; 5461 -> 3468[label="",style="solid", color="blue", weight=3]; 5462[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3116 -> 5462[label="",style="solid", color="blue", weight=9]; 5462 -> 3469[label="",style="solid", color="blue", weight=3]; 5463[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3116 -> 5463[label="",style="solid", color="blue", weight=9]; 5463 -> 3470[label="",style="solid", color="blue", weight=3]; 5464[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3116 -> 5464[label="",style="solid", color="blue", weight=9]; 5464 -> 3471[label="",style="solid", color="blue", weight=3]; 3117[label="compare1 (Left vwx278) (Left vwx279) False",fontsize=16,color="black",shape="box"];3117 -> 3472[label="",style="solid", color="black", weight=3]; 3118[label="compare1 (Left vwx278) (Left vwx279) True",fontsize=16,color="black",shape="box"];3118 -> 3473[label="",style="solid", color="black", weight=3]; 3119[label="GT",fontsize=16,color="green",shape="box"];3127[label="vwx205 <= vwx206",fontsize=16,color="blue",shape="box"];5465[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3127 -> 5465[label="",style="solid", color="blue", weight=9]; 5465 -> 3474[label="",style="solid", color="blue", weight=3]; 5466[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3127 -> 5466[label="",style="solid", color="blue", weight=9]; 5466 -> 3475[label="",style="solid", color="blue", weight=3]; 5467[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3127 -> 5467[label="",style="solid", color="blue", weight=9]; 5467 -> 3476[label="",style="solid", color="blue", weight=3]; 5468[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3127 -> 5468[label="",style="solid", color="blue", weight=9]; 5468 -> 3477[label="",style="solid", color="blue", weight=3]; 5469[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3127 -> 5469[label="",style="solid", color="blue", weight=9]; 5469 -> 3478[label="",style="solid", color="blue", weight=3]; 5470[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3127 -> 5470[label="",style="solid", color="blue", weight=9]; 5470 -> 3479[label="",style="solid", color="blue", weight=3]; 5471[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3127 -> 5471[label="",style="solid", color="blue", weight=9]; 5471 -> 3480[label="",style="solid", color="blue", weight=3]; 5472[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3127 -> 5472[label="",style="solid", color="blue", weight=9]; 5472 -> 3481[label="",style="solid", color="blue", weight=3]; 5473[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3127 -> 5473[label="",style="solid", color="blue", weight=9]; 5473 -> 3482[label="",style="solid", color="blue", weight=3]; 5474[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3127 -> 5474[label="",style="solid", color="blue", weight=9]; 5474 -> 3483[label="",style="solid", color="blue", weight=3]; 5475[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3127 -> 5475[label="",style="solid", color="blue", weight=9]; 5475 -> 3484[label="",style="solid", color="blue", weight=3]; 5476[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3127 -> 5476[label="",style="solid", color="blue", weight=9]; 5476 -> 3485[label="",style="solid", color="blue", weight=3]; 5477[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3127 -> 5477[label="",style="solid", color="blue", weight=9]; 5477 -> 3486[label="",style="solid", color="blue", weight=3]; 5478[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3127 -> 5478[label="",style="solid", color="blue", weight=9]; 5478 -> 3487[label="",style="solid", color="blue", weight=3]; 3128[label="compare1 (Right vwx285) (Right vwx286) False",fontsize=16,color="black",shape="box"];3128 -> 3488[label="",style="solid", color="black", weight=3]; 3129[label="compare1 (Right vwx285) (Right vwx286) True",fontsize=16,color="black",shape="box"];3129 -> 3489[label="",style="solid", color="black", weight=3]; 3505[label="vwx301",fontsize=16,color="green",shape="box"];3506[label="vwx401",fontsize=16,color="green",shape="box"];3507[label="vwx301",fontsize=16,color="green",shape="box"];3508[label="vwx401",fontsize=16,color="green",shape="box"];3509[label="vwx301",fontsize=16,color="green",shape="box"];3510[label="vwx401",fontsize=16,color="green",shape="box"];3511[label="vwx301",fontsize=16,color="green",shape="box"];3512[label="vwx401",fontsize=16,color="green",shape="box"];3513[label="vwx301",fontsize=16,color="green",shape="box"];3514[label="vwx401",fontsize=16,color="green",shape="box"];3515[label="vwx301",fontsize=16,color="green",shape="box"];3516[label="vwx401",fontsize=16,color="green",shape="box"];3517[label="vwx301",fontsize=16,color="green",shape="box"];3518[label="vwx401",fontsize=16,color="green",shape="box"];3519[label="vwx301",fontsize=16,color="green",shape="box"];3520[label="vwx401",fontsize=16,color="green",shape="box"];3521[label="vwx301",fontsize=16,color="green",shape="box"];3522[label="vwx401",fontsize=16,color="green",shape="box"];3523[label="vwx301",fontsize=16,color="green",shape="box"];3524[label="vwx401",fontsize=16,color="green",shape="box"];3525[label="vwx301",fontsize=16,color="green",shape="box"];3526[label="vwx401",fontsize=16,color="green",shape="box"];3527[label="vwx301",fontsize=16,color="green",shape="box"];3528[label="vwx401",fontsize=16,color="green",shape="box"];3529[label="vwx301",fontsize=16,color="green",shape="box"];3530[label="vwx401",fontsize=16,color="green",shape="box"];3531[label="vwx301",fontsize=16,color="green",shape="box"];3532[label="vwx401",fontsize=16,color="green",shape="box"];3533[label="vwx302",fontsize=16,color="green",shape="box"];3534[label="vwx402",fontsize=16,color="green",shape="box"];3535[label="vwx302",fontsize=16,color="green",shape="box"];3536[label="vwx402",fontsize=16,color="green",shape="box"];3537[label="vwx302",fontsize=16,color="green",shape="box"];3538[label="vwx402",fontsize=16,color="green",shape="box"];3539[label="vwx302",fontsize=16,color="green",shape="box"];3540[label="vwx402",fontsize=16,color="green",shape="box"];3541[label="vwx302",fontsize=16,color="green",shape="box"];3542[label="vwx402",fontsize=16,color="green",shape="box"];3543[label="vwx302",fontsize=16,color="green",shape="box"];3544[label="vwx402",fontsize=16,color="green",shape="box"];3545[label="vwx302",fontsize=16,color="green",shape="box"];3546[label="vwx402",fontsize=16,color="green",shape="box"];3547[label="vwx302",fontsize=16,color="green",shape="box"];3548[label="vwx402",fontsize=16,color="green",shape="box"];3549[label="vwx302",fontsize=16,color="green",shape="box"];3550[label="vwx402",fontsize=16,color="green",shape="box"];3551[label="vwx302",fontsize=16,color="green",shape="box"];3552[label="vwx402",fontsize=16,color="green",shape="box"];3553[label="vwx302",fontsize=16,color="green",shape="box"];3554[label="vwx402",fontsize=16,color="green",shape="box"];3555[label="vwx302",fontsize=16,color="green",shape="box"];3556[label="vwx402",fontsize=16,color="green",shape="box"];3557[label="vwx302",fontsize=16,color="green",shape="box"];3558[label="vwx402",fontsize=16,color="green",shape="box"];3559[label="vwx302",fontsize=16,color="green",shape="box"];3560[label="vwx402",fontsize=16,color="green",shape="box"];3566[label="vwx244",fontsize=16,color="green",shape="box"];3567 -> 3197[label="",style="dashed", color="red", weight=0]; 3567[label="vwx242 == vwx245 && (vwx243 < vwx246 || vwx243 == vwx246 && vwx244 <= vwx247)",fontsize=16,color="magenta"];3567 -> 3582[label="",style="dashed", color="magenta", weight=3]; 3567 -> 3583[label="",style="dashed", color="magenta", weight=3]; 3568[label="vwx245",fontsize=16,color="green",shape="box"];3569[label="vwx247",fontsize=16,color="green",shape="box"];3570[label="vwx242 < vwx245",fontsize=16,color="blue",shape="box"];5479[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3570 -> 5479[label="",style="solid", color="blue", weight=9]; 5479 -> 3584[label="",style="solid", color="blue", weight=3]; 5480[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3570 -> 5480[label="",style="solid", color="blue", weight=9]; 5480 -> 3585[label="",style="solid", color="blue", weight=3]; 5481[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3570 -> 5481[label="",style="solid", color="blue", weight=9]; 5481 -> 3586[label="",style="solid", color="blue", weight=3]; 5482[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3570 -> 5482[label="",style="solid", color="blue", weight=9]; 5482 -> 3587[label="",style="solid", color="blue", weight=3]; 5483[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3570 -> 5483[label="",style="solid", color="blue", weight=9]; 5483 -> 3588[label="",style="solid", color="blue", weight=3]; 5484[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3570 -> 5484[label="",style="solid", color="blue", weight=9]; 5484 -> 3589[label="",style="solid", color="blue", weight=3]; 5485[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3570 -> 5485[label="",style="solid", color="blue", weight=9]; 5485 -> 3590[label="",style="solid", color="blue", weight=3]; 5486[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3570 -> 5486[label="",style="solid", color="blue", weight=9]; 5486 -> 3591[label="",style="solid", color="blue", weight=3]; 5487[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3570 -> 5487[label="",style="solid", color="blue", weight=9]; 5487 -> 3592[label="",style="solid", color="blue", weight=3]; 5488[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3570 -> 5488[label="",style="solid", color="blue", weight=9]; 5488 -> 3593[label="",style="solid", color="blue", weight=3]; 5489[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3570 -> 5489[label="",style="solid", color="blue", weight=9]; 5489 -> 3594[label="",style="solid", color="blue", weight=3]; 5490[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3570 -> 5490[label="",style="solid", color="blue", weight=9]; 5490 -> 3595[label="",style="solid", color="blue", weight=3]; 5491[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3570 -> 5491[label="",style="solid", color="blue", weight=9]; 5491 -> 3596[label="",style="solid", color="blue", weight=3]; 5492[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3570 -> 5492[label="",style="solid", color="blue", weight=9]; 5492 -> 3597[label="",style="solid", color="blue", weight=3]; 3571[label="vwx243",fontsize=16,color="green",shape="box"];3572[label="vwx246",fontsize=16,color="green",shape="box"];3573[label="vwx242",fontsize=16,color="green",shape="box"];3565[label="compare1 (vwx320,vwx321,vwx322) (vwx323,vwx324,vwx325) (vwx326 || vwx327)",fontsize=16,color="burlywood",shape="triangle"];5493[label="vwx326/False",fontsize=10,color="white",style="solid",shape="box"];3565 -> 5493[label="",style="solid", color="burlywood", weight=9]; 5493 -> 3598[label="",style="solid", color="burlywood", weight=3]; 5494[label="vwx326/True",fontsize=10,color="white",style="solid",shape="box"];3565 -> 5494[label="",style="solid", color="burlywood", weight=9]; 5494 -> 3599[label="",style="solid", color="burlywood", weight=3]; 3493 -> 3197[label="",style="dashed", color="red", weight=0]; 3493[label="vwx255 == vwx257 && vwx256 <= vwx258",fontsize=16,color="magenta"];3493 -> 3600[label="",style="dashed", color="magenta", weight=3]; 3493 -> 3601[label="",style="dashed", color="magenta", weight=3]; 3494[label="vwx257",fontsize=16,color="green",shape="box"];3495[label="vwx255",fontsize=16,color="green",shape="box"];3496[label="vwx258",fontsize=16,color="green",shape="box"];3497[label="vwx255 < vwx257",fontsize=16,color="blue",shape="box"];5495[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3497 -> 5495[label="",style="solid", color="blue", weight=9]; 5495 -> 3602[label="",style="solid", color="blue", weight=3]; 5496[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3497 -> 5496[label="",style="solid", color="blue", weight=9]; 5496 -> 3603[label="",style="solid", color="blue", weight=3]; 5497[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3497 -> 5497[label="",style="solid", color="blue", weight=9]; 5497 -> 3604[label="",style="solid", color="blue", weight=3]; 5498[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3497 -> 5498[label="",style="solid", color="blue", weight=9]; 5498 -> 3605[label="",style="solid", color="blue", weight=3]; 5499[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3497 -> 5499[label="",style="solid", color="blue", weight=9]; 5499 -> 3606[label="",style="solid", color="blue", weight=3]; 5500[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3497 -> 5500[label="",style="solid", color="blue", weight=9]; 5500 -> 3607[label="",style="solid", color="blue", weight=3]; 5501[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3497 -> 5501[label="",style="solid", color="blue", weight=9]; 5501 -> 3608[label="",style="solid", color="blue", weight=3]; 5502[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3497 -> 5502[label="",style="solid", color="blue", weight=9]; 5502 -> 3609[label="",style="solid", color="blue", weight=3]; 5503[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3497 -> 5503[label="",style="solid", color="blue", weight=9]; 5503 -> 3610[label="",style="solid", color="blue", weight=3]; 5504[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3497 -> 5504[label="",style="solid", color="blue", weight=9]; 5504 -> 3611[label="",style="solid", color="blue", weight=3]; 5505[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3497 -> 5505[label="",style="solid", color="blue", weight=9]; 5505 -> 3612[label="",style="solid", color="blue", weight=3]; 5506[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3497 -> 5506[label="",style="solid", color="blue", weight=9]; 5506 -> 3613[label="",style="solid", color="blue", weight=3]; 5507[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3497 -> 5507[label="",style="solid", color="blue", weight=9]; 5507 -> 3614[label="",style="solid", color="blue", weight=3]; 5508[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3497 -> 5508[label="",style="solid", color="blue", weight=9]; 5508 -> 3615[label="",style="solid", color="blue", weight=3]; 3498[label="vwx256",fontsize=16,color="green",shape="box"];3492[label="compare1 (vwx303,vwx304) (vwx305,vwx306) (vwx307 || vwx308)",fontsize=16,color="burlywood",shape="triangle"];5509[label="vwx307/False",fontsize=10,color="white",style="solid",shape="box"];3492 -> 5509[label="",style="solid", color="burlywood", weight=9]; 5509 -> 3616[label="",style="solid", color="burlywood", weight=3]; 5510[label="vwx307/True",fontsize=10,color="white",style="solid",shape="box"];3492 -> 5510[label="",style="solid", color="burlywood", weight=9]; 5510 -> 3617[label="",style="solid", color="burlywood", weight=3]; 3381[label="vwx3000",fontsize=16,color="green",shape="box"];3382[label="vwx4010",fontsize=16,color="green",shape="box"];3383[label="primMulNat vwx3000 vwx4010",fontsize=16,color="burlywood",shape="triangle"];5511[label="vwx3000/Succ vwx30000",fontsize=10,color="white",style="solid",shape="box"];3383 -> 5511[label="",style="solid", color="burlywood", weight=9]; 5511 -> 3618[label="",style="solid", color="burlywood", weight=3]; 5512[label="vwx3000/Zero",fontsize=10,color="white",style="solid",shape="box"];3383 -> 5512[label="",style="solid", color="burlywood", weight=9]; 5512 -> 3619[label="",style="solid", color="burlywood", weight=3]; 3384 -> 3383[label="",style="dashed", color="red", weight=0]; 3384[label="primMulNat vwx3000 vwx4010",fontsize=16,color="magenta"];3384 -> 3620[label="",style="dashed", color="magenta", weight=3]; 3385 -> 3383[label="",style="dashed", color="red", weight=0]; 3385[label="primMulNat vwx3000 vwx4010",fontsize=16,color="magenta"];3385 -> 3621[label="",style="dashed", color="magenta", weight=3]; 3386 -> 3383[label="",style="dashed", color="red", weight=0]; 3386[label="primMulNat vwx3000 vwx4010",fontsize=16,color="magenta"];3386 -> 3622[label="",style="dashed", color="magenta", weight=3]; 3386 -> 3623[label="",style="dashed", color="magenta", weight=3]; 3206[label="vwx3000 == vwx4000",fontsize=16,color="blue",shape="box"];5513[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3206 -> 5513[label="",style="solid", color="blue", weight=9]; 5513 -> 3624[label="",style="solid", color="blue", weight=3]; 5514[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3206 -> 5514[label="",style="solid", color="blue", weight=9]; 5514 -> 3625[label="",style="solid", color="blue", weight=3]; 5515[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3206 -> 5515[label="",style="solid", color="blue", weight=9]; 5515 -> 3626[label="",style="solid", color="blue", weight=3]; 5516[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3206 -> 5516[label="",style="solid", color="blue", weight=9]; 5516 -> 3627[label="",style="solid", color="blue", weight=3]; 5517[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3206 -> 5517[label="",style="solid", color="blue", weight=9]; 5517 -> 3628[label="",style="solid", color="blue", weight=3]; 5518[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3206 -> 5518[label="",style="solid", color="blue", weight=9]; 5518 -> 3629[label="",style="solid", color="blue", weight=3]; 5519[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3206 -> 5519[label="",style="solid", color="blue", weight=9]; 5519 -> 3630[label="",style="solid", color="blue", weight=3]; 5520[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3206 -> 5520[label="",style="solid", color="blue", weight=9]; 5520 -> 3631[label="",style="solid", color="blue", weight=3]; 5521[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3206 -> 5521[label="",style="solid", color="blue", weight=9]; 5521 -> 3632[label="",style="solid", color="blue", weight=3]; 5522[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3206 -> 5522[label="",style="solid", color="blue", weight=9]; 5522 -> 3633[label="",style="solid", color="blue", weight=3]; 5523[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3206 -> 5523[label="",style="solid", color="blue", weight=9]; 5523 -> 3634[label="",style="solid", color="blue", weight=3]; 5524[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3206 -> 5524[label="",style="solid", color="blue", weight=9]; 5524 -> 3635[label="",style="solid", color="blue", weight=3]; 5525[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3206 -> 5525[label="",style="solid", color="blue", weight=9]; 5525 -> 3636[label="",style="solid", color="blue", weight=3]; 5526[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3206 -> 5526[label="",style="solid", color="blue", weight=9]; 5526 -> 3637[label="",style="solid", color="blue", weight=3]; 3207 -> 2640[label="",style="dashed", color="red", weight=0]; 3207[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];3207 -> 3638[label="",style="dashed", color="magenta", weight=3]; 3207 -> 3639[label="",style="dashed", color="magenta", weight=3]; 3387 -> 2646[label="",style="dashed", color="red", weight=0]; 3387[label="vwx3000 * vwx4001 == vwx3001 * vwx4000",fontsize=16,color="magenta"];3387 -> 3640[label="",style="dashed", color="magenta", weight=3]; 3387 -> 3641[label="",style="dashed", color="magenta", weight=3]; 3388[label="vwx3000",fontsize=16,color="green",shape="box"];3389[label="vwx4000",fontsize=16,color="green",shape="box"];3208[label="vwx3000 == vwx4000",fontsize=16,color="blue",shape="box"];5527[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3208 -> 5527[label="",style="solid", color="blue", weight=9]; 5527 -> 3642[label="",style="solid", color="blue", weight=3]; 5528[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3208 -> 5528[label="",style="solid", color="blue", weight=9]; 5528 -> 3643[label="",style="solid", color="blue", weight=3]; 5529[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3208 -> 5529[label="",style="solid", color="blue", weight=9]; 5529 -> 3644[label="",style="solid", color="blue", weight=3]; 5530[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3208 -> 5530[label="",style="solid", color="blue", weight=9]; 5530 -> 3645[label="",style="solid", color="blue", weight=3]; 5531[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3208 -> 5531[label="",style="solid", color="blue", weight=9]; 5531 -> 3646[label="",style="solid", color="blue", weight=3]; 5532[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3208 -> 5532[label="",style="solid", color="blue", weight=9]; 5532 -> 3647[label="",style="solid", color="blue", weight=3]; 5533[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3208 -> 5533[label="",style="solid", color="blue", weight=9]; 5533 -> 3648[label="",style="solid", color="blue", weight=3]; 5534[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3208 -> 5534[label="",style="solid", color="blue", weight=9]; 5534 -> 3649[label="",style="solid", color="blue", weight=3]; 5535[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3208 -> 5535[label="",style="solid", color="blue", weight=9]; 5535 -> 3650[label="",style="solid", color="blue", weight=3]; 5536[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3208 -> 5536[label="",style="solid", color="blue", weight=9]; 5536 -> 3651[label="",style="solid", color="blue", weight=3]; 5537[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3208 -> 5537[label="",style="solid", color="blue", weight=9]; 5537 -> 3652[label="",style="solid", color="blue", weight=3]; 5538[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3208 -> 5538[label="",style="solid", color="blue", weight=9]; 5538 -> 3653[label="",style="solid", color="blue", weight=3]; 5539[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3208 -> 5539[label="",style="solid", color="blue", weight=9]; 5539 -> 3654[label="",style="solid", color="blue", weight=3]; 5540[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3208 -> 5540[label="",style="solid", color="blue", weight=9]; 5540 -> 3655[label="",style="solid", color="blue", weight=3]; 3209[label="vwx3001 == vwx4001",fontsize=16,color="blue",shape="box"];5541[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3209 -> 5541[label="",style="solid", color="blue", weight=9]; 5541 -> 3656[label="",style="solid", color="blue", weight=3]; 5542[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3209 -> 5542[label="",style="solid", color="blue", weight=9]; 5542 -> 3657[label="",style="solid", color="blue", weight=3]; 5543[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3209 -> 5543[label="",style="solid", color="blue", weight=9]; 5543 -> 3658[label="",style="solid", color="blue", weight=3]; 5544[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3209 -> 5544[label="",style="solid", color="blue", weight=9]; 5544 -> 3659[label="",style="solid", color="blue", weight=3]; 5545[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3209 -> 5545[label="",style="solid", color="blue", weight=9]; 5545 -> 3660[label="",style="solid", color="blue", weight=3]; 5546[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3209 -> 5546[label="",style="solid", color="blue", weight=9]; 5546 -> 3661[label="",style="solid", color="blue", weight=3]; 5547[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3209 -> 5547[label="",style="solid", color="blue", weight=9]; 5547 -> 3662[label="",style="solid", color="blue", weight=3]; 5548[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3209 -> 5548[label="",style="solid", color="blue", weight=9]; 5548 -> 3663[label="",style="solid", color="blue", weight=3]; 5549[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3209 -> 5549[label="",style="solid", color="blue", weight=9]; 5549 -> 3664[label="",style="solid", color="blue", weight=3]; 5550[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3209 -> 5550[label="",style="solid", color="blue", weight=9]; 5550 -> 3665[label="",style="solid", color="blue", weight=3]; 5551[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3209 -> 5551[label="",style="solid", color="blue", weight=9]; 5551 -> 3666[label="",style="solid", color="blue", weight=3]; 5552[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3209 -> 5552[label="",style="solid", color="blue", weight=9]; 5552 -> 3667[label="",style="solid", color="blue", weight=3]; 5553[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3209 -> 5553[label="",style="solid", color="blue", weight=9]; 5553 -> 3668[label="",style="solid", color="blue", weight=3]; 5554[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3209 -> 5554[label="",style="solid", color="blue", weight=9]; 5554 -> 3669[label="",style="solid", color="blue", weight=3]; 3390 -> 2646[label="",style="dashed", color="red", weight=0]; 3390[label="vwx3000 * vwx4001 == vwx3001 * vwx4000",fontsize=16,color="magenta"];3390 -> 3670[label="",style="dashed", color="magenta", weight=3]; 3390 -> 3671[label="",style="dashed", color="magenta", weight=3]; 3391[label="primEqInt (Pos (Succ vwx30000)) (Pos vwx4000)",fontsize=16,color="burlywood",shape="box"];5555[label="vwx4000/Succ vwx40000",fontsize=10,color="white",style="solid",shape="box"];3391 -> 5555[label="",style="solid", color="burlywood", weight=9]; 5555 -> 3672[label="",style="solid", color="burlywood", weight=3]; 5556[label="vwx4000/Zero",fontsize=10,color="white",style="solid",shape="box"];3391 -> 5556[label="",style="solid", color="burlywood", weight=9]; 5556 -> 3673[label="",style="solid", color="burlywood", weight=3]; 3392[label="primEqInt (Pos (Succ vwx30000)) (Neg vwx4000)",fontsize=16,color="black",shape="box"];3392 -> 3674[label="",style="solid", color="black", weight=3]; 3393[label="primEqInt (Pos Zero) (Pos vwx4000)",fontsize=16,color="burlywood",shape="box"];5557[label="vwx4000/Succ vwx40000",fontsize=10,color="white",style="solid",shape="box"];3393 -> 5557[label="",style="solid", color="burlywood", weight=9]; 5557 -> 3675[label="",style="solid", color="burlywood", weight=3]; 5558[label="vwx4000/Zero",fontsize=10,color="white",style="solid",shape="box"];3393 -> 5558[label="",style="solid", color="burlywood", weight=9]; 5558 -> 3676[label="",style="solid", color="burlywood", weight=3]; 3394[label="primEqInt (Pos Zero) (Neg vwx4000)",fontsize=16,color="burlywood",shape="box"];5559[label="vwx4000/Succ vwx40000",fontsize=10,color="white",style="solid",shape="box"];3394 -> 5559[label="",style="solid", color="burlywood", weight=9]; 5559 -> 3677[label="",style="solid", color="burlywood", weight=3]; 5560[label="vwx4000/Zero",fontsize=10,color="white",style="solid",shape="box"];3394 -> 5560[label="",style="solid", color="burlywood", weight=9]; 5560 -> 3678[label="",style="solid", color="burlywood", weight=3]; 3395[label="primEqInt (Neg (Succ vwx30000)) (Pos vwx4000)",fontsize=16,color="black",shape="box"];3395 -> 3679[label="",style="solid", color="black", weight=3]; 3396[label="primEqInt (Neg (Succ vwx30000)) (Neg vwx4000)",fontsize=16,color="burlywood",shape="box"];5561[label="vwx4000/Succ vwx40000",fontsize=10,color="white",style="solid",shape="box"];3396 -> 5561[label="",style="solid", color="burlywood", weight=9]; 5561 -> 3680[label="",style="solid", color="burlywood", weight=3]; 5562[label="vwx4000/Zero",fontsize=10,color="white",style="solid",shape="box"];3396 -> 5562[label="",style="solid", color="burlywood", weight=9]; 5562 -> 3681[label="",style="solid", color="burlywood", weight=3]; 3397[label="primEqInt (Neg Zero) (Pos vwx4000)",fontsize=16,color="burlywood",shape="box"];5563[label="vwx4000/Succ vwx40000",fontsize=10,color="white",style="solid",shape="box"];3397 -> 5563[label="",style="solid", color="burlywood", weight=9]; 5563 -> 3682[label="",style="solid", color="burlywood", weight=3]; 5564[label="vwx4000/Zero",fontsize=10,color="white",style="solid",shape="box"];3397 -> 5564[label="",style="solid", color="burlywood", weight=9]; 5564 -> 3683[label="",style="solid", color="burlywood", weight=3]; 3398[label="primEqInt (Neg Zero) (Neg vwx4000)",fontsize=16,color="burlywood",shape="box"];5565[label="vwx4000/Succ vwx40000",fontsize=10,color="white",style="solid",shape="box"];3398 -> 5565[label="",style="solid", color="burlywood", weight=9]; 5565 -> 3684[label="",style="solid", color="burlywood", weight=3]; 5566[label="vwx4000/Zero",fontsize=10,color="white",style="solid",shape="box"];3398 -> 5566[label="",style="solid", color="burlywood", weight=9]; 5566 -> 3685[label="",style="solid", color="burlywood", weight=3]; 3399 -> 2640[label="",style="dashed", color="red", weight=0]; 3399[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3399 -> 3686[label="",style="dashed", color="magenta", weight=3]; 3399 -> 3687[label="",style="dashed", color="magenta", weight=3]; 3400 -> 2641[label="",style="dashed", color="red", weight=0]; 3400[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3400 -> 3688[label="",style="dashed", color="magenta", weight=3]; 3400 -> 3689[label="",style="dashed", color="magenta", weight=3]; 3401 -> 2642[label="",style="dashed", color="red", weight=0]; 3401[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3401 -> 3690[label="",style="dashed", color="magenta", weight=3]; 3401 -> 3691[label="",style="dashed", color="magenta", weight=3]; 3402 -> 2643[label="",style="dashed", color="red", weight=0]; 3402[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3402 -> 3692[label="",style="dashed", color="magenta", weight=3]; 3402 -> 3693[label="",style="dashed", color="magenta", weight=3]; 3403 -> 2644[label="",style="dashed", color="red", weight=0]; 3403[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3403 -> 3694[label="",style="dashed", color="magenta", weight=3]; 3403 -> 3695[label="",style="dashed", color="magenta", weight=3]; 3404 -> 2645[label="",style="dashed", color="red", weight=0]; 3404[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3404 -> 3696[label="",style="dashed", color="magenta", weight=3]; 3404 -> 3697[label="",style="dashed", color="magenta", weight=3]; 3405 -> 2646[label="",style="dashed", color="red", weight=0]; 3405[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3405 -> 3698[label="",style="dashed", color="magenta", weight=3]; 3405 -> 3699[label="",style="dashed", color="magenta", weight=3]; 3406 -> 2647[label="",style="dashed", color="red", weight=0]; 3406[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3406 -> 3700[label="",style="dashed", color="magenta", weight=3]; 3406 -> 3701[label="",style="dashed", color="magenta", weight=3]; 3407 -> 2648[label="",style="dashed", color="red", weight=0]; 3407[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3407 -> 3702[label="",style="dashed", color="magenta", weight=3]; 3407 -> 3703[label="",style="dashed", color="magenta", weight=3]; 3408 -> 2649[label="",style="dashed", color="red", weight=0]; 3408[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3408 -> 3704[label="",style="dashed", color="magenta", weight=3]; 3408 -> 3705[label="",style="dashed", color="magenta", weight=3]; 3409 -> 2650[label="",style="dashed", color="red", weight=0]; 3409[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3409 -> 3706[label="",style="dashed", color="magenta", weight=3]; 3409 -> 3707[label="",style="dashed", color="magenta", weight=3]; 3410 -> 2651[label="",style="dashed", color="red", weight=0]; 3410[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3410 -> 3708[label="",style="dashed", color="magenta", weight=3]; 3410 -> 3709[label="",style="dashed", color="magenta", weight=3]; 3411 -> 2652[label="",style="dashed", color="red", weight=0]; 3411[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3411 -> 3710[label="",style="dashed", color="magenta", weight=3]; 3411 -> 3711[label="",style="dashed", color="magenta", weight=3]; 3412 -> 2653[label="",style="dashed", color="red", weight=0]; 3412[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3412 -> 3712[label="",style="dashed", color="magenta", weight=3]; 3412 -> 3713[label="",style="dashed", color="magenta", weight=3]; 3210[label="vwx3000 == vwx4000",fontsize=16,color="blue",shape="box"];5567[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3210 -> 5567[label="",style="solid", color="blue", weight=9]; 5567 -> 3714[label="",style="solid", color="blue", weight=3]; 5568[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3210 -> 5568[label="",style="solid", color="blue", weight=9]; 5568 -> 3715[label="",style="solid", color="blue", weight=3]; 3211[label="vwx3001 == vwx4001",fontsize=16,color="blue",shape="box"];5569[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3211 -> 5569[label="",style="solid", color="blue", weight=9]; 5569 -> 3716[label="",style="solid", color="blue", weight=3]; 5570[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3211 -> 5570[label="",style="solid", color="blue", weight=9]; 5570 -> 3717[label="",style="solid", color="blue", weight=3]; 3413 -> 2640[label="",style="dashed", color="red", weight=0]; 3413[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3413 -> 3718[label="",style="dashed", color="magenta", weight=3]; 3413 -> 3719[label="",style="dashed", color="magenta", weight=3]; 3414 -> 2641[label="",style="dashed", color="red", weight=0]; 3414[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3414 -> 3720[label="",style="dashed", color="magenta", weight=3]; 3414 -> 3721[label="",style="dashed", color="magenta", weight=3]; 3415 -> 2642[label="",style="dashed", color="red", weight=0]; 3415[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3415 -> 3722[label="",style="dashed", color="magenta", weight=3]; 3415 -> 3723[label="",style="dashed", color="magenta", weight=3]; 3416 -> 2643[label="",style="dashed", color="red", weight=0]; 3416[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3416 -> 3724[label="",style="dashed", color="magenta", weight=3]; 3416 -> 3725[label="",style="dashed", color="magenta", weight=3]; 3417 -> 2644[label="",style="dashed", color="red", weight=0]; 3417[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3417 -> 3726[label="",style="dashed", color="magenta", weight=3]; 3417 -> 3727[label="",style="dashed", color="magenta", weight=3]; 3418 -> 2645[label="",style="dashed", color="red", weight=0]; 3418[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3418 -> 3728[label="",style="dashed", color="magenta", weight=3]; 3418 -> 3729[label="",style="dashed", color="magenta", weight=3]; 3419 -> 2646[label="",style="dashed", color="red", weight=0]; 3419[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3419 -> 3730[label="",style="dashed", color="magenta", weight=3]; 3419 -> 3731[label="",style="dashed", color="magenta", weight=3]; 3420 -> 2647[label="",style="dashed", color="red", weight=0]; 3420[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3420 -> 3732[label="",style="dashed", color="magenta", weight=3]; 3420 -> 3733[label="",style="dashed", color="magenta", weight=3]; 3421 -> 2648[label="",style="dashed", color="red", weight=0]; 3421[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3421 -> 3734[label="",style="dashed", color="magenta", weight=3]; 3421 -> 3735[label="",style="dashed", color="magenta", weight=3]; 3422 -> 2649[label="",style="dashed", color="red", weight=0]; 3422[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3422 -> 3736[label="",style="dashed", color="magenta", weight=3]; 3422 -> 3737[label="",style="dashed", color="magenta", weight=3]; 3423 -> 2650[label="",style="dashed", color="red", weight=0]; 3423[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3423 -> 3738[label="",style="dashed", color="magenta", weight=3]; 3423 -> 3739[label="",style="dashed", color="magenta", weight=3]; 3424 -> 2651[label="",style="dashed", color="red", weight=0]; 3424[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3424 -> 3740[label="",style="dashed", color="magenta", weight=3]; 3424 -> 3741[label="",style="dashed", color="magenta", weight=3]; 3425 -> 2652[label="",style="dashed", color="red", weight=0]; 3425[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3425 -> 3742[label="",style="dashed", color="magenta", weight=3]; 3425 -> 3743[label="",style="dashed", color="magenta", weight=3]; 3426 -> 2653[label="",style="dashed", color="red", weight=0]; 3426[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3426 -> 3744[label="",style="dashed", color="magenta", weight=3]; 3426 -> 3745[label="",style="dashed", color="magenta", weight=3]; 3427 -> 2640[label="",style="dashed", color="red", weight=0]; 3427[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3427 -> 3746[label="",style="dashed", color="magenta", weight=3]; 3427 -> 3747[label="",style="dashed", color="magenta", weight=3]; 3428 -> 2641[label="",style="dashed", color="red", weight=0]; 3428[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3428 -> 3748[label="",style="dashed", color="magenta", weight=3]; 3428 -> 3749[label="",style="dashed", color="magenta", weight=3]; 3429 -> 2642[label="",style="dashed", color="red", weight=0]; 3429[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3429 -> 3750[label="",style="dashed", color="magenta", weight=3]; 3429 -> 3751[label="",style="dashed", color="magenta", weight=3]; 3430 -> 2643[label="",style="dashed", color="red", weight=0]; 3430[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3430 -> 3752[label="",style="dashed", color="magenta", weight=3]; 3430 -> 3753[label="",style="dashed", color="magenta", weight=3]; 3431 -> 2644[label="",style="dashed", color="red", weight=0]; 3431[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3431 -> 3754[label="",style="dashed", color="magenta", weight=3]; 3431 -> 3755[label="",style="dashed", color="magenta", weight=3]; 3432 -> 2645[label="",style="dashed", color="red", weight=0]; 3432[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3432 -> 3756[label="",style="dashed", color="magenta", weight=3]; 3432 -> 3757[label="",style="dashed", color="magenta", weight=3]; 3433 -> 2646[label="",style="dashed", color="red", weight=0]; 3433[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3433 -> 3758[label="",style="dashed", color="magenta", weight=3]; 3433 -> 3759[label="",style="dashed", color="magenta", weight=3]; 3434 -> 2647[label="",style="dashed", color="red", weight=0]; 3434[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3434 -> 3760[label="",style="dashed", color="magenta", weight=3]; 3434 -> 3761[label="",style="dashed", color="magenta", weight=3]; 3435 -> 2648[label="",style="dashed", color="red", weight=0]; 3435[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3435 -> 3762[label="",style="dashed", color="magenta", weight=3]; 3435 -> 3763[label="",style="dashed", color="magenta", weight=3]; 3436 -> 2649[label="",style="dashed", color="red", weight=0]; 3436[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3436 -> 3764[label="",style="dashed", color="magenta", weight=3]; 3436 -> 3765[label="",style="dashed", color="magenta", weight=3]; 3437 -> 2650[label="",style="dashed", color="red", weight=0]; 3437[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3437 -> 3766[label="",style="dashed", color="magenta", weight=3]; 3437 -> 3767[label="",style="dashed", color="magenta", weight=3]; 3438 -> 2651[label="",style="dashed", color="red", weight=0]; 3438[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3438 -> 3768[label="",style="dashed", color="magenta", weight=3]; 3438 -> 3769[label="",style="dashed", color="magenta", weight=3]; 3439 -> 2652[label="",style="dashed", color="red", weight=0]; 3439[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3439 -> 3770[label="",style="dashed", color="magenta", weight=3]; 3439 -> 3771[label="",style="dashed", color="magenta", weight=3]; 3440 -> 2653[label="",style="dashed", color="red", weight=0]; 3440[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3440 -> 3772[label="",style="dashed", color="magenta", weight=3]; 3440 -> 3773[label="",style="dashed", color="magenta", weight=3]; 3441[label="primEqNat vwx3000 vwx4000",fontsize=16,color="burlywood",shape="triangle"];5571[label="vwx3000/Succ vwx30000",fontsize=10,color="white",style="solid",shape="box"];3441 -> 5571[label="",style="solid", color="burlywood", weight=9]; 5571 -> 3774[label="",style="solid", color="burlywood", weight=3]; 5572[label="vwx3000/Zero",fontsize=10,color="white",style="solid",shape="box"];3441 -> 5572[label="",style="solid", color="burlywood", weight=9]; 5572 -> 3775[label="",style="solid", color="burlywood", weight=3]; 3212[label="vwx3000 == vwx4000",fontsize=16,color="blue",shape="box"];5573[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3212 -> 5573[label="",style="solid", color="blue", weight=9]; 5573 -> 3776[label="",style="solid", color="blue", weight=3]; 5574[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3212 -> 5574[label="",style="solid", color="blue", weight=9]; 5574 -> 3777[label="",style="solid", color="blue", weight=3]; 5575[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3212 -> 5575[label="",style="solid", color="blue", weight=9]; 5575 -> 3778[label="",style="solid", color="blue", weight=3]; 5576[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3212 -> 5576[label="",style="solid", color="blue", weight=9]; 5576 -> 3779[label="",style="solid", color="blue", weight=3]; 5577[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3212 -> 5577[label="",style="solid", color="blue", weight=9]; 5577 -> 3780[label="",style="solid", color="blue", weight=3]; 5578[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3212 -> 5578[label="",style="solid", color="blue", weight=9]; 5578 -> 3781[label="",style="solid", color="blue", weight=3]; 5579[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3212 -> 5579[label="",style="solid", color="blue", weight=9]; 5579 -> 3782[label="",style="solid", color="blue", weight=3]; 5580[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3212 -> 5580[label="",style="solid", color="blue", weight=9]; 5580 -> 3783[label="",style="solid", color="blue", weight=3]; 5581[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3212 -> 5581[label="",style="solid", color="blue", weight=9]; 5581 -> 3784[label="",style="solid", color="blue", weight=3]; 5582[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3212 -> 5582[label="",style="solid", color="blue", weight=9]; 5582 -> 3785[label="",style="solid", color="blue", weight=3]; 5583[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3212 -> 5583[label="",style="solid", color="blue", weight=9]; 5583 -> 3786[label="",style="solid", color="blue", weight=3]; 5584[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3212 -> 5584[label="",style="solid", color="blue", weight=9]; 5584 -> 3787[label="",style="solid", color="blue", weight=3]; 5585[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3212 -> 5585[label="",style="solid", color="blue", weight=9]; 5585 -> 3788[label="",style="solid", color="blue", weight=3]; 5586[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3212 -> 5586[label="",style="solid", color="blue", weight=9]; 5586 -> 3789[label="",style="solid", color="blue", weight=3]; 3213 -> 3197[label="",style="dashed", color="red", weight=0]; 3213[label="vwx3001 == vwx4001 && vwx3002 == vwx4002",fontsize=16,color="magenta"];3213 -> 3790[label="",style="dashed", color="magenta", weight=3]; 3213 -> 3791[label="",style="dashed", color="magenta", weight=3]; 3442[label="vwx191 <= vwx192",fontsize=16,color="black",shape="triangle"];3442 -> 3792[label="",style="solid", color="black", weight=3]; 3443[label="vwx191 <= vwx192",fontsize=16,color="black",shape="triangle"];3443 -> 3793[label="",style="solid", color="black", weight=3]; 3444[label="vwx191 <= vwx192",fontsize=16,color="burlywood",shape="triangle"];5587[label="vwx191/LT",fontsize=10,color="white",style="solid",shape="box"];3444 -> 5587[label="",style="solid", color="burlywood", weight=9]; 5587 -> 3794[label="",style="solid", color="burlywood", weight=3]; 5588[label="vwx191/EQ",fontsize=10,color="white",style="solid",shape="box"];3444 -> 5588[label="",style="solid", color="burlywood", weight=9]; 5588 -> 3795[label="",style="solid", color="burlywood", weight=3]; 5589[label="vwx191/GT",fontsize=10,color="white",style="solid",shape="box"];3444 -> 5589[label="",style="solid", color="burlywood", weight=9]; 5589 -> 3796[label="",style="solid", color="burlywood", weight=3]; 3445[label="vwx191 <= vwx192",fontsize=16,color="black",shape="triangle"];3445 -> 3797[label="",style="solid", color="black", weight=3]; 3446[label="vwx191 <= vwx192",fontsize=16,color="black",shape="triangle"];3446 -> 3798[label="",style="solid", color="black", weight=3]; 3447[label="vwx191 <= vwx192",fontsize=16,color="burlywood",shape="triangle"];5590[label="vwx191/False",fontsize=10,color="white",style="solid",shape="box"];3447 -> 5590[label="",style="solid", color="burlywood", weight=9]; 5590 -> 3799[label="",style="solid", color="burlywood", weight=3]; 5591[label="vwx191/True",fontsize=10,color="white",style="solid",shape="box"];3447 -> 5591[label="",style="solid", color="burlywood", weight=9]; 5591 -> 3800[label="",style="solid", color="burlywood", weight=3]; 3448[label="vwx191 <= vwx192",fontsize=16,color="burlywood",shape="triangle"];5592[label="vwx191/Nothing",fontsize=10,color="white",style="solid",shape="box"];3448 -> 5592[label="",style="solid", color="burlywood", weight=9]; 5592 -> 3801[label="",style="solid", color="burlywood", weight=3]; 5593[label="vwx191/Just vwx1910",fontsize=10,color="white",style="solid",shape="box"];3448 -> 5593[label="",style="solid", color="burlywood", weight=9]; 5593 -> 3802[label="",style="solid", color="burlywood", weight=3]; 3449[label="vwx191 <= vwx192",fontsize=16,color="burlywood",shape="triangle"];5594[label="vwx191/Left vwx1910",fontsize=10,color="white",style="solid",shape="box"];3449 -> 5594[label="",style="solid", color="burlywood", weight=9]; 5594 -> 3803[label="",style="solid", color="burlywood", weight=3]; 5595[label="vwx191/Right vwx1910",fontsize=10,color="white",style="solid",shape="box"];3449 -> 5595[label="",style="solid", color="burlywood", weight=9]; 5595 -> 3804[label="",style="solid", color="burlywood", weight=3]; 3450[label="vwx191 <= vwx192",fontsize=16,color="black",shape="triangle"];3450 -> 3805[label="",style="solid", color="black", weight=3]; 3451[label="vwx191 <= vwx192",fontsize=16,color="burlywood",shape="triangle"];5596[label="vwx191/(vwx1910,vwx1911,vwx1912)",fontsize=10,color="white",style="solid",shape="box"];3451 -> 5596[label="",style="solid", color="burlywood", weight=9]; 5596 -> 3806[label="",style="solid", color="burlywood", weight=3]; 3452[label="vwx191 <= vwx192",fontsize=16,color="black",shape="triangle"];3452 -> 3807[label="",style="solid", color="black", weight=3]; 3453[label="vwx191 <= vwx192",fontsize=16,color="burlywood",shape="triangle"];5597[label="vwx191/(vwx1910,vwx1911)",fontsize=10,color="white",style="solid",shape="box"];3453 -> 5597[label="",style="solid", color="burlywood", weight=9]; 5597 -> 3808[label="",style="solid", color="burlywood", weight=3]; 3454[label="vwx191 <= vwx192",fontsize=16,color="black",shape="triangle"];3454 -> 3809[label="",style="solid", color="black", weight=3]; 3455[label="vwx191 <= vwx192",fontsize=16,color="black",shape="triangle"];3455 -> 3810[label="",style="solid", color="black", weight=3]; 3456[label="compare0 (Just vwx271) (Just vwx272) otherwise",fontsize=16,color="black",shape="box"];3456 -> 3811[label="",style="solid", color="black", weight=3]; 3457[label="LT",fontsize=16,color="green",shape="box"];3458 -> 3442[label="",style="dashed", color="red", weight=0]; 3458[label="vwx198 <= vwx199",fontsize=16,color="magenta"];3458 -> 3812[label="",style="dashed", color="magenta", weight=3]; 3458 -> 3813[label="",style="dashed", color="magenta", weight=3]; 3459 -> 3443[label="",style="dashed", color="red", weight=0]; 3459[label="vwx198 <= vwx199",fontsize=16,color="magenta"];3459 -> 3814[label="",style="dashed", color="magenta", weight=3]; 3459 -> 3815[label="",style="dashed", color="magenta", weight=3]; 3460 -> 3444[label="",style="dashed", color="red", weight=0]; 3460[label="vwx198 <= vwx199",fontsize=16,color="magenta"];3460 -> 3816[label="",style="dashed", color="magenta", weight=3]; 3460 -> 3817[label="",style="dashed", color="magenta", weight=3]; 3461 -> 3445[label="",style="dashed", color="red", weight=0]; 3461[label="vwx198 <= vwx199",fontsize=16,color="magenta"];3461 -> 3818[label="",style="dashed", color="magenta", weight=3]; 3461 -> 3819[label="",style="dashed", color="magenta", weight=3]; 3462 -> 3446[label="",style="dashed", color="red", weight=0]; 3462[label="vwx198 <= vwx199",fontsize=16,color="magenta"];3462 -> 3820[label="",style="dashed", color="magenta", weight=3]; 3462 -> 3821[label="",style="dashed", color="magenta", weight=3]; 3463 -> 3447[label="",style="dashed", color="red", weight=0]; 3463[label="vwx198 <= vwx199",fontsize=16,color="magenta"];3463 -> 3822[label="",style="dashed", color="magenta", weight=3]; 3463 -> 3823[label="",style="dashed", color="magenta", weight=3]; 3464 -> 3448[label="",style="dashed", color="red", weight=0]; 3464[label="vwx198 <= vwx199",fontsize=16,color="magenta"];3464 -> 3824[label="",style="dashed", color="magenta", weight=3]; 3464 -> 3825[label="",style="dashed", color="magenta", weight=3]; 3465 -> 3449[label="",style="dashed", color="red", weight=0]; 3465[label="vwx198 <= vwx199",fontsize=16,color="magenta"];3465 -> 3826[label="",style="dashed", color="magenta", weight=3]; 3465 -> 3827[label="",style="dashed", color="magenta", weight=3]; 3466 -> 3450[label="",style="dashed", color="red", weight=0]; 3466[label="vwx198 <= vwx199",fontsize=16,color="magenta"];3466 -> 3828[label="",style="dashed", color="magenta", weight=3]; 3466 -> 3829[label="",style="dashed", color="magenta", weight=3]; 3467 -> 3451[label="",style="dashed", color="red", weight=0]; 3467[label="vwx198 <= vwx199",fontsize=16,color="magenta"];3467 -> 3830[label="",style="dashed", color="magenta", weight=3]; 3467 -> 3831[label="",style="dashed", color="magenta", weight=3]; 3468 -> 3452[label="",style="dashed", color="red", weight=0]; 3468[label="vwx198 <= vwx199",fontsize=16,color="magenta"];3468 -> 3832[label="",style="dashed", color="magenta", weight=3]; 3468 -> 3833[label="",style="dashed", color="magenta", weight=3]; 3469 -> 3453[label="",style="dashed", color="red", weight=0]; 3469[label="vwx198 <= vwx199",fontsize=16,color="magenta"];3469 -> 3834[label="",style="dashed", color="magenta", weight=3]; 3469 -> 3835[label="",style="dashed", color="magenta", weight=3]; 3470 -> 3454[label="",style="dashed", color="red", weight=0]; 3470[label="vwx198 <= vwx199",fontsize=16,color="magenta"];3470 -> 3836[label="",style="dashed", color="magenta", weight=3]; 3470 -> 3837[label="",style="dashed", color="magenta", weight=3]; 3471 -> 3455[label="",style="dashed", color="red", weight=0]; 3471[label="vwx198 <= vwx199",fontsize=16,color="magenta"];3471 -> 3838[label="",style="dashed", color="magenta", weight=3]; 3471 -> 3839[label="",style="dashed", color="magenta", weight=3]; 3472[label="compare0 (Left vwx278) (Left vwx279) otherwise",fontsize=16,color="black",shape="box"];3472 -> 3840[label="",style="solid", color="black", weight=3]; 3473[label="LT",fontsize=16,color="green",shape="box"];3474 -> 3442[label="",style="dashed", color="red", weight=0]; 3474[label="vwx205 <= vwx206",fontsize=16,color="magenta"];3474 -> 3841[label="",style="dashed", color="magenta", weight=3]; 3474 -> 3842[label="",style="dashed", color="magenta", weight=3]; 3475 -> 3443[label="",style="dashed", color="red", weight=0]; 3475[label="vwx205 <= vwx206",fontsize=16,color="magenta"];3475 -> 3843[label="",style="dashed", color="magenta", weight=3]; 3475 -> 3844[label="",style="dashed", color="magenta", weight=3]; 3476 -> 3444[label="",style="dashed", color="red", weight=0]; 3476[label="vwx205 <= vwx206",fontsize=16,color="magenta"];3476 -> 3845[label="",style="dashed", color="magenta", weight=3]; 3476 -> 3846[label="",style="dashed", color="magenta", weight=3]; 3477 -> 3445[label="",style="dashed", color="red", weight=0]; 3477[label="vwx205 <= vwx206",fontsize=16,color="magenta"];3477 -> 3847[label="",style="dashed", color="magenta", weight=3]; 3477 -> 3848[label="",style="dashed", color="magenta", weight=3]; 3478 -> 3446[label="",style="dashed", color="red", weight=0]; 3478[label="vwx205 <= vwx206",fontsize=16,color="magenta"];3478 -> 3849[label="",style="dashed", color="magenta", weight=3]; 3478 -> 3850[label="",style="dashed", color="magenta", weight=3]; 3479 -> 3447[label="",style="dashed", color="red", weight=0]; 3479[label="vwx205 <= vwx206",fontsize=16,color="magenta"];3479 -> 3851[label="",style="dashed", color="magenta", weight=3]; 3479 -> 3852[label="",style="dashed", color="magenta", weight=3]; 3480 -> 3448[label="",style="dashed", color="red", weight=0]; 3480[label="vwx205 <= vwx206",fontsize=16,color="magenta"];3480 -> 3853[label="",style="dashed", color="magenta", weight=3]; 3480 -> 3854[label="",style="dashed", color="magenta", weight=3]; 3481 -> 3449[label="",style="dashed", color="red", weight=0]; 3481[label="vwx205 <= vwx206",fontsize=16,color="magenta"];3481 -> 3855[label="",style="dashed", color="magenta", weight=3]; 3481 -> 3856[label="",style="dashed", color="magenta", weight=3]; 3482 -> 3450[label="",style="dashed", color="red", weight=0]; 3482[label="vwx205 <= vwx206",fontsize=16,color="magenta"];3482 -> 3857[label="",style="dashed", color="magenta", weight=3]; 3482 -> 3858[label="",style="dashed", color="magenta", weight=3]; 3483 -> 3451[label="",style="dashed", color="red", weight=0]; 3483[label="vwx205 <= vwx206",fontsize=16,color="magenta"];3483 -> 3859[label="",style="dashed", color="magenta", weight=3]; 3483 -> 3860[label="",style="dashed", color="magenta", weight=3]; 3484 -> 3452[label="",style="dashed", color="red", weight=0]; 3484[label="vwx205 <= vwx206",fontsize=16,color="magenta"];3484 -> 3861[label="",style="dashed", color="magenta", weight=3]; 3484 -> 3862[label="",style="dashed", color="magenta", weight=3]; 3485 -> 3453[label="",style="dashed", color="red", weight=0]; 3485[label="vwx205 <= vwx206",fontsize=16,color="magenta"];3485 -> 3863[label="",style="dashed", color="magenta", weight=3]; 3485 -> 3864[label="",style="dashed", color="magenta", weight=3]; 3486 -> 3454[label="",style="dashed", color="red", weight=0]; 3486[label="vwx205 <= vwx206",fontsize=16,color="magenta"];3486 -> 3865[label="",style="dashed", color="magenta", weight=3]; 3486 -> 3866[label="",style="dashed", color="magenta", weight=3]; 3487 -> 3455[label="",style="dashed", color="red", weight=0]; 3487[label="vwx205 <= vwx206",fontsize=16,color="magenta"];3487 -> 3867[label="",style="dashed", color="magenta", weight=3]; 3487 -> 3868[label="",style="dashed", color="magenta", weight=3]; 3488[label="compare0 (Right vwx285) (Right vwx286) otherwise",fontsize=16,color="black",shape="box"];3488 -> 3869[label="",style="solid", color="black", weight=3]; 3489[label="LT",fontsize=16,color="green",shape="box"];3582[label="vwx242 == vwx245",fontsize=16,color="blue",shape="box"];5598[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3582 -> 5598[label="",style="solid", color="blue", weight=9]; 5598 -> 3870[label="",style="solid", color="blue", weight=3]; 5599[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3582 -> 5599[label="",style="solid", color="blue", weight=9]; 5599 -> 3871[label="",style="solid", color="blue", weight=3]; 5600[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3582 -> 5600[label="",style="solid", color="blue", weight=9]; 5600 -> 3872[label="",style="solid", color="blue", weight=3]; 5601[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3582 -> 5601[label="",style="solid", color="blue", weight=9]; 5601 -> 3873[label="",style="solid", color="blue", weight=3]; 5602[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3582 -> 5602[label="",style="solid", color="blue", weight=9]; 5602 -> 3874[label="",style="solid", color="blue", weight=3]; 5603[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3582 -> 5603[label="",style="solid", color="blue", weight=9]; 5603 -> 3875[label="",style="solid", color="blue", weight=3]; 5604[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3582 -> 5604[label="",style="solid", color="blue", weight=9]; 5604 -> 3876[label="",style="solid", color="blue", weight=3]; 5605[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3582 -> 5605[label="",style="solid", color="blue", weight=9]; 5605 -> 3877[label="",style="solid", color="blue", weight=3]; 5606[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3582 -> 5606[label="",style="solid", color="blue", weight=9]; 5606 -> 3878[label="",style="solid", color="blue", weight=3]; 5607[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3582 -> 5607[label="",style="solid", color="blue", weight=9]; 5607 -> 3879[label="",style="solid", color="blue", weight=3]; 5608[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3582 -> 5608[label="",style="solid", color="blue", weight=9]; 5608 -> 3880[label="",style="solid", color="blue", weight=3]; 5609[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3582 -> 5609[label="",style="solid", color="blue", weight=9]; 5609 -> 3881[label="",style="solid", color="blue", weight=3]; 5610[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3582 -> 5610[label="",style="solid", color="blue", weight=9]; 5610 -> 3882[label="",style="solid", color="blue", weight=3]; 5611[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3582 -> 5611[label="",style="solid", color="blue", weight=9]; 5611 -> 3883[label="",style="solid", color="blue", weight=3]; 3583 -> 4201[label="",style="dashed", color="red", weight=0]; 3583[label="vwx243 < vwx246 || vwx243 == vwx246 && vwx244 <= vwx247",fontsize=16,color="magenta"];3583 -> 4202[label="",style="dashed", color="magenta", weight=3]; 3583 -> 4203[label="",style="dashed", color="magenta", weight=3]; 3584[label="vwx242 < vwx245",fontsize=16,color="black",shape="triangle"];3584 -> 3886[label="",style="solid", color="black", weight=3]; 3585[label="vwx242 < vwx245",fontsize=16,color="black",shape="triangle"];3585 -> 3887[label="",style="solid", color="black", weight=3]; 3586[label="vwx242 < vwx245",fontsize=16,color="black",shape="triangle"];3586 -> 3888[label="",style="solid", color="black", weight=3]; 3587[label="vwx242 < vwx245",fontsize=16,color="black",shape="triangle"];3587 -> 3889[label="",style="solid", color="black", weight=3]; 3588[label="vwx242 < vwx245",fontsize=16,color="black",shape="triangle"];3588 -> 3890[label="",style="solid", color="black", weight=3]; 3589[label="vwx242 < vwx245",fontsize=16,color="black",shape="triangle"];3589 -> 3891[label="",style="solid", color="black", weight=3]; 3590[label="vwx242 < vwx245",fontsize=16,color="black",shape="triangle"];3590 -> 3892[label="",style="solid", color="black", weight=3]; 3591[label="vwx242 < vwx245",fontsize=16,color="black",shape="triangle"];3591 -> 3893[label="",style="solid", color="black", weight=3]; 3592[label="vwx242 < vwx245",fontsize=16,color="black",shape="triangle"];3592 -> 3894[label="",style="solid", color="black", weight=3]; 3593[label="vwx242 < vwx245",fontsize=16,color="black",shape="triangle"];3593 -> 3895[label="",style="solid", color="black", weight=3]; 3594[label="vwx242 < vwx245",fontsize=16,color="black",shape="triangle"];3594 -> 3896[label="",style="solid", color="black", weight=3]; 3595[label="vwx242 < vwx245",fontsize=16,color="black",shape="triangle"];3595 -> 3897[label="",style="solid", color="black", weight=3]; 3596[label="vwx242 < vwx245",fontsize=16,color="black",shape="triangle"];3596 -> 3898[label="",style="solid", color="black", weight=3]; 3597[label="vwx242 < vwx245",fontsize=16,color="black",shape="triangle"];3597 -> 3899[label="",style="solid", color="black", weight=3]; 3598[label="compare1 (vwx320,vwx321,vwx322) (vwx323,vwx324,vwx325) (False || vwx327)",fontsize=16,color="black",shape="box"];3598 -> 3900[label="",style="solid", color="black", weight=3]; 3599[label="compare1 (vwx320,vwx321,vwx322) (vwx323,vwx324,vwx325) (True || vwx327)",fontsize=16,color="black",shape="box"];3599 -> 3901[label="",style="solid", color="black", weight=3]; 3600[label="vwx255 == vwx257",fontsize=16,color="blue",shape="box"];5612[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3600 -> 5612[label="",style="solid", color="blue", weight=9]; 5612 -> 3902[label="",style="solid", color="blue", weight=3]; 5613[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3600 -> 5613[label="",style="solid", color="blue", weight=9]; 5613 -> 3903[label="",style="solid", color="blue", weight=3]; 5614[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3600 -> 5614[label="",style="solid", color="blue", weight=9]; 5614 -> 3904[label="",style="solid", color="blue", weight=3]; 5615[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3600 -> 5615[label="",style="solid", color="blue", weight=9]; 5615 -> 3905[label="",style="solid", color="blue", weight=3]; 5616[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3600 -> 5616[label="",style="solid", color="blue", weight=9]; 5616 -> 3906[label="",style="solid", color="blue", weight=3]; 5617[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3600 -> 5617[label="",style="solid", color="blue", weight=9]; 5617 -> 3907[label="",style="solid", color="blue", weight=3]; 5618[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3600 -> 5618[label="",style="solid", color="blue", weight=9]; 5618 -> 3908[label="",style="solid", color="blue", weight=3]; 5619[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3600 -> 5619[label="",style="solid", color="blue", weight=9]; 5619 -> 3909[label="",style="solid", color="blue", weight=3]; 5620[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3600 -> 5620[label="",style="solid", color="blue", weight=9]; 5620 -> 3910[label="",style="solid", color="blue", weight=3]; 5621[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3600 -> 5621[label="",style="solid", color="blue", weight=9]; 5621 -> 3911[label="",style="solid", color="blue", weight=3]; 5622[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3600 -> 5622[label="",style="solid", color="blue", weight=9]; 5622 -> 3912[label="",style="solid", color="blue", weight=3]; 5623[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3600 -> 5623[label="",style="solid", color="blue", weight=9]; 5623 -> 3913[label="",style="solid", color="blue", weight=3]; 5624[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3600 -> 5624[label="",style="solid", color="blue", weight=9]; 5624 -> 3914[label="",style="solid", color="blue", weight=3]; 5625[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3600 -> 5625[label="",style="solid", color="blue", weight=9]; 5625 -> 3915[label="",style="solid", color="blue", weight=3]; 3601[label="vwx256 <= vwx258",fontsize=16,color="blue",shape="box"];5626[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3601 -> 5626[label="",style="solid", color="blue", weight=9]; 5626 -> 3916[label="",style="solid", color="blue", weight=3]; 5627[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3601 -> 5627[label="",style="solid", color="blue", weight=9]; 5627 -> 3917[label="",style="solid", color="blue", weight=3]; 5628[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3601 -> 5628[label="",style="solid", color="blue", weight=9]; 5628 -> 3918[label="",style="solid", color="blue", weight=3]; 5629[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3601 -> 5629[label="",style="solid", color="blue", weight=9]; 5629 -> 3919[label="",style="solid", color="blue", weight=3]; 5630[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3601 -> 5630[label="",style="solid", color="blue", weight=9]; 5630 -> 3920[label="",style="solid", color="blue", weight=3]; 5631[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3601 -> 5631[label="",style="solid", color="blue", weight=9]; 5631 -> 3921[label="",style="solid", color="blue", weight=3]; 5632[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3601 -> 5632[label="",style="solid", color="blue", weight=9]; 5632 -> 3922[label="",style="solid", color="blue", weight=3]; 5633[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3601 -> 5633[label="",style="solid", color="blue", weight=9]; 5633 -> 3923[label="",style="solid", color="blue", weight=3]; 5634[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3601 -> 5634[label="",style="solid", color="blue", weight=9]; 5634 -> 3924[label="",style="solid", color="blue", weight=3]; 5635[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3601 -> 5635[label="",style="solid", color="blue", weight=9]; 5635 -> 3925[label="",style="solid", color="blue", weight=3]; 5636[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3601 -> 5636[label="",style="solid", color="blue", weight=9]; 5636 -> 3926[label="",style="solid", color="blue", weight=3]; 5637[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3601 -> 5637[label="",style="solid", color="blue", weight=9]; 5637 -> 3927[label="",style="solid", color="blue", weight=3]; 5638[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3601 -> 5638[label="",style="solid", color="blue", weight=9]; 5638 -> 3928[label="",style="solid", color="blue", weight=3]; 5639[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3601 -> 5639[label="",style="solid", color="blue", weight=9]; 5639 -> 3929[label="",style="solid", color="blue", weight=3]; 3602 -> 3584[label="",style="dashed", color="red", weight=0]; 3602[label="vwx255 < vwx257",fontsize=16,color="magenta"];3602 -> 3930[label="",style="dashed", color="magenta", weight=3]; 3602 -> 3931[label="",style="dashed", color="magenta", weight=3]; 3603 -> 3585[label="",style="dashed", color="red", weight=0]; 3603[label="vwx255 < vwx257",fontsize=16,color="magenta"];3603 -> 3932[label="",style="dashed", color="magenta", weight=3]; 3603 -> 3933[label="",style="dashed", color="magenta", weight=3]; 3604 -> 3586[label="",style="dashed", color="red", weight=0]; 3604[label="vwx255 < vwx257",fontsize=16,color="magenta"];3604 -> 3934[label="",style="dashed", color="magenta", weight=3]; 3604 -> 3935[label="",style="dashed", color="magenta", weight=3]; 3605 -> 3587[label="",style="dashed", color="red", weight=0]; 3605[label="vwx255 < vwx257",fontsize=16,color="magenta"];3605 -> 3936[label="",style="dashed", color="magenta", weight=3]; 3605 -> 3937[label="",style="dashed", color="magenta", weight=3]; 3606 -> 3588[label="",style="dashed", color="red", weight=0]; 3606[label="vwx255 < vwx257",fontsize=16,color="magenta"];3606 -> 3938[label="",style="dashed", color="magenta", weight=3]; 3606 -> 3939[label="",style="dashed", color="magenta", weight=3]; 3607 -> 3589[label="",style="dashed", color="red", weight=0]; 3607[label="vwx255 < vwx257",fontsize=16,color="magenta"];3607 -> 3940[label="",style="dashed", color="magenta", weight=3]; 3607 -> 3941[label="",style="dashed", color="magenta", weight=3]; 3608 -> 3590[label="",style="dashed", color="red", weight=0]; 3608[label="vwx255 < vwx257",fontsize=16,color="magenta"];3608 -> 3942[label="",style="dashed", color="magenta", weight=3]; 3608 -> 3943[label="",style="dashed", color="magenta", weight=3]; 3609 -> 3591[label="",style="dashed", color="red", weight=0]; 3609[label="vwx255 < vwx257",fontsize=16,color="magenta"];3609 -> 3944[label="",style="dashed", color="magenta", weight=3]; 3609 -> 3945[label="",style="dashed", color="magenta", weight=3]; 3610 -> 3592[label="",style="dashed", color="red", weight=0]; 3610[label="vwx255 < vwx257",fontsize=16,color="magenta"];3610 -> 3946[label="",style="dashed", color="magenta", weight=3]; 3610 -> 3947[label="",style="dashed", color="magenta", weight=3]; 3611 -> 3593[label="",style="dashed", color="red", weight=0]; 3611[label="vwx255 < vwx257",fontsize=16,color="magenta"];3611 -> 3948[label="",style="dashed", color="magenta", weight=3]; 3611 -> 3949[label="",style="dashed", color="magenta", weight=3]; 3612 -> 3594[label="",style="dashed", color="red", weight=0]; 3612[label="vwx255 < vwx257",fontsize=16,color="magenta"];3612 -> 3950[label="",style="dashed", color="magenta", weight=3]; 3612 -> 3951[label="",style="dashed", color="magenta", weight=3]; 3613 -> 3595[label="",style="dashed", color="red", weight=0]; 3613[label="vwx255 < vwx257",fontsize=16,color="magenta"];3613 -> 3952[label="",style="dashed", color="magenta", weight=3]; 3613 -> 3953[label="",style="dashed", color="magenta", weight=3]; 3614 -> 3596[label="",style="dashed", color="red", weight=0]; 3614[label="vwx255 < vwx257",fontsize=16,color="magenta"];3614 -> 3954[label="",style="dashed", color="magenta", weight=3]; 3614 -> 3955[label="",style="dashed", color="magenta", weight=3]; 3615 -> 3597[label="",style="dashed", color="red", weight=0]; 3615[label="vwx255 < vwx257",fontsize=16,color="magenta"];3615 -> 3956[label="",style="dashed", color="magenta", weight=3]; 3615 -> 3957[label="",style="dashed", color="magenta", weight=3]; 3616[label="compare1 (vwx303,vwx304) (vwx305,vwx306) (False || vwx308)",fontsize=16,color="black",shape="box"];3616 -> 3958[label="",style="solid", color="black", weight=3]; 3617[label="compare1 (vwx303,vwx304) (vwx305,vwx306) (True || vwx308)",fontsize=16,color="black",shape="box"];3617 -> 3959[label="",style="solid", color="black", weight=3]; 3618[label="primMulNat (Succ vwx30000) vwx4010",fontsize=16,color="burlywood",shape="box"];5640[label="vwx4010/Succ vwx40100",fontsize=10,color="white",style="solid",shape="box"];3618 -> 5640[label="",style="solid", color="burlywood", weight=9]; 5640 -> 3960[label="",style="solid", color="burlywood", weight=3]; 5641[label="vwx4010/Zero",fontsize=10,color="white",style="solid",shape="box"];3618 -> 5641[label="",style="solid", color="burlywood", weight=9]; 5641 -> 3961[label="",style="solid", color="burlywood", weight=3]; 3619[label="primMulNat Zero vwx4010",fontsize=16,color="burlywood",shape="box"];5642[label="vwx4010/Succ vwx40100",fontsize=10,color="white",style="solid",shape="box"];3619 -> 5642[label="",style="solid", color="burlywood", weight=9]; 5642 -> 3962[label="",style="solid", color="burlywood", weight=3]; 5643[label="vwx4010/Zero",fontsize=10,color="white",style="solid",shape="box"];3619 -> 5643[label="",style="solid", color="burlywood", weight=9]; 5643 -> 3963[label="",style="solid", color="burlywood", weight=3]; 3620[label="vwx4010",fontsize=16,color="green",shape="box"];3621[label="vwx3000",fontsize=16,color="green",shape="box"];3622[label="vwx3000",fontsize=16,color="green",shape="box"];3623[label="vwx4010",fontsize=16,color="green",shape="box"];3624 -> 2640[label="",style="dashed", color="red", weight=0]; 3624[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3624 -> 3964[label="",style="dashed", color="magenta", weight=3]; 3624 -> 3965[label="",style="dashed", color="magenta", weight=3]; 3625 -> 2641[label="",style="dashed", color="red", weight=0]; 3625[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3625 -> 3966[label="",style="dashed", color="magenta", weight=3]; 3625 -> 3967[label="",style="dashed", color="magenta", weight=3]; 3626 -> 2642[label="",style="dashed", color="red", weight=0]; 3626[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3626 -> 3968[label="",style="dashed", color="magenta", weight=3]; 3626 -> 3969[label="",style="dashed", color="magenta", weight=3]; 3627 -> 2643[label="",style="dashed", color="red", weight=0]; 3627[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3627 -> 3970[label="",style="dashed", color="magenta", weight=3]; 3627 -> 3971[label="",style="dashed", color="magenta", weight=3]; 3628 -> 2644[label="",style="dashed", color="red", weight=0]; 3628[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3628 -> 3972[label="",style="dashed", color="magenta", weight=3]; 3628 -> 3973[label="",style="dashed", color="magenta", weight=3]; 3629 -> 2645[label="",style="dashed", color="red", weight=0]; 3629[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3629 -> 3974[label="",style="dashed", color="magenta", weight=3]; 3629 -> 3975[label="",style="dashed", color="magenta", weight=3]; 3630 -> 2646[label="",style="dashed", color="red", weight=0]; 3630[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3630 -> 3976[label="",style="dashed", color="magenta", weight=3]; 3630 -> 3977[label="",style="dashed", color="magenta", weight=3]; 3631 -> 2647[label="",style="dashed", color="red", weight=0]; 3631[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3631 -> 3978[label="",style="dashed", color="magenta", weight=3]; 3631 -> 3979[label="",style="dashed", color="magenta", weight=3]; 3632 -> 2648[label="",style="dashed", color="red", weight=0]; 3632[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3632 -> 3980[label="",style="dashed", color="magenta", weight=3]; 3632 -> 3981[label="",style="dashed", color="magenta", weight=3]; 3633 -> 2649[label="",style="dashed", color="red", weight=0]; 3633[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3633 -> 3982[label="",style="dashed", color="magenta", weight=3]; 3633 -> 3983[label="",style="dashed", color="magenta", weight=3]; 3634 -> 2650[label="",style="dashed", color="red", weight=0]; 3634[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3634 -> 3984[label="",style="dashed", color="magenta", weight=3]; 3634 -> 3985[label="",style="dashed", color="magenta", weight=3]; 3635 -> 2651[label="",style="dashed", color="red", weight=0]; 3635[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3635 -> 3986[label="",style="dashed", color="magenta", weight=3]; 3635 -> 3987[label="",style="dashed", color="magenta", weight=3]; 3636 -> 2652[label="",style="dashed", color="red", weight=0]; 3636[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3636 -> 3988[label="",style="dashed", color="magenta", weight=3]; 3636 -> 3989[label="",style="dashed", color="magenta", weight=3]; 3637 -> 2653[label="",style="dashed", color="red", weight=0]; 3637[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3637 -> 3990[label="",style="dashed", color="magenta", weight=3]; 3637 -> 3991[label="",style="dashed", color="magenta", weight=3]; 3638[label="vwx3001",fontsize=16,color="green",shape="box"];3639[label="vwx4001",fontsize=16,color="green",shape="box"];3640 -> 2534[label="",style="dashed", color="red", weight=0]; 3640[label="vwx3000 * vwx4001",fontsize=16,color="magenta"];3640 -> 3992[label="",style="dashed", color="magenta", weight=3]; 3640 -> 3993[label="",style="dashed", color="magenta", weight=3]; 3641 -> 2534[label="",style="dashed", color="red", weight=0]; 3641[label="vwx3001 * vwx4000",fontsize=16,color="magenta"];3641 -> 3994[label="",style="dashed", color="magenta", weight=3]; 3641 -> 3995[label="",style="dashed", color="magenta", weight=3]; 3642 -> 2640[label="",style="dashed", color="red", weight=0]; 3642[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3642 -> 3996[label="",style="dashed", color="magenta", weight=3]; 3642 -> 3997[label="",style="dashed", color="magenta", weight=3]; 3643 -> 2641[label="",style="dashed", color="red", weight=0]; 3643[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3643 -> 3998[label="",style="dashed", color="magenta", weight=3]; 3643 -> 3999[label="",style="dashed", color="magenta", weight=3]; 3644 -> 2642[label="",style="dashed", color="red", weight=0]; 3644[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3644 -> 4000[label="",style="dashed", color="magenta", weight=3]; 3644 -> 4001[label="",style="dashed", color="magenta", weight=3]; 3645 -> 2643[label="",style="dashed", color="red", weight=0]; 3645[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3645 -> 4002[label="",style="dashed", color="magenta", weight=3]; 3645 -> 4003[label="",style="dashed", color="magenta", weight=3]; 3646 -> 2644[label="",style="dashed", color="red", weight=0]; 3646[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3646 -> 4004[label="",style="dashed", color="magenta", weight=3]; 3646 -> 4005[label="",style="dashed", color="magenta", weight=3]; 3647 -> 2645[label="",style="dashed", color="red", weight=0]; 3647[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3647 -> 4006[label="",style="dashed", color="magenta", weight=3]; 3647 -> 4007[label="",style="dashed", color="magenta", weight=3]; 3648 -> 2646[label="",style="dashed", color="red", weight=0]; 3648[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3648 -> 4008[label="",style="dashed", color="magenta", weight=3]; 3648 -> 4009[label="",style="dashed", color="magenta", weight=3]; 3649 -> 2647[label="",style="dashed", color="red", weight=0]; 3649[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3649 -> 4010[label="",style="dashed", color="magenta", weight=3]; 3649 -> 4011[label="",style="dashed", color="magenta", weight=3]; 3650 -> 2648[label="",style="dashed", color="red", weight=0]; 3650[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3650 -> 4012[label="",style="dashed", color="magenta", weight=3]; 3650 -> 4013[label="",style="dashed", color="magenta", weight=3]; 3651 -> 2649[label="",style="dashed", color="red", weight=0]; 3651[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3651 -> 4014[label="",style="dashed", color="magenta", weight=3]; 3651 -> 4015[label="",style="dashed", color="magenta", weight=3]; 3652 -> 2650[label="",style="dashed", color="red", weight=0]; 3652[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3652 -> 4016[label="",style="dashed", color="magenta", weight=3]; 3652 -> 4017[label="",style="dashed", color="magenta", weight=3]; 3653 -> 2651[label="",style="dashed", color="red", weight=0]; 3653[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3653 -> 4018[label="",style="dashed", color="magenta", weight=3]; 3653 -> 4019[label="",style="dashed", color="magenta", weight=3]; 3654 -> 2652[label="",style="dashed", color="red", weight=0]; 3654[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3654 -> 4020[label="",style="dashed", color="magenta", weight=3]; 3654 -> 4021[label="",style="dashed", color="magenta", weight=3]; 3655 -> 2653[label="",style="dashed", color="red", weight=0]; 3655[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3655 -> 4022[label="",style="dashed", color="magenta", weight=3]; 3655 -> 4023[label="",style="dashed", color="magenta", weight=3]; 3656 -> 2640[label="",style="dashed", color="red", weight=0]; 3656[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];3656 -> 4024[label="",style="dashed", color="magenta", weight=3]; 3656 -> 4025[label="",style="dashed", color="magenta", weight=3]; 3657 -> 2641[label="",style="dashed", color="red", weight=0]; 3657[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];3657 -> 4026[label="",style="dashed", color="magenta", weight=3]; 3657 -> 4027[label="",style="dashed", color="magenta", weight=3]; 3658 -> 2642[label="",style="dashed", color="red", weight=0]; 3658[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];3658 -> 4028[label="",style="dashed", color="magenta", weight=3]; 3658 -> 4029[label="",style="dashed", color="magenta", weight=3]; 3659 -> 2643[label="",style="dashed", color="red", weight=0]; 3659[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];3659 -> 4030[label="",style="dashed", color="magenta", weight=3]; 3659 -> 4031[label="",style="dashed", color="magenta", weight=3]; 3660 -> 2644[label="",style="dashed", color="red", weight=0]; 3660[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];3660 -> 4032[label="",style="dashed", color="magenta", weight=3]; 3660 -> 4033[label="",style="dashed", color="magenta", weight=3]; 3661 -> 2645[label="",style="dashed", color="red", weight=0]; 3661[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];3661 -> 4034[label="",style="dashed", color="magenta", weight=3]; 3661 -> 4035[label="",style="dashed", color="magenta", weight=3]; 3662 -> 2646[label="",style="dashed", color="red", weight=0]; 3662[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];3662 -> 4036[label="",style="dashed", color="magenta", weight=3]; 3662 -> 4037[label="",style="dashed", color="magenta", weight=3]; 3663 -> 2647[label="",style="dashed", color="red", weight=0]; 3663[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];3663 -> 4038[label="",style="dashed", color="magenta", weight=3]; 3663 -> 4039[label="",style="dashed", color="magenta", weight=3]; 3664 -> 2648[label="",style="dashed", color="red", weight=0]; 3664[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];3664 -> 4040[label="",style="dashed", color="magenta", weight=3]; 3664 -> 4041[label="",style="dashed", color="magenta", weight=3]; 3665 -> 2649[label="",style="dashed", color="red", weight=0]; 3665[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];3665 -> 4042[label="",style="dashed", color="magenta", weight=3]; 3665 -> 4043[label="",style="dashed", color="magenta", weight=3]; 3666 -> 2650[label="",style="dashed", color="red", weight=0]; 3666[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];3666 -> 4044[label="",style="dashed", color="magenta", weight=3]; 3666 -> 4045[label="",style="dashed", color="magenta", weight=3]; 3667 -> 2651[label="",style="dashed", color="red", weight=0]; 3667[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];3667 -> 4046[label="",style="dashed", color="magenta", weight=3]; 3667 -> 4047[label="",style="dashed", color="magenta", weight=3]; 3668 -> 2652[label="",style="dashed", color="red", weight=0]; 3668[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];3668 -> 4048[label="",style="dashed", color="magenta", weight=3]; 3668 -> 4049[label="",style="dashed", color="magenta", weight=3]; 3669 -> 2653[label="",style="dashed", color="red", weight=0]; 3669[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];3669 -> 4050[label="",style="dashed", color="magenta", weight=3]; 3669 -> 4051[label="",style="dashed", color="magenta", weight=3]; 3670 -> 2534[label="",style="dashed", color="red", weight=0]; 3670[label="vwx3000 * vwx4001",fontsize=16,color="magenta"];3670 -> 4052[label="",style="dashed", color="magenta", weight=3]; 3670 -> 4053[label="",style="dashed", color="magenta", weight=3]; 3671 -> 2534[label="",style="dashed", color="red", weight=0]; 3671[label="vwx3001 * vwx4000",fontsize=16,color="magenta"];3671 -> 4054[label="",style="dashed", color="magenta", weight=3]; 3671 -> 4055[label="",style="dashed", color="magenta", weight=3]; 3672[label="primEqInt (Pos (Succ vwx30000)) (Pos (Succ vwx40000))",fontsize=16,color="black",shape="box"];3672 -> 4056[label="",style="solid", color="black", weight=3]; 3673[label="primEqInt (Pos (Succ vwx30000)) (Pos Zero)",fontsize=16,color="black",shape="box"];3673 -> 4057[label="",style="solid", color="black", weight=3]; 3674[label="False",fontsize=16,color="green",shape="box"];3675[label="primEqInt (Pos Zero) (Pos (Succ vwx40000))",fontsize=16,color="black",shape="box"];3675 -> 4058[label="",style="solid", color="black", weight=3]; 3676[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];3676 -> 4059[label="",style="solid", color="black", weight=3]; 3677[label="primEqInt (Pos Zero) (Neg (Succ vwx40000))",fontsize=16,color="black",shape="box"];3677 -> 4060[label="",style="solid", color="black", weight=3]; 3678[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];3678 -> 4061[label="",style="solid", color="black", weight=3]; 3679[label="False",fontsize=16,color="green",shape="box"];3680[label="primEqInt (Neg (Succ vwx30000)) (Neg (Succ vwx40000))",fontsize=16,color="black",shape="box"];3680 -> 4062[label="",style="solid", color="black", weight=3]; 3681[label="primEqInt (Neg (Succ vwx30000)) (Neg Zero)",fontsize=16,color="black",shape="box"];3681 -> 4063[label="",style="solid", color="black", weight=3]; 3682[label="primEqInt (Neg Zero) (Pos (Succ vwx40000))",fontsize=16,color="black",shape="box"];3682 -> 4064[label="",style="solid", color="black", weight=3]; 3683[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];3683 -> 4065[label="",style="solid", color="black", weight=3]; 3684[label="primEqInt (Neg Zero) (Neg (Succ vwx40000))",fontsize=16,color="black",shape="box"];3684 -> 4066[label="",style="solid", color="black", weight=3]; 3685[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];3685 -> 4067[label="",style="solid", color="black", weight=3]; 3686[label="vwx3000",fontsize=16,color="green",shape="box"];3687[label="vwx4000",fontsize=16,color="green",shape="box"];3688[label="vwx3000",fontsize=16,color="green",shape="box"];3689[label="vwx4000",fontsize=16,color="green",shape="box"];3690[label="vwx3000",fontsize=16,color="green",shape="box"];3691[label="vwx4000",fontsize=16,color="green",shape="box"];3692[label="vwx3000",fontsize=16,color="green",shape="box"];3693[label="vwx4000",fontsize=16,color="green",shape="box"];3694[label="vwx3000",fontsize=16,color="green",shape="box"];3695[label="vwx4000",fontsize=16,color="green",shape="box"];3696[label="vwx3000",fontsize=16,color="green",shape="box"];3697[label="vwx4000",fontsize=16,color="green",shape="box"];3698[label="vwx3000",fontsize=16,color="green",shape="box"];3699[label="vwx4000",fontsize=16,color="green",shape="box"];3700[label="vwx3000",fontsize=16,color="green",shape="box"];3701[label="vwx4000",fontsize=16,color="green",shape="box"];3702[label="vwx3000",fontsize=16,color="green",shape="box"];3703[label="vwx4000",fontsize=16,color="green",shape="box"];3704[label="vwx3000",fontsize=16,color="green",shape="box"];3705[label="vwx4000",fontsize=16,color="green",shape="box"];3706[label="vwx3000",fontsize=16,color="green",shape="box"];3707[label="vwx4000",fontsize=16,color="green",shape="box"];3708[label="vwx3000",fontsize=16,color="green",shape="box"];3709[label="vwx4000",fontsize=16,color="green",shape="box"];3710[label="vwx3000",fontsize=16,color="green",shape="box"];3711[label="vwx4000",fontsize=16,color="green",shape="box"];3712[label="vwx3000",fontsize=16,color="green",shape="box"];3713[label="vwx4000",fontsize=16,color="green",shape="box"];3714 -> 2643[label="",style="dashed", color="red", weight=0]; 3714[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3714 -> 4068[label="",style="dashed", color="magenta", weight=3]; 3714 -> 4069[label="",style="dashed", color="magenta", weight=3]; 3715 -> 2646[label="",style="dashed", color="red", weight=0]; 3715[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3715 -> 4070[label="",style="dashed", color="magenta", weight=3]; 3715 -> 4071[label="",style="dashed", color="magenta", weight=3]; 3716 -> 2643[label="",style="dashed", color="red", weight=0]; 3716[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];3716 -> 4072[label="",style="dashed", color="magenta", weight=3]; 3716 -> 4073[label="",style="dashed", color="magenta", weight=3]; 3717 -> 2646[label="",style="dashed", color="red", weight=0]; 3717[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];3717 -> 4074[label="",style="dashed", color="magenta", weight=3]; 3717 -> 4075[label="",style="dashed", color="magenta", weight=3]; 3718[label="vwx3000",fontsize=16,color="green",shape="box"];3719[label="vwx4000",fontsize=16,color="green",shape="box"];3720[label="vwx3000",fontsize=16,color="green",shape="box"];3721[label="vwx4000",fontsize=16,color="green",shape="box"];3722[label="vwx3000",fontsize=16,color="green",shape="box"];3723[label="vwx4000",fontsize=16,color="green",shape="box"];3724[label="vwx3000",fontsize=16,color="green",shape="box"];3725[label="vwx4000",fontsize=16,color="green",shape="box"];3726[label="vwx3000",fontsize=16,color="green",shape="box"];3727[label="vwx4000",fontsize=16,color="green",shape="box"];3728[label="vwx3000",fontsize=16,color="green",shape="box"];3729[label="vwx4000",fontsize=16,color="green",shape="box"];3730[label="vwx3000",fontsize=16,color="green",shape="box"];3731[label="vwx4000",fontsize=16,color="green",shape="box"];3732[label="vwx3000",fontsize=16,color="green",shape="box"];3733[label="vwx4000",fontsize=16,color="green",shape="box"];3734[label="vwx3000",fontsize=16,color="green",shape="box"];3735[label="vwx4000",fontsize=16,color="green",shape="box"];3736[label="vwx3000",fontsize=16,color="green",shape="box"];3737[label="vwx4000",fontsize=16,color="green",shape="box"];3738[label="vwx3000",fontsize=16,color="green",shape="box"];3739[label="vwx4000",fontsize=16,color="green",shape="box"];3740[label="vwx3000",fontsize=16,color="green",shape="box"];3741[label="vwx4000",fontsize=16,color="green",shape="box"];3742[label="vwx3000",fontsize=16,color="green",shape="box"];3743[label="vwx4000",fontsize=16,color="green",shape="box"];3744[label="vwx3000",fontsize=16,color="green",shape="box"];3745[label="vwx4000",fontsize=16,color="green",shape="box"];3746[label="vwx3000",fontsize=16,color="green",shape="box"];3747[label="vwx4000",fontsize=16,color="green",shape="box"];3748[label="vwx3000",fontsize=16,color="green",shape="box"];3749[label="vwx4000",fontsize=16,color="green",shape="box"];3750[label="vwx3000",fontsize=16,color="green",shape="box"];3751[label="vwx4000",fontsize=16,color="green",shape="box"];3752[label="vwx3000",fontsize=16,color="green",shape="box"];3753[label="vwx4000",fontsize=16,color="green",shape="box"];3754[label="vwx3000",fontsize=16,color="green",shape="box"];3755[label="vwx4000",fontsize=16,color="green",shape="box"];3756[label="vwx3000",fontsize=16,color="green",shape="box"];3757[label="vwx4000",fontsize=16,color="green",shape="box"];3758[label="vwx3000",fontsize=16,color="green",shape="box"];3759[label="vwx4000",fontsize=16,color="green",shape="box"];3760[label="vwx3000",fontsize=16,color="green",shape="box"];3761[label="vwx4000",fontsize=16,color="green",shape="box"];3762[label="vwx3000",fontsize=16,color="green",shape="box"];3763[label="vwx4000",fontsize=16,color="green",shape="box"];3764[label="vwx3000",fontsize=16,color="green",shape="box"];3765[label="vwx4000",fontsize=16,color="green",shape="box"];3766[label="vwx3000",fontsize=16,color="green",shape="box"];3767[label="vwx4000",fontsize=16,color="green",shape="box"];3768[label="vwx3000",fontsize=16,color="green",shape="box"];3769[label="vwx4000",fontsize=16,color="green",shape="box"];3770[label="vwx3000",fontsize=16,color="green",shape="box"];3771[label="vwx4000",fontsize=16,color="green",shape="box"];3772[label="vwx3000",fontsize=16,color="green",shape="box"];3773[label="vwx4000",fontsize=16,color="green",shape="box"];3774[label="primEqNat (Succ vwx30000) vwx4000",fontsize=16,color="burlywood",shape="box"];5644[label="vwx4000/Succ vwx40000",fontsize=10,color="white",style="solid",shape="box"];3774 -> 5644[label="",style="solid", color="burlywood", weight=9]; 5644 -> 4076[label="",style="solid", color="burlywood", weight=3]; 5645[label="vwx4000/Zero",fontsize=10,color="white",style="solid",shape="box"];3774 -> 5645[label="",style="solid", color="burlywood", weight=9]; 5645 -> 4077[label="",style="solid", color="burlywood", weight=3]; 3775[label="primEqNat Zero vwx4000",fontsize=16,color="burlywood",shape="box"];5646[label="vwx4000/Succ vwx40000",fontsize=10,color="white",style="solid",shape="box"];3775 -> 5646[label="",style="solid", color="burlywood", weight=9]; 5646 -> 4078[label="",style="solid", color="burlywood", weight=3]; 5647[label="vwx4000/Zero",fontsize=10,color="white",style="solid",shape="box"];3775 -> 5647[label="",style="solid", color="burlywood", weight=9]; 5647 -> 4079[label="",style="solid", color="burlywood", weight=3]; 3776 -> 2640[label="",style="dashed", color="red", weight=0]; 3776[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3776 -> 4080[label="",style="dashed", color="magenta", weight=3]; 3776 -> 4081[label="",style="dashed", color="magenta", weight=3]; 3777 -> 2641[label="",style="dashed", color="red", weight=0]; 3777[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3777 -> 4082[label="",style="dashed", color="magenta", weight=3]; 3777 -> 4083[label="",style="dashed", color="magenta", weight=3]; 3778 -> 2642[label="",style="dashed", color="red", weight=0]; 3778[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3778 -> 4084[label="",style="dashed", color="magenta", weight=3]; 3778 -> 4085[label="",style="dashed", color="magenta", weight=3]; 3779 -> 2643[label="",style="dashed", color="red", weight=0]; 3779[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3779 -> 4086[label="",style="dashed", color="magenta", weight=3]; 3779 -> 4087[label="",style="dashed", color="magenta", weight=3]; 3780 -> 2644[label="",style="dashed", color="red", weight=0]; 3780[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3780 -> 4088[label="",style="dashed", color="magenta", weight=3]; 3780 -> 4089[label="",style="dashed", color="magenta", weight=3]; 3781 -> 2645[label="",style="dashed", color="red", weight=0]; 3781[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3781 -> 4090[label="",style="dashed", color="magenta", weight=3]; 3781 -> 4091[label="",style="dashed", color="magenta", weight=3]; 3782 -> 2646[label="",style="dashed", color="red", weight=0]; 3782[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3782 -> 4092[label="",style="dashed", color="magenta", weight=3]; 3782 -> 4093[label="",style="dashed", color="magenta", weight=3]; 3783 -> 2647[label="",style="dashed", color="red", weight=0]; 3783[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3783 -> 4094[label="",style="dashed", color="magenta", weight=3]; 3783 -> 4095[label="",style="dashed", color="magenta", weight=3]; 3784 -> 2648[label="",style="dashed", color="red", weight=0]; 3784[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3784 -> 4096[label="",style="dashed", color="magenta", weight=3]; 3784 -> 4097[label="",style="dashed", color="magenta", weight=3]; 3785 -> 2649[label="",style="dashed", color="red", weight=0]; 3785[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3785 -> 4098[label="",style="dashed", color="magenta", weight=3]; 3785 -> 4099[label="",style="dashed", color="magenta", weight=3]; 3786 -> 2650[label="",style="dashed", color="red", weight=0]; 3786[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3786 -> 4100[label="",style="dashed", color="magenta", weight=3]; 3786 -> 4101[label="",style="dashed", color="magenta", weight=3]; 3787 -> 2651[label="",style="dashed", color="red", weight=0]; 3787[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3787 -> 4102[label="",style="dashed", color="magenta", weight=3]; 3787 -> 4103[label="",style="dashed", color="magenta", weight=3]; 3788 -> 2652[label="",style="dashed", color="red", weight=0]; 3788[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3788 -> 4104[label="",style="dashed", color="magenta", weight=3]; 3788 -> 4105[label="",style="dashed", color="magenta", weight=3]; 3789 -> 2653[label="",style="dashed", color="red", weight=0]; 3789[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3789 -> 4106[label="",style="dashed", color="magenta", weight=3]; 3789 -> 4107[label="",style="dashed", color="magenta", weight=3]; 3790[label="vwx3001 == vwx4001",fontsize=16,color="blue",shape="box"];5648[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3790 -> 5648[label="",style="solid", color="blue", weight=9]; 5648 -> 4108[label="",style="solid", color="blue", weight=3]; 5649[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3790 -> 5649[label="",style="solid", color="blue", weight=9]; 5649 -> 4109[label="",style="solid", color="blue", weight=3]; 5650[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3790 -> 5650[label="",style="solid", color="blue", weight=9]; 5650 -> 4110[label="",style="solid", color="blue", weight=3]; 5651[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3790 -> 5651[label="",style="solid", color="blue", weight=9]; 5651 -> 4111[label="",style="solid", color="blue", weight=3]; 5652[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3790 -> 5652[label="",style="solid", color="blue", weight=9]; 5652 -> 4112[label="",style="solid", color="blue", weight=3]; 5653[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3790 -> 5653[label="",style="solid", color="blue", weight=9]; 5653 -> 4113[label="",style="solid", color="blue", weight=3]; 5654[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3790 -> 5654[label="",style="solid", color="blue", weight=9]; 5654 -> 4114[label="",style="solid", color="blue", weight=3]; 5655[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3790 -> 5655[label="",style="solid", color="blue", weight=9]; 5655 -> 4115[label="",style="solid", color="blue", weight=3]; 5656[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3790 -> 5656[label="",style="solid", color="blue", weight=9]; 5656 -> 4116[label="",style="solid", color="blue", weight=3]; 5657[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3790 -> 5657[label="",style="solid", color="blue", weight=9]; 5657 -> 4117[label="",style="solid", color="blue", weight=3]; 5658[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3790 -> 5658[label="",style="solid", color="blue", weight=9]; 5658 -> 4118[label="",style="solid", color="blue", weight=3]; 5659[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3790 -> 5659[label="",style="solid", color="blue", weight=9]; 5659 -> 4119[label="",style="solid", color="blue", weight=3]; 5660[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3790 -> 5660[label="",style="solid", color="blue", weight=9]; 5660 -> 4120[label="",style="solid", color="blue", weight=3]; 5661[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3790 -> 5661[label="",style="solid", color="blue", weight=9]; 5661 -> 4121[label="",style="solid", color="blue", weight=3]; 3791[label="vwx3002 == vwx4002",fontsize=16,color="blue",shape="box"];5662[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3791 -> 5662[label="",style="solid", color="blue", weight=9]; 5662 -> 4122[label="",style="solid", color="blue", weight=3]; 5663[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3791 -> 5663[label="",style="solid", color="blue", weight=9]; 5663 -> 4123[label="",style="solid", color="blue", weight=3]; 5664[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3791 -> 5664[label="",style="solid", color="blue", weight=9]; 5664 -> 4124[label="",style="solid", color="blue", weight=3]; 5665[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3791 -> 5665[label="",style="solid", color="blue", weight=9]; 5665 -> 4125[label="",style="solid", color="blue", weight=3]; 5666[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3791 -> 5666[label="",style="solid", color="blue", weight=9]; 5666 -> 4126[label="",style="solid", color="blue", weight=3]; 5667[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3791 -> 5667[label="",style="solid", color="blue", weight=9]; 5667 -> 4127[label="",style="solid", color="blue", weight=3]; 5668[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3791 -> 5668[label="",style="solid", color="blue", weight=9]; 5668 -> 4128[label="",style="solid", color="blue", weight=3]; 5669[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3791 -> 5669[label="",style="solid", color="blue", weight=9]; 5669 -> 4129[label="",style="solid", color="blue", weight=3]; 5670[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3791 -> 5670[label="",style="solid", color="blue", weight=9]; 5670 -> 4130[label="",style="solid", color="blue", weight=3]; 5671[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3791 -> 5671[label="",style="solid", color="blue", weight=9]; 5671 -> 4131[label="",style="solid", color="blue", weight=3]; 5672[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3791 -> 5672[label="",style="solid", color="blue", weight=9]; 5672 -> 4132[label="",style="solid", color="blue", weight=3]; 5673[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3791 -> 5673[label="",style="solid", color="blue", weight=9]; 5673 -> 4133[label="",style="solid", color="blue", weight=3]; 5674[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3791 -> 5674[label="",style="solid", color="blue", weight=9]; 5674 -> 4134[label="",style="solid", color="blue", weight=3]; 5675[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3791 -> 5675[label="",style="solid", color="blue", weight=9]; 5675 -> 4135[label="",style="solid", color="blue", weight=3]; 3792 -> 4136[label="",style="dashed", color="red", weight=0]; 3792[label="compare vwx191 vwx192 /= GT",fontsize=16,color="magenta"];3792 -> 4137[label="",style="dashed", color="magenta", weight=3]; 3793 -> 4136[label="",style="dashed", color="red", weight=0]; 3793[label="compare vwx191 vwx192 /= GT",fontsize=16,color="magenta"];3793 -> 4138[label="",style="dashed", color="magenta", weight=3]; 3794[label="LT <= vwx192",fontsize=16,color="burlywood",shape="box"];5676[label="vwx192/LT",fontsize=10,color="white",style="solid",shape="box"];3794 -> 5676[label="",style="solid", color="burlywood", weight=9]; 5676 -> 4145[label="",style="solid", color="burlywood", weight=3]; 5677[label="vwx192/EQ",fontsize=10,color="white",style="solid",shape="box"];3794 -> 5677[label="",style="solid", color="burlywood", weight=9]; 5677 -> 4146[label="",style="solid", color="burlywood", weight=3]; 5678[label="vwx192/GT",fontsize=10,color="white",style="solid",shape="box"];3794 -> 5678[label="",style="solid", color="burlywood", weight=9]; 5678 -> 4147[label="",style="solid", color="burlywood", weight=3]; 3795[label="EQ <= vwx192",fontsize=16,color="burlywood",shape="box"];5679[label="vwx192/LT",fontsize=10,color="white",style="solid",shape="box"];3795 -> 5679[label="",style="solid", color="burlywood", weight=9]; 5679 -> 4148[label="",style="solid", color="burlywood", weight=3]; 5680[label="vwx192/EQ",fontsize=10,color="white",style="solid",shape="box"];3795 -> 5680[label="",style="solid", color="burlywood", weight=9]; 5680 -> 4149[label="",style="solid", color="burlywood", weight=3]; 5681[label="vwx192/GT",fontsize=10,color="white",style="solid",shape="box"];3795 -> 5681[label="",style="solid", color="burlywood", weight=9]; 5681 -> 4150[label="",style="solid", color="burlywood", weight=3]; 3796[label="GT <= vwx192",fontsize=16,color="burlywood",shape="box"];5682[label="vwx192/LT",fontsize=10,color="white",style="solid",shape="box"];3796 -> 5682[label="",style="solid", color="burlywood", weight=9]; 5682 -> 4151[label="",style="solid", color="burlywood", weight=3]; 5683[label="vwx192/EQ",fontsize=10,color="white",style="solid",shape="box"];3796 -> 5683[label="",style="solid", color="burlywood", weight=9]; 5683 -> 4152[label="",style="solid", color="burlywood", weight=3]; 5684[label="vwx192/GT",fontsize=10,color="white",style="solid",shape="box"];3796 -> 5684[label="",style="solid", color="burlywood", weight=9]; 5684 -> 4153[label="",style="solid", color="burlywood", weight=3]; 3797 -> 4136[label="",style="dashed", color="red", weight=0]; 3797[label="compare vwx191 vwx192 /= GT",fontsize=16,color="magenta"];3797 -> 4139[label="",style="dashed", color="magenta", weight=3]; 3798 -> 4136[label="",style="dashed", color="red", weight=0]; 3798[label="compare vwx191 vwx192 /= GT",fontsize=16,color="magenta"];3798 -> 4140[label="",style="dashed", color="magenta", weight=3]; 3799[label="False <= vwx192",fontsize=16,color="burlywood",shape="box"];5685[label="vwx192/False",fontsize=10,color="white",style="solid",shape="box"];3799 -> 5685[label="",style="solid", color="burlywood", weight=9]; 5685 -> 4154[label="",style="solid", color="burlywood", weight=3]; 5686[label="vwx192/True",fontsize=10,color="white",style="solid",shape="box"];3799 -> 5686[label="",style="solid", color="burlywood", weight=9]; 5686 -> 4155[label="",style="solid", color="burlywood", weight=3]; 3800[label="True <= vwx192",fontsize=16,color="burlywood",shape="box"];5687[label="vwx192/False",fontsize=10,color="white",style="solid",shape="box"];3800 -> 5687[label="",style="solid", color="burlywood", weight=9]; 5687 -> 4156[label="",style="solid", color="burlywood", weight=3]; 5688[label="vwx192/True",fontsize=10,color="white",style="solid",shape="box"];3800 -> 5688[label="",style="solid", color="burlywood", weight=9]; 5688 -> 4157[label="",style="solid", color="burlywood", weight=3]; 3801[label="Nothing <= vwx192",fontsize=16,color="burlywood",shape="box"];5689[label="vwx192/Nothing",fontsize=10,color="white",style="solid",shape="box"];3801 -> 5689[label="",style="solid", color="burlywood", weight=9]; 5689 -> 4158[label="",style="solid", color="burlywood", weight=3]; 5690[label="vwx192/Just vwx1920",fontsize=10,color="white",style="solid",shape="box"];3801 -> 5690[label="",style="solid", color="burlywood", weight=9]; 5690 -> 4159[label="",style="solid", color="burlywood", weight=3]; 3802[label="Just vwx1910 <= vwx192",fontsize=16,color="burlywood",shape="box"];5691[label="vwx192/Nothing",fontsize=10,color="white",style="solid",shape="box"];3802 -> 5691[label="",style="solid", color="burlywood", weight=9]; 5691 -> 4160[label="",style="solid", color="burlywood", weight=3]; 5692[label="vwx192/Just vwx1920",fontsize=10,color="white",style="solid",shape="box"];3802 -> 5692[label="",style="solid", color="burlywood", weight=9]; 5692 -> 4161[label="",style="solid", color="burlywood", weight=3]; 3803[label="Left vwx1910 <= vwx192",fontsize=16,color="burlywood",shape="box"];5693[label="vwx192/Left vwx1920",fontsize=10,color="white",style="solid",shape="box"];3803 -> 5693[label="",style="solid", color="burlywood", weight=9]; 5693 -> 4162[label="",style="solid", color="burlywood", weight=3]; 5694[label="vwx192/Right vwx1920",fontsize=10,color="white",style="solid",shape="box"];3803 -> 5694[label="",style="solid", color="burlywood", weight=9]; 5694 -> 4163[label="",style="solid", color="burlywood", weight=3]; 3804[label="Right vwx1910 <= vwx192",fontsize=16,color="burlywood",shape="box"];5695[label="vwx192/Left vwx1920",fontsize=10,color="white",style="solid",shape="box"];3804 -> 5695[label="",style="solid", color="burlywood", weight=9]; 5695 -> 4164[label="",style="solid", color="burlywood", weight=3]; 5696[label="vwx192/Right vwx1920",fontsize=10,color="white",style="solid",shape="box"];3804 -> 5696[label="",style="solid", color="burlywood", weight=9]; 5696 -> 4165[label="",style="solid", color="burlywood", weight=3]; 3805 -> 4136[label="",style="dashed", color="red", weight=0]; 3805[label="compare vwx191 vwx192 /= GT",fontsize=16,color="magenta"];3805 -> 4141[label="",style="dashed", color="magenta", weight=3]; 3806[label="(vwx1910,vwx1911,vwx1912) <= vwx192",fontsize=16,color="burlywood",shape="box"];5697[label="vwx192/(vwx1920,vwx1921,vwx1922)",fontsize=10,color="white",style="solid",shape="box"];3806 -> 5697[label="",style="solid", color="burlywood", weight=9]; 5697 -> 4166[label="",style="solid", color="burlywood", weight=3]; 3807 -> 4136[label="",style="dashed", color="red", weight=0]; 3807[label="compare vwx191 vwx192 /= GT",fontsize=16,color="magenta"];3807 -> 4142[label="",style="dashed", color="magenta", weight=3]; 3808[label="(vwx1910,vwx1911) <= vwx192",fontsize=16,color="burlywood",shape="box"];5698[label="vwx192/(vwx1920,vwx1921)",fontsize=10,color="white",style="solid",shape="box"];3808 -> 5698[label="",style="solid", color="burlywood", weight=9]; 5698 -> 4167[label="",style="solid", color="burlywood", weight=3]; 3809 -> 4136[label="",style="dashed", color="red", weight=0]; 3809[label="compare vwx191 vwx192 /= GT",fontsize=16,color="magenta"];3809 -> 4143[label="",style="dashed", color="magenta", weight=3]; 3810 -> 4136[label="",style="dashed", color="red", weight=0]; 3810[label="compare vwx191 vwx192 /= GT",fontsize=16,color="magenta"];3810 -> 4144[label="",style="dashed", color="magenta", weight=3]; 3811[label="compare0 (Just vwx271) (Just vwx272) True",fontsize=16,color="black",shape="box"];3811 -> 4168[label="",style="solid", color="black", weight=3]; 3812[label="vwx198",fontsize=16,color="green",shape="box"];3813[label="vwx199",fontsize=16,color="green",shape="box"];3814[label="vwx198",fontsize=16,color="green",shape="box"];3815[label="vwx199",fontsize=16,color="green",shape="box"];3816[label="vwx198",fontsize=16,color="green",shape="box"];3817[label="vwx199",fontsize=16,color="green",shape="box"];3818[label="vwx198",fontsize=16,color="green",shape="box"];3819[label="vwx199",fontsize=16,color="green",shape="box"];3820[label="vwx198",fontsize=16,color="green",shape="box"];3821[label="vwx199",fontsize=16,color="green",shape="box"];3822[label="vwx198",fontsize=16,color="green",shape="box"];3823[label="vwx199",fontsize=16,color="green",shape="box"];3824[label="vwx198",fontsize=16,color="green",shape="box"];3825[label="vwx199",fontsize=16,color="green",shape="box"];3826[label="vwx198",fontsize=16,color="green",shape="box"];3827[label="vwx199",fontsize=16,color="green",shape="box"];3828[label="vwx198",fontsize=16,color="green",shape="box"];3829[label="vwx199",fontsize=16,color="green",shape="box"];3830[label="vwx198",fontsize=16,color="green",shape="box"];3831[label="vwx199",fontsize=16,color="green",shape="box"];3832[label="vwx198",fontsize=16,color="green",shape="box"];3833[label="vwx199",fontsize=16,color="green",shape="box"];3834[label="vwx198",fontsize=16,color="green",shape="box"];3835[label="vwx199",fontsize=16,color="green",shape="box"];3836[label="vwx198",fontsize=16,color="green",shape="box"];3837[label="vwx199",fontsize=16,color="green",shape="box"];3838[label="vwx198",fontsize=16,color="green",shape="box"];3839[label="vwx199",fontsize=16,color="green",shape="box"];3840[label="compare0 (Left vwx278) (Left vwx279) True",fontsize=16,color="black",shape="box"];3840 -> 4169[label="",style="solid", color="black", weight=3]; 3841[label="vwx205",fontsize=16,color="green",shape="box"];3842[label="vwx206",fontsize=16,color="green",shape="box"];3843[label="vwx205",fontsize=16,color="green",shape="box"];3844[label="vwx206",fontsize=16,color="green",shape="box"];3845[label="vwx205",fontsize=16,color="green",shape="box"];3846[label="vwx206",fontsize=16,color="green",shape="box"];3847[label="vwx205",fontsize=16,color="green",shape="box"];3848[label="vwx206",fontsize=16,color="green",shape="box"];3849[label="vwx205",fontsize=16,color="green",shape="box"];3850[label="vwx206",fontsize=16,color="green",shape="box"];3851[label="vwx205",fontsize=16,color="green",shape="box"];3852[label="vwx206",fontsize=16,color="green",shape="box"];3853[label="vwx205",fontsize=16,color="green",shape="box"];3854[label="vwx206",fontsize=16,color="green",shape="box"];3855[label="vwx205",fontsize=16,color="green",shape="box"];3856[label="vwx206",fontsize=16,color="green",shape="box"];3857[label="vwx205",fontsize=16,color="green",shape="box"];3858[label="vwx206",fontsize=16,color="green",shape="box"];3859[label="vwx205",fontsize=16,color="green",shape="box"];3860[label="vwx206",fontsize=16,color="green",shape="box"];3861[label="vwx205",fontsize=16,color="green",shape="box"];3862[label="vwx206",fontsize=16,color="green",shape="box"];3863[label="vwx205",fontsize=16,color="green",shape="box"];3864[label="vwx206",fontsize=16,color="green",shape="box"];3865[label="vwx205",fontsize=16,color="green",shape="box"];3866[label="vwx206",fontsize=16,color="green",shape="box"];3867[label="vwx205",fontsize=16,color="green",shape="box"];3868[label="vwx206",fontsize=16,color="green",shape="box"];3869[label="compare0 (Right vwx285) (Right vwx286) True",fontsize=16,color="black",shape="box"];3869 -> 4170[label="",style="solid", color="black", weight=3]; 3870 -> 2642[label="",style="dashed", color="red", weight=0]; 3870[label="vwx242 == vwx245",fontsize=16,color="magenta"];3870 -> 4171[label="",style="dashed", color="magenta", weight=3]; 3870 -> 4172[label="",style="dashed", color="magenta", weight=3]; 3871 -> 2645[label="",style="dashed", color="red", weight=0]; 3871[label="vwx242 == vwx245",fontsize=16,color="magenta"];3871 -> 4173[label="",style="dashed", color="magenta", weight=3]; 3871 -> 4174[label="",style="dashed", color="magenta", weight=3]; 3872 -> 2641[label="",style="dashed", color="red", weight=0]; 3872[label="vwx242 == vwx245",fontsize=16,color="magenta"];3872 -> 4175[label="",style="dashed", color="magenta", weight=3]; 3872 -> 4176[label="",style="dashed", color="magenta", weight=3]; 3873 -> 2643[label="",style="dashed", color="red", weight=0]; 3873[label="vwx242 == vwx245",fontsize=16,color="magenta"];3873 -> 4177[label="",style="dashed", color="magenta", weight=3]; 3873 -> 4178[label="",style="dashed", color="magenta", weight=3]; 3874 -> 2652[label="",style="dashed", color="red", weight=0]; 3874[label="vwx242 == vwx245",fontsize=16,color="magenta"];3874 -> 4179[label="",style="dashed", color="magenta", weight=3]; 3874 -> 4180[label="",style="dashed", color="magenta", weight=3]; 3875 -> 2647[label="",style="dashed", color="red", weight=0]; 3875[label="vwx242 == vwx245",fontsize=16,color="magenta"];3875 -> 4181[label="",style="dashed", color="magenta", weight=3]; 3875 -> 4182[label="",style="dashed", color="magenta", weight=3]; 3876 -> 2648[label="",style="dashed", color="red", weight=0]; 3876[label="vwx242 == vwx245",fontsize=16,color="magenta"];3876 -> 4183[label="",style="dashed", color="magenta", weight=3]; 3876 -> 4184[label="",style="dashed", color="magenta", weight=3]; 3877 -> 2650[label="",style="dashed", color="red", weight=0]; 3877[label="vwx242 == vwx245",fontsize=16,color="magenta"];3877 -> 4185[label="",style="dashed", color="magenta", weight=3]; 3877 -> 4186[label="",style="dashed", color="magenta", weight=3]; 3878 -> 2646[label="",style="dashed", color="red", weight=0]; 3878[label="vwx242 == vwx245",fontsize=16,color="magenta"];3878 -> 4187[label="",style="dashed", color="magenta", weight=3]; 3878 -> 4188[label="",style="dashed", color="magenta", weight=3]; 3879 -> 2653[label="",style="dashed", color="red", weight=0]; 3879[label="vwx242 == vwx245",fontsize=16,color="magenta"];3879 -> 4189[label="",style="dashed", color="magenta", weight=3]; 3879 -> 4190[label="",style="dashed", color="magenta", weight=3]; 3880 -> 2640[label="",style="dashed", color="red", weight=0]; 3880[label="vwx242 == vwx245",fontsize=16,color="magenta"];3880 -> 4191[label="",style="dashed", color="magenta", weight=3]; 3880 -> 4192[label="",style="dashed", color="magenta", weight=3]; 3881 -> 2644[label="",style="dashed", color="red", weight=0]; 3881[label="vwx242 == vwx245",fontsize=16,color="magenta"];3881 -> 4193[label="",style="dashed", color="magenta", weight=3]; 3881 -> 4194[label="",style="dashed", color="magenta", weight=3]; 3882 -> 2649[label="",style="dashed", color="red", weight=0]; 3882[label="vwx242 == vwx245",fontsize=16,color="magenta"];3882 -> 4195[label="",style="dashed", color="magenta", weight=3]; 3882 -> 4196[label="",style="dashed", color="magenta", weight=3]; 3883 -> 2651[label="",style="dashed", color="red", weight=0]; 3883[label="vwx242 == vwx245",fontsize=16,color="magenta"];3883 -> 4197[label="",style="dashed", color="magenta", weight=3]; 3883 -> 4198[label="",style="dashed", color="magenta", weight=3]; 4202[label="vwx243 < vwx246",fontsize=16,color="blue",shape="box"];5699[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];4202 -> 5699[label="",style="solid", color="blue", weight=9]; 5699 -> 4206[label="",style="solid", color="blue", weight=3]; 5700[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];4202 -> 5700[label="",style="solid", color="blue", weight=9]; 5700 -> 4207[label="",style="solid", color="blue", weight=3]; 5701[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];4202 -> 5701[label="",style="solid", color="blue", weight=9]; 5701 -> 4208[label="",style="solid", color="blue", weight=3]; 5702[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];4202 -> 5702[label="",style="solid", color="blue", weight=9]; 5702 -> 4209[label="",style="solid", color="blue", weight=3]; 5703[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];4202 -> 5703[label="",style="solid", color="blue", weight=9]; 5703 -> 4210[label="",style="solid", color="blue", weight=3]; 5704[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];4202 -> 5704[label="",style="solid", color="blue", weight=9]; 5704 -> 4211[label="",style="solid", color="blue", weight=3]; 5705[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4202 -> 5705[label="",style="solid", color="blue", weight=9]; 5705 -> 4212[label="",style="solid", color="blue", weight=3]; 5706[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4202 -> 5706[label="",style="solid", color="blue", weight=9]; 5706 -> 4213[label="",style="solid", color="blue", weight=3]; 5707[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];4202 -> 5707[label="",style="solid", color="blue", weight=9]; 5707 -> 4214[label="",style="solid", color="blue", weight=3]; 5708[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4202 -> 5708[label="",style="solid", color="blue", weight=9]; 5708 -> 4215[label="",style="solid", color="blue", weight=3]; 5709[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4202 -> 5709[label="",style="solid", color="blue", weight=9]; 5709 -> 4216[label="",style="solid", color="blue", weight=3]; 5710[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4202 -> 5710[label="",style="solid", color="blue", weight=9]; 5710 -> 4217[label="",style="solid", color="blue", weight=3]; 5711[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4202 -> 5711[label="",style="solid", color="blue", weight=9]; 5711 -> 4218[label="",style="solid", color="blue", weight=3]; 5712[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];4202 -> 5712[label="",style="solid", color="blue", weight=9]; 5712 -> 4219[label="",style="solid", color="blue", weight=3]; 4203 -> 3197[label="",style="dashed", color="red", weight=0]; 4203[label="vwx243 == vwx246 && vwx244 <= vwx247",fontsize=16,color="magenta"];4203 -> 4220[label="",style="dashed", color="magenta", weight=3]; 4203 -> 4221[label="",style="dashed", color="magenta", weight=3]; 4201[label="vwx333 || vwx334",fontsize=16,color="burlywood",shape="triangle"];5713[label="vwx333/False",fontsize=10,color="white",style="solid",shape="box"];4201 -> 5713[label="",style="solid", color="burlywood", weight=9]; 5713 -> 4222[label="",style="solid", color="burlywood", weight=3]; 5714[label="vwx333/True",fontsize=10,color="white",style="solid",shape="box"];4201 -> 5714[label="",style="solid", color="burlywood", weight=9]; 5714 -> 4223[label="",style="solid", color="burlywood", weight=3]; 3886 -> 2641[label="",style="dashed", color="red", weight=0]; 3886[label="compare vwx242 vwx245 == LT",fontsize=16,color="magenta"];3886 -> 4224[label="",style="dashed", color="magenta", weight=3]; 3886 -> 4225[label="",style="dashed", color="magenta", weight=3]; 3887 -> 2641[label="",style="dashed", color="red", weight=0]; 3887[label="compare vwx242 vwx245 == LT",fontsize=16,color="magenta"];3887 -> 4226[label="",style="dashed", color="magenta", weight=3]; 3887 -> 4227[label="",style="dashed", color="magenta", weight=3]; 3888 -> 2641[label="",style="dashed", color="red", weight=0]; 3888[label="compare vwx242 vwx245 == LT",fontsize=16,color="magenta"];3888 -> 4228[label="",style="dashed", color="magenta", weight=3]; 3888 -> 4229[label="",style="dashed", color="magenta", weight=3]; 3889 -> 2641[label="",style="dashed", color="red", weight=0]; 3889[label="compare vwx242 vwx245 == LT",fontsize=16,color="magenta"];3889 -> 4230[label="",style="dashed", color="magenta", weight=3]; 3889 -> 4231[label="",style="dashed", color="magenta", weight=3]; 3890 -> 2641[label="",style="dashed", color="red", weight=0]; 3890[label="compare vwx242 vwx245 == LT",fontsize=16,color="magenta"];3890 -> 4232[label="",style="dashed", color="magenta", weight=3]; 3890 -> 4233[label="",style="dashed", color="magenta", weight=3]; 3891 -> 2641[label="",style="dashed", color="red", weight=0]; 3891[label="compare vwx242 vwx245 == LT",fontsize=16,color="magenta"];3891 -> 4234[label="",style="dashed", color="magenta", weight=3]; 3891 -> 4235[label="",style="dashed", color="magenta", weight=3]; 3892 -> 2641[label="",style="dashed", color="red", weight=0]; 3892[label="compare vwx242 vwx245 == LT",fontsize=16,color="magenta"];3892 -> 4236[label="",style="dashed", color="magenta", weight=3]; 3892 -> 4237[label="",style="dashed", color="magenta", weight=3]; 3893 -> 2641[label="",style="dashed", color="red", weight=0]; 3893[label="compare vwx242 vwx245 == LT",fontsize=16,color="magenta"];3893 -> 4238[label="",style="dashed", color="magenta", weight=3]; 3893 -> 4239[label="",style="dashed", color="magenta", weight=3]; 3894 -> 2641[label="",style="dashed", color="red", weight=0]; 3894[label="compare vwx242 vwx245 == LT",fontsize=16,color="magenta"];3894 -> 4240[label="",style="dashed", color="magenta", weight=3]; 3894 -> 4241[label="",style="dashed", color="magenta", weight=3]; 3895 -> 2641[label="",style="dashed", color="red", weight=0]; 3895[label="compare vwx242 vwx245 == LT",fontsize=16,color="magenta"];3895 -> 4242[label="",style="dashed", color="magenta", weight=3]; 3895 -> 4243[label="",style="dashed", color="magenta", weight=3]; 3896 -> 2641[label="",style="dashed", color="red", weight=0]; 3896[label="compare vwx242 vwx245 == LT",fontsize=16,color="magenta"];3896 -> 4244[label="",style="dashed", color="magenta", weight=3]; 3896 -> 4245[label="",style="dashed", color="magenta", weight=3]; 3897 -> 2641[label="",style="dashed", color="red", weight=0]; 3897[label="compare vwx242 vwx245 == LT",fontsize=16,color="magenta"];3897 -> 4246[label="",style="dashed", color="magenta", weight=3]; 3897 -> 4247[label="",style="dashed", color="magenta", weight=3]; 3898 -> 2641[label="",style="dashed", color="red", weight=0]; 3898[label="compare vwx242 vwx245 == LT",fontsize=16,color="magenta"];3898 -> 4248[label="",style="dashed", color="magenta", weight=3]; 3898 -> 4249[label="",style="dashed", color="magenta", weight=3]; 3899 -> 2641[label="",style="dashed", color="red", weight=0]; 3899[label="compare vwx242 vwx245 == LT",fontsize=16,color="magenta"];3899 -> 4250[label="",style="dashed", color="magenta", weight=3]; 3899 -> 4251[label="",style="dashed", color="magenta", weight=3]; 3900[label="compare1 (vwx320,vwx321,vwx322) (vwx323,vwx324,vwx325) vwx327",fontsize=16,color="burlywood",shape="triangle"];5715[label="vwx327/False",fontsize=10,color="white",style="solid",shape="box"];3900 -> 5715[label="",style="solid", color="burlywood", weight=9]; 5715 -> 4252[label="",style="solid", color="burlywood", weight=3]; 5716[label="vwx327/True",fontsize=10,color="white",style="solid",shape="box"];3900 -> 5716[label="",style="solid", color="burlywood", weight=9]; 5716 -> 4253[label="",style="solid", color="burlywood", weight=3]; 3901 -> 3900[label="",style="dashed", color="red", weight=0]; 3901[label="compare1 (vwx320,vwx321,vwx322) (vwx323,vwx324,vwx325) True",fontsize=16,color="magenta"];3901 -> 4254[label="",style="dashed", color="magenta", weight=3]; 3902 -> 2642[label="",style="dashed", color="red", weight=0]; 3902[label="vwx255 == vwx257",fontsize=16,color="magenta"];3902 -> 4255[label="",style="dashed", color="magenta", weight=3]; 3902 -> 4256[label="",style="dashed", color="magenta", weight=3]; 3903 -> 2645[label="",style="dashed", color="red", weight=0]; 3903[label="vwx255 == vwx257",fontsize=16,color="magenta"];3903 -> 4257[label="",style="dashed", color="magenta", weight=3]; 3903 -> 4258[label="",style="dashed", color="magenta", weight=3]; 3904 -> 2641[label="",style="dashed", color="red", weight=0]; 3904[label="vwx255 == vwx257",fontsize=16,color="magenta"];3904 -> 4259[label="",style="dashed", color="magenta", weight=3]; 3904 -> 4260[label="",style="dashed", color="magenta", weight=3]; 3905 -> 2643[label="",style="dashed", color="red", weight=0]; 3905[label="vwx255 == vwx257",fontsize=16,color="magenta"];3905 -> 4261[label="",style="dashed", color="magenta", weight=3]; 3905 -> 4262[label="",style="dashed", color="magenta", weight=3]; 3906 -> 2652[label="",style="dashed", color="red", weight=0]; 3906[label="vwx255 == vwx257",fontsize=16,color="magenta"];3906 -> 4263[label="",style="dashed", color="magenta", weight=3]; 3906 -> 4264[label="",style="dashed", color="magenta", weight=3]; 3907 -> 2647[label="",style="dashed", color="red", weight=0]; 3907[label="vwx255 == vwx257",fontsize=16,color="magenta"];3907 -> 4265[label="",style="dashed", color="magenta", weight=3]; 3907 -> 4266[label="",style="dashed", color="magenta", weight=3]; 3908 -> 2648[label="",style="dashed", color="red", weight=0]; 3908[label="vwx255 == vwx257",fontsize=16,color="magenta"];3908 -> 4267[label="",style="dashed", color="magenta", weight=3]; 3908 -> 4268[label="",style="dashed", color="magenta", weight=3]; 3909 -> 2650[label="",style="dashed", color="red", weight=0]; 3909[label="vwx255 == vwx257",fontsize=16,color="magenta"];3909 -> 4269[label="",style="dashed", color="magenta", weight=3]; 3909 -> 4270[label="",style="dashed", color="magenta", weight=3]; 3910 -> 2646[label="",style="dashed", color="red", weight=0]; 3910[label="vwx255 == vwx257",fontsize=16,color="magenta"];3910 -> 4271[label="",style="dashed", color="magenta", weight=3]; 3910 -> 4272[label="",style="dashed", color="magenta", weight=3]; 3911 -> 2653[label="",style="dashed", color="red", weight=0]; 3911[label="vwx255 == vwx257",fontsize=16,color="magenta"];3911 -> 4273[label="",style="dashed", color="magenta", weight=3]; 3911 -> 4274[label="",style="dashed", color="magenta", weight=3]; 3912 -> 2640[label="",style="dashed", color="red", weight=0]; 3912[label="vwx255 == vwx257",fontsize=16,color="magenta"];3912 -> 4275[label="",style="dashed", color="magenta", weight=3]; 3912 -> 4276[label="",style="dashed", color="magenta", weight=3]; 3913 -> 2644[label="",style="dashed", color="red", weight=0]; 3913[label="vwx255 == vwx257",fontsize=16,color="magenta"];3913 -> 4277[label="",style="dashed", color="magenta", weight=3]; 3913 -> 4278[label="",style="dashed", color="magenta", weight=3]; 3914 -> 2649[label="",style="dashed", color="red", weight=0]; 3914[label="vwx255 == vwx257",fontsize=16,color="magenta"];3914 -> 4279[label="",style="dashed", color="magenta", weight=3]; 3914 -> 4280[label="",style="dashed", color="magenta", weight=3]; 3915 -> 2651[label="",style="dashed", color="red", weight=0]; 3915[label="vwx255 == vwx257",fontsize=16,color="magenta"];3915 -> 4281[label="",style="dashed", color="magenta", weight=3]; 3915 -> 4282[label="",style="dashed", color="magenta", weight=3]; 3916 -> 3442[label="",style="dashed", color="red", weight=0]; 3916[label="vwx256 <= vwx258",fontsize=16,color="magenta"];3916 -> 4283[label="",style="dashed", color="magenta", weight=3]; 3916 -> 4284[label="",style="dashed", color="magenta", weight=3]; 3917 -> 3443[label="",style="dashed", color="red", weight=0]; 3917[label="vwx256 <= vwx258",fontsize=16,color="magenta"];3917 -> 4285[label="",style="dashed", color="magenta", weight=3]; 3917 -> 4286[label="",style="dashed", color="magenta", weight=3]; 3918 -> 3444[label="",style="dashed", color="red", weight=0]; 3918[label="vwx256 <= vwx258",fontsize=16,color="magenta"];3918 -> 4287[label="",style="dashed", color="magenta", weight=3]; 3918 -> 4288[label="",style="dashed", color="magenta", weight=3]; 3919 -> 3445[label="",style="dashed", color="red", weight=0]; 3919[label="vwx256 <= vwx258",fontsize=16,color="magenta"];3919 -> 4289[label="",style="dashed", color="magenta", weight=3]; 3919 -> 4290[label="",style="dashed", color="magenta", weight=3]; 3920 -> 3446[label="",style="dashed", color="red", weight=0]; 3920[label="vwx256 <= vwx258",fontsize=16,color="magenta"];3920 -> 4291[label="",style="dashed", color="magenta", weight=3]; 3920 -> 4292[label="",style="dashed", color="magenta", weight=3]; 3921 -> 3447[label="",style="dashed", color="red", weight=0]; 3921[label="vwx256 <= vwx258",fontsize=16,color="magenta"];3921 -> 4293[label="",style="dashed", color="magenta", weight=3]; 3921 -> 4294[label="",style="dashed", color="magenta", weight=3]; 3922 -> 3448[label="",style="dashed", color="red", weight=0]; 3922[label="vwx256 <= vwx258",fontsize=16,color="magenta"];3922 -> 4295[label="",style="dashed", color="magenta", weight=3]; 3922 -> 4296[label="",style="dashed", color="magenta", weight=3]; 3923 -> 3449[label="",style="dashed", color="red", weight=0]; 3923[label="vwx256 <= vwx258",fontsize=16,color="magenta"];3923 -> 4297[label="",style="dashed", color="magenta", weight=3]; 3923 -> 4298[label="",style="dashed", color="magenta", weight=3]; 3924 -> 3450[label="",style="dashed", color="red", weight=0]; 3924[label="vwx256 <= vwx258",fontsize=16,color="magenta"];3924 -> 4299[label="",style="dashed", color="magenta", weight=3]; 3924 -> 4300[label="",style="dashed", color="magenta", weight=3]; 3925 -> 3451[label="",style="dashed", color="red", weight=0]; 3925[label="vwx256 <= vwx258",fontsize=16,color="magenta"];3925 -> 4301[label="",style="dashed", color="magenta", weight=3]; 3925 -> 4302[label="",style="dashed", color="magenta", weight=3]; 3926 -> 3452[label="",style="dashed", color="red", weight=0]; 3926[label="vwx256 <= vwx258",fontsize=16,color="magenta"];3926 -> 4303[label="",style="dashed", color="magenta", weight=3]; 3926 -> 4304[label="",style="dashed", color="magenta", weight=3]; 3927 -> 3453[label="",style="dashed", color="red", weight=0]; 3927[label="vwx256 <= vwx258",fontsize=16,color="magenta"];3927 -> 4305[label="",style="dashed", color="magenta", weight=3]; 3927 -> 4306[label="",style="dashed", color="magenta", weight=3]; 3928 -> 3454[label="",style="dashed", color="red", weight=0]; 3928[label="vwx256 <= vwx258",fontsize=16,color="magenta"];3928 -> 4307[label="",style="dashed", color="magenta", weight=3]; 3928 -> 4308[label="",style="dashed", color="magenta", weight=3]; 3929 -> 3455[label="",style="dashed", color="red", weight=0]; 3929[label="vwx256 <= vwx258",fontsize=16,color="magenta"];3929 -> 4309[label="",style="dashed", color="magenta", weight=3]; 3929 -> 4310[label="",style="dashed", color="magenta", weight=3]; 3930[label="vwx255",fontsize=16,color="green",shape="box"];3931[label="vwx257",fontsize=16,color="green",shape="box"];3932[label="vwx255",fontsize=16,color="green",shape="box"];3933[label="vwx257",fontsize=16,color="green",shape="box"];3934[label="vwx255",fontsize=16,color="green",shape="box"];3935[label="vwx257",fontsize=16,color="green",shape="box"];3936[label="vwx255",fontsize=16,color="green",shape="box"];3937[label="vwx257",fontsize=16,color="green",shape="box"];3938[label="vwx255",fontsize=16,color="green",shape="box"];3939[label="vwx257",fontsize=16,color="green",shape="box"];3940[label="vwx255",fontsize=16,color="green",shape="box"];3941[label="vwx257",fontsize=16,color="green",shape="box"];3942[label="vwx255",fontsize=16,color="green",shape="box"];3943[label="vwx257",fontsize=16,color="green",shape="box"];3944[label="vwx255",fontsize=16,color="green",shape="box"];3945[label="vwx257",fontsize=16,color="green",shape="box"];3946[label="vwx255",fontsize=16,color="green",shape="box"];3947[label="vwx257",fontsize=16,color="green",shape="box"];3948[label="vwx255",fontsize=16,color="green",shape="box"];3949[label="vwx257",fontsize=16,color="green",shape="box"];3950[label="vwx255",fontsize=16,color="green",shape="box"];3951[label="vwx257",fontsize=16,color="green",shape="box"];3952[label="vwx255",fontsize=16,color="green",shape="box"];3953[label="vwx257",fontsize=16,color="green",shape="box"];3954[label="vwx255",fontsize=16,color="green",shape="box"];3955[label="vwx257",fontsize=16,color="green",shape="box"];3956[label="vwx255",fontsize=16,color="green",shape="box"];3957[label="vwx257",fontsize=16,color="green",shape="box"];3958[label="compare1 (vwx303,vwx304) (vwx305,vwx306) vwx308",fontsize=16,color="burlywood",shape="triangle"];5717[label="vwx308/False",fontsize=10,color="white",style="solid",shape="box"];3958 -> 5717[label="",style="solid", color="burlywood", weight=9]; 5717 -> 4311[label="",style="solid", color="burlywood", weight=3]; 5718[label="vwx308/True",fontsize=10,color="white",style="solid",shape="box"];3958 -> 5718[label="",style="solid", color="burlywood", weight=9]; 5718 -> 4312[label="",style="solid", color="burlywood", weight=3]; 3959 -> 3958[label="",style="dashed", color="red", weight=0]; 3959[label="compare1 (vwx303,vwx304) (vwx305,vwx306) True",fontsize=16,color="magenta"];3959 -> 4313[label="",style="dashed", color="magenta", weight=3]; 3960[label="primMulNat (Succ vwx30000) (Succ vwx40100)",fontsize=16,color="black",shape="box"];3960 -> 4314[label="",style="solid", color="black", weight=3]; 3961[label="primMulNat (Succ vwx30000) Zero",fontsize=16,color="black",shape="box"];3961 -> 4315[label="",style="solid", color="black", weight=3]; 3962[label="primMulNat Zero (Succ vwx40100)",fontsize=16,color="black",shape="box"];3962 -> 4316[label="",style="solid", color="black", weight=3]; 3963[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];3963 -> 4317[label="",style="solid", color="black", weight=3]; 3964[label="vwx3000",fontsize=16,color="green",shape="box"];3965[label="vwx4000",fontsize=16,color="green",shape="box"];3966[label="vwx3000",fontsize=16,color="green",shape="box"];3967[label="vwx4000",fontsize=16,color="green",shape="box"];3968[label="vwx3000",fontsize=16,color="green",shape="box"];3969[label="vwx4000",fontsize=16,color="green",shape="box"];3970[label="vwx3000",fontsize=16,color="green",shape="box"];3971[label="vwx4000",fontsize=16,color="green",shape="box"];3972[label="vwx3000",fontsize=16,color="green",shape="box"];3973[label="vwx4000",fontsize=16,color="green",shape="box"];3974[label="vwx3000",fontsize=16,color="green",shape="box"];3975[label="vwx4000",fontsize=16,color="green",shape="box"];3976[label="vwx3000",fontsize=16,color="green",shape="box"];3977[label="vwx4000",fontsize=16,color="green",shape="box"];3978[label="vwx3000",fontsize=16,color="green",shape="box"];3979[label="vwx4000",fontsize=16,color="green",shape="box"];3980[label="vwx3000",fontsize=16,color="green",shape="box"];3981[label="vwx4000",fontsize=16,color="green",shape="box"];3982[label="vwx3000",fontsize=16,color="green",shape="box"];3983[label="vwx4000",fontsize=16,color="green",shape="box"];3984[label="vwx3000",fontsize=16,color="green",shape="box"];3985[label="vwx4000",fontsize=16,color="green",shape="box"];3986[label="vwx3000",fontsize=16,color="green",shape="box"];3987[label="vwx4000",fontsize=16,color="green",shape="box"];3988[label="vwx3000",fontsize=16,color="green",shape="box"];3989[label="vwx4000",fontsize=16,color="green",shape="box"];3990[label="vwx3000",fontsize=16,color="green",shape="box"];3991[label="vwx4000",fontsize=16,color="green",shape="box"];3992[label="vwx3000",fontsize=16,color="green",shape="box"];3993[label="vwx4001",fontsize=16,color="green",shape="box"];3994[label="vwx3001",fontsize=16,color="green",shape="box"];3995[label="vwx4000",fontsize=16,color="green",shape="box"];3996[label="vwx3000",fontsize=16,color="green",shape="box"];3997[label="vwx4000",fontsize=16,color="green",shape="box"];3998[label="vwx3000",fontsize=16,color="green",shape="box"];3999[label="vwx4000",fontsize=16,color="green",shape="box"];4000[label="vwx3000",fontsize=16,color="green",shape="box"];4001[label="vwx4000",fontsize=16,color="green",shape="box"];4002[label="vwx3000",fontsize=16,color="green",shape="box"];4003[label="vwx4000",fontsize=16,color="green",shape="box"];4004[label="vwx3000",fontsize=16,color="green",shape="box"];4005[label="vwx4000",fontsize=16,color="green",shape="box"];4006[label="vwx3000",fontsize=16,color="green",shape="box"];4007[label="vwx4000",fontsize=16,color="green",shape="box"];4008[label="vwx3000",fontsize=16,color="green",shape="box"];4009[label="vwx4000",fontsize=16,color="green",shape="box"];4010[label="vwx3000",fontsize=16,color="green",shape="box"];4011[label="vwx4000",fontsize=16,color="green",shape="box"];4012[label="vwx3000",fontsize=16,color="green",shape="box"];4013[label="vwx4000",fontsize=16,color="green",shape="box"];4014[label="vwx3000",fontsize=16,color="green",shape="box"];4015[label="vwx4000",fontsize=16,color="green",shape="box"];4016[label="vwx3000",fontsize=16,color="green",shape="box"];4017[label="vwx4000",fontsize=16,color="green",shape="box"];4018[label="vwx3000",fontsize=16,color="green",shape="box"];4019[label="vwx4000",fontsize=16,color="green",shape="box"];4020[label="vwx3000",fontsize=16,color="green",shape="box"];4021[label="vwx4000",fontsize=16,color="green",shape="box"];4022[label="vwx3000",fontsize=16,color="green",shape="box"];4023[label="vwx4000",fontsize=16,color="green",shape="box"];4024[label="vwx3001",fontsize=16,color="green",shape="box"];4025[label="vwx4001",fontsize=16,color="green",shape="box"];4026[label="vwx3001",fontsize=16,color="green",shape="box"];4027[label="vwx4001",fontsize=16,color="green",shape="box"];4028[label="vwx3001",fontsize=16,color="green",shape="box"];4029[label="vwx4001",fontsize=16,color="green",shape="box"];4030[label="vwx3001",fontsize=16,color="green",shape="box"];4031[label="vwx4001",fontsize=16,color="green",shape="box"];4032[label="vwx3001",fontsize=16,color="green",shape="box"];4033[label="vwx4001",fontsize=16,color="green",shape="box"];4034[label="vwx3001",fontsize=16,color="green",shape="box"];4035[label="vwx4001",fontsize=16,color="green",shape="box"];4036[label="vwx3001",fontsize=16,color="green",shape="box"];4037[label="vwx4001",fontsize=16,color="green",shape="box"];4038[label="vwx3001",fontsize=16,color="green",shape="box"];4039[label="vwx4001",fontsize=16,color="green",shape="box"];4040[label="vwx3001",fontsize=16,color="green",shape="box"];4041[label="vwx4001",fontsize=16,color="green",shape="box"];4042[label="vwx3001",fontsize=16,color="green",shape="box"];4043[label="vwx4001",fontsize=16,color="green",shape="box"];4044[label="vwx3001",fontsize=16,color="green",shape="box"];4045[label="vwx4001",fontsize=16,color="green",shape="box"];4046[label="vwx3001",fontsize=16,color="green",shape="box"];4047[label="vwx4001",fontsize=16,color="green",shape="box"];4048[label="vwx3001",fontsize=16,color="green",shape="box"];4049[label="vwx4001",fontsize=16,color="green",shape="box"];4050[label="vwx3001",fontsize=16,color="green",shape="box"];4051[label="vwx4001",fontsize=16,color="green",shape="box"];4052[label="vwx3000",fontsize=16,color="green",shape="box"];4053[label="vwx4001",fontsize=16,color="green",shape="box"];4054[label="vwx3001",fontsize=16,color="green",shape="box"];4055[label="vwx4000",fontsize=16,color="green",shape="box"];4056 -> 3441[label="",style="dashed", color="red", weight=0]; 4056[label="primEqNat vwx30000 vwx40000",fontsize=16,color="magenta"];4056 -> 4318[label="",style="dashed", color="magenta", weight=3]; 4056 -> 4319[label="",style="dashed", color="magenta", weight=3]; 4057[label="False",fontsize=16,color="green",shape="box"];4058[label="False",fontsize=16,color="green",shape="box"];4059[label="True",fontsize=16,color="green",shape="box"];4060[label="False",fontsize=16,color="green",shape="box"];4061[label="True",fontsize=16,color="green",shape="box"];4062 -> 3441[label="",style="dashed", color="red", weight=0]; 4062[label="primEqNat vwx30000 vwx40000",fontsize=16,color="magenta"];4062 -> 4320[label="",style="dashed", color="magenta", weight=3]; 4062 -> 4321[label="",style="dashed", color="magenta", weight=3]; 4063[label="False",fontsize=16,color="green",shape="box"];4064[label="False",fontsize=16,color="green",shape="box"];4065[label="True",fontsize=16,color="green",shape="box"];4066[label="False",fontsize=16,color="green",shape="box"];4067[label="True",fontsize=16,color="green",shape="box"];4068[label="vwx3000",fontsize=16,color="green",shape="box"];4069[label="vwx4000",fontsize=16,color="green",shape="box"];4070[label="vwx3000",fontsize=16,color="green",shape="box"];4071[label="vwx4000",fontsize=16,color="green",shape="box"];4072[label="vwx3001",fontsize=16,color="green",shape="box"];4073[label="vwx4001",fontsize=16,color="green",shape="box"];4074[label="vwx3001",fontsize=16,color="green",shape="box"];4075[label="vwx4001",fontsize=16,color="green",shape="box"];4076[label="primEqNat (Succ vwx30000) (Succ vwx40000)",fontsize=16,color="black",shape="box"];4076 -> 4322[label="",style="solid", color="black", weight=3]; 4077[label="primEqNat (Succ vwx30000) Zero",fontsize=16,color="black",shape="box"];4077 -> 4323[label="",style="solid", color="black", weight=3]; 4078[label="primEqNat Zero (Succ vwx40000)",fontsize=16,color="black",shape="box"];4078 -> 4324[label="",style="solid", color="black", weight=3]; 4079[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];4079 -> 4325[label="",style="solid", color="black", weight=3]; 4080[label="vwx3000",fontsize=16,color="green",shape="box"];4081[label="vwx4000",fontsize=16,color="green",shape="box"];4082[label="vwx3000",fontsize=16,color="green",shape="box"];4083[label="vwx4000",fontsize=16,color="green",shape="box"];4084[label="vwx3000",fontsize=16,color="green",shape="box"];4085[label="vwx4000",fontsize=16,color="green",shape="box"];4086[label="vwx3000",fontsize=16,color="green",shape="box"];4087[label="vwx4000",fontsize=16,color="green",shape="box"];4088[label="vwx3000",fontsize=16,color="green",shape="box"];4089[label="vwx4000",fontsize=16,color="green",shape="box"];4090[label="vwx3000",fontsize=16,color="green",shape="box"];4091[label="vwx4000",fontsize=16,color="green",shape="box"];4092[label="vwx3000",fontsize=16,color="green",shape="box"];4093[label="vwx4000",fontsize=16,color="green",shape="box"];4094[label="vwx3000",fontsize=16,color="green",shape="box"];4095[label="vwx4000",fontsize=16,color="green",shape="box"];4096[label="vwx3000",fontsize=16,color="green",shape="box"];4097[label="vwx4000",fontsize=16,color="green",shape="box"];4098[label="vwx3000",fontsize=16,color="green",shape="box"];4099[label="vwx4000",fontsize=16,color="green",shape="box"];4100[label="vwx3000",fontsize=16,color="green",shape="box"];4101[label="vwx4000",fontsize=16,color="green",shape="box"];4102[label="vwx3000",fontsize=16,color="green",shape="box"];4103[label="vwx4000",fontsize=16,color="green",shape="box"];4104[label="vwx3000",fontsize=16,color="green",shape="box"];4105[label="vwx4000",fontsize=16,color="green",shape="box"];4106[label="vwx3000",fontsize=16,color="green",shape="box"];4107[label="vwx4000",fontsize=16,color="green",shape="box"];4108 -> 2640[label="",style="dashed", color="red", weight=0]; 4108[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];4108 -> 4326[label="",style="dashed", color="magenta", weight=3]; 4108 -> 4327[label="",style="dashed", color="magenta", weight=3]; 4109 -> 2641[label="",style="dashed", color="red", weight=0]; 4109[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];4109 -> 4328[label="",style="dashed", color="magenta", weight=3]; 4109 -> 4329[label="",style="dashed", color="magenta", weight=3]; 4110 -> 2642[label="",style="dashed", color="red", weight=0]; 4110[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];4110 -> 4330[label="",style="dashed", color="magenta", weight=3]; 4110 -> 4331[label="",style="dashed", color="magenta", weight=3]; 4111 -> 2643[label="",style="dashed", color="red", weight=0]; 4111[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];4111 -> 4332[label="",style="dashed", color="magenta", weight=3]; 4111 -> 4333[label="",style="dashed", color="magenta", weight=3]; 4112 -> 2644[label="",style="dashed", color="red", weight=0]; 4112[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];4112 -> 4334[label="",style="dashed", color="magenta", weight=3]; 4112 -> 4335[label="",style="dashed", color="magenta", weight=3]; 4113 -> 2645[label="",style="dashed", color="red", weight=0]; 4113[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];4113 -> 4336[label="",style="dashed", color="magenta", weight=3]; 4113 -> 4337[label="",style="dashed", color="magenta", weight=3]; 4114 -> 2646[label="",style="dashed", color="red", weight=0]; 4114[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];4114 -> 4338[label="",style="dashed", color="magenta", weight=3]; 4114 -> 4339[label="",style="dashed", color="magenta", weight=3]; 4115 -> 2647[label="",style="dashed", color="red", weight=0]; 4115[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];4115 -> 4340[label="",style="dashed", color="magenta", weight=3]; 4115 -> 4341[label="",style="dashed", color="magenta", weight=3]; 4116 -> 2648[label="",style="dashed", color="red", weight=0]; 4116[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];4116 -> 4342[label="",style="dashed", color="magenta", weight=3]; 4116 -> 4343[label="",style="dashed", color="magenta", weight=3]; 4117 -> 2649[label="",style="dashed", color="red", weight=0]; 4117[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];4117 -> 4344[label="",style="dashed", color="magenta", weight=3]; 4117 -> 4345[label="",style="dashed", color="magenta", weight=3]; 4118 -> 2650[label="",style="dashed", color="red", weight=0]; 4118[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];4118 -> 4346[label="",style="dashed", color="magenta", weight=3]; 4118 -> 4347[label="",style="dashed", color="magenta", weight=3]; 4119 -> 2651[label="",style="dashed", color="red", weight=0]; 4119[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];4119 -> 4348[label="",style="dashed", color="magenta", weight=3]; 4119 -> 4349[label="",style="dashed", color="magenta", weight=3]; 4120 -> 2652[label="",style="dashed", color="red", weight=0]; 4120[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];4120 -> 4350[label="",style="dashed", color="magenta", weight=3]; 4120 -> 4351[label="",style="dashed", color="magenta", weight=3]; 4121 -> 2653[label="",style="dashed", color="red", weight=0]; 4121[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];4121 -> 4352[label="",style="dashed", color="magenta", weight=3]; 4121 -> 4353[label="",style="dashed", color="magenta", weight=3]; 4122 -> 2640[label="",style="dashed", color="red", weight=0]; 4122[label="vwx3002 == vwx4002",fontsize=16,color="magenta"];4122 -> 4354[label="",style="dashed", color="magenta", weight=3]; 4122 -> 4355[label="",style="dashed", color="magenta", weight=3]; 4123 -> 2641[label="",style="dashed", color="red", weight=0]; 4123[label="vwx3002 == vwx4002",fontsize=16,color="magenta"];4123 -> 4356[label="",style="dashed", color="magenta", weight=3]; 4123 -> 4357[label="",style="dashed", color="magenta", weight=3]; 4124 -> 2642[label="",style="dashed", color="red", weight=0]; 4124[label="vwx3002 == vwx4002",fontsize=16,color="magenta"];4124 -> 4358[label="",style="dashed", color="magenta", weight=3]; 4124 -> 4359[label="",style="dashed", color="magenta", weight=3]; 4125 -> 2643[label="",style="dashed", color="red", weight=0]; 4125[label="vwx3002 == vwx4002",fontsize=16,color="magenta"];4125 -> 4360[label="",style="dashed", color="magenta", weight=3]; 4125 -> 4361[label="",style="dashed", color="magenta", weight=3]; 4126 -> 2644[label="",style="dashed", color="red", weight=0]; 4126[label="vwx3002 == vwx4002",fontsize=16,color="magenta"];4126 -> 4362[label="",style="dashed", color="magenta", weight=3]; 4126 -> 4363[label="",style="dashed", color="magenta", weight=3]; 4127 -> 2645[label="",style="dashed", color="red", weight=0]; 4127[label="vwx3002 == vwx4002",fontsize=16,color="magenta"];4127 -> 4364[label="",style="dashed", color="magenta", weight=3]; 4127 -> 4365[label="",style="dashed", color="magenta", weight=3]; 4128 -> 2646[label="",style="dashed", color="red", weight=0]; 4128[label="vwx3002 == vwx4002",fontsize=16,color="magenta"];4128 -> 4366[label="",style="dashed", color="magenta", weight=3]; 4128 -> 4367[label="",style="dashed", color="magenta", weight=3]; 4129 -> 2647[label="",style="dashed", color="red", weight=0]; 4129[label="vwx3002 == vwx4002",fontsize=16,color="magenta"];4129 -> 4368[label="",style="dashed", color="magenta", weight=3]; 4129 -> 4369[label="",style="dashed", color="magenta", weight=3]; 4130 -> 2648[label="",style="dashed", color="red", weight=0]; 4130[label="vwx3002 == vwx4002",fontsize=16,color="magenta"];4130 -> 4370[label="",style="dashed", color="magenta", weight=3]; 4130 -> 4371[label="",style="dashed", color="magenta", weight=3]; 4131 -> 2649[label="",style="dashed", color="red", weight=0]; 4131[label="vwx3002 == vwx4002",fontsize=16,color="magenta"];4131 -> 4372[label="",style="dashed", color="magenta", weight=3]; 4131 -> 4373[label="",style="dashed", color="magenta", weight=3]; 4132 -> 2650[label="",style="dashed", color="red", weight=0]; 4132[label="vwx3002 == vwx4002",fontsize=16,color="magenta"];4132 -> 4374[label="",style="dashed", color="magenta", weight=3]; 4132 -> 4375[label="",style="dashed", color="magenta", weight=3]; 4133 -> 2651[label="",style="dashed", color="red", weight=0]; 4133[label="vwx3002 == vwx4002",fontsize=16,color="magenta"];4133 -> 4376[label="",style="dashed", color="magenta", weight=3]; 4133 -> 4377[label="",style="dashed", color="magenta", weight=3]; 4134 -> 2652[label="",style="dashed", color="red", weight=0]; 4134[label="vwx3002 == vwx4002",fontsize=16,color="magenta"];4134 -> 4378[label="",style="dashed", color="magenta", weight=3]; 4134 -> 4379[label="",style="dashed", color="magenta", weight=3]; 4135 -> 2653[label="",style="dashed", color="red", weight=0]; 4135[label="vwx3002 == vwx4002",fontsize=16,color="magenta"];4135 -> 4380[label="",style="dashed", color="magenta", weight=3]; 4135 -> 4381[label="",style="dashed", color="magenta", weight=3]; 4137 -> 2375[label="",style="dashed", color="red", weight=0]; 4137[label="compare vwx191 vwx192",fontsize=16,color="magenta"];4137 -> 4382[label="",style="dashed", color="magenta", weight=3]; 4137 -> 4383[label="",style="dashed", color="magenta", weight=3]; 4136[label="vwx329 /= GT",fontsize=16,color="black",shape="triangle"];4136 -> 4384[label="",style="solid", color="black", weight=3]; 4138 -> 2376[label="",style="dashed", color="red", weight=0]; 4138[label="compare vwx191 vwx192",fontsize=16,color="magenta"];4138 -> 4385[label="",style="dashed", color="magenta", weight=3]; 4138 -> 4386[label="",style="dashed", color="magenta", weight=3]; 4145[label="LT <= LT",fontsize=16,color="black",shape="box"];4145 -> 4387[label="",style="solid", color="black", weight=3]; 4146[label="LT <= EQ",fontsize=16,color="black",shape="box"];4146 -> 4388[label="",style="solid", color="black", weight=3]; 4147[label="LT <= GT",fontsize=16,color="black",shape="box"];4147 -> 4389[label="",style="solid", color="black", weight=3]; 4148[label="EQ <= LT",fontsize=16,color="black",shape="box"];4148 -> 4390[label="",style="solid", color="black", weight=3]; 4149[label="EQ <= EQ",fontsize=16,color="black",shape="box"];4149 -> 4391[label="",style="solid", color="black", weight=3]; 4150[label="EQ <= GT",fontsize=16,color="black",shape="box"];4150 -> 4392[label="",style="solid", color="black", weight=3]; 4151[label="GT <= LT",fontsize=16,color="black",shape="box"];4151 -> 4393[label="",style="solid", color="black", weight=3]; 4152[label="GT <= EQ",fontsize=16,color="black",shape="box"];4152 -> 4394[label="",style="solid", color="black", weight=3]; 4153[label="GT <= GT",fontsize=16,color="black",shape="box"];4153 -> 4395[label="",style="solid", color="black", weight=3]; 4139 -> 2378[label="",style="dashed", color="red", weight=0]; 4139[label="compare vwx191 vwx192",fontsize=16,color="magenta"];4139 -> 4396[label="",style="dashed", color="magenta", weight=3]; 4139 -> 4397[label="",style="dashed", color="magenta", weight=3]; 4140 -> 2379[label="",style="dashed", color="red", weight=0]; 4140[label="compare vwx191 vwx192",fontsize=16,color="magenta"];4140 -> 4398[label="",style="dashed", color="magenta", weight=3]; 4140 -> 4399[label="",style="dashed", color="magenta", weight=3]; 4154[label="False <= False",fontsize=16,color="black",shape="box"];4154 -> 4400[label="",style="solid", color="black", weight=3]; 4155[label="False <= True",fontsize=16,color="black",shape="box"];4155 -> 4401[label="",style="solid", color="black", weight=3]; 4156[label="True <= False",fontsize=16,color="black",shape="box"];4156 -> 4402[label="",style="solid", color="black", weight=3]; 4157[label="True <= True",fontsize=16,color="black",shape="box"];4157 -> 4403[label="",style="solid", color="black", weight=3]; 4158[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];4158 -> 4404[label="",style="solid", color="black", weight=3]; 4159[label="Nothing <= Just vwx1920",fontsize=16,color="black",shape="box"];4159 -> 4405[label="",style="solid", color="black", weight=3]; 4160[label="Just vwx1910 <= Nothing",fontsize=16,color="black",shape="box"];4160 -> 4406[label="",style="solid", color="black", weight=3]; 4161[label="Just vwx1910 <= Just vwx1920",fontsize=16,color="black",shape="box"];4161 -> 4407[label="",style="solid", color="black", weight=3]; 4162[label="Left vwx1910 <= Left vwx1920",fontsize=16,color="black",shape="box"];4162 -> 4408[label="",style="solid", color="black", weight=3]; 4163[label="Left vwx1910 <= Right vwx1920",fontsize=16,color="black",shape="box"];4163 -> 4409[label="",style="solid", color="black", weight=3]; 4164[label="Right vwx1910 <= Left vwx1920",fontsize=16,color="black",shape="box"];4164 -> 4410[label="",style="solid", color="black", weight=3]; 4165[label="Right vwx1910 <= Right vwx1920",fontsize=16,color="black",shape="box"];4165 -> 4411[label="",style="solid", color="black", weight=3]; 4141 -> 2383[label="",style="dashed", color="red", weight=0]; 4141[label="compare vwx191 vwx192",fontsize=16,color="magenta"];4141 -> 4412[label="",style="dashed", color="magenta", weight=3]; 4141 -> 4413[label="",style="dashed", color="magenta", weight=3]; 4166[label="(vwx1910,vwx1911,vwx1912) <= (vwx1920,vwx1921,vwx1922)",fontsize=16,color="black",shape="box"];4166 -> 4414[label="",style="solid", color="black", weight=3]; 4142 -> 2341[label="",style="dashed", color="red", weight=0]; 4142[label="compare vwx191 vwx192",fontsize=16,color="magenta"];4142 -> 4415[label="",style="dashed", color="magenta", weight=3]; 4142 -> 4416[label="",style="dashed", color="magenta", weight=3]; 4167[label="(vwx1910,vwx1911) <= (vwx1920,vwx1921)",fontsize=16,color="black",shape="box"];4167 -> 4417[label="",style="solid", color="black", weight=3]; 4143 -> 2387[label="",style="dashed", color="red", weight=0]; 4143[label="compare vwx191 vwx192",fontsize=16,color="magenta"];4143 -> 4418[label="",style="dashed", color="magenta", weight=3]; 4143 -> 4419[label="",style="dashed", color="magenta", weight=3]; 4144 -> 2388[label="",style="dashed", color="red", weight=0]; 4144[label="compare vwx191 vwx192",fontsize=16,color="magenta"];4144 -> 4420[label="",style="dashed", color="magenta", weight=3]; 4144 -> 4421[label="",style="dashed", color="magenta", weight=3]; 4168[label="GT",fontsize=16,color="green",shape="box"];4169[label="GT",fontsize=16,color="green",shape="box"];4170[label="GT",fontsize=16,color="green",shape="box"];4171[label="vwx242",fontsize=16,color="green",shape="box"];4172[label="vwx245",fontsize=16,color="green",shape="box"];4173[label="vwx242",fontsize=16,color="green",shape="box"];4174[label="vwx245",fontsize=16,color="green",shape="box"];4175[label="vwx242",fontsize=16,color="green",shape="box"];4176[label="vwx245",fontsize=16,color="green",shape="box"];4177[label="vwx242",fontsize=16,color="green",shape="box"];4178[label="vwx245",fontsize=16,color="green",shape="box"];4179[label="vwx242",fontsize=16,color="green",shape="box"];4180[label="vwx245",fontsize=16,color="green",shape="box"];4181[label="vwx242",fontsize=16,color="green",shape="box"];4182[label="vwx245",fontsize=16,color="green",shape="box"];4183[label="vwx242",fontsize=16,color="green",shape="box"];4184[label="vwx245",fontsize=16,color="green",shape="box"];4185[label="vwx242",fontsize=16,color="green",shape="box"];4186[label="vwx245",fontsize=16,color="green",shape="box"];4187[label="vwx242",fontsize=16,color="green",shape="box"];4188[label="vwx245",fontsize=16,color="green",shape="box"];4189[label="vwx242",fontsize=16,color="green",shape="box"];4190[label="vwx245",fontsize=16,color="green",shape="box"];4191[label="vwx242",fontsize=16,color="green",shape="box"];4192[label="vwx245",fontsize=16,color="green",shape="box"];4193[label="vwx242",fontsize=16,color="green",shape="box"];4194[label="vwx245",fontsize=16,color="green",shape="box"];4195[label="vwx242",fontsize=16,color="green",shape="box"];4196[label="vwx245",fontsize=16,color="green",shape="box"];4197[label="vwx242",fontsize=16,color="green",shape="box"];4198[label="vwx245",fontsize=16,color="green",shape="box"];4206 -> 3584[label="",style="dashed", color="red", weight=0]; 4206[label="vwx243 < vwx246",fontsize=16,color="magenta"];4206 -> 4422[label="",style="dashed", color="magenta", weight=3]; 4206 -> 4423[label="",style="dashed", color="magenta", weight=3]; 4207 -> 3585[label="",style="dashed", color="red", weight=0]; 4207[label="vwx243 < vwx246",fontsize=16,color="magenta"];4207 -> 4424[label="",style="dashed", color="magenta", weight=3]; 4207 -> 4425[label="",style="dashed", color="magenta", weight=3]; 4208 -> 3586[label="",style="dashed", color="red", weight=0]; 4208[label="vwx243 < vwx246",fontsize=16,color="magenta"];4208 -> 4426[label="",style="dashed", color="magenta", weight=3]; 4208 -> 4427[label="",style="dashed", color="magenta", weight=3]; 4209 -> 3587[label="",style="dashed", color="red", weight=0]; 4209[label="vwx243 < vwx246",fontsize=16,color="magenta"];4209 -> 4428[label="",style="dashed", color="magenta", weight=3]; 4209 -> 4429[label="",style="dashed", color="magenta", weight=3]; 4210 -> 3588[label="",style="dashed", color="red", weight=0]; 4210[label="vwx243 < vwx246",fontsize=16,color="magenta"];4210 -> 4430[label="",style="dashed", color="magenta", weight=3]; 4210 -> 4431[label="",style="dashed", color="magenta", weight=3]; 4211 -> 3589[label="",style="dashed", color="red", weight=0]; 4211[label="vwx243 < vwx246",fontsize=16,color="magenta"];4211 -> 4432[label="",style="dashed", color="magenta", weight=3]; 4211 -> 4433[label="",style="dashed", color="magenta", weight=3]; 4212 -> 3590[label="",style="dashed", color="red", weight=0]; 4212[label="vwx243 < vwx246",fontsize=16,color="magenta"];4212 -> 4434[label="",style="dashed", color="magenta", weight=3]; 4212 -> 4435[label="",style="dashed", color="magenta", weight=3]; 4213 -> 3591[label="",style="dashed", color="red", weight=0]; 4213[label="vwx243 < vwx246",fontsize=16,color="magenta"];4213 -> 4436[label="",style="dashed", color="magenta", weight=3]; 4213 -> 4437[label="",style="dashed", color="magenta", weight=3]; 4214 -> 3592[label="",style="dashed", color="red", weight=0]; 4214[label="vwx243 < vwx246",fontsize=16,color="magenta"];4214 -> 4438[label="",style="dashed", color="magenta", weight=3]; 4214 -> 4439[label="",style="dashed", color="magenta", weight=3]; 4215 -> 3593[label="",style="dashed", color="red", weight=0]; 4215[label="vwx243 < vwx246",fontsize=16,color="magenta"];4215 -> 4440[label="",style="dashed", color="magenta", weight=3]; 4215 -> 4441[label="",style="dashed", color="magenta", weight=3]; 4216 -> 3594[label="",style="dashed", color="red", weight=0]; 4216[label="vwx243 < vwx246",fontsize=16,color="magenta"];4216 -> 4442[label="",style="dashed", color="magenta", weight=3]; 4216 -> 4443[label="",style="dashed", color="magenta", weight=3]; 4217 -> 3595[label="",style="dashed", color="red", weight=0]; 4217[label="vwx243 < vwx246",fontsize=16,color="magenta"];4217 -> 4444[label="",style="dashed", color="magenta", weight=3]; 4217 -> 4445[label="",style="dashed", color="magenta", weight=3]; 4218 -> 3596[label="",style="dashed", color="red", weight=0]; 4218[label="vwx243 < vwx246",fontsize=16,color="magenta"];4218 -> 4446[label="",style="dashed", color="magenta", weight=3]; 4218 -> 4447[label="",style="dashed", color="magenta", weight=3]; 4219 -> 3597[label="",style="dashed", color="red", weight=0]; 4219[label="vwx243 < vwx246",fontsize=16,color="magenta"];4219 -> 4448[label="",style="dashed", color="magenta", weight=3]; 4219 -> 4449[label="",style="dashed", color="magenta", weight=3]; 4220[label="vwx243 == vwx246",fontsize=16,color="blue",shape="box"];5719[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];4220 -> 5719[label="",style="solid", color="blue", weight=9]; 5719 -> 4450[label="",style="solid", color="blue", weight=3]; 5720[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];4220 -> 5720[label="",style="solid", color="blue", weight=9]; 5720 -> 4451[label="",style="solid", color="blue", weight=3]; 5721[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];4220 -> 5721[label="",style="solid", color="blue", weight=9]; 5721 -> 4452[label="",style="solid", color="blue", weight=3]; 5722[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];4220 -> 5722[label="",style="solid", color="blue", weight=9]; 5722 -> 4453[label="",style="solid", color="blue", weight=3]; 5723[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];4220 -> 5723[label="",style="solid", color="blue", weight=9]; 5723 -> 4454[label="",style="solid", color="blue", weight=3]; 5724[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];4220 -> 5724[label="",style="solid", color="blue", weight=9]; 5724 -> 4455[label="",style="solid", color="blue", weight=3]; 5725[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4220 -> 5725[label="",style="solid", color="blue", weight=9]; 5725 -> 4456[label="",style="solid", color="blue", weight=3]; 5726[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4220 -> 5726[label="",style="solid", color="blue", weight=9]; 5726 -> 4457[label="",style="solid", color="blue", weight=3]; 5727[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];4220 -> 5727[label="",style="solid", color="blue", weight=9]; 5727 -> 4458[label="",style="solid", color="blue", weight=3]; 5728[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4220 -> 5728[label="",style="solid", color="blue", weight=9]; 5728 -> 4459[label="",style="solid", color="blue", weight=3]; 5729[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4220 -> 5729[label="",style="solid", color="blue", weight=9]; 5729 -> 4460[label="",style="solid", color="blue", weight=3]; 5730[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4220 -> 5730[label="",style="solid", color="blue", weight=9]; 5730 -> 4461[label="",style="solid", color="blue", weight=3]; 5731[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4220 -> 5731[label="",style="solid", color="blue", weight=9]; 5731 -> 4462[label="",style="solid", color="blue", weight=3]; 5732[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];4220 -> 5732[label="",style="solid", color="blue", weight=9]; 5732 -> 4463[label="",style="solid", color="blue", weight=3]; 4221[label="vwx244 <= vwx247",fontsize=16,color="blue",shape="box"];5733[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];4221 -> 5733[label="",style="solid", color="blue", weight=9]; 5733 -> 4464[label="",style="solid", color="blue", weight=3]; 5734[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];4221 -> 5734[label="",style="solid", color="blue", weight=9]; 5734 -> 4465[label="",style="solid", color="blue", weight=3]; 5735[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];4221 -> 5735[label="",style="solid", color="blue", weight=9]; 5735 -> 4466[label="",style="solid", color="blue", weight=3]; 5736[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];4221 -> 5736[label="",style="solid", color="blue", weight=9]; 5736 -> 4467[label="",style="solid", color="blue", weight=3]; 5737[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];4221 -> 5737[label="",style="solid", color="blue", weight=9]; 5737 -> 4468[label="",style="solid", color="blue", weight=3]; 5738[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];4221 -> 5738[label="",style="solid", color="blue", weight=9]; 5738 -> 4469[label="",style="solid", color="blue", weight=3]; 5739[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4221 -> 5739[label="",style="solid", color="blue", weight=9]; 5739 -> 4470[label="",style="solid", color="blue", weight=3]; 5740[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4221 -> 5740[label="",style="solid", color="blue", weight=9]; 5740 -> 4471[label="",style="solid", color="blue", weight=3]; 5741[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];4221 -> 5741[label="",style="solid", color="blue", weight=9]; 5741 -> 4472[label="",style="solid", color="blue", weight=3]; 5742[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4221 -> 5742[label="",style="solid", color="blue", weight=9]; 5742 -> 4473[label="",style="solid", color="blue", weight=3]; 5743[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4221 -> 5743[label="",style="solid", color="blue", weight=9]; 5743 -> 4474[label="",style="solid", color="blue", weight=3]; 5744[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4221 -> 5744[label="",style="solid", color="blue", weight=9]; 5744 -> 4475[label="",style="solid", color="blue", weight=3]; 5745[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4221 -> 5745[label="",style="solid", color="blue", weight=9]; 5745 -> 4476[label="",style="solid", color="blue", weight=3]; 5746[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];4221 -> 5746[label="",style="solid", color="blue", weight=9]; 5746 -> 4477[label="",style="solid", color="blue", weight=3]; 4222[label="False || vwx334",fontsize=16,color="black",shape="box"];4222 -> 4478[label="",style="solid", color="black", weight=3]; 4223[label="True || vwx334",fontsize=16,color="black",shape="box"];4223 -> 4479[label="",style="solid", color="black", weight=3]; 4224 -> 2375[label="",style="dashed", color="red", weight=0]; 4224[label="compare vwx242 vwx245",fontsize=16,color="magenta"];4224 -> 4480[label="",style="dashed", color="magenta", weight=3]; 4224 -> 4481[label="",style="dashed", color="magenta", weight=3]; 4225[label="LT",fontsize=16,color="green",shape="box"];4226 -> 2376[label="",style="dashed", color="red", weight=0]; 4226[label="compare vwx242 vwx245",fontsize=16,color="magenta"];4226 -> 4482[label="",style="dashed", color="magenta", weight=3]; 4226 -> 4483[label="",style="dashed", color="magenta", weight=3]; 4227[label="LT",fontsize=16,color="green",shape="box"];4228 -> 2377[label="",style="dashed", color="red", weight=0]; 4228[label="compare vwx242 vwx245",fontsize=16,color="magenta"];4228 -> 4484[label="",style="dashed", color="magenta", weight=3]; 4228 -> 4485[label="",style="dashed", color="magenta", weight=3]; 4229[label="LT",fontsize=16,color="green",shape="box"];4230 -> 2378[label="",style="dashed", color="red", weight=0]; 4230[label="compare vwx242 vwx245",fontsize=16,color="magenta"];4230 -> 4486[label="",style="dashed", color="magenta", weight=3]; 4230 -> 4487[label="",style="dashed", color="magenta", weight=3]; 4231[label="LT",fontsize=16,color="green",shape="box"];4232 -> 2379[label="",style="dashed", color="red", weight=0]; 4232[label="compare vwx242 vwx245",fontsize=16,color="magenta"];4232 -> 4488[label="",style="dashed", color="magenta", weight=3]; 4232 -> 4489[label="",style="dashed", color="magenta", weight=3]; 4233[label="LT",fontsize=16,color="green",shape="box"];4234 -> 2380[label="",style="dashed", color="red", weight=0]; 4234[label="compare vwx242 vwx245",fontsize=16,color="magenta"];4234 -> 4490[label="",style="dashed", color="magenta", weight=3]; 4234 -> 4491[label="",style="dashed", color="magenta", weight=3]; 4235[label="LT",fontsize=16,color="green",shape="box"];4236 -> 2381[label="",style="dashed", color="red", weight=0]; 4236[label="compare vwx242 vwx245",fontsize=16,color="magenta"];4236 -> 4492[label="",style="dashed", color="magenta", weight=3]; 4236 -> 4493[label="",style="dashed", color="magenta", weight=3]; 4237[label="LT",fontsize=16,color="green",shape="box"];4238 -> 2382[label="",style="dashed", color="red", weight=0]; 4238[label="compare vwx242 vwx245",fontsize=16,color="magenta"];4238 -> 4494[label="",style="dashed", color="magenta", weight=3]; 4238 -> 4495[label="",style="dashed", color="magenta", weight=3]; 4239[label="LT",fontsize=16,color="green",shape="box"];4240 -> 2383[label="",style="dashed", color="red", weight=0]; 4240[label="compare vwx242 vwx245",fontsize=16,color="magenta"];4240 -> 4496[label="",style="dashed", color="magenta", weight=3]; 4240 -> 4497[label="",style="dashed", color="magenta", weight=3]; 4241[label="LT",fontsize=16,color="green",shape="box"];4242 -> 2384[label="",style="dashed", color="red", weight=0]; 4242[label="compare vwx242 vwx245",fontsize=16,color="magenta"];4242 -> 4498[label="",style="dashed", color="magenta", weight=3]; 4242 -> 4499[label="",style="dashed", color="magenta", weight=3]; 4243[label="LT",fontsize=16,color="green",shape="box"];4244 -> 2341[label="",style="dashed", color="red", weight=0]; 4244[label="compare vwx242 vwx245",fontsize=16,color="magenta"];4244 -> 4500[label="",style="dashed", color="magenta", weight=3]; 4244 -> 4501[label="",style="dashed", color="magenta", weight=3]; 4245[label="LT",fontsize=16,color="green",shape="box"];4246 -> 2386[label="",style="dashed", color="red", weight=0]; 4246[label="compare vwx242 vwx245",fontsize=16,color="magenta"];4246 -> 4502[label="",style="dashed", color="magenta", weight=3]; 4246 -> 4503[label="",style="dashed", color="magenta", weight=3]; 4247[label="LT",fontsize=16,color="green",shape="box"];4248 -> 2387[label="",style="dashed", color="red", weight=0]; 4248[label="compare vwx242 vwx245",fontsize=16,color="magenta"];4248 -> 4504[label="",style="dashed", color="magenta", weight=3]; 4248 -> 4505[label="",style="dashed", color="magenta", weight=3]; 4249[label="LT",fontsize=16,color="green",shape="box"];4250 -> 2388[label="",style="dashed", color="red", weight=0]; 4250[label="compare vwx242 vwx245",fontsize=16,color="magenta"];4250 -> 4506[label="",style="dashed", color="magenta", weight=3]; 4250 -> 4507[label="",style="dashed", color="magenta", weight=3]; 4251[label="LT",fontsize=16,color="green",shape="box"];4252[label="compare1 (vwx320,vwx321,vwx322) (vwx323,vwx324,vwx325) False",fontsize=16,color="black",shape="box"];4252 -> 4508[label="",style="solid", color="black", weight=3]; 4253[label="compare1 (vwx320,vwx321,vwx322) (vwx323,vwx324,vwx325) True",fontsize=16,color="black",shape="box"];4253 -> 4509[label="",style="solid", color="black", weight=3]; 4254[label="True",fontsize=16,color="green",shape="box"];4255[label="vwx255",fontsize=16,color="green",shape="box"];4256[label="vwx257",fontsize=16,color="green",shape="box"];4257[label="vwx255",fontsize=16,color="green",shape="box"];4258[label="vwx257",fontsize=16,color="green",shape="box"];4259[label="vwx255",fontsize=16,color="green",shape="box"];4260[label="vwx257",fontsize=16,color="green",shape="box"];4261[label="vwx255",fontsize=16,color="green",shape="box"];4262[label="vwx257",fontsize=16,color="green",shape="box"];4263[label="vwx255",fontsize=16,color="green",shape="box"];4264[label="vwx257",fontsize=16,color="green",shape="box"];4265[label="vwx255",fontsize=16,color="green",shape="box"];4266[label="vwx257",fontsize=16,color="green",shape="box"];4267[label="vwx255",fontsize=16,color="green",shape="box"];4268[label="vwx257",fontsize=16,color="green",shape="box"];4269[label="vwx255",fontsize=16,color="green",shape="box"];4270[label="vwx257",fontsize=16,color="green",shape="box"];4271[label="vwx255",fontsize=16,color="green",shape="box"];4272[label="vwx257",fontsize=16,color="green",shape="box"];4273[label="vwx255",fontsize=16,color="green",shape="box"];4274[label="vwx257",fontsize=16,color="green",shape="box"];4275[label="vwx255",fontsize=16,color="green",shape="box"];4276[label="vwx257",fontsize=16,color="green",shape="box"];4277[label="vwx255",fontsize=16,color="green",shape="box"];4278[label="vwx257",fontsize=16,color="green",shape="box"];4279[label="vwx255",fontsize=16,color="green",shape="box"];4280[label="vwx257",fontsize=16,color="green",shape="box"];4281[label="vwx255",fontsize=16,color="green",shape="box"];4282[label="vwx257",fontsize=16,color="green",shape="box"];4283[label="vwx256",fontsize=16,color="green",shape="box"];4284[label="vwx258",fontsize=16,color="green",shape="box"];4285[label="vwx256",fontsize=16,color="green",shape="box"];4286[label="vwx258",fontsize=16,color="green",shape="box"];4287[label="vwx256",fontsize=16,color="green",shape="box"];4288[label="vwx258",fontsize=16,color="green",shape="box"];4289[label="vwx256",fontsize=16,color="green",shape="box"];4290[label="vwx258",fontsize=16,color="green",shape="box"];4291[label="vwx256",fontsize=16,color="green",shape="box"];4292[label="vwx258",fontsize=16,color="green",shape="box"];4293[label="vwx256",fontsize=16,color="green",shape="box"];4294[label="vwx258",fontsize=16,color="green",shape="box"];4295[label="vwx256",fontsize=16,color="green",shape="box"];4296[label="vwx258",fontsize=16,color="green",shape="box"];4297[label="vwx256",fontsize=16,color="green",shape="box"];4298[label="vwx258",fontsize=16,color="green",shape="box"];4299[label="vwx256",fontsize=16,color="green",shape="box"];4300[label="vwx258",fontsize=16,color="green",shape="box"];4301[label="vwx256",fontsize=16,color="green",shape="box"];4302[label="vwx258",fontsize=16,color="green",shape="box"];4303[label="vwx256",fontsize=16,color="green",shape="box"];4304[label="vwx258",fontsize=16,color="green",shape="box"];4305[label="vwx256",fontsize=16,color="green",shape="box"];4306[label="vwx258",fontsize=16,color="green",shape="box"];4307[label="vwx256",fontsize=16,color="green",shape="box"];4308[label="vwx258",fontsize=16,color="green",shape="box"];4309[label="vwx256",fontsize=16,color="green",shape="box"];4310[label="vwx258",fontsize=16,color="green",shape="box"];4311[label="compare1 (vwx303,vwx304) (vwx305,vwx306) False",fontsize=16,color="black",shape="box"];4311 -> 4510[label="",style="solid", color="black", weight=3]; 4312[label="compare1 (vwx303,vwx304) (vwx305,vwx306) True",fontsize=16,color="black",shape="box"];4312 -> 4511[label="",style="solid", color="black", weight=3]; 4313[label="True",fontsize=16,color="green",shape="box"];4314 -> 4512[label="",style="dashed", color="red", weight=0]; 4314[label="primPlusNat (primMulNat vwx30000 (Succ vwx40100)) (Succ vwx40100)",fontsize=16,color="magenta"];4314 -> 4513[label="",style="dashed", color="magenta", weight=3]; 4315[label="Zero",fontsize=16,color="green",shape="box"];4316[label="Zero",fontsize=16,color="green",shape="box"];4317[label="Zero",fontsize=16,color="green",shape="box"];4318[label="vwx30000",fontsize=16,color="green",shape="box"];4319[label="vwx40000",fontsize=16,color="green",shape="box"];4320[label="vwx30000",fontsize=16,color="green",shape="box"];4321[label="vwx40000",fontsize=16,color="green",shape="box"];4322 -> 3441[label="",style="dashed", color="red", weight=0]; 4322[label="primEqNat vwx30000 vwx40000",fontsize=16,color="magenta"];4322 -> 4514[label="",style="dashed", color="magenta", weight=3]; 4322 -> 4515[label="",style="dashed", color="magenta", weight=3]; 4323[label="False",fontsize=16,color="green",shape="box"];4324[label="False",fontsize=16,color="green",shape="box"];4325[label="True",fontsize=16,color="green",shape="box"];4326[label="vwx3001",fontsize=16,color="green",shape="box"];4327[label="vwx4001",fontsize=16,color="green",shape="box"];4328[label="vwx3001",fontsize=16,color="green",shape="box"];4329[label="vwx4001",fontsize=16,color="green",shape="box"];4330[label="vwx3001",fontsize=16,color="green",shape="box"];4331[label="vwx4001",fontsize=16,color="green",shape="box"];4332[label="vwx3001",fontsize=16,color="green",shape="box"];4333[label="vwx4001",fontsize=16,color="green",shape="box"];4334[label="vwx3001",fontsize=16,color="green",shape="box"];4335[label="vwx4001",fontsize=16,color="green",shape="box"];4336[label="vwx3001",fontsize=16,color="green",shape="box"];4337[label="vwx4001",fontsize=16,color="green",shape="box"];4338[label="vwx3001",fontsize=16,color="green",shape="box"];4339[label="vwx4001",fontsize=16,color="green",shape="box"];4340[label="vwx3001",fontsize=16,color="green",shape="box"];4341[label="vwx4001",fontsize=16,color="green",shape="box"];4342[label="vwx3001",fontsize=16,color="green",shape="box"];4343[label="vwx4001",fontsize=16,color="green",shape="box"];4344[label="vwx3001",fontsize=16,color="green",shape="box"];4345[label="vwx4001",fontsize=16,color="green",shape="box"];4346[label="vwx3001",fontsize=16,color="green",shape="box"];4347[label="vwx4001",fontsize=16,color="green",shape="box"];4348[label="vwx3001",fontsize=16,color="green",shape="box"];4349[label="vwx4001",fontsize=16,color="green",shape="box"];4350[label="vwx3001",fontsize=16,color="green",shape="box"];4351[label="vwx4001",fontsize=16,color="green",shape="box"];4352[label="vwx3001",fontsize=16,color="green",shape="box"];4353[label="vwx4001",fontsize=16,color="green",shape="box"];4354[label="vwx3002",fontsize=16,color="green",shape="box"];4355[label="vwx4002",fontsize=16,color="green",shape="box"];4356[label="vwx3002",fontsize=16,color="green",shape="box"];4357[label="vwx4002",fontsize=16,color="green",shape="box"];4358[label="vwx3002",fontsize=16,color="green",shape="box"];4359[label="vwx4002",fontsize=16,color="green",shape="box"];4360[label="vwx3002",fontsize=16,color="green",shape="box"];4361[label="vwx4002",fontsize=16,color="green",shape="box"];4362[label="vwx3002",fontsize=16,color="green",shape="box"];4363[label="vwx4002",fontsize=16,color="green",shape="box"];4364[label="vwx3002",fontsize=16,color="green",shape="box"];4365[label="vwx4002",fontsize=16,color="green",shape="box"];4366[label="vwx3002",fontsize=16,color="green",shape="box"];4367[label="vwx4002",fontsize=16,color="green",shape="box"];4368[label="vwx3002",fontsize=16,color="green",shape="box"];4369[label="vwx4002",fontsize=16,color="green",shape="box"];4370[label="vwx3002",fontsize=16,color="green",shape="box"];4371[label="vwx4002",fontsize=16,color="green",shape="box"];4372[label="vwx3002",fontsize=16,color="green",shape="box"];4373[label="vwx4002",fontsize=16,color="green",shape="box"];4374[label="vwx3002",fontsize=16,color="green",shape="box"];4375[label="vwx4002",fontsize=16,color="green",shape="box"];4376[label="vwx3002",fontsize=16,color="green",shape="box"];4377[label="vwx4002",fontsize=16,color="green",shape="box"];4378[label="vwx3002",fontsize=16,color="green",shape="box"];4379[label="vwx4002",fontsize=16,color="green",shape="box"];4380[label="vwx3002",fontsize=16,color="green",shape="box"];4381[label="vwx4002",fontsize=16,color="green",shape="box"];4382[label="vwx191",fontsize=16,color="green",shape="box"];4383[label="vwx192",fontsize=16,color="green",shape="box"];4384 -> 2258[label="",style="dashed", color="red", weight=0]; 4384[label="not (vwx329 == GT)",fontsize=16,color="magenta"];4384 -> 4516[label="",style="dashed", color="magenta", weight=3]; 4385[label="vwx191",fontsize=16,color="green",shape="box"];4386[label="vwx192",fontsize=16,color="green",shape="box"];4387[label="True",fontsize=16,color="green",shape="box"];4388[label="True",fontsize=16,color="green",shape="box"];4389[label="True",fontsize=16,color="green",shape="box"];4390[label="False",fontsize=16,color="green",shape="box"];4391[label="True",fontsize=16,color="green",shape="box"];4392[label="True",fontsize=16,color="green",shape="box"];4393[label="False",fontsize=16,color="green",shape="box"];4394[label="False",fontsize=16,color="green",shape="box"];4395[label="True",fontsize=16,color="green",shape="box"];4396[label="vwx191",fontsize=16,color="green",shape="box"];4397[label="vwx192",fontsize=16,color="green",shape="box"];4398[label="vwx191",fontsize=16,color="green",shape="box"];4399[label="vwx192",fontsize=16,color="green",shape="box"];4400[label="True",fontsize=16,color="green",shape="box"];4401[label="True",fontsize=16,color="green",shape="box"];4402[label="False",fontsize=16,color="green",shape="box"];4403[label="True",fontsize=16,color="green",shape="box"];4404[label="True",fontsize=16,color="green",shape="box"];4405[label="True",fontsize=16,color="green",shape="box"];4406[label="False",fontsize=16,color="green",shape="box"];4407[label="vwx1910 <= vwx1920",fontsize=16,color="blue",shape="box"];5747[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];4407 -> 5747[label="",style="solid", color="blue", weight=9]; 5747 -> 4517[label="",style="solid", color="blue", weight=3]; 5748[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];4407 -> 5748[label="",style="solid", color="blue", weight=9]; 5748 -> 4518[label="",style="solid", color="blue", weight=3]; 5749[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];4407 -> 5749[label="",style="solid", color="blue", weight=9]; 5749 -> 4519[label="",style="solid", color="blue", weight=3]; 5750[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];4407 -> 5750[label="",style="solid", color="blue", weight=9]; 5750 -> 4520[label="",style="solid", color="blue", weight=3]; 5751[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];4407 -> 5751[label="",style="solid", color="blue", weight=9]; 5751 -> 4521[label="",style="solid", color="blue", weight=3]; 5752[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];4407 -> 5752[label="",style="solid", color="blue", weight=9]; 5752 -> 4522[label="",style="solid", color="blue", weight=3]; 5753[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4407 -> 5753[label="",style="solid", color="blue", weight=9]; 5753 -> 4523[label="",style="solid", color="blue", weight=3]; 5754[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4407 -> 5754[label="",style="solid", color="blue", weight=9]; 5754 -> 4524[label="",style="solid", color="blue", weight=3]; 5755[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];4407 -> 5755[label="",style="solid", color="blue", weight=9]; 5755 -> 4525[label="",style="solid", color="blue", weight=3]; 5756[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4407 -> 5756[label="",style="solid", color="blue", weight=9]; 5756 -> 4526[label="",style="solid", color="blue", weight=3]; 5757[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4407 -> 5757[label="",style="solid", color="blue", weight=9]; 5757 -> 4527[label="",style="solid", color="blue", weight=3]; 5758[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4407 -> 5758[label="",style="solid", color="blue", weight=9]; 5758 -> 4528[label="",style="solid", color="blue", weight=3]; 5759[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4407 -> 5759[label="",style="solid", color="blue", weight=9]; 5759 -> 4529[label="",style="solid", color="blue", weight=3]; 5760[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];4407 -> 5760[label="",style="solid", color="blue", weight=9]; 5760 -> 4530[label="",style="solid", color="blue", weight=3]; 4408[label="vwx1910 <= vwx1920",fontsize=16,color="blue",shape="box"];5761[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];4408 -> 5761[label="",style="solid", color="blue", weight=9]; 5761 -> 4531[label="",style="solid", color="blue", weight=3]; 5762[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];4408 -> 5762[label="",style="solid", color="blue", weight=9]; 5762 -> 4532[label="",style="solid", color="blue", weight=3]; 5763[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];4408 -> 5763[label="",style="solid", color="blue", weight=9]; 5763 -> 4533[label="",style="solid", color="blue", weight=3]; 5764[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];4408 -> 5764[label="",style="solid", color="blue", weight=9]; 5764 -> 4534[label="",style="solid", color="blue", weight=3]; 5765[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];4408 -> 5765[label="",style="solid", color="blue", weight=9]; 5765 -> 4535[label="",style="solid", color="blue", weight=3]; 5766[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];4408 -> 5766[label="",style="solid", color="blue", weight=9]; 5766 -> 4536[label="",style="solid", color="blue", weight=3]; 5767[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4408 -> 5767[label="",style="solid", color="blue", weight=9]; 5767 -> 4537[label="",style="solid", color="blue", weight=3]; 5768[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4408 -> 5768[label="",style="solid", color="blue", weight=9]; 5768 -> 4538[label="",style="solid", color="blue", weight=3]; 5769[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];4408 -> 5769[label="",style="solid", color="blue", weight=9]; 5769 -> 4539[label="",style="solid", color="blue", weight=3]; 5770[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4408 -> 5770[label="",style="solid", color="blue", weight=9]; 5770 -> 4540[label="",style="solid", color="blue", weight=3]; 5771[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4408 -> 5771[label="",style="solid", color="blue", weight=9]; 5771 -> 4541[label="",style="solid", color="blue", weight=3]; 5772[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4408 -> 5772[label="",style="solid", color="blue", weight=9]; 5772 -> 4542[label="",style="solid", color="blue", weight=3]; 5773[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4408 -> 5773[label="",style="solid", color="blue", weight=9]; 5773 -> 4543[label="",style="solid", color="blue", weight=3]; 5774[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];4408 -> 5774[label="",style="solid", color="blue", weight=9]; 5774 -> 4544[label="",style="solid", color="blue", weight=3]; 4409[label="True",fontsize=16,color="green",shape="box"];4410[label="False",fontsize=16,color="green",shape="box"];4411[label="vwx1910 <= vwx1920",fontsize=16,color="blue",shape="box"];5775[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];4411 -> 5775[label="",style="solid", color="blue", weight=9]; 5775 -> 4545[label="",style="solid", color="blue", weight=3]; 5776[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];4411 -> 5776[label="",style="solid", color="blue", weight=9]; 5776 -> 4546[label="",style="solid", color="blue", weight=3]; 5777[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];4411 -> 5777[label="",style="solid", color="blue", weight=9]; 5777 -> 4547[label="",style="solid", color="blue", weight=3]; 5778[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];4411 -> 5778[label="",style="solid", color="blue", weight=9]; 5778 -> 4548[label="",style="solid", color="blue", weight=3]; 5779[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];4411 -> 5779[label="",style="solid", color="blue", weight=9]; 5779 -> 4549[label="",style="solid", color="blue", weight=3]; 5780[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];4411 -> 5780[label="",style="solid", color="blue", weight=9]; 5780 -> 4550[label="",style="solid", color="blue", weight=3]; 5781[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4411 -> 5781[label="",style="solid", color="blue", weight=9]; 5781 -> 4551[label="",style="solid", color="blue", weight=3]; 5782[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4411 -> 5782[label="",style="solid", color="blue", weight=9]; 5782 -> 4552[label="",style="solid", color="blue", weight=3]; 5783[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];4411 -> 5783[label="",style="solid", color="blue", weight=9]; 5783 -> 4553[label="",style="solid", color="blue", weight=3]; 5784[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4411 -> 5784[label="",style="solid", color="blue", weight=9]; 5784 -> 4554[label="",style="solid", color="blue", weight=3]; 5785[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4411 -> 5785[label="",style="solid", color="blue", weight=9]; 5785 -> 4555[label="",style="solid", color="blue", weight=3]; 5786[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4411 -> 5786[label="",style="solid", color="blue", weight=9]; 5786 -> 4556[label="",style="solid", color="blue", weight=3]; 5787[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4411 -> 5787[label="",style="solid", color="blue", weight=9]; 5787 -> 4557[label="",style="solid", color="blue", weight=3]; 5788[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];4411 -> 5788[label="",style="solid", color="blue", weight=9]; 5788 -> 4558[label="",style="solid", color="blue", weight=3]; 4412[label="vwx191",fontsize=16,color="green",shape="box"];4413[label="vwx192",fontsize=16,color="green",shape="box"];4414 -> 4201[label="",style="dashed", color="red", weight=0]; 4414[label="vwx1910 < vwx1920 || vwx1910 == vwx1920 && (vwx1911 < vwx1921 || vwx1911 == vwx1921 && vwx1912 <= vwx1922)",fontsize=16,color="magenta"];4414 -> 4559[label="",style="dashed", color="magenta", weight=3]; 4414 -> 4560[label="",style="dashed", color="magenta", weight=3]; 4415[label="vwx192",fontsize=16,color="green",shape="box"];4416[label="vwx191",fontsize=16,color="green",shape="box"];4417 -> 4201[label="",style="dashed", color="red", weight=0]; 4417[label="vwx1910 < vwx1920 || vwx1910 == vwx1920 && vwx1911 <= vwx1921",fontsize=16,color="magenta"];4417 -> 4561[label="",style="dashed", color="magenta", weight=3]; 4417 -> 4562[label="",style="dashed", color="magenta", weight=3]; 4418[label="vwx191",fontsize=16,color="green",shape="box"];4419[label="vwx192",fontsize=16,color="green",shape="box"];4420[label="vwx191",fontsize=16,color="green",shape="box"];4421[label="vwx192",fontsize=16,color="green",shape="box"];4422[label="vwx243",fontsize=16,color="green",shape="box"];4423[label="vwx246",fontsize=16,color="green",shape="box"];4424[label="vwx243",fontsize=16,color="green",shape="box"];4425[label="vwx246",fontsize=16,color="green",shape="box"];4426[label="vwx243",fontsize=16,color="green",shape="box"];4427[label="vwx246",fontsize=16,color="green",shape="box"];4428[label="vwx243",fontsize=16,color="green",shape="box"];4429[label="vwx246",fontsize=16,color="green",shape="box"];4430[label="vwx243",fontsize=16,color="green",shape="box"];4431[label="vwx246",fontsize=16,color="green",shape="box"];4432[label="vwx243",fontsize=16,color="green",shape="box"];4433[label="vwx246",fontsize=16,color="green",shape="box"];4434[label="vwx243",fontsize=16,color="green",shape="box"];4435[label="vwx246",fontsize=16,color="green",shape="box"];4436[label="vwx243",fontsize=16,color="green",shape="box"];4437[label="vwx246",fontsize=16,color="green",shape="box"];4438[label="vwx243",fontsize=16,color="green",shape="box"];4439[label="vwx246",fontsize=16,color="green",shape="box"];4440[label="vwx243",fontsize=16,color="green",shape="box"];4441[label="vwx246",fontsize=16,color="green",shape="box"];4442[label="vwx243",fontsize=16,color="green",shape="box"];4443[label="vwx246",fontsize=16,color="green",shape="box"];4444[label="vwx243",fontsize=16,color="green",shape="box"];4445[label="vwx246",fontsize=16,color="green",shape="box"];4446[label="vwx243",fontsize=16,color="green",shape="box"];4447[label="vwx246",fontsize=16,color="green",shape="box"];4448[label="vwx243",fontsize=16,color="green",shape="box"];4449[label="vwx246",fontsize=16,color="green",shape="box"];4450 -> 2642[label="",style="dashed", color="red", weight=0]; 4450[label="vwx243 == vwx246",fontsize=16,color="magenta"];4450 -> 4563[label="",style="dashed", color="magenta", weight=3]; 4450 -> 4564[label="",style="dashed", color="magenta", weight=3]; 4451 -> 2645[label="",style="dashed", color="red", weight=0]; 4451[label="vwx243 == vwx246",fontsize=16,color="magenta"];4451 -> 4565[label="",style="dashed", color="magenta", weight=3]; 4451 -> 4566[label="",style="dashed", color="magenta", weight=3]; 4452 -> 2641[label="",style="dashed", color="red", weight=0]; 4452[label="vwx243 == vwx246",fontsize=16,color="magenta"];4452 -> 4567[label="",style="dashed", color="magenta", weight=3]; 4452 -> 4568[label="",style="dashed", color="magenta", weight=3]; 4453 -> 2643[label="",style="dashed", color="red", weight=0]; 4453[label="vwx243 == vwx246",fontsize=16,color="magenta"];4453 -> 4569[label="",style="dashed", color="magenta", weight=3]; 4453 -> 4570[label="",style="dashed", color="magenta", weight=3]; 4454 -> 2652[label="",style="dashed", color="red", weight=0]; 4454[label="vwx243 == vwx246",fontsize=16,color="magenta"];4454 -> 4571[label="",style="dashed", color="magenta", weight=3]; 4454 -> 4572[label="",style="dashed", color="magenta", weight=3]; 4455 -> 2647[label="",style="dashed", color="red", weight=0]; 4455[label="vwx243 == vwx246",fontsize=16,color="magenta"];4455 -> 4573[label="",style="dashed", color="magenta", weight=3]; 4455 -> 4574[label="",style="dashed", color="magenta", weight=3]; 4456 -> 2648[label="",style="dashed", color="red", weight=0]; 4456[label="vwx243 == vwx246",fontsize=16,color="magenta"];4456 -> 4575[label="",style="dashed", color="magenta", weight=3]; 4456 -> 4576[label="",style="dashed", color="magenta", weight=3]; 4457 -> 2650[label="",style="dashed", color="red", weight=0]; 4457[label="vwx243 == vwx246",fontsize=16,color="magenta"];4457 -> 4577[label="",style="dashed", color="magenta", weight=3]; 4457 -> 4578[label="",style="dashed", color="magenta", weight=3]; 4458 -> 2646[label="",style="dashed", color="red", weight=0]; 4458[label="vwx243 == vwx246",fontsize=16,color="magenta"];4458 -> 4579[label="",style="dashed", color="magenta", weight=3]; 4458 -> 4580[label="",style="dashed", color="magenta", weight=3]; 4459 -> 2653[label="",style="dashed", color="red", weight=0]; 4459[label="vwx243 == vwx246",fontsize=16,color="magenta"];4459 -> 4581[label="",style="dashed", color="magenta", weight=3]; 4459 -> 4582[label="",style="dashed", color="magenta", weight=3]; 4460 -> 2640[label="",style="dashed", color="red", weight=0]; 4460[label="vwx243 == vwx246",fontsize=16,color="magenta"];4460 -> 4583[label="",style="dashed", color="magenta", weight=3]; 4460 -> 4584[label="",style="dashed", color="magenta", weight=3]; 4461 -> 2644[label="",style="dashed", color="red", weight=0]; 4461[label="vwx243 == vwx246",fontsize=16,color="magenta"];4461 -> 4585[label="",style="dashed", color="magenta", weight=3]; 4461 -> 4586[label="",style="dashed", color="magenta", weight=3]; 4462 -> 2649[label="",style="dashed", color="red", weight=0]; 4462[label="vwx243 == vwx246",fontsize=16,color="magenta"];4462 -> 4587[label="",style="dashed", color="magenta", weight=3]; 4462 -> 4588[label="",style="dashed", color="magenta", weight=3]; 4463 -> 2651[label="",style="dashed", color="red", weight=0]; 4463[label="vwx243 == vwx246",fontsize=16,color="magenta"];4463 -> 4589[label="",style="dashed", color="magenta", weight=3]; 4463 -> 4590[label="",style="dashed", color="magenta", weight=3]; 4464 -> 3442[label="",style="dashed", color="red", weight=0]; 4464[label="vwx244 <= vwx247",fontsize=16,color="magenta"];4464 -> 4591[label="",style="dashed", color="magenta", weight=3]; 4464 -> 4592[label="",style="dashed", color="magenta", weight=3]; 4465 -> 3443[label="",style="dashed", color="red", weight=0]; 4465[label="vwx244 <= vwx247",fontsize=16,color="magenta"];4465 -> 4593[label="",style="dashed", color="magenta", weight=3]; 4465 -> 4594[label="",style="dashed", color="magenta", weight=3]; 4466 -> 3444[label="",style="dashed", color="red", weight=0]; 4466[label="vwx244 <= vwx247",fontsize=16,color="magenta"];4466 -> 4595[label="",style="dashed", color="magenta", weight=3]; 4466 -> 4596[label="",style="dashed", color="magenta", weight=3]; 4467 -> 3445[label="",style="dashed", color="red", weight=0]; 4467[label="vwx244 <= vwx247",fontsize=16,color="magenta"];4467 -> 4597[label="",style="dashed", color="magenta", weight=3]; 4467 -> 4598[label="",style="dashed", color="magenta", weight=3]; 4468 -> 3446[label="",style="dashed", color="red", weight=0]; 4468[label="vwx244 <= vwx247",fontsize=16,color="magenta"];4468 -> 4599[label="",style="dashed", color="magenta", weight=3]; 4468 -> 4600[label="",style="dashed", color="magenta", weight=3]; 4469 -> 3447[label="",style="dashed", color="red", weight=0]; 4469[label="vwx244 <= vwx247",fontsize=16,color="magenta"];4469 -> 4601[label="",style="dashed", color="magenta", weight=3]; 4469 -> 4602[label="",style="dashed", color="magenta", weight=3]; 4470 -> 3448[label="",style="dashed", color="red", weight=0]; 4470[label="vwx244 <= vwx247",fontsize=16,color="magenta"];4470 -> 4603[label="",style="dashed", color="magenta", weight=3]; 4470 -> 4604[label="",style="dashed", color="magenta", weight=3]; 4471 -> 3449[label="",style="dashed", color="red", weight=0]; 4471[label="vwx244 <= vwx247",fontsize=16,color="magenta"];4471 -> 4605[label="",style="dashed", color="magenta", weight=3]; 4471 -> 4606[label="",style="dashed", color="magenta", weight=3]; 4472 -> 3450[label="",style="dashed", color="red", weight=0]; 4472[label="vwx244 <= vwx247",fontsize=16,color="magenta"];4472 -> 4607[label="",style="dashed", color="magenta", weight=3]; 4472 -> 4608[label="",style="dashed", color="magenta", weight=3]; 4473 -> 3451[label="",style="dashed", color="red", weight=0]; 4473[label="vwx244 <= vwx247",fontsize=16,color="magenta"];4473 -> 4609[label="",style="dashed", color="magenta", weight=3]; 4473 -> 4610[label="",style="dashed", color="magenta", weight=3]; 4474 -> 3452[label="",style="dashed", color="red", weight=0]; 4474[label="vwx244 <= vwx247",fontsize=16,color="magenta"];4474 -> 4611[label="",style="dashed", color="magenta", weight=3]; 4474 -> 4612[label="",style="dashed", color="magenta", weight=3]; 4475 -> 3453[label="",style="dashed", color="red", weight=0]; 4475[label="vwx244 <= vwx247",fontsize=16,color="magenta"];4475 -> 4613[label="",style="dashed", color="magenta", weight=3]; 4475 -> 4614[label="",style="dashed", color="magenta", weight=3]; 4476 -> 3454[label="",style="dashed", color="red", weight=0]; 4476[label="vwx244 <= vwx247",fontsize=16,color="magenta"];4476 -> 4615[label="",style="dashed", color="magenta", weight=3]; 4476 -> 4616[label="",style="dashed", color="magenta", weight=3]; 4477 -> 3455[label="",style="dashed", color="red", weight=0]; 4477[label="vwx244 <= vwx247",fontsize=16,color="magenta"];4477 -> 4617[label="",style="dashed", color="magenta", weight=3]; 4477 -> 4618[label="",style="dashed", color="magenta", weight=3]; 4478[label="vwx334",fontsize=16,color="green",shape="box"];4479[label="True",fontsize=16,color="green",shape="box"];4480[label="vwx242",fontsize=16,color="green",shape="box"];4481[label="vwx245",fontsize=16,color="green",shape="box"];4482[label="vwx242",fontsize=16,color="green",shape="box"];4483[label="vwx245",fontsize=16,color="green",shape="box"];4484[label="vwx242",fontsize=16,color="green",shape="box"];4485[label="vwx245",fontsize=16,color="green",shape="box"];4486[label="vwx242",fontsize=16,color="green",shape="box"];4487[label="vwx245",fontsize=16,color="green",shape="box"];4488[label="vwx242",fontsize=16,color="green",shape="box"];4489[label="vwx245",fontsize=16,color="green",shape="box"];4490[label="vwx242",fontsize=16,color="green",shape="box"];4491[label="vwx245",fontsize=16,color="green",shape="box"];4492[label="vwx242",fontsize=16,color="green",shape="box"];4493[label="vwx245",fontsize=16,color="green",shape="box"];4494[label="vwx242",fontsize=16,color="green",shape="box"];4495[label="vwx245",fontsize=16,color="green",shape="box"];4496[label="vwx242",fontsize=16,color="green",shape="box"];4497[label="vwx245",fontsize=16,color="green",shape="box"];4498[label="vwx242",fontsize=16,color="green",shape="box"];4499[label="vwx245",fontsize=16,color="green",shape="box"];4500[label="vwx245",fontsize=16,color="green",shape="box"];4501[label="vwx242",fontsize=16,color="green",shape="box"];4502[label="vwx242",fontsize=16,color="green",shape="box"];4503[label="vwx245",fontsize=16,color="green",shape="box"];4504[label="vwx242",fontsize=16,color="green",shape="box"];4505[label="vwx245",fontsize=16,color="green",shape="box"];4506[label="vwx242",fontsize=16,color="green",shape="box"];4507[label="vwx245",fontsize=16,color="green",shape="box"];4508[label="compare0 (vwx320,vwx321,vwx322) (vwx323,vwx324,vwx325) otherwise",fontsize=16,color="black",shape="box"];4508 -> 4619[label="",style="solid", color="black", weight=3]; 4509[label="LT",fontsize=16,color="green",shape="box"];4510[label="compare0 (vwx303,vwx304) (vwx305,vwx306) otherwise",fontsize=16,color="black",shape="box"];4510 -> 4620[label="",style="solid", color="black", weight=3]; 4511[label="LT",fontsize=16,color="green",shape="box"];4513 -> 3383[label="",style="dashed", color="red", weight=0]; 4513[label="primMulNat vwx30000 (Succ vwx40100)",fontsize=16,color="magenta"];4513 -> 4621[label="",style="dashed", color="magenta", weight=3]; 4513 -> 4622[label="",style="dashed", color="magenta", weight=3]; 4512[label="primPlusNat vwx335 (Succ vwx40100)",fontsize=16,color="burlywood",shape="triangle"];5789[label="vwx335/Succ vwx3350",fontsize=10,color="white",style="solid",shape="box"];4512 -> 5789[label="",style="solid", color="burlywood", weight=9]; 5789 -> 4623[label="",style="solid", color="burlywood", weight=3]; 5790[label="vwx335/Zero",fontsize=10,color="white",style="solid",shape="box"];4512 -> 5790[label="",style="solid", color="burlywood", weight=9]; 5790 -> 4624[label="",style="solid", color="burlywood", weight=3]; 4514[label="vwx30000",fontsize=16,color="green",shape="box"];4515[label="vwx40000",fontsize=16,color="green",shape="box"];4516 -> 2641[label="",style="dashed", color="red", weight=0]; 4516[label="vwx329 == GT",fontsize=16,color="magenta"];4516 -> 4625[label="",style="dashed", color="magenta", weight=3]; 4516 -> 4626[label="",style="dashed", color="magenta", weight=3]; 4517 -> 3442[label="",style="dashed", color="red", weight=0]; 4517[label="vwx1910 <= vwx1920",fontsize=16,color="magenta"];4517 -> 4627[label="",style="dashed", color="magenta", weight=3]; 4517 -> 4628[label="",style="dashed", color="magenta", weight=3]; 4518 -> 3443[label="",style="dashed", color="red", weight=0]; 4518[label="vwx1910 <= vwx1920",fontsize=16,color="magenta"];4518 -> 4629[label="",style="dashed", color="magenta", weight=3]; 4518 -> 4630[label="",style="dashed", color="magenta", weight=3]; 4519 -> 3444[label="",style="dashed", color="red", weight=0]; 4519[label="vwx1910 <= vwx1920",fontsize=16,color="magenta"];4519 -> 4631[label="",style="dashed", color="magenta", weight=3]; 4519 -> 4632[label="",style="dashed", color="magenta", weight=3]; 4520 -> 3445[label="",style="dashed", color="red", weight=0]; 4520[label="vwx1910 <= vwx1920",fontsize=16,color="magenta"];4520 -> 4633[label="",style="dashed", color="magenta", weight=3]; 4520 -> 4634[label="",style="dashed", color="magenta", weight=3]; 4521 -> 3446[label="",style="dashed", color="red", weight=0]; 4521[label="vwx1910 <= vwx1920",fontsize=16,color="magenta"];4521 -> 4635[label="",style="dashed", color="magenta", weight=3]; 4521 -> 4636[label="",style="dashed", color="magenta", weight=3]; 4522 -> 3447[label="",style="dashed", color="red", weight=0]; 4522[label="vwx1910 <= vwx1920",fontsize=16,color="magenta"];4522 -> 4637[label="",style="dashed", color="magenta", weight=3]; 4522 -> 4638[label="",style="dashed", color="magenta", weight=3]; 4523 -> 3448[label="",style="dashed", color="red", weight=0]; 4523[label="vwx1910 <= vwx1920",fontsize=16,color="magenta"];4523 -> 4639[label="",style="dashed", color="magenta", weight=3]; 4523 -> 4640[label="",style="dashed", color="magenta", weight=3]; 4524 -> 3449[label="",style="dashed", color="red", weight=0]; 4524[label="vwx1910 <= vwx1920",fontsize=16,color="magenta"];4524 -> 4641[label="",style="dashed", color="magenta", weight=3]; 4524 -> 4642[label="",style="dashed", color="magenta", weight=3]; 4525 -> 3450[label="",style="dashed", color="red", weight=0]; 4525[label="vwx1910 <= vwx1920",fontsize=16,color="magenta"];4525 -> 4643[label="",style="dashed", color="magenta", weight=3]; 4525 -> 4644[label="",style="dashed", color="magenta", weight=3]; 4526 -> 3451[label="",style="dashed", color="red", weight=0]; 4526[label="vwx1910 <= vwx1920",fontsize=16,color="magenta"];4526 -> 4645[label="",style="dashed", color="magenta", weight=3]; 4526 -> 4646[label="",style="dashed", color="magenta", weight=3]; 4527 -> 3452[label="",style="dashed", color="red", weight=0]; 4527[label="vwx1910 <= vwx1920",fontsize=16,color="magenta"];4527 -> 4647[label="",style="dashed", color="magenta", weight=3]; 4527 -> 4648[label="",style="dashed", color="magenta", weight=3]; 4528 -> 3453[label="",style="dashed", color="red", weight=0]; 4528[label="vwx1910 <= vwx1920",fontsize=16,color="magenta"];4528 -> 4649[label="",style="dashed", color="magenta", weight=3]; 4528 -> 4650[label="",style="dashed", color="magenta", weight=3]; 4529 -> 3454[label="",style="dashed", color="red", weight=0]; 4529[label="vwx1910 <= vwx1920",fontsize=16,color="magenta"];4529 -> 4651[label="",style="dashed", color="magenta", weight=3]; 4529 -> 4652[label="",style="dashed", color="magenta", weight=3]; 4530 -> 3455[label="",style="dashed", color="red", weight=0]; 4530[label="vwx1910 <= vwx1920",fontsize=16,color="magenta"];4530 -> 4653[label="",style="dashed", color="magenta", weight=3]; 4530 -> 4654[label="",style="dashed", color="magenta", weight=3]; 4531 -> 3442[label="",style="dashed", color="red", weight=0]; 4531[label="vwx1910 <= vwx1920",fontsize=16,color="magenta"];4531 -> 4655[label="",style="dashed", color="magenta", weight=3]; 4531 -> 4656[label="",style="dashed", color="magenta", weight=3]; 4532 -> 3443[label="",style="dashed", color="red", weight=0]; 4532[label="vwx1910 <= vwx1920",fontsize=16,color="magenta"];4532 -> 4657[label="",style="dashed", color="magenta", weight=3]; 4532 -> 4658[label="",style="dashed", color="magenta", weight=3]; 4533 -> 3444[label="",style="dashed", color="red", weight=0]; 4533[label="vwx1910 <= vwx1920",fontsize=16,color="magenta"];4533 -> 4659[label="",style="dashed", color="magenta", weight=3]; 4533 -> 4660[label="",style="dashed", color="magenta", weight=3]; 4534 -> 3445[label="",style="dashed", color="red", weight=0]; 4534[label="vwx1910 <= vwx1920",fontsize=16,color="magenta"];4534 -> 4661[label="",style="dashed", color="magenta", weight=3]; 4534 -> 4662[label="",style="dashed", color="magenta", weight=3]; 4535 -> 3446[label="",style="dashed", color="red", weight=0]; 4535[label="vwx1910 <= vwx1920",fontsize=16,color="magenta"];4535 -> 4663[label="",style="dashed", color="magenta", weight=3]; 4535 -> 4664[label="",style="dashed", color="magenta", weight=3]; 4536 -> 3447[label="",style="dashed", color="red", weight=0]; 4536[label="vwx1910 <= vwx1920",fontsize=16,color="magenta"];4536 -> 4665[label="",style="dashed", color="magenta", weight=3]; 4536 -> 4666[label="",style="dashed", color="magenta", weight=3]; 4537 -> 3448[label="",style="dashed", color="red", weight=0]; 4537[label="vwx1910 <= vwx1920",fontsize=16,color="magenta"];4537 -> 4667[label="",style="dashed", color="magenta", weight=3]; 4537 -> 4668[label="",style="dashed", color="magenta", weight=3]; 4538 -> 3449[label="",style="dashed", color="red", weight=0]; 4538[label="vwx1910 <= vwx1920",fontsize=16,color="magenta"];4538 -> 4669[label="",style="dashed", color="magenta", weight=3]; 4538 -> 4670[label="",style="dashed", color="magenta", weight=3]; 4539 -> 3450[label="",style="dashed", color="red", weight=0]; 4539[label="vwx1910 <= vwx1920",fontsize=16,color="magenta"];4539 -> 4671[label="",style="dashed", color="magenta", weight=3]; 4539 -> 4672[label="",style="dashed", color="magenta", weight=3]; 4540 -> 3451[label="",style="dashed", color="red", weight=0]; 4540[label="vwx1910 <= vwx1920",fontsize=16,color="magenta"];4540 -> 4673[label="",style="dashed", color="magenta", weight=3]; 4540 -> 4674[label="",style="dashed", color="magenta", weight=3]; 4541 -> 3452[label="",style="dashed", color="red", weight=0]; 4541[label="vwx1910 <= vwx1920",fontsize=16,color="magenta"];4541 -> 4675[label="",style="dashed", color="magenta", weight=3]; 4541 -> 4676[label="",style="dashed", color="magenta", weight=3]; 4542 -> 3453[label="",style="dashed", color="red", weight=0]; 4542[label="vwx1910 <= vwx1920",fontsize=16,color="magenta"];4542 -> 4677[label="",style="dashed", color="magenta", weight=3]; 4542 -> 4678[label="",style="dashed", color="magenta", weight=3]; 4543 -> 3454[label="",style="dashed", color="red", weight=0]; 4543[label="vwx1910 <= vwx1920",fontsize=16,color="magenta"];4543 -> 4679[label="",style="dashed", color="magenta", weight=3]; 4543 -> 4680[label="",style="dashed", color="magenta", weight=3]; 4544 -> 3455[label="",style="dashed", color="red", weight=0]; 4544[label="vwx1910 <= vwx1920",fontsize=16,color="magenta"];4544 -> 4681[label="",style="dashed", color="magenta", weight=3]; 4544 -> 4682[label="",style="dashed", color="magenta", weight=3]; 4545 -> 3442[label="",style="dashed", color="red", weight=0]; 4545[label="vwx1910 <= vwx1920",fontsize=16,color="magenta"];4545 -> 4683[label="",style="dashed", color="magenta", weight=3]; 4545 -> 4684[label="",style="dashed", color="magenta", weight=3]; 4546 -> 3443[label="",style="dashed", color="red", weight=0]; 4546[label="vwx1910 <= vwx1920",fontsize=16,color="magenta"];4546 -> 4685[label="",style="dashed", color="magenta", weight=3]; 4546 -> 4686[label="",style="dashed", color="magenta", weight=3]; 4547 -> 3444[label="",style="dashed", color="red", weight=0]; 4547[label="vwx1910 <= vwx1920",fontsize=16,color="magenta"];4547 -> 4687[label="",style="dashed", color="magenta", weight=3]; 4547 -> 4688[label="",style="dashed", color="magenta", weight=3]; 4548 -> 3445[label="",style="dashed", color="red", weight=0]; 4548[label="vwx1910 <= vwx1920",fontsize=16,color="magenta"];4548 -> 4689[label="",style="dashed", color="magenta", weight=3]; 4548 -> 4690[label="",style="dashed", color="magenta", weight=3]; 4549 -> 3446[label="",style="dashed", color="red", weight=0]; 4549[label="vwx1910 <= vwx1920",fontsize=16,color="magenta"];4549 -> 4691[label="",style="dashed", color="magenta", weight=3]; 4549 -> 4692[label="",style="dashed", color="magenta", weight=3]; 4550 -> 3447[label="",style="dashed", color="red", weight=0]; 4550[label="vwx1910 <= vwx1920",fontsize=16,color="magenta"];4550 -> 4693[label="",style="dashed", color="magenta", weight=3]; 4550 -> 4694[label="",style="dashed", color="magenta", weight=3]; 4551 -> 3448[label="",style="dashed", color="red", weight=0]; 4551[label="vwx1910 <= vwx1920",fontsize=16,color="magenta"];4551 -> 4695[label="",style="dashed", color="magenta", weight=3]; 4551 -> 4696[label="",style="dashed", color="magenta", weight=3]; 4552 -> 3449[label="",style="dashed", color="red", weight=0]; 4552[label="vwx1910 <= vwx1920",fontsize=16,color="magenta"];4552 -> 4697[label="",style="dashed", color="magenta", weight=3]; 4552 -> 4698[label="",style="dashed", color="magenta", weight=3]; 4553 -> 3450[label="",style="dashed", color="red", weight=0]; 4553[label="vwx1910 <= vwx1920",fontsize=16,color="magenta"];4553 -> 4699[label="",style="dashed", color="magenta", weight=3]; 4553 -> 4700[label="",style="dashed", color="magenta", weight=3]; 4554 -> 3451[label="",style="dashed", color="red", weight=0]; 4554[label="vwx1910 <= vwx1920",fontsize=16,color="magenta"];4554 -> 4701[label="",style="dashed", color="magenta", weight=3]; 4554 -> 4702[label="",style="dashed", color="magenta", weight=3]; 4555 -> 3452[label="",style="dashed", color="red", weight=0]; 4555[label="vwx1910 <= vwx1920",fontsize=16,color="magenta"];4555 -> 4703[label="",style="dashed", color="magenta", weight=3]; 4555 -> 4704[label="",style="dashed", color="magenta", weight=3]; 4556 -> 3453[label="",style="dashed", color="red", weight=0]; 4556[label="vwx1910 <= vwx1920",fontsize=16,color="magenta"];4556 -> 4705[label="",style="dashed", color="magenta", weight=3]; 4556 -> 4706[label="",style="dashed", color="magenta", weight=3]; 4557 -> 3454[label="",style="dashed", color="red", weight=0]; 4557[label="vwx1910 <= vwx1920",fontsize=16,color="magenta"];4557 -> 4707[label="",style="dashed", color="magenta", weight=3]; 4557 -> 4708[label="",style="dashed", color="magenta", weight=3]; 4558 -> 3455[label="",style="dashed", color="red", weight=0]; 4558[label="vwx1910 <= vwx1920",fontsize=16,color="magenta"];4558 -> 4709[label="",style="dashed", color="magenta", weight=3]; 4558 -> 4710[label="",style="dashed", color="magenta", weight=3]; 4559[label="vwx1910 < vwx1920",fontsize=16,color="blue",shape="box"];5791[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];4559 -> 5791[label="",style="solid", color="blue", weight=9]; 5791 -> 4711[label="",style="solid", color="blue", weight=3]; 5792[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];4559 -> 5792[label="",style="solid", color="blue", weight=9]; 5792 -> 4712[label="",style="solid", color="blue", weight=3]; 5793[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];4559 -> 5793[label="",style="solid", color="blue", weight=9]; 5793 -> 4713[label="",style="solid", color="blue", weight=3]; 5794[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];4559 -> 5794[label="",style="solid", color="blue", weight=9]; 5794 -> 4714[label="",style="solid", color="blue", weight=3]; 5795[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];4559 -> 5795[label="",style="solid", color="blue", weight=9]; 5795 -> 4715[label="",style="solid", color="blue", weight=3]; 5796[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];4559 -> 5796[label="",style="solid", color="blue", weight=9]; 5796 -> 4716[label="",style="solid", color="blue", weight=3]; 5797[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4559 -> 5797[label="",style="solid", color="blue", weight=9]; 5797 -> 4717[label="",style="solid", color="blue", weight=3]; 5798[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4559 -> 5798[label="",style="solid", color="blue", weight=9]; 5798 -> 4718[label="",style="solid", color="blue", weight=3]; 5799[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];4559 -> 5799[label="",style="solid", color="blue", weight=9]; 5799 -> 4719[label="",style="solid", color="blue", weight=3]; 5800[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4559 -> 5800[label="",style="solid", color="blue", weight=9]; 5800 -> 4720[label="",style="solid", color="blue", weight=3]; 5801[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4559 -> 5801[label="",style="solid", color="blue", weight=9]; 5801 -> 4721[label="",style="solid", color="blue", weight=3]; 5802[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4559 -> 5802[label="",style="solid", color="blue", weight=9]; 5802 -> 4722[label="",style="solid", color="blue", weight=3]; 5803[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4559 -> 5803[label="",style="solid", color="blue", weight=9]; 5803 -> 4723[label="",style="solid", color="blue", weight=3]; 5804[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];4559 -> 5804[label="",style="solid", color="blue", weight=9]; 5804 -> 4724[label="",style="solid", color="blue", weight=3]; 4560 -> 3197[label="",style="dashed", color="red", weight=0]; 4560[label="vwx1910 == vwx1920 && (vwx1911 < vwx1921 || vwx1911 == vwx1921 && vwx1912 <= vwx1922)",fontsize=16,color="magenta"];4560 -> 4725[label="",style="dashed", color="magenta", weight=3]; 4560 -> 4726[label="",style="dashed", color="magenta", weight=3]; 4561[label="vwx1910 < vwx1920",fontsize=16,color="blue",shape="box"];5805[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];4561 -> 5805[label="",style="solid", color="blue", weight=9]; 5805 -> 4727[label="",style="solid", color="blue", weight=3]; 5806[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];4561 -> 5806[label="",style="solid", color="blue", weight=9]; 5806 -> 4728[label="",style="solid", color="blue", weight=3]; 5807[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];4561 -> 5807[label="",style="solid", color="blue", weight=9]; 5807 -> 4729[label="",style="solid", color="blue", weight=3]; 5808[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];4561 -> 5808[label="",style="solid", color="blue", weight=9]; 5808 -> 4730[label="",style="solid", color="blue", weight=3]; 5809[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];4561 -> 5809[label="",style="solid", color="blue", weight=9]; 5809 -> 4731[label="",style="solid", color="blue", weight=3]; 5810[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];4561 -> 5810[label="",style="solid", color="blue", weight=9]; 5810 -> 4732[label="",style="solid", color="blue", weight=3]; 5811[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4561 -> 5811[label="",style="solid", color="blue", weight=9]; 5811 -> 4733[label="",style="solid", color="blue", weight=3]; 5812[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4561 -> 5812[label="",style="solid", color="blue", weight=9]; 5812 -> 4734[label="",style="solid", color="blue", weight=3]; 5813[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];4561 -> 5813[label="",style="solid", color="blue", weight=9]; 5813 -> 4735[label="",style="solid", color="blue", weight=3]; 5814[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4561 -> 5814[label="",style="solid", color="blue", weight=9]; 5814 -> 4736[label="",style="solid", color="blue", weight=3]; 5815[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4561 -> 5815[label="",style="solid", color="blue", weight=9]; 5815 -> 4737[label="",style="solid", color="blue", weight=3]; 5816[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4561 -> 5816[label="",style="solid", color="blue", weight=9]; 5816 -> 4738[label="",style="solid", color="blue", weight=3]; 5817[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4561 -> 5817[label="",style="solid", color="blue", weight=9]; 5817 -> 4739[label="",style="solid", color="blue", weight=3]; 5818[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];4561 -> 5818[label="",style="solid", color="blue", weight=9]; 5818 -> 4740[label="",style="solid", color="blue", weight=3]; 4562 -> 3197[label="",style="dashed", color="red", weight=0]; 4562[label="vwx1910 == vwx1920 && vwx1911 <= vwx1921",fontsize=16,color="magenta"];4562 -> 4741[label="",style="dashed", color="magenta", weight=3]; 4562 -> 4742[label="",style="dashed", color="magenta", weight=3]; 4563[label="vwx243",fontsize=16,color="green",shape="box"];4564[label="vwx246",fontsize=16,color="green",shape="box"];4565[label="vwx243",fontsize=16,color="green",shape="box"];4566[label="vwx246",fontsize=16,color="green",shape="box"];4567[label="vwx243",fontsize=16,color="green",shape="box"];4568[label="vwx246",fontsize=16,color="green",shape="box"];4569[label="vwx243",fontsize=16,color="green",shape="box"];4570[label="vwx246",fontsize=16,color="green",shape="box"];4571[label="vwx243",fontsize=16,color="green",shape="box"];4572[label="vwx246",fontsize=16,color="green",shape="box"];4573[label="vwx243",fontsize=16,color="green",shape="box"];4574[label="vwx246",fontsize=16,color="green",shape="box"];4575[label="vwx243",fontsize=16,color="green",shape="box"];4576[label="vwx246",fontsize=16,color="green",shape="box"];4577[label="vwx243",fontsize=16,color="green",shape="box"];4578[label="vwx246",fontsize=16,color="green",shape="box"];4579[label="vwx243",fontsize=16,color="green",shape="box"];4580[label="vwx246",fontsize=16,color="green",shape="box"];4581[label="vwx243",fontsize=16,color="green",shape="box"];4582[label="vwx246",fontsize=16,color="green",shape="box"];4583[label="vwx243",fontsize=16,color="green",shape="box"];4584[label="vwx246",fontsize=16,color="green",shape="box"];4585[label="vwx243",fontsize=16,color="green",shape="box"];4586[label="vwx246",fontsize=16,color="green",shape="box"];4587[label="vwx243",fontsize=16,color="green",shape="box"];4588[label="vwx246",fontsize=16,color="green",shape="box"];4589[label="vwx243",fontsize=16,color="green",shape="box"];4590[label="vwx246",fontsize=16,color="green",shape="box"];4591[label="vwx244",fontsize=16,color="green",shape="box"];4592[label="vwx247",fontsize=16,color="green",shape="box"];4593[label="vwx244",fontsize=16,color="green",shape="box"];4594[label="vwx247",fontsize=16,color="green",shape="box"];4595[label="vwx244",fontsize=16,color="green",shape="box"];4596[label="vwx247",fontsize=16,color="green",shape="box"];4597[label="vwx244",fontsize=16,color="green",shape="box"];4598[label="vwx247",fontsize=16,color="green",shape="box"];4599[label="vwx244",fontsize=16,color="green",shape="box"];4600[label="vwx247",fontsize=16,color="green",shape="box"];4601[label="vwx244",fontsize=16,color="green",shape="box"];4602[label="vwx247",fontsize=16,color="green",shape="box"];4603[label="vwx244",fontsize=16,color="green",shape="box"];4604[label="vwx247",fontsize=16,color="green",shape="box"];4605[label="vwx244",fontsize=16,color="green",shape="box"];4606[label="vwx247",fontsize=16,color="green",shape="box"];4607[label="vwx244",fontsize=16,color="green",shape="box"];4608[label="vwx247",fontsize=16,color="green",shape="box"];4609[label="vwx244",fontsize=16,color="green",shape="box"];4610[label="vwx247",fontsize=16,color="green",shape="box"];4611[label="vwx244",fontsize=16,color="green",shape="box"];4612[label="vwx247",fontsize=16,color="green",shape="box"];4613[label="vwx244",fontsize=16,color="green",shape="box"];4614[label="vwx247",fontsize=16,color="green",shape="box"];4615[label="vwx244",fontsize=16,color="green",shape="box"];4616[label="vwx247",fontsize=16,color="green",shape="box"];4617[label="vwx244",fontsize=16,color="green",shape="box"];4618[label="vwx247",fontsize=16,color="green",shape="box"];4619[label="compare0 (vwx320,vwx321,vwx322) (vwx323,vwx324,vwx325) True",fontsize=16,color="black",shape="box"];4619 -> 4743[label="",style="solid", color="black", weight=3]; 4620[label="compare0 (vwx303,vwx304) (vwx305,vwx306) True",fontsize=16,color="black",shape="box"];4620 -> 4744[label="",style="solid", color="black", weight=3]; 4621[label="vwx30000",fontsize=16,color="green",shape="box"];4622[label="Succ vwx40100",fontsize=16,color="green",shape="box"];4623[label="primPlusNat (Succ vwx3350) (Succ vwx40100)",fontsize=16,color="black",shape="box"];4623 -> 4745[label="",style="solid", color="black", weight=3]; 4624[label="primPlusNat Zero (Succ vwx40100)",fontsize=16,color="black",shape="box"];4624 -> 4746[label="",style="solid", color="black", weight=3]; 4625[label="vwx329",fontsize=16,color="green",shape="box"];4626[label="GT",fontsize=16,color="green",shape="box"];4627[label="vwx1910",fontsize=16,color="green",shape="box"];4628[label="vwx1920",fontsize=16,color="green",shape="box"];4629[label="vwx1910",fontsize=16,color="green",shape="box"];4630[label="vwx1920",fontsize=16,color="green",shape="box"];4631[label="vwx1910",fontsize=16,color="green",shape="box"];4632[label="vwx1920",fontsize=16,color="green",shape="box"];4633[label="vwx1910",fontsize=16,color="green",shape="box"];4634[label="vwx1920",fontsize=16,color="green",shape="box"];4635[label="vwx1910",fontsize=16,color="green",shape="box"];4636[label="vwx1920",fontsize=16,color="green",shape="box"];4637[label="vwx1910",fontsize=16,color="green",shape="box"];4638[label="vwx1920",fontsize=16,color="green",shape="box"];4639[label="vwx1910",fontsize=16,color="green",shape="box"];4640[label="vwx1920",fontsize=16,color="green",shape="box"];4641[label="vwx1910",fontsize=16,color="green",shape="box"];4642[label="vwx1920",fontsize=16,color="green",shape="box"];4643[label="vwx1910",fontsize=16,color="green",shape="box"];4644[label="vwx1920",fontsize=16,color="green",shape="box"];4645[label="vwx1910",fontsize=16,color="green",shape="box"];4646[label="vwx1920",fontsize=16,color="green",shape="box"];4647[label="vwx1910",fontsize=16,color="green",shape="box"];4648[label="vwx1920",fontsize=16,color="green",shape="box"];4649[label="vwx1910",fontsize=16,color="green",shape="box"];4650[label="vwx1920",fontsize=16,color="green",shape="box"];4651[label="vwx1910",fontsize=16,color="green",shape="box"];4652[label="vwx1920",fontsize=16,color="green",shape="box"];4653[label="vwx1910",fontsize=16,color="green",shape="box"];4654[label="vwx1920",fontsize=16,color="green",shape="box"];4655[label="vwx1910",fontsize=16,color="green",shape="box"];4656[label="vwx1920",fontsize=16,color="green",shape="box"];4657[label="vwx1910",fontsize=16,color="green",shape="box"];4658[label="vwx1920",fontsize=16,color="green",shape="box"];4659[label="vwx1910",fontsize=16,color="green",shape="box"];4660[label="vwx1920",fontsize=16,color="green",shape="box"];4661[label="vwx1910",fontsize=16,color="green",shape="box"];4662[label="vwx1920",fontsize=16,color="green",shape="box"];4663[label="vwx1910",fontsize=16,color="green",shape="box"];4664[label="vwx1920",fontsize=16,color="green",shape="box"];4665[label="vwx1910",fontsize=16,color="green",shape="box"];4666[label="vwx1920",fontsize=16,color="green",shape="box"];4667[label="vwx1910",fontsize=16,color="green",shape="box"];4668[label="vwx1920",fontsize=16,color="green",shape="box"];4669[label="vwx1910",fontsize=16,color="green",shape="box"];4670[label="vwx1920",fontsize=16,color="green",shape="box"];4671[label="vwx1910",fontsize=16,color="green",shape="box"];4672[label="vwx1920",fontsize=16,color="green",shape="box"];4673[label="vwx1910",fontsize=16,color="green",shape="box"];4674[label="vwx1920",fontsize=16,color="green",shape="box"];4675[label="vwx1910",fontsize=16,color="green",shape="box"];4676[label="vwx1920",fontsize=16,color="green",shape="box"];4677[label="vwx1910",fontsize=16,color="green",shape="box"];4678[label="vwx1920",fontsize=16,color="green",shape="box"];4679[label="vwx1910",fontsize=16,color="green",shape="box"];4680[label="vwx1920",fontsize=16,color="green",shape="box"];4681[label="vwx1910",fontsize=16,color="green",shape="box"];4682[label="vwx1920",fontsize=16,color="green",shape="box"];4683[label="vwx1910",fontsize=16,color="green",shape="box"];4684[label="vwx1920",fontsize=16,color="green",shape="box"];4685[label="vwx1910",fontsize=16,color="green",shape="box"];4686[label="vwx1920",fontsize=16,color="green",shape="box"];4687[label="vwx1910",fontsize=16,color="green",shape="box"];4688[label="vwx1920",fontsize=16,color="green",shape="box"];4689[label="vwx1910",fontsize=16,color="green",shape="box"];4690[label="vwx1920",fontsize=16,color="green",shape="box"];4691[label="vwx1910",fontsize=16,color="green",shape="box"];4692[label="vwx1920",fontsize=16,color="green",shape="box"];4693[label="vwx1910",fontsize=16,color="green",shape="box"];4694[label="vwx1920",fontsize=16,color="green",shape="box"];4695[label="vwx1910",fontsize=16,color="green",shape="box"];4696[label="vwx1920",fontsize=16,color="green",shape="box"];4697[label="vwx1910",fontsize=16,color="green",shape="box"];4698[label="vwx1920",fontsize=16,color="green",shape="box"];4699[label="vwx1910",fontsize=16,color="green",shape="box"];4700[label="vwx1920",fontsize=16,color="green",shape="box"];4701[label="vwx1910",fontsize=16,color="green",shape="box"];4702[label="vwx1920",fontsize=16,color="green",shape="box"];4703[label="vwx1910",fontsize=16,color="green",shape="box"];4704[label="vwx1920",fontsize=16,color="green",shape="box"];4705[label="vwx1910",fontsize=16,color="green",shape="box"];4706[label="vwx1920",fontsize=16,color="green",shape="box"];4707[label="vwx1910",fontsize=16,color="green",shape="box"];4708[label="vwx1920",fontsize=16,color="green",shape="box"];4709[label="vwx1910",fontsize=16,color="green",shape="box"];4710[label="vwx1920",fontsize=16,color="green",shape="box"];4711 -> 3584[label="",style="dashed", color="red", weight=0]; 4711[label="vwx1910 < vwx1920",fontsize=16,color="magenta"];4711 -> 4747[label="",style="dashed", color="magenta", weight=3]; 4711 -> 4748[label="",style="dashed", color="magenta", weight=3]; 4712 -> 3585[label="",style="dashed", color="red", weight=0]; 4712[label="vwx1910 < vwx1920",fontsize=16,color="magenta"];4712 -> 4749[label="",style="dashed", color="magenta", weight=3]; 4712 -> 4750[label="",style="dashed", color="magenta", weight=3]; 4713 -> 3586[label="",style="dashed", color="red", weight=0]; 4713[label="vwx1910 < vwx1920",fontsize=16,color="magenta"];4713 -> 4751[label="",style="dashed", color="magenta", weight=3]; 4713 -> 4752[label="",style="dashed", color="magenta", weight=3]; 4714 -> 3587[label="",style="dashed", color="red", weight=0]; 4714[label="vwx1910 < vwx1920",fontsize=16,color="magenta"];4714 -> 4753[label="",style="dashed", color="magenta", weight=3]; 4714 -> 4754[label="",style="dashed", color="magenta", weight=3]; 4715 -> 3588[label="",style="dashed", color="red", weight=0]; 4715[label="vwx1910 < vwx1920",fontsize=16,color="magenta"];4715 -> 4755[label="",style="dashed", color="magenta", weight=3]; 4715 -> 4756[label="",style="dashed", color="magenta", weight=3]; 4716 -> 3589[label="",style="dashed", color="red", weight=0]; 4716[label="vwx1910 < vwx1920",fontsize=16,color="magenta"];4716 -> 4757[label="",style="dashed", color="magenta", weight=3]; 4716 -> 4758[label="",style="dashed", color="magenta", weight=3]; 4717 -> 3590[label="",style="dashed", color="red", weight=0]; 4717[label="vwx1910 < vwx1920",fontsize=16,color="magenta"];4717 -> 4759[label="",style="dashed", color="magenta", weight=3]; 4717 -> 4760[label="",style="dashed", color="magenta", weight=3]; 4718 -> 3591[label="",style="dashed", color="red", weight=0]; 4718[label="vwx1910 < vwx1920",fontsize=16,color="magenta"];4718 -> 4761[label="",style="dashed", color="magenta", weight=3]; 4718 -> 4762[label="",style="dashed", color="magenta", weight=3]; 4719 -> 3592[label="",style="dashed", color="red", weight=0]; 4719[label="vwx1910 < vwx1920",fontsize=16,color="magenta"];4719 -> 4763[label="",style="dashed", color="magenta", weight=3]; 4719 -> 4764[label="",style="dashed", color="magenta", weight=3]; 4720 -> 3593[label="",style="dashed", color="red", weight=0]; 4720[label="vwx1910 < vwx1920",fontsize=16,color="magenta"];4720 -> 4765[label="",style="dashed", color="magenta", weight=3]; 4720 -> 4766[label="",style="dashed", color="magenta", weight=3]; 4721 -> 3594[label="",style="dashed", color="red", weight=0]; 4721[label="vwx1910 < vwx1920",fontsize=16,color="magenta"];4721 -> 4767[label="",style="dashed", color="magenta", weight=3]; 4721 -> 4768[label="",style="dashed", color="magenta", weight=3]; 4722 -> 3595[label="",style="dashed", color="red", weight=0]; 4722[label="vwx1910 < vwx1920",fontsize=16,color="magenta"];4722 -> 4769[label="",style="dashed", color="magenta", weight=3]; 4722 -> 4770[label="",style="dashed", color="magenta", weight=3]; 4723 -> 3596[label="",style="dashed", color="red", weight=0]; 4723[label="vwx1910 < vwx1920",fontsize=16,color="magenta"];4723 -> 4771[label="",style="dashed", color="magenta", weight=3]; 4723 -> 4772[label="",style="dashed", color="magenta", weight=3]; 4724 -> 3597[label="",style="dashed", color="red", weight=0]; 4724[label="vwx1910 < vwx1920",fontsize=16,color="magenta"];4724 -> 4773[label="",style="dashed", color="magenta", weight=3]; 4724 -> 4774[label="",style="dashed", color="magenta", weight=3]; 4725[label="vwx1910 == vwx1920",fontsize=16,color="blue",shape="box"];5819[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];4725 -> 5819[label="",style="solid", color="blue", weight=9]; 5819 -> 4775[label="",style="solid", color="blue", weight=3]; 5820[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];4725 -> 5820[label="",style="solid", color="blue", weight=9]; 5820 -> 4776[label="",style="solid", color="blue", weight=3]; 5821[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];4725 -> 5821[label="",style="solid", color="blue", weight=9]; 5821 -> 4777[label="",style="solid", color="blue", weight=3]; 5822[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];4725 -> 5822[label="",style="solid", color="blue", weight=9]; 5822 -> 4778[label="",style="solid", color="blue", weight=3]; 5823[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];4725 -> 5823[label="",style="solid", color="blue", weight=9]; 5823 -> 4779[label="",style="solid", color="blue", weight=3]; 5824[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];4725 -> 5824[label="",style="solid", color="blue", weight=9]; 5824 -> 4780[label="",style="solid", color="blue", weight=3]; 5825[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4725 -> 5825[label="",style="solid", color="blue", weight=9]; 5825 -> 4781[label="",style="solid", color="blue", weight=3]; 5826[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4725 -> 5826[label="",style="solid", color="blue", weight=9]; 5826 -> 4782[label="",style="solid", color="blue", weight=3]; 5827[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];4725 -> 5827[label="",style="solid", color="blue", weight=9]; 5827 -> 4783[label="",style="solid", color="blue", weight=3]; 5828[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4725 -> 5828[label="",style="solid", color="blue", weight=9]; 5828 -> 4784[label="",style="solid", color="blue", weight=3]; 5829[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4725 -> 5829[label="",style="solid", color="blue", weight=9]; 5829 -> 4785[label="",style="solid", color="blue", weight=3]; 5830[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4725 -> 5830[label="",style="solid", color="blue", weight=9]; 5830 -> 4786[label="",style="solid", color="blue", weight=3]; 5831[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4725 -> 5831[label="",style="solid", color="blue", weight=9]; 5831 -> 4787[label="",style="solid", color="blue", weight=3]; 5832[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];4725 -> 5832[label="",style="solid", color="blue", weight=9]; 5832 -> 4788[label="",style="solid", color="blue", weight=3]; 4726 -> 4201[label="",style="dashed", color="red", weight=0]; 4726[label="vwx1911 < vwx1921 || vwx1911 == vwx1921 && vwx1912 <= vwx1922",fontsize=16,color="magenta"];4726 -> 4789[label="",style="dashed", color="magenta", weight=3]; 4726 -> 4790[label="",style="dashed", color="magenta", weight=3]; 4727 -> 3584[label="",style="dashed", color="red", weight=0]; 4727[label="vwx1910 < vwx1920",fontsize=16,color="magenta"];4727 -> 4791[label="",style="dashed", color="magenta", weight=3]; 4727 -> 4792[label="",style="dashed", color="magenta", weight=3]; 4728 -> 3585[label="",style="dashed", color="red", weight=0]; 4728[label="vwx1910 < vwx1920",fontsize=16,color="magenta"];4728 -> 4793[label="",style="dashed", color="magenta", weight=3]; 4728 -> 4794[label="",style="dashed", color="magenta", weight=3]; 4729 -> 3586[label="",style="dashed", color="red", weight=0]; 4729[label="vwx1910 < vwx1920",fontsize=16,color="magenta"];4729 -> 4795[label="",style="dashed", color="magenta", weight=3]; 4729 -> 4796[label="",style="dashed", color="magenta", weight=3]; 4730 -> 3587[label="",style="dashed", color="red", weight=0]; 4730[label="vwx1910 < vwx1920",fontsize=16,color="magenta"];4730 -> 4797[label="",style="dashed", color="magenta", weight=3]; 4730 -> 4798[label="",style="dashed", color="magenta", weight=3]; 4731 -> 3588[label="",style="dashed", color="red", weight=0]; 4731[label="vwx1910 < vwx1920",fontsize=16,color="magenta"];4731 -> 4799[label="",style="dashed", color="magenta", weight=3]; 4731 -> 4800[label="",style="dashed", color="magenta", weight=3]; 4732 -> 3589[label="",style="dashed", color="red", weight=0]; 4732[label="vwx1910 < vwx1920",fontsize=16,color="magenta"];4732 -> 4801[label="",style="dashed", color="magenta", weight=3]; 4732 -> 4802[label="",style="dashed", color="magenta", weight=3]; 4733 -> 3590[label="",style="dashed", color="red", weight=0]; 4733[label="vwx1910 < vwx1920",fontsize=16,color="magenta"];4733 -> 4803[label="",style="dashed", color="magenta", weight=3]; 4733 -> 4804[label="",style="dashed", color="magenta", weight=3]; 4734 -> 3591[label="",style="dashed", color="red", weight=0]; 4734[label="vwx1910 < vwx1920",fontsize=16,color="magenta"];4734 -> 4805[label="",style="dashed", color="magenta", weight=3]; 4734 -> 4806[label="",style="dashed", color="magenta", weight=3]; 4735 -> 3592[label="",style="dashed", color="red", weight=0]; 4735[label="vwx1910 < vwx1920",fontsize=16,color="magenta"];4735 -> 4807[label="",style="dashed", color="magenta", weight=3]; 4735 -> 4808[label="",style="dashed", color="magenta", weight=3]; 4736 -> 3593[label="",style="dashed", color="red", weight=0]; 4736[label="vwx1910 < vwx1920",fontsize=16,color="magenta"];4736 -> 4809[label="",style="dashed", color="magenta", weight=3]; 4736 -> 4810[label="",style="dashed", color="magenta", weight=3]; 4737 -> 3594[label="",style="dashed", color="red", weight=0]; 4737[label="vwx1910 < vwx1920",fontsize=16,color="magenta"];4737 -> 4811[label="",style="dashed", color="magenta", weight=3]; 4737 -> 4812[label="",style="dashed", color="magenta", weight=3]; 4738 -> 3595[label="",style="dashed", color="red", weight=0]; 4738[label="vwx1910 < vwx1920",fontsize=16,color="magenta"];4738 -> 4813[label="",style="dashed", color="magenta", weight=3]; 4738 -> 4814[label="",style="dashed", color="magenta", weight=3]; 4739 -> 3596[label="",style="dashed", color="red", weight=0]; 4739[label="vwx1910 < vwx1920",fontsize=16,color="magenta"];4739 -> 4815[label="",style="dashed", color="magenta", weight=3]; 4739 -> 4816[label="",style="dashed", color="magenta", weight=3]; 4740 -> 3597[label="",style="dashed", color="red", weight=0]; 4740[label="vwx1910 < vwx1920",fontsize=16,color="magenta"];4740 -> 4817[label="",style="dashed", color="magenta", weight=3]; 4740 -> 4818[label="",style="dashed", color="magenta", weight=3]; 4741[label="vwx1910 == vwx1920",fontsize=16,color="blue",shape="box"];5833[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];4741 -> 5833[label="",style="solid", color="blue", weight=9]; 5833 -> 4819[label="",style="solid", color="blue", weight=3]; 5834[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];4741 -> 5834[label="",style="solid", color="blue", weight=9]; 5834 -> 4820[label="",style="solid", color="blue", weight=3]; 5835[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];4741 -> 5835[label="",style="solid", color="blue", weight=9]; 5835 -> 4821[label="",style="solid", color="blue", weight=3]; 5836[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];4741 -> 5836[label="",style="solid", color="blue", weight=9]; 5836 -> 4822[label="",style="solid", color="blue", weight=3]; 5837[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];4741 -> 5837[label="",style="solid", color="blue", weight=9]; 5837 -> 4823[label="",style="solid", color="blue", weight=3]; 5838[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];4741 -> 5838[label="",style="solid", color="blue", weight=9]; 5838 -> 4824[label="",style="solid", color="blue", weight=3]; 5839[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4741 -> 5839[label="",style="solid", color="blue", weight=9]; 5839 -> 4825[label="",style="solid", color="blue", weight=3]; 5840[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4741 -> 5840[label="",style="solid", color="blue", weight=9]; 5840 -> 4826[label="",style="solid", color="blue", weight=3]; 5841[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];4741 -> 5841[label="",style="solid", color="blue", weight=9]; 5841 -> 4827[label="",style="solid", color="blue", weight=3]; 5842[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4741 -> 5842[label="",style="solid", color="blue", weight=9]; 5842 -> 4828[label="",style="solid", color="blue", weight=3]; 5843[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4741 -> 5843[label="",style="solid", color="blue", weight=9]; 5843 -> 4829[label="",style="solid", color="blue", weight=3]; 5844[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4741 -> 5844[label="",style="solid", color="blue", weight=9]; 5844 -> 4830[label="",style="solid", color="blue", weight=3]; 5845[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4741 -> 5845[label="",style="solid", color="blue", weight=9]; 5845 -> 4831[label="",style="solid", color="blue", weight=3]; 5846[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];4741 -> 5846[label="",style="solid", color="blue", weight=9]; 5846 -> 4832[label="",style="solid", color="blue", weight=3]; 4742[label="vwx1911 <= vwx1921",fontsize=16,color="blue",shape="box"];5847[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];4742 -> 5847[label="",style="solid", color="blue", weight=9]; 5847 -> 4833[label="",style="solid", color="blue", weight=3]; 5848[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];4742 -> 5848[label="",style="solid", color="blue", weight=9]; 5848 -> 4834[label="",style="solid", color="blue", weight=3]; 5849[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];4742 -> 5849[label="",style="solid", color="blue", weight=9]; 5849 -> 4835[label="",style="solid", color="blue", weight=3]; 5850[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];4742 -> 5850[label="",style="solid", color="blue", weight=9]; 5850 -> 4836[label="",style="solid", color="blue", weight=3]; 5851[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];4742 -> 5851[label="",style="solid", color="blue", weight=9]; 5851 -> 4837[label="",style="solid", color="blue", weight=3]; 5852[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];4742 -> 5852[label="",style="solid", color="blue", weight=9]; 5852 -> 4838[label="",style="solid", color="blue", weight=3]; 5853[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4742 -> 5853[label="",style="solid", color="blue", weight=9]; 5853 -> 4839[label="",style="solid", color="blue", weight=3]; 5854[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4742 -> 5854[label="",style="solid", color="blue", weight=9]; 5854 -> 4840[label="",style="solid", color="blue", weight=3]; 5855[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];4742 -> 5855[label="",style="solid", color="blue", weight=9]; 5855 -> 4841[label="",style="solid", color="blue", weight=3]; 5856[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4742 -> 5856[label="",style="solid", color="blue", weight=9]; 5856 -> 4842[label="",style="solid", color="blue", weight=3]; 5857[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4742 -> 5857[label="",style="solid", color="blue", weight=9]; 5857 -> 4843[label="",style="solid", color="blue", weight=3]; 5858[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4742 -> 5858[label="",style="solid", color="blue", weight=9]; 5858 -> 4844[label="",style="solid", color="blue", weight=3]; 5859[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4742 -> 5859[label="",style="solid", color="blue", weight=9]; 5859 -> 4845[label="",style="solid", color="blue", weight=3]; 5860[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];4742 -> 5860[label="",style="solid", color="blue", weight=9]; 5860 -> 4846[label="",style="solid", color="blue", weight=3]; 4743[label="GT",fontsize=16,color="green",shape="box"];4744[label="GT",fontsize=16,color="green",shape="box"];4745[label="Succ (Succ (primPlusNat vwx3350 vwx40100))",fontsize=16,color="green",shape="box"];4745 -> 4847[label="",style="dashed", color="green", weight=3]; 4746[label="Succ vwx40100",fontsize=16,color="green",shape="box"];4747[label="vwx1910",fontsize=16,color="green",shape="box"];4748[label="vwx1920",fontsize=16,color="green",shape="box"];4749[label="vwx1910",fontsize=16,color="green",shape="box"];4750[label="vwx1920",fontsize=16,color="green",shape="box"];4751[label="vwx1910",fontsize=16,color="green",shape="box"];4752[label="vwx1920",fontsize=16,color="green",shape="box"];4753[label="vwx1910",fontsize=16,color="green",shape="box"];4754[label="vwx1920",fontsize=16,color="green",shape="box"];4755[label="vwx1910",fontsize=16,color="green",shape="box"];4756[label="vwx1920",fontsize=16,color="green",shape="box"];4757[label="vwx1910",fontsize=16,color="green",shape="box"];4758[label="vwx1920",fontsize=16,color="green",shape="box"];4759[label="vwx1910",fontsize=16,color="green",shape="box"];4760[label="vwx1920",fontsize=16,color="green",shape="box"];4761[label="vwx1910",fontsize=16,color="green",shape="box"];4762[label="vwx1920",fontsize=16,color="green",shape="box"];4763[label="vwx1910",fontsize=16,color="green",shape="box"];4764[label="vwx1920",fontsize=16,color="green",shape="box"];4765[label="vwx1910",fontsize=16,color="green",shape="box"];4766[label="vwx1920",fontsize=16,color="green",shape="box"];4767[label="vwx1910",fontsize=16,color="green",shape="box"];4768[label="vwx1920",fontsize=16,color="green",shape="box"];4769[label="vwx1910",fontsize=16,color="green",shape="box"];4770[label="vwx1920",fontsize=16,color="green",shape="box"];4771[label="vwx1910",fontsize=16,color="green",shape="box"];4772[label="vwx1920",fontsize=16,color="green",shape="box"];4773[label="vwx1910",fontsize=16,color="green",shape="box"];4774[label="vwx1920",fontsize=16,color="green",shape="box"];4775 -> 2642[label="",style="dashed", color="red", weight=0]; 4775[label="vwx1910 == vwx1920",fontsize=16,color="magenta"];4775 -> 4848[label="",style="dashed", color="magenta", weight=3]; 4775 -> 4849[label="",style="dashed", color="magenta", weight=3]; 4776 -> 2645[label="",style="dashed", color="red", weight=0]; 4776[label="vwx1910 == vwx1920",fontsize=16,color="magenta"];4776 -> 4850[label="",style="dashed", color="magenta", weight=3]; 4776 -> 4851[label="",style="dashed", color="magenta", weight=3]; 4777 -> 2641[label="",style="dashed", color="red", weight=0]; 4777[label="vwx1910 == vwx1920",fontsize=16,color="magenta"];4777 -> 4852[label="",style="dashed", color="magenta", weight=3]; 4777 -> 4853[label="",style="dashed", color="magenta", weight=3]; 4778 -> 2643[label="",style="dashed", color="red", weight=0]; 4778[label="vwx1910 == vwx1920",fontsize=16,color="magenta"];4778 -> 4854[label="",style="dashed", color="magenta", weight=3]; 4778 -> 4855[label="",style="dashed", color="magenta", weight=3]; 4779 -> 2652[label="",style="dashed", color="red", weight=0]; 4779[label="vwx1910 == vwx1920",fontsize=16,color="magenta"];4779 -> 4856[label="",style="dashed", color="magenta", weight=3]; 4779 -> 4857[label="",style="dashed", color="magenta", weight=3]; 4780 -> 2647[label="",style="dashed", color="red", weight=0]; 4780[label="vwx1910 == vwx1920",fontsize=16,color="magenta"];4780 -> 4858[label="",style="dashed", color="magenta", weight=3]; 4780 -> 4859[label="",style="dashed", color="magenta", weight=3]; 4781 -> 2648[label="",style="dashed", color="red", weight=0]; 4781[label="vwx1910 == vwx1920",fontsize=16,color="magenta"];4781 -> 4860[label="",style="dashed", color="magenta", weight=3]; 4781 -> 4861[label="",style="dashed", color="magenta", weight=3]; 4782 -> 2650[label="",style="dashed", color="red", weight=0]; 4782[label="vwx1910 == vwx1920",fontsize=16,color="magenta"];4782 -> 4862[label="",style="dashed", color="magenta", weight=3]; 4782 -> 4863[label="",style="dashed", color="magenta", weight=3]; 4783 -> 2646[label="",style="dashed", color="red", weight=0]; 4783[label="vwx1910 == vwx1920",fontsize=16,color="magenta"];4783 -> 4864[label="",style="dashed", color="magenta", weight=3]; 4783 -> 4865[label="",style="dashed", color="magenta", weight=3]; 4784 -> 2653[label="",style="dashed", color="red", weight=0]; 4784[label="vwx1910 == vwx1920",fontsize=16,color="magenta"];4784 -> 4866[label="",style="dashed", color="magenta", weight=3]; 4784 -> 4867[label="",style="dashed", color="magenta", weight=3]; 4785 -> 2640[label="",style="dashed", color="red", weight=0]; 4785[label="vwx1910 == vwx1920",fontsize=16,color="magenta"];4785 -> 4868[label="",style="dashed", color="magenta", weight=3]; 4785 -> 4869[label="",style="dashed", color="magenta", weight=3]; 4786 -> 2644[label="",style="dashed", color="red", weight=0]; 4786[label="vwx1910 == vwx1920",fontsize=16,color="magenta"];4786 -> 4870[label="",style="dashed", color="magenta", weight=3]; 4786 -> 4871[label="",style="dashed", color="magenta", weight=3]; 4787 -> 2649[label="",style="dashed", color="red", weight=0]; 4787[label="vwx1910 == vwx1920",fontsize=16,color="magenta"];4787 -> 4872[label="",style="dashed", color="magenta", weight=3]; 4787 -> 4873[label="",style="dashed", color="magenta", weight=3]; 4788 -> 2651[label="",style="dashed", color="red", weight=0]; 4788[label="vwx1910 == vwx1920",fontsize=16,color="magenta"];4788 -> 4874[label="",style="dashed", color="magenta", weight=3]; 4788 -> 4875[label="",style="dashed", color="magenta", weight=3]; 4789[label="vwx1911 < vwx1921",fontsize=16,color="blue",shape="box"];5861[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];4789 -> 5861[label="",style="solid", color="blue", weight=9]; 5861 -> 4876[label="",style="solid", color="blue", weight=3]; 5862[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];4789 -> 5862[label="",style="solid", color="blue", weight=9]; 5862 -> 4877[label="",style="solid", color="blue", weight=3]; 5863[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];4789 -> 5863[label="",style="solid", color="blue", weight=9]; 5863 -> 4878[label="",style="solid", color="blue", weight=3]; 5864[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];4789 -> 5864[label="",style="solid", color="blue", weight=9]; 5864 -> 4879[label="",style="solid", color="blue", weight=3]; 5865[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];4789 -> 5865[label="",style="solid", color="blue", weight=9]; 5865 -> 4880[label="",style="solid", color="blue", weight=3]; 5866[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];4789 -> 5866[label="",style="solid", color="blue", weight=9]; 5866 -> 4881[label="",style="solid", color="blue", weight=3]; 5867[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4789 -> 5867[label="",style="solid", color="blue", weight=9]; 5867 -> 4882[label="",style="solid", color="blue", weight=3]; 5868[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4789 -> 5868[label="",style="solid", color="blue", weight=9]; 5868 -> 4883[label="",style="solid", color="blue", weight=3]; 5869[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];4789 -> 5869[label="",style="solid", color="blue", weight=9]; 5869 -> 4884[label="",style="solid", color="blue", weight=3]; 5870[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4789 -> 5870[label="",style="solid", color="blue", weight=9]; 5870 -> 4885[label="",style="solid", color="blue", weight=3]; 5871[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4789 -> 5871[label="",style="solid", color="blue", weight=9]; 5871 -> 4886[label="",style="solid", color="blue", weight=3]; 5872[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4789 -> 5872[label="",style="solid", color="blue", weight=9]; 5872 -> 4887[label="",style="solid", color="blue", weight=3]; 5873[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4789 -> 5873[label="",style="solid", color="blue", weight=9]; 5873 -> 4888[label="",style="solid", color="blue", weight=3]; 5874[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];4789 -> 5874[label="",style="solid", color="blue", weight=9]; 5874 -> 4889[label="",style="solid", color="blue", weight=3]; 4790 -> 3197[label="",style="dashed", color="red", weight=0]; 4790[label="vwx1911 == vwx1921 && vwx1912 <= vwx1922",fontsize=16,color="magenta"];4790 -> 4890[label="",style="dashed", color="magenta", weight=3]; 4790 -> 4891[label="",style="dashed", color="magenta", weight=3]; 4791[label="vwx1910",fontsize=16,color="green",shape="box"];4792[label="vwx1920",fontsize=16,color="green",shape="box"];4793[label="vwx1910",fontsize=16,color="green",shape="box"];4794[label="vwx1920",fontsize=16,color="green",shape="box"];4795[label="vwx1910",fontsize=16,color="green",shape="box"];4796[label="vwx1920",fontsize=16,color="green",shape="box"];4797[label="vwx1910",fontsize=16,color="green",shape="box"];4798[label="vwx1920",fontsize=16,color="green",shape="box"];4799[label="vwx1910",fontsize=16,color="green",shape="box"];4800[label="vwx1920",fontsize=16,color="green",shape="box"];4801[label="vwx1910",fontsize=16,color="green",shape="box"];4802[label="vwx1920",fontsize=16,color="green",shape="box"];4803[label="vwx1910",fontsize=16,color="green",shape="box"];4804[label="vwx1920",fontsize=16,color="green",shape="box"];4805[label="vwx1910",fontsize=16,color="green",shape="box"];4806[label="vwx1920",fontsize=16,color="green",shape="box"];4807[label="vwx1910",fontsize=16,color="green",shape="box"];4808[label="vwx1920",fontsize=16,color="green",shape="box"];4809[label="vwx1910",fontsize=16,color="green",shape="box"];4810[label="vwx1920",fontsize=16,color="green",shape="box"];4811[label="vwx1910",fontsize=16,color="green",shape="box"];4812[label="vwx1920",fontsize=16,color="green",shape="box"];4813[label="vwx1910",fontsize=16,color="green",shape="box"];4814[label="vwx1920",fontsize=16,color="green",shape="box"];4815[label="vwx1910",fontsize=16,color="green",shape="box"];4816[label="vwx1920",fontsize=16,color="green",shape="box"];4817[label="vwx1910",fontsize=16,color="green",shape="box"];4818[label="vwx1920",fontsize=16,color="green",shape="box"];4819 -> 2642[label="",style="dashed", color="red", weight=0]; 4819[label="vwx1910 == vwx1920",fontsize=16,color="magenta"];4819 -> 4892[label="",style="dashed", color="magenta", weight=3]; 4819 -> 4893[label="",style="dashed", color="magenta", weight=3]; 4820 -> 2645[label="",style="dashed", color="red", weight=0]; 4820[label="vwx1910 == vwx1920",fontsize=16,color="magenta"];4820 -> 4894[label="",style="dashed", color="magenta", weight=3]; 4820 -> 4895[label="",style="dashed", color="magenta", weight=3]; 4821 -> 2641[label="",style="dashed", color="red", weight=0]; 4821[label="vwx1910 == vwx1920",fontsize=16,color="magenta"];4821 -> 4896[label="",style="dashed", color="magenta", weight=3]; 4821 -> 4897[label="",style="dashed", color="magenta", weight=3]; 4822 -> 2643[label="",style="dashed", color="red", weight=0]; 4822[label="vwx1910 == vwx1920",fontsize=16,color="magenta"];4822 -> 4898[label="",style="dashed", color="magenta", weight=3]; 4822 -> 4899[label="",style="dashed", color="magenta", weight=3]; 4823 -> 2652[label="",style="dashed", color="red", weight=0]; 4823[label="vwx1910 == vwx1920",fontsize=16,color="magenta"];4823 -> 4900[label="",style="dashed", color="magenta", weight=3]; 4823 -> 4901[label="",style="dashed", color="magenta", weight=3]; 4824 -> 2647[label="",style="dashed", color="red", weight=0]; 4824[label="vwx1910 == vwx1920",fontsize=16,color="magenta"];4824 -> 4902[label="",style="dashed", color="magenta", weight=3]; 4824 -> 4903[label="",style="dashed", color="magenta", weight=3]; 4825 -> 2648[label="",style="dashed", color="red", weight=0]; 4825[label="vwx1910 == vwx1920",fontsize=16,color="magenta"];4825 -> 4904[label="",style="dashed", color="magenta", weight=3]; 4825 -> 4905[label="",style="dashed", color="magenta", weight=3]; 4826 -> 2650[label="",style="dashed", color="red", weight=0]; 4826[label="vwx1910 == vwx1920",fontsize=16,color="magenta"];4826 -> 4906[label="",style="dashed", color="magenta", weight=3]; 4826 -> 4907[label="",style="dashed", color="magenta", weight=3]; 4827 -> 2646[label="",style="dashed", color="red", weight=0]; 4827[label="vwx1910 == vwx1920",fontsize=16,color="magenta"];4827 -> 4908[label="",style="dashed", color="magenta", weight=3]; 4827 -> 4909[label="",style="dashed", color="magenta", weight=3]; 4828 -> 2653[label="",style="dashed", color="red", weight=0]; 4828[label="vwx1910 == vwx1920",fontsize=16,color="magenta"];4828 -> 4910[label="",style="dashed", color="magenta", weight=3]; 4828 -> 4911[label="",style="dashed", color="magenta", weight=3]; 4829 -> 2640[label="",style="dashed", color="red", weight=0]; 4829[label="vwx1910 == vwx1920",fontsize=16,color="magenta"];4829 -> 4912[label="",style="dashed", color="magenta", weight=3]; 4829 -> 4913[label="",style="dashed", color="magenta", weight=3]; 4830 -> 2644[label="",style="dashed", color="red", weight=0]; 4830[label="vwx1910 == vwx1920",fontsize=16,color="magenta"];4830 -> 4914[label="",style="dashed", color="magenta", weight=3]; 4830 -> 4915[label="",style="dashed", color="magenta", weight=3]; 4831 -> 2649[label="",style="dashed", color="red", weight=0]; 4831[label="vwx1910 == vwx1920",fontsize=16,color="magenta"];4831 -> 4916[label="",style="dashed", color="magenta", weight=3]; 4831 -> 4917[label="",style="dashed", color="magenta", weight=3]; 4832 -> 2651[label="",style="dashed", color="red", weight=0]; 4832[label="vwx1910 == vwx1920",fontsize=16,color="magenta"];4832 -> 4918[label="",style="dashed", color="magenta", weight=3]; 4832 -> 4919[label="",style="dashed", color="magenta", weight=3]; 4833 -> 3442[label="",style="dashed", color="red", weight=0]; 4833[label="vwx1911 <= vwx1921",fontsize=16,color="magenta"];4833 -> 4920[label="",style="dashed", color="magenta", weight=3]; 4833 -> 4921[label="",style="dashed", color="magenta", weight=3]; 4834 -> 3443[label="",style="dashed", color="red", weight=0]; 4834[label="vwx1911 <= vwx1921",fontsize=16,color="magenta"];4834 -> 4922[label="",style="dashed", color="magenta", weight=3]; 4834 -> 4923[label="",style="dashed", color="magenta", weight=3]; 4835 -> 3444[label="",style="dashed", color="red", weight=0]; 4835[label="vwx1911 <= vwx1921",fontsize=16,color="magenta"];4835 -> 4924[label="",style="dashed", color="magenta", weight=3]; 4835 -> 4925[label="",style="dashed", color="magenta", weight=3]; 4836 -> 3445[label="",style="dashed", color="red", weight=0]; 4836[label="vwx1911 <= vwx1921",fontsize=16,color="magenta"];4836 -> 4926[label="",style="dashed", color="magenta", weight=3]; 4836 -> 4927[label="",style="dashed", color="magenta", weight=3]; 4837 -> 3446[label="",style="dashed", color="red", weight=0]; 4837[label="vwx1911 <= vwx1921",fontsize=16,color="magenta"];4837 -> 4928[label="",style="dashed", color="magenta", weight=3]; 4837 -> 4929[label="",style="dashed", color="magenta", weight=3]; 4838 -> 3447[label="",style="dashed", color="red", weight=0]; 4838[label="vwx1911 <= vwx1921",fontsize=16,color="magenta"];4838 -> 4930[label="",style="dashed", color="magenta", weight=3]; 4838 -> 4931[label="",style="dashed", color="magenta", weight=3]; 4839 -> 3448[label="",style="dashed", color="red", weight=0]; 4839[label="vwx1911 <= vwx1921",fontsize=16,color="magenta"];4839 -> 4932[label="",style="dashed", color="magenta", weight=3]; 4839 -> 4933[label="",style="dashed", color="magenta", weight=3]; 4840 -> 3449[label="",style="dashed", color="red", weight=0]; 4840[label="vwx1911 <= vwx1921",fontsize=16,color="magenta"];4840 -> 4934[label="",style="dashed", color="magenta", weight=3]; 4840 -> 4935[label="",style="dashed", color="magenta", weight=3]; 4841 -> 3450[label="",style="dashed", color="red", weight=0]; 4841[label="vwx1911 <= vwx1921",fontsize=16,color="magenta"];4841 -> 4936[label="",style="dashed", color="magenta", weight=3]; 4841 -> 4937[label="",style="dashed", color="magenta", weight=3]; 4842 -> 3451[label="",style="dashed", color="red", weight=0]; 4842[label="vwx1911 <= vwx1921",fontsize=16,color="magenta"];4842 -> 4938[label="",style="dashed", color="magenta", weight=3]; 4842 -> 4939[label="",style="dashed", color="magenta", weight=3]; 4843 -> 3452[label="",style="dashed", color="red", weight=0]; 4843[label="vwx1911 <= vwx1921",fontsize=16,color="magenta"];4843 -> 4940[label="",style="dashed", color="magenta", weight=3]; 4843 -> 4941[label="",style="dashed", color="magenta", weight=3]; 4844 -> 3453[label="",style="dashed", color="red", weight=0]; 4844[label="vwx1911 <= vwx1921",fontsize=16,color="magenta"];4844 -> 4942[label="",style="dashed", color="magenta", weight=3]; 4844 -> 4943[label="",style="dashed", color="magenta", weight=3]; 4845 -> 3454[label="",style="dashed", color="red", weight=0]; 4845[label="vwx1911 <= vwx1921",fontsize=16,color="magenta"];4845 -> 4944[label="",style="dashed", color="magenta", weight=3]; 4845 -> 4945[label="",style="dashed", color="magenta", weight=3]; 4846 -> 3455[label="",style="dashed", color="red", weight=0]; 4846[label="vwx1911 <= vwx1921",fontsize=16,color="magenta"];4846 -> 4946[label="",style="dashed", color="magenta", weight=3]; 4846 -> 4947[label="",style="dashed", color="magenta", weight=3]; 4847[label="primPlusNat vwx3350 vwx40100",fontsize=16,color="burlywood",shape="triangle"];5875[label="vwx3350/Succ vwx33500",fontsize=10,color="white",style="solid",shape="box"];4847 -> 5875[label="",style="solid", color="burlywood", weight=9]; 5875 -> 4948[label="",style="solid", color="burlywood", weight=3]; 5876[label="vwx3350/Zero",fontsize=10,color="white",style="solid",shape="box"];4847 -> 5876[label="",style="solid", color="burlywood", weight=9]; 5876 -> 4949[label="",style="solid", color="burlywood", weight=3]; 4848[label="vwx1910",fontsize=16,color="green",shape="box"];4849[label="vwx1920",fontsize=16,color="green",shape="box"];4850[label="vwx1910",fontsize=16,color="green",shape="box"];4851[label="vwx1920",fontsize=16,color="green",shape="box"];4852[label="vwx1910",fontsize=16,color="green",shape="box"];4853[label="vwx1920",fontsize=16,color="green",shape="box"];4854[label="vwx1910",fontsize=16,color="green",shape="box"];4855[label="vwx1920",fontsize=16,color="green",shape="box"];4856[label="vwx1910",fontsize=16,color="green",shape="box"];4857[label="vwx1920",fontsize=16,color="green",shape="box"];4858[label="vwx1910",fontsize=16,color="green",shape="box"];4859[label="vwx1920",fontsize=16,color="green",shape="box"];4860[label="vwx1910",fontsize=16,color="green",shape="box"];4861[label="vwx1920",fontsize=16,color="green",shape="box"];4862[label="vwx1910",fontsize=16,color="green",shape="box"];4863[label="vwx1920",fontsize=16,color="green",shape="box"];4864[label="vwx1910",fontsize=16,color="green",shape="box"];4865[label="vwx1920",fontsize=16,color="green",shape="box"];4866[label="vwx1910",fontsize=16,color="green",shape="box"];4867[label="vwx1920",fontsize=16,color="green",shape="box"];4868[label="vwx1910",fontsize=16,color="green",shape="box"];4869[label="vwx1920",fontsize=16,color="green",shape="box"];4870[label="vwx1910",fontsize=16,color="green",shape="box"];4871[label="vwx1920",fontsize=16,color="green",shape="box"];4872[label="vwx1910",fontsize=16,color="green",shape="box"];4873[label="vwx1920",fontsize=16,color="green",shape="box"];4874[label="vwx1910",fontsize=16,color="green",shape="box"];4875[label="vwx1920",fontsize=16,color="green",shape="box"];4876 -> 3584[label="",style="dashed", color="red", weight=0]; 4876[label="vwx1911 < vwx1921",fontsize=16,color="magenta"];4876 -> 4950[label="",style="dashed", color="magenta", weight=3]; 4876 -> 4951[label="",style="dashed", color="magenta", weight=3]; 4877 -> 3585[label="",style="dashed", color="red", weight=0]; 4877[label="vwx1911 < vwx1921",fontsize=16,color="magenta"];4877 -> 4952[label="",style="dashed", color="magenta", weight=3]; 4877 -> 4953[label="",style="dashed", color="magenta", weight=3]; 4878 -> 3586[label="",style="dashed", color="red", weight=0]; 4878[label="vwx1911 < vwx1921",fontsize=16,color="magenta"];4878 -> 4954[label="",style="dashed", color="magenta", weight=3]; 4878 -> 4955[label="",style="dashed", color="magenta", weight=3]; 4879 -> 3587[label="",style="dashed", color="red", weight=0]; 4879[label="vwx1911 < vwx1921",fontsize=16,color="magenta"];4879 -> 4956[label="",style="dashed", color="magenta", weight=3]; 4879 -> 4957[label="",style="dashed", color="magenta", weight=3]; 4880 -> 3588[label="",style="dashed", color="red", weight=0]; 4880[label="vwx1911 < vwx1921",fontsize=16,color="magenta"];4880 -> 4958[label="",style="dashed", color="magenta", weight=3]; 4880 -> 4959[label="",style="dashed", color="magenta", weight=3]; 4881 -> 3589[label="",style="dashed", color="red", weight=0]; 4881[label="vwx1911 < vwx1921",fontsize=16,color="magenta"];4881 -> 4960[label="",style="dashed", color="magenta", weight=3]; 4881 -> 4961[label="",style="dashed", color="magenta", weight=3]; 4882 -> 3590[label="",style="dashed", color="red", weight=0]; 4882[label="vwx1911 < vwx1921",fontsize=16,color="magenta"];4882 -> 4962[label="",style="dashed", color="magenta", weight=3]; 4882 -> 4963[label="",style="dashed", color="magenta", weight=3]; 4883 -> 3591[label="",style="dashed", color="red", weight=0]; 4883[label="vwx1911 < vwx1921",fontsize=16,color="magenta"];4883 -> 4964[label="",style="dashed", color="magenta", weight=3]; 4883 -> 4965[label="",style="dashed", color="magenta", weight=3]; 4884 -> 3592[label="",style="dashed", color="red", weight=0]; 4884[label="vwx1911 < vwx1921",fontsize=16,color="magenta"];4884 -> 4966[label="",style="dashed", color="magenta", weight=3]; 4884 -> 4967[label="",style="dashed", color="magenta", weight=3]; 4885 -> 3593[label="",style="dashed", color="red", weight=0]; 4885[label="vwx1911 < vwx1921",fontsize=16,color="magenta"];4885 -> 4968[label="",style="dashed", color="magenta", weight=3]; 4885 -> 4969[label="",style="dashed", color="magenta", weight=3]; 4886 -> 3594[label="",style="dashed", color="red", weight=0]; 4886[label="vwx1911 < vwx1921",fontsize=16,color="magenta"];4886 -> 4970[label="",style="dashed", color="magenta", weight=3]; 4886 -> 4971[label="",style="dashed", color="magenta", weight=3]; 4887 -> 3595[label="",style="dashed", color="red", weight=0]; 4887[label="vwx1911 < vwx1921",fontsize=16,color="magenta"];4887 -> 4972[label="",style="dashed", color="magenta", weight=3]; 4887 -> 4973[label="",style="dashed", color="magenta", weight=3]; 4888 -> 3596[label="",style="dashed", color="red", weight=0]; 4888[label="vwx1911 < vwx1921",fontsize=16,color="magenta"];4888 -> 4974[label="",style="dashed", color="magenta", weight=3]; 4888 -> 4975[label="",style="dashed", color="magenta", weight=3]; 4889 -> 3597[label="",style="dashed", color="red", weight=0]; 4889[label="vwx1911 < vwx1921",fontsize=16,color="magenta"];4889 -> 4976[label="",style="dashed", color="magenta", weight=3]; 4889 -> 4977[label="",style="dashed", color="magenta", weight=3]; 4890[label="vwx1911 == vwx1921",fontsize=16,color="blue",shape="box"];5877[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];4890 -> 5877[label="",style="solid", color="blue", weight=9]; 5877 -> 4978[label="",style="solid", color="blue", weight=3]; 5878[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];4890 -> 5878[label="",style="solid", color="blue", weight=9]; 5878 -> 4979[label="",style="solid", color="blue", weight=3]; 5879[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];4890 -> 5879[label="",style="solid", color="blue", weight=9]; 5879 -> 4980[label="",style="solid", color="blue", weight=3]; 5880[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];4890 -> 5880[label="",style="solid", color="blue", weight=9]; 5880 -> 4981[label="",style="solid", color="blue", weight=3]; 5881[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];4890 -> 5881[label="",style="solid", color="blue", weight=9]; 5881 -> 4982[label="",style="solid", color="blue", weight=3]; 5882[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];4890 -> 5882[label="",style="solid", color="blue", weight=9]; 5882 -> 4983[label="",style="solid", color="blue", weight=3]; 5883[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4890 -> 5883[label="",style="solid", color="blue", weight=9]; 5883 -> 4984[label="",style="solid", color="blue", weight=3]; 5884[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4890 -> 5884[label="",style="solid", color="blue", weight=9]; 5884 -> 4985[label="",style="solid", color="blue", weight=3]; 5885[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];4890 -> 5885[label="",style="solid", color="blue", weight=9]; 5885 -> 4986[label="",style="solid", color="blue", weight=3]; 5886[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4890 -> 5886[label="",style="solid", color="blue", weight=9]; 5886 -> 4987[label="",style="solid", color="blue", weight=3]; 5887[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4890 -> 5887[label="",style="solid", color="blue", weight=9]; 5887 -> 4988[label="",style="solid", color="blue", weight=3]; 5888[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4890 -> 5888[label="",style="solid", color="blue", weight=9]; 5888 -> 4989[label="",style="solid", color="blue", weight=3]; 5889[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4890 -> 5889[label="",style="solid", color="blue", weight=9]; 5889 -> 4990[label="",style="solid", color="blue", weight=3]; 5890[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];4890 -> 5890[label="",style="solid", color="blue", weight=9]; 5890 -> 4991[label="",style="solid", color="blue", weight=3]; 4891[label="vwx1912 <= vwx1922",fontsize=16,color="blue",shape="box"];5891[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];4891 -> 5891[label="",style="solid", color="blue", weight=9]; 5891 -> 4992[label="",style="solid", color="blue", weight=3]; 5892[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];4891 -> 5892[label="",style="solid", color="blue", weight=9]; 5892 -> 4993[label="",style="solid", color="blue", weight=3]; 5893[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];4891 -> 5893[label="",style="solid", color="blue", weight=9]; 5893 -> 4994[label="",style="solid", color="blue", weight=3]; 5894[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];4891 -> 5894[label="",style="solid", color="blue", weight=9]; 5894 -> 4995[label="",style="solid", color="blue", weight=3]; 5895[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];4891 -> 5895[label="",style="solid", color="blue", weight=9]; 5895 -> 4996[label="",style="solid", color="blue", weight=3]; 5896[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];4891 -> 5896[label="",style="solid", color="blue", weight=9]; 5896 -> 4997[label="",style="solid", color="blue", weight=3]; 5897[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4891 -> 5897[label="",style="solid", color="blue", weight=9]; 5897 -> 4998[label="",style="solid", color="blue", weight=3]; 5898[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4891 -> 5898[label="",style="solid", color="blue", weight=9]; 5898 -> 4999[label="",style="solid", color="blue", weight=3]; 5899[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];4891 -> 5899[label="",style="solid", color="blue", weight=9]; 5899 -> 5000[label="",style="solid", color="blue", weight=3]; 5900[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4891 -> 5900[label="",style="solid", color="blue", weight=9]; 5900 -> 5001[label="",style="solid", color="blue", weight=3]; 5901[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4891 -> 5901[label="",style="solid", color="blue", weight=9]; 5901 -> 5002[label="",style="solid", color="blue", weight=3]; 5902[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4891 -> 5902[label="",style="solid", color="blue", weight=9]; 5902 -> 5003[label="",style="solid", color="blue", weight=3]; 5903[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4891 -> 5903[label="",style="solid", color="blue", weight=9]; 5903 -> 5004[label="",style="solid", color="blue", weight=3]; 5904[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];4891 -> 5904[label="",style="solid", color="blue", weight=9]; 5904 -> 5005[label="",style="solid", color="blue", weight=3]; 4892[label="vwx1910",fontsize=16,color="green",shape="box"];4893[label="vwx1920",fontsize=16,color="green",shape="box"];4894[label="vwx1910",fontsize=16,color="green",shape="box"];4895[label="vwx1920",fontsize=16,color="green",shape="box"];4896[label="vwx1910",fontsize=16,color="green",shape="box"];4897[label="vwx1920",fontsize=16,color="green",shape="box"];4898[label="vwx1910",fontsize=16,color="green",shape="box"];4899[label="vwx1920",fontsize=16,color="green",shape="box"];4900[label="vwx1910",fontsize=16,color="green",shape="box"];4901[label="vwx1920",fontsize=16,color="green",shape="box"];4902[label="vwx1910",fontsize=16,color="green",shape="box"];4903[label="vwx1920",fontsize=16,color="green",shape="box"];4904[label="vwx1910",fontsize=16,color="green",shape="box"];4905[label="vwx1920",fontsize=16,color="green",shape="box"];4906[label="vwx1910",fontsize=16,color="green",shape="box"];4907[label="vwx1920",fontsize=16,color="green",shape="box"];4908[label="vwx1910",fontsize=16,color="green",shape="box"];4909[label="vwx1920",fontsize=16,color="green",shape="box"];4910[label="vwx1910",fontsize=16,color="green",shape="box"];4911[label="vwx1920",fontsize=16,color="green",shape="box"];4912[label="vwx1910",fontsize=16,color="green",shape="box"];4913[label="vwx1920",fontsize=16,color="green",shape="box"];4914[label="vwx1910",fontsize=16,color="green",shape="box"];4915[label="vwx1920",fontsize=16,color="green",shape="box"];4916[label="vwx1910",fontsize=16,color="green",shape="box"];4917[label="vwx1920",fontsize=16,color="green",shape="box"];4918[label="vwx1910",fontsize=16,color="green",shape="box"];4919[label="vwx1920",fontsize=16,color="green",shape="box"];4920[label="vwx1911",fontsize=16,color="green",shape="box"];4921[label="vwx1921",fontsize=16,color="green",shape="box"];4922[label="vwx1911",fontsize=16,color="green",shape="box"];4923[label="vwx1921",fontsize=16,color="green",shape="box"];4924[label="vwx1911",fontsize=16,color="green",shape="box"];4925[label="vwx1921",fontsize=16,color="green",shape="box"];4926[label="vwx1911",fontsize=16,color="green",shape="box"];4927[label="vwx1921",fontsize=16,color="green",shape="box"];4928[label="vwx1911",fontsize=16,color="green",shape="box"];4929[label="vwx1921",fontsize=16,color="green",shape="box"];4930[label="vwx1911",fontsize=16,color="green",shape="box"];4931[label="vwx1921",fontsize=16,color="green",shape="box"];4932[label="vwx1911",fontsize=16,color="green",shape="box"];4933[label="vwx1921",fontsize=16,color="green",shape="box"];4934[label="vwx1911",fontsize=16,color="green",shape="box"];4935[label="vwx1921",fontsize=16,color="green",shape="box"];4936[label="vwx1911",fontsize=16,color="green",shape="box"];4937[label="vwx1921",fontsize=16,color="green",shape="box"];4938[label="vwx1911",fontsize=16,color="green",shape="box"];4939[label="vwx1921",fontsize=16,color="green",shape="box"];4940[label="vwx1911",fontsize=16,color="green",shape="box"];4941[label="vwx1921",fontsize=16,color="green",shape="box"];4942[label="vwx1911",fontsize=16,color="green",shape="box"];4943[label="vwx1921",fontsize=16,color="green",shape="box"];4944[label="vwx1911",fontsize=16,color="green",shape="box"];4945[label="vwx1921",fontsize=16,color="green",shape="box"];4946[label="vwx1911",fontsize=16,color="green",shape="box"];4947[label="vwx1921",fontsize=16,color="green",shape="box"];4948[label="primPlusNat (Succ vwx33500) vwx40100",fontsize=16,color="burlywood",shape="box"];5905[label="vwx40100/Succ vwx401000",fontsize=10,color="white",style="solid",shape="box"];4948 -> 5905[label="",style="solid", color="burlywood", weight=9]; 5905 -> 5006[label="",style="solid", color="burlywood", weight=3]; 5906[label="vwx40100/Zero",fontsize=10,color="white",style="solid",shape="box"];4948 -> 5906[label="",style="solid", color="burlywood", weight=9]; 5906 -> 5007[label="",style="solid", color="burlywood", weight=3]; 4949[label="primPlusNat Zero vwx40100",fontsize=16,color="burlywood",shape="box"];5907[label="vwx40100/Succ vwx401000",fontsize=10,color="white",style="solid",shape="box"];4949 -> 5907[label="",style="solid", color="burlywood", weight=9]; 5907 -> 5008[label="",style="solid", color="burlywood", weight=3]; 5908[label="vwx40100/Zero",fontsize=10,color="white",style="solid",shape="box"];4949 -> 5908[label="",style="solid", color="burlywood", weight=9]; 5908 -> 5009[label="",style="solid", color="burlywood", weight=3]; 4950[label="vwx1911",fontsize=16,color="green",shape="box"];4951[label="vwx1921",fontsize=16,color="green",shape="box"];4952[label="vwx1911",fontsize=16,color="green",shape="box"];4953[label="vwx1921",fontsize=16,color="green",shape="box"];4954[label="vwx1911",fontsize=16,color="green",shape="box"];4955[label="vwx1921",fontsize=16,color="green",shape="box"];4956[label="vwx1911",fontsize=16,color="green",shape="box"];4957[label="vwx1921",fontsize=16,color="green",shape="box"];4958[label="vwx1911",fontsize=16,color="green",shape="box"];4959[label="vwx1921",fontsize=16,color="green",shape="box"];4960[label="vwx1911",fontsize=16,color="green",shape="box"];4961[label="vwx1921",fontsize=16,color="green",shape="box"];4962[label="vwx1911",fontsize=16,color="green",shape="box"];4963[label="vwx1921",fontsize=16,color="green",shape="box"];4964[label="vwx1911",fontsize=16,color="green",shape="box"];4965[label="vwx1921",fontsize=16,color="green",shape="box"];4966[label="vwx1911",fontsize=16,color="green",shape="box"];4967[label="vwx1921",fontsize=16,color="green",shape="box"];4968[label="vwx1911",fontsize=16,color="green",shape="box"];4969[label="vwx1921",fontsize=16,color="green",shape="box"];4970[label="vwx1911",fontsize=16,color="green",shape="box"];4971[label="vwx1921",fontsize=16,color="green",shape="box"];4972[label="vwx1911",fontsize=16,color="green",shape="box"];4973[label="vwx1921",fontsize=16,color="green",shape="box"];4974[label="vwx1911",fontsize=16,color="green",shape="box"];4975[label="vwx1921",fontsize=16,color="green",shape="box"];4976[label="vwx1911",fontsize=16,color="green",shape="box"];4977[label="vwx1921",fontsize=16,color="green",shape="box"];4978 -> 2642[label="",style="dashed", color="red", weight=0]; 4978[label="vwx1911 == vwx1921",fontsize=16,color="magenta"];4978 -> 5010[label="",style="dashed", color="magenta", weight=3]; 4978 -> 5011[label="",style="dashed", color="magenta", weight=3]; 4979 -> 2645[label="",style="dashed", color="red", weight=0]; 4979[label="vwx1911 == vwx1921",fontsize=16,color="magenta"];4979 -> 5012[label="",style="dashed", color="magenta", weight=3]; 4979 -> 5013[label="",style="dashed", color="magenta", weight=3]; 4980 -> 2641[label="",style="dashed", color="red", weight=0]; 4980[label="vwx1911 == vwx1921",fontsize=16,color="magenta"];4980 -> 5014[label="",style="dashed", color="magenta", weight=3]; 4980 -> 5015[label="",style="dashed", color="magenta", weight=3]; 4981 -> 2643[label="",style="dashed", color="red", weight=0]; 4981[label="vwx1911 == vwx1921",fontsize=16,color="magenta"];4981 -> 5016[label="",style="dashed", color="magenta", weight=3]; 4981 -> 5017[label="",style="dashed", color="magenta", weight=3]; 4982 -> 2652[label="",style="dashed", color="red", weight=0]; 4982[label="vwx1911 == vwx1921",fontsize=16,color="magenta"];4982 -> 5018[label="",style="dashed", color="magenta", weight=3]; 4982 -> 5019[label="",style="dashed", color="magenta", weight=3]; 4983 -> 2647[label="",style="dashed", color="red", weight=0]; 4983[label="vwx1911 == vwx1921",fontsize=16,color="magenta"];4983 -> 5020[label="",style="dashed", color="magenta", weight=3]; 4983 -> 5021[label="",style="dashed", color="magenta", weight=3]; 4984 -> 2648[label="",style="dashed", color="red", weight=0]; 4984[label="vwx1911 == vwx1921",fontsize=16,color="magenta"];4984 -> 5022[label="",style="dashed", color="magenta", weight=3]; 4984 -> 5023[label="",style="dashed", color="magenta", weight=3]; 4985 -> 2650[label="",style="dashed", color="red", weight=0]; 4985[label="vwx1911 == vwx1921",fontsize=16,color="magenta"];4985 -> 5024[label="",style="dashed", color="magenta", weight=3]; 4985 -> 5025[label="",style="dashed", color="magenta", weight=3]; 4986 -> 2646[label="",style="dashed", color="red", weight=0]; 4986[label="vwx1911 == vwx1921",fontsize=16,color="magenta"];4986 -> 5026[label="",style="dashed", color="magenta", weight=3]; 4986 -> 5027[label="",style="dashed", color="magenta", weight=3]; 4987 -> 2653[label="",style="dashed", color="red", weight=0]; 4987[label="vwx1911 == vwx1921",fontsize=16,color="magenta"];4987 -> 5028[label="",style="dashed", color="magenta", weight=3]; 4987 -> 5029[label="",style="dashed", color="magenta", weight=3]; 4988 -> 2640[label="",style="dashed", color="red", weight=0]; 4988[label="vwx1911 == vwx1921",fontsize=16,color="magenta"];4988 -> 5030[label="",style="dashed", color="magenta", weight=3]; 4988 -> 5031[label="",style="dashed", color="magenta", weight=3]; 4989 -> 2644[label="",style="dashed", color="red", weight=0]; 4989[label="vwx1911 == vwx1921",fontsize=16,color="magenta"];4989 -> 5032[label="",style="dashed", color="magenta", weight=3]; 4989 -> 5033[label="",style="dashed", color="magenta", weight=3]; 4990 -> 2649[label="",style="dashed", color="red", weight=0]; 4990[label="vwx1911 == vwx1921",fontsize=16,color="magenta"];4990 -> 5034[label="",style="dashed", color="magenta", weight=3]; 4990 -> 5035[label="",style="dashed", color="magenta", weight=3]; 4991 -> 2651[label="",style="dashed", color="red", weight=0]; 4991[label="vwx1911 == vwx1921",fontsize=16,color="magenta"];4991 -> 5036[label="",style="dashed", color="magenta", weight=3]; 4991 -> 5037[label="",style="dashed", color="magenta", weight=3]; 4992 -> 3442[label="",style="dashed", color="red", weight=0]; 4992[label="vwx1912 <= vwx1922",fontsize=16,color="magenta"];4992 -> 5038[label="",style="dashed", color="magenta", weight=3]; 4992 -> 5039[label="",style="dashed", color="magenta", weight=3]; 4993 -> 3443[label="",style="dashed", color="red", weight=0]; 4993[label="vwx1912 <= vwx1922",fontsize=16,color="magenta"];4993 -> 5040[label="",style="dashed", color="magenta", weight=3]; 4993 -> 5041[label="",style="dashed", color="magenta", weight=3]; 4994 -> 3444[label="",style="dashed", color="red", weight=0]; 4994[label="vwx1912 <= vwx1922",fontsize=16,color="magenta"];4994 -> 5042[label="",style="dashed", color="magenta", weight=3]; 4994 -> 5043[label="",style="dashed", color="magenta", weight=3]; 4995 -> 3445[label="",style="dashed", color="red", weight=0]; 4995[label="vwx1912 <= vwx1922",fontsize=16,color="magenta"];4995 -> 5044[label="",style="dashed", color="magenta", weight=3]; 4995 -> 5045[label="",style="dashed", color="magenta", weight=3]; 4996 -> 3446[label="",style="dashed", color="red", weight=0]; 4996[label="vwx1912 <= vwx1922",fontsize=16,color="magenta"];4996 -> 5046[label="",style="dashed", color="magenta", weight=3]; 4996 -> 5047[label="",style="dashed", color="magenta", weight=3]; 4997 -> 3447[label="",style="dashed", color="red", weight=0]; 4997[label="vwx1912 <= vwx1922",fontsize=16,color="magenta"];4997 -> 5048[label="",style="dashed", color="magenta", weight=3]; 4997 -> 5049[label="",style="dashed", color="magenta", weight=3]; 4998 -> 3448[label="",style="dashed", color="red", weight=0]; 4998[label="vwx1912 <= vwx1922",fontsize=16,color="magenta"];4998 -> 5050[label="",style="dashed", color="magenta", weight=3]; 4998 -> 5051[label="",style="dashed", color="magenta", weight=3]; 4999 -> 3449[label="",style="dashed", color="red", weight=0]; 4999[label="vwx1912 <= vwx1922",fontsize=16,color="magenta"];4999 -> 5052[label="",style="dashed", color="magenta", weight=3]; 4999 -> 5053[label="",style="dashed", color="magenta", weight=3]; 5000 -> 3450[label="",style="dashed", color="red", weight=0]; 5000[label="vwx1912 <= vwx1922",fontsize=16,color="magenta"];5000 -> 5054[label="",style="dashed", color="magenta", weight=3]; 5000 -> 5055[label="",style="dashed", color="magenta", weight=3]; 5001 -> 3451[label="",style="dashed", color="red", weight=0]; 5001[label="vwx1912 <= vwx1922",fontsize=16,color="magenta"];5001 -> 5056[label="",style="dashed", color="magenta", weight=3]; 5001 -> 5057[label="",style="dashed", color="magenta", weight=3]; 5002 -> 3452[label="",style="dashed", color="red", weight=0]; 5002[label="vwx1912 <= vwx1922",fontsize=16,color="magenta"];5002 -> 5058[label="",style="dashed", color="magenta", weight=3]; 5002 -> 5059[label="",style="dashed", color="magenta", weight=3]; 5003 -> 3453[label="",style="dashed", color="red", weight=0]; 5003[label="vwx1912 <= vwx1922",fontsize=16,color="magenta"];5003 -> 5060[label="",style="dashed", color="magenta", weight=3]; 5003 -> 5061[label="",style="dashed", color="magenta", weight=3]; 5004 -> 3454[label="",style="dashed", color="red", weight=0]; 5004[label="vwx1912 <= vwx1922",fontsize=16,color="magenta"];5004 -> 5062[label="",style="dashed", color="magenta", weight=3]; 5004 -> 5063[label="",style="dashed", color="magenta", weight=3]; 5005 -> 3455[label="",style="dashed", color="red", weight=0]; 5005[label="vwx1912 <= vwx1922",fontsize=16,color="magenta"];5005 -> 5064[label="",style="dashed", color="magenta", weight=3]; 5005 -> 5065[label="",style="dashed", color="magenta", weight=3]; 5006[label="primPlusNat (Succ vwx33500) (Succ vwx401000)",fontsize=16,color="black",shape="box"];5006 -> 5066[label="",style="solid", color="black", weight=3]; 5007[label="primPlusNat (Succ vwx33500) Zero",fontsize=16,color="black",shape="box"];5007 -> 5067[label="",style="solid", color="black", weight=3]; 5008[label="primPlusNat Zero (Succ vwx401000)",fontsize=16,color="black",shape="box"];5008 -> 5068[label="",style="solid", color="black", weight=3]; 5009[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];5009 -> 5069[label="",style="solid", color="black", weight=3]; 5010[label="vwx1911",fontsize=16,color="green",shape="box"];5011[label="vwx1921",fontsize=16,color="green",shape="box"];5012[label="vwx1911",fontsize=16,color="green",shape="box"];5013[label="vwx1921",fontsize=16,color="green",shape="box"];5014[label="vwx1911",fontsize=16,color="green",shape="box"];5015[label="vwx1921",fontsize=16,color="green",shape="box"];5016[label="vwx1911",fontsize=16,color="green",shape="box"];5017[label="vwx1921",fontsize=16,color="green",shape="box"];5018[label="vwx1911",fontsize=16,color="green",shape="box"];5019[label="vwx1921",fontsize=16,color="green",shape="box"];5020[label="vwx1911",fontsize=16,color="green",shape="box"];5021[label="vwx1921",fontsize=16,color="green",shape="box"];5022[label="vwx1911",fontsize=16,color="green",shape="box"];5023[label="vwx1921",fontsize=16,color="green",shape="box"];5024[label="vwx1911",fontsize=16,color="green",shape="box"];5025[label="vwx1921",fontsize=16,color="green",shape="box"];5026[label="vwx1911",fontsize=16,color="green",shape="box"];5027[label="vwx1921",fontsize=16,color="green",shape="box"];5028[label="vwx1911",fontsize=16,color="green",shape="box"];5029[label="vwx1921",fontsize=16,color="green",shape="box"];5030[label="vwx1911",fontsize=16,color="green",shape="box"];5031[label="vwx1921",fontsize=16,color="green",shape="box"];5032[label="vwx1911",fontsize=16,color="green",shape="box"];5033[label="vwx1921",fontsize=16,color="green",shape="box"];5034[label="vwx1911",fontsize=16,color="green",shape="box"];5035[label="vwx1921",fontsize=16,color="green",shape="box"];5036[label="vwx1911",fontsize=16,color="green",shape="box"];5037[label="vwx1921",fontsize=16,color="green",shape="box"];5038[label="vwx1912",fontsize=16,color="green",shape="box"];5039[label="vwx1922",fontsize=16,color="green",shape="box"];5040[label="vwx1912",fontsize=16,color="green",shape="box"];5041[label="vwx1922",fontsize=16,color="green",shape="box"];5042[label="vwx1912",fontsize=16,color="green",shape="box"];5043[label="vwx1922",fontsize=16,color="green",shape="box"];5044[label="vwx1912",fontsize=16,color="green",shape="box"];5045[label="vwx1922",fontsize=16,color="green",shape="box"];5046[label="vwx1912",fontsize=16,color="green",shape="box"];5047[label="vwx1922",fontsize=16,color="green",shape="box"];5048[label="vwx1912",fontsize=16,color="green",shape="box"];5049[label="vwx1922",fontsize=16,color="green",shape="box"];5050[label="vwx1912",fontsize=16,color="green",shape="box"];5051[label="vwx1922",fontsize=16,color="green",shape="box"];5052[label="vwx1912",fontsize=16,color="green",shape="box"];5053[label="vwx1922",fontsize=16,color="green",shape="box"];5054[label="vwx1912",fontsize=16,color="green",shape="box"];5055[label="vwx1922",fontsize=16,color="green",shape="box"];5056[label="vwx1912",fontsize=16,color="green",shape="box"];5057[label="vwx1922",fontsize=16,color="green",shape="box"];5058[label="vwx1912",fontsize=16,color="green",shape="box"];5059[label="vwx1922",fontsize=16,color="green",shape="box"];5060[label="vwx1912",fontsize=16,color="green",shape="box"];5061[label="vwx1922",fontsize=16,color="green",shape="box"];5062[label="vwx1912",fontsize=16,color="green",shape="box"];5063[label="vwx1922",fontsize=16,color="green",shape="box"];5064[label="vwx1912",fontsize=16,color="green",shape="box"];5065[label="vwx1922",fontsize=16,color="green",shape="box"];5066[label="Succ (Succ (primPlusNat vwx33500 vwx401000))",fontsize=16,color="green",shape="box"];5066 -> 5070[label="",style="dashed", color="green", weight=3]; 5067[label="Succ vwx33500",fontsize=16,color="green",shape="box"];5068[label="Succ vwx401000",fontsize=16,color="green",shape="box"];5069[label="Zero",fontsize=16,color="green",shape="box"];5070 -> 4847[label="",style="dashed", color="red", weight=0]; 5070[label="primPlusNat vwx33500 vwx401000",fontsize=16,color="magenta"];5070 -> 5071[label="",style="dashed", color="magenta", weight=3]; 5070 -> 5072[label="",style="dashed", color="magenta", weight=3]; 5071[label="vwx33500",fontsize=16,color="green",shape="box"];5072[label="vwx401000",fontsize=16,color="green",shape="box"];} ---------------------------------------- (14) Complex Obligation (AND) ---------------------------------------- (15) Obligation: Q DP problem: The TRS P consists of the following rules: new_primCmpNat(Succ(vwx3000), Succ(vwx4000)) -> new_primCmpNat(vwx3000, vwx4000) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (16) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_primCmpNat(Succ(vwx3000), Succ(vwx4000)) -> new_primCmpNat(vwx3000, vwx4000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (17) YES ---------------------------------------- (18) Obligation: Q DP problem: The TRS P consists of the following rules: new_primCompAux(vwx30, vwx40, vwx181, app(ty_[], beb)) -> new_compare0(vwx30, vwx40, beb) new_ltEs1(@3(vwx1910, vwx1911, vwx1912), @3(vwx1920, vwx1921, vwx1922), gb, eg, app(app(ty_Either, he), hf)) -> new_ltEs0(vwx1912, vwx1922, he, hf) new_compare23(vwx255, vwx256, vwx257, vwx258, False, app(ty_Maybe, ccf), ccg) -> new_lt(vwx255, vwx257, ccf) new_primCompAux(Right(vwx300), Right(vwx400), vwx181, app(app(ty_Either, bde), bdf)) -> new_compare21(vwx300, vwx400, new_esEs6(vwx300, vwx400, bdf), bde, bdf) new_compare21(vwx205, vwx206, False, cdh, app(app(ty_@2, ceh), cfa)) -> new_ltEs3(vwx205, vwx206, ceh, cfa) new_ltEs0(Left(vwx1910), Left(vwx1920), app(app(ty_@2, db), dc), cb) -> new_ltEs3(vwx1910, vwx1920, db, dc) new_compare22(vwx242, vwx243, vwx244, vwx245, vwx246, vwx247, False, bgd, app(ty_[], bhd), bgf) -> new_lt2(vwx243, vwx246, bhd) new_ltEs0(Right(vwx1910), Right(vwx1920), dd, app(app(app(ty_@3, dh), ea), eb)) -> new_ltEs1(vwx1910, vwx1920, dh, ea, eb) new_ltEs0(Left(vwx1910), Left(vwx1920), app(app(app(ty_@3, ce), cf), cg), cb) -> new_ltEs1(vwx1910, vwx1920, ce, cf, cg) new_compare21(vwx205, vwx206, False, cdh, app(ty_Maybe, cea)) -> new_ltEs(vwx205, vwx206, cea) new_compare20(vwx198, vwx199, False, app(ty_Maybe, bee), bef) -> new_ltEs(vwx198, vwx199, bee) new_compare2(Left(vwx1910), Left(vwx1920), False, app(app(ty_Either, app(ty_Maybe, ca)), cb)) -> new_ltEs(vwx1910, vwx1920, ca) new_ltEs1(@3(vwx1910, vwx1911, vwx1912), @3(vwx1920, vwx1921, vwx1922), app(app(ty_Either, fa), fb), eg, eh) -> new_lt0(vwx1910, vwx1920, fa, fb) new_ltEs1(@3(vwx1910, vwx1911, vwx1912), @3(vwx1920, vwx1921, vwx1922), gb, app(app(app(ty_@3, gf), gg), gh), eh) -> new_lt1(vwx1911, vwx1921, gf, gg, gh) new_compare2(Just(vwx1910), Just(vwx1920), False, app(ty_Maybe, app(ty_[], bf))) -> new_ltEs2(vwx1910, vwx1920, bf) new_compare22(vwx242, vwx243, vwx244, vwx245, vwx246, vwx247, False, bgd, bhg, app(ty_[], caf)) -> new_ltEs2(vwx244, vwx247, caf) new_compare22(vwx242, vwx243, vwx244, vwx245, vwx246, vwx247, False, bgd, bhg, app(app(app(ty_@3, cac), cad), cae)) -> new_ltEs1(vwx244, vwx247, cac, cad, cae) new_compare2(Right(vwx1910), Right(vwx1920), False, app(app(ty_Either, dd), app(app(ty_@2, ed), ee))) -> new_ltEs3(vwx1910, vwx1920, ed, ee) new_ltEs3(@2(vwx1910, vwx1911), @2(vwx1920, vwx1921), bcb, app(app(ty_@2, bdb), bdc)) -> new_ltEs3(vwx1911, vwx1921, bdb, bdc) new_ltEs1(@3(vwx1910, vwx1911, vwx1912), @3(vwx1920, vwx1921, vwx1922), gb, app(ty_[], ha), eh) -> new_lt2(vwx1911, vwx1921, ha) new_ltEs0(Left(vwx1910), Left(vwx1920), app(ty_[], da), cb) -> new_ltEs2(vwx1910, vwx1920, da) new_compare23(vwx255, vwx256, vwx257, vwx258, False, cbd, app(ty_[], ccc)) -> new_ltEs2(vwx256, vwx258, ccc) new_compare2(@3(vwx1910, vwx1911, vwx1912), @3(vwx1920, vwx1921, vwx1922), False, app(app(app(ty_@3, app(app(ty_Either, fa), fb)), eg), eh)) -> new_lt0(vwx1910, vwx1920, fa, fb) new_ltEs3(@2(vwx1910, vwx1911), @2(vwx1920, vwx1921), app(app(ty_@2, bbh), bca), bba) -> new_lt3(vwx1910, vwx1920, bbh, bca) new_compare(Just(vwx300), Just(vwx400), baf) -> new_compare2(vwx300, vwx400, new_esEs4(vwx300, vwx400, baf), baf) new_compare2(@2(vwx1910, vwx1911), @2(vwx1920, vwx1921), False, app(app(ty_@2, app(app(app(ty_@3, bbd), bbe), bbf)), bba)) -> new_lt1(vwx1910, vwx1920, bbd, bbe, bbf) new_compare2(Left(vwx1910), Left(vwx1920), False, app(app(ty_Either, app(app(ty_Either, cc), cd)), cb)) -> new_ltEs0(vwx1910, vwx1920, cc, cd) new_compare2(Left(vwx1910), Left(vwx1920), False, app(app(ty_Either, app(app(ty_@2, db), dc)), cb)) -> new_ltEs3(vwx1910, vwx1920, db, dc) new_compare2(@3(vwx1910, vwx1911, vwx1912), @3(vwx1920, vwx1921, vwx1922), False, app(app(app(ty_@3, gb), app(ty_Maybe, gc)), eh)) -> new_lt(vwx1911, vwx1921, gc) new_ltEs1(@3(vwx1910, vwx1911, vwx1912), @3(vwx1920, vwx1921, vwx1922), gb, eg, app(ty_[], bab)) -> new_ltEs2(vwx1912, vwx1922, bab) new_ltEs3(@2(vwx1910, vwx1911), @2(vwx1920, vwx1921), bcb, app(app(app(ty_@3, bcf), bcg), bch)) -> new_ltEs1(vwx1911, vwx1921, bcf, bcg, bch) new_compare23(vwx255, vwx256, vwx257, vwx258, False, app(ty_[], cde), ccg) -> new_lt2(vwx255, vwx257, cde) new_ltEs1(@3(vwx1910, vwx1911, vwx1912), @3(vwx1920, vwx1921, vwx1922), gb, app(ty_Maybe, gc), eh) -> new_lt(vwx1911, vwx1921, gc) new_compare22(vwx242, vwx243, vwx244, vwx245, vwx246, vwx247, False, bgd, app(app(ty_@2, bhe), bhf), bgf) -> new_lt3(vwx243, vwx246, bhe, bhf) new_compare23(vwx255, vwx256, vwx257, vwx258, False, cbd, app(app(ty_Either, cbf), cbg)) -> new_ltEs0(vwx256, vwx258, cbf, cbg) new_ltEs3(@2(vwx1910, vwx1911), @2(vwx1920, vwx1921), app(ty_Maybe, bah), bba) -> new_lt(vwx1910, vwx1920, bah) new_lt3(vwx242, vwx245, cbb, cbc) -> new_compare5(vwx242, vwx245, cbb, cbc) new_compare21(vwx205, vwx206, False, cdh, app(app(app(ty_@3, ced), cee), cef)) -> new_ltEs1(vwx205, vwx206, ced, cee, cef) new_compare20(vwx198, vwx199, False, app(app(app(ty_@3, bfa), bfb), bfc), bef) -> new_ltEs1(vwx198, vwx199, bfa, bfb, bfc) new_compare23(vwx255, vwx256, vwx257, vwx258, False, cbd, app(ty_Maybe, cbe)) -> new_ltEs(vwx256, vwx258, cbe) new_ltEs(Just(vwx1910), Just(vwx1920), app(ty_[], bf)) -> new_ltEs2(vwx1910, vwx1920, bf) new_compare22(vwx242, vwx243, vwx244, vwx245, vwx246, vwx247, False, bgd, app(app(app(ty_@3, bha), bhb), bhc), bgf) -> new_lt1(vwx243, vwx246, bha, bhb, bhc) new_compare22(vwx242, vwx243, vwx244, vwx245, vwx246, vwx247, False, app(ty_Maybe, bae), bhg, bgf) -> new_compare(vwx242, vwx245, bae) new_compare2(Right(vwx1910), Right(vwx1920), False, app(app(ty_Either, dd), app(ty_Maybe, de))) -> new_ltEs(vwx1910, vwx1920, de) new_ltEs0(Right(vwx1910), Right(vwx1920), dd, app(ty_[], ec)) -> new_ltEs2(vwx1910, vwx1920, ec) new_compare2(Right(vwx1910), Right(vwx1920), False, app(app(ty_Either, dd), app(app(app(ty_@3, dh), ea), eb))) -> new_ltEs1(vwx1910, vwx1920, dh, ea, eb) new_ltEs(Just(vwx1910), Just(vwx1920), app(app(app(ty_@3, bc), bd), be)) -> new_ltEs1(vwx1910, vwx1920, bc, bd, be) new_compare20(vwx198, vwx199, False, app(app(ty_@2, bfe), bff), bef) -> new_ltEs3(vwx198, vwx199, bfe, bff) new_compare2(@3(vwx1910, vwx1911, vwx1912), @3(vwx1920, vwx1921, vwx1922), False, app(app(app(ty_@3, gb), eg), app(app(app(ty_@3, hg), hh), baa))) -> new_ltEs1(vwx1912, vwx1922, hg, hh, baa) new_compare22(vwx242, vwx243, vwx244, vwx245, vwx246, vwx247, False, bgd, bhg, app(app(ty_Either, caa), cab)) -> new_ltEs0(vwx244, vwx247, caa, cab) new_ltEs0(Right(vwx1910), Right(vwx1920), dd, app(app(ty_@2, ed), ee)) -> new_ltEs3(vwx1910, vwx1920, ed, ee) new_compare2(Left(vwx1910), Left(vwx1920), False, app(app(ty_Either, app(ty_[], da)), cb)) -> new_ltEs2(vwx1910, vwx1920, da) new_compare2(@2(vwx1910, vwx1911), @2(vwx1920, vwx1921), False, app(app(ty_@2, app(app(ty_Either, bbb), bbc)), bba)) -> new_lt0(vwx1910, vwx1920, bbb, bbc) new_ltEs3(@2(vwx1910, vwx1911), @2(vwx1920, vwx1921), bcb, app(ty_[], bda)) -> new_ltEs2(vwx1911, vwx1921, bda) new_compare2(@2(vwx1910, vwx1911), @2(vwx1920, vwx1921), False, app(app(ty_@2, app(app(ty_@2, bbh), bca)), bba)) -> new_lt3(vwx1910, vwx1920, bbh, bca) new_compare2(@2(vwx1910, vwx1911), @2(vwx1920, vwx1921), False, app(app(ty_@2, bcb), app(app(ty_@2, bdb), bdc))) -> new_ltEs3(vwx1911, vwx1921, bdb, bdc) new_lt1(vwx242, vwx245, bga, bgb, bgc) -> new_compare4(vwx242, vwx245, bga, bgb, bgc) new_ltEs1(@3(vwx1910, vwx1911, vwx1912), @3(vwx1920, vwx1921, vwx1922), app(app(app(ty_@3, fc), fd), ff), eg, eh) -> new_lt1(vwx1910, vwx1920, fc, fd, ff) new_ltEs1(@3(vwx1910, vwx1911, vwx1912), @3(vwx1920, vwx1921, vwx1922), gb, app(app(ty_Either, gd), ge), eh) -> new_lt0(vwx1911, vwx1921, gd, ge) new_compare0(:(vwx30, vwx31), :(vwx40, vwx41), bdd) -> new_compare0(vwx31, vwx41, bdd) new_lt2(vwx242, vwx245, cba) -> new_compare0(vwx242, vwx245, cba) new_primCompAux(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), vwx181, app(app(app(ty_@3, bdg), bdh), bea)) -> new_compare22(vwx300, vwx301, vwx302, vwx400, vwx401, vwx402, new_asAs(new_esEs7(vwx300, vwx400, bdg), new_asAs(new_esEs8(vwx301, vwx401, bdh), new_esEs9(vwx302, vwx402, bea))), bdg, bdh, bea) new_ltEs3(@2(vwx1910, vwx1911), @2(vwx1920, vwx1921), app(app(app(ty_@3, bbd), bbe), bbf), bba) -> new_lt1(vwx1910, vwx1920, bbd, bbe, bbf) new_ltEs3(@2(vwx1910, vwx1911), @2(vwx1920, vwx1921), app(ty_[], bbg), bba) -> new_lt2(vwx1910, vwx1920, bbg) new_compare23(vwx255, vwx256, vwx257, vwx258, False, app(app(ty_@2, cdf), cdg), ccg) -> new_lt3(vwx255, vwx257, cdf, cdg) new_compare22(vwx242, vwx243, vwx244, vwx245, vwx246, vwx247, False, bgd, bhg, app(ty_Maybe, bhh)) -> new_ltEs(vwx244, vwx247, bhh) new_compare23(vwx255, vwx256, vwx257, vwx258, False, app(app(app(ty_@3, cdb), cdc), cdd), ccg) -> new_lt1(vwx255, vwx257, cdb, cdc, cdd) new_compare2(@3(vwx1910, vwx1911, vwx1912), @3(vwx1920, vwx1921, vwx1922), False, app(app(app(ty_@3, app(ty_[], fg)), eg), eh)) -> new_lt2(vwx1910, vwx1920, fg) new_compare2(@3(vwx1910, vwx1911, vwx1912), @3(vwx1920, vwx1921, vwx1922), False, app(app(app(ty_@3, gb), eg), app(ty_[], bab))) -> new_ltEs2(vwx1912, vwx1922, bab) new_ltEs3(@2(vwx1910, vwx1911), @2(vwx1920, vwx1921), bcb, app(ty_Maybe, bcc)) -> new_ltEs(vwx1911, vwx1921, bcc) new_compare22(vwx242, vwx243, vwx244, vwx245, vwx246, vwx247, False, app(app(app(ty_@3, bga), bgb), bgc), bhg, bgf) -> new_compare4(vwx242, vwx245, bga, bgb, bgc) new_compare2(@3(vwx1910, vwx1911, vwx1912), @3(vwx1920, vwx1921, vwx1922), False, app(app(app(ty_@3, app(app(app(ty_@3, fc), fd), ff)), eg), eh)) -> new_lt1(vwx1910, vwx1920, fc, fd, ff) new_ltEs3(@2(vwx1910, vwx1911), @2(vwx1920, vwx1921), bcb, app(app(ty_Either, bcd), bce)) -> new_ltEs0(vwx1911, vwx1921, bcd, bce) new_compare23(vwx255, vwx256, vwx257, vwx258, False, cbd, app(app(app(ty_@3, cbh), cca), ccb)) -> new_ltEs1(vwx256, vwx258, cbh, cca, ccb) new_primCompAux(Just(vwx300), Just(vwx400), vwx181, app(ty_Maybe, baf)) -> new_compare2(vwx300, vwx400, new_esEs4(vwx300, vwx400, baf), baf) new_ltEs1(@3(vwx1910, vwx1911, vwx1912), @3(vwx1920, vwx1921, vwx1922), gb, app(app(ty_@2, hb), hc), eh) -> new_lt3(vwx1911, vwx1921, hb, hc) new_compare2(Left(vwx1910), Left(vwx1920), False, app(app(ty_Either, app(app(app(ty_@3, ce), cf), cg)), cb)) -> new_ltEs1(vwx1910, vwx1920, ce, cf, cg) new_compare2(@3(vwx1910, vwx1911, vwx1912), @3(vwx1920, vwx1921, vwx1922), False, app(app(app(ty_@3, app(app(ty_@2, fh), ga)), eg), eh)) -> new_lt3(vwx1910, vwx1920, fh, ga) new_compare4(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bdg, bdh, bea) -> new_compare22(vwx300, vwx301, vwx302, vwx400, vwx401, vwx402, new_asAs(new_esEs7(vwx300, vwx400, bdg), new_asAs(new_esEs8(vwx301, vwx401, bdh), new_esEs9(vwx302, vwx402, bea))), bdg, bdh, bea) new_compare2(vwx191, vwx192, False, app(ty_[], bag)) -> new_compare0(vwx191, vwx192, bag) new_ltEs1(@3(vwx1910, vwx1911, vwx1912), @3(vwx1920, vwx1921, vwx1922), gb, eg, app(app(ty_@2, bac), bad)) -> new_ltEs3(vwx1912, vwx1922, bac, bad) new_compare22(vwx242, vwx243, vwx244, vwx245, vwx246, vwx247, False, bgd, bhg, app(app(ty_@2, cag), cah)) -> new_ltEs3(vwx244, vwx247, cag, cah) new_ltEs0(Right(vwx1910), Right(vwx1920), dd, app(app(ty_Either, df), dg)) -> new_ltEs0(vwx1910, vwx1920, df, dg) new_compare3(Left(vwx300), Left(vwx400), bde, bdf) -> new_compare20(vwx300, vwx400, new_esEs5(vwx300, vwx400, bde), bde, bdf) new_ltEs3(@2(vwx1910, vwx1911), @2(vwx1920, vwx1921), app(app(ty_Either, bbb), bbc), bba) -> new_lt0(vwx1910, vwx1920, bbb, bbc) new_compare2(@3(vwx1910, vwx1911, vwx1912), @3(vwx1920, vwx1921, vwx1922), False, app(app(app(ty_@3, gb), eg), app(app(ty_Either, he), hf))) -> new_ltEs0(vwx1912, vwx1922, he, hf) new_compare2(@2(vwx1910, vwx1911), @2(vwx1920, vwx1921), False, app(app(ty_@2, bcb), app(app(app(ty_@3, bcf), bcg), bch))) -> new_ltEs1(vwx1911, vwx1921, bcf, bcg, bch) new_compare21(vwx205, vwx206, False, cdh, app(app(ty_Either, ceb), cec)) -> new_ltEs0(vwx205, vwx206, ceb, cec) new_compare0(:(vwx30, vwx31), :(vwx40, vwx41), bdd) -> new_primCompAux(vwx30, vwx40, new_compare1(vwx31, vwx41, bdd), bdd) new_ltEs0(Left(vwx1910), Left(vwx1920), app(app(ty_Either, cc), cd), cb) -> new_ltEs0(vwx1910, vwx1920, cc, cd) new_compare2(@2(vwx1910, vwx1911), @2(vwx1920, vwx1921), False, app(app(ty_@2, bcb), app(app(ty_Either, bcd), bce))) -> new_ltEs0(vwx1911, vwx1921, bcd, bce) new_primCompAux(@2(vwx300, vwx301), @2(vwx400, vwx401), vwx181, app(app(ty_@2, bec), bed)) -> new_compare23(vwx300, vwx301, vwx400, vwx401, new_asAs(new_esEs10(vwx300, vwx400, bec), new_esEs11(vwx301, vwx401, bed)), bec, bed) new_primCompAux(Left(vwx300), Left(vwx400), vwx181, app(app(ty_Either, bde), bdf)) -> new_compare20(vwx300, vwx400, new_esEs5(vwx300, vwx400, bde), bde, bdf) new_lt(vwx242, vwx245, bae) -> new_compare(vwx242, vwx245, bae) new_compare2(Just(vwx1910), Just(vwx1920), False, app(ty_Maybe, app(app(ty_Either, ba), bb))) -> new_ltEs0(vwx1910, vwx1920, ba, bb) new_compare2(@3(vwx1910, vwx1911, vwx1912), @3(vwx1920, vwx1921, vwx1922), False, app(app(app(ty_@3, gb), app(app(app(ty_@3, gf), gg), gh)), eh)) -> new_lt1(vwx1911, vwx1921, gf, gg, gh) new_compare2(@2(vwx1910, vwx1911), @2(vwx1920, vwx1921), False, app(app(ty_@2, bcb), app(ty_[], bda))) -> new_ltEs2(vwx1911, vwx1921, bda) new_ltEs(Just(vwx1910), Just(vwx1920), app(app(ty_@2, bg), bh)) -> new_ltEs3(vwx1910, vwx1920, bg, bh) new_compare2(Right(vwx1910), Right(vwx1920), False, app(app(ty_Either, dd), app(app(ty_Either, df), dg))) -> new_ltEs0(vwx1910, vwx1920, df, dg) new_ltEs(Just(vwx1910), Just(vwx1920), app(app(ty_Either, ba), bb)) -> new_ltEs0(vwx1910, vwx1920, ba, bb) new_ltEs2(vwx191, vwx192, bag) -> new_compare0(vwx191, vwx192, bag) new_ltEs1(@3(vwx1910, vwx1911, vwx1912), @3(vwx1920, vwx1921, vwx1922), app(ty_Maybe, ef), eg, eh) -> new_lt(vwx1910, vwx1920, ef) new_compare22(vwx242, vwx243, vwx244, vwx245, vwx246, vwx247, False, app(app(ty_@2, cbb), cbc), bhg, bgf) -> new_compare5(vwx242, vwx245, cbb, cbc) new_compare3(Right(vwx300), Right(vwx400), bde, bdf) -> new_compare21(vwx300, vwx400, new_esEs6(vwx300, vwx400, bdf), bde, bdf) new_compare2(Just(vwx1910), Just(vwx1920), False, app(ty_Maybe, app(app(ty_@2, bg), bh))) -> new_ltEs3(vwx1910, vwx1920, bg, bh) new_compare22(vwx242, vwx243, vwx244, vwx245, vwx246, vwx247, False, app(ty_[], cba), bhg, bgf) -> new_compare0(vwx242, vwx245, cba) new_ltEs1(@3(vwx1910, vwx1911, vwx1912), @3(vwx1920, vwx1921, vwx1922), gb, eg, app(app(app(ty_@3, hg), hh), baa)) -> new_ltEs1(vwx1912, vwx1922, hg, hh, baa) new_compare2(@2(vwx1910, vwx1911), @2(vwx1920, vwx1921), False, app(app(ty_@2, app(ty_Maybe, bah)), bba)) -> new_lt(vwx1910, vwx1920, bah) new_compare21(vwx205, vwx206, False, cdh, app(ty_[], ceg)) -> new_ltEs2(vwx205, vwx206, ceg) new_compare20(vwx198, vwx199, False, app(app(ty_Either, beg), beh), bef) -> new_ltEs0(vwx198, vwx199, beg, beh) new_ltEs0(Right(vwx1910), Right(vwx1920), dd, app(ty_Maybe, de)) -> new_ltEs(vwx1910, vwx1920, de) new_compare2(@2(vwx1910, vwx1911), @2(vwx1920, vwx1921), False, app(app(ty_@2, bcb), app(ty_Maybe, bcc))) -> new_ltEs(vwx1911, vwx1921, bcc) new_compare5(@2(vwx300, vwx301), @2(vwx400, vwx401), bec, bed) -> new_compare23(vwx300, vwx301, vwx400, vwx401, new_asAs(new_esEs10(vwx300, vwx400, bec), new_esEs11(vwx301, vwx401, bed)), bec, bed) new_ltEs1(@3(vwx1910, vwx1911, vwx1912), @3(vwx1920, vwx1921, vwx1922), app(app(ty_@2, fh), ga), eg, eh) -> new_lt3(vwx1910, vwx1920, fh, ga) new_compare2(@3(vwx1910, vwx1911, vwx1912), @3(vwx1920, vwx1921, vwx1922), False, app(app(app(ty_@3, gb), eg), app(ty_Maybe, hd))) -> new_ltEs(vwx1912, vwx1922, hd) new_ltEs(Just(vwx1910), Just(vwx1920), app(ty_Maybe, h)) -> new_ltEs(vwx1910, vwx1920, h) new_compare20(vwx198, vwx199, False, app(ty_[], bfd), bef) -> new_ltEs2(vwx198, vwx199, bfd) new_lt0(vwx242, vwx245, bfg, bfh) -> new_compare3(vwx242, vwx245, bfg, bfh) new_compare2(@3(vwx1910, vwx1911, vwx1912), @3(vwx1920, vwx1921, vwx1922), False, app(app(app(ty_@3, gb), app(app(ty_Either, gd), ge)), eh)) -> new_lt0(vwx1911, vwx1921, gd, ge) new_compare2(@3(vwx1910, vwx1911, vwx1912), @3(vwx1920, vwx1921, vwx1922), False, app(app(app(ty_@3, app(ty_Maybe, ef)), eg), eh)) -> new_lt(vwx1910, vwx1920, ef) new_compare22(vwx242, vwx243, vwx244, vwx245, vwx246, vwx247, False, bgd, app(app(ty_Either, bgg), bgh), bgf) -> new_lt0(vwx243, vwx246, bgg, bgh) new_compare22(vwx242, vwx243, vwx244, vwx245, vwx246, vwx247, False, app(app(ty_Either, bfg), bfh), bhg, bgf) -> new_compare3(vwx242, vwx245, bfg, bfh) new_compare2(Just(vwx1910), Just(vwx1920), False, app(ty_Maybe, app(app(app(ty_@3, bc), bd), be))) -> new_ltEs1(vwx1910, vwx1920, bc, bd, be) new_ltEs1(@3(vwx1910, vwx1911, vwx1912), @3(vwx1920, vwx1921, vwx1922), app(ty_[], fg), eg, eh) -> new_lt2(vwx1910, vwx1920, fg) new_compare2(Just(vwx1910), Just(vwx1920), False, app(ty_Maybe, app(ty_Maybe, h))) -> new_ltEs(vwx1910, vwx1920, h) new_compare2(@3(vwx1910, vwx1911, vwx1912), @3(vwx1920, vwx1921, vwx1922), False, app(app(app(ty_@3, gb), app(app(ty_@2, hb), hc)), eh)) -> new_lt3(vwx1911, vwx1921, hb, hc) new_compare2(@3(vwx1910, vwx1911, vwx1912), @3(vwx1920, vwx1921, vwx1922), False, app(app(app(ty_@3, gb), eg), app(app(ty_@2, bac), bad))) -> new_ltEs3(vwx1912, vwx1922, bac, bad) new_compare2(@2(vwx1910, vwx1911), @2(vwx1920, vwx1921), False, app(app(ty_@2, app(ty_[], bbg)), bba)) -> new_lt2(vwx1910, vwx1920, bbg) new_compare23(vwx255, vwx256, vwx257, vwx258, False, cbd, app(app(ty_@2, ccd), cce)) -> new_ltEs3(vwx256, vwx258, ccd, cce) new_ltEs0(Left(vwx1910), Left(vwx1920), app(ty_Maybe, ca), cb) -> new_ltEs(vwx1910, vwx1920, ca) new_compare2(@3(vwx1910, vwx1911, vwx1912), @3(vwx1920, vwx1921, vwx1922), False, app(app(app(ty_@3, gb), app(ty_[], ha)), eh)) -> new_lt2(vwx1911, vwx1921, ha) new_compare22(vwx242, vwx243, vwx244, vwx245, vwx246, vwx247, False, bgd, app(ty_Maybe, bge), bgf) -> new_lt(vwx243, vwx246, bge) new_compare2(Right(vwx1910), Right(vwx1920), False, app(app(ty_Either, dd), app(ty_[], ec))) -> new_ltEs2(vwx1910, vwx1920, ec) new_ltEs1(@3(vwx1910, vwx1911, vwx1912), @3(vwx1920, vwx1921, vwx1922), gb, eg, app(ty_Maybe, hd)) -> new_ltEs(vwx1912, vwx1922, hd) new_compare23(vwx255, vwx256, vwx257, vwx258, False, app(app(ty_Either, cch), cda), ccg) -> new_lt0(vwx255, vwx257, cch, cda) The TRS R consists of the following rules: new_compare19(:%(vwx300, vwx301), :%(vwx400, vwx401), ty_Integer) -> new_compare7(new_sr0(vwx300, vwx401), new_sr0(vwx400, vwx301)) new_esEs27(vwx1910, vwx1920, ty_Double) -> new_esEs15(vwx1910, vwx1920) new_esEs37(vwx1910, vwx1920, app(app(app(ty_@3, bbd), bbe), bbf)) -> new_esEs26(vwx1910, vwx1920, bbd, bbe, bbf) new_esEs38(vwx3000, vwx4000, app(app(ty_Either, fea), feb)) -> new_esEs23(vwx3000, vwx4000, fea, feb) new_lt9(vwx242, vwx245) -> new_esEs14(new_compare11(vwx242, vwx245), LT) new_esEs14(GT, GT) -> True new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primCmpInt(Neg(Succ(vwx3000)), Pos(vwx400)) -> LT new_lt22(vwx255, vwx257, app(ty_Maybe, ccf)) -> new_lt13(vwx255, vwx257, ccf) new_esEs29(vwx242, vwx245, app(ty_[], cba)) -> new_esEs12(vwx242, vwx245, cba) new_primPlusNat0(Zero, Zero) -> Zero new_esEs24(@0, @0) -> True new_compare9(EQ, LT) -> GT new_pePe(True, vwx334) -> True new_compare29(vwx30, vwx40, ty_Double) -> new_compare17(vwx30, vwx40) new_compare9(GT, LT) -> GT new_ltEs10(False, False) -> True new_esEs27(vwx1910, vwx1920, ty_Float) -> new_esEs18(vwx1910, vwx1920) new_ltEs23(vwx205, vwx206, ty_Bool) -> new_ltEs10(vwx205, vwx206) new_esEs33(vwx3002, vwx4002, ty_Bool) -> new_esEs20(vwx3002, vwx4002) new_ltEs11(Left(vwx1910), Left(vwx1920), ty_@0, cb) -> new_ltEs17(vwx1910, vwx1920) new_ltEs23(vwx205, vwx206, ty_Integer) -> new_ltEs9(vwx205, vwx206) new_esEs30(vwx243, vwx246, ty_Int) -> new_esEs19(vwx243, vwx246) new_ltEs7(vwx191, vwx192) -> new_fsEs(new_compare17(vwx191, vwx192)) new_esEs5(vwx300, vwx400, app(ty_Maybe, fca)) -> new_esEs21(vwx300, vwx400, fca) new_ltEs23(vwx205, vwx206, app(ty_Maybe, cea)) -> new_ltEs6(vwx205, vwx206, cea) new_esEs13(vwx3000, vwx4000, ty_Ordering) -> new_esEs14(vwx3000, vwx4000) new_esEs6(vwx300, vwx400, ty_Bool) -> new_esEs20(vwx300, vwx400) new_esEs27(vwx1910, vwx1920, ty_Bool) -> new_esEs20(vwx1910, vwx1920) new_compare29(vwx30, vwx40, ty_Int) -> new_compare28(vwx30, vwx40) new_esEs32(vwx3001, vwx4001, app(ty_Maybe, eeh)) -> new_esEs21(vwx3001, vwx4001, eeh) new_ltEs21(vwx256, vwx258, ty_Float) -> new_ltEs8(vwx256, vwx258) new_esEs8(vwx301, vwx401, app(ty_[], ead)) -> new_esEs12(vwx301, vwx401, ead) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_esEs37(vwx1910, vwx1920, ty_Char) -> new_esEs25(vwx1910, vwx1920) new_esEs12(:(vwx3000, vwx3001), [], cfb) -> False new_esEs12([], :(vwx4000, vwx4001), cfb) -> False new_compare110(vwx271, vwx272, False, eha) -> GT new_compare14(vwx278, vwx279, True, ehd, ehe) -> LT new_compare24(vwx255, vwx256, vwx257, vwx258, True, cbd, ccg) -> EQ new_lt23(vwx1910, vwx1920, app(app(ty_Either, bbb), bbc)) -> new_lt14(vwx1910, vwx1920, bbb, bbc) new_primCmpInt(Pos(Zero), Neg(Succ(vwx4000))) -> GT new_esEs28(vwx1911, vwx1921, ty_Ordering) -> new_esEs14(vwx1911, vwx1921) new_esEs33(vwx3002, vwx4002, ty_Integer) -> new_esEs16(vwx3002, vwx4002) new_esEs39(vwx3001, vwx4001, ty_Int) -> new_esEs19(vwx3001, vwx4001) new_compare17(Double(vwx300, Pos(vwx3010)), Double(vwx400, Neg(vwx4010))) -> new_compare28(new_sr(vwx300, Pos(vwx4010)), new_sr(Neg(vwx3010), vwx400)) new_compare17(Double(vwx300, Neg(vwx3010)), Double(vwx400, Pos(vwx4010))) -> new_compare28(new_sr(vwx300, Neg(vwx4010)), new_sr(Pos(vwx3010), vwx400)) new_compare111(vwx303, vwx304, vwx305, vwx306, False, vwx308, ehh, faa) -> new_compare112(vwx303, vwx304, vwx305, vwx306, vwx308, ehh, faa) new_ltEs22(vwx1911, vwx1921, ty_Double) -> new_ltEs7(vwx1911, vwx1921) new_esEs33(vwx3002, vwx4002, ty_Float) -> new_esEs18(vwx3002, vwx4002) new_esEs13(vwx3000, vwx4000, app(app(ty_Either, cfh), cga)) -> new_esEs23(vwx3000, vwx4000, cfh, cga) new_ltEs19(vwx244, vwx247, app(ty_Ratio, dgg)) -> new_ltEs16(vwx244, vwx247, dgg) new_ltEs21(vwx256, vwx258, app(app(app(ty_@3, cbh), cca), ccb)) -> new_ltEs13(vwx256, vwx258, cbh, cca, ccb) new_esEs6(vwx300, vwx400, ty_Float) -> new_esEs18(vwx300, vwx400) new_lt6(vwx1910, vwx1920, ty_Bool) -> new_lt12(vwx1910, vwx1920) new_esEs32(vwx3001, vwx4001, ty_@0) -> new_esEs24(vwx3001, vwx4001) new_primCmpInt(Neg(Succ(vwx3000)), Neg(vwx400)) -> new_primCmpNat0(vwx400, Succ(vwx3000)) new_compare113(vwx285, vwx286, False, fga, fgb) -> GT new_esEs14(EQ, EQ) -> True new_esEs6(vwx300, vwx400, ty_Integer) -> new_esEs16(vwx300, vwx400) new_lt6(vwx1910, vwx1920, app(app(ty_Either, fa), fb)) -> new_lt14(vwx1910, vwx1920, fa, fb) new_esEs27(vwx1910, vwx1920, ty_Integer) -> new_esEs16(vwx1910, vwx1920) new_compare16(vwx320, vwx321, vwx322, vwx323, vwx324, vwx325, False, ech, eda, edb) -> GT new_lt21(vwx242, vwx245, app(app(app(ty_@3, bga), bgb), bgc)) -> new_lt16(vwx242, vwx245, bga, bgb, bgc) new_esEs37(vwx1910, vwx1920, app(ty_Ratio, fch)) -> new_esEs22(vwx1910, vwx1920, fch) new_esEs5(vwx300, vwx400, ty_@0) -> new_esEs24(vwx300, vwx400) new_primMulNat0(Succ(vwx30000), Succ(vwx40100)) -> new_primPlusNat1(new_primMulNat0(vwx30000, Succ(vwx40100)), vwx40100) new_lt20(vwx243, vwx246, ty_Ordering) -> new_lt10(vwx243, vwx246) new_esEs7(vwx300, vwx400, ty_Ordering) -> new_esEs14(vwx300, vwx400) new_esEs34(vwx255, vwx257, ty_Ordering) -> new_esEs14(vwx255, vwx257) new_lt7(vwx1911, vwx1921, ty_Double) -> new_lt8(vwx1911, vwx1921) new_ltEs24(vwx191, vwx192, ty_@0) -> new_ltEs17(vwx191, vwx192) new_lt6(vwx1910, vwx1920, app(app(ty_@2, fh), ga)) -> new_lt18(vwx1910, vwx1920, fh, ga) new_ltEs20(vwx198, vwx199, ty_Char) -> new_ltEs5(vwx198, vwx199) new_esEs6(vwx300, vwx400, app(app(ty_@2, cgf), cgg)) -> new_esEs17(vwx300, vwx400, cgf, cgg) new_primCompAux0(vwx185, GT) -> GT new_ltEs22(vwx1911, vwx1921, app(ty_[], bda)) -> new_ltEs14(vwx1911, vwx1921, bda) new_esEs37(vwx1910, vwx1920, ty_Double) -> new_esEs15(vwx1910, vwx1920) new_esEs11(vwx301, vwx401, ty_@0) -> new_esEs24(vwx301, vwx401) new_primEqInt(Pos(Succ(vwx30000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(vwx40000))) -> False new_esEs7(vwx300, vwx400, ty_Int) -> new_esEs19(vwx300, vwx400) new_esEs13(vwx3000, vwx4000, app(app(ty_@2, cfd), cfe)) -> new_esEs17(vwx3000, vwx4000, cfd, cfe) new_compare29(vwx30, vwx40, app(app(ty_@2, bec), bed)) -> new_compare10(vwx30, vwx40, bec, bed) new_ltEs4(GT, EQ) -> False new_lt6(vwx1910, vwx1920, ty_Char) -> new_lt11(vwx1910, vwx1920) new_compare210(vwx205, vwx206, True, cdh, fdb) -> EQ new_ltEs19(vwx244, vwx247, ty_Int) -> new_ltEs12(vwx244, vwx247) new_ltEs6(Just(vwx1910), Just(vwx1920), ty_@0) -> new_ltEs17(vwx1910, vwx1920) new_lt23(vwx1910, vwx1920, ty_Float) -> new_lt9(vwx1910, vwx1920) new_ltEs18(vwx1912, vwx1922, ty_@0) -> new_ltEs17(vwx1912, vwx1922) new_ltEs11(Right(vwx1910), Right(vwx1920), dd, ty_Float) -> new_ltEs8(vwx1910, vwx1920) new_compare1(:(vwx30, vwx31), [], bdd) -> GT new_lt21(vwx242, vwx245, ty_Integer) -> new_lt4(vwx242, vwx245) new_lt16(vwx242, vwx245, bga, bgb, bgc) -> new_esEs14(new_compare15(vwx242, vwx245, bga, bgb, bgc), LT) new_primEqNat0(Succ(vwx30000), Succ(vwx40000)) -> new_primEqNat0(vwx30000, vwx40000) new_esEs37(vwx1910, vwx1920, ty_Bool) -> new_esEs20(vwx1910, vwx1920) new_primCompAux0(vwx185, LT) -> LT new_ltEs19(vwx244, vwx247, ty_Char) -> new_ltEs5(vwx244, vwx247) new_lt21(vwx242, vwx245, ty_Int) -> new_lt15(vwx242, vwx245) new_not(True) -> False new_esEs28(vwx1911, vwx1921, app(app(ty_@2, hb), hc)) -> new_esEs17(vwx1911, vwx1921, hb, hc) new_primCmpNat0(Zero, Zero) -> EQ new_esEs35(vwx3000, vwx4000, ty_Int) -> new_esEs19(vwx3000, vwx4000) new_esEs6(vwx300, vwx400, app(app(app(ty_@3, chd), che), chf)) -> new_esEs26(vwx300, vwx400, chd, che, chf) new_esEs37(vwx1910, vwx1920, ty_Integer) -> new_esEs16(vwx1910, vwx1920) new_esEs4(vwx300, vwx400, app(ty_[], cfb)) -> new_esEs12(vwx300, vwx400, cfb) new_esEs5(vwx300, vwx400, app(app(app(ty_@3, fce), fcf), fcg)) -> new_esEs26(vwx300, vwx400, fce, fcf, fcg) new_esEs6(vwx300, vwx400, ty_Char) -> new_esEs25(vwx300, vwx400) new_esEs21(Just(vwx3000), Just(vwx4000), ty_@0) -> new_esEs24(vwx3000, vwx4000) new_esEs23(Left(vwx3000), Left(vwx4000), ty_@0, dae) -> new_esEs24(vwx3000, vwx4000) new_compare30(True, True) -> EQ new_ltEs20(vwx198, vwx199, ty_Int) -> new_ltEs12(vwx198, vwx199) new_esEs34(vwx255, vwx257, app(app(ty_Either, cch), cda)) -> new_esEs23(vwx255, vwx257, cch, cda) new_ltEs19(vwx244, vwx247, ty_Float) -> new_ltEs8(vwx244, vwx247) new_esEs23(Left(vwx3000), Left(vwx4000), app(app(ty_@2, daf), dag), dae) -> new_esEs17(vwx3000, vwx4000, daf, dag) new_ltEs19(vwx244, vwx247, app(app(app(ty_@3, cac), cad), cae)) -> new_ltEs13(vwx244, vwx247, cac, cad, cae) new_esEs6(vwx300, vwx400, ty_Ordering) -> new_esEs14(vwx300, vwx400) new_esEs11(vwx301, vwx401, ty_Char) -> new_esEs25(vwx301, vwx401) new_esEs34(vwx255, vwx257, app(app(ty_@2, cdf), cdg)) -> new_esEs17(vwx255, vwx257, cdf, cdg) new_esEs38(vwx3000, vwx4000, ty_Float) -> new_esEs18(vwx3000, vwx4000) new_esEs27(vwx1910, vwx1920, app(ty_Ratio, daa)) -> new_esEs22(vwx1910, vwx1920, daa) new_compare9(GT, EQ) -> GT new_primEqNat0(Succ(vwx30000), Zero) -> False new_primEqNat0(Zero, Succ(vwx40000)) -> False new_ltEs21(vwx256, vwx258, app(ty_[], ccc)) -> new_ltEs14(vwx256, vwx258, ccc) new_esEs23(Right(vwx3000), Right(vwx4000), dbg, ty_Ordering) -> new_esEs14(vwx3000, vwx4000) new_lt7(vwx1911, vwx1921, ty_Char) -> new_lt11(vwx1911, vwx1921) new_ltEs6(Just(vwx1910), Just(vwx1920), app(ty_Maybe, h)) -> new_ltEs6(vwx1910, vwx1920, h) new_compare11(Float(vwx300, Pos(vwx3010)), Float(vwx400, Neg(vwx4010))) -> new_compare28(new_sr(vwx300, Pos(vwx4010)), new_sr(Neg(vwx3010), vwx400)) new_compare11(Float(vwx300, Neg(vwx3010)), Float(vwx400, Pos(vwx4010))) -> new_compare28(new_sr(vwx300, Neg(vwx4010)), new_sr(Pos(vwx3010), vwx400)) new_compare9(LT, EQ) -> LT new_esEs29(vwx242, vwx245, ty_Int) -> new_esEs19(vwx242, vwx245) new_esEs30(vwx243, vwx246, ty_Ordering) -> new_esEs14(vwx243, vwx246) new_esEs37(vwx1910, vwx1920, ty_Float) -> new_esEs18(vwx1910, vwx1920) new_esEs33(vwx3002, vwx4002, app(ty_Ratio, egc)) -> new_esEs22(vwx3002, vwx4002, egc) new_esEs33(vwx3002, vwx4002, app(app(ty_Either, egd), ege)) -> new_esEs23(vwx3002, vwx4002, egd, ege) new_esEs21(Just(vwx3000), Just(vwx4000), app(ty_Maybe, fae)) -> new_esEs21(vwx3000, vwx4000, fae) new_compare18(Right(vwx300), Right(vwx400), bde, bdf) -> new_compare210(vwx300, vwx400, new_esEs6(vwx300, vwx400, bdf), bde, bdf) new_esEs27(vwx1910, vwx1920, app(app(ty_Either, fa), fb)) -> new_esEs23(vwx1910, vwx1920, fa, fb) new_esEs32(vwx3001, vwx4001, ty_Float) -> new_esEs18(vwx3001, vwx4001) new_lt6(vwx1910, vwx1920, app(ty_[], fg)) -> new_lt17(vwx1910, vwx1920, fg) new_ltEs11(Left(vwx1910), Left(vwx1920), ty_Bool, cb) -> new_ltEs10(vwx1910, vwx1920) new_esEs20(False, True) -> False new_esEs20(True, False) -> False new_ltEs20(vwx198, vwx199, app(app(app(ty_@3, bfa), bfb), bfc)) -> new_ltEs13(vwx198, vwx199, bfa, bfb, bfc) new_esEs13(vwx3000, vwx4000, ty_Bool) -> new_esEs20(vwx3000, vwx4000) new_ltEs18(vwx1912, vwx1922, ty_Char) -> new_ltEs5(vwx1912, vwx1922) new_primCmpInt(Pos(Succ(vwx3000)), Neg(vwx400)) -> GT new_lt22(vwx255, vwx257, ty_Integer) -> new_lt4(vwx255, vwx257) new_lt22(vwx255, vwx257, app(ty_[], cde)) -> new_lt17(vwx255, vwx257, cde) new_ltEs24(vwx191, vwx192, ty_Char) -> new_ltEs5(vwx191, vwx192) new_lt22(vwx255, vwx257, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_lt16(vwx255, vwx257, cdb, cdc, cdd) new_compare112(vwx303, vwx304, vwx305, vwx306, True, ehh, faa) -> LT new_ltEs11(Left(vwx1910), Right(vwx1920), dd, cb) -> True new_lt23(vwx1910, vwx1920, ty_Bool) -> new_lt12(vwx1910, vwx1920) new_esEs28(vwx1911, vwx1921, app(app(ty_Either, gd), ge)) -> new_esEs23(vwx1911, vwx1921, gd, ge) new_lt21(vwx242, vwx245, ty_Ordering) -> new_lt10(vwx242, vwx245) new_esEs10(vwx300, vwx400, app(ty_[], ddb)) -> new_esEs12(vwx300, vwx400, ddb) new_ltEs13(@3(vwx1910, vwx1911, vwx1912), @3(vwx1920, vwx1921, vwx1922), gb, eg, eh) -> new_pePe(new_lt6(vwx1910, vwx1920, gb), new_asAs(new_esEs27(vwx1910, vwx1920, gb), new_pePe(new_lt7(vwx1911, vwx1921, eg), new_asAs(new_esEs28(vwx1911, vwx1921, eg), new_ltEs18(vwx1912, vwx1922, eh))))) new_esEs39(vwx3001, vwx4001, app(ty_[], fef)) -> new_esEs12(vwx3001, vwx4001, fef) new_esEs23(Right(vwx3000), Right(vwx4000), dbg, ty_Bool) -> new_esEs20(vwx3000, vwx4000) new_esEs38(vwx3000, vwx4000, ty_Integer) -> new_esEs16(vwx3000, vwx4000) new_compare13(vwx320, vwx321, vwx322, vwx323, vwx324, vwx325, False, vwx327, ech, eda, edb) -> new_compare16(vwx320, vwx321, vwx322, vwx323, vwx324, vwx325, vwx327, ech, eda, edb) new_esEs32(vwx3001, vwx4001, app(ty_Ratio, efa)) -> new_esEs22(vwx3001, vwx4001, efa) new_esEs39(vwx3001, vwx4001, app(app(ty_Either, ffc), ffd)) -> new_esEs23(vwx3001, vwx4001, ffc, ffd) new_compare12(Just(vwx300), Nothing, baf) -> GT new_esEs33(vwx3002, vwx4002, ty_Double) -> new_esEs15(vwx3002, vwx4002) new_compare1(:(vwx30, vwx31), :(vwx40, vwx41), bdd) -> new_primCompAux1(vwx30, vwx40, new_compare1(vwx31, vwx41, bdd), bdd) new_esEs13(vwx3000, vwx4000, ty_Int) -> new_esEs19(vwx3000, vwx4000) new_esEs38(vwx3000, vwx4000, ty_Double) -> new_esEs15(vwx3000, vwx4000) new_esEs19(vwx300, vwx400) -> new_primEqInt(vwx300, vwx400) new_primCmpNat0(Zero, Succ(vwx4000)) -> LT new_ltEs20(vwx198, vwx199, ty_@0) -> new_ltEs17(vwx198, vwx199) new_ltEs11(Right(vwx1910), Right(vwx1920), dd, ty_Char) -> new_ltEs5(vwx1910, vwx1920) new_ltEs12(vwx191, vwx192) -> new_fsEs(new_compare28(vwx191, vwx192)) new_ltEs21(vwx256, vwx258, ty_Int) -> new_ltEs12(vwx256, vwx258) new_ltEs22(vwx1911, vwx1921, ty_Integer) -> new_ltEs9(vwx1911, vwx1921) new_esEs5(vwx300, vwx400, ty_Char) -> new_esEs25(vwx300, vwx400) new_ltEs22(vwx1911, vwx1921, ty_Ordering) -> new_ltEs4(vwx1911, vwx1921) new_lt6(vwx1910, vwx1920, ty_Double) -> new_lt8(vwx1910, vwx1920) new_lt23(vwx1910, vwx1920, ty_Char) -> new_lt11(vwx1910, vwx1920) new_esEs37(vwx1910, vwx1920, app(ty_Maybe, bah)) -> new_esEs21(vwx1910, vwx1920, bah) new_compare24(vwx255, vwx256, vwx257, vwx258, False, cbd, ccg) -> new_compare111(vwx255, vwx256, vwx257, vwx258, new_lt22(vwx255, vwx257, cbd), new_asAs(new_esEs34(vwx255, vwx257, cbd), new_ltEs21(vwx256, vwx258, ccg)), cbd, ccg) new_esEs31(vwx3000, vwx4000, app(ty_Maybe, edf)) -> new_esEs21(vwx3000, vwx4000, edf) new_ltEs21(vwx256, vwx258, ty_Double) -> new_ltEs7(vwx256, vwx258) new_primCmpNat0(Succ(vwx3000), Zero) -> GT new_esEs32(vwx3001, vwx4001, ty_Integer) -> new_esEs16(vwx3001, vwx4001) new_esEs6(vwx300, vwx400, ty_@0) -> new_esEs24(vwx300, vwx400) new_esEs9(vwx302, vwx402, app(ty_[], ebf)) -> new_esEs12(vwx302, vwx402, ebf) new_lt5(vwx242, vwx245) -> new_esEs14(new_compare8(vwx242, vwx245), LT) new_pePe(False, vwx334) -> vwx334 new_esEs34(vwx255, vwx257, ty_Float) -> new_esEs18(vwx255, vwx257) new_esEs4(vwx300, vwx400, app(ty_Maybe, dfh)) -> new_esEs21(vwx300, vwx400, dfh) new_compare30(True, False) -> GT new_esEs30(vwx243, vwx246, app(app(ty_@2, bhe), bhf)) -> new_esEs17(vwx243, vwx246, bhe, bhf) new_esEs33(vwx3002, vwx4002, ty_@0) -> new_esEs24(vwx3002, vwx4002) new_esEs20(False, False) -> True new_lt7(vwx1911, vwx1921, app(ty_Ratio, dab)) -> new_lt19(vwx1911, vwx1921, dab) new_ltEs23(vwx205, vwx206, ty_Ordering) -> new_ltEs4(vwx205, vwx206) new_lt22(vwx255, vwx257, ty_Int) -> new_lt15(vwx255, vwx257) new_ltEs6(Just(vwx1910), Just(vwx1920), ty_Char) -> new_ltEs5(vwx1910, vwx1920) new_esEs21(Just(vwx3000), Just(vwx4000), app(ty_[], fab)) -> new_esEs12(vwx3000, vwx4000, fab) new_lt7(vwx1911, vwx1921, app(app(ty_Either, gd), ge)) -> new_lt14(vwx1911, vwx1921, gd, ge) new_esEs5(vwx300, vwx400, ty_Integer) -> new_esEs16(vwx300, vwx400) new_esEs23(Left(vwx3000), Left(vwx4000), ty_Char, dae) -> new_esEs25(vwx3000, vwx4000) new_lt20(vwx243, vwx246, ty_Char) -> new_lt11(vwx243, vwx246) new_lt7(vwx1911, vwx1921, ty_Bool) -> new_lt12(vwx1911, vwx1921) new_esEs11(vwx301, vwx401, ty_Float) -> new_esEs18(vwx301, vwx401) new_lt22(vwx255, vwx257, ty_Char) -> new_lt11(vwx255, vwx257) new_lt22(vwx255, vwx257, app(ty_Ratio, ehf)) -> new_lt19(vwx255, vwx257, ehf) new_lt20(vwx243, vwx246, ty_Int) -> new_lt15(vwx243, vwx246) new_ltEs14(vwx191, vwx192, bag) -> new_fsEs(new_compare1(vwx191, vwx192, bag)) new_lt23(vwx1910, vwx1920, app(ty_Maybe, bah)) -> new_lt13(vwx1910, vwx1920, bah) new_esEs9(vwx302, vwx402, app(app(app(ty_@3, ece), ecf), ecg)) -> new_esEs26(vwx302, vwx402, ece, ecf, ecg) new_esEs13(vwx3000, vwx4000, app(ty_Ratio, cfg)) -> new_esEs22(vwx3000, vwx4000, cfg) new_compare7(Integer(vwx300), Integer(vwx400)) -> new_primCmpInt(vwx300, vwx400) new_lt6(vwx1910, vwx1920, app(ty_Maybe, ef)) -> new_lt13(vwx1910, vwx1920, ef) new_compare15(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bdg, bdh, bea) -> new_compare26(vwx300, vwx301, vwx302, vwx400, vwx401, vwx402, new_asAs(new_esEs7(vwx300, vwx400, bdg), new_asAs(new_esEs8(vwx301, vwx401, bdh), new_esEs9(vwx302, vwx402, bea))), bdg, bdh, bea) new_ltEs11(Left(vwx1910), Left(vwx1920), ty_Char, cb) -> new_ltEs5(vwx1910, vwx1920) new_esEs37(vwx1910, vwx1920, ty_Ordering) -> new_esEs14(vwx1910, vwx1920) new_ltEs20(vwx198, vwx199, ty_Float) -> new_ltEs8(vwx198, vwx199) new_primEqInt(Pos(Zero), Neg(Succ(vwx40000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(vwx40000))) -> False new_esEs5(vwx300, vwx400, ty_Bool) -> new_esEs20(vwx300, vwx400) new_ltEs18(vwx1912, vwx1922, app(ty_Maybe, hd)) -> new_ltEs6(vwx1912, vwx1922, hd) new_ltEs21(vwx256, vwx258, app(app(ty_@2, ccd), cce)) -> new_ltEs15(vwx256, vwx258, ccd, cce) new_ltEs18(vwx1912, vwx1922, ty_Integer) -> new_ltEs9(vwx1912, vwx1922) new_esEs4(vwx300, vwx400, ty_Int) -> new_esEs19(vwx300, vwx400) new_esEs23(Left(vwx3000), Left(vwx4000), ty_Int, dae) -> new_esEs19(vwx3000, vwx4000) new_esEs34(vwx255, vwx257, app(ty_[], cde)) -> new_esEs12(vwx255, vwx257, cde) new_esEs11(vwx301, vwx401, app(ty_[], ded)) -> new_esEs12(vwx301, vwx401, ded) new_compare111(vwx303, vwx304, vwx305, vwx306, True, vwx308, ehh, faa) -> new_compare112(vwx303, vwx304, vwx305, vwx306, True, ehh, faa) new_esEs38(vwx3000, vwx4000, app(ty_[], fdd)) -> new_esEs12(vwx3000, vwx4000, fdd) new_ltEs4(LT, GT) -> True new_esEs9(vwx302, vwx402, ty_Char) -> new_esEs25(vwx302, vwx402) new_ltEs10(True, False) -> False new_lt22(vwx255, vwx257, app(app(ty_Either, cch), cda)) -> new_lt14(vwx255, vwx257, cch, cda) new_esEs5(vwx300, vwx400, ty_Double) -> new_esEs15(vwx300, vwx400) new_lt14(vwx242, vwx245, bfg, bfh) -> new_esEs14(new_compare18(vwx242, vwx245, bfg, bfh), LT) new_esEs21(Just(vwx3000), Just(vwx4000), ty_Float) -> new_esEs18(vwx3000, vwx4000) new_esEs38(vwx3000, vwx4000, app(ty_Maybe, fdg)) -> new_esEs21(vwx3000, vwx4000, fdg) new_compare9(EQ, GT) -> LT new_esEs39(vwx3001, vwx4001, ty_Integer) -> new_esEs16(vwx3001, vwx4001) new_esEs9(vwx302, vwx402, app(ty_Ratio, ecb)) -> new_esEs22(vwx302, vwx402, ecb) new_ltEs24(vwx191, vwx192, ty_Float) -> new_ltEs8(vwx191, vwx192) new_lt22(vwx255, vwx257, ty_Bool) -> new_lt12(vwx255, vwx257) new_lt23(vwx1910, vwx1920, app(ty_[], bbg)) -> new_lt17(vwx1910, vwx1920, bbg) new_esEs32(vwx3001, vwx4001, ty_Double) -> new_esEs15(vwx3001, vwx4001) new_compare12(Nothing, Just(vwx400), baf) -> LT new_ltEs18(vwx1912, vwx1922, app(app(app(ty_@3, hg), hh), baa)) -> new_ltEs13(vwx1912, vwx1922, hg, hh, baa) new_primEqInt(Neg(Succ(vwx30000)), Neg(Succ(vwx40000))) -> new_primEqNat0(vwx30000, vwx40000) new_esEs39(vwx3001, vwx4001, ty_Ordering) -> new_esEs14(vwx3001, vwx4001) new_compare12(Nothing, Nothing, baf) -> EQ new_ltEs19(vwx244, vwx247, app(ty_[], caf)) -> new_ltEs14(vwx244, vwx247, caf) new_esEs28(vwx1911, vwx1921, ty_Integer) -> new_esEs16(vwx1911, vwx1921) new_primCmpInt(Neg(Zero), Pos(Succ(vwx4000))) -> LT new_ltEs22(vwx1911, vwx1921, ty_Int) -> new_ltEs12(vwx1911, vwx1921) new_esEs23(Left(vwx3000), Left(vwx4000), app(app(ty_Either, dbb), dbc), dae) -> new_esEs23(vwx3000, vwx4000, dbb, dbc) new_ltEs4(LT, LT) -> True new_ltEs24(vwx191, vwx192, app(ty_Ratio, ehb)) -> new_ltEs16(vwx191, vwx192, ehb) new_ltEs4(EQ, LT) -> False new_esEs31(vwx3000, vwx4000, ty_@0) -> new_esEs24(vwx3000, vwx4000) new_esEs34(vwx255, vwx257, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_esEs26(vwx255, vwx257, cdb, cdc, cdd) new_primMulInt(Pos(vwx3000), Pos(vwx4010)) -> Pos(new_primMulNat0(vwx3000, vwx4010)) new_esEs7(vwx300, vwx400, ty_Integer) -> new_esEs16(vwx300, vwx400) new_esEs27(vwx1910, vwx1920, ty_Ordering) -> new_esEs14(vwx1910, vwx1920) new_esEs5(vwx300, vwx400, app(app(ty_Either, fcc), fcd)) -> new_esEs23(vwx300, vwx400, fcc, fcd) new_ltEs5(vwx191, vwx192) -> new_fsEs(new_compare6(vwx191, vwx192)) new_esEs13(vwx3000, vwx4000, ty_Float) -> new_esEs18(vwx3000, vwx4000) new_esEs11(vwx301, vwx401, app(app(app(ty_@3, dfc), dfd), dfe)) -> new_esEs26(vwx301, vwx401, dfc, dfd, dfe) new_esEs31(vwx3000, vwx4000, ty_Char) -> new_esEs25(vwx3000, vwx4000) new_ltEs11(Left(vwx1910), Left(vwx1920), ty_Integer, cb) -> new_ltEs9(vwx1910, vwx1920) new_esEs30(vwx243, vwx246, app(app(ty_Either, bgg), bgh)) -> new_esEs23(vwx243, vwx246, bgg, bgh) new_esEs21(Just(vwx3000), Just(vwx4000), app(ty_Ratio, faf)) -> new_esEs22(vwx3000, vwx4000, faf) new_compare29(vwx30, vwx40, app(ty_[], beb)) -> new_compare1(vwx30, vwx40, beb) new_esEs28(vwx1911, vwx1921, ty_Double) -> new_esEs15(vwx1911, vwx1921) new_esEs11(vwx301, vwx401, app(ty_Ratio, deh)) -> new_esEs22(vwx301, vwx401, deh) new_esEs14(LT, GT) -> False new_esEs14(GT, LT) -> False new_lt21(vwx242, vwx245, app(ty_Maybe, bae)) -> new_lt13(vwx242, vwx245, bae) new_esEs28(vwx1911, vwx1921, ty_Bool) -> new_esEs20(vwx1911, vwx1921) new_compare10(@2(vwx300, vwx301), @2(vwx400, vwx401), bec, bed) -> new_compare24(vwx300, vwx301, vwx400, vwx401, new_asAs(new_esEs10(vwx300, vwx400, bec), new_esEs11(vwx301, vwx401, bed)), bec, bed) new_esEs9(vwx302, vwx402, ty_Float) -> new_esEs18(vwx302, vwx402) new_esEs23(Left(vwx3000), Left(vwx4000), app(ty_[], dad), dae) -> new_esEs12(vwx3000, vwx4000, dad) new_esEs7(vwx300, vwx400, app(app(app(ty_@3, dhg), dhh), eaa)) -> new_esEs26(vwx300, vwx400, dhg, dhh, eaa) new_ltEs24(vwx191, vwx192, ty_Bool) -> new_ltEs10(vwx191, vwx192) new_primMulNat0(Succ(vwx30000), Zero) -> Zero new_primMulNat0(Zero, Succ(vwx40100)) -> Zero new_ltEs6(Just(vwx1910), Just(vwx1920), app(ty_Ratio, chh)) -> new_ltEs16(vwx1910, vwx1920, chh) new_lt20(vwx243, vwx246, ty_Double) -> new_lt8(vwx243, vwx246) new_esEs6(vwx300, vwx400, app(ty_Maybe, cgh)) -> new_esEs21(vwx300, vwx400, cgh) new_esEs29(vwx242, vwx245, app(app(ty_Either, bfg), bfh)) -> new_esEs23(vwx242, vwx245, bfg, bfh) new_ltEs11(Right(vwx1910), Left(vwx1920), dd, cb) -> False new_ltEs6(Just(vwx1910), Just(vwx1920), ty_Bool) -> new_ltEs10(vwx1910, vwx1920) new_esEs27(vwx1910, vwx1920, app(ty_Maybe, ef)) -> new_esEs21(vwx1910, vwx1920, ef) new_esEs23(Left(vwx3000), Left(vwx4000), app(app(app(ty_@3, dbd), dbe), dbf), dae) -> new_esEs26(vwx3000, vwx4000, dbd, dbe, dbf) new_lt20(vwx243, vwx246, app(ty_Ratio, dgf)) -> new_lt19(vwx243, vwx246, dgf) new_esEs7(vwx300, vwx400, ty_Double) -> new_esEs15(vwx300, vwx400) new_ltEs23(vwx205, vwx206, app(app(ty_@2, ceh), cfa)) -> new_ltEs15(vwx205, vwx206, ceh, cfa) new_primPlusNat1(Succ(vwx3350), vwx40100) -> Succ(Succ(new_primPlusNat0(vwx3350, vwx40100))) new_esEs8(vwx301, vwx401, app(app(ty_Either, eba), ebb)) -> new_esEs23(vwx301, vwx401, eba, ebb) new_ltEs11(Left(vwx1910), Left(vwx1920), ty_Double, cb) -> new_ltEs7(vwx1910, vwx1920) new_esEs28(vwx1911, vwx1921, ty_Int) -> new_esEs19(vwx1911, vwx1921) new_lt22(vwx255, vwx257, ty_Float) -> new_lt9(vwx255, vwx257) new_esEs10(vwx300, vwx400, ty_Char) -> new_esEs25(vwx300, vwx400) new_lt20(vwx243, vwx246, ty_Bool) -> new_lt12(vwx243, vwx246) new_primPlusNat0(Succ(vwx33500), Zero) -> Succ(vwx33500) new_primPlusNat0(Zero, Succ(vwx401000)) -> Succ(vwx401000) new_ltEs22(vwx1911, vwx1921, ty_@0) -> new_ltEs17(vwx1911, vwx1921) new_ltEs19(vwx244, vwx247, ty_Double) -> new_ltEs7(vwx244, vwx247) new_esEs8(vwx301, vwx401, app(app(ty_@2, eae), eaf)) -> new_esEs17(vwx301, vwx401, eae, eaf) new_esEs38(vwx3000, vwx4000, ty_Bool) -> new_esEs20(vwx3000, vwx4000) new_primPlusNat1(Zero, vwx40100) -> Succ(vwx40100) new_esEs28(vwx1911, vwx1921, app(ty_Maybe, gc)) -> new_esEs21(vwx1911, vwx1921, gc) new_ltEs18(vwx1912, vwx1922, ty_Double) -> new_ltEs7(vwx1912, vwx1922) new_esEs9(vwx302, vwx402, app(app(ty_@2, ebg), ebh)) -> new_esEs17(vwx302, vwx402, ebg, ebh) new_esEs32(vwx3001, vwx4001, app(app(app(ty_@3, efd), efe), eff)) -> new_esEs26(vwx3001, vwx4001, efd, efe, eff) new_compare1([], [], bdd) -> EQ new_esEs34(vwx255, vwx257, app(ty_Ratio, ehf)) -> new_esEs22(vwx255, vwx257, ehf) new_ltEs6(Nothing, Just(vwx1920), chg) -> True new_esEs33(vwx3002, vwx4002, ty_Char) -> new_esEs25(vwx3002, vwx4002) new_ltEs11(Right(vwx1910), Right(vwx1920), dd, ty_Ordering) -> new_ltEs4(vwx1910, vwx1920) new_esEs7(vwx300, vwx400, app(app(ty_Either, dhe), dhf)) -> new_esEs23(vwx300, vwx400, dhe, dhf) new_lt21(vwx242, vwx245, ty_Bool) -> new_lt12(vwx242, vwx245) new_esEs32(vwx3001, vwx4001, app(app(ty_Either, efb), efc)) -> new_esEs23(vwx3001, vwx4001, efb, efc) new_compare29(vwx30, vwx40, app(ty_Maybe, baf)) -> new_compare12(vwx30, vwx40, baf) new_esEs7(vwx300, vwx400, app(app(ty_@2, dha), dhb)) -> new_esEs17(vwx300, vwx400, dha, dhb) new_compare18(Left(vwx300), Right(vwx400), bde, bdf) -> LT new_lt13(vwx242, vwx245, bae) -> new_esEs14(new_compare12(vwx242, vwx245, bae), LT) new_ltEs23(vwx205, vwx206, ty_@0) -> new_ltEs17(vwx205, vwx206) new_esEs23(Left(vwx3000), Left(vwx4000), ty_Double, dae) -> new_esEs15(vwx3000, vwx4000) new_lt6(vwx1910, vwx1920, ty_Float) -> new_lt9(vwx1910, vwx1920) new_esEs9(vwx302, vwx402, ty_@0) -> new_esEs24(vwx302, vwx402) new_ltEs11(Left(vwx1910), Left(vwx1920), app(app(ty_Either, cc), cd), cb) -> new_ltEs11(vwx1910, vwx1920, cc, cd) new_esEs12(:(vwx3000, vwx3001), :(vwx4000, vwx4001), cfb) -> new_asAs(new_esEs13(vwx3000, vwx4000, cfb), new_esEs12(vwx3001, vwx4001, cfb)) new_esEs23(Right(vwx3000), Right(vwx4000), dbg, ty_Float) -> new_esEs18(vwx3000, vwx4000) new_esEs39(vwx3001, vwx4001, ty_Bool) -> new_esEs20(vwx3001, vwx4001) new_lt7(vwx1911, vwx1921, ty_Float) -> new_lt9(vwx1911, vwx1921) new_ltEs11(Right(vwx1910), Right(vwx1920), dd, app(ty_[], ec)) -> new_ltEs14(vwx1910, vwx1920, ec) new_ltEs6(Just(vwx1910), Just(vwx1920), ty_Ordering) -> new_ltEs4(vwx1910, vwx1920) new_esEs33(vwx3002, vwx4002, app(app(ty_@2, efh), ega)) -> new_esEs17(vwx3002, vwx4002, efh, ega) new_ltEs15(@2(vwx1910, vwx1911), @2(vwx1920, vwx1921), bcb, bba) -> new_pePe(new_lt23(vwx1910, vwx1920, bcb), new_asAs(new_esEs37(vwx1910, vwx1920, bcb), new_ltEs22(vwx1911, vwx1921, bba))) new_esEs10(vwx300, vwx400, app(app(ty_@2, ddc), ddd)) -> new_esEs17(vwx300, vwx400, ddc, ddd) new_ltEs10(False, True) -> True new_lt21(vwx242, vwx245, ty_Float) -> new_lt9(vwx242, vwx245) new_esEs7(vwx300, vwx400, ty_Char) -> new_esEs25(vwx300, vwx400) new_esEs29(vwx242, vwx245, app(ty_Maybe, bae)) -> new_esEs21(vwx242, vwx245, bae) new_esEs6(vwx300, vwx400, app(app(ty_Either, chb), chc)) -> new_esEs23(vwx300, vwx400, chb, chc) new_ltEs20(vwx198, vwx199, ty_Integer) -> new_ltEs9(vwx198, vwx199) new_primCompAux1(vwx30, vwx40, vwx181, bdd) -> new_primCompAux0(vwx181, new_compare29(vwx30, vwx40, bdd)) new_compare16(vwx320, vwx321, vwx322, vwx323, vwx324, vwx325, True, ech, eda, edb) -> LT new_ltEs19(vwx244, vwx247, ty_Integer) -> new_ltEs9(vwx244, vwx247) new_ltEs11(Right(vwx1910), Right(vwx1920), dd, ty_Int) -> new_ltEs12(vwx1910, vwx1920) new_ltEs4(LT, EQ) -> True new_esEs8(vwx301, vwx401, ty_@0) -> new_esEs24(vwx301, vwx401) new_esEs8(vwx301, vwx401, app(app(app(ty_@3, ebc), ebd), ebe)) -> new_esEs26(vwx301, vwx401, ebc, ebd, ebe) new_esEs30(vwx243, vwx246, ty_Integer) -> new_esEs16(vwx243, vwx246) new_lt21(vwx242, vwx245, app(ty_Ratio, dge)) -> new_lt19(vwx242, vwx245, dge) new_esEs29(vwx242, vwx245, ty_Double) -> new_esEs15(vwx242, vwx245) new_compare9(GT, GT) -> EQ new_compare9(LT, GT) -> LT new_esEs38(vwx3000, vwx4000, ty_Int) -> new_esEs19(vwx3000, vwx4000) new_lt7(vwx1911, vwx1921, app(ty_Maybe, gc)) -> new_lt13(vwx1911, vwx1921, gc) new_ltEs11(Right(vwx1910), Right(vwx1920), dd, app(ty_Maybe, de)) -> new_ltEs6(vwx1910, vwx1920, de) new_esEs38(vwx3000, vwx4000, ty_Ordering) -> new_esEs14(vwx3000, vwx4000) new_primMulInt(Neg(vwx3000), Neg(vwx4010)) -> Pos(new_primMulNat0(vwx3000, vwx4010)) new_primCmpInt(Pos(Zero), Pos(Succ(vwx4000))) -> new_primCmpNat0(Zero, Succ(vwx4000)) new_compare25(vwx191, vwx192, True, ffh) -> EQ new_compare13(vwx320, vwx321, vwx322, vwx323, vwx324, vwx325, True, vwx327, ech, eda, edb) -> new_compare16(vwx320, vwx321, vwx322, vwx323, vwx324, vwx325, True, ech, eda, edb) new_esEs32(vwx3001, vwx4001, app(app(ty_@2, eef), eeg)) -> new_esEs17(vwx3001, vwx4001, eef, eeg) new_ltEs22(vwx1911, vwx1921, app(app(ty_@2, bdb), bdc)) -> new_ltEs15(vwx1911, vwx1921, bdb, bdc) new_ltEs6(Just(vwx1910), Just(vwx1920), ty_Int) -> new_ltEs12(vwx1910, vwx1920) new_esEs8(vwx301, vwx401, ty_Char) -> new_esEs25(vwx301, vwx401) new_ltEs4(EQ, EQ) -> True new_esEs10(vwx300, vwx400, app(app(app(ty_@3, dea), deb), dec)) -> new_esEs26(vwx300, vwx400, dea, deb, dec) new_esEs27(vwx1910, vwx1920, ty_Int) -> new_esEs19(vwx1910, vwx1920) new_esEs6(vwx300, vwx400, ty_Double) -> new_esEs15(vwx300, vwx400) new_esEs10(vwx300, vwx400, ty_@0) -> new_esEs24(vwx300, vwx400) new_esEs23(Left(vwx3000), Left(vwx4000), ty_Integer, dae) -> new_esEs16(vwx3000, vwx4000) new_ltEs24(vwx191, vwx192, ty_Int) -> new_ltEs12(vwx191, vwx192) new_lt17(vwx242, vwx245, cba) -> new_esEs14(new_compare1(vwx242, vwx245, cba), LT) new_esEs23(Left(vwx3000), Left(vwx4000), app(ty_Ratio, dba), dae) -> new_esEs22(vwx3000, vwx4000, dba) new_esEs13(vwx3000, vwx4000, app(ty_[], cfc)) -> new_esEs12(vwx3000, vwx4000, cfc) new_compare28(vwx30, vwx40) -> new_primCmpInt(vwx30, vwx40) new_esEs30(vwx243, vwx246, ty_Double) -> new_esEs15(vwx243, vwx246) new_esEs29(vwx242, vwx245, ty_Integer) -> new_esEs16(vwx242, vwx245) new_esEs23(Right(vwx3000), Right(vwx4000), dbg, app(ty_Maybe, dcc)) -> new_esEs21(vwx3000, vwx4000, dcc) new_esEs33(vwx3002, vwx4002, app(app(app(ty_@3, egf), egg), egh)) -> new_esEs26(vwx3002, vwx4002, egf, egg, egh) new_ltEs22(vwx1911, vwx1921, ty_Float) -> new_ltEs8(vwx1911, vwx1921) new_esEs31(vwx3000, vwx4000, app(app(ty_Either, edh), eea)) -> new_esEs23(vwx3000, vwx4000, edh, eea) new_esEs32(vwx3001, vwx4001, ty_Char) -> new_esEs25(vwx3001, vwx4001) new_compare26(vwx242, vwx243, vwx244, vwx245, vwx246, vwx247, False, bgd, bhg, bgf) -> new_compare13(vwx242, vwx243, vwx244, vwx245, vwx246, vwx247, new_lt21(vwx242, vwx245, bgd), new_asAs(new_esEs29(vwx242, vwx245, bgd), new_pePe(new_lt20(vwx243, vwx246, bhg), new_asAs(new_esEs30(vwx243, vwx246, bhg), new_ltEs19(vwx244, vwx247, bgf)))), bgd, bhg, bgf) new_esEs10(vwx300, vwx400, ty_Bool) -> new_esEs20(vwx300, vwx400) new_ltEs24(vwx191, vwx192, app(ty_[], bag)) -> new_ltEs14(vwx191, vwx192, bag) new_compare113(vwx285, vwx286, True, fga, fgb) -> LT new_lt23(vwx1910, vwx1920, app(ty_Ratio, fch)) -> new_lt19(vwx1910, vwx1920, fch) new_compare29(vwx30, vwx40, app(ty_Ratio, ehc)) -> new_compare19(vwx30, vwx40, ehc) new_lt12(vwx242, vwx245) -> new_esEs14(new_compare30(vwx242, vwx245), LT) new_compare29(vwx30, vwx40, app(app(ty_Either, bde), bdf)) -> new_compare18(vwx30, vwx40, bde, bdf) new_ltEs23(vwx205, vwx206, app(app(app(ty_@3, ced), cee), cef)) -> new_ltEs13(vwx205, vwx206, ced, cee, cef) new_primMulInt(Pos(vwx3000), Neg(vwx4010)) -> Neg(new_primMulNat0(vwx3000, vwx4010)) new_primMulInt(Neg(vwx3000), Pos(vwx4010)) -> Neg(new_primMulNat0(vwx3000, vwx4010)) new_esEs4(vwx300, vwx400, app(app(ty_@2, dff), dfg)) -> new_esEs17(vwx300, vwx400, dff, dfg) new_esEs8(vwx301, vwx401, ty_Float) -> new_esEs18(vwx301, vwx401) new_lt6(vwx1910, vwx1920, app(ty_Ratio, daa)) -> new_lt19(vwx1910, vwx1920, daa) new_compare29(vwx30, vwx40, app(app(app(ty_@3, bdg), bdh), bea)) -> new_compare15(vwx30, vwx40, bdg, bdh, bea) new_esEs21(Just(vwx3000), Just(vwx4000), ty_Ordering) -> new_esEs14(vwx3000, vwx4000) new_esEs8(vwx301, vwx401, ty_Double) -> new_esEs15(vwx301, vwx401) new_compare11(Float(vwx300, Pos(vwx3010)), Float(vwx400, Pos(vwx4010))) -> new_compare28(new_sr(vwx300, Pos(vwx4010)), new_sr(Pos(vwx3010), vwx400)) new_lt20(vwx243, vwx246, app(ty_[], bhd)) -> new_lt17(vwx243, vwx246, bhd) new_esEs23(Left(vwx3000), Right(vwx4000), dbg, dae) -> False new_esEs23(Right(vwx3000), Left(vwx4000), dbg, dae) -> False new_esEs37(vwx1910, vwx1920, app(ty_[], bbg)) -> new_esEs12(vwx1910, vwx1920, bbg) new_esEs23(Left(vwx3000), Left(vwx4000), app(ty_Maybe, dah), dae) -> new_esEs21(vwx3000, vwx4000, dah) new_lt4(vwx242, vwx245) -> new_esEs14(new_compare7(vwx242, vwx245), LT) new_esEs8(vwx301, vwx401, ty_Bool) -> new_esEs20(vwx301, vwx401) new_esEs30(vwx243, vwx246, ty_Char) -> new_esEs25(vwx243, vwx246) new_ltEs23(vwx205, vwx206, ty_Float) -> new_ltEs8(vwx205, vwx206) new_esEs29(vwx242, vwx245, app(app(app(ty_@3, bga), bgb), bgc)) -> new_esEs26(vwx242, vwx245, bga, bgb, bgc) new_ltEs20(vwx198, vwx199, app(app(ty_Either, beg), beh)) -> new_ltEs11(vwx198, vwx199, beg, beh) new_esEs30(vwx243, vwx246, app(ty_Ratio, dgf)) -> new_esEs22(vwx243, vwx246, dgf) new_esEs10(vwx300, vwx400, ty_Integer) -> new_esEs16(vwx300, vwx400) new_sr0(Integer(vwx3000), Integer(vwx4010)) -> Integer(new_primMulInt(vwx3000, vwx4010)) new_ltEs18(vwx1912, vwx1922, app(ty_[], bab)) -> new_ltEs14(vwx1912, vwx1922, bab) new_compare210(vwx205, vwx206, False, cdh, fdb) -> new_compare113(vwx205, vwx206, new_ltEs23(vwx205, vwx206, fdb), cdh, fdb) new_compare30(False, False) -> EQ new_lt20(vwx243, vwx246, app(ty_Maybe, bge)) -> new_lt13(vwx243, vwx246, bge) new_ltEs23(vwx205, vwx206, ty_Int) -> new_ltEs12(vwx205, vwx206) new_ltEs18(vwx1912, vwx1922, ty_Ordering) -> new_ltEs4(vwx1912, vwx1922) new_esEs10(vwx300, vwx400, ty_Float) -> new_esEs18(vwx300, vwx400) new_esEs39(vwx3001, vwx4001, app(ty_Maybe, ffa)) -> new_esEs21(vwx3001, vwx4001, ffa) new_lt21(vwx242, vwx245, ty_Char) -> new_lt11(vwx242, vwx245) new_ltEs24(vwx191, vwx192, ty_Ordering) -> new_ltEs4(vwx191, vwx192) new_lt23(vwx1910, vwx1920, ty_Int) -> new_lt15(vwx1910, vwx1920) new_esEs39(vwx3001, vwx4001, app(app(app(ty_@3, ffe), fff), ffg)) -> new_esEs26(vwx3001, vwx4001, ffe, fff, ffg) new_esEs14(EQ, GT) -> False new_esEs14(GT, EQ) -> False new_ltEs21(vwx256, vwx258, ty_Bool) -> new_ltEs10(vwx256, vwx258) new_ltEs21(vwx256, vwx258, app(ty_Maybe, cbe)) -> new_ltEs6(vwx256, vwx258, cbe) new_lt6(vwx1910, vwx1920, ty_Integer) -> new_lt4(vwx1910, vwx1920) new_ltEs11(Left(vwx1910), Left(vwx1920), ty_Ordering, cb) -> new_ltEs4(vwx1910, vwx1920) new_esEs28(vwx1911, vwx1921, ty_@0) -> new_esEs24(vwx1911, vwx1921) new_ltEs19(vwx244, vwx247, app(app(ty_@2, cag), cah)) -> new_ltEs15(vwx244, vwx247, cag, cah) new_lt7(vwx1911, vwx1921, ty_@0) -> new_lt5(vwx1911, vwx1921) new_esEs31(vwx3000, vwx4000, ty_Bool) -> new_esEs20(vwx3000, vwx4000) new_asAs(True, vwx294) -> vwx294 new_esEs22(:%(vwx3000, vwx3001), :%(vwx4000, vwx4001), dga) -> new_asAs(new_esEs35(vwx3000, vwx4000, dga), new_esEs36(vwx3001, vwx4001, dga)) new_lt15(vwx242, vwx245) -> new_esEs14(new_compare28(vwx242, vwx245), LT) new_esEs11(vwx301, vwx401, ty_Ordering) -> new_esEs14(vwx301, vwx401) new_esEs4(vwx300, vwx400, ty_Bool) -> new_esEs20(vwx300, vwx400) new_esEs31(vwx3000, vwx4000, ty_Double) -> new_esEs15(vwx3000, vwx4000) new_compare30(False, True) -> LT new_esEs32(vwx3001, vwx4001, ty_Int) -> new_esEs19(vwx3001, vwx4001) new_ltEs21(vwx256, vwx258, ty_Integer) -> new_ltEs9(vwx256, vwx258) new_lt6(vwx1910, vwx1920, ty_Int) -> new_lt15(vwx1910, vwx1920) new_esEs4(vwx300, vwx400, ty_Double) -> new_esEs15(vwx300, vwx400) new_esEs23(Right(vwx3000), Right(vwx4000), dbg, app(app(ty_Either, dce), dcf)) -> new_esEs23(vwx3000, vwx4000, dce, dcf) new_lt20(vwx243, vwx246, ty_Float) -> new_lt9(vwx243, vwx246) new_esEs5(vwx300, vwx400, ty_Int) -> new_esEs19(vwx300, vwx400) new_esEs31(vwx3000, vwx4000, ty_Integer) -> new_esEs16(vwx3000, vwx4000) new_ltEs11(Right(vwx1910), Right(vwx1920), dd, ty_@0) -> new_ltEs17(vwx1910, vwx1920) new_esEs39(vwx3001, vwx4001, app(ty_Ratio, ffb)) -> new_esEs22(vwx3001, vwx4001, ffb) new_esEs4(vwx300, vwx400, ty_Float) -> new_esEs18(vwx300, vwx400) new_esEs30(vwx243, vwx246, app(ty_Maybe, bge)) -> new_esEs21(vwx243, vwx246, bge) new_esEs7(vwx300, vwx400, ty_@0) -> new_esEs24(vwx300, vwx400) new_esEs39(vwx3001, vwx4001, ty_Char) -> new_esEs25(vwx3001, vwx4001) new_ltEs20(vwx198, vwx199, app(app(ty_@2, bfe), bff)) -> new_ltEs15(vwx198, vwx199, bfe, bff) new_esEs34(vwx255, vwx257, ty_@0) -> new_esEs24(vwx255, vwx257) new_ltEs20(vwx198, vwx199, ty_Double) -> new_ltEs7(vwx198, vwx199) new_esEs31(vwx3000, vwx4000, ty_Float) -> new_esEs18(vwx3000, vwx4000) new_esEs31(vwx3000, vwx4000, app(app(ty_@2, edd), ede)) -> new_esEs17(vwx3000, vwx4000, edd, ede) new_lt23(vwx1910, vwx1920, app(app(app(ty_@3, bbd), bbe), bbf)) -> new_lt16(vwx1910, vwx1920, bbd, bbe, bbf) new_esEs37(vwx1910, vwx1920, ty_Int) -> new_esEs19(vwx1910, vwx1920) new_primCmpInt(Pos(Succ(vwx3000)), Pos(vwx400)) -> new_primCmpNat0(Succ(vwx3000), vwx400) new_ltEs11(Right(vwx1910), Right(vwx1920), dd, app(app(ty_Either, df), dg)) -> new_ltEs11(vwx1910, vwx1920, df, dg) new_esEs17(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), dff, dfg) -> new_asAs(new_esEs38(vwx3000, vwx4000, dff), new_esEs39(vwx3001, vwx4001, dfg)) new_esEs9(vwx302, vwx402, ty_Ordering) -> new_esEs14(vwx302, vwx402) new_esEs21(Just(vwx3000), Just(vwx4000), app(app(ty_@2, fac), fad)) -> new_esEs17(vwx3000, vwx4000, fac, fad) new_esEs4(vwx300, vwx400, ty_Integer) -> new_esEs16(vwx300, vwx400) new_sr(vwx300, vwx401) -> new_primMulInt(vwx300, vwx401) new_compare17(Double(vwx300, Neg(vwx3010)), Double(vwx400, Neg(vwx4010))) -> new_compare28(new_sr(vwx300, Neg(vwx4010)), new_sr(Neg(vwx3010), vwx400)) new_primMulNat0(Zero, Zero) -> Zero new_ltEs10(True, True) -> True new_esEs39(vwx3001, vwx4001, ty_Double) -> new_esEs15(vwx3001, vwx4001) new_esEs10(vwx300, vwx400, app(app(ty_Either, ddg), ddh)) -> new_esEs23(vwx300, vwx400, ddg, ddh) new_lt21(vwx242, vwx245, ty_Double) -> new_lt8(vwx242, vwx245) new_compare25(vwx191, vwx192, False, ffh) -> new_compare110(vwx191, vwx192, new_ltEs24(vwx191, vwx192, ffh), ffh) new_lt20(vwx243, vwx246, app(app(ty_@2, bhe), bhf)) -> new_lt18(vwx243, vwx246, bhe, bhf) new_ltEs22(vwx1911, vwx1921, app(ty_Ratio, fda)) -> new_ltEs16(vwx1911, vwx1921, fda) new_lt7(vwx1911, vwx1921, app(app(app(ty_@3, gf), gg), gh)) -> new_lt16(vwx1911, vwx1921, gf, gg, gh) new_esEs7(vwx300, vwx400, app(ty_Ratio, dhd)) -> new_esEs22(vwx300, vwx400, dhd) new_esEs23(Right(vwx3000), Right(vwx4000), dbg, app(app(ty_@2, dca), dcb)) -> new_esEs17(vwx3000, vwx4000, dca, dcb) new_ltEs20(vwx198, vwx199, app(ty_[], bfd)) -> new_ltEs14(vwx198, vwx199, bfd) new_ltEs21(vwx256, vwx258, ty_@0) -> new_ltEs17(vwx256, vwx258) new_esEs13(vwx3000, vwx4000, ty_@0) -> new_esEs24(vwx3000, vwx4000) new_esEs23(Left(vwx3000), Left(vwx4000), ty_Bool, dae) -> new_esEs20(vwx3000, vwx4000) new_ltEs24(vwx191, vwx192, app(app(ty_@2, bcb), bba)) -> new_ltEs15(vwx191, vwx192, bcb, bba) new_esEs4(vwx300, vwx400, ty_Ordering) -> new_esEs14(vwx300, vwx400) new_esEs11(vwx301, vwx401, app(app(ty_@2, dee), def)) -> new_esEs17(vwx301, vwx401, dee, def) new_lt11(vwx242, vwx245) -> new_esEs14(new_compare6(vwx242, vwx245), LT) new_esEs29(vwx242, vwx245, ty_@0) -> new_esEs24(vwx242, vwx245) new_esEs21(Nothing, Just(vwx4000), dfh) -> False new_esEs21(Just(vwx3000), Nothing, dfh) -> False new_ltEs11(Right(vwx1910), Right(vwx1920), dd, app(ty_Ratio, fbe)) -> new_ltEs16(vwx1910, vwx1920, fbe) new_esEs9(vwx302, vwx402, ty_Integer) -> new_esEs16(vwx302, vwx402) new_esEs31(vwx3000, vwx4000, app(app(app(ty_@3, eeb), eec), eed)) -> new_esEs26(vwx3000, vwx4000, eeb, eec, eed) new_ltEs23(vwx205, vwx206, ty_Char) -> new_ltEs5(vwx205, vwx206) new_lt6(vwx1910, vwx1920, app(app(app(ty_@3, fc), fd), ff)) -> new_lt16(vwx1910, vwx1920, fc, fd, ff) new_esEs21(Nothing, Nothing, dfh) -> True new_esEs21(Just(vwx3000), Just(vwx4000), ty_Bool) -> new_esEs20(vwx3000, vwx4000) new_lt22(vwx255, vwx257, ty_Double) -> new_lt8(vwx255, vwx257) new_lt7(vwx1911, vwx1921, app(ty_[], ha)) -> new_lt17(vwx1911, vwx1921, ha) new_ltEs11(Right(vwx1910), Right(vwx1920), dd, app(app(ty_@2, ed), ee)) -> new_ltEs15(vwx1910, vwx1920, ed, ee) new_ltEs20(vwx198, vwx199, app(ty_Maybe, bee)) -> new_ltEs6(vwx198, vwx199, bee) new_compare9(LT, LT) -> EQ new_ltEs24(vwx191, vwx192, app(app(ty_Either, dd), cb)) -> new_ltEs11(vwx191, vwx192, dd, cb) new_lt21(vwx242, vwx245, app(app(ty_@2, cbb), cbc)) -> new_lt18(vwx242, vwx245, cbb, cbc) new_esEs34(vwx255, vwx257, ty_Char) -> new_esEs25(vwx255, vwx257) new_ltEs11(Right(vwx1910), Right(vwx1920), dd, ty_Bool) -> new_ltEs10(vwx1910, vwx1920) new_ltEs18(vwx1912, vwx1922, app(app(ty_Either, he), hf)) -> new_ltEs11(vwx1912, vwx1922, he, hf) new_lt23(vwx1910, vwx1920, ty_Integer) -> new_lt4(vwx1910, vwx1920) new_esEs21(Just(vwx3000), Just(vwx4000), ty_Int) -> new_esEs19(vwx3000, vwx4000) new_lt22(vwx255, vwx257, ty_Ordering) -> new_lt10(vwx255, vwx257) new_esEs8(vwx301, vwx401, app(ty_Maybe, eag)) -> new_esEs21(vwx301, vwx401, eag) new_esEs10(vwx300, vwx400, app(ty_Ratio, ddf)) -> new_esEs22(vwx300, vwx400, ddf) new_ltEs18(vwx1912, vwx1922, ty_Float) -> new_ltEs8(vwx1912, vwx1922) new_ltEs6(Just(vwx1910), Just(vwx1920), ty_Float) -> new_ltEs8(vwx1910, vwx1920) new_esEs28(vwx1911, vwx1921, ty_Char) -> new_esEs25(vwx1911, vwx1921) new_lt20(vwx243, vwx246, app(app(ty_Either, bgg), bgh)) -> new_lt14(vwx243, vwx246, bgg, bgh) new_ltEs11(Right(vwx1910), Right(vwx1920), dd, app(app(app(ty_@3, dh), ea), eb)) -> new_ltEs13(vwx1910, vwx1920, dh, ea, eb) new_esEs30(vwx243, vwx246, app(app(app(ty_@3, bha), bhb), bhc)) -> new_esEs26(vwx243, vwx246, bha, bhb, bhc) new_lt7(vwx1911, vwx1921, ty_Int) -> new_lt15(vwx1911, vwx1921) new_esEs4(vwx300, vwx400, app(app(ty_Either, dbg), dae)) -> new_esEs23(vwx300, vwx400, dbg, dae) new_primCompAux0(vwx185, EQ) -> vwx185 new_esEs29(vwx242, vwx245, ty_Bool) -> new_esEs20(vwx242, vwx245) new_esEs30(vwx243, vwx246, ty_@0) -> new_esEs24(vwx243, vwx246) new_esEs8(vwx301, vwx401, ty_Integer) -> new_esEs16(vwx301, vwx401) new_ltEs19(vwx244, vwx247, app(ty_Maybe, bhh)) -> new_ltEs6(vwx244, vwx247, bhh) new_compare12(Just(vwx300), Just(vwx400), baf) -> new_compare25(vwx300, vwx400, new_esEs4(vwx300, vwx400, baf), baf) new_compare29(vwx30, vwx40, ty_Char) -> new_compare6(vwx30, vwx40) new_esEs23(Right(vwx3000), Right(vwx4000), dbg, ty_@0) -> new_esEs24(vwx3000, vwx4000) new_ltEs19(vwx244, vwx247, app(app(ty_Either, caa), cab)) -> new_ltEs11(vwx244, vwx247, caa, cab) new_primEqInt(Neg(Succ(vwx30000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(vwx40000))) -> False new_esEs27(vwx1910, vwx1920, app(ty_[], fg)) -> new_esEs12(vwx1910, vwx1920, fg) new_esEs7(vwx300, vwx400, app(ty_Maybe, dhc)) -> new_esEs21(vwx300, vwx400, dhc) new_esEs23(Left(vwx3000), Left(vwx4000), ty_Ordering, dae) -> new_esEs14(vwx3000, vwx4000) new_esEs33(vwx3002, vwx4002, app(ty_[], efg)) -> new_esEs12(vwx3002, vwx4002, efg) new_primEqInt(Pos(Succ(vwx30000)), Pos(Succ(vwx40000))) -> new_primEqNat0(vwx30000, vwx40000) new_esEs9(vwx302, vwx402, app(app(ty_Either, ecc), ecd)) -> new_esEs23(vwx302, vwx402, ecc, ecd) new_lt21(vwx242, vwx245, app(app(ty_Either, bfg), bfh)) -> new_lt14(vwx242, vwx245, bfg, bfh) new_esEs29(vwx242, vwx245, ty_Char) -> new_esEs25(vwx242, vwx245) new_lt7(vwx1911, vwx1921, ty_Integer) -> new_lt4(vwx1911, vwx1921) new_ltEs6(Just(vwx1910), Just(vwx1920), app(app(ty_@2, bg), bh)) -> new_ltEs15(vwx1910, vwx1920, bg, bh) new_esEs29(vwx242, vwx245, app(app(ty_@2, cbb), cbc)) -> new_esEs17(vwx242, vwx245, cbb, cbc) new_ltEs18(vwx1912, vwx1922, app(app(ty_@2, bac), bad)) -> new_ltEs15(vwx1912, vwx1922, bac, bad) new_esEs30(vwx243, vwx246, ty_Bool) -> new_esEs20(vwx243, vwx246) new_ltEs23(vwx205, vwx206, app(ty_Ratio, fdc)) -> new_ltEs16(vwx205, vwx206, fdc) new_ltEs6(Nothing, Nothing, chg) -> True new_ltEs17(vwx191, vwx192) -> new_fsEs(new_compare8(vwx191, vwx192)) new_esEs36(vwx3001, vwx4001, ty_Int) -> new_esEs19(vwx3001, vwx4001) new_fsEs(vwx329) -> new_not(new_esEs14(vwx329, GT)) new_esEs11(vwx301, vwx401, app(app(ty_Either, dfa), dfb)) -> new_esEs23(vwx301, vwx401, dfa, dfb) new_primEqInt(Pos(Succ(vwx30000)), Neg(vwx4000)) -> False new_primEqInt(Neg(Succ(vwx30000)), Pos(vwx4000)) -> False new_esEs5(vwx300, vwx400, app(app(ty_@2, fbg), fbh)) -> new_esEs17(vwx300, vwx400, fbg, fbh) new_ltEs4(EQ, GT) -> True new_esEs10(vwx300, vwx400, ty_Double) -> new_esEs15(vwx300, vwx400) new_ltEs6(Just(vwx1910), Nothing, chg) -> False new_primCmpInt(Neg(Zero), Neg(Succ(vwx4000))) -> new_primCmpNat0(Succ(vwx4000), Zero) new_lt6(vwx1910, vwx1920, ty_Ordering) -> new_lt10(vwx1910, vwx1920) new_lt10(vwx242, vwx245) -> new_esEs14(new_compare9(vwx242, vwx245), LT) new_esEs8(vwx301, vwx401, app(ty_Ratio, eah)) -> new_esEs22(vwx301, vwx401, eah) new_esEs5(vwx300, vwx400, ty_Ordering) -> new_esEs14(vwx300, vwx400) new_ltEs11(Left(vwx1910), Left(vwx1920), app(ty_Ratio, fbd), cb) -> new_ltEs16(vwx1910, vwx1920, fbd) new_esEs6(vwx300, vwx400, ty_Int) -> new_esEs19(vwx300, vwx400) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_compare18(Right(vwx300), Left(vwx400), bde, bdf) -> GT new_esEs34(vwx255, vwx257, ty_Double) -> new_esEs15(vwx255, vwx257) new_ltEs18(vwx1912, vwx1922, ty_Int) -> new_ltEs12(vwx1912, vwx1922) new_esEs29(vwx242, vwx245, ty_Ordering) -> new_esEs14(vwx242, vwx245) new_esEs7(vwx300, vwx400, ty_Bool) -> new_esEs20(vwx300, vwx400) new_esEs38(vwx3000, vwx4000, ty_Char) -> new_esEs25(vwx3000, vwx4000) new_lt20(vwx243, vwx246, ty_Integer) -> new_lt4(vwx243, vwx246) new_ltEs19(vwx244, vwx247, ty_@0) -> new_ltEs17(vwx244, vwx247) new_esEs23(Right(vwx3000), Right(vwx4000), dbg, ty_Int) -> new_esEs19(vwx3000, vwx4000) new_esEs34(vwx255, vwx257, ty_Bool) -> new_esEs20(vwx255, vwx257) new_esEs7(vwx300, vwx400, ty_Float) -> new_esEs18(vwx300, vwx400) new_esEs11(vwx301, vwx401, ty_Double) -> new_esEs15(vwx301, vwx401) new_esEs13(vwx3000, vwx4000, app(app(app(ty_@3, cgb), cgc), cgd)) -> new_esEs26(vwx3000, vwx4000, cgb, cgc, cgd) new_compare29(vwx30, vwx40, ty_@0) -> new_compare8(vwx30, vwx40) new_esEs38(vwx3000, vwx4000, app(ty_Ratio, fdh)) -> new_esEs22(vwx3000, vwx4000, fdh) new_esEs38(vwx3000, vwx4000, app(app(app(ty_@3, fec), fed), fee)) -> new_esEs26(vwx3000, vwx4000, fec, fed, fee) new_compare112(vwx303, vwx304, vwx305, vwx306, False, ehh, faa) -> GT new_compare18(Left(vwx300), Left(vwx400), bde, bdf) -> new_compare27(vwx300, vwx400, new_esEs5(vwx300, vwx400, bde), bde, bdf) new_esEs23(Right(vwx3000), Right(vwx4000), dbg, ty_Char) -> new_esEs25(vwx3000, vwx4000) new_lt20(vwx243, vwx246, app(app(app(ty_@3, bha), bhb), bhc)) -> new_lt16(vwx243, vwx246, bha, bhb, bhc) new_lt7(vwx1911, vwx1921, app(app(ty_@2, hb), hc)) -> new_lt18(vwx1911, vwx1921, hb, hc) new_not(False) -> True new_esEs28(vwx1911, vwx1921, app(ty_[], ha)) -> new_esEs12(vwx1911, vwx1921, ha) new_esEs37(vwx1910, vwx1920, app(app(ty_Either, bbb), bbc)) -> new_esEs23(vwx1910, vwx1920, bbb, bbc) new_ltEs24(vwx191, vwx192, app(app(app(ty_@3, gb), eg), eh)) -> new_ltEs13(vwx191, vwx192, gb, eg, eh) new_esEs32(vwx3001, vwx4001, ty_Bool) -> new_esEs20(vwx3001, vwx4001) new_esEs28(vwx1911, vwx1921, ty_Float) -> new_esEs18(vwx1911, vwx1921) new_ltEs22(vwx1911, vwx1921, ty_Bool) -> new_ltEs10(vwx1911, vwx1921) new_compare1([], :(vwx40, vwx41), bdd) -> LT new_ltEs24(vwx191, vwx192, app(ty_Maybe, chg)) -> new_ltEs6(vwx191, vwx192, chg) new_lt21(vwx242, vwx245, app(ty_[], cba)) -> new_lt17(vwx242, vwx245, cba) new_esEs31(vwx3000, vwx4000, ty_Int) -> new_esEs19(vwx3000, vwx4000) new_ltEs6(Just(vwx1910), Just(vwx1920), app(app(ty_Either, ba), bb)) -> new_ltEs11(vwx1910, vwx1920, ba, bb) new_ltEs24(vwx191, vwx192, ty_Integer) -> new_ltEs9(vwx191, vwx192) new_esEs9(vwx302, vwx402, ty_Double) -> new_esEs15(vwx302, vwx402) new_esEs21(Just(vwx3000), Just(vwx4000), app(app(app(ty_@3, fba), fbb), fbc)) -> new_esEs26(vwx3000, vwx4000, fba, fbb, fbc) new_compare27(vwx198, vwx199, False, eab, bef) -> new_compare14(vwx198, vwx199, new_ltEs20(vwx198, vwx199, eab), eab, bef) new_primPlusNat0(Succ(vwx33500), Succ(vwx401000)) -> Succ(Succ(new_primPlusNat0(vwx33500, vwx401000))) new_esEs16(Integer(vwx3000), Integer(vwx4000)) -> new_primEqInt(vwx3000, vwx4000) new_ltEs11(Left(vwx1910), Left(vwx1920), ty_Int, cb) -> new_ltEs12(vwx1910, vwx1920) new_esEs4(vwx300, vwx400, app(ty_Ratio, dga)) -> new_esEs22(vwx300, vwx400, dga) new_esEs7(vwx300, vwx400, app(ty_[], dgh)) -> new_esEs12(vwx300, vwx400, dgh) new_esEs31(vwx3000, vwx4000, app(ty_Ratio, edg)) -> new_esEs22(vwx3000, vwx4000, edg) new_esEs10(vwx300, vwx400, app(ty_Maybe, dde)) -> new_esEs21(vwx300, vwx400, dde) new_ltEs21(vwx256, vwx258, app(app(ty_Either, cbf), cbg)) -> new_ltEs11(vwx256, vwx258, cbf, cbg) new_esEs11(vwx301, vwx401, ty_Integer) -> new_esEs16(vwx301, vwx401) new_compare27(vwx198, vwx199, True, eab, bef) -> EQ new_ltEs21(vwx256, vwx258, ty_Ordering) -> new_ltEs4(vwx256, vwx258) new_esEs10(vwx300, vwx400, ty_Ordering) -> new_esEs14(vwx300, vwx400) new_ltEs4(GT, LT) -> False new_esEs21(Just(vwx3000), Just(vwx4000), ty_Double) -> new_esEs15(vwx3000, vwx4000) new_esEs34(vwx255, vwx257, ty_Integer) -> new_esEs16(vwx255, vwx257) new_lt22(vwx255, vwx257, app(app(ty_@2, cdf), cdg)) -> new_lt18(vwx255, vwx257, cdf, cdg) new_lt23(vwx1910, vwx1920, ty_Double) -> new_lt8(vwx1910, vwx1920) new_lt18(vwx242, vwx245, cbb, cbc) -> new_esEs14(new_compare10(vwx242, vwx245, cbb, cbc), LT) new_esEs23(Right(vwx3000), Right(vwx4000), dbg, app(ty_[], dbh)) -> new_esEs12(vwx3000, vwx4000, dbh) new_esEs4(vwx300, vwx400, ty_@0) -> new_esEs24(vwx300, vwx400) new_esEs28(vwx1911, vwx1921, app(app(app(ty_@3, gf), gg), gh)) -> new_esEs26(vwx1911, vwx1921, gf, gg, gh) new_esEs28(vwx1911, vwx1921, app(ty_Ratio, dab)) -> new_esEs22(vwx1911, vwx1921, dab) new_ltEs8(vwx191, vwx192) -> new_fsEs(new_compare11(vwx191, vwx192)) new_lt7(vwx1911, vwx1921, ty_Ordering) -> new_lt10(vwx1911, vwx1921) new_esEs4(vwx300, vwx400, ty_Char) -> new_esEs25(vwx300, vwx400) new_ltEs11(Left(vwx1910), Left(vwx1920), app(ty_Maybe, ca), cb) -> new_ltEs6(vwx1910, vwx1920, ca) new_lt8(vwx242, vwx245) -> new_esEs14(new_compare17(vwx242, vwx245), LT) new_compare29(vwx30, vwx40, ty_Float) -> new_compare11(vwx30, vwx40) new_lt23(vwx1910, vwx1920, ty_@0) -> new_lt5(vwx1910, vwx1920) new_esEs21(Just(vwx3000), Just(vwx4000), ty_Char) -> new_esEs25(vwx3000, vwx4000) new_esEs11(vwx301, vwx401, ty_Bool) -> new_esEs20(vwx301, vwx401) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_ltEs11(Right(vwx1910), Right(vwx1920), dd, ty_Integer) -> new_ltEs9(vwx1910, vwx1920) new_esEs13(vwx3000, vwx4000, app(ty_Maybe, cff)) -> new_esEs21(vwx3000, vwx4000, cff) new_esEs13(vwx3000, vwx4000, ty_Char) -> new_esEs25(vwx3000, vwx4000) new_ltEs18(vwx1912, vwx1922, app(ty_Ratio, dac)) -> new_ltEs16(vwx1912, vwx1922, dac) new_ltEs22(vwx1911, vwx1921, app(app(app(ty_@3, bcf), bcg), bch)) -> new_ltEs13(vwx1911, vwx1921, bcf, bcg, bch) new_ltEs18(vwx1912, vwx1922, ty_Bool) -> new_ltEs10(vwx1912, vwx1922) new_ltEs23(vwx205, vwx206, ty_Double) -> new_ltEs7(vwx205, vwx206) new_esEs32(vwx3001, vwx4001, app(ty_[], eee)) -> new_esEs12(vwx3001, vwx4001, eee) new_ltEs9(vwx191, vwx192) -> new_fsEs(new_compare7(vwx191, vwx192)) new_esEs18(Float(vwx3000, vwx3001), Float(vwx4000, vwx4001)) -> new_esEs19(new_sr(vwx3000, vwx4001), new_sr(vwx3001, vwx4000)) new_esEs14(LT, LT) -> True new_esEs33(vwx3002, vwx4002, app(ty_Maybe, egb)) -> new_esEs21(vwx3002, vwx4002, egb) new_compare11(Float(vwx300, Neg(vwx3010)), Float(vwx400, Neg(vwx4010))) -> new_compare28(new_sr(vwx300, Neg(vwx4010)), new_sr(Neg(vwx3010), vwx400)) new_lt20(vwx243, vwx246, ty_@0) -> new_lt5(vwx243, vwx246) new_esEs14(LT, EQ) -> False new_esEs14(EQ, LT) -> False new_esEs39(vwx3001, vwx4001, app(app(ty_@2, feg), feh)) -> new_esEs17(vwx3001, vwx4001, feg, feh) new_esEs9(vwx302, vwx402, app(ty_Maybe, eca)) -> new_esEs21(vwx302, vwx402, eca) new_esEs21(Just(vwx3000), Just(vwx4000), ty_Integer) -> new_esEs16(vwx3000, vwx4000) new_esEs39(vwx3001, vwx4001, ty_Float) -> new_esEs18(vwx3001, vwx4001) new_esEs23(Right(vwx3000), Right(vwx4000), dbg, app(ty_Ratio, dcd)) -> new_esEs22(vwx3000, vwx4000, dcd) new_ltEs22(vwx1911, vwx1921, ty_Char) -> new_ltEs5(vwx1911, vwx1921) new_esEs31(vwx3000, vwx4000, app(ty_[], edc)) -> new_esEs12(vwx3000, vwx4000, edc) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs37(vwx1910, vwx1920, ty_@0) -> new_esEs24(vwx1910, vwx1920) new_ltEs23(vwx205, vwx206, app(app(ty_Either, ceb), cec)) -> new_ltEs11(vwx205, vwx206, ceb, cec) new_esEs5(vwx300, vwx400, app(ty_[], fbf)) -> new_esEs12(vwx300, vwx400, fbf) new_ltEs6(Just(vwx1910), Just(vwx1920), app(app(app(ty_@3, bc), bd), be)) -> new_ltEs13(vwx1910, vwx1920, bc, bd, be) new_esEs30(vwx243, vwx246, ty_Float) -> new_esEs18(vwx243, vwx246) new_ltEs11(Left(vwx1910), Left(vwx1920), app(app(app(ty_@3, ce), cf), cg), cb) -> new_ltEs13(vwx1910, vwx1920, ce, cf, cg) new_esEs9(vwx302, vwx402, ty_Int) -> new_esEs19(vwx302, vwx402) new_esEs27(vwx1910, vwx1920, ty_Char) -> new_esEs25(vwx1910, vwx1920) new_ltEs16(vwx191, vwx192, ehb) -> new_fsEs(new_compare19(vwx191, vwx192, ehb)) new_compare26(vwx242, vwx243, vwx244, vwx245, vwx246, vwx247, True, bgd, bhg, bgf) -> EQ new_esEs31(vwx3000, vwx4000, ty_Ordering) -> new_esEs14(vwx3000, vwx4000) new_esEs20(True, True) -> True new_ltEs11(Left(vwx1910), Left(vwx1920), app(ty_[], da), cb) -> new_ltEs14(vwx1910, vwx1920, da) new_esEs25(Char(vwx3000), Char(vwx4000)) -> new_primEqNat0(vwx3000, vwx4000) new_primCmpNat0(Succ(vwx3000), Succ(vwx4000)) -> new_primCmpNat0(vwx3000, vwx4000) new_lt23(vwx1910, vwx1920, ty_Ordering) -> new_lt10(vwx1910, vwx1920) new_ltEs11(Left(vwx1910), Left(vwx1920), ty_Float, cb) -> new_ltEs8(vwx1910, vwx1920) new_lt21(vwx242, vwx245, ty_@0) -> new_lt5(vwx242, vwx245) new_ltEs11(Left(vwx1910), Left(vwx1920), app(app(ty_@2, db), dc), cb) -> new_ltEs15(vwx1910, vwx1920, db, dc) new_ltEs6(Just(vwx1910), Just(vwx1920), app(ty_[], bf)) -> new_ltEs14(vwx1910, vwx1920, bf) new_esEs30(vwx243, vwx246, app(ty_[], bhd)) -> new_esEs12(vwx243, vwx246, bhd) new_ltEs20(vwx198, vwx199, ty_Ordering) -> new_ltEs4(vwx198, vwx199) new_esEs11(vwx301, vwx401, app(ty_Maybe, deg)) -> new_esEs21(vwx301, vwx401, deg) new_esEs34(vwx255, vwx257, ty_Int) -> new_esEs19(vwx255, vwx257) new_esEs33(vwx3002, vwx4002, ty_Ordering) -> new_esEs14(vwx3002, vwx4002) new_esEs15(Double(vwx3000, vwx3001), Double(vwx4000, vwx4001)) -> new_esEs19(new_sr(vwx3000, vwx4001), new_sr(vwx3001, vwx4000)) new_esEs27(vwx1910, vwx1920, app(app(ty_@2, fh), ga)) -> new_esEs17(vwx1910, vwx1920, fh, ga) new_esEs11(vwx301, vwx401, ty_Int) -> new_esEs19(vwx301, vwx401) new_esEs36(vwx3001, vwx4001, ty_Integer) -> new_esEs16(vwx3001, vwx4001) new_esEs4(vwx300, vwx400, app(app(app(ty_@3, dgb), dgc), dgd)) -> new_esEs26(vwx300, vwx400, dgb, dgc, dgd) new_ltEs21(vwx256, vwx258, app(ty_Ratio, ehg)) -> new_ltEs16(vwx256, vwx258, ehg) new_compare6(Char(vwx300), Char(vwx400)) -> new_primCmpNat0(vwx300, vwx400) new_esEs39(vwx3001, vwx4001, ty_@0) -> new_esEs24(vwx3001, vwx4001) new_esEs12([], [], cfb) -> True new_compare29(vwx30, vwx40, ty_Integer) -> new_compare7(vwx30, vwx40) new_lt22(vwx255, vwx257, ty_@0) -> new_lt5(vwx255, vwx257) new_esEs6(vwx300, vwx400, app(ty_Ratio, cha)) -> new_esEs22(vwx300, vwx400, cha) new_ltEs11(Right(vwx1910), Right(vwx1920), dd, ty_Double) -> new_ltEs7(vwx1910, vwx1920) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs13(vwx3000, vwx4000, ty_Integer) -> new_esEs16(vwx3000, vwx4000) new_ltEs6(Just(vwx1910), Just(vwx1920), ty_Integer) -> new_ltEs9(vwx1910, vwx1920) new_compare8(@0, @0) -> EQ new_esEs37(vwx1910, vwx1920, app(app(ty_@2, bbh), bca)) -> new_esEs17(vwx1910, vwx1920, bbh, bca) new_esEs8(vwx301, vwx401, ty_Int) -> new_esEs19(vwx301, vwx401) new_compare9(EQ, EQ) -> EQ new_compare19(:%(vwx300, vwx301), :%(vwx400, vwx401), ty_Int) -> new_compare28(new_sr(vwx300, vwx401), new_sr(vwx400, vwx301)) new_esEs13(vwx3000, vwx4000, ty_Double) -> new_esEs15(vwx3000, vwx4000) new_esEs9(vwx302, vwx402, ty_Bool) -> new_esEs20(vwx302, vwx402) new_esEs33(vwx3002, vwx4002, ty_Int) -> new_esEs19(vwx3002, vwx4002) new_ltEs19(vwx244, vwx247, ty_Ordering) -> new_ltEs4(vwx244, vwx247) new_primEqNat0(Zero, Zero) -> True new_esEs23(Right(vwx3000), Right(vwx4000), dbg, ty_Integer) -> new_esEs16(vwx3000, vwx4000) new_esEs5(vwx300, vwx400, ty_Float) -> new_esEs18(vwx300, vwx400) new_compare29(vwx30, vwx40, ty_Ordering) -> new_compare9(vwx30, vwx40) new_ltEs19(vwx244, vwx247, ty_Bool) -> new_ltEs10(vwx244, vwx247) new_lt23(vwx1910, vwx1920, app(app(ty_@2, bbh), bca)) -> new_lt18(vwx1910, vwx1920, bbh, bca) new_ltEs20(vwx198, vwx199, app(ty_Ratio, eac)) -> new_ltEs16(vwx198, vwx199, eac) new_esEs35(vwx3000, vwx4000, ty_Integer) -> new_esEs16(vwx3000, vwx4000) new_ltEs24(vwx191, vwx192, ty_Double) -> new_ltEs7(vwx191, vwx192) new_ltEs6(Just(vwx1910), Just(vwx1920), ty_Double) -> new_ltEs7(vwx1910, vwx1920) new_esEs38(vwx3000, vwx4000, app(app(ty_@2, fde), fdf)) -> new_esEs17(vwx3000, vwx4000, fde, fdf) new_compare110(vwx271, vwx272, True, eha) -> LT new_compare14(vwx278, vwx279, False, ehd, ehe) -> GT new_ltEs4(GT, GT) -> True new_esEs27(vwx1910, vwx1920, ty_@0) -> new_esEs24(vwx1910, vwx1920) new_compare17(Double(vwx300, Pos(vwx3010)), Double(vwx400, Pos(vwx4010))) -> new_compare28(new_sr(vwx300, Pos(vwx4010)), new_sr(Pos(vwx3010), vwx400)) new_esEs23(Right(vwx3000), Right(vwx4000), dbg, app(app(app(ty_@3, dcg), dch), dda)) -> new_esEs26(vwx3000, vwx4000, dcg, dch, dda) new_asAs(False, vwx294) -> False new_esEs34(vwx255, vwx257, app(ty_Maybe, ccf)) -> new_esEs21(vwx255, vwx257, ccf) new_ltEs21(vwx256, vwx258, ty_Char) -> new_ltEs5(vwx256, vwx258) new_ltEs22(vwx1911, vwx1921, app(app(ty_Either, bcd), bce)) -> new_ltEs11(vwx1911, vwx1921, bcd, bce) new_esEs21(Just(vwx3000), Just(vwx4000), app(app(ty_Either, fag), fah)) -> new_esEs23(vwx3000, vwx4000, fag, fah) new_lt6(vwx1910, vwx1920, ty_@0) -> new_lt5(vwx1910, vwx1920) new_esEs8(vwx301, vwx401, ty_Ordering) -> new_esEs14(vwx301, vwx401) new_compare29(vwx30, vwx40, ty_Bool) -> new_compare30(vwx30, vwx40) new_ltEs22(vwx1911, vwx1921, app(ty_Maybe, bcc)) -> new_ltEs6(vwx1911, vwx1921, bcc) new_esEs6(vwx300, vwx400, app(ty_[], cge)) -> new_esEs12(vwx300, vwx400, cge) new_ltEs20(vwx198, vwx199, ty_Bool) -> new_ltEs10(vwx198, vwx199) new_esEs5(vwx300, vwx400, app(ty_Ratio, fcb)) -> new_esEs22(vwx300, vwx400, fcb) new_ltEs23(vwx205, vwx206, app(ty_[], ceg)) -> new_ltEs14(vwx205, vwx206, ceg) new_esEs38(vwx3000, vwx4000, ty_@0) -> new_esEs24(vwx3000, vwx4000) new_esEs26(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), dgb, dgc, dgd) -> new_asAs(new_esEs31(vwx3000, vwx4000, dgb), new_asAs(new_esEs32(vwx3001, vwx4001, dgc), new_esEs33(vwx3002, vwx4002, dgd))) new_esEs23(Left(vwx3000), Left(vwx4000), ty_Float, dae) -> new_esEs18(vwx3000, vwx4000) new_esEs23(Right(vwx3000), Right(vwx4000), dbg, ty_Double) -> new_esEs15(vwx3000, vwx4000) new_esEs10(vwx300, vwx400, ty_Int) -> new_esEs19(vwx300, vwx400) new_esEs27(vwx1910, vwx1920, app(app(app(ty_@3, fc), fd), ff)) -> new_esEs26(vwx1910, vwx1920, fc, fd, ff) new_esEs29(vwx242, vwx245, ty_Float) -> new_esEs18(vwx242, vwx245) new_esEs29(vwx242, vwx245, app(ty_Ratio, dge)) -> new_esEs22(vwx242, vwx245, dge) new_esEs32(vwx3001, vwx4001, ty_Ordering) -> new_esEs14(vwx3001, vwx4001) new_lt19(vwx242, vwx245, dge) -> new_esEs14(new_compare19(vwx242, vwx245, dge), LT) The set Q consists of the following terms: new_esEs14(EQ, EQ) new_esEs32(x0, x1, ty_Float) new_lt23(x0, x1, ty_Char) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare26(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs30(x0, x1, ty_Int) new_compare29(x0, x1, app(ty_[], x2)) new_esEs23(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs11(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_lt6(x0, x1, ty_Float) new_esEs34(x0, x1, ty_Ordering) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Nothing, Just(x0), x1) new_ltEs22(x0, x1, app(ty_[], x2)) new_ltEs11(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, ty_Bool) new_lt22(x0, x1, ty_Integer) new_ltEs4(LT, LT) new_primPlusNat1(Succ(x0), x1) new_esEs8(x0, x1, ty_Float) new_esEs13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs34(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs23(Right(x0), Right(x1), x2, ty_Char) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_compare17(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_ltEs19(x0, x1, ty_Bool) new_lt20(x0, x1, ty_Integer) new_lt22(x0, x1, ty_Bool) new_esEs23(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11(x0, x1, ty_Ordering) new_esEs34(x0, x1, ty_Int) new_compare27(x0, x1, False, x2, x3) new_asAs(False, x0) new_esEs9(x0, x1, ty_Float) new_ltEs19(x0, x1, ty_Integer) new_ltEs24(x0, x1, ty_Float) new_ltEs11(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_lt21(x0, x1, ty_Bool) new_ltEs11(Left(x0), Right(x1), x2, x3) new_ltEs11(Right(x0), Left(x1), x2, x3) new_lt20(x0, x1, ty_@0) new_compare1(:(x0, x1), [], x2) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs11(x0, x1, ty_Int) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs10(x0, x1, ty_Double) new_esEs5(x0, x1, ty_Float) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_ltEs11(Left(x0), Left(x1), ty_Integer, x2) new_esEs21(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_lt22(x0, x1, ty_@0) new_lt23(x0, x1, ty_Int) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(x0, x1, ty_Ordering) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(False, True) new_esEs20(True, False) new_esEs4(x0, x1, ty_Double) new_esEs34(x0, x1, ty_Char) new_esEs34(x0, x1, ty_Double) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, ty_Ordering) new_esEs11(x0, x1, ty_Char) new_esEs5(x0, x1, ty_Integer) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs23(Right(x0), Right(x1), x2, ty_Int) new_ltEs11(Left(x0), Left(x1), ty_Float, x2) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, ty_Bool) new_compare16(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs23(Right(x0), Right(x1), x2, ty_@0) new_primEqInt(Neg(Zero), Neg(Zero)) new_compare6(Char(x0), Char(x1)) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_compare24(x0, x1, x2, x3, False, x4, x5) new_esEs39(x0, x1, ty_Double) new_esEs11(x0, x1, ty_Double) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare17(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs4(x0, x1, ty_Int) new_esEs25(Char(x0), Char(x1)) new_lt21(x0, x1, ty_Int) new_esEs23(Left(x0), Left(x1), ty_Double, x2) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs22(x0, x1, ty_@0) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_Float) new_esEs10(x0, x1, ty_Int) new_esEs36(x0, x1, ty_Integer) new_lt23(x0, x1, ty_Bool) new_ltEs7(x0, x1) new_esEs23(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs37(x0, x1, app(ty_[], x2)) new_compare13(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_lt4(x0, x1) new_esEs7(x0, x1, ty_Float) new_esEs8(x0, x1, ty_Integer) new_pePe(True, x0) new_esEs23(Left(x0), Left(x1), ty_Ordering, x2) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, app(ty_[], x2)) new_lt7(x0, x1, ty_Float) new_ltEs15(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, app(ty_[], x2)) new_ltEs11(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs11(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs13(x0, x1, ty_Ordering) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_compare18(Left(x0), Right(x1), x2, x3) new_compare18(Right(x0), Left(x1), x2, x3) new_ltEs23(x0, x1, ty_Double) new_ltEs10(False, False) new_compare29(x0, x1, ty_Ordering) new_esEs29(x0, x1, app(ty_[], x2)) new_ltEs5(x0, x1) new_ltEs24(x0, x1, ty_Integer) new_lt23(x0, x1, ty_Ordering) new_compare113(x0, x1, False, x2, x3) new_esEs39(x0, x1, ty_Ordering) new_esEs23(Right(x0), Right(x1), x2, ty_Double) new_esEs34(x0, x1, ty_@0) new_esEs27(x0, x1, ty_Float) new_compare18(Left(x0), Left(x1), x2, x3) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_lt6(x0, x1, ty_Integer) new_primMulInt(Pos(x0), Pos(x1)) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_primPlusNat0(Zero, Succ(x0)) new_compare9(LT, LT) new_compare30(True, False) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_compare30(False, True) new_ltEs21(x0, x1, ty_Float) new_lt23(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, ty_Char) new_lt21(x0, x1, ty_Double) new_esEs5(x0, x1, ty_Bool) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt21(x0, x1, ty_Char) new_compare8(@0, @0) new_ltEs4(GT, EQ) new_ltEs4(EQ, GT) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs6(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, ty_@0) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, ty_Float) new_esEs4(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_lt23(x0, x1, ty_Integer) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Int) new_esEs23(Right(x0), Right(x1), x2, ty_Bool) new_lt21(x0, x1, ty_@0) new_compare210(x0, x1, False, x2, x3) new_esEs31(x0, x1, ty_Integer) new_ltEs11(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_compare24(x0, x1, x2, x3, True, x4, x5) new_ltEs11(Left(x0), Left(x1), ty_Bool, x2) new_esEs20(False, False) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, ty_Float) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs33(x0, x1, ty_Integer) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_esEs6(x0, x1, ty_Ordering) new_esEs8(x0, x1, ty_@0) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(Just(x0), Just(x1), ty_Int) new_esEs28(x0, x1, ty_Ordering) new_lt6(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, ty_Bool) new_lt6(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs38(x0, x1, ty_Char) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_lt7(x0, x1, ty_Integer) new_compare10(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs18(x0, x1, ty_Float) new_lt19(x0, x1, x2) new_primCmpNat0(Zero, Succ(x0)) new_esEs32(x0, x1, ty_@0) new_ltEs24(x0, x1, ty_@0) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, ty_Double) new_compare12(Nothing, Just(x0), x1) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs38(x0, x1, ty_Int) new_ltEs6(Just(x0), Just(x1), ty_Integer) new_lt6(x0, x1, ty_@0) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs9(x0, x1, ty_Integer) new_ltEs4(EQ, LT) new_ltEs4(LT, EQ) new_esEs16(Integer(x0), Integer(x1)) new_ltEs11(Left(x0), Left(x1), ty_Char, x2) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs21(Nothing, Nothing, x0) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, ty_Ordering) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs4(GT, GT) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs21(Just(x0), Just(x1), ty_Ordering) new_esEs37(x0, x1, ty_Int) new_ltEs23(x0, x1, ty_Char) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs9(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Float) new_lt11(x0, x1) new_ltEs23(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, app(ty_Maybe, x2)) new_primPlusNat1(Zero, x0) new_lt22(x0, x1, ty_Double) new_esEs11(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, ty_Char) new_esEs14(LT, EQ) new_esEs14(EQ, LT) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs31(x0, x1, ty_Char) new_compare1([], :(x0, x1), x2) new_esEs7(x0, x1, ty_@0) new_esEs37(x0, x1, ty_Ordering) new_esEs5(x0, x1, ty_@0) new_lt16(x0, x1, x2, x3, x4) new_esEs10(x0, x1, ty_Char) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_ltEs11(Left(x0), Left(x1), ty_Int, x2) new_compare18(Right(x0), Right(x1), x2, x3) new_esEs4(x0, x1, ty_Char) new_lt20(x0, x1, ty_Double) new_esEs39(x0, x1, ty_Bool) new_esEs10(x0, x1, ty_Bool) new_lt21(x0, x1, app(ty_Ratio, x2)) new_ltEs21(x0, x1, ty_Bool) new_esEs23(Right(x0), Right(x1), x2, ty_Integer) new_lt7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs18(x0, x1, ty_Int) new_esEs23(Left(x0), Left(x1), ty_Int, x2) new_esEs14(GT, GT) new_esEs30(x0, x1, ty_Integer) new_esEs22(:%(x0, x1), :%(x2, x3), x4) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_ltEs23(x0, x1, ty_Int) new_esEs23(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_compare14(x0, x1, True, x2, x3) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_lt5(x0, x1) new_esEs21(Just(x0), Just(x1), ty_Char) new_esEs34(x0, x1, ty_Bool) new_esEs37(x0, x1, ty_Float) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs31(x0, x1, ty_Bool) new_compare12(Nothing, Nothing, x0) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_esEs27(x0, x1, ty_Double) new_esEs23(Right(x0), Right(x1), x2, ty_Ordering) new_primCompAux1(x0, x1, x2, x3) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs23(Left(x0), Left(x1), ty_Char, x2) new_esEs28(x0, x1, ty_Double) new_ltEs18(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Double) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_compare9(GT, GT) new_primCompAux0(x0, EQ) new_sr(x0, x1) new_compare9(EQ, LT) new_compare9(LT, EQ) new_esEs39(x0, x1, ty_Int) new_compare11(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_primMulNat0(Succ(x0), Succ(x1)) new_lt23(x0, x1, ty_Float) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs31(x0, x1, ty_Int) new_lt13(x0, x1, x2) new_esEs23(Left(x0), Left(x1), ty_Float, x2) new_compare11(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs10(x0, x1, app(ty_[], x2)) new_compare210(x0, x1, True, x2, x3) new_ltEs23(x0, x1, ty_Float) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, ty_@0) new_ltEs11(Right(x0), Right(x1), x2, ty_Ordering) new_esEs39(x0, x1, app(ty_[], x2)) new_ltEs11(Right(x0), Right(x1), x2, ty_Integer) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_lt7(x0, x1, app(ty_Ratio, x2)) new_esEs5(x0, x1, ty_Ordering) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs4(x0, x1, ty_Integer) new_esEs24(@0, @0) new_compare29(x0, x1, ty_@0) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_esEs10(x0, x1, ty_Ordering) new_esEs38(x0, x1, ty_Ordering) new_compare110(x0, x1, True, x2) new_ltEs6(Just(x0), Just(x1), ty_@0) new_lt21(x0, x1, ty_Integer) new_esEs14(LT, LT) new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs13(x0, x1, ty_@0) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(x0, x1, ty_Double) new_lt7(x0, x1, ty_Bool) new_compare30(False, False) new_esEs6(x0, x1, ty_@0) new_esEs4(x0, x1, ty_Bool) new_lt6(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, ty_Char) new_lt21(x0, x1, ty_Ordering) new_compare9(EQ, EQ) new_esEs31(x0, x1, ty_Float) new_compare111(x0, x1, x2, x3, True, x4, x5, x6) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_lt12(x0, x1) new_esEs39(x0, x1, ty_Float) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare27(x0, x1, True, x2, x3) new_esEs37(x0, x1, ty_Bool) new_primCompAux0(x0, LT) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_compare17(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare17(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_compare29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs31(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs6(Just(x0), Just(x1), app(ty_[], x2)) new_esEs37(x0, x1, ty_Char) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, ty_Integer) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_compare29(x0, x1, ty_Double) new_compare13(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs12(:(x0, x1), :(x2, x3), x4) new_esEs10(x0, x1, ty_Integer) new_esEs38(x0, x1, ty_Integer) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, ty_Bool) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs13(x0, x1, ty_Double) new_primPlusNat0(Succ(x0), Succ(x1)) new_esEs34(x0, x1, ty_Integer) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_ltEs11(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs18(x0, x1, ty_@0) new_esEs37(x0, x1, ty_Integer) new_lt23(x0, x1, app(ty_Maybe, x2)) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, ty_Bool) new_esEs8(x0, x1, ty_Double) new_lt6(x0, x1, ty_Ordering) new_ltEs6(Nothing, Nothing, x0) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Just(x0), Just(x1), ty_Integer) new_compare15(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs6(Just(x0), Just(x1), ty_Int) new_ltEs23(x0, x1, ty_Integer) new_primCompAux0(x0, GT) new_esEs32(x0, x1, ty_Double) new_esEs29(x0, x1, ty_@0) new_esEs11(x0, x1, ty_Float) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, ty_Ordering) new_esEs33(x0, x1, ty_Char) new_ltEs24(x0, x1, ty_Double) new_compare12(Just(x0), Just(x1), x2) new_ltEs19(x0, x1, app(ty_[], x2)) new_primMulNat0(Zero, Succ(x0)) new_esEs28(x0, x1, ty_@0) new_compare9(GT, LT) new_ltEs6(Just(x0), Just(x1), ty_Ordering) new_compare9(LT, GT) new_primMulNat0(Zero, Zero) new_esEs8(x0, x1, ty_Ordering) new_ltEs18(x0, x1, ty_Bool) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, ty_Int) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_fsEs(x0) new_esEs33(x0, x1, ty_Int) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_lt22(x0, x1, app(ty_Ratio, x2)) new_esEs13(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, ty_@0) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, ty_Float) new_ltEs21(x0, x1, ty_Ordering) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(x0, x1, ty_Double) new_ltEs21(x0, x1, ty_Char) new_compare1([], [], x0) new_ltEs6(Just(x0), Just(x1), ty_Double) new_compare29(x0, x1, ty_Integer) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs23(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_primPlusNat0(Succ(x0), Zero) new_lt7(x0, x1, ty_Ordering) new_compare29(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, ty_Float) new_esEs31(x0, x1, ty_Double) new_ltEs10(True, False) new_ltEs10(False, True) new_ltEs24(x0, x1, ty_Ordering) new_lt6(x0, x1, app(app(ty_Either, x2), x3)) new_compare111(x0, x1, x2, x3, False, x4, x5, x6) new_esEs9(x0, x1, ty_Char) new_esEs33(x0, x1, ty_Double) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs21(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, ty_Int) new_esEs21(Just(x0), Just(x1), ty_Bool) new_esEs27(x0, x1, ty_Bool) new_lt6(x0, x1, ty_Int) new_esEs9(x0, x1, ty_Ordering) new_esEs38(x0, x1, ty_Bool) new_lt7(x0, x1, ty_Double) new_lt6(x0, x1, ty_Char) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_lt7(x0, x1, app(app(ty_@2, x2), x3)) new_esEs29(x0, x1, ty_Bool) new_compare29(x0, x1, ty_Float) new_ltEs24(x0, x1, ty_Int) new_esEs7(x0, x1, ty_Double) new_lt7(x0, x1, ty_Int) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, ty_Int) new_lt23(x0, x1, app(ty_Ratio, x2)) new_lt7(x0, x1, ty_Char) new_esEs27(x0, x1, ty_Char) new_compare12(Just(x0), Nothing, x1) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs9(x0, x1, ty_Int) new_lt6(x0, x1, ty_Double) new_lt21(x0, x1, app(ty_[], x2)) new_ltEs21(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_Char) new_compare112(x0, x1, x2, x3, False, x4, x5) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_primPlusNat0(Zero, Zero) new_ltEs4(LT, GT) new_ltEs4(GT, LT) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_lt18(x0, x1, x2, x3) new_ltEs23(x0, x1, ty_@0) new_ltEs6(Just(x0), Just(x1), ty_Char) new_esEs23(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_not(True) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs18(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs38(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_@0) new_esEs8(x0, x1, ty_Char) new_esEs27(x0, x1, ty_Int) new_esEs23(Left(x0), Left(x1), ty_Bool, x2) new_compare19(:%(x0, x1), :%(x2, x3), ty_Int) new_ltEs24(x0, x1, ty_Char) new_lt7(x0, x1, ty_@0) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, ty_Char) new_esEs13(x0, x1, app(ty_[], x2)) new_compare113(x0, x1, True, x2, x3) new_esEs21(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs22(x0, x1, ty_Double) new_ltEs11(Right(x0), Right(x1), x2, ty_Int) new_compare29(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs18(x0, x1, ty_Integer) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs11(Left(x0), Left(x1), ty_Double, x2) new_lt7(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, ty_Int) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs8(x0, x1) new_esEs21(Just(x0), Just(x1), ty_@0) new_esEs32(x0, x1, ty_Char) new_lt6(x0, x1, app(ty_Ratio, x2)) new_esEs14(EQ, GT) new_esEs14(GT, EQ) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs12([], :(x0, x1), x2) new_ltEs11(Right(x0), Right(x1), x2, ty_Bool) new_esEs5(x0, x1, ty_Int) new_compare28(x0, x1) new_esEs23(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs19(x0, x1) new_esEs13(x0, x1, app(ty_Maybe, x2)) new_ltEs21(x0, x1, ty_@0) new_compare25(x0, x1, True, x2) new_esEs5(x0, x1, ty_Double) new_esEs10(x0, x1, ty_Float) new_esEs32(x0, x1, ty_Int) new_compare7(Integer(x0), Integer(x1)) new_lt21(x0, x1, ty_Float) new_esEs33(x0, x1, ty_Ordering) new_compare110(x0, x1, False, x2) new_esEs38(x0, x1, app(ty_[], x2)) new_esEs21(Just(x0), Just(x1), ty_Float) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_ltEs11(Right(x0), Right(x1), x2, ty_Double) new_ltEs11(Right(x0), Right(x1), x2, ty_@0) new_ltEs6(Just(x0), Just(x1), app(ty_Maybe, x2)) new_ltEs4(EQ, EQ) new_esEs5(x0, x1, ty_Char) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_esEs6(x0, x1, ty_Integer) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_esEs11(x0, x1, ty_Integer) new_esEs23(Left(x0), Left(x1), ty_Integer, x2) new_ltEs19(x0, x1, ty_Double) new_esEs28(x0, x1, ty_Integer) new_lt20(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, ty_Bool) new_esEs39(x0, x1, ty_Integer) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs6(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs13(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, ty_Ordering) new_esEs38(x0, x1, ty_Float) new_primCmpNat0(Succ(x0), Zero) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs11(Right(x0), Right(x1), x2, ty_Char) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_esEs34(x0, x1, ty_Float) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, ty_Bool) new_ltEs22(x0, x1, ty_Char) new_asAs(True, x0) new_compare26(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs8(x0, x1, app(ty_[], x2)) new_esEs17(@2(x0, x1), @2(x2, x3), x4, x5) new_lt6(x0, x1, ty_Bool) new_primEqNat0(Succ(x0), Zero) new_ltEs14(x0, x1, x2) new_ltEs16(x0, x1, x2) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_lt22(x0, x1, ty_Int) new_ltEs19(x0, x1, ty_Ordering) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, ty_Ordering) new_esEs28(x0, x1, ty_Float) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, ty_Integer) new_compare9(GT, EQ) new_compare9(EQ, GT) new_esEs20(True, True) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_ltEs18(x0, x1, ty_Ordering) new_primEqNat0(Zero, Succ(x0)) new_lt20(x0, x1, ty_Float) new_lt9(x0, x1) new_esEs23(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs24(x0, x1, ty_Bool) new_ltEs6(Just(x0), Just(x1), ty_Bool) new_ltEs11(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_compare29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt14(x0, x1, x2, x3) new_esEs10(x0, x1, ty_@0) new_sr0(Integer(x0), Integer(x1)) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, ty_Bool) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, ty_@0) new_esEs11(x0, x1, ty_@0) new_ltEs22(x0, x1, ty_Int) new_compare1(:(x0, x1), :(x2, x3), x4) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_ltEs11(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, ty_@0) new_lt10(x0, x1) new_lt20(x0, x1, ty_Char) new_lt21(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_ltEs11(Right(x0), Right(x1), x2, ty_Float) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_esEs21(Just(x0), Just(x1), ty_Double) new_esEs33(x0, x1, ty_Bool) new_esEs13(x0, x1, ty_Integer) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_lt7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs11(Left(x0), Left(x1), ty_@0, x2) new_lt17(x0, x1, x2) new_esEs28(x0, x1, ty_Int) new_esEs4(x0, x1, ty_@0) new_lt22(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, ty_Int) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_esEs35(x0, x1, ty_Int) new_esEs9(x0, x1, ty_@0) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_Char) new_esEs6(x0, x1, ty_Bool) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs6(Nothing, Just(x0), x1) new_ltEs21(x0, x1, app(ty_[], x2)) new_lt7(x0, x1, app(ty_Maybe, x2)) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_compare30(True, True) new_lt20(x0, x1, ty_Int) new_ltEs11(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs23(x0, x1, ty_Ordering) new_esEs38(x0, x1, ty_Double) new_esEs7(x0, x1, ty_Char) new_esEs14(LT, GT) new_esEs14(GT, LT) new_lt22(x0, x1, app(ty_Maybe, x2)) new_lt22(x0, x1, ty_Char) new_lt6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs18(x0, x1, ty_Double) new_esEs13(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt8(x0, x1) new_esEs12([], [], x0) new_esEs33(x0, x1, app(ty_[], x2)) new_primEqNat0(Zero, Zero) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_lt23(x0, x1, ty_Double) new_ltEs11(Left(x0), Left(x1), ty_Ordering, x2) new_esEs21(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs13(x0, x1, ty_Bool) new_esEs15(Double(x0, x1), Double(x2, x3)) new_compare29(x0, x1, app(ty_Ratio, x2)) new_not(False) new_ltEs12(x0, x1) new_esEs36(x0, x1, ty_Int) new_esEs27(x0, x1, ty_Integer) new_compare29(x0, x1, ty_Bool) new_esEs12(:(x0, x1), [], x2) new_esEs21(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs13(x0, x1, ty_Float) new_ltEs11(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs23(Right(x0), Right(x1), x2, ty_Float) new_ltEs20(x0, x1, app(ty_[], x2)) new_pePe(False, x0) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, ty_Bool) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_ltEs22(x0, x1, ty_Ordering) new_esEs37(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_Ordering) new_compare29(x0, x1, ty_Int) new_esEs27(x0, x1, ty_Ordering) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs23(Left(x0), Right(x1), x2, x3) new_esEs23(Right(x0), Left(x1), x2, x3) new_ltEs20(x0, x1, ty_Bool) new_esEs7(x0, x1, ty_Ordering) new_primMulNat0(Succ(x0), Zero) new_compare19(:%(x0, x1), :%(x2, x3), ty_Integer) new_esEs23(Left(x0), Left(x1), ty_@0, x2) new_esEs21(Just(x0), Nothing, x1) new_ltEs11(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt23(x0, x1, ty_@0) new_primEqNat0(Succ(x0), Succ(x1)) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs13(x0, x1, ty_Int) new_ltEs6(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, ty_Char) new_esEs18(Float(x0, x1), Float(x2, x3)) new_lt22(x0, x1, ty_Float) new_esEs30(x0, x1, ty_Double) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_compare25(x0, x1, False, x2) new_esEs29(x0, x1, ty_Ordering) new_esEs31(x0, x1, ty_@0) new_ltEs17(x0, x1) new_esEs6(x0, x1, ty_Float) new_compare112(x0, x1, x2, x3, True, x4, x5) new_esEs23(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs6(Just(x0), Just(x1), app(ty_Ratio, x2)) new_compare16(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs35(x0, x1, ty_Integer) new_esEs7(x0, x1, ty_Integer) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs6(Just(x0), Just(x1), ty_Float) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_ltEs9(x0, x1) new_esEs21(Just(x0), Just(x1), app(ty_[], x2)) new_esEs23(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs37(x0, x1, ty_Double) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_compare29(x0, x1, ty_Char) new_esEs6(x0, x1, ty_Int) new_ltEs10(True, True) new_ltEs6(Just(x0), Nothing, x1) new_compare14(x0, x1, False, x2, x3) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, ty_Float) new_esEs29(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpNat0(Zero, Zero) new_esEs32(x0, x1, ty_Integer) new_ltEs22(x0, x1, ty_Integer) new_compare11(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare11(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_lt15(x0, x1) new_esEs13(x0, x1, ty_Char) new_primMulInt(Neg(x0), Neg(x1)) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (19) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_compare0(:(vwx30, vwx31), :(vwx40, vwx41), bdd) -> new_primCompAux(vwx30, vwx40, new_compare1(vwx31, vwx41, bdd), bdd) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_compare0(:(vwx30, vwx31), :(vwx40, vwx41), bdd) -> new_compare0(vwx31, vwx41, bdd) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_lt(vwx242, vwx245, bae) -> new_compare(vwx242, vwx245, bae) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_compare21(vwx205, vwx206, False, cdh, app(app(app(ty_@3, ced), cee), cef)) -> new_ltEs1(vwx205, vwx206, ced, cee, cef) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4, 5 > 5 *new_ltEs3(@2(vwx1910, vwx1911), @2(vwx1920, vwx1921), bcb, app(app(app(ty_@3, bcf), bcg), bch)) -> new_ltEs1(vwx1911, vwx1921, bcf, bcg, bch) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(vwx205, vwx206, False, cdh, app(app(ty_Either, ceb), cec)) -> new_ltEs0(vwx205, vwx206, ceb, cec) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4 *new_ltEs3(@2(vwx1910, vwx1911), @2(vwx1920, vwx1921), bcb, app(app(ty_Either, bcd), bce)) -> new_ltEs0(vwx1911, vwx1921, bcd, bce) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_lt2(vwx242, vwx245, cba) -> new_compare0(vwx242, vwx245, cba) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_ltEs1(@3(vwx1910, vwx1911, vwx1912), @3(vwx1920, vwx1921, vwx1922), gb, eg, app(app(app(ty_@3, hg), hh), baa)) -> new_ltEs1(vwx1912, vwx1922, hg, hh, baa) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_ltEs1(@3(vwx1910, vwx1911, vwx1912), @3(vwx1920, vwx1921, vwx1922), gb, eg, app(app(ty_Either, he), hf)) -> new_ltEs0(vwx1912, vwx1922, he, hf) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs(Just(vwx1910), Just(vwx1920), app(app(app(ty_@3, bc), bd), be)) -> new_ltEs1(vwx1910, vwx1920, bc, bd, be) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs(Just(vwx1910), Just(vwx1920), app(app(ty_Either, ba), bb)) -> new_ltEs0(vwx1910, vwx1920, ba, bb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_lt0(vwx242, vwx245, bfg, bfh) -> new_compare3(vwx242, vwx245, bfg, bfh) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4 *new_lt1(vwx242, vwx245, bga, bgb, bgc) -> new_compare4(vwx242, vwx245, bga, bgb, bgc) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5 *new_ltEs2(vwx191, vwx192, bag) -> new_compare0(vwx191, vwx192, bag) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_compare21(vwx205, vwx206, False, cdh, app(app(ty_@2, ceh), cfa)) -> new_ltEs3(vwx205, vwx206, ceh, cfa) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4 *new_ltEs3(@2(vwx1910, vwx1911), @2(vwx1920, vwx1921), bcb, app(app(ty_@2, bdb), bdc)) -> new_ltEs3(vwx1911, vwx1921, bdb, bdc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs1(@3(vwx1910, vwx1911, vwx1912), @3(vwx1920, vwx1921, vwx1922), gb, eg, app(app(ty_@2, bac), bad)) -> new_ltEs3(vwx1912, vwx1922, bac, bad) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs(Just(vwx1910), Just(vwx1920), app(app(ty_@2, bg), bh)) -> new_ltEs3(vwx1910, vwx1920, bg, bh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_lt3(vwx242, vwx245, cbb, cbc) -> new_compare5(vwx242, vwx245, cbb, cbc) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4 *new_compare22(vwx242, vwx243, vwx244, vwx245, vwx246, vwx247, False, app(ty_Maybe, bae), bhg, bgf) -> new_compare(vwx242, vwx245, bae) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3 *new_compare5(@2(vwx300, vwx301), @2(vwx400, vwx401), bec, bed) -> new_compare23(vwx300, vwx301, vwx400, vwx401, new_asAs(new_esEs10(vwx300, vwx400, bec), new_esEs11(vwx301, vwx401, bed)), bec, bed) The graph contains the following edges 1 > 1, 1 > 2, 2 > 3, 2 > 4, 3 >= 6, 4 >= 7 *new_primCompAux(@2(vwx300, vwx301), @2(vwx400, vwx401), vwx181, app(app(ty_@2, bec), bed)) -> new_compare23(vwx300, vwx301, vwx400, vwx401, new_asAs(new_esEs10(vwx300, vwx400, bec), new_esEs11(vwx301, vwx401, bed)), bec, bed) The graph contains the following edges 1 > 1, 1 > 2, 2 > 3, 2 > 4, 4 > 6, 4 > 7 *new_ltEs3(@2(vwx1910, vwx1911), @2(vwx1920, vwx1921), app(app(ty_@2, bbh), bca), bba) -> new_lt3(vwx1910, vwx1920, bbh, bca) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_compare21(vwx205, vwx206, False, cdh, app(ty_Maybe, cea)) -> new_ltEs(vwx205, vwx206, cea) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3 *new_compare21(vwx205, vwx206, False, cdh, app(ty_[], ceg)) -> new_ltEs2(vwx205, vwx206, ceg) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3 *new_ltEs3(@2(vwx1910, vwx1911), @2(vwx1920, vwx1921), bcb, app(ty_Maybe, bcc)) -> new_ltEs(vwx1911, vwx1921, bcc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs1(@3(vwx1910, vwx1911, vwx1912), @3(vwx1920, vwx1921, vwx1922), gb, eg, app(ty_Maybe, hd)) -> new_ltEs(vwx1912, vwx1922, hd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_ltEs(Just(vwx1910), Just(vwx1920), app(ty_Maybe, h)) -> new_ltEs(vwx1910, vwx1920, h) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs(Just(vwx1910), Just(vwx1920), app(ty_[], bf)) -> new_ltEs2(vwx1910, vwx1920, bf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_compare(Just(vwx300), Just(vwx400), baf) -> new_compare2(vwx300, vwx400, new_esEs4(vwx300, vwx400, baf), baf) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_primCompAux(Just(vwx300), Just(vwx400), vwx181, app(ty_Maybe, baf)) -> new_compare2(vwx300, vwx400, new_esEs4(vwx300, vwx400, baf), baf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 *new_ltEs3(@2(vwx1910, vwx1911), @2(vwx1920, vwx1921), app(app(app(ty_@3, bbd), bbe), bbf), bba) -> new_lt1(vwx1910, vwx1920, bbd, bbe, bbf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_compare4(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bdg, bdh, bea) -> new_compare22(vwx300, vwx301, vwx302, vwx400, vwx401, vwx402, new_asAs(new_esEs7(vwx300, vwx400, bdg), new_asAs(new_esEs8(vwx301, vwx401, bdh), new_esEs9(vwx302, vwx402, bea))), bdg, bdh, bea) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 2 > 4, 2 > 5, 2 > 6, 3 >= 8, 4 >= 9, 5 >= 10 *new_primCompAux(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), vwx181, app(app(app(ty_@3, bdg), bdh), bea)) -> new_compare22(vwx300, vwx301, vwx302, vwx400, vwx401, vwx402, new_asAs(new_esEs7(vwx300, vwx400, bdg), new_asAs(new_esEs8(vwx301, vwx401, bdh), new_esEs9(vwx302, vwx402, bea))), bdg, bdh, bea) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 2 > 4, 2 > 5, 2 > 6, 4 > 8, 4 > 9, 4 > 10 *new_compare2(vwx191, vwx192, False, app(ty_[], bag)) -> new_compare0(vwx191, vwx192, bag) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_ltEs3(@2(vwx1910, vwx1911), @2(vwx1920, vwx1921), app(ty_[], bbg), bba) -> new_lt2(vwx1910, vwx1920, bbg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_compare22(vwx242, vwx243, vwx244, vwx245, vwx246, vwx247, False, bgd, bhg, app(app(app(ty_@3, cac), cad), cae)) -> new_ltEs1(vwx244, vwx247, cac, cad, cae) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4, 10 > 5 *new_compare22(vwx242, vwx243, vwx244, vwx245, vwx246, vwx247, False, bgd, bhg, app(app(ty_Either, caa), cab)) -> new_ltEs0(vwx244, vwx247, caa, cab) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4 *new_compare22(vwx242, vwx243, vwx244, vwx245, vwx246, vwx247, False, bgd, bhg, app(app(ty_@2, cag), cah)) -> new_ltEs3(vwx244, vwx247, cag, cah) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4 *new_compare22(vwx242, vwx243, vwx244, vwx245, vwx246, vwx247, False, bgd, app(app(ty_@2, bhe), bhf), bgf) -> new_lt3(vwx243, vwx246, bhe, bhf) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4 *new_compare23(vwx255, vwx256, vwx257, vwx258, False, app(app(ty_@2, cdf), cdg), ccg) -> new_lt3(vwx255, vwx257, cdf, cdg) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4 *new_compare22(vwx242, vwx243, vwx244, vwx245, vwx246, vwx247, False, bgd, bhg, app(ty_Maybe, bhh)) -> new_ltEs(vwx244, vwx247, bhh) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3 *new_compare22(vwx242, vwx243, vwx244, vwx245, vwx246, vwx247, False, bgd, app(app(app(ty_@3, bha), bhb), bhc), bgf) -> new_lt1(vwx243, vwx246, bha, bhb, bhc) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4, 9 > 5 *new_compare23(vwx255, vwx256, vwx257, vwx258, False, app(app(app(ty_@3, cdb), cdc), cdd), ccg) -> new_lt1(vwx255, vwx257, cdb, cdc, cdd) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4, 6 > 5 *new_compare22(vwx242, vwx243, vwx244, vwx245, vwx246, vwx247, False, app(ty_[], cba), bhg, bgf) -> new_compare0(vwx242, vwx245, cba) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3 *new_primCompAux(vwx30, vwx40, vwx181, app(ty_[], beb)) -> new_compare0(vwx30, vwx40, beb) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_compare22(vwx242, vwx243, vwx244, vwx245, vwx246, vwx247, False, bgd, app(ty_[], bhd), bgf) -> new_lt2(vwx243, vwx246, bhd) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3 *new_compare23(vwx255, vwx256, vwx257, vwx258, False, app(ty_[], cde), ccg) -> new_lt2(vwx255, vwx257, cde) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3 *new_compare22(vwx242, vwx243, vwx244, vwx245, vwx246, vwx247, False, app(app(app(ty_@3, bga), bgb), bgc), bhg, bgf) -> new_compare4(vwx242, vwx245, bga, bgb, bgc) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4, 8 > 5 *new_compare20(vwx198, vwx199, False, app(app(app(ty_@3, bfa), bfb), bfc), bef) -> new_ltEs1(vwx198, vwx199, bfa, bfb, bfc) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 *new_compare23(vwx255, vwx256, vwx257, vwx258, False, cbd, app(app(app(ty_@3, cbh), cca), ccb)) -> new_ltEs1(vwx256, vwx258, cbh, cca, ccb) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4, 7 > 5 *new_compare20(vwx198, vwx199, False, app(app(ty_Either, beg), beh), bef) -> new_ltEs0(vwx198, vwx199, beg, beh) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_compare23(vwx255, vwx256, vwx257, vwx258, False, cbd, app(app(ty_Either, cbf), cbg)) -> new_ltEs0(vwx256, vwx258, cbf, cbg) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4 *new_compare20(vwx198, vwx199, False, app(app(ty_@2, bfe), bff), bef) -> new_ltEs3(vwx198, vwx199, bfe, bff) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_compare23(vwx255, vwx256, vwx257, vwx258, False, cbd, app(app(ty_@2, ccd), cce)) -> new_ltEs3(vwx256, vwx258, ccd, cce) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4 *new_compare20(vwx198, vwx199, False, app(ty_Maybe, bee), bef) -> new_ltEs(vwx198, vwx199, bee) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_compare23(vwx255, vwx256, vwx257, vwx258, False, cbd, app(ty_Maybe, cbe)) -> new_ltEs(vwx256, vwx258, cbe) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3 *new_compare22(vwx242, vwx243, vwx244, vwx245, vwx246, vwx247, False, app(app(ty_Either, bfg), bfh), bhg, bgf) -> new_compare3(vwx242, vwx245, bfg, bfh) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4 *new_compare20(vwx198, vwx199, False, app(ty_[], bfd), bef) -> new_ltEs2(vwx198, vwx199, bfd) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_primCompAux(Right(vwx300), Right(vwx400), vwx181, app(app(ty_Either, bde), bdf)) -> new_compare21(vwx300, vwx400, new_esEs6(vwx300, vwx400, bdf), bde, bdf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 *new_compare3(Right(vwx300), Right(vwx400), bde, bdf) -> new_compare21(vwx300, vwx400, new_esEs6(vwx300, vwx400, bdf), bde, bdf) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 *new_primCompAux(Left(vwx300), Left(vwx400), vwx181, app(app(ty_Either, bde), bdf)) -> new_compare20(vwx300, vwx400, new_esEs5(vwx300, vwx400, bde), bde, bdf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 *new_compare3(Left(vwx300), Left(vwx400), bde, bdf) -> new_compare20(vwx300, vwx400, new_esEs5(vwx300, vwx400, bde), bde, bdf) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 *new_ltEs3(@2(vwx1910, vwx1911), @2(vwx1920, vwx1921), app(ty_Maybe, bah), bba) -> new_lt(vwx1910, vwx1920, bah) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_compare22(vwx242, vwx243, vwx244, vwx245, vwx246, vwx247, False, bgd, app(ty_Maybe, bge), bgf) -> new_lt(vwx243, vwx246, bge) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3 *new_compare23(vwx255, vwx256, vwx257, vwx258, False, app(ty_Maybe, ccf), ccg) -> new_lt(vwx255, vwx257, ccf) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3 *new_ltEs3(@2(vwx1910, vwx1911), @2(vwx1920, vwx1921), bcb, app(ty_[], bda)) -> new_ltEs2(vwx1911, vwx1921, bda) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs3(@2(vwx1910, vwx1911), @2(vwx1920, vwx1921), app(app(ty_Either, bbb), bbc), bba) -> new_lt0(vwx1910, vwx1920, bbb, bbc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs1(@3(vwx1910, vwx1911, vwx1912), @3(vwx1920, vwx1921, vwx1922), gb, eg, app(ty_[], bab)) -> new_ltEs2(vwx1912, vwx1922, bab) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare22(vwx242, vwx243, vwx244, vwx245, vwx246, vwx247, False, bgd, bhg, app(ty_[], caf)) -> new_ltEs2(vwx244, vwx247, caf) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3 *new_compare23(vwx255, vwx256, vwx257, vwx258, False, cbd, app(ty_[], ccc)) -> new_ltEs2(vwx256, vwx258, ccc) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3 *new_compare23(vwx255, vwx256, vwx257, vwx258, False, app(app(ty_Either, cch), cda), ccg) -> new_lt0(vwx255, vwx257, cch, cda) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4 *new_compare22(vwx242, vwx243, vwx244, vwx245, vwx246, vwx247, False, app(app(ty_@2, cbb), cbc), bhg, bgf) -> new_compare5(vwx242, vwx245, cbb, cbc) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4 *new_compare22(vwx242, vwx243, vwx244, vwx245, vwx246, vwx247, False, bgd, app(app(ty_Either, bgg), bgh), bgf) -> new_lt0(vwx243, vwx246, bgg, bgh) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4 *new_ltEs0(Right(vwx1910), Right(vwx1920), dd, app(app(app(ty_@3, dh), ea), eb)) -> new_ltEs1(vwx1910, vwx1920, dh, ea, eb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs0(Left(vwx1910), Left(vwx1920), app(app(app(ty_@3, ce), cf), cg), cb) -> new_ltEs1(vwx1910, vwx1920, ce, cf, cg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs0(Right(vwx1910), Right(vwx1920), dd, app(app(ty_Either, df), dg)) -> new_ltEs0(vwx1910, vwx1920, df, dg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs0(Left(vwx1910), Left(vwx1920), app(app(ty_Either, cc), cd), cb) -> new_ltEs0(vwx1910, vwx1920, cc, cd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs0(Left(vwx1910), Left(vwx1920), app(app(ty_@2, db), dc), cb) -> new_ltEs3(vwx1910, vwx1920, db, dc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs0(Right(vwx1910), Right(vwx1920), dd, app(app(ty_@2, ed), ee)) -> new_ltEs3(vwx1910, vwx1920, ed, ee) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs0(Right(vwx1910), Right(vwx1920), dd, app(ty_Maybe, de)) -> new_ltEs(vwx1910, vwx1920, de) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs0(Left(vwx1910), Left(vwx1920), app(ty_Maybe, ca), cb) -> new_ltEs(vwx1910, vwx1920, ca) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs0(Left(vwx1910), Left(vwx1920), app(ty_[], da), cb) -> new_ltEs2(vwx1910, vwx1920, da) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs0(Right(vwx1910), Right(vwx1920), dd, app(ty_[], ec)) -> new_ltEs2(vwx1910, vwx1920, ec) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(Right(vwx1910), Right(vwx1920), False, app(app(ty_Either, dd), app(app(app(ty_@3, dh), ea), eb))) -> new_ltEs1(vwx1910, vwx1920, dh, ea, eb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare2(@3(vwx1910, vwx1911, vwx1912), @3(vwx1920, vwx1921, vwx1922), False, app(app(app(ty_@3, gb), eg), app(app(app(ty_@3, hg), hh), baa))) -> new_ltEs1(vwx1912, vwx1922, hg, hh, baa) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare2(Left(vwx1910), Left(vwx1920), False, app(app(ty_Either, app(app(app(ty_@3, ce), cf), cg)), cb)) -> new_ltEs1(vwx1910, vwx1920, ce, cf, cg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare2(@2(vwx1910, vwx1911), @2(vwx1920, vwx1921), False, app(app(ty_@2, bcb), app(app(app(ty_@3, bcf), bcg), bch))) -> new_ltEs1(vwx1911, vwx1921, bcf, bcg, bch) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare2(Just(vwx1910), Just(vwx1920), False, app(ty_Maybe, app(app(app(ty_@3, bc), bd), be))) -> new_ltEs1(vwx1910, vwx1920, bc, bd, be) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare2(Left(vwx1910), Left(vwx1920), False, app(app(ty_Either, app(app(ty_Either, cc), cd)), cb)) -> new_ltEs0(vwx1910, vwx1920, cc, cd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(@3(vwx1910, vwx1911, vwx1912), @3(vwx1920, vwx1921, vwx1922), False, app(app(app(ty_@3, gb), eg), app(app(ty_Either, he), hf))) -> new_ltEs0(vwx1912, vwx1922, he, hf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(@2(vwx1910, vwx1911), @2(vwx1920, vwx1921), False, app(app(ty_@2, bcb), app(app(ty_Either, bcd), bce))) -> new_ltEs0(vwx1911, vwx1921, bcd, bce) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(Just(vwx1910), Just(vwx1920), False, app(ty_Maybe, app(app(ty_Either, ba), bb))) -> new_ltEs0(vwx1910, vwx1920, ba, bb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(Right(vwx1910), Right(vwx1920), False, app(app(ty_Either, dd), app(app(ty_Either, df), dg))) -> new_ltEs0(vwx1910, vwx1920, df, dg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs1(@3(vwx1910, vwx1911, vwx1912), @3(vwx1920, vwx1921, vwx1922), gb, app(app(ty_@2, hb), hc), eh) -> new_lt3(vwx1911, vwx1921, hb, hc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs1(@3(vwx1910, vwx1911, vwx1912), @3(vwx1920, vwx1921, vwx1922), app(app(ty_@2, fh), ga), eg, eh) -> new_lt3(vwx1910, vwx1920, fh, ga) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs1(@3(vwx1910, vwx1911, vwx1912), @3(vwx1920, vwx1921, vwx1922), gb, app(app(app(ty_@3, gf), gg), gh), eh) -> new_lt1(vwx1911, vwx1921, gf, gg, gh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs1(@3(vwx1910, vwx1911, vwx1912), @3(vwx1920, vwx1921, vwx1922), app(app(app(ty_@3, fc), fd), ff), eg, eh) -> new_lt1(vwx1910, vwx1920, fc, fd, ff) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs1(@3(vwx1910, vwx1911, vwx1912), @3(vwx1920, vwx1921, vwx1922), gb, app(ty_[], ha), eh) -> new_lt2(vwx1911, vwx1921, ha) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs1(@3(vwx1910, vwx1911, vwx1912), @3(vwx1920, vwx1921, vwx1922), app(ty_[], fg), eg, eh) -> new_lt2(vwx1910, vwx1920, fg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs1(@3(vwx1910, vwx1911, vwx1912), @3(vwx1920, vwx1921, vwx1922), gb, app(ty_Maybe, gc), eh) -> new_lt(vwx1911, vwx1921, gc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs1(@3(vwx1910, vwx1911, vwx1912), @3(vwx1920, vwx1921, vwx1922), app(ty_Maybe, ef), eg, eh) -> new_lt(vwx1910, vwx1920, ef) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs1(@3(vwx1910, vwx1911, vwx1912), @3(vwx1920, vwx1921, vwx1922), app(app(ty_Either, fa), fb), eg, eh) -> new_lt0(vwx1910, vwx1920, fa, fb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs1(@3(vwx1910, vwx1911, vwx1912), @3(vwx1920, vwx1921, vwx1922), gb, app(app(ty_Either, gd), ge), eh) -> new_lt0(vwx1911, vwx1921, gd, ge) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(Right(vwx1910), Right(vwx1920), False, app(app(ty_Either, dd), app(app(ty_@2, ed), ee))) -> new_ltEs3(vwx1910, vwx1920, ed, ee) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(Left(vwx1910), Left(vwx1920), False, app(app(ty_Either, app(app(ty_@2, db), dc)), cb)) -> new_ltEs3(vwx1910, vwx1920, db, dc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(@2(vwx1910, vwx1911), @2(vwx1920, vwx1921), False, app(app(ty_@2, bcb), app(app(ty_@2, bdb), bdc))) -> new_ltEs3(vwx1911, vwx1921, bdb, bdc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(Just(vwx1910), Just(vwx1920), False, app(ty_Maybe, app(app(ty_@2, bg), bh))) -> new_ltEs3(vwx1910, vwx1920, bg, bh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(@3(vwx1910, vwx1911, vwx1912), @3(vwx1920, vwx1921, vwx1922), False, app(app(app(ty_@3, gb), eg), app(app(ty_@2, bac), bad))) -> new_ltEs3(vwx1912, vwx1922, bac, bad) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(@2(vwx1910, vwx1911), @2(vwx1920, vwx1921), False, app(app(ty_@2, app(app(ty_@2, bbh), bca)), bba)) -> new_lt3(vwx1910, vwx1920, bbh, bca) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(@3(vwx1910, vwx1911, vwx1912), @3(vwx1920, vwx1921, vwx1922), False, app(app(app(ty_@3, app(app(ty_@2, fh), ga)), eg), eh)) -> new_lt3(vwx1910, vwx1920, fh, ga) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(@3(vwx1910, vwx1911, vwx1912), @3(vwx1920, vwx1921, vwx1922), False, app(app(app(ty_@3, gb), app(app(ty_@2, hb), hc)), eh)) -> new_lt3(vwx1911, vwx1921, hb, hc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(Left(vwx1910), Left(vwx1920), False, app(app(ty_Either, app(ty_Maybe, ca)), cb)) -> new_ltEs(vwx1910, vwx1920, ca) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(Right(vwx1910), Right(vwx1920), False, app(app(ty_Either, dd), app(ty_Maybe, de))) -> new_ltEs(vwx1910, vwx1920, de) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(@2(vwx1910, vwx1911), @2(vwx1920, vwx1921), False, app(app(ty_@2, bcb), app(ty_Maybe, bcc))) -> new_ltEs(vwx1911, vwx1921, bcc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(@3(vwx1910, vwx1911, vwx1912), @3(vwx1920, vwx1921, vwx1922), False, app(app(app(ty_@3, gb), eg), app(ty_Maybe, hd))) -> new_ltEs(vwx1912, vwx1922, hd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(Just(vwx1910), Just(vwx1920), False, app(ty_Maybe, app(ty_Maybe, h))) -> new_ltEs(vwx1910, vwx1920, h) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(@2(vwx1910, vwx1911), @2(vwx1920, vwx1921), False, app(app(ty_@2, app(app(app(ty_@3, bbd), bbe), bbf)), bba)) -> new_lt1(vwx1910, vwx1920, bbd, bbe, bbf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare2(@3(vwx1910, vwx1911, vwx1912), @3(vwx1920, vwx1921, vwx1922), False, app(app(app(ty_@3, app(app(app(ty_@3, fc), fd), ff)), eg), eh)) -> new_lt1(vwx1910, vwx1920, fc, fd, ff) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare2(@3(vwx1910, vwx1911, vwx1912), @3(vwx1920, vwx1921, vwx1922), False, app(app(app(ty_@3, gb), app(app(app(ty_@3, gf), gg), gh)), eh)) -> new_lt1(vwx1911, vwx1921, gf, gg, gh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare2(@3(vwx1910, vwx1911, vwx1912), @3(vwx1920, vwx1921, vwx1922), False, app(app(app(ty_@3, app(ty_[], fg)), eg), eh)) -> new_lt2(vwx1910, vwx1920, fg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(@2(vwx1910, vwx1911), @2(vwx1920, vwx1921), False, app(app(ty_@2, app(ty_[], bbg)), bba)) -> new_lt2(vwx1910, vwx1920, bbg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(@3(vwx1910, vwx1911, vwx1912), @3(vwx1920, vwx1921, vwx1922), False, app(app(app(ty_@3, gb), app(ty_[], ha)), eh)) -> new_lt2(vwx1911, vwx1921, ha) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(@3(vwx1910, vwx1911, vwx1912), @3(vwx1920, vwx1921, vwx1922), False, app(app(app(ty_@3, gb), app(ty_Maybe, gc)), eh)) -> new_lt(vwx1911, vwx1921, gc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(@2(vwx1910, vwx1911), @2(vwx1920, vwx1921), False, app(app(ty_@2, app(ty_Maybe, bah)), bba)) -> new_lt(vwx1910, vwx1920, bah) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(@3(vwx1910, vwx1911, vwx1912), @3(vwx1920, vwx1921, vwx1922), False, app(app(app(ty_@3, app(ty_Maybe, ef)), eg), eh)) -> new_lt(vwx1910, vwx1920, ef) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(Just(vwx1910), Just(vwx1920), False, app(ty_Maybe, app(ty_[], bf))) -> new_ltEs2(vwx1910, vwx1920, bf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(Left(vwx1910), Left(vwx1920), False, app(app(ty_Either, app(ty_[], da)), cb)) -> new_ltEs2(vwx1910, vwx1920, da) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(@3(vwx1910, vwx1911, vwx1912), @3(vwx1920, vwx1921, vwx1922), False, app(app(app(ty_@3, gb), eg), app(ty_[], bab))) -> new_ltEs2(vwx1912, vwx1922, bab) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(@2(vwx1910, vwx1911), @2(vwx1920, vwx1921), False, app(app(ty_@2, bcb), app(ty_[], bda))) -> new_ltEs2(vwx1911, vwx1921, bda) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(Right(vwx1910), Right(vwx1920), False, app(app(ty_Either, dd), app(ty_[], ec))) -> new_ltEs2(vwx1910, vwx1920, ec) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(@3(vwx1910, vwx1911, vwx1912), @3(vwx1920, vwx1921, vwx1922), False, app(app(app(ty_@3, app(app(ty_Either, fa), fb)), eg), eh)) -> new_lt0(vwx1910, vwx1920, fa, fb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(@2(vwx1910, vwx1911), @2(vwx1920, vwx1921), False, app(app(ty_@2, app(app(ty_Either, bbb), bbc)), bba)) -> new_lt0(vwx1910, vwx1920, bbb, bbc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(@3(vwx1910, vwx1911, vwx1912), @3(vwx1920, vwx1921, vwx1922), False, app(app(app(ty_@3, gb), app(app(ty_Either, gd), ge)), eh)) -> new_lt0(vwx1911, vwx1921, gd, ge) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 ---------------------------------------- (20) YES ---------------------------------------- (21) Obligation: Q DP problem: The TRS P consists of the following rules: new_esEs0(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), app(ty_Maybe, cf), cc) -> new_esEs1(vwx3000, vwx4000, cf) new_esEs0(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), de, app(ty_Maybe, ea)) -> new_esEs1(vwx3001, vwx4001, ea) new_esEs2(Left(vwx3000), Left(vwx4000), app(ty_Maybe, ge), gb) -> new_esEs1(vwx3000, vwx4000, ge) new_esEs3(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), app(app(ty_Either, bbc), bbd), baf, bag) -> new_esEs2(vwx3000, vwx4000, bbc, bbd) new_esEs2(Right(vwx3000), Right(vwx4000), hc, app(app(ty_@2, he), hf)) -> new_esEs0(vwx3000, vwx4000, he, hf) new_esEs2(Right(vwx3000), Right(vwx4000), hc, app(app(ty_Either, hh), baa)) -> new_esEs2(vwx3000, vwx4000, hh, baa) new_esEs3(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), app(app(app(ty_@3, bbe), bbf), bbg), baf, bag) -> new_esEs3(vwx3000, vwx4000, bbe, bbf, bbg) new_esEs(:(vwx3000, vwx3001), :(vwx4000, vwx4001), app(app(app(ty_@3, bf), bg), bh)) -> new_esEs3(vwx3000, vwx4000, bf, bg, bh) new_esEs0(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), de, app(app(ty_@2, dg), dh)) -> new_esEs0(vwx3001, vwx4001, dg, dh) new_esEs2(Right(vwx3000), Right(vwx4000), hc, app(ty_Maybe, hg)) -> new_esEs1(vwx3000, vwx4000, hg) new_esEs(:(vwx3000, vwx3001), :(vwx4000, vwx4001), ca) -> new_esEs(vwx3001, vwx4001, ca) new_esEs1(Just(vwx3000), Just(vwx4000), app(app(ty_Either, fc), fd)) -> new_esEs2(vwx3000, vwx4000, fc, fd) new_esEs0(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), de, app(app(ty_Either, eb), ec)) -> new_esEs2(vwx3001, vwx4001, eb, ec) new_esEs3(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), bbh, baf, app(app(ty_Either, bdf), bdg)) -> new_esEs2(vwx3002, vwx4002, bdf, bdg) new_esEs(:(vwx3000, vwx3001), :(vwx4000, vwx4001), app(ty_Maybe, bc)) -> new_esEs1(vwx3000, vwx4000, bc) new_esEs2(Right(vwx3000), Right(vwx4000), hc, app(app(app(ty_@3, bab), bac), bad)) -> new_esEs3(vwx3000, vwx4000, bab, bac, bad) new_esEs2(Left(vwx3000), Left(vwx4000), app(app(app(ty_@3, gh), ha), hb), gb) -> new_esEs3(vwx3000, vwx4000, gh, ha, hb) new_esEs(:(vwx3000, vwx3001), :(vwx4000, vwx4001), app(ty_[], h)) -> new_esEs(vwx3000, vwx4000, h) new_esEs3(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), bbh, baf, app(app(app(ty_@3, bdh), bea), beb)) -> new_esEs3(vwx3002, vwx4002, bdh, bea, beb) new_esEs0(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), app(app(app(ty_@3, db), dc), dd), cc) -> new_esEs3(vwx3000, vwx4000, db, dc, dd) new_esEs0(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), de, app(app(app(ty_@3, ed), ee), ef)) -> new_esEs3(vwx3001, vwx4001, ed, ee, ef) new_esEs3(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), bbh, app(app(ty_Either, bce), bcf), bag) -> new_esEs2(vwx3001, vwx4001, bce, bcf) new_esEs3(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), bbh, app(app(ty_@2, bcb), bcc), bag) -> new_esEs0(vwx3001, vwx4001, bcb, bcc) new_esEs2(Left(vwx3000), Left(vwx4000), app(app(ty_Either, gf), gg), gb) -> new_esEs2(vwx3000, vwx4000, gf, gg) new_esEs(:(vwx3000, vwx3001), :(vwx4000, vwx4001), app(app(ty_Either, bd), be)) -> new_esEs2(vwx3000, vwx4000, bd, be) new_esEs3(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), app(app(ty_@2, bah), bba), baf, bag) -> new_esEs0(vwx3000, vwx4000, bah, bba) new_esEs3(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), bbh, app(app(app(ty_@3, bcg), bch), bda), bag) -> new_esEs3(vwx3001, vwx4001, bcg, bch, bda) new_esEs2(Right(vwx3000), Right(vwx4000), hc, app(ty_[], hd)) -> new_esEs(vwx3000, vwx4000, hd) new_esEs3(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), bbh, app(ty_[], bca), bag) -> new_esEs(vwx3001, vwx4001, bca) new_esEs0(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), app(ty_[], cb), cc) -> new_esEs(vwx3000, vwx4000, cb) new_esEs1(Just(vwx3000), Just(vwx4000), app(app(app(ty_@3, ff), fg), fh)) -> new_esEs3(vwx3000, vwx4000, ff, fg, fh) new_esEs3(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), bbh, baf, app(app(ty_@2, bdc), bdd)) -> new_esEs0(vwx3002, vwx4002, bdc, bdd) new_esEs3(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), bbh, baf, app(ty_[], bdb)) -> new_esEs(vwx3002, vwx4002, bdb) new_esEs0(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), de, app(ty_[], df)) -> new_esEs(vwx3001, vwx4001, df) new_esEs1(Just(vwx3000), Just(vwx4000), app(ty_[], eg)) -> new_esEs(vwx3000, vwx4000, eg) new_esEs1(Just(vwx3000), Just(vwx4000), app(app(ty_@2, eh), fa)) -> new_esEs0(vwx3000, vwx4000, eh, fa) new_esEs3(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), app(ty_Maybe, bbb), baf, bag) -> new_esEs1(vwx3000, vwx4000, bbb) new_esEs2(Left(vwx3000), Left(vwx4000), app(app(ty_@2, gc), gd), gb) -> new_esEs0(vwx3000, vwx4000, gc, gd) new_esEs3(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), bbh, app(ty_Maybe, bcd), bag) -> new_esEs1(vwx3001, vwx4001, bcd) new_esEs(:(vwx3000, vwx3001), :(vwx4000, vwx4001), app(app(ty_@2, ba), bb)) -> new_esEs0(vwx3000, vwx4000, ba, bb) new_esEs3(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), app(ty_[], bae), baf, bag) -> new_esEs(vwx3000, vwx4000, bae) new_esEs1(Just(vwx3000), Just(vwx4000), app(ty_Maybe, fb)) -> new_esEs1(vwx3000, vwx4000, fb) new_esEs3(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), bbh, baf, app(ty_Maybe, bde)) -> new_esEs1(vwx3002, vwx4002, bde) new_esEs0(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), app(app(ty_@2, cd), ce), cc) -> new_esEs0(vwx3000, vwx4000, cd, ce) new_esEs0(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), app(app(ty_Either, cg), da), cc) -> new_esEs2(vwx3000, vwx4000, cg, da) new_esEs2(Left(vwx3000), Left(vwx4000), app(ty_[], ga), gb) -> new_esEs(vwx3000, vwx4000, ga) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (22) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_esEs1(Just(vwx3000), Just(vwx4000), app(app(ty_@2, eh), fa)) -> new_esEs0(vwx3000, vwx4000, eh, fa) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(Just(vwx3000), Just(vwx4000), app(app(ty_Either, fc), fd)) -> new_esEs2(vwx3000, vwx4000, fc, fd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(Just(vwx3000), Just(vwx4000), app(app(app(ty_@3, ff), fg), fh)) -> new_esEs3(vwx3000, vwx4000, ff, fg, fh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs(:(vwx3000, vwx3001), :(vwx4000, vwx4001), app(app(ty_@2, ba), bb)) -> new_esEs0(vwx3000, vwx4000, ba, bb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(:(vwx3000, vwx3001), :(vwx4000, vwx4001), app(app(ty_Either, bd), be)) -> new_esEs2(vwx3000, vwx4000, bd, be) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(:(vwx3000, vwx3001), :(vwx4000, vwx4001), app(app(app(ty_@3, bf), bg), bh)) -> new_esEs3(vwx3000, vwx4000, bf, bg, bh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs1(Just(vwx3000), Just(vwx4000), app(ty_[], eg)) -> new_esEs(vwx3000, vwx4000, eg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(Just(vwx3000), Just(vwx4000), app(ty_Maybe, fb)) -> new_esEs1(vwx3000, vwx4000, fb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(:(vwx3000, vwx3001), :(vwx4000, vwx4001), app(ty_Maybe, bc)) -> new_esEs1(vwx3000, vwx4000, bc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(Right(vwx3000), Right(vwx4000), hc, app(app(ty_@2, he), hf)) -> new_esEs0(vwx3000, vwx4000, he, hf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs2(Left(vwx3000), Left(vwx4000), app(app(ty_@2, gc), gd), gb) -> new_esEs0(vwx3000, vwx4000, gc, gd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), de, app(app(ty_@2, dg), dh)) -> new_esEs0(vwx3001, vwx4001, dg, dh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs0(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), app(app(ty_@2, cd), ce), cc) -> new_esEs0(vwx3000, vwx4000, cd, ce) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), bbh, app(app(ty_@2, bcb), bcc), bag) -> new_esEs0(vwx3001, vwx4001, bcb, bcc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs3(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), app(app(ty_@2, bah), bba), baf, bag) -> new_esEs0(vwx3000, vwx4000, bah, bba) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), bbh, baf, app(app(ty_@2, bdc), bdd)) -> new_esEs0(vwx3002, vwx4002, bdc, bdd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs2(Right(vwx3000), Right(vwx4000), hc, app(app(ty_Either, hh), baa)) -> new_esEs2(vwx3000, vwx4000, hh, baa) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs2(Left(vwx3000), Left(vwx4000), app(app(ty_Either, gf), gg), gb) -> new_esEs2(vwx3000, vwx4000, gf, gg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), de, app(app(ty_Either, eb), ec)) -> new_esEs2(vwx3001, vwx4001, eb, ec) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs0(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), app(app(ty_Either, cg), da), cc) -> new_esEs2(vwx3000, vwx4000, cg, da) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), app(app(ty_Either, bbc), bbd), baf, bag) -> new_esEs2(vwx3000, vwx4000, bbc, bbd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), bbh, baf, app(app(ty_Either, bdf), bdg)) -> new_esEs2(vwx3002, vwx4002, bdf, bdg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs3(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), bbh, app(app(ty_Either, bce), bcf), bag) -> new_esEs2(vwx3001, vwx4001, bce, bcf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs2(Right(vwx3000), Right(vwx4000), hc, app(app(app(ty_@3, bab), bac), bad)) -> new_esEs3(vwx3000, vwx4000, bab, bac, bad) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs2(Left(vwx3000), Left(vwx4000), app(app(app(ty_@3, gh), ha), hb), gb) -> new_esEs3(vwx3000, vwx4000, gh, ha, hb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs2(Right(vwx3000), Right(vwx4000), hc, app(ty_[], hd)) -> new_esEs(vwx3000, vwx4000, hd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs2(Left(vwx3000), Left(vwx4000), app(ty_[], ga), gb) -> new_esEs(vwx3000, vwx4000, ga) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(Left(vwx3000), Left(vwx4000), app(ty_Maybe, ge), gb) -> new_esEs1(vwx3000, vwx4000, ge) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(Right(vwx3000), Right(vwx4000), hc, app(ty_Maybe, hg)) -> new_esEs1(vwx3000, vwx4000, hg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs0(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), app(app(app(ty_@3, db), dc), dd), cc) -> new_esEs3(vwx3000, vwx4000, db, dc, dd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs0(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), de, app(app(app(ty_@3, ed), ee), ef)) -> new_esEs3(vwx3001, vwx4001, ed, ee, ef) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs3(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), app(app(app(ty_@3, bbe), bbf), bbg), baf, bag) -> new_esEs3(vwx3000, vwx4000, bbe, bbf, bbg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs3(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), bbh, baf, app(app(app(ty_@3, bdh), bea), beb)) -> new_esEs3(vwx3002, vwx4002, bdh, bea, beb) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_esEs3(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), bbh, app(app(app(ty_@3, bcg), bch), bda), bag) -> new_esEs3(vwx3001, vwx4001, bcg, bch, bda) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs0(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), app(ty_[], cb), cc) -> new_esEs(vwx3000, vwx4000, cb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), de, app(ty_[], df)) -> new_esEs(vwx3001, vwx4001, df) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs0(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), app(ty_Maybe, cf), cc) -> new_esEs1(vwx3000, vwx4000, cf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), de, app(ty_Maybe, ea)) -> new_esEs1(vwx3001, vwx4001, ea) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs3(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), bbh, app(ty_[], bca), bag) -> new_esEs(vwx3001, vwx4001, bca) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs3(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), bbh, baf, app(ty_[], bdb)) -> new_esEs(vwx3002, vwx4002, bdb) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs3(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), app(ty_[], bae), baf, bag) -> new_esEs(vwx3000, vwx4000, bae) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), app(ty_Maybe, bbb), baf, bag) -> new_esEs1(vwx3000, vwx4000, bbb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), bbh, app(ty_Maybe, bcd), bag) -> new_esEs1(vwx3001, vwx4001, bcd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs3(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), bbh, baf, app(ty_Maybe, bde)) -> new_esEs1(vwx3002, vwx4002, bde) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs(:(vwx3000, vwx3001), :(vwx4000, vwx4001), ca) -> new_esEs(vwx3001, vwx4001, ca) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_esEs(:(vwx3000, vwx3001), :(vwx4000, vwx4001), app(ty_[], h)) -> new_esEs(vwx3000, vwx4000, h) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 ---------------------------------------- (23) YES ---------------------------------------- (24) Obligation: Q DP problem: The TRS P consists of the following rules: new_primMulNat(Succ(vwx30000), Succ(vwx40100)) -> new_primMulNat(vwx30000, Succ(vwx40100)) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (25) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_primMulNat(Succ(vwx30000), Succ(vwx40100)) -> new_primMulNat(vwx30000, Succ(vwx40100)) The graph contains the following edges 1 > 1, 2 >= 2 ---------------------------------------- (26) YES ---------------------------------------- (27) Obligation: Q DP problem: The TRS P consists of the following rules: new_primEqNat(Succ(vwx30000), Succ(vwx40000)) -> new_primEqNat(vwx30000, vwx40000) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (28) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_primEqNat(Succ(vwx30000), Succ(vwx40000)) -> new_primEqNat(vwx30000, vwx40000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (29) YES ---------------------------------------- (30) Obligation: Q DP problem: The TRS P consists of the following rules: new_primPlusNat(Succ(vwx33500), Succ(vwx401000)) -> new_primPlusNat(vwx33500, vwx401000) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (31) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_primPlusNat(Succ(vwx33500), Succ(vwx401000)) -> new_primPlusNat(vwx33500, vwx401000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (32) YES