/export/starexec/sandbox2/solver/bin/starexec_run_standard /export/starexec/sandbox2/benchmark/theBenchmark.hs /export/starexec/sandbox2/output/output_files -------------------------------------------------------------------------------- YES proof of /export/starexec/sandbox2/benchmark/theBenchmark.hs # AProVE Commit ID: 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, 14 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, 8 ms] (20) YES (21) QDP (22) QDPSizeChangeProof [EQUIVALENT, 0 ms] (23) YES (24) QDP (25) QDPSizeChangeProof [EQUIVALENT, 112 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 "reduce2Reduce1 vwv vww x y True = error []; reduce2Reduce1 vwv vww x y False = reduce2Reduce0 vwv vww x y otherwise; " "reduce2Reduce0 vwv vww x y True = x `quot` reduce2D vwv vww :% (y `quot` reduce2D vwv vww); " "reduce2D vwv vww = gcd vwv vww; " ---------------------------------------- (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 -> 77[label="",style="dashed", color="red", weight=0]; 5[label="compare vwx3 vwx4 == GT",fontsize=16,color="magenta"];5 -> 78[label="",style="dashed", color="magenta", weight=3]; 78[label="compare vwx3 vwx4",fontsize=16,color="burlywood",shape="triangle"];2815[label="vwx3/vwx30 : vwx31",fontsize=10,color="white",style="solid",shape="box"];78 -> 2815[label="",style="solid", color="burlywood", weight=9]; 2815 -> 88[label="",style="solid", color="burlywood", weight=3]; 2816[label="vwx3/[]",fontsize=10,color="white",style="solid",shape="box"];78 -> 2816[label="",style="solid", color="burlywood", weight=9]; 2816 -> 89[label="",style="solid", color="burlywood", weight=3]; 77[label="vwx14 == GT",fontsize=16,color="burlywood",shape="triangle"];2817[label="vwx14/LT",fontsize=10,color="white",style="solid",shape="box"];77 -> 2817[label="",style="solid", color="burlywood", weight=9]; 2817 -> 90[label="",style="solid", color="burlywood", weight=3]; 2818[label="vwx14/EQ",fontsize=10,color="white",style="solid",shape="box"];77 -> 2818[label="",style="solid", color="burlywood", weight=9]; 2818 -> 91[label="",style="solid", color="burlywood", weight=3]; 2819[label="vwx14/GT",fontsize=10,color="white",style="solid",shape="box"];77 -> 2819[label="",style="solid", color="burlywood", weight=9]; 2819 -> 92[label="",style="solid", color="burlywood", weight=3]; 88[label="compare (vwx30 : vwx31) vwx4",fontsize=16,color="burlywood",shape="box"];2820[label="vwx4/vwx40 : vwx41",fontsize=10,color="white",style="solid",shape="box"];88 -> 2820[label="",style="solid", color="burlywood", weight=9]; 2820 -> 93[label="",style="solid", color="burlywood", weight=3]; 2821[label="vwx4/[]",fontsize=10,color="white",style="solid",shape="box"];88 -> 2821[label="",style="solid", color="burlywood", weight=9]; 2821 -> 94[label="",style="solid", color="burlywood", weight=3]; 89[label="compare [] vwx4",fontsize=16,color="burlywood",shape="box"];2822[label="vwx4/vwx40 : vwx41",fontsize=10,color="white",style="solid",shape="box"];89 -> 2822[label="",style="solid", color="burlywood", weight=9]; 2822 -> 95[label="",style="solid", color="burlywood", weight=3]; 2823[label="vwx4/[]",fontsize=10,color="white",style="solid",shape="box"];89 -> 2823[label="",style="solid", color="burlywood", weight=9]; 2823 -> 96[label="",style="solid", color="burlywood", weight=3]; 90[label="LT == GT",fontsize=16,color="black",shape="box"];90 -> 97[label="",style="solid", color="black", weight=3]; 91[label="EQ == GT",fontsize=16,color="black",shape="box"];91 -> 98[label="",style="solid", color="black", weight=3]; 92[label="GT == GT",fontsize=16,color="black",shape="box"];92 -> 99[label="",style="solid", color="black", weight=3]; 93[label="compare (vwx30 : vwx31) (vwx40 : vwx41)",fontsize=16,color="black",shape="box"];93 -> 100[label="",style="solid", color="black", weight=3]; 94[label="compare (vwx30 : vwx31) []",fontsize=16,color="black",shape="box"];94 -> 101[label="",style="solid", color="black", weight=3]; 95[label="compare [] (vwx40 : vwx41)",fontsize=16,color="black",shape="box"];95 -> 102[label="",style="solid", color="black", weight=3]; 96[label="compare [] []",fontsize=16,color="black",shape="box"];96 -> 103[label="",style="solid", color="black", weight=3]; 97[label="False",fontsize=16,color="green",shape="box"];98[label="False",fontsize=16,color="green",shape="box"];99[label="True",fontsize=16,color="green",shape="box"];100 -> 104[label="",style="dashed", color="red", weight=0]; 100[label="primCompAux vwx30 vwx40 (compare vwx31 vwx41)",fontsize=16,color="magenta"];100 -> 105[label="",style="dashed", color="magenta", weight=3]; 101[label="GT",fontsize=16,color="green",shape="box"];102[label="LT",fontsize=16,color="green",shape="box"];103[label="EQ",fontsize=16,color="green",shape="box"];105 -> 78[label="",style="dashed", color="red", weight=0]; 105[label="compare vwx31 vwx41",fontsize=16,color="magenta"];105 -> 106[label="",style="dashed", color="magenta", weight=3]; 105 -> 107[label="",style="dashed", color="magenta", weight=3]; 104[label="primCompAux vwx30 vwx40 vwx15",fontsize=16,color="black",shape="triangle"];104 -> 108[label="",style="solid", color="black", weight=3]; 106[label="vwx41",fontsize=16,color="green",shape="box"];107[label="vwx31",fontsize=16,color="green",shape="box"];108 -> 109[label="",style="dashed", color="red", weight=0]; 108[label="primCompAux0 vwx15 (compare vwx30 vwx40)",fontsize=16,color="magenta"];108 -> 110[label="",style="dashed", color="magenta", weight=3]; 108 -> 111[label="",style="dashed", color="magenta", weight=3]; 110[label="compare vwx30 vwx40",fontsize=16,color="blue",shape="box"];2824[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];110 -> 2824[label="",style="solid", color="blue", weight=9]; 2824 -> 112[label="",style="solid", color="blue", weight=3]; 2825[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];110 -> 2825[label="",style="solid", color="blue", weight=9]; 2825 -> 113[label="",style="solid", color="blue", weight=3]; 2826[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];110 -> 2826[label="",style="solid", color="blue", weight=9]; 2826 -> 114[label="",style="solid", color="blue", weight=3]; 2827[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];110 -> 2827[label="",style="solid", color="blue", weight=9]; 2827 -> 115[label="",style="solid", color="blue", weight=3]; 2828[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];110 -> 2828[label="",style="solid", color="blue", weight=9]; 2828 -> 116[label="",style="solid", color="blue", weight=3]; 2829[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];110 -> 2829[label="",style="solid", color="blue", weight=9]; 2829 -> 117[label="",style="solid", color="blue", weight=3]; 2830[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];110 -> 2830[label="",style="solid", color="blue", weight=9]; 2830 -> 118[label="",style="solid", color="blue", weight=3]; 2831[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];110 -> 2831[label="",style="solid", color="blue", weight=9]; 2831 -> 119[label="",style="solid", color="blue", weight=3]; 2832[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];110 -> 2832[label="",style="solid", color="blue", weight=9]; 2832 -> 120[label="",style="solid", color="blue", weight=3]; 2833[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];110 -> 2833[label="",style="solid", color="blue", weight=9]; 2833 -> 121[label="",style="solid", color="blue", weight=3]; 2834[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];110 -> 2834[label="",style="solid", color="blue", weight=9]; 2834 -> 122[label="",style="solid", color="blue", weight=3]; 2835[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];110 -> 2835[label="",style="solid", color="blue", weight=9]; 2835 -> 123[label="",style="solid", color="blue", weight=3]; 2836[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];110 -> 2836[label="",style="solid", color="blue", weight=9]; 2836 -> 124[label="",style="solid", color="blue", weight=3]; 2837[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];110 -> 2837[label="",style="solid", color="blue", weight=9]; 2837 -> 125[label="",style="solid", color="blue", weight=3]; 111[label="vwx15",fontsize=16,color="green",shape="box"];109[label="primCompAux0 vwx19 vwx20",fontsize=16,color="burlywood",shape="triangle"];2838[label="vwx20/LT",fontsize=10,color="white",style="solid",shape="box"];109 -> 2838[label="",style="solid", color="burlywood", weight=9]; 2838 -> 126[label="",style="solid", color="burlywood", weight=3]; 2839[label="vwx20/EQ",fontsize=10,color="white",style="solid",shape="box"];109 -> 2839[label="",style="solid", color="burlywood", weight=9]; 2839 -> 127[label="",style="solid", color="burlywood", weight=3]; 2840[label="vwx20/GT",fontsize=10,color="white",style="solid",shape="box"];109 -> 2840[label="",style="solid", color="burlywood", weight=9]; 2840 -> 128[label="",style="solid", color="burlywood", weight=3]; 112[label="compare vwx30 vwx40",fontsize=16,color="burlywood",shape="triangle"];2841[label="vwx30/vwx300 :% vwx301",fontsize=10,color="white",style="solid",shape="box"];112 -> 2841[label="",style="solid", color="burlywood", weight=9]; 2841 -> 129[label="",style="solid", color="burlywood", weight=3]; 113 -> 78[label="",style="dashed", color="red", weight=0]; 113[label="compare vwx30 vwx40",fontsize=16,color="magenta"];113 -> 130[label="",style="dashed", color="magenta", weight=3]; 113 -> 131[label="",style="dashed", color="magenta", weight=3]; 114[label="compare vwx30 vwx40",fontsize=16,color="black",shape="triangle"];114 -> 132[label="",style="solid", color="black", weight=3]; 115[label="compare vwx30 vwx40",fontsize=16,color="black",shape="triangle"];115 -> 133[label="",style="solid", color="black", weight=3]; 116[label="compare vwx30 vwx40",fontsize=16,color="black",shape="triangle"];116 -> 134[label="",style="solid", color="black", weight=3]; 117[label="compare vwx30 vwx40",fontsize=16,color="black",shape="triangle"];117 -> 135[label="",style="solid", color="black", weight=3]; 118[label="compare vwx30 vwx40",fontsize=16,color="burlywood",shape="triangle"];2842[label="vwx30/Integer vwx300",fontsize=10,color="white",style="solid",shape="box"];118 -> 2842[label="",style="solid", color="burlywood", weight=9]; 2842 -> 136[label="",style="solid", color="burlywood", weight=3]; 119[label="compare vwx30 vwx40",fontsize=16,color="black",shape="triangle"];119 -> 137[label="",style="solid", color="black", weight=3]; 120[label="compare vwx30 vwx40",fontsize=16,color="burlywood",shape="triangle"];2843[label="vwx30/()",fontsize=10,color="white",style="solid",shape="box"];120 -> 2843[label="",style="solid", color="burlywood", weight=9]; 2843 -> 138[label="",style="solid", color="burlywood", weight=3]; 121[label="compare vwx30 vwx40",fontsize=16,color="black",shape="triangle"];121 -> 139[label="",style="solid", color="black", weight=3]; 122[label="compare vwx30 vwx40",fontsize=16,color="black",shape="triangle"];122 -> 140[label="",style="solid", color="black", weight=3]; 123[label="compare vwx30 vwx40",fontsize=16,color="black",shape="triangle"];123 -> 141[label="",style="solid", color="black", weight=3]; 124[label="compare vwx30 vwx40",fontsize=16,color="black",shape="triangle"];124 -> 142[label="",style="solid", color="black", weight=3]; 125[label="compare vwx30 vwx40",fontsize=16,color="black",shape="triangle"];125 -> 143[label="",style="solid", color="black", weight=3]; 126[label="primCompAux0 vwx19 LT",fontsize=16,color="black",shape="box"];126 -> 144[label="",style="solid", color="black", weight=3]; 127[label="primCompAux0 vwx19 EQ",fontsize=16,color="black",shape="box"];127 -> 145[label="",style="solid", color="black", weight=3]; 128[label="primCompAux0 vwx19 GT",fontsize=16,color="black",shape="box"];128 -> 146[label="",style="solid", color="black", weight=3]; 129[label="compare (vwx300 :% vwx301) vwx40",fontsize=16,color="burlywood",shape="box"];2844[label="vwx40/vwx400 :% vwx401",fontsize=10,color="white",style="solid",shape="box"];129 -> 2844[label="",style="solid", color="burlywood", weight=9]; 2844 -> 147[label="",style="solid", color="burlywood", weight=3]; 130[label="vwx40",fontsize=16,color="green",shape="box"];131[label="vwx30",fontsize=16,color="green",shape="box"];132[label="compare3 vwx30 vwx40",fontsize=16,color="black",shape="box"];132 -> 148[label="",style="solid", color="black", weight=3]; 133[label="primCmpDouble vwx30 vwx40",fontsize=16,color="burlywood",shape="box"];2845[label="vwx30/Double vwx300 vwx301",fontsize=10,color="white",style="solid",shape="box"];133 -> 2845[label="",style="solid", color="burlywood", weight=9]; 2845 -> 149[label="",style="solid", color="burlywood", weight=3]; 134[label="compare3 vwx30 vwx40",fontsize=16,color="black",shape="box"];134 -> 150[label="",style="solid", color="black", weight=3]; 135[label="primCmpInt vwx30 vwx40",fontsize=16,color="burlywood",shape="triangle"];2846[label="vwx30/Pos vwx300",fontsize=10,color="white",style="solid",shape="box"];135 -> 2846[label="",style="solid", color="burlywood", weight=9]; 2846 -> 151[label="",style="solid", color="burlywood", weight=3]; 2847[label="vwx30/Neg vwx300",fontsize=10,color="white",style="solid",shape="box"];135 -> 2847[label="",style="solid", color="burlywood", weight=9]; 2847 -> 152[label="",style="solid", color="burlywood", weight=3]; 136[label="compare (Integer vwx300) vwx40",fontsize=16,color="burlywood",shape="box"];2848[label="vwx40/Integer vwx400",fontsize=10,color="white",style="solid",shape="box"];136 -> 2848[label="",style="solid", color="burlywood", weight=9]; 2848 -> 153[label="",style="solid", color="burlywood", weight=3]; 137[label="compare3 vwx30 vwx40",fontsize=16,color="black",shape="box"];137 -> 154[label="",style="solid", color="black", weight=3]; 138[label="compare () vwx40",fontsize=16,color="burlywood",shape="box"];2849[label="vwx40/()",fontsize=10,color="white",style="solid",shape="box"];138 -> 2849[label="",style="solid", color="burlywood", weight=9]; 2849 -> 155[label="",style="solid", color="burlywood", weight=3]; 139[label="primCmpFloat vwx30 vwx40",fontsize=16,color="burlywood",shape="box"];2850[label="vwx30/Float vwx300 vwx301",fontsize=10,color="white",style="solid",shape="box"];139 -> 2850[label="",style="solid", color="burlywood", weight=9]; 2850 -> 156[label="",style="solid", color="burlywood", weight=3]; 140[label="primCmpChar vwx30 vwx40",fontsize=16,color="burlywood",shape="box"];2851[label="vwx30/Char vwx300",fontsize=10,color="white",style="solid",shape="box"];140 -> 2851[label="",style="solid", color="burlywood", weight=9]; 2851 -> 157[label="",style="solid", color="burlywood", weight=3]; 141[label="compare3 vwx30 vwx40",fontsize=16,color="black",shape="box"];141 -> 158[label="",style="solid", color="black", weight=3]; 142[label="compare3 vwx30 vwx40",fontsize=16,color="black",shape="box"];142 -> 159[label="",style="solid", color="black", weight=3]; 143[label="compare3 vwx30 vwx40",fontsize=16,color="black",shape="box"];143 -> 160[label="",style="solid", color="black", weight=3]; 144[label="LT",fontsize=16,color="green",shape="box"];145[label="vwx19",fontsize=16,color="green",shape="box"];146[label="GT",fontsize=16,color="green",shape="box"];147[label="compare (vwx300 :% vwx301) (vwx400 :% vwx401)",fontsize=16,color="black",shape="box"];147 -> 161[label="",style="solid", color="black", weight=3]; 148[label="compare2 vwx30 vwx40 (vwx30 == vwx40)",fontsize=16,color="burlywood",shape="box"];2852[label="vwx30/LT",fontsize=10,color="white",style="solid",shape="box"];148 -> 2852[label="",style="solid", color="burlywood", weight=9]; 2852 -> 162[label="",style="solid", color="burlywood", weight=3]; 2853[label="vwx30/EQ",fontsize=10,color="white",style="solid",shape="box"];148 -> 2853[label="",style="solid", color="burlywood", weight=9]; 2853 -> 163[label="",style="solid", color="burlywood", weight=3]; 2854[label="vwx30/GT",fontsize=10,color="white",style="solid",shape="box"];148 -> 2854[label="",style="solid", color="burlywood", weight=9]; 2854 -> 164[label="",style="solid", color="burlywood", weight=3]; 149[label="primCmpDouble (Double vwx300 vwx301) vwx40",fontsize=16,color="burlywood",shape="box"];2855[label="vwx301/Pos vwx3010",fontsize=10,color="white",style="solid",shape="box"];149 -> 2855[label="",style="solid", color="burlywood", weight=9]; 2855 -> 165[label="",style="solid", color="burlywood", weight=3]; 2856[label="vwx301/Neg vwx3010",fontsize=10,color="white",style="solid",shape="box"];149 -> 2856[label="",style="solid", color="burlywood", weight=9]; 2856 -> 166[label="",style="solid", color="burlywood", weight=3]; 150[label="compare2 vwx30 vwx40 (vwx30 == vwx40)",fontsize=16,color="burlywood",shape="box"];2857[label="vwx30/Left vwx300",fontsize=10,color="white",style="solid",shape="box"];150 -> 2857[label="",style="solid", color="burlywood", weight=9]; 2857 -> 167[label="",style="solid", color="burlywood", weight=3]; 2858[label="vwx30/Right vwx300",fontsize=10,color="white",style="solid",shape="box"];150 -> 2858[label="",style="solid", color="burlywood", weight=9]; 2858 -> 168[label="",style="solid", color="burlywood", weight=3]; 151[label="primCmpInt (Pos vwx300) vwx40",fontsize=16,color="burlywood",shape="box"];2859[label="vwx300/Succ vwx3000",fontsize=10,color="white",style="solid",shape="box"];151 -> 2859[label="",style="solid", color="burlywood", weight=9]; 2859 -> 169[label="",style="solid", color="burlywood", weight=3]; 2860[label="vwx300/Zero",fontsize=10,color="white",style="solid",shape="box"];151 -> 2860[label="",style="solid", color="burlywood", weight=9]; 2860 -> 170[label="",style="solid", color="burlywood", weight=3]; 152[label="primCmpInt (Neg vwx300) vwx40",fontsize=16,color="burlywood",shape="box"];2861[label="vwx300/Succ vwx3000",fontsize=10,color="white",style="solid",shape="box"];152 -> 2861[label="",style="solid", color="burlywood", weight=9]; 2861 -> 171[label="",style="solid", color="burlywood", weight=3]; 2862[label="vwx300/Zero",fontsize=10,color="white",style="solid",shape="box"];152 -> 2862[label="",style="solid", color="burlywood", weight=9]; 2862 -> 172[label="",style="solid", color="burlywood", weight=3]; 153[label="compare (Integer vwx300) (Integer vwx400)",fontsize=16,color="black",shape="box"];153 -> 173[label="",style="solid", color="black", weight=3]; 154[label="compare2 vwx30 vwx40 (vwx30 == vwx40)",fontsize=16,color="burlywood",shape="box"];2863[label="vwx30/(vwx300,vwx301,vwx302)",fontsize=10,color="white",style="solid",shape="box"];154 -> 2863[label="",style="solid", color="burlywood", weight=9]; 2863 -> 174[label="",style="solid", color="burlywood", weight=3]; 155[label="compare () ()",fontsize=16,color="black",shape="box"];155 -> 175[label="",style="solid", color="black", weight=3]; 156[label="primCmpFloat (Float vwx300 vwx301) vwx40",fontsize=16,color="burlywood",shape="box"];2864[label="vwx301/Pos vwx3010",fontsize=10,color="white",style="solid",shape="box"];156 -> 2864[label="",style="solid", color="burlywood", weight=9]; 2864 -> 176[label="",style="solid", color="burlywood", weight=3]; 2865[label="vwx301/Neg vwx3010",fontsize=10,color="white",style="solid",shape="box"];156 -> 2865[label="",style="solid", color="burlywood", weight=9]; 2865 -> 177[label="",style="solid", color="burlywood", weight=3]; 157[label="primCmpChar (Char vwx300) vwx40",fontsize=16,color="burlywood",shape="box"];2866[label="vwx40/Char vwx400",fontsize=10,color="white",style="solid",shape="box"];157 -> 2866[label="",style="solid", color="burlywood", weight=9]; 2866 -> 178[label="",style="solid", color="burlywood", weight=3]; 158[label="compare2 vwx30 vwx40 (vwx30 == vwx40)",fontsize=16,color="burlywood",shape="box"];2867[label="vwx30/False",fontsize=10,color="white",style="solid",shape="box"];158 -> 2867[label="",style="solid", color="burlywood", weight=9]; 2867 -> 179[label="",style="solid", color="burlywood", weight=3]; 2868[label="vwx30/True",fontsize=10,color="white",style="solid",shape="box"];158 -> 2868[label="",style="solid", color="burlywood", weight=9]; 2868 -> 180[label="",style="solid", color="burlywood", weight=3]; 159[label="compare2 vwx30 vwx40 (vwx30 == vwx40)",fontsize=16,color="burlywood",shape="box"];2869[label="vwx30/Nothing",fontsize=10,color="white",style="solid",shape="box"];159 -> 2869[label="",style="solid", color="burlywood", weight=9]; 2869 -> 181[label="",style="solid", color="burlywood", weight=3]; 2870[label="vwx30/Just vwx300",fontsize=10,color="white",style="solid",shape="box"];159 -> 2870[label="",style="solid", color="burlywood", weight=9]; 2870 -> 182[label="",style="solid", color="burlywood", weight=3]; 160[label="compare2 vwx30 vwx40 (vwx30 == vwx40)",fontsize=16,color="burlywood",shape="box"];2871[label="vwx30/(vwx300,vwx301)",fontsize=10,color="white",style="solid",shape="box"];160 -> 2871[label="",style="solid", color="burlywood", weight=9]; 2871 -> 183[label="",style="solid", color="burlywood", weight=3]; 161[label="compare (vwx300 * vwx401) (vwx400 * vwx301)",fontsize=16,color="blue",shape="box"];2872[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];161 -> 2872[label="",style="solid", color="blue", weight=9]; 2872 -> 184[label="",style="solid", color="blue", weight=3]; 2873[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];161 -> 2873[label="",style="solid", color="blue", weight=9]; 2873 -> 185[label="",style="solid", color="blue", weight=3]; 162[label="compare2 LT vwx40 (LT == vwx40)",fontsize=16,color="burlywood",shape="box"];2874[label="vwx40/LT",fontsize=10,color="white",style="solid",shape="box"];162 -> 2874[label="",style="solid", color="burlywood", weight=9]; 2874 -> 186[label="",style="solid", color="burlywood", weight=3]; 2875[label="vwx40/EQ",fontsize=10,color="white",style="solid",shape="box"];162 -> 2875[label="",style="solid", color="burlywood", weight=9]; 2875 -> 187[label="",style="solid", color="burlywood", weight=3]; 2876[label="vwx40/GT",fontsize=10,color="white",style="solid",shape="box"];162 -> 2876[label="",style="solid", color="burlywood", weight=9]; 2876 -> 188[label="",style="solid", color="burlywood", weight=3]; 163[label="compare2 EQ vwx40 (EQ == vwx40)",fontsize=16,color="burlywood",shape="box"];2877[label="vwx40/LT",fontsize=10,color="white",style="solid",shape="box"];163 -> 2877[label="",style="solid", color="burlywood", weight=9]; 2877 -> 189[label="",style="solid", color="burlywood", weight=3]; 2878[label="vwx40/EQ",fontsize=10,color="white",style="solid",shape="box"];163 -> 2878[label="",style="solid", color="burlywood", weight=9]; 2878 -> 190[label="",style="solid", color="burlywood", weight=3]; 2879[label="vwx40/GT",fontsize=10,color="white",style="solid",shape="box"];163 -> 2879[label="",style="solid", color="burlywood", weight=9]; 2879 -> 191[label="",style="solid", color="burlywood", weight=3]; 164[label="compare2 GT vwx40 (GT == vwx40)",fontsize=16,color="burlywood",shape="box"];2880[label="vwx40/LT",fontsize=10,color="white",style="solid",shape="box"];164 -> 2880[label="",style="solid", color="burlywood", weight=9]; 2880 -> 192[label="",style="solid", color="burlywood", weight=3]; 2881[label="vwx40/EQ",fontsize=10,color="white",style="solid",shape="box"];164 -> 2881[label="",style="solid", color="burlywood", weight=9]; 2881 -> 193[label="",style="solid", color="burlywood", weight=3]; 2882[label="vwx40/GT",fontsize=10,color="white",style="solid",shape="box"];164 -> 2882[label="",style="solid", color="burlywood", weight=9]; 2882 -> 194[label="",style="solid", color="burlywood", weight=3]; 165[label="primCmpDouble (Double vwx300 (Pos vwx3010)) vwx40",fontsize=16,color="burlywood",shape="box"];2883[label="vwx40/Double vwx400 vwx401",fontsize=10,color="white",style="solid",shape="box"];165 -> 2883[label="",style="solid", color="burlywood", weight=9]; 2883 -> 195[label="",style="solid", color="burlywood", weight=3]; 166[label="primCmpDouble (Double vwx300 (Neg vwx3010)) vwx40",fontsize=16,color="burlywood",shape="box"];2884[label="vwx40/Double vwx400 vwx401",fontsize=10,color="white",style="solid",shape="box"];166 -> 2884[label="",style="solid", color="burlywood", weight=9]; 2884 -> 196[label="",style="solid", color="burlywood", weight=3]; 167[label="compare2 (Left vwx300) vwx40 (Left vwx300 == vwx40)",fontsize=16,color="burlywood",shape="box"];2885[label="vwx40/Left vwx400",fontsize=10,color="white",style="solid",shape="box"];167 -> 2885[label="",style="solid", color="burlywood", weight=9]; 2885 -> 197[label="",style="solid", color="burlywood", weight=3]; 2886[label="vwx40/Right vwx400",fontsize=10,color="white",style="solid",shape="box"];167 -> 2886[label="",style="solid", color="burlywood", weight=9]; 2886 -> 198[label="",style="solid", color="burlywood", weight=3]; 168[label="compare2 (Right vwx300) vwx40 (Right vwx300 == vwx40)",fontsize=16,color="burlywood",shape="box"];2887[label="vwx40/Left vwx400",fontsize=10,color="white",style="solid",shape="box"];168 -> 2887[label="",style="solid", color="burlywood", weight=9]; 2887 -> 199[label="",style="solid", color="burlywood", weight=3]; 2888[label="vwx40/Right vwx400",fontsize=10,color="white",style="solid",shape="box"];168 -> 2888[label="",style="solid", color="burlywood", weight=9]; 2888 -> 200[label="",style="solid", color="burlywood", weight=3]; 169[label="primCmpInt (Pos (Succ vwx3000)) vwx40",fontsize=16,color="burlywood",shape="box"];2889[label="vwx40/Pos vwx400",fontsize=10,color="white",style="solid",shape="box"];169 -> 2889[label="",style="solid", color="burlywood", weight=9]; 2889 -> 201[label="",style="solid", color="burlywood", weight=3]; 2890[label="vwx40/Neg vwx400",fontsize=10,color="white",style="solid",shape="box"];169 -> 2890[label="",style="solid", color="burlywood", weight=9]; 2890 -> 202[label="",style="solid", color="burlywood", weight=3]; 170[label="primCmpInt (Pos Zero) vwx40",fontsize=16,color="burlywood",shape="box"];2891[label="vwx40/Pos vwx400",fontsize=10,color="white",style="solid",shape="box"];170 -> 2891[label="",style="solid", color="burlywood", weight=9]; 2891 -> 203[label="",style="solid", color="burlywood", weight=3]; 2892[label="vwx40/Neg vwx400",fontsize=10,color="white",style="solid",shape="box"];170 -> 2892[label="",style="solid", color="burlywood", weight=9]; 2892 -> 204[label="",style="solid", color="burlywood", weight=3]; 171[label="primCmpInt (Neg (Succ vwx3000)) vwx40",fontsize=16,color="burlywood",shape="box"];2893[label="vwx40/Pos vwx400",fontsize=10,color="white",style="solid",shape="box"];171 -> 2893[label="",style="solid", color="burlywood", weight=9]; 2893 -> 205[label="",style="solid", color="burlywood", weight=3]; 2894[label="vwx40/Neg vwx400",fontsize=10,color="white",style="solid",shape="box"];171 -> 2894[label="",style="solid", color="burlywood", weight=9]; 2894 -> 206[label="",style="solid", color="burlywood", weight=3]; 172[label="primCmpInt (Neg Zero) vwx40",fontsize=16,color="burlywood",shape="box"];2895[label="vwx40/Pos vwx400",fontsize=10,color="white",style="solid",shape="box"];172 -> 2895[label="",style="solid", color="burlywood", weight=9]; 2895 -> 207[label="",style="solid", color="burlywood", weight=3]; 2896[label="vwx40/Neg vwx400",fontsize=10,color="white",style="solid",shape="box"];172 -> 2896[label="",style="solid", color="burlywood", weight=9]; 2896 -> 208[label="",style="solid", color="burlywood", weight=3]; 173 -> 135[label="",style="dashed", color="red", weight=0]; 173[label="primCmpInt vwx300 vwx400",fontsize=16,color="magenta"];173 -> 209[label="",style="dashed", color="magenta", weight=3]; 173 -> 210[label="",style="dashed", color="magenta", weight=3]; 174[label="compare2 (vwx300,vwx301,vwx302) vwx40 ((vwx300,vwx301,vwx302) == vwx40)",fontsize=16,color="burlywood",shape="box"];2897[label="vwx40/(vwx400,vwx401,vwx402)",fontsize=10,color="white",style="solid",shape="box"];174 -> 2897[label="",style="solid", color="burlywood", weight=9]; 2897 -> 211[label="",style="solid", color="burlywood", weight=3]; 175[label="EQ",fontsize=16,color="green",shape="box"];176[label="primCmpFloat (Float vwx300 (Pos vwx3010)) vwx40",fontsize=16,color="burlywood",shape="box"];2898[label="vwx40/Float vwx400 vwx401",fontsize=10,color="white",style="solid",shape="box"];176 -> 2898[label="",style="solid", color="burlywood", weight=9]; 2898 -> 212[label="",style="solid", color="burlywood", weight=3]; 177[label="primCmpFloat (Float vwx300 (Neg vwx3010)) vwx40",fontsize=16,color="burlywood",shape="box"];2899[label="vwx40/Float vwx400 vwx401",fontsize=10,color="white",style="solid",shape="box"];177 -> 2899[label="",style="solid", color="burlywood", weight=9]; 2899 -> 213[label="",style="solid", color="burlywood", weight=3]; 178[label="primCmpChar (Char vwx300) (Char vwx400)",fontsize=16,color="black",shape="box"];178 -> 214[label="",style="solid", color="black", weight=3]; 179[label="compare2 False vwx40 (False == vwx40)",fontsize=16,color="burlywood",shape="box"];2900[label="vwx40/False",fontsize=10,color="white",style="solid",shape="box"];179 -> 2900[label="",style="solid", color="burlywood", weight=9]; 2900 -> 215[label="",style="solid", color="burlywood", weight=3]; 2901[label="vwx40/True",fontsize=10,color="white",style="solid",shape="box"];179 -> 2901[label="",style="solid", color="burlywood", weight=9]; 2901 -> 216[label="",style="solid", color="burlywood", weight=3]; 180[label="compare2 True vwx40 (True == vwx40)",fontsize=16,color="burlywood",shape="box"];2902[label="vwx40/False",fontsize=10,color="white",style="solid",shape="box"];180 -> 2902[label="",style="solid", color="burlywood", weight=9]; 2902 -> 217[label="",style="solid", color="burlywood", weight=3]; 2903[label="vwx40/True",fontsize=10,color="white",style="solid",shape="box"];180 -> 2903[label="",style="solid", color="burlywood", weight=9]; 2903 -> 218[label="",style="solid", color="burlywood", weight=3]; 181[label="compare2 Nothing vwx40 (Nothing == vwx40)",fontsize=16,color="burlywood",shape="box"];2904[label="vwx40/Nothing",fontsize=10,color="white",style="solid",shape="box"];181 -> 2904[label="",style="solid", color="burlywood", weight=9]; 2904 -> 219[label="",style="solid", color="burlywood", weight=3]; 2905[label="vwx40/Just vwx400",fontsize=10,color="white",style="solid",shape="box"];181 -> 2905[label="",style="solid", color="burlywood", weight=9]; 2905 -> 220[label="",style="solid", color="burlywood", weight=3]; 182[label="compare2 (Just vwx300) vwx40 (Just vwx300 == vwx40)",fontsize=16,color="burlywood",shape="box"];2906[label="vwx40/Nothing",fontsize=10,color="white",style="solid",shape="box"];182 -> 2906[label="",style="solid", color="burlywood", weight=9]; 2906 -> 221[label="",style="solid", color="burlywood", weight=3]; 2907[label="vwx40/Just vwx400",fontsize=10,color="white",style="solid",shape="box"];182 -> 2907[label="",style="solid", color="burlywood", weight=9]; 2907 -> 222[label="",style="solid", color="burlywood", weight=3]; 183[label="compare2 (vwx300,vwx301) vwx40 ((vwx300,vwx301) == vwx40)",fontsize=16,color="burlywood",shape="box"];2908[label="vwx40/(vwx400,vwx401)",fontsize=10,color="white",style="solid",shape="box"];183 -> 2908[label="",style="solid", color="burlywood", weight=9]; 2908 -> 223[label="",style="solid", color="burlywood", weight=3]; 184 -> 117[label="",style="dashed", color="red", weight=0]; 184[label="compare (vwx300 * vwx401) (vwx400 * vwx301)",fontsize=16,color="magenta"];184 -> 224[label="",style="dashed", color="magenta", weight=3]; 184 -> 225[label="",style="dashed", color="magenta", weight=3]; 185 -> 118[label="",style="dashed", color="red", weight=0]; 185[label="compare (vwx300 * vwx401) (vwx400 * vwx301)",fontsize=16,color="magenta"];185 -> 226[label="",style="dashed", color="magenta", weight=3]; 185 -> 227[label="",style="dashed", color="magenta", weight=3]; 186[label="compare2 LT LT (LT == LT)",fontsize=16,color="black",shape="box"];186 -> 228[label="",style="solid", color="black", weight=3]; 187[label="compare2 LT EQ (LT == EQ)",fontsize=16,color="black",shape="box"];187 -> 229[label="",style="solid", color="black", weight=3]; 188[label="compare2 LT GT (LT == GT)",fontsize=16,color="black",shape="box"];188 -> 230[label="",style="solid", color="black", weight=3]; 189[label="compare2 EQ LT (EQ == LT)",fontsize=16,color="black",shape="box"];189 -> 231[label="",style="solid", color="black", weight=3]; 190[label="compare2 EQ EQ (EQ == EQ)",fontsize=16,color="black",shape="box"];190 -> 232[label="",style="solid", color="black", weight=3]; 191[label="compare2 EQ GT (EQ == GT)",fontsize=16,color="black",shape="box"];191 -> 233[label="",style="solid", color="black", weight=3]; 192[label="compare2 GT LT (GT == LT)",fontsize=16,color="black",shape="box"];192 -> 234[label="",style="solid", color="black", weight=3]; 193[label="compare2 GT EQ (GT == EQ)",fontsize=16,color="black",shape="box"];193 -> 235[label="",style="solid", color="black", weight=3]; 194[label="compare2 GT GT (GT == GT)",fontsize=16,color="black",shape="box"];194 -> 236[label="",style="solid", color="black", weight=3]; 195[label="primCmpDouble (Double vwx300 (Pos vwx3010)) (Double vwx400 vwx401)",fontsize=16,color="burlywood",shape="box"];2909[label="vwx401/Pos vwx4010",fontsize=10,color="white",style="solid",shape="box"];195 -> 2909[label="",style="solid", color="burlywood", weight=9]; 2909 -> 237[label="",style="solid", color="burlywood", weight=3]; 2910[label="vwx401/Neg vwx4010",fontsize=10,color="white",style="solid",shape="box"];195 -> 2910[label="",style="solid", color="burlywood", weight=9]; 2910 -> 238[label="",style="solid", color="burlywood", weight=3]; 196[label="primCmpDouble (Double vwx300 (Neg vwx3010)) (Double vwx400 vwx401)",fontsize=16,color="burlywood",shape="box"];2911[label="vwx401/Pos vwx4010",fontsize=10,color="white",style="solid",shape="box"];196 -> 2911[label="",style="solid", color="burlywood", weight=9]; 2911 -> 239[label="",style="solid", color="burlywood", weight=3]; 2912[label="vwx401/Neg vwx4010",fontsize=10,color="white",style="solid",shape="box"];196 -> 2912[label="",style="solid", color="burlywood", weight=9]; 2912 -> 240[label="",style="solid", color="burlywood", weight=3]; 197[label="compare2 (Left vwx300) (Left vwx400) (Left vwx300 == Left vwx400)",fontsize=16,color="black",shape="box"];197 -> 241[label="",style="solid", color="black", weight=3]; 198[label="compare2 (Left vwx300) (Right vwx400) (Left vwx300 == Right vwx400)",fontsize=16,color="black",shape="box"];198 -> 242[label="",style="solid", color="black", weight=3]; 199[label="compare2 (Right vwx300) (Left vwx400) (Right vwx300 == Left vwx400)",fontsize=16,color="black",shape="box"];199 -> 243[label="",style="solid", color="black", weight=3]; 200[label="compare2 (Right vwx300) (Right vwx400) (Right vwx300 == Right vwx400)",fontsize=16,color="black",shape="box"];200 -> 244[label="",style="solid", color="black", weight=3]; 201[label="primCmpInt (Pos (Succ vwx3000)) (Pos vwx400)",fontsize=16,color="black",shape="box"];201 -> 245[label="",style="solid", color="black", weight=3]; 202[label="primCmpInt (Pos (Succ vwx3000)) (Neg vwx400)",fontsize=16,color="black",shape="box"];202 -> 246[label="",style="solid", color="black", weight=3]; 203[label="primCmpInt (Pos Zero) (Pos vwx400)",fontsize=16,color="burlywood",shape="box"];2913[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];203 -> 2913[label="",style="solid", color="burlywood", weight=9]; 2913 -> 247[label="",style="solid", color="burlywood", weight=3]; 2914[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];203 -> 2914[label="",style="solid", color="burlywood", weight=9]; 2914 -> 248[label="",style="solid", color="burlywood", weight=3]; 204[label="primCmpInt (Pos Zero) (Neg vwx400)",fontsize=16,color="burlywood",shape="box"];2915[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];204 -> 2915[label="",style="solid", color="burlywood", weight=9]; 2915 -> 249[label="",style="solid", color="burlywood", weight=3]; 2916[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];204 -> 2916[label="",style="solid", color="burlywood", weight=9]; 2916 -> 250[label="",style="solid", color="burlywood", weight=3]; 205[label="primCmpInt (Neg (Succ vwx3000)) (Pos vwx400)",fontsize=16,color="black",shape="box"];205 -> 251[label="",style="solid", color="black", weight=3]; 206[label="primCmpInt (Neg (Succ vwx3000)) (Neg vwx400)",fontsize=16,color="black",shape="box"];206 -> 252[label="",style="solid", color="black", weight=3]; 207[label="primCmpInt (Neg Zero) (Pos vwx400)",fontsize=16,color="burlywood",shape="box"];2917[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];207 -> 2917[label="",style="solid", color="burlywood", weight=9]; 2917 -> 253[label="",style="solid", color="burlywood", weight=3]; 2918[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];207 -> 2918[label="",style="solid", color="burlywood", weight=9]; 2918 -> 254[label="",style="solid", color="burlywood", weight=3]; 208[label="primCmpInt (Neg Zero) (Neg vwx400)",fontsize=16,color="burlywood",shape="box"];2919[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];208 -> 2919[label="",style="solid", color="burlywood", weight=9]; 2919 -> 255[label="",style="solid", color="burlywood", weight=3]; 2920[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];208 -> 2920[label="",style="solid", color="burlywood", weight=9]; 2920 -> 256[label="",style="solid", color="burlywood", weight=3]; 209[label="vwx400",fontsize=16,color="green",shape="box"];210[label="vwx300",fontsize=16,color="green",shape="box"];211[label="compare2 (vwx300,vwx301,vwx302) (vwx400,vwx401,vwx402) ((vwx300,vwx301,vwx302) == (vwx400,vwx401,vwx402))",fontsize=16,color="black",shape="box"];211 -> 257[label="",style="solid", color="black", weight=3]; 212[label="primCmpFloat (Float vwx300 (Pos vwx3010)) (Float vwx400 vwx401)",fontsize=16,color="burlywood",shape="box"];2921[label="vwx401/Pos vwx4010",fontsize=10,color="white",style="solid",shape="box"];212 -> 2921[label="",style="solid", color="burlywood", weight=9]; 2921 -> 258[label="",style="solid", color="burlywood", weight=3]; 2922[label="vwx401/Neg vwx4010",fontsize=10,color="white",style="solid",shape="box"];212 -> 2922[label="",style="solid", color="burlywood", weight=9]; 2922 -> 259[label="",style="solid", color="burlywood", weight=3]; 213[label="primCmpFloat (Float vwx300 (Neg vwx3010)) (Float vwx400 vwx401)",fontsize=16,color="burlywood",shape="box"];2923[label="vwx401/Pos vwx4010",fontsize=10,color="white",style="solid",shape="box"];213 -> 2923[label="",style="solid", color="burlywood", weight=9]; 2923 -> 260[label="",style="solid", color="burlywood", weight=3]; 2924[label="vwx401/Neg vwx4010",fontsize=10,color="white",style="solid",shape="box"];213 -> 2924[label="",style="solid", color="burlywood", weight=9]; 2924 -> 261[label="",style="solid", color="burlywood", weight=3]; 214[label="primCmpNat vwx300 vwx400",fontsize=16,color="burlywood",shape="triangle"];2925[label="vwx300/Succ vwx3000",fontsize=10,color="white",style="solid",shape="box"];214 -> 2925[label="",style="solid", color="burlywood", weight=9]; 2925 -> 262[label="",style="solid", color="burlywood", weight=3]; 2926[label="vwx300/Zero",fontsize=10,color="white",style="solid",shape="box"];214 -> 2926[label="",style="solid", color="burlywood", weight=9]; 2926 -> 263[label="",style="solid", color="burlywood", weight=3]; 215[label="compare2 False False (False == False)",fontsize=16,color="black",shape="box"];215 -> 264[label="",style="solid", color="black", weight=3]; 216[label="compare2 False True (False == True)",fontsize=16,color="black",shape="box"];216 -> 265[label="",style="solid", color="black", weight=3]; 217[label="compare2 True False (True == False)",fontsize=16,color="black",shape="box"];217 -> 266[label="",style="solid", color="black", weight=3]; 218[label="compare2 True True (True == True)",fontsize=16,color="black",shape="box"];218 -> 267[label="",style="solid", color="black", weight=3]; 219[label="compare2 Nothing Nothing (Nothing == Nothing)",fontsize=16,color="black",shape="box"];219 -> 268[label="",style="solid", color="black", weight=3]; 220[label="compare2 Nothing (Just vwx400) (Nothing == Just vwx400)",fontsize=16,color="black",shape="box"];220 -> 269[label="",style="solid", color="black", weight=3]; 221[label="compare2 (Just vwx300) Nothing (Just vwx300 == Nothing)",fontsize=16,color="black",shape="box"];221 -> 270[label="",style="solid", color="black", weight=3]; 222[label="compare2 (Just vwx300) (Just vwx400) (Just vwx300 == Just vwx400)",fontsize=16,color="black",shape="box"];222 -> 271[label="",style="solid", color="black", weight=3]; 223[label="compare2 (vwx300,vwx301) (vwx400,vwx401) ((vwx300,vwx301) == (vwx400,vwx401))",fontsize=16,color="black",shape="box"];223 -> 272[label="",style="solid", color="black", weight=3]; 224[label="vwx400 * vwx301",fontsize=16,color="black",shape="triangle"];224 -> 273[label="",style="solid", color="black", weight=3]; 225 -> 224[label="",style="dashed", color="red", weight=0]; 225[label="vwx300 * vwx401",fontsize=16,color="magenta"];225 -> 274[label="",style="dashed", color="magenta", weight=3]; 225 -> 275[label="",style="dashed", color="magenta", weight=3]; 226[label="vwx400 * vwx301",fontsize=16,color="burlywood",shape="triangle"];2927[label="vwx400/Integer vwx4000",fontsize=10,color="white",style="solid",shape="box"];226 -> 2927[label="",style="solid", color="burlywood", weight=9]; 2927 -> 276[label="",style="solid", color="burlywood", weight=3]; 227 -> 226[label="",style="dashed", color="red", weight=0]; 227[label="vwx300 * vwx401",fontsize=16,color="magenta"];227 -> 277[label="",style="dashed", color="magenta", weight=3]; 227 -> 278[label="",style="dashed", color="magenta", weight=3]; 228[label="compare2 LT LT True",fontsize=16,color="black",shape="box"];228 -> 279[label="",style="solid", color="black", weight=3]; 229[label="compare2 LT EQ False",fontsize=16,color="black",shape="box"];229 -> 280[label="",style="solid", color="black", weight=3]; 230[label="compare2 LT GT False",fontsize=16,color="black",shape="box"];230 -> 281[label="",style="solid", color="black", weight=3]; 231[label="compare2 EQ LT False",fontsize=16,color="black",shape="box"];231 -> 282[label="",style="solid", color="black", weight=3]; 232[label="compare2 EQ EQ True",fontsize=16,color="black",shape="box"];232 -> 283[label="",style="solid", color="black", weight=3]; 233[label="compare2 EQ GT False",fontsize=16,color="black",shape="box"];233 -> 284[label="",style="solid", color="black", weight=3]; 234[label="compare2 GT LT False",fontsize=16,color="black",shape="box"];234 -> 285[label="",style="solid", color="black", weight=3]; 235[label="compare2 GT EQ False",fontsize=16,color="black",shape="box"];235 -> 286[label="",style="solid", color="black", weight=3]; 236[label="compare2 GT GT True",fontsize=16,color="black",shape="box"];236 -> 287[label="",style="solid", color="black", weight=3]; 237[label="primCmpDouble (Double vwx300 (Pos vwx3010)) (Double vwx400 (Pos vwx4010))",fontsize=16,color="black",shape="box"];237 -> 288[label="",style="solid", color="black", weight=3]; 238[label="primCmpDouble (Double vwx300 (Pos vwx3010)) (Double vwx400 (Neg vwx4010))",fontsize=16,color="black",shape="box"];238 -> 289[label="",style="solid", color="black", weight=3]; 239[label="primCmpDouble (Double vwx300 (Neg vwx3010)) (Double vwx400 (Pos vwx4010))",fontsize=16,color="black",shape="box"];239 -> 290[label="",style="solid", color="black", weight=3]; 240[label="primCmpDouble (Double vwx300 (Neg vwx3010)) (Double vwx400 (Neg vwx4010))",fontsize=16,color="black",shape="box"];240 -> 291[label="",style="solid", color="black", weight=3]; 241 -> 292[label="",style="dashed", color="red", weight=0]; 241[label="compare2 (Left vwx300) (Left vwx400) (vwx300 == vwx400)",fontsize=16,color="magenta"];241 -> 293[label="",style="dashed", color="magenta", weight=3]; 241 -> 294[label="",style="dashed", color="magenta", weight=3]; 241 -> 295[label="",style="dashed", color="magenta", weight=3]; 242[label="compare2 (Left vwx300) (Right vwx400) False",fontsize=16,color="black",shape="box"];242 -> 296[label="",style="solid", color="black", weight=3]; 243[label="compare2 (Right vwx300) (Left vwx400) False",fontsize=16,color="black",shape="box"];243 -> 297[label="",style="solid", color="black", weight=3]; 244 -> 298[label="",style="dashed", color="red", weight=0]; 244[label="compare2 (Right vwx300) (Right vwx400) (vwx300 == vwx400)",fontsize=16,color="magenta"];244 -> 299[label="",style="dashed", color="magenta", weight=3]; 244 -> 300[label="",style="dashed", color="magenta", weight=3]; 244 -> 301[label="",style="dashed", color="magenta", weight=3]; 245 -> 214[label="",style="dashed", color="red", weight=0]; 245[label="primCmpNat (Succ vwx3000) vwx400",fontsize=16,color="magenta"];245 -> 302[label="",style="dashed", color="magenta", weight=3]; 245 -> 303[label="",style="dashed", color="magenta", weight=3]; 246[label="GT",fontsize=16,color="green",shape="box"];247[label="primCmpInt (Pos Zero) (Pos (Succ vwx4000))",fontsize=16,color="black",shape="box"];247 -> 304[label="",style="solid", color="black", weight=3]; 248[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];248 -> 305[label="",style="solid", color="black", weight=3]; 249[label="primCmpInt (Pos Zero) (Neg (Succ vwx4000))",fontsize=16,color="black",shape="box"];249 -> 306[label="",style="solid", color="black", weight=3]; 250[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];250 -> 307[label="",style="solid", color="black", weight=3]; 251[label="LT",fontsize=16,color="green",shape="box"];252 -> 214[label="",style="dashed", color="red", weight=0]; 252[label="primCmpNat vwx400 (Succ vwx3000)",fontsize=16,color="magenta"];252 -> 308[label="",style="dashed", color="magenta", weight=3]; 252 -> 309[label="",style="dashed", color="magenta", weight=3]; 253[label="primCmpInt (Neg Zero) (Pos (Succ vwx4000))",fontsize=16,color="black",shape="box"];253 -> 310[label="",style="solid", color="black", weight=3]; 254[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];254 -> 311[label="",style="solid", color="black", weight=3]; 255[label="primCmpInt (Neg Zero) (Neg (Succ vwx4000))",fontsize=16,color="black",shape="box"];255 -> 312[label="",style="solid", color="black", weight=3]; 256[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];256 -> 313[label="",style="solid", color="black", weight=3]; 257 -> 876[label="",style="dashed", color="red", weight=0]; 257[label="compare2 (vwx300,vwx301,vwx302) (vwx400,vwx401,vwx402) (vwx300 == vwx400 && vwx301 == vwx401 && vwx302 == vwx402)",fontsize=16,color="magenta"];257 -> 877[label="",style="dashed", color="magenta", weight=3]; 257 -> 878[label="",style="dashed", color="magenta", weight=3]; 257 -> 879[label="",style="dashed", color="magenta", weight=3]; 257 -> 880[label="",style="dashed", color="magenta", weight=3]; 257 -> 881[label="",style="dashed", color="magenta", weight=3]; 257 -> 882[label="",style="dashed", color="magenta", weight=3]; 257 -> 883[label="",style="dashed", color="magenta", weight=3]; 258[label="primCmpFloat (Float vwx300 (Pos vwx3010)) (Float vwx400 (Pos vwx4010))",fontsize=16,color="black",shape="box"];258 -> 322[label="",style="solid", color="black", weight=3]; 259[label="primCmpFloat (Float vwx300 (Pos vwx3010)) (Float vwx400 (Neg vwx4010))",fontsize=16,color="black",shape="box"];259 -> 323[label="",style="solid", color="black", weight=3]; 260[label="primCmpFloat (Float vwx300 (Neg vwx3010)) (Float vwx400 (Pos vwx4010))",fontsize=16,color="black",shape="box"];260 -> 324[label="",style="solid", color="black", weight=3]; 261[label="primCmpFloat (Float vwx300 (Neg vwx3010)) (Float vwx400 (Neg vwx4010))",fontsize=16,color="black",shape="box"];261 -> 325[label="",style="solid", color="black", weight=3]; 262[label="primCmpNat (Succ vwx3000) vwx400",fontsize=16,color="burlywood",shape="box"];2928[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];262 -> 2928[label="",style="solid", color="burlywood", weight=9]; 2928 -> 326[label="",style="solid", color="burlywood", weight=3]; 2929[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];262 -> 2929[label="",style="solid", color="burlywood", weight=9]; 2929 -> 327[label="",style="solid", color="burlywood", weight=3]; 263[label="primCmpNat Zero vwx400",fontsize=16,color="burlywood",shape="box"];2930[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];263 -> 2930[label="",style="solid", color="burlywood", weight=9]; 2930 -> 328[label="",style="solid", color="burlywood", weight=3]; 2931[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];263 -> 2931[label="",style="solid", color="burlywood", weight=9]; 2931 -> 329[label="",style="solid", color="burlywood", weight=3]; 264[label="compare2 False False True",fontsize=16,color="black",shape="box"];264 -> 330[label="",style="solid", color="black", weight=3]; 265[label="compare2 False True False",fontsize=16,color="black",shape="box"];265 -> 331[label="",style="solid", color="black", weight=3]; 266[label="compare2 True False False",fontsize=16,color="black",shape="box"];266 -> 332[label="",style="solid", color="black", weight=3]; 267[label="compare2 True True True",fontsize=16,color="black",shape="box"];267 -> 333[label="",style="solid", color="black", weight=3]; 268[label="compare2 Nothing Nothing True",fontsize=16,color="black",shape="box"];268 -> 334[label="",style="solid", color="black", weight=3]; 269[label="compare2 Nothing (Just vwx400) False",fontsize=16,color="black",shape="box"];269 -> 335[label="",style="solid", color="black", weight=3]; 270[label="compare2 (Just vwx300) Nothing False",fontsize=16,color="black",shape="box"];270 -> 336[label="",style="solid", color="black", weight=3]; 271 -> 337[label="",style="dashed", color="red", weight=0]; 271[label="compare2 (Just vwx300) (Just vwx400) (vwx300 == vwx400)",fontsize=16,color="magenta"];271 -> 338[label="",style="dashed", color="magenta", weight=3]; 271 -> 339[label="",style="dashed", color="magenta", weight=3]; 271 -> 340[label="",style="dashed", color="magenta", weight=3]; 272 -> 718[label="",style="dashed", color="red", weight=0]; 272[label="compare2 (vwx300,vwx301) (vwx400,vwx401) (vwx300 == vwx400 && vwx301 == vwx401)",fontsize=16,color="magenta"];272 -> 719[label="",style="dashed", color="magenta", weight=3]; 272 -> 720[label="",style="dashed", color="magenta", weight=3]; 272 -> 721[label="",style="dashed", color="magenta", weight=3]; 272 -> 722[label="",style="dashed", color="magenta", weight=3]; 272 -> 723[label="",style="dashed", color="magenta", weight=3]; 273[label="primMulInt vwx400 vwx301",fontsize=16,color="burlywood",shape="triangle"];2932[label="vwx400/Pos vwx4000",fontsize=10,color="white",style="solid",shape="box"];273 -> 2932[label="",style="solid", color="burlywood", weight=9]; 2932 -> 347[label="",style="solid", color="burlywood", weight=3]; 2933[label="vwx400/Neg vwx4000",fontsize=10,color="white",style="solid",shape="box"];273 -> 2933[label="",style="solid", color="burlywood", weight=9]; 2933 -> 348[label="",style="solid", color="burlywood", weight=3]; 274[label="vwx300",fontsize=16,color="green",shape="box"];275[label="vwx401",fontsize=16,color="green",shape="box"];276[label="Integer vwx4000 * vwx301",fontsize=16,color="burlywood",shape="box"];2934[label="vwx301/Integer vwx3010",fontsize=10,color="white",style="solid",shape="box"];276 -> 2934[label="",style="solid", color="burlywood", weight=9]; 2934 -> 349[label="",style="solid", color="burlywood", weight=3]; 277[label="vwx300",fontsize=16,color="green",shape="box"];278[label="vwx401",fontsize=16,color="green",shape="box"];279[label="EQ",fontsize=16,color="green",shape="box"];280[label="compare1 LT EQ (LT <= EQ)",fontsize=16,color="black",shape="box"];280 -> 350[label="",style="solid", color="black", weight=3]; 281[label="compare1 LT GT (LT <= GT)",fontsize=16,color="black",shape="box"];281 -> 351[label="",style="solid", color="black", weight=3]; 282[label="compare1 EQ LT (EQ <= LT)",fontsize=16,color="black",shape="box"];282 -> 352[label="",style="solid", color="black", weight=3]; 283[label="EQ",fontsize=16,color="green",shape="box"];284[label="compare1 EQ GT (EQ <= GT)",fontsize=16,color="black",shape="box"];284 -> 353[label="",style="solid", color="black", weight=3]; 285[label="compare1 GT LT (GT <= LT)",fontsize=16,color="black",shape="box"];285 -> 354[label="",style="solid", color="black", weight=3]; 286[label="compare1 GT EQ (GT <= EQ)",fontsize=16,color="black",shape="box"];286 -> 355[label="",style="solid", color="black", weight=3]; 287[label="EQ",fontsize=16,color="green",shape="box"];288 -> 117[label="",style="dashed", color="red", weight=0]; 288[label="compare (vwx300 * Pos vwx4010) (Pos vwx3010 * vwx400)",fontsize=16,color="magenta"];288 -> 356[label="",style="dashed", color="magenta", weight=3]; 288 -> 357[label="",style="dashed", color="magenta", weight=3]; 289 -> 117[label="",style="dashed", color="red", weight=0]; 289[label="compare (vwx300 * Pos vwx4010) (Neg vwx3010 * vwx400)",fontsize=16,color="magenta"];289 -> 358[label="",style="dashed", color="magenta", weight=3]; 289 -> 359[label="",style="dashed", color="magenta", weight=3]; 290 -> 117[label="",style="dashed", color="red", weight=0]; 290[label="compare (vwx300 * Neg vwx4010) (Pos vwx3010 * vwx400)",fontsize=16,color="magenta"];290 -> 360[label="",style="dashed", color="magenta", weight=3]; 290 -> 361[label="",style="dashed", color="magenta", weight=3]; 291 -> 117[label="",style="dashed", color="red", weight=0]; 291[label="compare (vwx300 * Neg vwx4010) (Neg vwx3010 * vwx400)",fontsize=16,color="magenta"];291 -> 362[label="",style="dashed", color="magenta", weight=3]; 291 -> 363[label="",style="dashed", color="magenta", weight=3]; 293[label="vwx400",fontsize=16,color="green",shape="box"];294[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];2935[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];294 -> 2935[label="",style="solid", color="blue", weight=9]; 2935 -> 364[label="",style="solid", color="blue", weight=3]; 2936[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];294 -> 2936[label="",style="solid", color="blue", weight=9]; 2936 -> 365[label="",style="solid", color="blue", weight=3]; 2937[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];294 -> 2937[label="",style="solid", color="blue", weight=9]; 2937 -> 366[label="",style="solid", color="blue", weight=3]; 2938[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];294 -> 2938[label="",style="solid", color="blue", weight=9]; 2938 -> 367[label="",style="solid", color="blue", weight=3]; 2939[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];294 -> 2939[label="",style="solid", color="blue", weight=9]; 2939 -> 368[label="",style="solid", color="blue", weight=3]; 2940[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];294 -> 2940[label="",style="solid", color="blue", weight=9]; 2940 -> 369[label="",style="solid", color="blue", weight=3]; 2941[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];294 -> 2941[label="",style="solid", color="blue", weight=9]; 2941 -> 370[label="",style="solid", color="blue", weight=3]; 2942[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];294 -> 2942[label="",style="solid", color="blue", weight=9]; 2942 -> 371[label="",style="solid", color="blue", weight=3]; 2943[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];294 -> 2943[label="",style="solid", color="blue", weight=9]; 2943 -> 372[label="",style="solid", color="blue", weight=3]; 2944[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];294 -> 2944[label="",style="solid", color="blue", weight=9]; 2944 -> 373[label="",style="solid", color="blue", weight=3]; 2945[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];294 -> 2945[label="",style="solid", color="blue", weight=9]; 2945 -> 374[label="",style="solid", color="blue", weight=3]; 2946[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];294 -> 2946[label="",style="solid", color="blue", weight=9]; 2946 -> 375[label="",style="solid", color="blue", weight=3]; 2947[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];294 -> 2947[label="",style="solid", color="blue", weight=9]; 2947 -> 376[label="",style="solid", color="blue", weight=3]; 2948[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];294 -> 2948[label="",style="solid", color="blue", weight=9]; 2948 -> 377[label="",style="solid", color="blue", weight=3]; 295[label="vwx300",fontsize=16,color="green",shape="box"];292[label="compare2 (Left vwx25) (Left vwx26) vwx27",fontsize=16,color="burlywood",shape="triangle"];2949[label="vwx27/False",fontsize=10,color="white",style="solid",shape="box"];292 -> 2949[label="",style="solid", color="burlywood", weight=9]; 2949 -> 378[label="",style="solid", color="burlywood", weight=3]; 2950[label="vwx27/True",fontsize=10,color="white",style="solid",shape="box"];292 -> 2950[label="",style="solid", color="burlywood", weight=9]; 2950 -> 379[label="",style="solid", color="burlywood", weight=3]; 296[label="compare1 (Left vwx300) (Right vwx400) (Left vwx300 <= Right vwx400)",fontsize=16,color="black",shape="box"];296 -> 380[label="",style="solid", color="black", weight=3]; 297[label="compare1 (Right vwx300) (Left vwx400) (Right vwx300 <= Left vwx400)",fontsize=16,color="black",shape="box"];297 -> 381[label="",style="solid", color="black", weight=3]; 299[label="vwx400",fontsize=16,color="green",shape="box"];300[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];2951[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];300 -> 2951[label="",style="solid", color="blue", weight=9]; 2951 -> 382[label="",style="solid", color="blue", weight=3]; 2952[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];300 -> 2952[label="",style="solid", color="blue", weight=9]; 2952 -> 383[label="",style="solid", color="blue", weight=3]; 2953[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];300 -> 2953[label="",style="solid", color="blue", weight=9]; 2953 -> 384[label="",style="solid", color="blue", weight=3]; 2954[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];300 -> 2954[label="",style="solid", color="blue", weight=9]; 2954 -> 385[label="",style="solid", color="blue", weight=3]; 2955[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];300 -> 2955[label="",style="solid", color="blue", weight=9]; 2955 -> 386[label="",style="solid", color="blue", weight=3]; 2956[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];300 -> 2956[label="",style="solid", color="blue", weight=9]; 2956 -> 387[label="",style="solid", color="blue", weight=3]; 2957[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];300 -> 2957[label="",style="solid", color="blue", weight=9]; 2957 -> 388[label="",style="solid", color="blue", weight=3]; 2958[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];300 -> 2958[label="",style="solid", color="blue", weight=9]; 2958 -> 389[label="",style="solid", color="blue", weight=3]; 2959[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];300 -> 2959[label="",style="solid", color="blue", weight=9]; 2959 -> 390[label="",style="solid", color="blue", weight=3]; 2960[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];300 -> 2960[label="",style="solid", color="blue", weight=9]; 2960 -> 391[label="",style="solid", color="blue", weight=3]; 2961[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];300 -> 2961[label="",style="solid", color="blue", weight=9]; 2961 -> 392[label="",style="solid", color="blue", weight=3]; 2962[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];300 -> 2962[label="",style="solid", color="blue", weight=9]; 2962 -> 393[label="",style="solid", color="blue", weight=3]; 2963[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];300 -> 2963[label="",style="solid", color="blue", weight=9]; 2963 -> 394[label="",style="solid", color="blue", weight=3]; 2964[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];300 -> 2964[label="",style="solid", color="blue", weight=9]; 2964 -> 395[label="",style="solid", color="blue", weight=3]; 301[label="vwx300",fontsize=16,color="green",shape="box"];298[label="compare2 (Right vwx32) (Right vwx33) vwx34",fontsize=16,color="burlywood",shape="triangle"];2965[label="vwx34/False",fontsize=10,color="white",style="solid",shape="box"];298 -> 2965[label="",style="solid", color="burlywood", weight=9]; 2965 -> 396[label="",style="solid", color="burlywood", weight=3]; 2966[label="vwx34/True",fontsize=10,color="white",style="solid",shape="box"];298 -> 2966[label="",style="solid", color="burlywood", weight=9]; 2966 -> 397[label="",style="solid", color="burlywood", weight=3]; 302[label="vwx400",fontsize=16,color="green",shape="box"];303[label="Succ vwx3000",fontsize=16,color="green",shape="box"];304 -> 214[label="",style="dashed", color="red", weight=0]; 304[label="primCmpNat Zero (Succ vwx4000)",fontsize=16,color="magenta"];304 -> 398[label="",style="dashed", color="magenta", weight=3]; 304 -> 399[label="",style="dashed", color="magenta", weight=3]; 305[label="EQ",fontsize=16,color="green",shape="box"];306[label="GT",fontsize=16,color="green",shape="box"];307[label="EQ",fontsize=16,color="green",shape="box"];308[label="Succ vwx3000",fontsize=16,color="green",shape="box"];309[label="vwx400",fontsize=16,color="green",shape="box"];310[label="LT",fontsize=16,color="green",shape="box"];311[label="EQ",fontsize=16,color="green",shape="box"];312 -> 214[label="",style="dashed", color="red", weight=0]; 312[label="primCmpNat (Succ vwx4000) Zero",fontsize=16,color="magenta"];312 -> 400[label="",style="dashed", color="magenta", weight=3]; 312 -> 401[label="",style="dashed", color="magenta", weight=3]; 313[label="EQ",fontsize=16,color="green",shape="box"];877[label="vwx302",fontsize=16,color="green",shape="box"];878[label="vwx402",fontsize=16,color="green",shape="box"];879[label="vwx401",fontsize=16,color="green",shape="box"];880[label="vwx400",fontsize=16,color="green",shape="box"];881 -> 928[label="",style="dashed", color="red", weight=0]; 881[label="vwx300 == vwx400 && vwx301 == vwx401 && vwx302 == vwx402",fontsize=16,color="magenta"];881 -> 929[label="",style="dashed", color="magenta", weight=3]; 881 -> 930[label="",style="dashed", color="magenta", weight=3]; 882[label="vwx300",fontsize=16,color="green",shape="box"];883[label="vwx301",fontsize=16,color="green",shape="box"];876[label="compare2 (vwx76,vwx77,vwx78) (vwx79,vwx80,vwx81) vwx115",fontsize=16,color="burlywood",shape="triangle"];2967[label="vwx115/False",fontsize=10,color="white",style="solid",shape="box"];876 -> 2967[label="",style="solid", color="burlywood", weight=9]; 2967 -> 923[label="",style="solid", color="burlywood", weight=3]; 2968[label="vwx115/True",fontsize=10,color="white",style="solid",shape="box"];876 -> 2968[label="",style="solid", color="burlywood", weight=9]; 2968 -> 924[label="",style="solid", color="burlywood", weight=3]; 322 -> 117[label="",style="dashed", color="red", weight=0]; 322[label="compare (vwx300 * Pos vwx4010) (Pos vwx3010 * vwx400)",fontsize=16,color="magenta"];322 -> 418[label="",style="dashed", color="magenta", weight=3]; 322 -> 419[label="",style="dashed", color="magenta", weight=3]; 323 -> 117[label="",style="dashed", color="red", weight=0]; 323[label="compare (vwx300 * Pos vwx4010) (Neg vwx3010 * vwx400)",fontsize=16,color="magenta"];323 -> 420[label="",style="dashed", color="magenta", weight=3]; 323 -> 421[label="",style="dashed", color="magenta", weight=3]; 324 -> 117[label="",style="dashed", color="red", weight=0]; 324[label="compare (vwx300 * Neg vwx4010) (Pos vwx3010 * vwx400)",fontsize=16,color="magenta"];324 -> 422[label="",style="dashed", color="magenta", weight=3]; 324 -> 423[label="",style="dashed", color="magenta", weight=3]; 325 -> 117[label="",style="dashed", color="red", weight=0]; 325[label="compare (vwx300 * Neg vwx4010) (Neg vwx3010 * vwx400)",fontsize=16,color="magenta"];325 -> 424[label="",style="dashed", color="magenta", weight=3]; 325 -> 425[label="",style="dashed", color="magenta", weight=3]; 326[label="primCmpNat (Succ vwx3000) (Succ vwx4000)",fontsize=16,color="black",shape="box"];326 -> 426[label="",style="solid", color="black", weight=3]; 327[label="primCmpNat (Succ vwx3000) Zero",fontsize=16,color="black",shape="box"];327 -> 427[label="",style="solid", color="black", weight=3]; 328[label="primCmpNat Zero (Succ vwx4000)",fontsize=16,color="black",shape="box"];328 -> 428[label="",style="solid", color="black", weight=3]; 329[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];329 -> 429[label="",style="solid", color="black", weight=3]; 330[label="EQ",fontsize=16,color="green",shape="box"];331[label="compare1 False True (False <= True)",fontsize=16,color="black",shape="box"];331 -> 430[label="",style="solid", color="black", weight=3]; 332[label="compare1 True False (True <= False)",fontsize=16,color="black",shape="box"];332 -> 431[label="",style="solid", color="black", weight=3]; 333[label="EQ",fontsize=16,color="green",shape="box"];334[label="EQ",fontsize=16,color="green",shape="box"];335[label="compare1 Nothing (Just vwx400) (Nothing <= Just vwx400)",fontsize=16,color="black",shape="box"];335 -> 432[label="",style="solid", color="black", weight=3]; 336[label="compare1 (Just vwx300) Nothing (Just vwx300 <= Nothing)",fontsize=16,color="black",shape="box"];336 -> 433[label="",style="solid", color="black", weight=3]; 338[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];2969[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];338 -> 2969[label="",style="solid", color="blue", weight=9]; 2969 -> 434[label="",style="solid", color="blue", weight=3]; 2970[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];338 -> 2970[label="",style="solid", color="blue", weight=9]; 2970 -> 435[label="",style="solid", color="blue", weight=3]; 2971[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];338 -> 2971[label="",style="solid", color="blue", weight=9]; 2971 -> 436[label="",style="solid", color="blue", weight=3]; 2972[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];338 -> 2972[label="",style="solid", color="blue", weight=9]; 2972 -> 437[label="",style="solid", color="blue", weight=3]; 2973[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];338 -> 2973[label="",style="solid", color="blue", weight=9]; 2973 -> 438[label="",style="solid", color="blue", weight=3]; 2974[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];338 -> 2974[label="",style="solid", color="blue", weight=9]; 2974 -> 439[label="",style="solid", color="blue", weight=3]; 2975[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];338 -> 2975[label="",style="solid", color="blue", weight=9]; 2975 -> 440[label="",style="solid", color="blue", weight=3]; 2976[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];338 -> 2976[label="",style="solid", color="blue", weight=9]; 2976 -> 441[label="",style="solid", color="blue", weight=3]; 2977[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];338 -> 2977[label="",style="solid", color="blue", weight=9]; 2977 -> 442[label="",style="solid", color="blue", weight=3]; 2978[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];338 -> 2978[label="",style="solid", color="blue", weight=9]; 2978 -> 443[label="",style="solid", color="blue", weight=3]; 2979[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];338 -> 2979[label="",style="solid", color="blue", weight=9]; 2979 -> 444[label="",style="solid", color="blue", weight=3]; 2980[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];338 -> 2980[label="",style="solid", color="blue", weight=9]; 2980 -> 445[label="",style="solid", color="blue", weight=3]; 2981[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];338 -> 2981[label="",style="solid", color="blue", weight=9]; 2981 -> 446[label="",style="solid", color="blue", weight=3]; 2982[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];338 -> 2982[label="",style="solid", color="blue", weight=9]; 2982 -> 447[label="",style="solid", color="blue", weight=3]; 339[label="vwx300",fontsize=16,color="green",shape="box"];340[label="vwx400",fontsize=16,color="green",shape="box"];337[label="compare2 (Just vwx54) (Just vwx55) vwx56",fontsize=16,color="burlywood",shape="triangle"];2983[label="vwx56/False",fontsize=10,color="white",style="solid",shape="box"];337 -> 2983[label="",style="solid", color="burlywood", weight=9]; 2983 -> 448[label="",style="solid", color="burlywood", weight=3]; 2984[label="vwx56/True",fontsize=10,color="white",style="solid",shape="box"];337 -> 2984[label="",style="solid", color="burlywood", weight=9]; 2984 -> 449[label="",style="solid", color="burlywood", weight=3]; 719[label="vwx401",fontsize=16,color="green",shape="box"];720[label="vwx300",fontsize=16,color="green",shape="box"];721 -> 928[label="",style="dashed", color="red", weight=0]; 721[label="vwx300 == vwx400 && vwx301 == vwx401",fontsize=16,color="magenta"];721 -> 931[label="",style="dashed", color="magenta", weight=3]; 721 -> 932[label="",style="dashed", color="magenta", weight=3]; 722[label="vwx400",fontsize=16,color="green",shape="box"];723[label="vwx301",fontsize=16,color="green",shape="box"];718[label="compare2 (vwx89,vwx90) (vwx91,vwx92) vwx93",fontsize=16,color="burlywood",shape="triangle"];2985[label="vwx93/False",fontsize=10,color="white",style="solid",shape="box"];718 -> 2985[label="",style="solid", color="burlywood", weight=9]; 2985 -> 743[label="",style="solid", color="burlywood", weight=3]; 2986[label="vwx93/True",fontsize=10,color="white",style="solid",shape="box"];718 -> 2986[label="",style="solid", color="burlywood", weight=9]; 2986 -> 744[label="",style="solid", color="burlywood", weight=3]; 347[label="primMulInt (Pos vwx4000) vwx301",fontsize=16,color="burlywood",shape="box"];2987[label="vwx301/Pos vwx3010",fontsize=10,color="white",style="solid",shape="box"];347 -> 2987[label="",style="solid", color="burlywood", weight=9]; 2987 -> 466[label="",style="solid", color="burlywood", weight=3]; 2988[label="vwx301/Neg vwx3010",fontsize=10,color="white",style="solid",shape="box"];347 -> 2988[label="",style="solid", color="burlywood", weight=9]; 2988 -> 467[label="",style="solid", color="burlywood", weight=3]; 348[label="primMulInt (Neg vwx4000) vwx301",fontsize=16,color="burlywood",shape="box"];2989[label="vwx301/Pos vwx3010",fontsize=10,color="white",style="solid",shape="box"];348 -> 2989[label="",style="solid", color="burlywood", weight=9]; 2989 -> 468[label="",style="solid", color="burlywood", weight=3]; 2990[label="vwx301/Neg vwx3010",fontsize=10,color="white",style="solid",shape="box"];348 -> 2990[label="",style="solid", color="burlywood", weight=9]; 2990 -> 469[label="",style="solid", color="burlywood", weight=3]; 349[label="Integer vwx4000 * Integer vwx3010",fontsize=16,color="black",shape="box"];349 -> 470[label="",style="solid", color="black", weight=3]; 350[label="compare1 LT EQ True",fontsize=16,color="black",shape="box"];350 -> 471[label="",style="solid", color="black", weight=3]; 351[label="compare1 LT GT True",fontsize=16,color="black",shape="box"];351 -> 472[label="",style="solid", color="black", weight=3]; 352[label="compare1 EQ LT False",fontsize=16,color="black",shape="box"];352 -> 473[label="",style="solid", color="black", weight=3]; 353[label="compare1 EQ GT True",fontsize=16,color="black",shape="box"];353 -> 474[label="",style="solid", color="black", weight=3]; 354[label="compare1 GT LT False",fontsize=16,color="black",shape="box"];354 -> 475[label="",style="solid", color="black", weight=3]; 355[label="compare1 GT EQ False",fontsize=16,color="black",shape="box"];355 -> 476[label="",style="solid", color="black", weight=3]; 356 -> 224[label="",style="dashed", color="red", weight=0]; 356[label="Pos vwx3010 * vwx400",fontsize=16,color="magenta"];356 -> 477[label="",style="dashed", color="magenta", weight=3]; 356 -> 478[label="",style="dashed", color="magenta", weight=3]; 357 -> 224[label="",style="dashed", color="red", weight=0]; 357[label="vwx300 * Pos vwx4010",fontsize=16,color="magenta"];357 -> 479[label="",style="dashed", color="magenta", weight=3]; 357 -> 480[label="",style="dashed", color="magenta", weight=3]; 358 -> 224[label="",style="dashed", color="red", weight=0]; 358[label="Neg vwx3010 * vwx400",fontsize=16,color="magenta"];358 -> 481[label="",style="dashed", color="magenta", weight=3]; 358 -> 482[label="",style="dashed", color="magenta", weight=3]; 359 -> 224[label="",style="dashed", color="red", weight=0]; 359[label="vwx300 * Pos vwx4010",fontsize=16,color="magenta"];359 -> 483[label="",style="dashed", color="magenta", weight=3]; 359 -> 484[label="",style="dashed", color="magenta", weight=3]; 360 -> 224[label="",style="dashed", color="red", weight=0]; 360[label="Pos vwx3010 * vwx400",fontsize=16,color="magenta"];360 -> 485[label="",style="dashed", color="magenta", weight=3]; 360 -> 486[label="",style="dashed", color="magenta", weight=3]; 361 -> 224[label="",style="dashed", color="red", weight=0]; 361[label="vwx300 * Neg vwx4010",fontsize=16,color="magenta"];361 -> 487[label="",style="dashed", color="magenta", weight=3]; 361 -> 488[label="",style="dashed", color="magenta", weight=3]; 362 -> 224[label="",style="dashed", color="red", weight=0]; 362[label="Neg vwx3010 * vwx400",fontsize=16,color="magenta"];362 -> 489[label="",style="dashed", color="magenta", weight=3]; 362 -> 490[label="",style="dashed", color="magenta", weight=3]; 363 -> 224[label="",style="dashed", color="red", weight=0]; 363[label="vwx300 * Neg vwx4010",fontsize=16,color="magenta"];363 -> 491[label="",style="dashed", color="magenta", weight=3]; 363 -> 492[label="",style="dashed", color="magenta", weight=3]; 364[label="vwx300 == vwx400",fontsize=16,color="burlywood",shape="triangle"];2991[label="vwx300/()",fontsize=10,color="white",style="solid",shape="box"];364 -> 2991[label="",style="solid", color="burlywood", weight=9]; 2991 -> 493[label="",style="solid", color="burlywood", weight=3]; 365[label="vwx300 == vwx400",fontsize=16,color="black",shape="triangle"];365 -> 494[label="",style="solid", color="black", weight=3]; 366[label="vwx300 == vwx400",fontsize=16,color="burlywood",shape="triangle"];2992[label="vwx300/Nothing",fontsize=10,color="white",style="solid",shape="box"];366 -> 2992[label="",style="solid", color="burlywood", weight=9]; 2992 -> 495[label="",style="solid", color="burlywood", weight=3]; 2993[label="vwx300/Just vwx3000",fontsize=10,color="white",style="solid",shape="box"];366 -> 2993[label="",style="solid", color="burlywood", weight=9]; 2993 -> 496[label="",style="solid", color="burlywood", weight=3]; 367[label="vwx300 == vwx400",fontsize=16,color="black",shape="triangle"];367 -> 497[label="",style="solid", color="black", weight=3]; 368[label="vwx300 == vwx400",fontsize=16,color="burlywood",shape="triangle"];2994[label="vwx300/vwx3000 :% vwx3001",fontsize=10,color="white",style="solid",shape="box"];368 -> 2994[label="",style="solid", color="burlywood", weight=9]; 2994 -> 498[label="",style="solid", color="burlywood", weight=3]; 369[label="vwx300 == vwx400",fontsize=16,color="burlywood",shape="triangle"];2995[label="vwx300/LT",fontsize=10,color="white",style="solid",shape="box"];369 -> 2995[label="",style="solid", color="burlywood", weight=9]; 2995 -> 499[label="",style="solid", color="burlywood", weight=3]; 2996[label="vwx300/EQ",fontsize=10,color="white",style="solid",shape="box"];369 -> 2996[label="",style="solid", color="burlywood", weight=9]; 2996 -> 500[label="",style="solid", color="burlywood", weight=3]; 2997[label="vwx300/GT",fontsize=10,color="white",style="solid",shape="box"];369 -> 2997[label="",style="solid", color="burlywood", weight=9]; 2997 -> 501[label="",style="solid", color="burlywood", weight=3]; 370[label="vwx300 == vwx400",fontsize=16,color="burlywood",shape="triangle"];2998[label="vwx300/(vwx3000,vwx3001,vwx3002)",fontsize=10,color="white",style="solid",shape="box"];370 -> 2998[label="",style="solid", color="burlywood", weight=9]; 2998 -> 502[label="",style="solid", color="burlywood", weight=3]; 371[label="vwx300 == vwx400",fontsize=16,color="burlywood",shape="triangle"];2999[label="vwx300/(vwx3000,vwx3001)",fontsize=10,color="white",style="solid",shape="box"];371 -> 2999[label="",style="solid", color="burlywood", weight=9]; 2999 -> 503[label="",style="solid", color="burlywood", weight=3]; 372[label="vwx300 == vwx400",fontsize=16,color="burlywood",shape="triangle"];3000[label="vwx300/vwx3000 : vwx3001",fontsize=10,color="white",style="solid",shape="box"];372 -> 3000[label="",style="solid", color="burlywood", weight=9]; 3000 -> 504[label="",style="solid", color="burlywood", weight=3]; 3001[label="vwx300/[]",fontsize=10,color="white",style="solid",shape="box"];372 -> 3001[label="",style="solid", color="burlywood", weight=9]; 3001 -> 505[label="",style="solid", color="burlywood", weight=3]; 373[label="vwx300 == vwx400",fontsize=16,color="burlywood",shape="triangle"];3002[label="vwx300/Integer vwx3000",fontsize=10,color="white",style="solid",shape="box"];373 -> 3002[label="",style="solid", color="burlywood", weight=9]; 3002 -> 506[label="",style="solid", color="burlywood", weight=3]; 374[label="vwx300 == vwx400",fontsize=16,color="black",shape="triangle"];374 -> 507[label="",style="solid", color="black", weight=3]; 375[label="vwx300 == vwx400",fontsize=16,color="burlywood",shape="triangle"];3003[label="vwx300/False",fontsize=10,color="white",style="solid",shape="box"];375 -> 3003[label="",style="solid", color="burlywood", weight=9]; 3003 -> 508[label="",style="solid", color="burlywood", weight=3]; 3004[label="vwx300/True",fontsize=10,color="white",style="solid",shape="box"];375 -> 3004[label="",style="solid", color="burlywood", weight=9]; 3004 -> 509[label="",style="solid", color="burlywood", weight=3]; 376[label="vwx300 == vwx400",fontsize=16,color="burlywood",shape="triangle"];3005[label="vwx300/Left vwx3000",fontsize=10,color="white",style="solid",shape="box"];376 -> 3005[label="",style="solid", color="burlywood", weight=9]; 3005 -> 510[label="",style="solid", color="burlywood", weight=3]; 3006[label="vwx300/Right vwx3000",fontsize=10,color="white",style="solid",shape="box"];376 -> 3006[label="",style="solid", color="burlywood", weight=9]; 3006 -> 511[label="",style="solid", color="burlywood", weight=3]; 377[label="vwx300 == vwx400",fontsize=16,color="black",shape="triangle"];377 -> 512[label="",style="solid", color="black", weight=3]; 378[label="compare2 (Left vwx25) (Left vwx26) False",fontsize=16,color="black",shape="box"];378 -> 513[label="",style="solid", color="black", weight=3]; 379[label="compare2 (Left vwx25) (Left vwx26) True",fontsize=16,color="black",shape="box"];379 -> 514[label="",style="solid", color="black", weight=3]; 380[label="compare1 (Left vwx300) (Right vwx400) True",fontsize=16,color="black",shape="box"];380 -> 515[label="",style="solid", color="black", weight=3]; 381[label="compare1 (Right vwx300) (Left vwx400) False",fontsize=16,color="black",shape="box"];381 -> 516[label="",style="solid", color="black", weight=3]; 382 -> 364[label="",style="dashed", color="red", weight=0]; 382[label="vwx300 == vwx400",fontsize=16,color="magenta"];382 -> 517[label="",style="dashed", color="magenta", weight=3]; 382 -> 518[label="",style="dashed", color="magenta", weight=3]; 383 -> 365[label="",style="dashed", color="red", weight=0]; 383[label="vwx300 == vwx400",fontsize=16,color="magenta"];383 -> 519[label="",style="dashed", color="magenta", weight=3]; 383 -> 520[label="",style="dashed", color="magenta", weight=3]; 384 -> 366[label="",style="dashed", color="red", weight=0]; 384[label="vwx300 == vwx400",fontsize=16,color="magenta"];384 -> 521[label="",style="dashed", color="magenta", weight=3]; 384 -> 522[label="",style="dashed", color="magenta", weight=3]; 385 -> 367[label="",style="dashed", color="red", weight=0]; 385[label="vwx300 == vwx400",fontsize=16,color="magenta"];385 -> 523[label="",style="dashed", color="magenta", weight=3]; 385 -> 524[label="",style="dashed", color="magenta", weight=3]; 386 -> 368[label="",style="dashed", color="red", weight=0]; 386[label="vwx300 == vwx400",fontsize=16,color="magenta"];386 -> 525[label="",style="dashed", color="magenta", weight=3]; 386 -> 526[label="",style="dashed", color="magenta", weight=3]; 387 -> 369[label="",style="dashed", color="red", weight=0]; 387[label="vwx300 == vwx400",fontsize=16,color="magenta"];387 -> 527[label="",style="dashed", color="magenta", weight=3]; 387 -> 528[label="",style="dashed", color="magenta", weight=3]; 388 -> 370[label="",style="dashed", color="red", weight=0]; 388[label="vwx300 == vwx400",fontsize=16,color="magenta"];388 -> 529[label="",style="dashed", color="magenta", weight=3]; 388 -> 530[label="",style="dashed", color="magenta", weight=3]; 389 -> 371[label="",style="dashed", color="red", weight=0]; 389[label="vwx300 == vwx400",fontsize=16,color="magenta"];389 -> 531[label="",style="dashed", color="magenta", weight=3]; 389 -> 532[label="",style="dashed", color="magenta", weight=3]; 390 -> 372[label="",style="dashed", color="red", weight=0]; 390[label="vwx300 == vwx400",fontsize=16,color="magenta"];390 -> 533[label="",style="dashed", color="magenta", weight=3]; 390 -> 534[label="",style="dashed", color="magenta", weight=3]; 391 -> 373[label="",style="dashed", color="red", weight=0]; 391[label="vwx300 == vwx400",fontsize=16,color="magenta"];391 -> 535[label="",style="dashed", color="magenta", weight=3]; 391 -> 536[label="",style="dashed", color="magenta", weight=3]; 392 -> 374[label="",style="dashed", color="red", weight=0]; 392[label="vwx300 == vwx400",fontsize=16,color="magenta"];392 -> 537[label="",style="dashed", color="magenta", weight=3]; 392 -> 538[label="",style="dashed", color="magenta", weight=3]; 393 -> 375[label="",style="dashed", color="red", weight=0]; 393[label="vwx300 == vwx400",fontsize=16,color="magenta"];393 -> 539[label="",style="dashed", color="magenta", weight=3]; 393 -> 540[label="",style="dashed", color="magenta", weight=3]; 394 -> 376[label="",style="dashed", color="red", weight=0]; 394[label="vwx300 == vwx400",fontsize=16,color="magenta"];394 -> 541[label="",style="dashed", color="magenta", weight=3]; 394 -> 542[label="",style="dashed", color="magenta", weight=3]; 395 -> 377[label="",style="dashed", color="red", weight=0]; 395[label="vwx300 == vwx400",fontsize=16,color="magenta"];395 -> 543[label="",style="dashed", color="magenta", weight=3]; 395 -> 544[label="",style="dashed", color="magenta", weight=3]; 396[label="compare2 (Right vwx32) (Right vwx33) False",fontsize=16,color="black",shape="box"];396 -> 545[label="",style="solid", color="black", weight=3]; 397[label="compare2 (Right vwx32) (Right vwx33) True",fontsize=16,color="black",shape="box"];397 -> 546[label="",style="solid", color="black", weight=3]; 398[label="Succ vwx4000",fontsize=16,color="green",shape="box"];399[label="Zero",fontsize=16,color="green",shape="box"];400[label="Zero",fontsize=16,color="green",shape="box"];401[label="Succ vwx4000",fontsize=16,color="green",shape="box"];929 -> 928[label="",style="dashed", color="red", weight=0]; 929[label="vwx301 == vwx401 && vwx302 == vwx402",fontsize=16,color="magenta"];929 -> 947[label="",style="dashed", color="magenta", weight=3]; 929 -> 948[label="",style="dashed", color="magenta", weight=3]; 930[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];3007[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];930 -> 3007[label="",style="solid", color="blue", weight=9]; 3007 -> 949[label="",style="solid", color="blue", weight=3]; 3008[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];930 -> 3008[label="",style="solid", color="blue", weight=9]; 3008 -> 950[label="",style="solid", color="blue", weight=3]; 3009[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];930 -> 3009[label="",style="solid", color="blue", weight=9]; 3009 -> 951[label="",style="solid", color="blue", weight=3]; 3010[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];930 -> 3010[label="",style="solid", color="blue", weight=9]; 3010 -> 952[label="",style="solid", color="blue", weight=3]; 3011[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];930 -> 3011[label="",style="solid", color="blue", weight=9]; 3011 -> 953[label="",style="solid", color="blue", weight=3]; 3012[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];930 -> 3012[label="",style="solid", color="blue", weight=9]; 3012 -> 954[label="",style="solid", color="blue", weight=3]; 3013[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];930 -> 3013[label="",style="solid", color="blue", weight=9]; 3013 -> 955[label="",style="solid", color="blue", weight=3]; 3014[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];930 -> 3014[label="",style="solid", color="blue", weight=9]; 3014 -> 956[label="",style="solid", color="blue", weight=3]; 3015[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];930 -> 3015[label="",style="solid", color="blue", weight=9]; 3015 -> 957[label="",style="solid", color="blue", weight=3]; 3016[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];930 -> 3016[label="",style="solid", color="blue", weight=9]; 3016 -> 958[label="",style="solid", color="blue", weight=3]; 3017[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];930 -> 3017[label="",style="solid", color="blue", weight=9]; 3017 -> 959[label="",style="solid", color="blue", weight=3]; 3018[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];930 -> 3018[label="",style="solid", color="blue", weight=9]; 3018 -> 960[label="",style="solid", color="blue", weight=3]; 3019[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];930 -> 3019[label="",style="solid", color="blue", weight=9]; 3019 -> 961[label="",style="solid", color="blue", weight=3]; 3020[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];930 -> 3020[label="",style="solid", color="blue", weight=9]; 3020 -> 962[label="",style="solid", color="blue", weight=3]; 928[label="vwx120 && vwx121",fontsize=16,color="burlywood",shape="triangle"];3021[label="vwx120/False",fontsize=10,color="white",style="solid",shape="box"];928 -> 3021[label="",style="solid", color="burlywood", weight=9]; 3021 -> 963[label="",style="solid", color="burlywood", weight=3]; 3022[label="vwx120/True",fontsize=10,color="white",style="solid",shape="box"];928 -> 3022[label="",style="solid", color="burlywood", weight=9]; 3022 -> 964[label="",style="solid", color="burlywood", weight=3]; 923[label="compare2 (vwx76,vwx77,vwx78) (vwx79,vwx80,vwx81) False",fontsize=16,color="black",shape="box"];923 -> 965[label="",style="solid", color="black", weight=3]; 924[label="compare2 (vwx76,vwx77,vwx78) (vwx79,vwx80,vwx81) True",fontsize=16,color="black",shape="box"];924 -> 966[label="",style="solid", color="black", weight=3]; 418 -> 224[label="",style="dashed", color="red", weight=0]; 418[label="Pos vwx3010 * vwx400",fontsize=16,color="magenta"];418 -> 577[label="",style="dashed", color="magenta", weight=3]; 418 -> 578[label="",style="dashed", color="magenta", weight=3]; 419 -> 224[label="",style="dashed", color="red", weight=0]; 419[label="vwx300 * Pos vwx4010",fontsize=16,color="magenta"];419 -> 579[label="",style="dashed", color="magenta", weight=3]; 419 -> 580[label="",style="dashed", color="magenta", weight=3]; 420 -> 224[label="",style="dashed", color="red", weight=0]; 420[label="Neg vwx3010 * vwx400",fontsize=16,color="magenta"];420 -> 581[label="",style="dashed", color="magenta", weight=3]; 420 -> 582[label="",style="dashed", color="magenta", weight=3]; 421 -> 224[label="",style="dashed", color="red", weight=0]; 421[label="vwx300 * Pos vwx4010",fontsize=16,color="magenta"];421 -> 583[label="",style="dashed", color="magenta", weight=3]; 421 -> 584[label="",style="dashed", color="magenta", weight=3]; 422 -> 224[label="",style="dashed", color="red", weight=0]; 422[label="Pos vwx3010 * vwx400",fontsize=16,color="magenta"];422 -> 585[label="",style="dashed", color="magenta", weight=3]; 422 -> 586[label="",style="dashed", color="magenta", weight=3]; 423 -> 224[label="",style="dashed", color="red", weight=0]; 423[label="vwx300 * Neg vwx4010",fontsize=16,color="magenta"];423 -> 587[label="",style="dashed", color="magenta", weight=3]; 423 -> 588[label="",style="dashed", color="magenta", weight=3]; 424 -> 224[label="",style="dashed", color="red", weight=0]; 424[label="Neg vwx3010 * vwx400",fontsize=16,color="magenta"];424 -> 589[label="",style="dashed", color="magenta", weight=3]; 424 -> 590[label="",style="dashed", color="magenta", weight=3]; 425 -> 224[label="",style="dashed", color="red", weight=0]; 425[label="vwx300 * Neg vwx4010",fontsize=16,color="magenta"];425 -> 591[label="",style="dashed", color="magenta", weight=3]; 425 -> 592[label="",style="dashed", color="magenta", weight=3]; 426 -> 214[label="",style="dashed", color="red", weight=0]; 426[label="primCmpNat vwx3000 vwx4000",fontsize=16,color="magenta"];426 -> 593[label="",style="dashed", color="magenta", weight=3]; 426 -> 594[label="",style="dashed", color="magenta", weight=3]; 427[label="GT",fontsize=16,color="green",shape="box"];428[label="LT",fontsize=16,color="green",shape="box"];429[label="EQ",fontsize=16,color="green",shape="box"];430[label="compare1 False True True",fontsize=16,color="black",shape="box"];430 -> 595[label="",style="solid", color="black", weight=3]; 431[label="compare1 True False False",fontsize=16,color="black",shape="box"];431 -> 596[label="",style="solid", color="black", weight=3]; 432[label="compare1 Nothing (Just vwx400) True",fontsize=16,color="black",shape="box"];432 -> 597[label="",style="solid", color="black", weight=3]; 433[label="compare1 (Just vwx300) Nothing False",fontsize=16,color="black",shape="box"];433 -> 598[label="",style="solid", color="black", weight=3]; 434 -> 364[label="",style="dashed", color="red", weight=0]; 434[label="vwx300 == vwx400",fontsize=16,color="magenta"];434 -> 599[label="",style="dashed", color="magenta", weight=3]; 434 -> 600[label="",style="dashed", color="magenta", weight=3]; 435 -> 365[label="",style="dashed", color="red", weight=0]; 435[label="vwx300 == vwx400",fontsize=16,color="magenta"];435 -> 601[label="",style="dashed", color="magenta", weight=3]; 435 -> 602[label="",style="dashed", color="magenta", weight=3]; 436 -> 366[label="",style="dashed", color="red", weight=0]; 436[label="vwx300 == vwx400",fontsize=16,color="magenta"];436 -> 603[label="",style="dashed", color="magenta", weight=3]; 436 -> 604[label="",style="dashed", color="magenta", weight=3]; 437 -> 367[label="",style="dashed", color="red", weight=0]; 437[label="vwx300 == vwx400",fontsize=16,color="magenta"];437 -> 605[label="",style="dashed", color="magenta", weight=3]; 437 -> 606[label="",style="dashed", color="magenta", weight=3]; 438 -> 368[label="",style="dashed", color="red", weight=0]; 438[label="vwx300 == vwx400",fontsize=16,color="magenta"];438 -> 607[label="",style="dashed", color="magenta", weight=3]; 438 -> 608[label="",style="dashed", color="magenta", weight=3]; 439 -> 369[label="",style="dashed", color="red", weight=0]; 439[label="vwx300 == vwx400",fontsize=16,color="magenta"];439 -> 609[label="",style="dashed", color="magenta", weight=3]; 439 -> 610[label="",style="dashed", color="magenta", weight=3]; 440 -> 370[label="",style="dashed", color="red", weight=0]; 440[label="vwx300 == vwx400",fontsize=16,color="magenta"];440 -> 611[label="",style="dashed", color="magenta", weight=3]; 440 -> 612[label="",style="dashed", color="magenta", weight=3]; 441 -> 371[label="",style="dashed", color="red", weight=0]; 441[label="vwx300 == vwx400",fontsize=16,color="magenta"];441 -> 613[label="",style="dashed", color="magenta", weight=3]; 441 -> 614[label="",style="dashed", color="magenta", weight=3]; 442 -> 372[label="",style="dashed", color="red", weight=0]; 442[label="vwx300 == vwx400",fontsize=16,color="magenta"];442 -> 615[label="",style="dashed", color="magenta", weight=3]; 442 -> 616[label="",style="dashed", color="magenta", weight=3]; 443 -> 373[label="",style="dashed", color="red", weight=0]; 443[label="vwx300 == vwx400",fontsize=16,color="magenta"];443 -> 617[label="",style="dashed", color="magenta", weight=3]; 443 -> 618[label="",style="dashed", color="magenta", weight=3]; 444 -> 374[label="",style="dashed", color="red", weight=0]; 444[label="vwx300 == vwx400",fontsize=16,color="magenta"];444 -> 619[label="",style="dashed", color="magenta", weight=3]; 444 -> 620[label="",style="dashed", color="magenta", weight=3]; 445 -> 375[label="",style="dashed", color="red", weight=0]; 445[label="vwx300 == vwx400",fontsize=16,color="magenta"];445 -> 621[label="",style="dashed", color="magenta", weight=3]; 445 -> 622[label="",style="dashed", color="magenta", weight=3]; 446 -> 376[label="",style="dashed", color="red", weight=0]; 446[label="vwx300 == vwx400",fontsize=16,color="magenta"];446 -> 623[label="",style="dashed", color="magenta", weight=3]; 446 -> 624[label="",style="dashed", color="magenta", weight=3]; 447 -> 377[label="",style="dashed", color="red", weight=0]; 447[label="vwx300 == vwx400",fontsize=16,color="magenta"];447 -> 625[label="",style="dashed", color="magenta", weight=3]; 447 -> 626[label="",style="dashed", color="magenta", weight=3]; 448[label="compare2 (Just vwx54) (Just vwx55) False",fontsize=16,color="black",shape="box"];448 -> 627[label="",style="solid", color="black", weight=3]; 449[label="compare2 (Just vwx54) (Just vwx55) True",fontsize=16,color="black",shape="box"];449 -> 628[label="",style="solid", color="black", weight=3]; 931[label="vwx301 == vwx401",fontsize=16,color="blue",shape="box"];3023[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];931 -> 3023[label="",style="solid", color="blue", weight=9]; 3023 -> 967[label="",style="solid", color="blue", weight=3]; 3024[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];931 -> 3024[label="",style="solid", color="blue", weight=9]; 3024 -> 968[label="",style="solid", color="blue", weight=3]; 3025[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];931 -> 3025[label="",style="solid", color="blue", weight=9]; 3025 -> 969[label="",style="solid", color="blue", weight=3]; 3026[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];931 -> 3026[label="",style="solid", color="blue", weight=9]; 3026 -> 970[label="",style="solid", color="blue", weight=3]; 3027[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];931 -> 3027[label="",style="solid", color="blue", weight=9]; 3027 -> 971[label="",style="solid", color="blue", weight=3]; 3028[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];931 -> 3028[label="",style="solid", color="blue", weight=9]; 3028 -> 972[label="",style="solid", color="blue", weight=3]; 3029[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];931 -> 3029[label="",style="solid", color="blue", weight=9]; 3029 -> 973[label="",style="solid", color="blue", weight=3]; 3030[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];931 -> 3030[label="",style="solid", color="blue", weight=9]; 3030 -> 974[label="",style="solid", color="blue", weight=3]; 3031[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];931 -> 3031[label="",style="solid", color="blue", weight=9]; 3031 -> 975[label="",style="solid", color="blue", weight=3]; 3032[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];931 -> 3032[label="",style="solid", color="blue", weight=9]; 3032 -> 976[label="",style="solid", color="blue", weight=3]; 3033[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];931 -> 3033[label="",style="solid", color="blue", weight=9]; 3033 -> 977[label="",style="solid", color="blue", weight=3]; 3034[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];931 -> 3034[label="",style="solid", color="blue", weight=9]; 3034 -> 978[label="",style="solid", color="blue", weight=3]; 3035[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];931 -> 3035[label="",style="solid", color="blue", weight=9]; 3035 -> 979[label="",style="solid", color="blue", weight=3]; 3036[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];931 -> 3036[label="",style="solid", color="blue", weight=9]; 3036 -> 980[label="",style="solid", color="blue", weight=3]; 932[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];3037[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];932 -> 3037[label="",style="solid", color="blue", weight=9]; 3037 -> 981[label="",style="solid", color="blue", weight=3]; 3038[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];932 -> 3038[label="",style="solid", color="blue", weight=9]; 3038 -> 982[label="",style="solid", color="blue", weight=3]; 3039[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];932 -> 3039[label="",style="solid", color="blue", weight=9]; 3039 -> 983[label="",style="solid", color="blue", weight=3]; 3040[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];932 -> 3040[label="",style="solid", color="blue", weight=9]; 3040 -> 984[label="",style="solid", color="blue", weight=3]; 3041[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];932 -> 3041[label="",style="solid", color="blue", weight=9]; 3041 -> 985[label="",style="solid", color="blue", weight=3]; 3042[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];932 -> 3042[label="",style="solid", color="blue", weight=9]; 3042 -> 986[label="",style="solid", color="blue", weight=3]; 3043[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];932 -> 3043[label="",style="solid", color="blue", weight=9]; 3043 -> 987[label="",style="solid", color="blue", weight=3]; 3044[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];932 -> 3044[label="",style="solid", color="blue", weight=9]; 3044 -> 988[label="",style="solid", color="blue", weight=3]; 3045[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];932 -> 3045[label="",style="solid", color="blue", weight=9]; 3045 -> 989[label="",style="solid", color="blue", weight=3]; 3046[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];932 -> 3046[label="",style="solid", color="blue", weight=9]; 3046 -> 990[label="",style="solid", color="blue", weight=3]; 3047[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];932 -> 3047[label="",style="solid", color="blue", weight=9]; 3047 -> 991[label="",style="solid", color="blue", weight=3]; 3048[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];932 -> 3048[label="",style="solid", color="blue", weight=9]; 3048 -> 992[label="",style="solid", color="blue", weight=3]; 3049[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];932 -> 3049[label="",style="solid", color="blue", weight=9]; 3049 -> 993[label="",style="solid", color="blue", weight=3]; 3050[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];932 -> 3050[label="",style="solid", color="blue", weight=9]; 3050 -> 994[label="",style="solid", color="blue", weight=3]; 743[label="compare2 (vwx89,vwx90) (vwx91,vwx92) False",fontsize=16,color="black",shape="box"];743 -> 814[label="",style="solid", color="black", weight=3]; 744[label="compare2 (vwx89,vwx90) (vwx91,vwx92) True",fontsize=16,color="black",shape="box"];744 -> 815[label="",style="solid", color="black", weight=3]; 466[label="primMulInt (Pos vwx4000) (Pos vwx3010)",fontsize=16,color="black",shape="box"];466 -> 659[label="",style="solid", color="black", weight=3]; 467[label="primMulInt (Pos vwx4000) (Neg vwx3010)",fontsize=16,color="black",shape="box"];467 -> 660[label="",style="solid", color="black", weight=3]; 468[label="primMulInt (Neg vwx4000) (Pos vwx3010)",fontsize=16,color="black",shape="box"];468 -> 661[label="",style="solid", color="black", weight=3]; 469[label="primMulInt (Neg vwx4000) (Neg vwx3010)",fontsize=16,color="black",shape="box"];469 -> 662[label="",style="solid", color="black", weight=3]; 470[label="Integer (primMulInt vwx4000 vwx3010)",fontsize=16,color="green",shape="box"];470 -> 663[label="",style="dashed", color="green", weight=3]; 471[label="LT",fontsize=16,color="green",shape="box"];472[label="LT",fontsize=16,color="green",shape="box"];473[label="compare0 EQ LT otherwise",fontsize=16,color="black",shape="box"];473 -> 664[label="",style="solid", color="black", weight=3]; 474[label="LT",fontsize=16,color="green",shape="box"];475[label="compare0 GT LT otherwise",fontsize=16,color="black",shape="box"];475 -> 665[label="",style="solid", color="black", weight=3]; 476[label="compare0 GT EQ otherwise",fontsize=16,color="black",shape="box"];476 -> 666[label="",style="solid", color="black", weight=3]; 477[label="Pos vwx3010",fontsize=16,color="green",shape="box"];478[label="vwx400",fontsize=16,color="green",shape="box"];479[label="vwx300",fontsize=16,color="green",shape="box"];480[label="Pos vwx4010",fontsize=16,color="green",shape="box"];481[label="Neg vwx3010",fontsize=16,color="green",shape="box"];482[label="vwx400",fontsize=16,color="green",shape="box"];483[label="vwx300",fontsize=16,color="green",shape="box"];484[label="Pos vwx4010",fontsize=16,color="green",shape="box"];485[label="Pos vwx3010",fontsize=16,color="green",shape="box"];486[label="vwx400",fontsize=16,color="green",shape="box"];487[label="vwx300",fontsize=16,color="green",shape="box"];488[label="Neg vwx4010",fontsize=16,color="green",shape="box"];489[label="Neg vwx3010",fontsize=16,color="green",shape="box"];490[label="vwx400",fontsize=16,color="green",shape="box"];491[label="vwx300",fontsize=16,color="green",shape="box"];492[label="Neg vwx4010",fontsize=16,color="green",shape="box"];493[label="() == vwx400",fontsize=16,color="burlywood",shape="box"];3051[label="vwx400/()",fontsize=10,color="white",style="solid",shape="box"];493 -> 3051[label="",style="solid", color="burlywood", weight=9]; 3051 -> 667[label="",style="solid", color="burlywood", weight=3]; 494[label="primEqFloat vwx300 vwx400",fontsize=16,color="burlywood",shape="box"];3052[label="vwx300/Float vwx3000 vwx3001",fontsize=10,color="white",style="solid",shape="box"];494 -> 3052[label="",style="solid", color="burlywood", weight=9]; 3052 -> 668[label="",style="solid", color="burlywood", weight=3]; 495[label="Nothing == vwx400",fontsize=16,color="burlywood",shape="box"];3053[label="vwx400/Nothing",fontsize=10,color="white",style="solid",shape="box"];495 -> 3053[label="",style="solid", color="burlywood", weight=9]; 3053 -> 669[label="",style="solid", color="burlywood", weight=3]; 3054[label="vwx400/Just vwx4000",fontsize=10,color="white",style="solid",shape="box"];495 -> 3054[label="",style="solid", color="burlywood", weight=9]; 3054 -> 670[label="",style="solid", color="burlywood", weight=3]; 496[label="Just vwx3000 == vwx400",fontsize=16,color="burlywood",shape="box"];3055[label="vwx400/Nothing",fontsize=10,color="white",style="solid",shape="box"];496 -> 3055[label="",style="solid", color="burlywood", weight=9]; 3055 -> 671[label="",style="solid", color="burlywood", weight=3]; 3056[label="vwx400/Just vwx4000",fontsize=10,color="white",style="solid",shape="box"];496 -> 3056[label="",style="solid", color="burlywood", weight=9]; 3056 -> 672[label="",style="solid", color="burlywood", weight=3]; 497[label="primEqChar vwx300 vwx400",fontsize=16,color="burlywood",shape="box"];3057[label="vwx300/Char vwx3000",fontsize=10,color="white",style="solid",shape="box"];497 -> 3057[label="",style="solid", color="burlywood", weight=9]; 3057 -> 673[label="",style="solid", color="burlywood", weight=3]; 498[label="vwx3000 :% vwx3001 == vwx400",fontsize=16,color="burlywood",shape="box"];3058[label="vwx400/vwx4000 :% vwx4001",fontsize=10,color="white",style="solid",shape="box"];498 -> 3058[label="",style="solid", color="burlywood", weight=9]; 3058 -> 674[label="",style="solid", color="burlywood", weight=3]; 499[label="LT == vwx400",fontsize=16,color="burlywood",shape="box"];3059[label="vwx400/LT",fontsize=10,color="white",style="solid",shape="box"];499 -> 3059[label="",style="solid", color="burlywood", weight=9]; 3059 -> 675[label="",style="solid", color="burlywood", weight=3]; 3060[label="vwx400/EQ",fontsize=10,color="white",style="solid",shape="box"];499 -> 3060[label="",style="solid", color="burlywood", weight=9]; 3060 -> 676[label="",style="solid", color="burlywood", weight=3]; 3061[label="vwx400/GT",fontsize=10,color="white",style="solid",shape="box"];499 -> 3061[label="",style="solid", color="burlywood", weight=9]; 3061 -> 677[label="",style="solid", color="burlywood", weight=3]; 500[label="EQ == vwx400",fontsize=16,color="burlywood",shape="box"];3062[label="vwx400/LT",fontsize=10,color="white",style="solid",shape="box"];500 -> 3062[label="",style="solid", color="burlywood", weight=9]; 3062 -> 678[label="",style="solid", color="burlywood", weight=3]; 3063[label="vwx400/EQ",fontsize=10,color="white",style="solid",shape="box"];500 -> 3063[label="",style="solid", color="burlywood", weight=9]; 3063 -> 679[label="",style="solid", color="burlywood", weight=3]; 3064[label="vwx400/GT",fontsize=10,color="white",style="solid",shape="box"];500 -> 3064[label="",style="solid", color="burlywood", weight=9]; 3064 -> 680[label="",style="solid", color="burlywood", weight=3]; 501[label="GT == vwx400",fontsize=16,color="burlywood",shape="box"];3065[label="vwx400/LT",fontsize=10,color="white",style="solid",shape="box"];501 -> 3065[label="",style="solid", color="burlywood", weight=9]; 3065 -> 681[label="",style="solid", color="burlywood", weight=3]; 3066[label="vwx400/EQ",fontsize=10,color="white",style="solid",shape="box"];501 -> 3066[label="",style="solid", color="burlywood", weight=9]; 3066 -> 682[label="",style="solid", color="burlywood", weight=3]; 3067[label="vwx400/GT",fontsize=10,color="white",style="solid",shape="box"];501 -> 3067[label="",style="solid", color="burlywood", weight=9]; 3067 -> 683[label="",style="solid", color="burlywood", weight=3]; 502[label="(vwx3000,vwx3001,vwx3002) == vwx400",fontsize=16,color="burlywood",shape="box"];3068[label="vwx400/(vwx4000,vwx4001,vwx4002)",fontsize=10,color="white",style="solid",shape="box"];502 -> 3068[label="",style="solid", color="burlywood", weight=9]; 3068 -> 684[label="",style="solid", color="burlywood", weight=3]; 503[label="(vwx3000,vwx3001) == vwx400",fontsize=16,color="burlywood",shape="box"];3069[label="vwx400/(vwx4000,vwx4001)",fontsize=10,color="white",style="solid",shape="box"];503 -> 3069[label="",style="solid", color="burlywood", weight=9]; 3069 -> 685[label="",style="solid", color="burlywood", weight=3]; 504[label="vwx3000 : vwx3001 == vwx400",fontsize=16,color="burlywood",shape="box"];3070[label="vwx400/vwx4000 : vwx4001",fontsize=10,color="white",style="solid",shape="box"];504 -> 3070[label="",style="solid", color="burlywood", weight=9]; 3070 -> 686[label="",style="solid", color="burlywood", weight=3]; 3071[label="vwx400/[]",fontsize=10,color="white",style="solid",shape="box"];504 -> 3071[label="",style="solid", color="burlywood", weight=9]; 3071 -> 687[label="",style="solid", color="burlywood", weight=3]; 505[label="[] == vwx400",fontsize=16,color="burlywood",shape="box"];3072[label="vwx400/vwx4000 : vwx4001",fontsize=10,color="white",style="solid",shape="box"];505 -> 3072[label="",style="solid", color="burlywood", weight=9]; 3072 -> 688[label="",style="solid", color="burlywood", weight=3]; 3073[label="vwx400/[]",fontsize=10,color="white",style="solid",shape="box"];505 -> 3073[label="",style="solid", color="burlywood", weight=9]; 3073 -> 689[label="",style="solid", color="burlywood", weight=3]; 506[label="Integer vwx3000 == vwx400",fontsize=16,color="burlywood",shape="box"];3074[label="vwx400/Integer vwx4000",fontsize=10,color="white",style="solid",shape="box"];506 -> 3074[label="",style="solid", color="burlywood", weight=9]; 3074 -> 690[label="",style="solid", color="burlywood", weight=3]; 507[label="primEqInt vwx300 vwx400",fontsize=16,color="burlywood",shape="triangle"];3075[label="vwx300/Pos vwx3000",fontsize=10,color="white",style="solid",shape="box"];507 -> 3075[label="",style="solid", color="burlywood", weight=9]; 3075 -> 691[label="",style="solid", color="burlywood", weight=3]; 3076[label="vwx300/Neg vwx3000",fontsize=10,color="white",style="solid",shape="box"];507 -> 3076[label="",style="solid", color="burlywood", weight=9]; 3076 -> 692[label="",style="solid", color="burlywood", weight=3]; 508[label="False == vwx400",fontsize=16,color="burlywood",shape="box"];3077[label="vwx400/False",fontsize=10,color="white",style="solid",shape="box"];508 -> 3077[label="",style="solid", color="burlywood", weight=9]; 3077 -> 693[label="",style="solid", color="burlywood", weight=3]; 3078[label="vwx400/True",fontsize=10,color="white",style="solid",shape="box"];508 -> 3078[label="",style="solid", color="burlywood", weight=9]; 3078 -> 694[label="",style="solid", color="burlywood", weight=3]; 509[label="True == vwx400",fontsize=16,color="burlywood",shape="box"];3079[label="vwx400/False",fontsize=10,color="white",style="solid",shape="box"];509 -> 3079[label="",style="solid", color="burlywood", weight=9]; 3079 -> 695[label="",style="solid", color="burlywood", weight=3]; 3080[label="vwx400/True",fontsize=10,color="white",style="solid",shape="box"];509 -> 3080[label="",style="solid", color="burlywood", weight=9]; 3080 -> 696[label="",style="solid", color="burlywood", weight=3]; 510[label="Left vwx3000 == vwx400",fontsize=16,color="burlywood",shape="box"];3081[label="vwx400/Left vwx4000",fontsize=10,color="white",style="solid",shape="box"];510 -> 3081[label="",style="solid", color="burlywood", weight=9]; 3081 -> 697[label="",style="solid", color="burlywood", weight=3]; 3082[label="vwx400/Right vwx4000",fontsize=10,color="white",style="solid",shape="box"];510 -> 3082[label="",style="solid", color="burlywood", weight=9]; 3082 -> 698[label="",style="solid", color="burlywood", weight=3]; 511[label="Right vwx3000 == vwx400",fontsize=16,color="burlywood",shape="box"];3083[label="vwx400/Left vwx4000",fontsize=10,color="white",style="solid",shape="box"];511 -> 3083[label="",style="solid", color="burlywood", weight=9]; 3083 -> 699[label="",style="solid", color="burlywood", weight=3]; 3084[label="vwx400/Right vwx4000",fontsize=10,color="white",style="solid",shape="box"];511 -> 3084[label="",style="solid", color="burlywood", weight=9]; 3084 -> 700[label="",style="solid", color="burlywood", weight=3]; 512[label="primEqDouble vwx300 vwx400",fontsize=16,color="burlywood",shape="box"];3085[label="vwx300/Double vwx3000 vwx3001",fontsize=10,color="white",style="solid",shape="box"];512 -> 3085[label="",style="solid", color="burlywood", weight=9]; 3085 -> 701[label="",style="solid", color="burlywood", weight=3]; 513 -> 807[label="",style="dashed", color="red", weight=0]; 513[label="compare1 (Left vwx25) (Left vwx26) (Left vwx25 <= Left vwx26)",fontsize=16,color="magenta"];513 -> 808[label="",style="dashed", color="magenta", weight=3]; 513 -> 809[label="",style="dashed", color="magenta", weight=3]; 513 -> 810[label="",style="dashed", color="magenta", weight=3]; 514[label="EQ",fontsize=16,color="green",shape="box"];515[label="LT",fontsize=16,color="green",shape="box"];516[label="compare0 (Right vwx300) (Left vwx400) otherwise",fontsize=16,color="black",shape="box"];516 -> 703[label="",style="solid", color="black", weight=3]; 517[label="vwx300",fontsize=16,color="green",shape="box"];518[label="vwx400",fontsize=16,color="green",shape="box"];519[label="vwx300",fontsize=16,color="green",shape="box"];520[label="vwx400",fontsize=16,color="green",shape="box"];521[label="vwx300",fontsize=16,color="green",shape="box"];522[label="vwx400",fontsize=16,color="green",shape="box"];523[label="vwx300",fontsize=16,color="green",shape="box"];524[label="vwx400",fontsize=16,color="green",shape="box"];525[label="vwx300",fontsize=16,color="green",shape="box"];526[label="vwx400",fontsize=16,color="green",shape="box"];527[label="vwx300",fontsize=16,color="green",shape="box"];528[label="vwx400",fontsize=16,color="green",shape="box"];529[label="vwx300",fontsize=16,color="green",shape="box"];530[label="vwx400",fontsize=16,color="green",shape="box"];531[label="vwx300",fontsize=16,color="green",shape="box"];532[label="vwx400",fontsize=16,color="green",shape="box"];533[label="vwx300",fontsize=16,color="green",shape="box"];534[label="vwx400",fontsize=16,color="green",shape="box"];535[label="vwx300",fontsize=16,color="green",shape="box"];536[label="vwx400",fontsize=16,color="green",shape="box"];537[label="vwx300",fontsize=16,color="green",shape="box"];538[label="vwx400",fontsize=16,color="green",shape="box"];539[label="vwx300",fontsize=16,color="green",shape="box"];540[label="vwx400",fontsize=16,color="green",shape="box"];541[label="vwx300",fontsize=16,color="green",shape="box"];542[label="vwx400",fontsize=16,color="green",shape="box"];543[label="vwx300",fontsize=16,color="green",shape="box"];544[label="vwx400",fontsize=16,color="green",shape="box"];545 -> 850[label="",style="dashed", color="red", weight=0]; 545[label="compare1 (Right vwx32) (Right vwx33) (Right vwx32 <= Right vwx33)",fontsize=16,color="magenta"];545 -> 851[label="",style="dashed", color="magenta", weight=3]; 545 -> 852[label="",style="dashed", color="magenta", weight=3]; 545 -> 853[label="",style="dashed", color="magenta", weight=3]; 546[label="EQ",fontsize=16,color="green",shape="box"];947[label="vwx302 == vwx402",fontsize=16,color="blue",shape="box"];3086[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];947 -> 3086[label="",style="solid", color="blue", weight=9]; 3086 -> 1004[label="",style="solid", color="blue", weight=3]; 3087[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];947 -> 3087[label="",style="solid", color="blue", weight=9]; 3087 -> 1005[label="",style="solid", color="blue", weight=3]; 3088[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];947 -> 3088[label="",style="solid", color="blue", weight=9]; 3088 -> 1006[label="",style="solid", color="blue", weight=3]; 3089[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];947 -> 3089[label="",style="solid", color="blue", weight=9]; 3089 -> 1007[label="",style="solid", color="blue", weight=3]; 3090[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];947 -> 3090[label="",style="solid", color="blue", weight=9]; 3090 -> 1008[label="",style="solid", color="blue", weight=3]; 3091[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];947 -> 3091[label="",style="solid", color="blue", weight=9]; 3091 -> 1009[label="",style="solid", color="blue", weight=3]; 3092[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];947 -> 3092[label="",style="solid", color="blue", weight=9]; 3092 -> 1010[label="",style="solid", color="blue", weight=3]; 3093[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];947 -> 3093[label="",style="solid", color="blue", weight=9]; 3093 -> 1011[label="",style="solid", color="blue", weight=3]; 3094[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];947 -> 3094[label="",style="solid", color="blue", weight=9]; 3094 -> 1012[label="",style="solid", color="blue", weight=3]; 3095[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];947 -> 3095[label="",style="solid", color="blue", weight=9]; 3095 -> 1013[label="",style="solid", color="blue", weight=3]; 3096[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];947 -> 3096[label="",style="solid", color="blue", weight=9]; 3096 -> 1014[label="",style="solid", color="blue", weight=3]; 3097[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];947 -> 3097[label="",style="solid", color="blue", weight=9]; 3097 -> 1015[label="",style="solid", color="blue", weight=3]; 3098[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];947 -> 3098[label="",style="solid", color="blue", weight=9]; 3098 -> 1016[label="",style="solid", color="blue", weight=3]; 3099[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];947 -> 3099[label="",style="solid", color="blue", weight=9]; 3099 -> 1017[label="",style="solid", color="blue", weight=3]; 948[label="vwx301 == vwx401",fontsize=16,color="blue",shape="box"];3100[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];948 -> 3100[label="",style="solid", color="blue", weight=9]; 3100 -> 1018[label="",style="solid", color="blue", weight=3]; 3101[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];948 -> 3101[label="",style="solid", color="blue", weight=9]; 3101 -> 1019[label="",style="solid", color="blue", weight=3]; 3102[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];948 -> 3102[label="",style="solid", color="blue", weight=9]; 3102 -> 1020[label="",style="solid", color="blue", weight=3]; 3103[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];948 -> 3103[label="",style="solid", color="blue", weight=9]; 3103 -> 1021[label="",style="solid", color="blue", weight=3]; 3104[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];948 -> 3104[label="",style="solid", color="blue", weight=9]; 3104 -> 1022[label="",style="solid", color="blue", weight=3]; 3105[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];948 -> 3105[label="",style="solid", color="blue", weight=9]; 3105 -> 1023[label="",style="solid", color="blue", weight=3]; 3106[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];948 -> 3106[label="",style="solid", color="blue", weight=9]; 3106 -> 1024[label="",style="solid", color="blue", weight=3]; 3107[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];948 -> 3107[label="",style="solid", color="blue", weight=9]; 3107 -> 1025[label="",style="solid", color="blue", weight=3]; 3108[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];948 -> 3108[label="",style="solid", color="blue", weight=9]; 3108 -> 1026[label="",style="solid", color="blue", weight=3]; 3109[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];948 -> 3109[label="",style="solid", color="blue", weight=9]; 3109 -> 1027[label="",style="solid", color="blue", weight=3]; 3110[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];948 -> 3110[label="",style="solid", color="blue", weight=9]; 3110 -> 1028[label="",style="solid", color="blue", weight=3]; 3111[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];948 -> 3111[label="",style="solid", color="blue", weight=9]; 3111 -> 1029[label="",style="solid", color="blue", weight=3]; 3112[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];948 -> 3112[label="",style="solid", color="blue", weight=9]; 3112 -> 1030[label="",style="solid", color="blue", weight=3]; 3113[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];948 -> 3113[label="",style="solid", color="blue", weight=9]; 3113 -> 1031[label="",style="solid", color="blue", weight=3]; 949 -> 364[label="",style="dashed", color="red", weight=0]; 949[label="vwx300 == vwx400",fontsize=16,color="magenta"];949 -> 1032[label="",style="dashed", color="magenta", weight=3]; 949 -> 1033[label="",style="dashed", color="magenta", weight=3]; 950 -> 365[label="",style="dashed", color="red", weight=0]; 950[label="vwx300 == vwx400",fontsize=16,color="magenta"];950 -> 1034[label="",style="dashed", color="magenta", weight=3]; 950 -> 1035[label="",style="dashed", color="magenta", weight=3]; 951 -> 366[label="",style="dashed", color="red", weight=0]; 951[label="vwx300 == vwx400",fontsize=16,color="magenta"];951 -> 1036[label="",style="dashed", color="magenta", weight=3]; 951 -> 1037[label="",style="dashed", color="magenta", weight=3]; 952 -> 367[label="",style="dashed", color="red", weight=0]; 952[label="vwx300 == vwx400",fontsize=16,color="magenta"];952 -> 1038[label="",style="dashed", color="magenta", weight=3]; 952 -> 1039[label="",style="dashed", color="magenta", weight=3]; 953 -> 368[label="",style="dashed", color="red", weight=0]; 953[label="vwx300 == vwx400",fontsize=16,color="magenta"];953 -> 1040[label="",style="dashed", color="magenta", weight=3]; 953 -> 1041[label="",style="dashed", color="magenta", weight=3]; 954 -> 369[label="",style="dashed", color="red", weight=0]; 954[label="vwx300 == vwx400",fontsize=16,color="magenta"];954 -> 1042[label="",style="dashed", color="magenta", weight=3]; 954 -> 1043[label="",style="dashed", color="magenta", weight=3]; 955 -> 370[label="",style="dashed", color="red", weight=0]; 955[label="vwx300 == vwx400",fontsize=16,color="magenta"];955 -> 1044[label="",style="dashed", color="magenta", weight=3]; 955 -> 1045[label="",style="dashed", color="magenta", weight=3]; 956 -> 371[label="",style="dashed", color="red", weight=0]; 956[label="vwx300 == vwx400",fontsize=16,color="magenta"];956 -> 1046[label="",style="dashed", color="magenta", weight=3]; 956 -> 1047[label="",style="dashed", color="magenta", weight=3]; 957 -> 372[label="",style="dashed", color="red", weight=0]; 957[label="vwx300 == vwx400",fontsize=16,color="magenta"];957 -> 1048[label="",style="dashed", color="magenta", weight=3]; 957 -> 1049[label="",style="dashed", color="magenta", weight=3]; 958 -> 373[label="",style="dashed", color="red", weight=0]; 958[label="vwx300 == vwx400",fontsize=16,color="magenta"];958 -> 1050[label="",style="dashed", color="magenta", weight=3]; 958 -> 1051[label="",style="dashed", color="magenta", weight=3]; 959 -> 374[label="",style="dashed", color="red", weight=0]; 959[label="vwx300 == vwx400",fontsize=16,color="magenta"];959 -> 1052[label="",style="dashed", color="magenta", weight=3]; 959 -> 1053[label="",style="dashed", color="magenta", weight=3]; 960 -> 375[label="",style="dashed", color="red", weight=0]; 960[label="vwx300 == vwx400",fontsize=16,color="magenta"];960 -> 1054[label="",style="dashed", color="magenta", weight=3]; 960 -> 1055[label="",style="dashed", color="magenta", weight=3]; 961 -> 376[label="",style="dashed", color="red", weight=0]; 961[label="vwx300 == vwx400",fontsize=16,color="magenta"];961 -> 1056[label="",style="dashed", color="magenta", weight=3]; 961 -> 1057[label="",style="dashed", color="magenta", weight=3]; 962 -> 377[label="",style="dashed", color="red", weight=0]; 962[label="vwx300 == vwx400",fontsize=16,color="magenta"];962 -> 1058[label="",style="dashed", color="magenta", weight=3]; 962 -> 1059[label="",style="dashed", color="magenta", weight=3]; 963[label="False && vwx121",fontsize=16,color="black",shape="box"];963 -> 1060[label="",style="solid", color="black", weight=3]; 964[label="True && vwx121",fontsize=16,color="black",shape="box"];964 -> 1061[label="",style="solid", color="black", weight=3]; 965[label="compare1 (vwx76,vwx77,vwx78) (vwx79,vwx80,vwx81) ((vwx76,vwx77,vwx78) <= (vwx79,vwx80,vwx81))",fontsize=16,color="black",shape="box"];965 -> 1062[label="",style="solid", color="black", weight=3]; 966[label="EQ",fontsize=16,color="green",shape="box"];577[label="Pos vwx3010",fontsize=16,color="green",shape="box"];578[label="vwx400",fontsize=16,color="green",shape="box"];579[label="vwx300",fontsize=16,color="green",shape="box"];580[label="Pos vwx4010",fontsize=16,color="green",shape="box"];581[label="Neg vwx3010",fontsize=16,color="green",shape="box"];582[label="vwx400",fontsize=16,color="green",shape="box"];583[label="vwx300",fontsize=16,color="green",shape="box"];584[label="Pos vwx4010",fontsize=16,color="green",shape="box"];585[label="Pos vwx3010",fontsize=16,color="green",shape="box"];586[label="vwx400",fontsize=16,color="green",shape="box"];587[label="vwx300",fontsize=16,color="green",shape="box"];588[label="Neg vwx4010",fontsize=16,color="green",shape="box"];589[label="Neg vwx3010",fontsize=16,color="green",shape="box"];590[label="vwx400",fontsize=16,color="green",shape="box"];591[label="vwx300",fontsize=16,color="green",shape="box"];592[label="Neg vwx4010",fontsize=16,color="green",shape="box"];593[label="vwx4000",fontsize=16,color="green",shape="box"];594[label="vwx3000",fontsize=16,color="green",shape="box"];595[label="LT",fontsize=16,color="green",shape="box"];596[label="compare0 True False otherwise",fontsize=16,color="black",shape="box"];596 -> 714[label="",style="solid", color="black", weight=3]; 597[label="LT",fontsize=16,color="green",shape="box"];598[label="compare0 (Just vwx300) Nothing otherwise",fontsize=16,color="black",shape="box"];598 -> 715[label="",style="solid", color="black", weight=3]; 599[label="vwx300",fontsize=16,color="green",shape="box"];600[label="vwx400",fontsize=16,color="green",shape="box"];601[label="vwx300",fontsize=16,color="green",shape="box"];602[label="vwx400",fontsize=16,color="green",shape="box"];603[label="vwx300",fontsize=16,color="green",shape="box"];604[label="vwx400",fontsize=16,color="green",shape="box"];605[label="vwx300",fontsize=16,color="green",shape="box"];606[label="vwx400",fontsize=16,color="green",shape="box"];607[label="vwx300",fontsize=16,color="green",shape="box"];608[label="vwx400",fontsize=16,color="green",shape="box"];609[label="vwx300",fontsize=16,color="green",shape="box"];610[label="vwx400",fontsize=16,color="green",shape="box"];611[label="vwx300",fontsize=16,color="green",shape="box"];612[label="vwx400",fontsize=16,color="green",shape="box"];613[label="vwx300",fontsize=16,color="green",shape="box"];614[label="vwx400",fontsize=16,color="green",shape="box"];615[label="vwx300",fontsize=16,color="green",shape="box"];616[label="vwx400",fontsize=16,color="green",shape="box"];617[label="vwx300",fontsize=16,color="green",shape="box"];618[label="vwx400",fontsize=16,color="green",shape="box"];619[label="vwx300",fontsize=16,color="green",shape="box"];620[label="vwx400",fontsize=16,color="green",shape="box"];621[label="vwx300",fontsize=16,color="green",shape="box"];622[label="vwx400",fontsize=16,color="green",shape="box"];623[label="vwx300",fontsize=16,color="green",shape="box"];624[label="vwx400",fontsize=16,color="green",shape="box"];625[label="vwx300",fontsize=16,color="green",shape="box"];626[label="vwx400",fontsize=16,color="green",shape="box"];627 -> 997[label="",style="dashed", color="red", weight=0]; 627[label="compare1 (Just vwx54) (Just vwx55) (Just vwx54 <= Just vwx55)",fontsize=16,color="magenta"];627 -> 998[label="",style="dashed", color="magenta", weight=3]; 627 -> 999[label="",style="dashed", color="magenta", weight=3]; 627 -> 1000[label="",style="dashed", color="magenta", weight=3]; 628[label="EQ",fontsize=16,color="green",shape="box"];967 -> 364[label="",style="dashed", color="red", weight=0]; 967[label="vwx301 == vwx401",fontsize=16,color="magenta"];967 -> 1063[label="",style="dashed", color="magenta", weight=3]; 967 -> 1064[label="",style="dashed", color="magenta", weight=3]; 968 -> 365[label="",style="dashed", color="red", weight=0]; 968[label="vwx301 == vwx401",fontsize=16,color="magenta"];968 -> 1065[label="",style="dashed", color="magenta", weight=3]; 968 -> 1066[label="",style="dashed", color="magenta", weight=3]; 969 -> 366[label="",style="dashed", color="red", weight=0]; 969[label="vwx301 == vwx401",fontsize=16,color="magenta"];969 -> 1067[label="",style="dashed", color="magenta", weight=3]; 969 -> 1068[label="",style="dashed", color="magenta", weight=3]; 970 -> 367[label="",style="dashed", color="red", weight=0]; 970[label="vwx301 == vwx401",fontsize=16,color="magenta"];970 -> 1069[label="",style="dashed", color="magenta", weight=3]; 970 -> 1070[label="",style="dashed", color="magenta", weight=3]; 971 -> 368[label="",style="dashed", color="red", weight=0]; 971[label="vwx301 == vwx401",fontsize=16,color="magenta"];971 -> 1071[label="",style="dashed", color="magenta", weight=3]; 971 -> 1072[label="",style="dashed", color="magenta", weight=3]; 972 -> 369[label="",style="dashed", color="red", weight=0]; 972[label="vwx301 == vwx401",fontsize=16,color="magenta"];972 -> 1073[label="",style="dashed", color="magenta", weight=3]; 972 -> 1074[label="",style="dashed", color="magenta", weight=3]; 973 -> 370[label="",style="dashed", color="red", weight=0]; 973[label="vwx301 == vwx401",fontsize=16,color="magenta"];973 -> 1075[label="",style="dashed", color="magenta", weight=3]; 973 -> 1076[label="",style="dashed", color="magenta", weight=3]; 974 -> 371[label="",style="dashed", color="red", weight=0]; 974[label="vwx301 == vwx401",fontsize=16,color="magenta"];974 -> 1077[label="",style="dashed", color="magenta", weight=3]; 974 -> 1078[label="",style="dashed", color="magenta", weight=3]; 975 -> 372[label="",style="dashed", color="red", weight=0]; 975[label="vwx301 == vwx401",fontsize=16,color="magenta"];975 -> 1079[label="",style="dashed", color="magenta", weight=3]; 975 -> 1080[label="",style="dashed", color="magenta", weight=3]; 976 -> 373[label="",style="dashed", color="red", weight=0]; 976[label="vwx301 == vwx401",fontsize=16,color="magenta"];976 -> 1081[label="",style="dashed", color="magenta", weight=3]; 976 -> 1082[label="",style="dashed", color="magenta", weight=3]; 977 -> 374[label="",style="dashed", color="red", weight=0]; 977[label="vwx301 == vwx401",fontsize=16,color="magenta"];977 -> 1083[label="",style="dashed", color="magenta", weight=3]; 977 -> 1084[label="",style="dashed", color="magenta", weight=3]; 978 -> 375[label="",style="dashed", color="red", weight=0]; 978[label="vwx301 == vwx401",fontsize=16,color="magenta"];978 -> 1085[label="",style="dashed", color="magenta", weight=3]; 978 -> 1086[label="",style="dashed", color="magenta", weight=3]; 979 -> 376[label="",style="dashed", color="red", weight=0]; 979[label="vwx301 == vwx401",fontsize=16,color="magenta"];979 -> 1087[label="",style="dashed", color="magenta", weight=3]; 979 -> 1088[label="",style="dashed", color="magenta", weight=3]; 980 -> 377[label="",style="dashed", color="red", weight=0]; 980[label="vwx301 == vwx401",fontsize=16,color="magenta"];980 -> 1089[label="",style="dashed", color="magenta", weight=3]; 980 -> 1090[label="",style="dashed", color="magenta", weight=3]; 981 -> 364[label="",style="dashed", color="red", weight=0]; 981[label="vwx300 == vwx400",fontsize=16,color="magenta"];981 -> 1091[label="",style="dashed", color="magenta", weight=3]; 981 -> 1092[label="",style="dashed", color="magenta", weight=3]; 982 -> 365[label="",style="dashed", color="red", weight=0]; 982[label="vwx300 == vwx400",fontsize=16,color="magenta"];982 -> 1093[label="",style="dashed", color="magenta", weight=3]; 982 -> 1094[label="",style="dashed", color="magenta", weight=3]; 983 -> 366[label="",style="dashed", color="red", weight=0]; 983[label="vwx300 == vwx400",fontsize=16,color="magenta"];983 -> 1095[label="",style="dashed", color="magenta", weight=3]; 983 -> 1096[label="",style="dashed", color="magenta", weight=3]; 984 -> 367[label="",style="dashed", color="red", weight=0]; 984[label="vwx300 == vwx400",fontsize=16,color="magenta"];984 -> 1097[label="",style="dashed", color="magenta", weight=3]; 984 -> 1098[label="",style="dashed", color="magenta", weight=3]; 985 -> 368[label="",style="dashed", color="red", weight=0]; 985[label="vwx300 == vwx400",fontsize=16,color="magenta"];985 -> 1099[label="",style="dashed", color="magenta", weight=3]; 985 -> 1100[label="",style="dashed", color="magenta", weight=3]; 986 -> 369[label="",style="dashed", color="red", weight=0]; 986[label="vwx300 == vwx400",fontsize=16,color="magenta"];986 -> 1101[label="",style="dashed", color="magenta", weight=3]; 986 -> 1102[label="",style="dashed", color="magenta", weight=3]; 987 -> 370[label="",style="dashed", color="red", weight=0]; 987[label="vwx300 == vwx400",fontsize=16,color="magenta"];987 -> 1103[label="",style="dashed", color="magenta", weight=3]; 987 -> 1104[label="",style="dashed", color="magenta", weight=3]; 988 -> 371[label="",style="dashed", color="red", weight=0]; 988[label="vwx300 == vwx400",fontsize=16,color="magenta"];988 -> 1105[label="",style="dashed", color="magenta", weight=3]; 988 -> 1106[label="",style="dashed", color="magenta", weight=3]; 989 -> 372[label="",style="dashed", color="red", weight=0]; 989[label="vwx300 == vwx400",fontsize=16,color="magenta"];989 -> 1107[label="",style="dashed", color="magenta", weight=3]; 989 -> 1108[label="",style="dashed", color="magenta", weight=3]; 990 -> 373[label="",style="dashed", color="red", weight=0]; 990[label="vwx300 == vwx400",fontsize=16,color="magenta"];990 -> 1109[label="",style="dashed", color="magenta", weight=3]; 990 -> 1110[label="",style="dashed", color="magenta", weight=3]; 991 -> 374[label="",style="dashed", color="red", weight=0]; 991[label="vwx300 == vwx400",fontsize=16,color="magenta"];991 -> 1111[label="",style="dashed", color="magenta", weight=3]; 991 -> 1112[label="",style="dashed", color="magenta", weight=3]; 992 -> 375[label="",style="dashed", color="red", weight=0]; 992[label="vwx300 == vwx400",fontsize=16,color="magenta"];992 -> 1113[label="",style="dashed", color="magenta", weight=3]; 992 -> 1114[label="",style="dashed", color="magenta", weight=3]; 993 -> 376[label="",style="dashed", color="red", weight=0]; 993[label="vwx300 == vwx400",fontsize=16,color="magenta"];993 -> 1115[label="",style="dashed", color="magenta", weight=3]; 993 -> 1116[label="",style="dashed", color="magenta", weight=3]; 994 -> 377[label="",style="dashed", color="red", weight=0]; 994[label="vwx300 == vwx400",fontsize=16,color="magenta"];994 -> 1117[label="",style="dashed", color="magenta", weight=3]; 994 -> 1118[label="",style="dashed", color="magenta", weight=3]; 814[label="compare1 (vwx89,vwx90) (vwx91,vwx92) ((vwx89,vwx90) <= (vwx91,vwx92))",fontsize=16,color="black",shape="box"];814 -> 857[label="",style="solid", color="black", weight=3]; 815[label="EQ",fontsize=16,color="green",shape="box"];659[label="Pos (primMulNat vwx4000 vwx3010)",fontsize=16,color="green",shape="box"];659 -> 761[label="",style="dashed", color="green", weight=3]; 660[label="Neg (primMulNat vwx4000 vwx3010)",fontsize=16,color="green",shape="box"];660 -> 762[label="",style="dashed", color="green", weight=3]; 661[label="Neg (primMulNat vwx4000 vwx3010)",fontsize=16,color="green",shape="box"];661 -> 763[label="",style="dashed", color="green", weight=3]; 662[label="Pos (primMulNat vwx4000 vwx3010)",fontsize=16,color="green",shape="box"];662 -> 764[label="",style="dashed", color="green", weight=3]; 663 -> 273[label="",style="dashed", color="red", weight=0]; 663[label="primMulInt vwx4000 vwx3010",fontsize=16,color="magenta"];663 -> 765[label="",style="dashed", color="magenta", weight=3]; 663 -> 766[label="",style="dashed", color="magenta", weight=3]; 664[label="compare0 EQ LT True",fontsize=16,color="black",shape="box"];664 -> 767[label="",style="solid", color="black", weight=3]; 665[label="compare0 GT LT True",fontsize=16,color="black",shape="box"];665 -> 768[label="",style="solid", color="black", weight=3]; 666[label="compare0 GT EQ True",fontsize=16,color="black",shape="box"];666 -> 769[label="",style="solid", color="black", weight=3]; 667[label="() == ()",fontsize=16,color="black",shape="box"];667 -> 770[label="",style="solid", color="black", weight=3]; 668[label="primEqFloat (Float vwx3000 vwx3001) vwx400",fontsize=16,color="burlywood",shape="box"];3114[label="vwx400/Float vwx4000 vwx4001",fontsize=10,color="white",style="solid",shape="box"];668 -> 3114[label="",style="solid", color="burlywood", weight=9]; 3114 -> 771[label="",style="solid", color="burlywood", weight=3]; 669[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];669 -> 772[label="",style="solid", color="black", weight=3]; 670[label="Nothing == Just vwx4000",fontsize=16,color="black",shape="box"];670 -> 773[label="",style="solid", color="black", weight=3]; 671[label="Just vwx3000 == Nothing",fontsize=16,color="black",shape="box"];671 -> 774[label="",style="solid", color="black", weight=3]; 672[label="Just vwx3000 == Just vwx4000",fontsize=16,color="black",shape="box"];672 -> 775[label="",style="solid", color="black", weight=3]; 673[label="primEqChar (Char vwx3000) vwx400",fontsize=16,color="burlywood",shape="box"];3115[label="vwx400/Char vwx4000",fontsize=10,color="white",style="solid",shape="box"];673 -> 3115[label="",style="solid", color="burlywood", weight=9]; 3115 -> 776[label="",style="solid", color="burlywood", weight=3]; 674[label="vwx3000 :% vwx3001 == vwx4000 :% vwx4001",fontsize=16,color="black",shape="box"];674 -> 777[label="",style="solid", color="black", weight=3]; 675[label="LT == LT",fontsize=16,color="black",shape="box"];675 -> 778[label="",style="solid", color="black", weight=3]; 676[label="LT == EQ",fontsize=16,color="black",shape="box"];676 -> 779[label="",style="solid", color="black", weight=3]; 677[label="LT == GT",fontsize=16,color="black",shape="box"];677 -> 780[label="",style="solid", color="black", weight=3]; 678[label="EQ == LT",fontsize=16,color="black",shape="box"];678 -> 781[label="",style="solid", color="black", weight=3]; 679[label="EQ == EQ",fontsize=16,color="black",shape="box"];679 -> 782[label="",style="solid", color="black", weight=3]; 680[label="EQ == GT",fontsize=16,color="black",shape="box"];680 -> 783[label="",style="solid", color="black", weight=3]; 681[label="GT == LT",fontsize=16,color="black",shape="box"];681 -> 784[label="",style="solid", color="black", weight=3]; 682[label="GT == EQ",fontsize=16,color="black",shape="box"];682 -> 785[label="",style="solid", color="black", weight=3]; 683[label="GT == GT",fontsize=16,color="black",shape="box"];683 -> 786[label="",style="solid", color="black", weight=3]; 684[label="(vwx3000,vwx3001,vwx3002) == (vwx4000,vwx4001,vwx4002)",fontsize=16,color="black",shape="box"];684 -> 787[label="",style="solid", color="black", weight=3]; 685[label="(vwx3000,vwx3001) == (vwx4000,vwx4001)",fontsize=16,color="black",shape="box"];685 -> 788[label="",style="solid", color="black", weight=3]; 686[label="vwx3000 : vwx3001 == vwx4000 : vwx4001",fontsize=16,color="black",shape="box"];686 -> 789[label="",style="solid", color="black", weight=3]; 687[label="vwx3000 : vwx3001 == []",fontsize=16,color="black",shape="box"];687 -> 790[label="",style="solid", color="black", weight=3]; 688[label="[] == vwx4000 : vwx4001",fontsize=16,color="black",shape="box"];688 -> 791[label="",style="solid", color="black", weight=3]; 689[label="[] == []",fontsize=16,color="black",shape="box"];689 -> 792[label="",style="solid", color="black", weight=3]; 690[label="Integer vwx3000 == Integer vwx4000",fontsize=16,color="black",shape="box"];690 -> 793[label="",style="solid", color="black", weight=3]; 691[label="primEqInt (Pos vwx3000) vwx400",fontsize=16,color="burlywood",shape="box"];3116[label="vwx3000/Succ vwx30000",fontsize=10,color="white",style="solid",shape="box"];691 -> 3116[label="",style="solid", color="burlywood", weight=9]; 3116 -> 794[label="",style="solid", color="burlywood", weight=3]; 3117[label="vwx3000/Zero",fontsize=10,color="white",style="solid",shape="box"];691 -> 3117[label="",style="solid", color="burlywood", weight=9]; 3117 -> 795[label="",style="solid", color="burlywood", weight=3]; 692[label="primEqInt (Neg vwx3000) vwx400",fontsize=16,color="burlywood",shape="box"];3118[label="vwx3000/Succ vwx30000",fontsize=10,color="white",style="solid",shape="box"];692 -> 3118[label="",style="solid", color="burlywood", weight=9]; 3118 -> 796[label="",style="solid", color="burlywood", weight=3]; 3119[label="vwx3000/Zero",fontsize=10,color="white",style="solid",shape="box"];692 -> 3119[label="",style="solid", color="burlywood", weight=9]; 3119 -> 797[label="",style="solid", color="burlywood", weight=3]; 693[label="False == False",fontsize=16,color="black",shape="box"];693 -> 798[label="",style="solid", color="black", weight=3]; 694[label="False == True",fontsize=16,color="black",shape="box"];694 -> 799[label="",style="solid", color="black", weight=3]; 695[label="True == False",fontsize=16,color="black",shape="box"];695 -> 800[label="",style="solid", color="black", weight=3]; 696[label="True == True",fontsize=16,color="black",shape="box"];696 -> 801[label="",style="solid", color="black", weight=3]; 697[label="Left vwx3000 == Left vwx4000",fontsize=16,color="black",shape="box"];697 -> 802[label="",style="solid", color="black", weight=3]; 698[label="Left vwx3000 == Right vwx4000",fontsize=16,color="black",shape="box"];698 -> 803[label="",style="solid", color="black", weight=3]; 699[label="Right vwx3000 == Left vwx4000",fontsize=16,color="black",shape="box"];699 -> 804[label="",style="solid", color="black", weight=3]; 700[label="Right vwx3000 == Right vwx4000",fontsize=16,color="black",shape="box"];700 -> 805[label="",style="solid", color="black", weight=3]; 701[label="primEqDouble (Double vwx3000 vwx3001) vwx400",fontsize=16,color="burlywood",shape="box"];3120[label="vwx400/Double vwx4000 vwx4001",fontsize=10,color="white",style="solid",shape="box"];701 -> 3120[label="",style="solid", color="burlywood", weight=9]; 3120 -> 806[label="",style="solid", color="burlywood", weight=3]; 808[label="vwx26",fontsize=16,color="green",shape="box"];809[label="Left vwx25 <= Left vwx26",fontsize=16,color="black",shape="box"];809 -> 846[label="",style="solid", color="black", weight=3]; 810[label="vwx25",fontsize=16,color="green",shape="box"];807[label="compare1 (Left vwx105) (Left vwx106) vwx107",fontsize=16,color="burlywood",shape="triangle"];3121[label="vwx107/False",fontsize=10,color="white",style="solid",shape="box"];807 -> 3121[label="",style="solid", color="burlywood", weight=9]; 3121 -> 847[label="",style="solid", color="burlywood", weight=3]; 3122[label="vwx107/True",fontsize=10,color="white",style="solid",shape="box"];807 -> 3122[label="",style="solid", color="burlywood", weight=9]; 3122 -> 848[label="",style="solid", color="burlywood", weight=3]; 703[label="compare0 (Right vwx300) (Left vwx400) True",fontsize=16,color="black",shape="box"];703 -> 849[label="",style="solid", color="black", weight=3]; 851[label="Right vwx32 <= Right vwx33",fontsize=16,color="black",shape="box"];851 -> 858[label="",style="solid", color="black", weight=3]; 852[label="vwx33",fontsize=16,color="green",shape="box"];853[label="vwx32",fontsize=16,color="green",shape="box"];850[label="compare1 (Right vwx112) (Right vwx113) vwx114",fontsize=16,color="burlywood",shape="triangle"];3123[label="vwx114/False",fontsize=10,color="white",style="solid",shape="box"];850 -> 3123[label="",style="solid", color="burlywood", weight=9]; 3123 -> 859[label="",style="solid", color="burlywood", weight=3]; 3124[label="vwx114/True",fontsize=10,color="white",style="solid",shape="box"];850 -> 3124[label="",style="solid", color="burlywood", weight=9]; 3124 -> 860[label="",style="solid", color="burlywood", weight=3]; 1004 -> 364[label="",style="dashed", color="red", weight=0]; 1004[label="vwx302 == vwx402",fontsize=16,color="magenta"];1004 -> 1124[label="",style="dashed", color="magenta", weight=3]; 1004 -> 1125[label="",style="dashed", color="magenta", weight=3]; 1005 -> 365[label="",style="dashed", color="red", weight=0]; 1005[label="vwx302 == vwx402",fontsize=16,color="magenta"];1005 -> 1126[label="",style="dashed", color="magenta", weight=3]; 1005 -> 1127[label="",style="dashed", color="magenta", weight=3]; 1006 -> 366[label="",style="dashed", color="red", weight=0]; 1006[label="vwx302 == vwx402",fontsize=16,color="magenta"];1006 -> 1128[label="",style="dashed", color="magenta", weight=3]; 1006 -> 1129[label="",style="dashed", color="magenta", weight=3]; 1007 -> 367[label="",style="dashed", color="red", weight=0]; 1007[label="vwx302 == vwx402",fontsize=16,color="magenta"];1007 -> 1130[label="",style="dashed", color="magenta", weight=3]; 1007 -> 1131[label="",style="dashed", color="magenta", weight=3]; 1008 -> 368[label="",style="dashed", color="red", weight=0]; 1008[label="vwx302 == vwx402",fontsize=16,color="magenta"];1008 -> 1132[label="",style="dashed", color="magenta", weight=3]; 1008 -> 1133[label="",style="dashed", color="magenta", weight=3]; 1009 -> 369[label="",style="dashed", color="red", weight=0]; 1009[label="vwx302 == vwx402",fontsize=16,color="magenta"];1009 -> 1134[label="",style="dashed", color="magenta", weight=3]; 1009 -> 1135[label="",style="dashed", color="magenta", weight=3]; 1010 -> 370[label="",style="dashed", color="red", weight=0]; 1010[label="vwx302 == vwx402",fontsize=16,color="magenta"];1010 -> 1136[label="",style="dashed", color="magenta", weight=3]; 1010 -> 1137[label="",style="dashed", color="magenta", weight=3]; 1011 -> 371[label="",style="dashed", color="red", weight=0]; 1011[label="vwx302 == vwx402",fontsize=16,color="magenta"];1011 -> 1138[label="",style="dashed", color="magenta", weight=3]; 1011 -> 1139[label="",style="dashed", color="magenta", weight=3]; 1012 -> 372[label="",style="dashed", color="red", weight=0]; 1012[label="vwx302 == vwx402",fontsize=16,color="magenta"];1012 -> 1140[label="",style="dashed", color="magenta", weight=3]; 1012 -> 1141[label="",style="dashed", color="magenta", weight=3]; 1013 -> 373[label="",style="dashed", color="red", weight=0]; 1013[label="vwx302 == vwx402",fontsize=16,color="magenta"];1013 -> 1142[label="",style="dashed", color="magenta", weight=3]; 1013 -> 1143[label="",style="dashed", color="magenta", weight=3]; 1014 -> 374[label="",style="dashed", color="red", weight=0]; 1014[label="vwx302 == vwx402",fontsize=16,color="magenta"];1014 -> 1144[label="",style="dashed", color="magenta", weight=3]; 1014 -> 1145[label="",style="dashed", color="magenta", weight=3]; 1015 -> 375[label="",style="dashed", color="red", weight=0]; 1015[label="vwx302 == vwx402",fontsize=16,color="magenta"];1015 -> 1146[label="",style="dashed", color="magenta", weight=3]; 1015 -> 1147[label="",style="dashed", color="magenta", weight=3]; 1016 -> 376[label="",style="dashed", color="red", weight=0]; 1016[label="vwx302 == vwx402",fontsize=16,color="magenta"];1016 -> 1148[label="",style="dashed", color="magenta", weight=3]; 1016 -> 1149[label="",style="dashed", color="magenta", weight=3]; 1017 -> 377[label="",style="dashed", color="red", weight=0]; 1017[label="vwx302 == vwx402",fontsize=16,color="magenta"];1017 -> 1150[label="",style="dashed", color="magenta", weight=3]; 1017 -> 1151[label="",style="dashed", color="magenta", weight=3]; 1018 -> 364[label="",style="dashed", color="red", weight=0]; 1018[label="vwx301 == vwx401",fontsize=16,color="magenta"];1018 -> 1152[label="",style="dashed", color="magenta", weight=3]; 1018 -> 1153[label="",style="dashed", color="magenta", weight=3]; 1019 -> 365[label="",style="dashed", color="red", weight=0]; 1019[label="vwx301 == vwx401",fontsize=16,color="magenta"];1019 -> 1154[label="",style="dashed", color="magenta", weight=3]; 1019 -> 1155[label="",style="dashed", color="magenta", weight=3]; 1020 -> 366[label="",style="dashed", color="red", weight=0]; 1020[label="vwx301 == vwx401",fontsize=16,color="magenta"];1020 -> 1156[label="",style="dashed", color="magenta", weight=3]; 1020 -> 1157[label="",style="dashed", color="magenta", weight=3]; 1021 -> 367[label="",style="dashed", color="red", weight=0]; 1021[label="vwx301 == vwx401",fontsize=16,color="magenta"];1021 -> 1158[label="",style="dashed", color="magenta", weight=3]; 1021 -> 1159[label="",style="dashed", color="magenta", weight=3]; 1022 -> 368[label="",style="dashed", color="red", weight=0]; 1022[label="vwx301 == vwx401",fontsize=16,color="magenta"];1022 -> 1160[label="",style="dashed", color="magenta", weight=3]; 1022 -> 1161[label="",style="dashed", color="magenta", weight=3]; 1023 -> 369[label="",style="dashed", color="red", weight=0]; 1023[label="vwx301 == vwx401",fontsize=16,color="magenta"];1023 -> 1162[label="",style="dashed", color="magenta", weight=3]; 1023 -> 1163[label="",style="dashed", color="magenta", weight=3]; 1024 -> 370[label="",style="dashed", color="red", weight=0]; 1024[label="vwx301 == vwx401",fontsize=16,color="magenta"];1024 -> 1164[label="",style="dashed", color="magenta", weight=3]; 1024 -> 1165[label="",style="dashed", color="magenta", weight=3]; 1025 -> 371[label="",style="dashed", color="red", weight=0]; 1025[label="vwx301 == vwx401",fontsize=16,color="magenta"];1025 -> 1166[label="",style="dashed", color="magenta", weight=3]; 1025 -> 1167[label="",style="dashed", color="magenta", weight=3]; 1026 -> 372[label="",style="dashed", color="red", weight=0]; 1026[label="vwx301 == vwx401",fontsize=16,color="magenta"];1026 -> 1168[label="",style="dashed", color="magenta", weight=3]; 1026 -> 1169[label="",style="dashed", color="magenta", weight=3]; 1027 -> 373[label="",style="dashed", color="red", weight=0]; 1027[label="vwx301 == vwx401",fontsize=16,color="magenta"];1027 -> 1170[label="",style="dashed", color="magenta", weight=3]; 1027 -> 1171[label="",style="dashed", color="magenta", weight=3]; 1028 -> 374[label="",style="dashed", color="red", weight=0]; 1028[label="vwx301 == vwx401",fontsize=16,color="magenta"];1028 -> 1172[label="",style="dashed", color="magenta", weight=3]; 1028 -> 1173[label="",style="dashed", color="magenta", weight=3]; 1029 -> 375[label="",style="dashed", color="red", weight=0]; 1029[label="vwx301 == vwx401",fontsize=16,color="magenta"];1029 -> 1174[label="",style="dashed", color="magenta", weight=3]; 1029 -> 1175[label="",style="dashed", color="magenta", weight=3]; 1030 -> 376[label="",style="dashed", color="red", weight=0]; 1030[label="vwx301 == vwx401",fontsize=16,color="magenta"];1030 -> 1176[label="",style="dashed", color="magenta", weight=3]; 1030 -> 1177[label="",style="dashed", color="magenta", weight=3]; 1031 -> 377[label="",style="dashed", color="red", weight=0]; 1031[label="vwx301 == vwx401",fontsize=16,color="magenta"];1031 -> 1178[label="",style="dashed", color="magenta", weight=3]; 1031 -> 1179[label="",style="dashed", color="magenta", weight=3]; 1032[label="vwx300",fontsize=16,color="green",shape="box"];1033[label="vwx400",fontsize=16,color="green",shape="box"];1034[label="vwx300",fontsize=16,color="green",shape="box"];1035[label="vwx400",fontsize=16,color="green",shape="box"];1036[label="vwx300",fontsize=16,color="green",shape="box"];1037[label="vwx400",fontsize=16,color="green",shape="box"];1038[label="vwx300",fontsize=16,color="green",shape="box"];1039[label="vwx400",fontsize=16,color="green",shape="box"];1040[label="vwx300",fontsize=16,color="green",shape="box"];1041[label="vwx400",fontsize=16,color="green",shape="box"];1042[label="vwx300",fontsize=16,color="green",shape="box"];1043[label="vwx400",fontsize=16,color="green",shape="box"];1044[label="vwx300",fontsize=16,color="green",shape="box"];1045[label="vwx400",fontsize=16,color="green",shape="box"];1046[label="vwx300",fontsize=16,color="green",shape="box"];1047[label="vwx400",fontsize=16,color="green",shape="box"];1048[label="vwx300",fontsize=16,color="green",shape="box"];1049[label="vwx400",fontsize=16,color="green",shape="box"];1050[label="vwx300",fontsize=16,color="green",shape="box"];1051[label="vwx400",fontsize=16,color="green",shape="box"];1052[label="vwx300",fontsize=16,color="green",shape="box"];1053[label="vwx400",fontsize=16,color="green",shape="box"];1054[label="vwx300",fontsize=16,color="green",shape="box"];1055[label="vwx400",fontsize=16,color="green",shape="box"];1056[label="vwx300",fontsize=16,color="green",shape="box"];1057[label="vwx400",fontsize=16,color="green",shape="box"];1058[label="vwx300",fontsize=16,color="green",shape="box"];1059[label="vwx400",fontsize=16,color="green",shape="box"];1060[label="False",fontsize=16,color="green",shape="box"];1061[label="vwx121",fontsize=16,color="green",shape="box"];1062 -> 1277[label="",style="dashed", color="red", weight=0]; 1062[label="compare1 (vwx76,vwx77,vwx78) (vwx79,vwx80,vwx81) (vwx76 < vwx79 || vwx76 == vwx79 && (vwx77 < vwx80 || vwx77 == vwx80 && vwx78 <= vwx81))",fontsize=16,color="magenta"];1062 -> 1278[label="",style="dashed", color="magenta", weight=3]; 1062 -> 1279[label="",style="dashed", color="magenta", weight=3]; 1062 -> 1280[label="",style="dashed", color="magenta", weight=3]; 1062 -> 1281[label="",style="dashed", color="magenta", weight=3]; 1062 -> 1282[label="",style="dashed", color="magenta", weight=3]; 1062 -> 1283[label="",style="dashed", color="magenta", weight=3]; 1062 -> 1284[label="",style="dashed", color="magenta", weight=3]; 1062 -> 1285[label="",style="dashed", color="magenta", weight=3]; 714[label="compare0 True False True",fontsize=16,color="black",shape="box"];714 -> 995[label="",style="solid", color="black", weight=3]; 715[label="compare0 (Just vwx300) Nothing True",fontsize=16,color="black",shape="box"];715 -> 996[label="",style="solid", color="black", weight=3]; 998[label="vwx55",fontsize=16,color="green",shape="box"];999[label="vwx54",fontsize=16,color="green",shape="box"];1000[label="Just vwx54 <= Just vwx55",fontsize=16,color="black",shape="box"];1000 -> 1119[label="",style="solid", color="black", weight=3]; 997[label="compare1 (Just vwx126) (Just vwx127) vwx128",fontsize=16,color="burlywood",shape="triangle"];3125[label="vwx128/False",fontsize=10,color="white",style="solid",shape="box"];997 -> 3125[label="",style="solid", color="burlywood", weight=9]; 3125 -> 1120[label="",style="solid", color="burlywood", weight=3]; 3126[label="vwx128/True",fontsize=10,color="white",style="solid",shape="box"];997 -> 3126[label="",style="solid", color="burlywood", weight=9]; 3126 -> 1121[label="",style="solid", color="burlywood", weight=3]; 1063[label="vwx301",fontsize=16,color="green",shape="box"];1064[label="vwx401",fontsize=16,color="green",shape="box"];1065[label="vwx301",fontsize=16,color="green",shape="box"];1066[label="vwx401",fontsize=16,color="green",shape="box"];1067[label="vwx301",fontsize=16,color="green",shape="box"];1068[label="vwx401",fontsize=16,color="green",shape="box"];1069[label="vwx301",fontsize=16,color="green",shape="box"];1070[label="vwx401",fontsize=16,color="green",shape="box"];1071[label="vwx301",fontsize=16,color="green",shape="box"];1072[label="vwx401",fontsize=16,color="green",shape="box"];1073[label="vwx301",fontsize=16,color="green",shape="box"];1074[label="vwx401",fontsize=16,color="green",shape="box"];1075[label="vwx301",fontsize=16,color="green",shape="box"];1076[label="vwx401",fontsize=16,color="green",shape="box"];1077[label="vwx301",fontsize=16,color="green",shape="box"];1078[label="vwx401",fontsize=16,color="green",shape="box"];1079[label="vwx301",fontsize=16,color="green",shape="box"];1080[label="vwx401",fontsize=16,color="green",shape="box"];1081[label="vwx301",fontsize=16,color="green",shape="box"];1082[label="vwx401",fontsize=16,color="green",shape="box"];1083[label="vwx301",fontsize=16,color="green",shape="box"];1084[label="vwx401",fontsize=16,color="green",shape="box"];1085[label="vwx301",fontsize=16,color="green",shape="box"];1086[label="vwx401",fontsize=16,color="green",shape="box"];1087[label="vwx301",fontsize=16,color="green",shape="box"];1088[label="vwx401",fontsize=16,color="green",shape="box"];1089[label="vwx301",fontsize=16,color="green",shape="box"];1090[label="vwx401",fontsize=16,color="green",shape="box"];1091[label="vwx300",fontsize=16,color="green",shape="box"];1092[label="vwx400",fontsize=16,color="green",shape="box"];1093[label="vwx300",fontsize=16,color="green",shape="box"];1094[label="vwx400",fontsize=16,color="green",shape="box"];1095[label="vwx300",fontsize=16,color="green",shape="box"];1096[label="vwx400",fontsize=16,color="green",shape="box"];1097[label="vwx300",fontsize=16,color="green",shape="box"];1098[label="vwx400",fontsize=16,color="green",shape="box"];1099[label="vwx300",fontsize=16,color="green",shape="box"];1100[label="vwx400",fontsize=16,color="green",shape="box"];1101[label="vwx300",fontsize=16,color="green",shape="box"];1102[label="vwx400",fontsize=16,color="green",shape="box"];1103[label="vwx300",fontsize=16,color="green",shape="box"];1104[label="vwx400",fontsize=16,color="green",shape="box"];1105[label="vwx300",fontsize=16,color="green",shape="box"];1106[label="vwx400",fontsize=16,color="green",shape="box"];1107[label="vwx300",fontsize=16,color="green",shape="box"];1108[label="vwx400",fontsize=16,color="green",shape="box"];1109[label="vwx300",fontsize=16,color="green",shape="box"];1110[label="vwx400",fontsize=16,color="green",shape="box"];1111[label="vwx300",fontsize=16,color="green",shape="box"];1112[label="vwx400",fontsize=16,color="green",shape="box"];1113[label="vwx300",fontsize=16,color="green",shape="box"];1114[label="vwx400",fontsize=16,color="green",shape="box"];1115[label="vwx300",fontsize=16,color="green",shape="box"];1116[label="vwx400",fontsize=16,color="green",shape="box"];1117[label="vwx300",fontsize=16,color="green",shape="box"];1118[label="vwx400",fontsize=16,color="green",shape="box"];857 -> 1330[label="",style="dashed", color="red", weight=0]; 857[label="compare1 (vwx89,vwx90) (vwx91,vwx92) (vwx89 < vwx91 || vwx89 == vwx91 && vwx90 <= vwx92)",fontsize=16,color="magenta"];857 -> 1331[label="",style="dashed", color="magenta", weight=3]; 857 -> 1332[label="",style="dashed", color="magenta", weight=3]; 857 -> 1333[label="",style="dashed", color="magenta", weight=3]; 857 -> 1334[label="",style="dashed", color="magenta", weight=3]; 857 -> 1335[label="",style="dashed", color="magenta", weight=3]; 857 -> 1336[label="",style="dashed", color="magenta", weight=3]; 761[label="primMulNat vwx4000 vwx3010",fontsize=16,color="burlywood",shape="triangle"];3127[label="vwx4000/Succ vwx40000",fontsize=10,color="white",style="solid",shape="box"];761 -> 3127[label="",style="solid", color="burlywood", weight=9]; 3127 -> 1182[label="",style="solid", color="burlywood", weight=3]; 3128[label="vwx4000/Zero",fontsize=10,color="white",style="solid",shape="box"];761 -> 3128[label="",style="solid", color="burlywood", weight=9]; 3128 -> 1183[label="",style="solid", color="burlywood", weight=3]; 762 -> 761[label="",style="dashed", color="red", weight=0]; 762[label="primMulNat vwx4000 vwx3010",fontsize=16,color="magenta"];762 -> 1184[label="",style="dashed", color="magenta", weight=3]; 763 -> 761[label="",style="dashed", color="red", weight=0]; 763[label="primMulNat vwx4000 vwx3010",fontsize=16,color="magenta"];763 -> 1185[label="",style="dashed", color="magenta", weight=3]; 764 -> 761[label="",style="dashed", color="red", weight=0]; 764[label="primMulNat vwx4000 vwx3010",fontsize=16,color="magenta"];764 -> 1186[label="",style="dashed", color="magenta", weight=3]; 764 -> 1187[label="",style="dashed", color="magenta", weight=3]; 765[label="vwx4000",fontsize=16,color="green",shape="box"];766[label="vwx3010",fontsize=16,color="green",shape="box"];767[label="GT",fontsize=16,color="green",shape="box"];768[label="GT",fontsize=16,color="green",shape="box"];769[label="GT",fontsize=16,color="green",shape="box"];770[label="True",fontsize=16,color="green",shape="box"];771[label="primEqFloat (Float vwx3000 vwx3001) (Float vwx4000 vwx4001)",fontsize=16,color="black",shape="box"];771 -> 1188[label="",style="solid", color="black", weight=3]; 772[label="True",fontsize=16,color="green",shape="box"];773[label="False",fontsize=16,color="green",shape="box"];774[label="False",fontsize=16,color="green",shape="box"];775[label="vwx3000 == vwx4000",fontsize=16,color="blue",shape="box"];3129[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];775 -> 3129[label="",style="solid", color="blue", weight=9]; 3129 -> 1189[label="",style="solid", color="blue", weight=3]; 3130[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];775 -> 3130[label="",style="solid", color="blue", weight=9]; 3130 -> 1190[label="",style="solid", color="blue", weight=3]; 3131[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];775 -> 3131[label="",style="solid", color="blue", weight=9]; 3131 -> 1191[label="",style="solid", color="blue", weight=3]; 3132[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];775 -> 3132[label="",style="solid", color="blue", weight=9]; 3132 -> 1192[label="",style="solid", color="blue", weight=3]; 3133[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];775 -> 3133[label="",style="solid", color="blue", weight=9]; 3133 -> 1193[label="",style="solid", color="blue", weight=3]; 3134[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];775 -> 3134[label="",style="solid", color="blue", weight=9]; 3134 -> 1194[label="",style="solid", color="blue", weight=3]; 3135[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];775 -> 3135[label="",style="solid", color="blue", weight=9]; 3135 -> 1195[label="",style="solid", color="blue", weight=3]; 3136[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];775 -> 3136[label="",style="solid", color="blue", weight=9]; 3136 -> 1196[label="",style="solid", color="blue", weight=3]; 3137[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];775 -> 3137[label="",style="solid", color="blue", weight=9]; 3137 -> 1197[label="",style="solid", color="blue", weight=3]; 3138[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];775 -> 3138[label="",style="solid", color="blue", weight=9]; 3138 -> 1198[label="",style="solid", color="blue", weight=3]; 3139[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];775 -> 3139[label="",style="solid", color="blue", weight=9]; 3139 -> 1199[label="",style="solid", color="blue", weight=3]; 3140[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];775 -> 3140[label="",style="solid", color="blue", weight=9]; 3140 -> 1200[label="",style="solid", color="blue", weight=3]; 3141[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];775 -> 3141[label="",style="solid", color="blue", weight=9]; 3141 -> 1201[label="",style="solid", color="blue", weight=3]; 3142[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];775 -> 3142[label="",style="solid", color="blue", weight=9]; 3142 -> 1202[label="",style="solid", color="blue", weight=3]; 776[label="primEqChar (Char vwx3000) (Char vwx4000)",fontsize=16,color="black",shape="box"];776 -> 1203[label="",style="solid", color="black", weight=3]; 777 -> 928[label="",style="dashed", color="red", weight=0]; 777[label="vwx3000 == vwx4000 && vwx3001 == vwx4001",fontsize=16,color="magenta"];777 -> 937[label="",style="dashed", color="magenta", weight=3]; 777 -> 938[label="",style="dashed", color="magenta", weight=3]; 778[label="True",fontsize=16,color="green",shape="box"];779[label="False",fontsize=16,color="green",shape="box"];780[label="False",fontsize=16,color="green",shape="box"];781[label="False",fontsize=16,color="green",shape="box"];782[label="True",fontsize=16,color="green",shape="box"];783[label="False",fontsize=16,color="green",shape="box"];784[label="False",fontsize=16,color="green",shape="box"];785[label="False",fontsize=16,color="green",shape="box"];786[label="True",fontsize=16,color="green",shape="box"];787 -> 928[label="",style="dashed", color="red", weight=0]; 787[label="vwx3000 == vwx4000 && vwx3001 == vwx4001 && vwx3002 == vwx4002",fontsize=16,color="magenta"];787 -> 939[label="",style="dashed", color="magenta", weight=3]; 787 -> 940[label="",style="dashed", color="magenta", weight=3]; 788 -> 928[label="",style="dashed", color="red", weight=0]; 788[label="vwx3000 == vwx4000 && vwx3001 == vwx4001",fontsize=16,color="magenta"];788 -> 941[label="",style="dashed", color="magenta", weight=3]; 788 -> 942[label="",style="dashed", color="magenta", weight=3]; 789 -> 928[label="",style="dashed", color="red", weight=0]; 789[label="vwx3000 == vwx4000 && vwx3001 == vwx4001",fontsize=16,color="magenta"];789 -> 943[label="",style="dashed", color="magenta", weight=3]; 789 -> 944[label="",style="dashed", color="magenta", weight=3]; 790[label="False",fontsize=16,color="green",shape="box"];791[label="False",fontsize=16,color="green",shape="box"];792[label="True",fontsize=16,color="green",shape="box"];793 -> 507[label="",style="dashed", color="red", weight=0]; 793[label="primEqInt vwx3000 vwx4000",fontsize=16,color="magenta"];793 -> 1204[label="",style="dashed", color="magenta", weight=3]; 793 -> 1205[label="",style="dashed", color="magenta", weight=3]; 794[label="primEqInt (Pos (Succ vwx30000)) vwx400",fontsize=16,color="burlywood",shape="box"];3143[label="vwx400/Pos vwx4000",fontsize=10,color="white",style="solid",shape="box"];794 -> 3143[label="",style="solid", color="burlywood", weight=9]; 3143 -> 1206[label="",style="solid", color="burlywood", weight=3]; 3144[label="vwx400/Neg vwx4000",fontsize=10,color="white",style="solid",shape="box"];794 -> 3144[label="",style="solid", color="burlywood", weight=9]; 3144 -> 1207[label="",style="solid", color="burlywood", weight=3]; 795[label="primEqInt (Pos Zero) vwx400",fontsize=16,color="burlywood",shape="box"];3145[label="vwx400/Pos vwx4000",fontsize=10,color="white",style="solid",shape="box"];795 -> 3145[label="",style="solid", color="burlywood", weight=9]; 3145 -> 1208[label="",style="solid", color="burlywood", weight=3]; 3146[label="vwx400/Neg vwx4000",fontsize=10,color="white",style="solid",shape="box"];795 -> 3146[label="",style="solid", color="burlywood", weight=9]; 3146 -> 1209[label="",style="solid", color="burlywood", weight=3]; 796[label="primEqInt (Neg (Succ vwx30000)) vwx400",fontsize=16,color="burlywood",shape="box"];3147[label="vwx400/Pos vwx4000",fontsize=10,color="white",style="solid",shape="box"];796 -> 3147[label="",style="solid", color="burlywood", weight=9]; 3147 -> 1210[label="",style="solid", color="burlywood", weight=3]; 3148[label="vwx400/Neg vwx4000",fontsize=10,color="white",style="solid",shape="box"];796 -> 3148[label="",style="solid", color="burlywood", weight=9]; 3148 -> 1211[label="",style="solid", color="burlywood", weight=3]; 797[label="primEqInt (Neg Zero) vwx400",fontsize=16,color="burlywood",shape="box"];3149[label="vwx400/Pos vwx4000",fontsize=10,color="white",style="solid",shape="box"];797 -> 3149[label="",style="solid", color="burlywood", weight=9]; 3149 -> 1212[label="",style="solid", color="burlywood", weight=3]; 3150[label="vwx400/Neg vwx4000",fontsize=10,color="white",style="solid",shape="box"];797 -> 3150[label="",style="solid", color="burlywood", weight=9]; 3150 -> 1213[label="",style="solid", color="burlywood", weight=3]; 798[label="True",fontsize=16,color="green",shape="box"];799[label="False",fontsize=16,color="green",shape="box"];800[label="False",fontsize=16,color="green",shape="box"];801[label="True",fontsize=16,color="green",shape="box"];802[label="vwx3000 == vwx4000",fontsize=16,color="blue",shape="box"];3151[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];802 -> 3151[label="",style="solid", color="blue", weight=9]; 3151 -> 1214[label="",style="solid", color="blue", weight=3]; 3152[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];802 -> 3152[label="",style="solid", color="blue", weight=9]; 3152 -> 1215[label="",style="solid", color="blue", weight=3]; 3153[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];802 -> 3153[label="",style="solid", color="blue", weight=9]; 3153 -> 1216[label="",style="solid", color="blue", weight=3]; 3154[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];802 -> 3154[label="",style="solid", color="blue", weight=9]; 3154 -> 1217[label="",style="solid", color="blue", weight=3]; 3155[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];802 -> 3155[label="",style="solid", color="blue", weight=9]; 3155 -> 1218[label="",style="solid", color="blue", weight=3]; 3156[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];802 -> 3156[label="",style="solid", color="blue", weight=9]; 3156 -> 1219[label="",style="solid", color="blue", weight=3]; 3157[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];802 -> 3157[label="",style="solid", color="blue", weight=9]; 3157 -> 1220[label="",style="solid", color="blue", weight=3]; 3158[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];802 -> 3158[label="",style="solid", color="blue", weight=9]; 3158 -> 1221[label="",style="solid", color="blue", weight=3]; 3159[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];802 -> 3159[label="",style="solid", color="blue", weight=9]; 3159 -> 1222[label="",style="solid", color="blue", weight=3]; 3160[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];802 -> 3160[label="",style="solid", color="blue", weight=9]; 3160 -> 1223[label="",style="solid", color="blue", weight=3]; 3161[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];802 -> 3161[label="",style="solid", color="blue", weight=9]; 3161 -> 1224[label="",style="solid", color="blue", weight=3]; 3162[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];802 -> 3162[label="",style="solid", color="blue", weight=9]; 3162 -> 1225[label="",style="solid", color="blue", weight=3]; 3163[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];802 -> 3163[label="",style="solid", color="blue", weight=9]; 3163 -> 1226[label="",style="solid", color="blue", weight=3]; 3164[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];802 -> 3164[label="",style="solid", color="blue", weight=9]; 3164 -> 1227[label="",style="solid", color="blue", weight=3]; 803[label="False",fontsize=16,color="green",shape="box"];804[label="False",fontsize=16,color="green",shape="box"];805[label="vwx3000 == vwx4000",fontsize=16,color="blue",shape="box"];3165[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];805 -> 3165[label="",style="solid", color="blue", weight=9]; 3165 -> 1228[label="",style="solid", color="blue", weight=3]; 3166[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];805 -> 3166[label="",style="solid", color="blue", weight=9]; 3166 -> 1229[label="",style="solid", color="blue", weight=3]; 3167[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];805 -> 3167[label="",style="solid", color="blue", weight=9]; 3167 -> 1230[label="",style="solid", color="blue", weight=3]; 3168[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];805 -> 3168[label="",style="solid", color="blue", weight=9]; 3168 -> 1231[label="",style="solid", color="blue", weight=3]; 3169[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];805 -> 3169[label="",style="solid", color="blue", weight=9]; 3169 -> 1232[label="",style="solid", color="blue", weight=3]; 3170[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];805 -> 3170[label="",style="solid", color="blue", weight=9]; 3170 -> 1233[label="",style="solid", color="blue", weight=3]; 3171[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];805 -> 3171[label="",style="solid", color="blue", weight=9]; 3171 -> 1234[label="",style="solid", color="blue", weight=3]; 3172[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];805 -> 3172[label="",style="solid", color="blue", weight=9]; 3172 -> 1235[label="",style="solid", color="blue", weight=3]; 3173[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];805 -> 3173[label="",style="solid", color="blue", weight=9]; 3173 -> 1236[label="",style="solid", color="blue", weight=3]; 3174[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];805 -> 3174[label="",style="solid", color="blue", weight=9]; 3174 -> 1237[label="",style="solid", color="blue", weight=3]; 3175[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];805 -> 3175[label="",style="solid", color="blue", weight=9]; 3175 -> 1238[label="",style="solid", color="blue", weight=3]; 3176[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];805 -> 3176[label="",style="solid", color="blue", weight=9]; 3176 -> 1239[label="",style="solid", color="blue", weight=3]; 3177[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];805 -> 3177[label="",style="solid", color="blue", weight=9]; 3177 -> 1240[label="",style="solid", color="blue", weight=3]; 3178[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];805 -> 3178[label="",style="solid", color="blue", weight=9]; 3178 -> 1241[label="",style="solid", color="blue", weight=3]; 806[label="primEqDouble (Double vwx3000 vwx3001) (Double vwx4000 vwx4001)",fontsize=16,color="black",shape="box"];806 -> 1242[label="",style="solid", color="black", weight=3]; 846[label="vwx25 <= vwx26",fontsize=16,color="blue",shape="box"];3179[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];846 -> 3179[label="",style="solid", color="blue", weight=9]; 3179 -> 1243[label="",style="solid", color="blue", weight=3]; 3180[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];846 -> 3180[label="",style="solid", color="blue", weight=9]; 3180 -> 1244[label="",style="solid", color="blue", weight=3]; 3181[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];846 -> 3181[label="",style="solid", color="blue", weight=9]; 3181 -> 1245[label="",style="solid", color="blue", weight=3]; 3182[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];846 -> 3182[label="",style="solid", color="blue", weight=9]; 3182 -> 1246[label="",style="solid", color="blue", weight=3]; 3183[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];846 -> 3183[label="",style="solid", color="blue", weight=9]; 3183 -> 1247[label="",style="solid", color="blue", weight=3]; 3184[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];846 -> 3184[label="",style="solid", color="blue", weight=9]; 3184 -> 1248[label="",style="solid", color="blue", weight=3]; 3185[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];846 -> 3185[label="",style="solid", color="blue", weight=9]; 3185 -> 1249[label="",style="solid", color="blue", weight=3]; 3186[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];846 -> 3186[label="",style="solid", color="blue", weight=9]; 3186 -> 1250[label="",style="solid", color="blue", weight=3]; 3187[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];846 -> 3187[label="",style="solid", color="blue", weight=9]; 3187 -> 1251[label="",style="solid", color="blue", weight=3]; 3188[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];846 -> 3188[label="",style="solid", color="blue", weight=9]; 3188 -> 1252[label="",style="solid", color="blue", weight=3]; 3189[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];846 -> 3189[label="",style="solid", color="blue", weight=9]; 3189 -> 1253[label="",style="solid", color="blue", weight=3]; 3190[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];846 -> 3190[label="",style="solid", color="blue", weight=9]; 3190 -> 1254[label="",style="solid", color="blue", weight=3]; 3191[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];846 -> 3191[label="",style="solid", color="blue", weight=9]; 3191 -> 1255[label="",style="solid", color="blue", weight=3]; 3192[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];846 -> 3192[label="",style="solid", color="blue", weight=9]; 3192 -> 1256[label="",style="solid", color="blue", weight=3]; 847[label="compare1 (Left vwx105) (Left vwx106) False",fontsize=16,color="black",shape="box"];847 -> 1257[label="",style="solid", color="black", weight=3]; 848[label="compare1 (Left vwx105) (Left vwx106) True",fontsize=16,color="black",shape="box"];848 -> 1258[label="",style="solid", color="black", weight=3]; 849[label="GT",fontsize=16,color="green",shape="box"];858[label="vwx32 <= vwx33",fontsize=16,color="blue",shape="box"];3193[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];858 -> 3193[label="",style="solid", color="blue", weight=9]; 3193 -> 1259[label="",style="solid", color="blue", weight=3]; 3194[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];858 -> 3194[label="",style="solid", color="blue", weight=9]; 3194 -> 1260[label="",style="solid", color="blue", weight=3]; 3195[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];858 -> 3195[label="",style="solid", color="blue", weight=9]; 3195 -> 1261[label="",style="solid", color="blue", weight=3]; 3196[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];858 -> 3196[label="",style="solid", color="blue", weight=9]; 3196 -> 1262[label="",style="solid", color="blue", weight=3]; 3197[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];858 -> 3197[label="",style="solid", color="blue", weight=9]; 3197 -> 1263[label="",style="solid", color="blue", weight=3]; 3198[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];858 -> 3198[label="",style="solid", color="blue", weight=9]; 3198 -> 1264[label="",style="solid", color="blue", weight=3]; 3199[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];858 -> 3199[label="",style="solid", color="blue", weight=9]; 3199 -> 1265[label="",style="solid", color="blue", weight=3]; 3200[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];858 -> 3200[label="",style="solid", color="blue", weight=9]; 3200 -> 1266[label="",style="solid", color="blue", weight=3]; 3201[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];858 -> 3201[label="",style="solid", color="blue", weight=9]; 3201 -> 1267[label="",style="solid", color="blue", weight=3]; 3202[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];858 -> 3202[label="",style="solid", color="blue", weight=9]; 3202 -> 1268[label="",style="solid", color="blue", weight=3]; 3203[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];858 -> 3203[label="",style="solid", color="blue", weight=9]; 3203 -> 1269[label="",style="solid", color="blue", weight=3]; 3204[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];858 -> 3204[label="",style="solid", color="blue", weight=9]; 3204 -> 1270[label="",style="solid", color="blue", weight=3]; 3205[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];858 -> 3205[label="",style="solid", color="blue", weight=9]; 3205 -> 1271[label="",style="solid", color="blue", weight=3]; 3206[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];858 -> 3206[label="",style="solid", color="blue", weight=9]; 3206 -> 1272[label="",style="solid", color="blue", weight=3]; 859[label="compare1 (Right vwx112) (Right vwx113) False",fontsize=16,color="black",shape="box"];859 -> 1273[label="",style="solid", color="black", weight=3]; 860[label="compare1 (Right vwx112) (Right vwx113) True",fontsize=16,color="black",shape="box"];860 -> 1274[label="",style="solid", color="black", weight=3]; 1124[label="vwx302",fontsize=16,color="green",shape="box"];1125[label="vwx402",fontsize=16,color="green",shape="box"];1126[label="vwx302",fontsize=16,color="green",shape="box"];1127[label="vwx402",fontsize=16,color="green",shape="box"];1128[label="vwx302",fontsize=16,color="green",shape="box"];1129[label="vwx402",fontsize=16,color="green",shape="box"];1130[label="vwx302",fontsize=16,color="green",shape="box"];1131[label="vwx402",fontsize=16,color="green",shape="box"];1132[label="vwx302",fontsize=16,color="green",shape="box"];1133[label="vwx402",fontsize=16,color="green",shape="box"];1134[label="vwx302",fontsize=16,color="green",shape="box"];1135[label="vwx402",fontsize=16,color="green",shape="box"];1136[label="vwx302",fontsize=16,color="green",shape="box"];1137[label="vwx402",fontsize=16,color="green",shape="box"];1138[label="vwx302",fontsize=16,color="green",shape="box"];1139[label="vwx402",fontsize=16,color="green",shape="box"];1140[label="vwx302",fontsize=16,color="green",shape="box"];1141[label="vwx402",fontsize=16,color="green",shape="box"];1142[label="vwx302",fontsize=16,color="green",shape="box"];1143[label="vwx402",fontsize=16,color="green",shape="box"];1144[label="vwx302",fontsize=16,color="green",shape="box"];1145[label="vwx402",fontsize=16,color="green",shape="box"];1146[label="vwx302",fontsize=16,color="green",shape="box"];1147[label="vwx402",fontsize=16,color="green",shape="box"];1148[label="vwx302",fontsize=16,color="green",shape="box"];1149[label="vwx402",fontsize=16,color="green",shape="box"];1150[label="vwx302",fontsize=16,color="green",shape="box"];1151[label="vwx402",fontsize=16,color="green",shape="box"];1152[label="vwx301",fontsize=16,color="green",shape="box"];1153[label="vwx401",fontsize=16,color="green",shape="box"];1154[label="vwx301",fontsize=16,color="green",shape="box"];1155[label="vwx401",fontsize=16,color="green",shape="box"];1156[label="vwx301",fontsize=16,color="green",shape="box"];1157[label="vwx401",fontsize=16,color="green",shape="box"];1158[label="vwx301",fontsize=16,color="green",shape="box"];1159[label="vwx401",fontsize=16,color="green",shape="box"];1160[label="vwx301",fontsize=16,color="green",shape="box"];1161[label="vwx401",fontsize=16,color="green",shape="box"];1162[label="vwx301",fontsize=16,color="green",shape="box"];1163[label="vwx401",fontsize=16,color="green",shape="box"];1164[label="vwx301",fontsize=16,color="green",shape="box"];1165[label="vwx401",fontsize=16,color="green",shape="box"];1166[label="vwx301",fontsize=16,color="green",shape="box"];1167[label="vwx401",fontsize=16,color="green",shape="box"];1168[label="vwx301",fontsize=16,color="green",shape="box"];1169[label="vwx401",fontsize=16,color="green",shape="box"];1170[label="vwx301",fontsize=16,color="green",shape="box"];1171[label="vwx401",fontsize=16,color="green",shape="box"];1172[label="vwx301",fontsize=16,color="green",shape="box"];1173[label="vwx401",fontsize=16,color="green",shape="box"];1174[label="vwx301",fontsize=16,color="green",shape="box"];1175[label="vwx401",fontsize=16,color="green",shape="box"];1176[label="vwx301",fontsize=16,color="green",shape="box"];1177[label="vwx401",fontsize=16,color="green",shape="box"];1178[label="vwx301",fontsize=16,color="green",shape="box"];1179[label="vwx401",fontsize=16,color="green",shape="box"];1278[label="vwx79",fontsize=16,color="green",shape="box"];1279 -> 928[label="",style="dashed", color="red", weight=0]; 1279[label="vwx76 == vwx79 && (vwx77 < vwx80 || vwx77 == vwx80 && vwx78 <= vwx81)",fontsize=16,color="magenta"];1279 -> 1294[label="",style="dashed", color="magenta", weight=3]; 1279 -> 1295[label="",style="dashed", color="magenta", weight=3]; 1280[label="vwx77",fontsize=16,color="green",shape="box"];1281[label="vwx81",fontsize=16,color="green",shape="box"];1282[label="vwx80",fontsize=16,color="green",shape="box"];1283[label="vwx76",fontsize=16,color="green",shape="box"];1284[label="vwx78",fontsize=16,color="green",shape="box"];1285[label="vwx76 < vwx79",fontsize=16,color="blue",shape="box"];3207[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1285 -> 3207[label="",style="solid", color="blue", weight=9]; 3207 -> 1296[label="",style="solid", color="blue", weight=3]; 3208[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1285 -> 3208[label="",style="solid", color="blue", weight=9]; 3208 -> 1297[label="",style="solid", color="blue", weight=3]; 3209[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1285 -> 3209[label="",style="solid", color="blue", weight=9]; 3209 -> 1298[label="",style="solid", color="blue", weight=3]; 3210[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1285 -> 3210[label="",style="solid", color="blue", weight=9]; 3210 -> 1299[label="",style="solid", color="blue", weight=3]; 3211[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1285 -> 3211[label="",style="solid", color="blue", weight=9]; 3211 -> 1300[label="",style="solid", color="blue", weight=3]; 3212[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1285 -> 3212[label="",style="solid", color="blue", weight=9]; 3212 -> 1301[label="",style="solid", color="blue", weight=3]; 3213[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1285 -> 3213[label="",style="solid", color="blue", weight=9]; 3213 -> 1302[label="",style="solid", color="blue", weight=3]; 3214[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1285 -> 3214[label="",style="solid", color="blue", weight=9]; 3214 -> 1303[label="",style="solid", color="blue", weight=3]; 3215[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1285 -> 3215[label="",style="solid", color="blue", weight=9]; 3215 -> 1304[label="",style="solid", color="blue", weight=3]; 3216[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1285 -> 3216[label="",style="solid", color="blue", weight=9]; 3216 -> 1305[label="",style="solid", color="blue", weight=3]; 3217[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1285 -> 3217[label="",style="solid", color="blue", weight=9]; 3217 -> 1306[label="",style="solid", color="blue", weight=3]; 3218[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1285 -> 3218[label="",style="solid", color="blue", weight=9]; 3218 -> 1307[label="",style="solid", color="blue", weight=3]; 3219[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1285 -> 3219[label="",style="solid", color="blue", weight=9]; 3219 -> 1308[label="",style="solid", color="blue", weight=3]; 3220[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1285 -> 3220[label="",style="solid", color="blue", weight=9]; 3220 -> 1309[label="",style="solid", color="blue", weight=3]; 1277[label="compare1 (vwx141,vwx142,vwx143) (vwx144,vwx145,vwx146) (vwx147 || vwx148)",fontsize=16,color="burlywood",shape="triangle"];3221[label="vwx147/False",fontsize=10,color="white",style="solid",shape="box"];1277 -> 3221[label="",style="solid", color="burlywood", weight=9]; 3221 -> 1310[label="",style="solid", color="burlywood", weight=3]; 3222[label="vwx147/True",fontsize=10,color="white",style="solid",shape="box"];1277 -> 3222[label="",style="solid", color="burlywood", weight=9]; 3222 -> 1311[label="",style="solid", color="burlywood", weight=3]; 995[label="GT",fontsize=16,color="green",shape="box"];996[label="GT",fontsize=16,color="green",shape="box"];1119[label="vwx54 <= vwx55",fontsize=16,color="blue",shape="box"];3223[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1119 -> 3223[label="",style="solid", color="blue", weight=9]; 3223 -> 1312[label="",style="solid", color="blue", weight=3]; 3224[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1119 -> 3224[label="",style="solid", color="blue", weight=9]; 3224 -> 1313[label="",style="solid", color="blue", weight=3]; 3225[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1119 -> 3225[label="",style="solid", color="blue", weight=9]; 3225 -> 1314[label="",style="solid", color="blue", weight=3]; 3226[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1119 -> 3226[label="",style="solid", color="blue", weight=9]; 3226 -> 1315[label="",style="solid", color="blue", weight=3]; 3227[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1119 -> 3227[label="",style="solid", color="blue", weight=9]; 3227 -> 1316[label="",style="solid", color="blue", weight=3]; 3228[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1119 -> 3228[label="",style="solid", color="blue", weight=9]; 3228 -> 1317[label="",style="solid", color="blue", weight=3]; 3229[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1119 -> 3229[label="",style="solid", color="blue", weight=9]; 3229 -> 1318[label="",style="solid", color="blue", weight=3]; 3230[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1119 -> 3230[label="",style="solid", color="blue", weight=9]; 3230 -> 1319[label="",style="solid", color="blue", weight=3]; 3231[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1119 -> 3231[label="",style="solid", color="blue", weight=9]; 3231 -> 1320[label="",style="solid", color="blue", weight=3]; 3232[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1119 -> 3232[label="",style="solid", color="blue", weight=9]; 3232 -> 1321[label="",style="solid", color="blue", weight=3]; 3233[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1119 -> 3233[label="",style="solid", color="blue", weight=9]; 3233 -> 1322[label="",style="solid", color="blue", weight=3]; 3234[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1119 -> 3234[label="",style="solid", color="blue", weight=9]; 3234 -> 1323[label="",style="solid", color="blue", weight=3]; 3235[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1119 -> 3235[label="",style="solid", color="blue", weight=9]; 3235 -> 1324[label="",style="solid", color="blue", weight=3]; 3236[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1119 -> 3236[label="",style="solid", color="blue", weight=9]; 3236 -> 1325[label="",style="solid", color="blue", weight=3]; 1120[label="compare1 (Just vwx126) (Just vwx127) False",fontsize=16,color="black",shape="box"];1120 -> 1326[label="",style="solid", color="black", weight=3]; 1121[label="compare1 (Just vwx126) (Just vwx127) True",fontsize=16,color="black",shape="box"];1121 -> 1327[label="",style="solid", color="black", weight=3]; 1331[label="vwx89",fontsize=16,color="green",shape="box"];1332[label="vwx90",fontsize=16,color="green",shape="box"];1333 -> 928[label="",style="dashed", color="red", weight=0]; 1333[label="vwx89 == vwx91 && vwx90 <= vwx92",fontsize=16,color="magenta"];1333 -> 1343[label="",style="dashed", color="magenta", weight=3]; 1333 -> 1344[label="",style="dashed", color="magenta", weight=3]; 1334[label="vwx92",fontsize=16,color="green",shape="box"];1335[label="vwx89 < vwx91",fontsize=16,color="blue",shape="box"];3237[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1335 -> 3237[label="",style="solid", color="blue", weight=9]; 3237 -> 1345[label="",style="solid", color="blue", weight=3]; 3238[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1335 -> 3238[label="",style="solid", color="blue", weight=9]; 3238 -> 1346[label="",style="solid", color="blue", weight=3]; 3239[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1335 -> 3239[label="",style="solid", color="blue", weight=9]; 3239 -> 1347[label="",style="solid", color="blue", weight=3]; 3240[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1335 -> 3240[label="",style="solid", color="blue", weight=9]; 3240 -> 1348[label="",style="solid", color="blue", weight=3]; 3241[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1335 -> 3241[label="",style="solid", color="blue", weight=9]; 3241 -> 1349[label="",style="solid", color="blue", weight=3]; 3242[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1335 -> 3242[label="",style="solid", color="blue", weight=9]; 3242 -> 1350[label="",style="solid", color="blue", weight=3]; 3243[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1335 -> 3243[label="",style="solid", color="blue", weight=9]; 3243 -> 1351[label="",style="solid", color="blue", weight=3]; 3244[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1335 -> 3244[label="",style="solid", color="blue", weight=9]; 3244 -> 1352[label="",style="solid", color="blue", weight=3]; 3245[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1335 -> 3245[label="",style="solid", color="blue", weight=9]; 3245 -> 1353[label="",style="solid", color="blue", weight=3]; 3246[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1335 -> 3246[label="",style="solid", color="blue", weight=9]; 3246 -> 1354[label="",style="solid", color="blue", weight=3]; 3247[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1335 -> 3247[label="",style="solid", color="blue", weight=9]; 3247 -> 1355[label="",style="solid", color="blue", weight=3]; 3248[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1335 -> 3248[label="",style="solid", color="blue", weight=9]; 3248 -> 1356[label="",style="solid", color="blue", weight=3]; 3249[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1335 -> 3249[label="",style="solid", color="blue", weight=9]; 3249 -> 1357[label="",style="solid", color="blue", weight=3]; 3250[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1335 -> 3250[label="",style="solid", color="blue", weight=9]; 3250 -> 1358[label="",style="solid", color="blue", weight=3]; 1336[label="vwx91",fontsize=16,color="green",shape="box"];1330[label="compare1 (vwx156,vwx157) (vwx158,vwx159) (vwx160 || vwx161)",fontsize=16,color="burlywood",shape="triangle"];3251[label="vwx160/False",fontsize=10,color="white",style="solid",shape="box"];1330 -> 3251[label="",style="solid", color="burlywood", weight=9]; 3251 -> 1359[label="",style="solid", color="burlywood", weight=3]; 3252[label="vwx160/True",fontsize=10,color="white",style="solid",shape="box"];1330 -> 3252[label="",style="solid", color="burlywood", weight=9]; 3252 -> 1360[label="",style="solid", color="burlywood", weight=3]; 1182[label="primMulNat (Succ vwx40000) vwx3010",fontsize=16,color="burlywood",shape="box"];3253[label="vwx3010/Succ vwx30100",fontsize=10,color="white",style="solid",shape="box"];1182 -> 3253[label="",style="solid", color="burlywood", weight=9]; 3253 -> 1361[label="",style="solid", color="burlywood", weight=3]; 3254[label="vwx3010/Zero",fontsize=10,color="white",style="solid",shape="box"];1182 -> 3254[label="",style="solid", color="burlywood", weight=9]; 3254 -> 1362[label="",style="solid", color="burlywood", weight=3]; 1183[label="primMulNat Zero vwx3010",fontsize=16,color="burlywood",shape="box"];3255[label="vwx3010/Succ vwx30100",fontsize=10,color="white",style="solid",shape="box"];1183 -> 3255[label="",style="solid", color="burlywood", weight=9]; 3255 -> 1363[label="",style="solid", color="burlywood", weight=3]; 3256[label="vwx3010/Zero",fontsize=10,color="white",style="solid",shape="box"];1183 -> 3256[label="",style="solid", color="burlywood", weight=9]; 3256 -> 1364[label="",style="solid", color="burlywood", weight=3]; 1184[label="vwx3010",fontsize=16,color="green",shape="box"];1185[label="vwx4000",fontsize=16,color="green",shape="box"];1186[label="vwx4000",fontsize=16,color="green",shape="box"];1187[label="vwx3010",fontsize=16,color="green",shape="box"];1188 -> 374[label="",style="dashed", color="red", weight=0]; 1188[label="vwx3000 * vwx4001 == vwx3001 * vwx4000",fontsize=16,color="magenta"];1188 -> 1365[label="",style="dashed", color="magenta", weight=3]; 1188 -> 1366[label="",style="dashed", color="magenta", weight=3]; 1189 -> 364[label="",style="dashed", color="red", weight=0]; 1189[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1189 -> 1367[label="",style="dashed", color="magenta", weight=3]; 1189 -> 1368[label="",style="dashed", color="magenta", weight=3]; 1190 -> 365[label="",style="dashed", color="red", weight=0]; 1190[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1190 -> 1369[label="",style="dashed", color="magenta", weight=3]; 1190 -> 1370[label="",style="dashed", color="magenta", weight=3]; 1191 -> 366[label="",style="dashed", color="red", weight=0]; 1191[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1191 -> 1371[label="",style="dashed", color="magenta", weight=3]; 1191 -> 1372[label="",style="dashed", color="magenta", weight=3]; 1192 -> 367[label="",style="dashed", color="red", weight=0]; 1192[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1192 -> 1373[label="",style="dashed", color="magenta", weight=3]; 1192 -> 1374[label="",style="dashed", color="magenta", weight=3]; 1193 -> 368[label="",style="dashed", color="red", weight=0]; 1193[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1193 -> 1375[label="",style="dashed", color="magenta", weight=3]; 1193 -> 1376[label="",style="dashed", color="magenta", weight=3]; 1194 -> 369[label="",style="dashed", color="red", weight=0]; 1194[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1194 -> 1377[label="",style="dashed", color="magenta", weight=3]; 1194 -> 1378[label="",style="dashed", color="magenta", weight=3]; 1195 -> 370[label="",style="dashed", color="red", weight=0]; 1195[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1195 -> 1379[label="",style="dashed", color="magenta", weight=3]; 1195 -> 1380[label="",style="dashed", color="magenta", weight=3]; 1196 -> 371[label="",style="dashed", color="red", weight=0]; 1196[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1196 -> 1381[label="",style="dashed", color="magenta", weight=3]; 1196 -> 1382[label="",style="dashed", color="magenta", weight=3]; 1197 -> 372[label="",style="dashed", color="red", weight=0]; 1197[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1197 -> 1383[label="",style="dashed", color="magenta", weight=3]; 1197 -> 1384[label="",style="dashed", color="magenta", weight=3]; 1198 -> 373[label="",style="dashed", color="red", weight=0]; 1198[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1198 -> 1385[label="",style="dashed", color="magenta", weight=3]; 1198 -> 1386[label="",style="dashed", color="magenta", weight=3]; 1199 -> 374[label="",style="dashed", color="red", weight=0]; 1199[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1199 -> 1387[label="",style="dashed", color="magenta", weight=3]; 1199 -> 1388[label="",style="dashed", color="magenta", weight=3]; 1200 -> 375[label="",style="dashed", color="red", weight=0]; 1200[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1200 -> 1389[label="",style="dashed", color="magenta", weight=3]; 1200 -> 1390[label="",style="dashed", color="magenta", weight=3]; 1201 -> 376[label="",style="dashed", color="red", weight=0]; 1201[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1201 -> 1391[label="",style="dashed", color="magenta", weight=3]; 1201 -> 1392[label="",style="dashed", color="magenta", weight=3]; 1202 -> 377[label="",style="dashed", color="red", weight=0]; 1202[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1202 -> 1393[label="",style="dashed", color="magenta", weight=3]; 1202 -> 1394[label="",style="dashed", color="magenta", weight=3]; 1203[label="primEqNat vwx3000 vwx4000",fontsize=16,color="burlywood",shape="triangle"];3257[label="vwx3000/Succ vwx30000",fontsize=10,color="white",style="solid",shape="box"];1203 -> 3257[label="",style="solid", color="burlywood", weight=9]; 3257 -> 1395[label="",style="solid", color="burlywood", weight=3]; 3258[label="vwx3000/Zero",fontsize=10,color="white",style="solid",shape="box"];1203 -> 3258[label="",style="solid", color="burlywood", weight=9]; 3258 -> 1396[label="",style="solid", color="burlywood", weight=3]; 937[label="vwx3001 == vwx4001",fontsize=16,color="blue",shape="box"];3259[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];937 -> 3259[label="",style="solid", color="blue", weight=9]; 3259 -> 1397[label="",style="solid", color="blue", weight=3]; 3260[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];937 -> 3260[label="",style="solid", color="blue", weight=9]; 3260 -> 1398[label="",style="solid", color="blue", weight=3]; 938[label="vwx3000 == vwx4000",fontsize=16,color="blue",shape="box"];3261[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];938 -> 3261[label="",style="solid", color="blue", weight=9]; 3261 -> 1399[label="",style="solid", color="blue", weight=3]; 3262[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];938 -> 3262[label="",style="solid", color="blue", weight=9]; 3262 -> 1400[label="",style="solid", color="blue", weight=3]; 939 -> 928[label="",style="dashed", color="red", weight=0]; 939[label="vwx3001 == vwx4001 && vwx3002 == vwx4002",fontsize=16,color="magenta"];939 -> 1401[label="",style="dashed", color="magenta", weight=3]; 939 -> 1402[label="",style="dashed", color="magenta", weight=3]; 940[label="vwx3000 == vwx4000",fontsize=16,color="blue",shape="box"];3263[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];940 -> 3263[label="",style="solid", color="blue", weight=9]; 3263 -> 1403[label="",style="solid", color="blue", weight=3]; 3264[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];940 -> 3264[label="",style="solid", color="blue", weight=9]; 3264 -> 1404[label="",style="solid", color="blue", weight=3]; 3265[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];940 -> 3265[label="",style="solid", color="blue", weight=9]; 3265 -> 1405[label="",style="solid", color="blue", weight=3]; 3266[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];940 -> 3266[label="",style="solid", color="blue", weight=9]; 3266 -> 1406[label="",style="solid", color="blue", weight=3]; 3267[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];940 -> 3267[label="",style="solid", color="blue", weight=9]; 3267 -> 1407[label="",style="solid", color="blue", weight=3]; 3268[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];940 -> 3268[label="",style="solid", color="blue", weight=9]; 3268 -> 1408[label="",style="solid", color="blue", weight=3]; 3269[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];940 -> 3269[label="",style="solid", color="blue", weight=9]; 3269 -> 1409[label="",style="solid", color="blue", weight=3]; 3270[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];940 -> 3270[label="",style="solid", color="blue", weight=9]; 3270 -> 1410[label="",style="solid", color="blue", weight=3]; 3271[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];940 -> 3271[label="",style="solid", color="blue", weight=9]; 3271 -> 1411[label="",style="solid", color="blue", weight=3]; 3272[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];940 -> 3272[label="",style="solid", color="blue", weight=9]; 3272 -> 1412[label="",style="solid", color="blue", weight=3]; 3273[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];940 -> 3273[label="",style="solid", color="blue", weight=9]; 3273 -> 1413[label="",style="solid", color="blue", weight=3]; 3274[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];940 -> 3274[label="",style="solid", color="blue", weight=9]; 3274 -> 1414[label="",style="solid", color="blue", weight=3]; 3275[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];940 -> 3275[label="",style="solid", color="blue", weight=9]; 3275 -> 1415[label="",style="solid", color="blue", weight=3]; 3276[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];940 -> 3276[label="",style="solid", color="blue", weight=9]; 3276 -> 1416[label="",style="solid", color="blue", weight=3]; 941[label="vwx3001 == vwx4001",fontsize=16,color="blue",shape="box"];3277[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];941 -> 3277[label="",style="solid", color="blue", weight=9]; 3277 -> 1417[label="",style="solid", color="blue", weight=3]; 3278[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];941 -> 3278[label="",style="solid", color="blue", weight=9]; 3278 -> 1418[label="",style="solid", color="blue", weight=3]; 3279[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];941 -> 3279[label="",style="solid", color="blue", weight=9]; 3279 -> 1419[label="",style="solid", color="blue", weight=3]; 3280[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];941 -> 3280[label="",style="solid", color="blue", weight=9]; 3280 -> 1420[label="",style="solid", color="blue", weight=3]; 3281[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];941 -> 3281[label="",style="solid", color="blue", weight=9]; 3281 -> 1421[label="",style="solid", color="blue", weight=3]; 3282[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];941 -> 3282[label="",style="solid", color="blue", weight=9]; 3282 -> 1422[label="",style="solid", color="blue", weight=3]; 3283[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];941 -> 3283[label="",style="solid", color="blue", weight=9]; 3283 -> 1423[label="",style="solid", color="blue", weight=3]; 3284[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];941 -> 3284[label="",style="solid", color="blue", weight=9]; 3284 -> 1424[label="",style="solid", color="blue", weight=3]; 3285[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];941 -> 3285[label="",style="solid", color="blue", weight=9]; 3285 -> 1425[label="",style="solid", color="blue", weight=3]; 3286[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];941 -> 3286[label="",style="solid", color="blue", weight=9]; 3286 -> 1426[label="",style="solid", color="blue", weight=3]; 3287[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];941 -> 3287[label="",style="solid", color="blue", weight=9]; 3287 -> 1427[label="",style="solid", color="blue", weight=3]; 3288[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];941 -> 3288[label="",style="solid", color="blue", weight=9]; 3288 -> 1428[label="",style="solid", color="blue", weight=3]; 3289[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];941 -> 3289[label="",style="solid", color="blue", weight=9]; 3289 -> 1429[label="",style="solid", color="blue", weight=3]; 3290[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];941 -> 3290[label="",style="solid", color="blue", weight=9]; 3290 -> 1430[label="",style="solid", color="blue", weight=3]; 942[label="vwx3000 == vwx4000",fontsize=16,color="blue",shape="box"];3291[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];942 -> 3291[label="",style="solid", color="blue", weight=9]; 3291 -> 1431[label="",style="solid", color="blue", weight=3]; 3292[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];942 -> 3292[label="",style="solid", color="blue", weight=9]; 3292 -> 1432[label="",style="solid", color="blue", weight=3]; 3293[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];942 -> 3293[label="",style="solid", color="blue", weight=9]; 3293 -> 1433[label="",style="solid", color="blue", weight=3]; 3294[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];942 -> 3294[label="",style="solid", color="blue", weight=9]; 3294 -> 1434[label="",style="solid", color="blue", weight=3]; 3295[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];942 -> 3295[label="",style="solid", color="blue", weight=9]; 3295 -> 1435[label="",style="solid", color="blue", weight=3]; 3296[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];942 -> 3296[label="",style="solid", color="blue", weight=9]; 3296 -> 1436[label="",style="solid", color="blue", weight=3]; 3297[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];942 -> 3297[label="",style="solid", color="blue", weight=9]; 3297 -> 1437[label="",style="solid", color="blue", weight=3]; 3298[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];942 -> 3298[label="",style="solid", color="blue", weight=9]; 3298 -> 1438[label="",style="solid", color="blue", weight=3]; 3299[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];942 -> 3299[label="",style="solid", color="blue", weight=9]; 3299 -> 1439[label="",style="solid", color="blue", weight=3]; 3300[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];942 -> 3300[label="",style="solid", color="blue", weight=9]; 3300 -> 1440[label="",style="solid", color="blue", weight=3]; 3301[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];942 -> 3301[label="",style="solid", color="blue", weight=9]; 3301 -> 1441[label="",style="solid", color="blue", weight=3]; 3302[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];942 -> 3302[label="",style="solid", color="blue", weight=9]; 3302 -> 1442[label="",style="solid", color="blue", weight=3]; 3303[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];942 -> 3303[label="",style="solid", color="blue", weight=9]; 3303 -> 1443[label="",style="solid", color="blue", weight=3]; 3304[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];942 -> 3304[label="",style="solid", color="blue", weight=9]; 3304 -> 1444[label="",style="solid", color="blue", weight=3]; 943 -> 372[label="",style="dashed", color="red", weight=0]; 943[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];943 -> 1445[label="",style="dashed", color="magenta", weight=3]; 943 -> 1446[label="",style="dashed", color="magenta", weight=3]; 944[label="vwx3000 == vwx4000",fontsize=16,color="blue",shape="box"];3305[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];944 -> 3305[label="",style="solid", color="blue", weight=9]; 3305 -> 1447[label="",style="solid", color="blue", weight=3]; 3306[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];944 -> 3306[label="",style="solid", color="blue", weight=9]; 3306 -> 1448[label="",style="solid", color="blue", weight=3]; 3307[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];944 -> 3307[label="",style="solid", color="blue", weight=9]; 3307 -> 1449[label="",style="solid", color="blue", weight=3]; 3308[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];944 -> 3308[label="",style="solid", color="blue", weight=9]; 3308 -> 1450[label="",style="solid", color="blue", weight=3]; 3309[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];944 -> 3309[label="",style="solid", color="blue", weight=9]; 3309 -> 1451[label="",style="solid", color="blue", weight=3]; 3310[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];944 -> 3310[label="",style="solid", color="blue", weight=9]; 3310 -> 1452[label="",style="solid", color="blue", weight=3]; 3311[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];944 -> 3311[label="",style="solid", color="blue", weight=9]; 3311 -> 1453[label="",style="solid", color="blue", weight=3]; 3312[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];944 -> 3312[label="",style="solid", color="blue", weight=9]; 3312 -> 1454[label="",style="solid", color="blue", weight=3]; 3313[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];944 -> 3313[label="",style="solid", color="blue", weight=9]; 3313 -> 1455[label="",style="solid", color="blue", weight=3]; 3314[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];944 -> 3314[label="",style="solid", color="blue", weight=9]; 3314 -> 1456[label="",style="solid", color="blue", weight=3]; 3315[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];944 -> 3315[label="",style="solid", color="blue", weight=9]; 3315 -> 1457[label="",style="solid", color="blue", weight=3]; 3316[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];944 -> 3316[label="",style="solid", color="blue", weight=9]; 3316 -> 1458[label="",style="solid", color="blue", weight=3]; 3317[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];944 -> 3317[label="",style="solid", color="blue", weight=9]; 3317 -> 1459[label="",style="solid", color="blue", weight=3]; 3318[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];944 -> 3318[label="",style="solid", color="blue", weight=9]; 3318 -> 1460[label="",style="solid", color="blue", weight=3]; 1204[label="vwx3000",fontsize=16,color="green",shape="box"];1205[label="vwx4000",fontsize=16,color="green",shape="box"];1206[label="primEqInt (Pos (Succ vwx30000)) (Pos vwx4000)",fontsize=16,color="burlywood",shape="box"];3319[label="vwx4000/Succ vwx40000",fontsize=10,color="white",style="solid",shape="box"];1206 -> 3319[label="",style="solid", color="burlywood", weight=9]; 3319 -> 1461[label="",style="solid", color="burlywood", weight=3]; 3320[label="vwx4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1206 -> 3320[label="",style="solid", color="burlywood", weight=9]; 3320 -> 1462[label="",style="solid", color="burlywood", weight=3]; 1207[label="primEqInt (Pos (Succ vwx30000)) (Neg vwx4000)",fontsize=16,color="black",shape="box"];1207 -> 1463[label="",style="solid", color="black", weight=3]; 1208[label="primEqInt (Pos Zero) (Pos vwx4000)",fontsize=16,color="burlywood",shape="box"];3321[label="vwx4000/Succ vwx40000",fontsize=10,color="white",style="solid",shape="box"];1208 -> 3321[label="",style="solid", color="burlywood", weight=9]; 3321 -> 1464[label="",style="solid", color="burlywood", weight=3]; 3322[label="vwx4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1208 -> 3322[label="",style="solid", color="burlywood", weight=9]; 3322 -> 1465[label="",style="solid", color="burlywood", weight=3]; 1209[label="primEqInt (Pos Zero) (Neg vwx4000)",fontsize=16,color="burlywood",shape="box"];3323[label="vwx4000/Succ vwx40000",fontsize=10,color="white",style="solid",shape="box"];1209 -> 3323[label="",style="solid", color="burlywood", weight=9]; 3323 -> 1466[label="",style="solid", color="burlywood", weight=3]; 3324[label="vwx4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1209 -> 3324[label="",style="solid", color="burlywood", weight=9]; 3324 -> 1467[label="",style="solid", color="burlywood", weight=3]; 1210[label="primEqInt (Neg (Succ vwx30000)) (Pos vwx4000)",fontsize=16,color="black",shape="box"];1210 -> 1468[label="",style="solid", color="black", weight=3]; 1211[label="primEqInt (Neg (Succ vwx30000)) (Neg vwx4000)",fontsize=16,color="burlywood",shape="box"];3325[label="vwx4000/Succ vwx40000",fontsize=10,color="white",style="solid",shape="box"];1211 -> 3325[label="",style="solid", color="burlywood", weight=9]; 3325 -> 1469[label="",style="solid", color="burlywood", weight=3]; 3326[label="vwx4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1211 -> 3326[label="",style="solid", color="burlywood", weight=9]; 3326 -> 1470[label="",style="solid", color="burlywood", weight=3]; 1212[label="primEqInt (Neg Zero) (Pos vwx4000)",fontsize=16,color="burlywood",shape="box"];3327[label="vwx4000/Succ vwx40000",fontsize=10,color="white",style="solid",shape="box"];1212 -> 3327[label="",style="solid", color="burlywood", weight=9]; 3327 -> 1471[label="",style="solid", color="burlywood", weight=3]; 3328[label="vwx4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1212 -> 3328[label="",style="solid", color="burlywood", weight=9]; 3328 -> 1472[label="",style="solid", color="burlywood", weight=3]; 1213[label="primEqInt (Neg Zero) (Neg vwx4000)",fontsize=16,color="burlywood",shape="box"];3329[label="vwx4000/Succ vwx40000",fontsize=10,color="white",style="solid",shape="box"];1213 -> 3329[label="",style="solid", color="burlywood", weight=9]; 3329 -> 1473[label="",style="solid", color="burlywood", weight=3]; 3330[label="vwx4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1213 -> 3330[label="",style="solid", color="burlywood", weight=9]; 3330 -> 1474[label="",style="solid", color="burlywood", weight=3]; 1214 -> 364[label="",style="dashed", color="red", weight=0]; 1214[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1214 -> 1475[label="",style="dashed", color="magenta", weight=3]; 1214 -> 1476[label="",style="dashed", color="magenta", weight=3]; 1215 -> 365[label="",style="dashed", color="red", weight=0]; 1215[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1215 -> 1477[label="",style="dashed", color="magenta", weight=3]; 1215 -> 1478[label="",style="dashed", color="magenta", weight=3]; 1216 -> 366[label="",style="dashed", color="red", weight=0]; 1216[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1216 -> 1479[label="",style="dashed", color="magenta", weight=3]; 1216 -> 1480[label="",style="dashed", color="magenta", weight=3]; 1217 -> 367[label="",style="dashed", color="red", weight=0]; 1217[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1217 -> 1481[label="",style="dashed", color="magenta", weight=3]; 1217 -> 1482[label="",style="dashed", color="magenta", weight=3]; 1218 -> 368[label="",style="dashed", color="red", weight=0]; 1218[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1218 -> 1483[label="",style="dashed", color="magenta", weight=3]; 1218 -> 1484[label="",style="dashed", color="magenta", weight=3]; 1219 -> 369[label="",style="dashed", color="red", weight=0]; 1219[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1219 -> 1485[label="",style="dashed", color="magenta", weight=3]; 1219 -> 1486[label="",style="dashed", color="magenta", weight=3]; 1220 -> 370[label="",style="dashed", color="red", weight=0]; 1220[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1220 -> 1487[label="",style="dashed", color="magenta", weight=3]; 1220 -> 1488[label="",style="dashed", color="magenta", weight=3]; 1221 -> 371[label="",style="dashed", color="red", weight=0]; 1221[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1221 -> 1489[label="",style="dashed", color="magenta", weight=3]; 1221 -> 1490[label="",style="dashed", color="magenta", weight=3]; 1222 -> 372[label="",style="dashed", color="red", weight=0]; 1222[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1222 -> 1491[label="",style="dashed", color="magenta", weight=3]; 1222 -> 1492[label="",style="dashed", color="magenta", weight=3]; 1223 -> 373[label="",style="dashed", color="red", weight=0]; 1223[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1223 -> 1493[label="",style="dashed", color="magenta", weight=3]; 1223 -> 1494[label="",style="dashed", color="magenta", weight=3]; 1224 -> 374[label="",style="dashed", color="red", weight=0]; 1224[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1224 -> 1495[label="",style="dashed", color="magenta", weight=3]; 1224 -> 1496[label="",style="dashed", color="magenta", weight=3]; 1225 -> 375[label="",style="dashed", color="red", weight=0]; 1225[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1225 -> 1497[label="",style="dashed", color="magenta", weight=3]; 1225 -> 1498[label="",style="dashed", color="magenta", weight=3]; 1226 -> 376[label="",style="dashed", color="red", weight=0]; 1226[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1226 -> 1499[label="",style="dashed", color="magenta", weight=3]; 1226 -> 1500[label="",style="dashed", color="magenta", weight=3]; 1227 -> 377[label="",style="dashed", color="red", weight=0]; 1227[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1227 -> 1501[label="",style="dashed", color="magenta", weight=3]; 1227 -> 1502[label="",style="dashed", color="magenta", weight=3]; 1228 -> 364[label="",style="dashed", color="red", weight=0]; 1228[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1228 -> 1503[label="",style="dashed", color="magenta", weight=3]; 1228 -> 1504[label="",style="dashed", color="magenta", weight=3]; 1229 -> 365[label="",style="dashed", color="red", weight=0]; 1229[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1229 -> 1505[label="",style="dashed", color="magenta", weight=3]; 1229 -> 1506[label="",style="dashed", color="magenta", weight=3]; 1230 -> 366[label="",style="dashed", color="red", weight=0]; 1230[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1230 -> 1507[label="",style="dashed", color="magenta", weight=3]; 1230 -> 1508[label="",style="dashed", color="magenta", weight=3]; 1231 -> 367[label="",style="dashed", color="red", weight=0]; 1231[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1231 -> 1509[label="",style="dashed", color="magenta", weight=3]; 1231 -> 1510[label="",style="dashed", color="magenta", weight=3]; 1232 -> 368[label="",style="dashed", color="red", weight=0]; 1232[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1232 -> 1511[label="",style="dashed", color="magenta", weight=3]; 1232 -> 1512[label="",style="dashed", color="magenta", weight=3]; 1233 -> 369[label="",style="dashed", color="red", weight=0]; 1233[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1233 -> 1513[label="",style="dashed", color="magenta", weight=3]; 1233 -> 1514[label="",style="dashed", color="magenta", weight=3]; 1234 -> 370[label="",style="dashed", color="red", weight=0]; 1234[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1234 -> 1515[label="",style="dashed", color="magenta", weight=3]; 1234 -> 1516[label="",style="dashed", color="magenta", weight=3]; 1235 -> 371[label="",style="dashed", color="red", weight=0]; 1235[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1235 -> 1517[label="",style="dashed", color="magenta", weight=3]; 1235 -> 1518[label="",style="dashed", color="magenta", weight=3]; 1236 -> 372[label="",style="dashed", color="red", weight=0]; 1236[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1236 -> 1519[label="",style="dashed", color="magenta", weight=3]; 1236 -> 1520[label="",style="dashed", color="magenta", weight=3]; 1237 -> 373[label="",style="dashed", color="red", weight=0]; 1237[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1237 -> 1521[label="",style="dashed", color="magenta", weight=3]; 1237 -> 1522[label="",style="dashed", color="magenta", weight=3]; 1238 -> 374[label="",style="dashed", color="red", weight=0]; 1238[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1238 -> 1523[label="",style="dashed", color="magenta", weight=3]; 1238 -> 1524[label="",style="dashed", color="magenta", weight=3]; 1239 -> 375[label="",style="dashed", color="red", weight=0]; 1239[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1239 -> 1525[label="",style="dashed", color="magenta", weight=3]; 1239 -> 1526[label="",style="dashed", color="magenta", weight=3]; 1240 -> 376[label="",style="dashed", color="red", weight=0]; 1240[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1240 -> 1527[label="",style="dashed", color="magenta", weight=3]; 1240 -> 1528[label="",style="dashed", color="magenta", weight=3]; 1241 -> 377[label="",style="dashed", color="red", weight=0]; 1241[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1241 -> 1529[label="",style="dashed", color="magenta", weight=3]; 1241 -> 1530[label="",style="dashed", color="magenta", weight=3]; 1242 -> 374[label="",style="dashed", color="red", weight=0]; 1242[label="vwx3000 * vwx4001 == vwx3001 * vwx4000",fontsize=16,color="magenta"];1242 -> 1531[label="",style="dashed", color="magenta", weight=3]; 1242 -> 1532[label="",style="dashed", color="magenta", weight=3]; 1243[label="vwx25 <= vwx26",fontsize=16,color="black",shape="triangle"];1243 -> 1533[label="",style="solid", color="black", weight=3]; 1244[label="vwx25 <= vwx26",fontsize=16,color="black",shape="triangle"];1244 -> 1534[label="",style="solid", color="black", weight=3]; 1245[label="vwx25 <= vwx26",fontsize=16,color="burlywood",shape="triangle"];3331[label="vwx25/LT",fontsize=10,color="white",style="solid",shape="box"];1245 -> 3331[label="",style="solid", color="burlywood", weight=9]; 3331 -> 1535[label="",style="solid", color="burlywood", weight=3]; 3332[label="vwx25/EQ",fontsize=10,color="white",style="solid",shape="box"];1245 -> 3332[label="",style="solid", color="burlywood", weight=9]; 3332 -> 1536[label="",style="solid", color="burlywood", weight=3]; 3333[label="vwx25/GT",fontsize=10,color="white",style="solid",shape="box"];1245 -> 3333[label="",style="solid", color="burlywood", weight=9]; 3333 -> 1537[label="",style="solid", color="burlywood", weight=3]; 1246[label="vwx25 <= vwx26",fontsize=16,color="black",shape="triangle"];1246 -> 1538[label="",style="solid", color="black", weight=3]; 1247[label="vwx25 <= vwx26",fontsize=16,color="burlywood",shape="triangle"];3334[label="vwx25/Left vwx250",fontsize=10,color="white",style="solid",shape="box"];1247 -> 3334[label="",style="solid", color="burlywood", weight=9]; 3334 -> 1539[label="",style="solid", color="burlywood", weight=3]; 3335[label="vwx25/Right vwx250",fontsize=10,color="white",style="solid",shape="box"];1247 -> 3335[label="",style="solid", color="burlywood", weight=9]; 3335 -> 1540[label="",style="solid", color="burlywood", weight=3]; 1248[label="vwx25 <= vwx26",fontsize=16,color="black",shape="triangle"];1248 -> 1541[label="",style="solid", color="black", weight=3]; 1249[label="vwx25 <= vwx26",fontsize=16,color="black",shape="triangle"];1249 -> 1542[label="",style="solid", color="black", weight=3]; 1250[label="vwx25 <= vwx26",fontsize=16,color="burlywood",shape="triangle"];3336[label="vwx25/(vwx250,vwx251,vwx252)",fontsize=10,color="white",style="solid",shape="box"];1250 -> 3336[label="",style="solid", color="burlywood", weight=9]; 3336 -> 1543[label="",style="solid", color="burlywood", weight=3]; 1251[label="vwx25 <= vwx26",fontsize=16,color="black",shape="triangle"];1251 -> 1544[label="",style="solid", color="black", weight=3]; 1252[label="vwx25 <= vwx26",fontsize=16,color="black",shape="triangle"];1252 -> 1545[label="",style="solid", color="black", weight=3]; 1253[label="vwx25 <= vwx26",fontsize=16,color="black",shape="triangle"];1253 -> 1546[label="",style="solid", color="black", weight=3]; 1254[label="vwx25 <= vwx26",fontsize=16,color="burlywood",shape="triangle"];3337[label="vwx25/False",fontsize=10,color="white",style="solid",shape="box"];1254 -> 3337[label="",style="solid", color="burlywood", weight=9]; 3337 -> 1547[label="",style="solid", color="burlywood", weight=3]; 3338[label="vwx25/True",fontsize=10,color="white",style="solid",shape="box"];1254 -> 3338[label="",style="solid", color="burlywood", weight=9]; 3338 -> 1548[label="",style="solid", color="burlywood", weight=3]; 1255[label="vwx25 <= vwx26",fontsize=16,color="burlywood",shape="triangle"];3339[label="vwx25/Nothing",fontsize=10,color="white",style="solid",shape="box"];1255 -> 3339[label="",style="solid", color="burlywood", weight=9]; 3339 -> 1549[label="",style="solid", color="burlywood", weight=3]; 3340[label="vwx25/Just vwx250",fontsize=10,color="white",style="solid",shape="box"];1255 -> 3340[label="",style="solid", color="burlywood", weight=9]; 3340 -> 1550[label="",style="solid", color="burlywood", weight=3]; 1256[label="vwx25 <= vwx26",fontsize=16,color="burlywood",shape="triangle"];3341[label="vwx25/(vwx250,vwx251)",fontsize=10,color="white",style="solid",shape="box"];1256 -> 3341[label="",style="solid", color="burlywood", weight=9]; 3341 -> 1551[label="",style="solid", color="burlywood", weight=3]; 1257[label="compare0 (Left vwx105) (Left vwx106) otherwise",fontsize=16,color="black",shape="box"];1257 -> 1552[label="",style="solid", color="black", weight=3]; 1258[label="LT",fontsize=16,color="green",shape="box"];1259 -> 1243[label="",style="dashed", color="red", weight=0]; 1259[label="vwx32 <= vwx33",fontsize=16,color="magenta"];1259 -> 1553[label="",style="dashed", color="magenta", weight=3]; 1259 -> 1554[label="",style="dashed", color="magenta", weight=3]; 1260 -> 1244[label="",style="dashed", color="red", weight=0]; 1260[label="vwx32 <= vwx33",fontsize=16,color="magenta"];1260 -> 1555[label="",style="dashed", color="magenta", weight=3]; 1260 -> 1556[label="",style="dashed", color="magenta", weight=3]; 1261 -> 1245[label="",style="dashed", color="red", weight=0]; 1261[label="vwx32 <= vwx33",fontsize=16,color="magenta"];1261 -> 1557[label="",style="dashed", color="magenta", weight=3]; 1261 -> 1558[label="",style="dashed", color="magenta", weight=3]; 1262 -> 1246[label="",style="dashed", color="red", weight=0]; 1262[label="vwx32 <= vwx33",fontsize=16,color="magenta"];1262 -> 1559[label="",style="dashed", color="magenta", weight=3]; 1262 -> 1560[label="",style="dashed", color="magenta", weight=3]; 1263 -> 1247[label="",style="dashed", color="red", weight=0]; 1263[label="vwx32 <= vwx33",fontsize=16,color="magenta"];1263 -> 1561[label="",style="dashed", color="magenta", weight=3]; 1263 -> 1562[label="",style="dashed", color="magenta", weight=3]; 1264 -> 1248[label="",style="dashed", color="red", weight=0]; 1264[label="vwx32 <= vwx33",fontsize=16,color="magenta"];1264 -> 1563[label="",style="dashed", color="magenta", weight=3]; 1264 -> 1564[label="",style="dashed", color="magenta", weight=3]; 1265 -> 1249[label="",style="dashed", color="red", weight=0]; 1265[label="vwx32 <= vwx33",fontsize=16,color="magenta"];1265 -> 1565[label="",style="dashed", color="magenta", weight=3]; 1265 -> 1566[label="",style="dashed", color="magenta", weight=3]; 1266 -> 1250[label="",style="dashed", color="red", weight=0]; 1266[label="vwx32 <= vwx33",fontsize=16,color="magenta"];1266 -> 1567[label="",style="dashed", color="magenta", weight=3]; 1266 -> 1568[label="",style="dashed", color="magenta", weight=3]; 1267 -> 1251[label="",style="dashed", color="red", weight=0]; 1267[label="vwx32 <= vwx33",fontsize=16,color="magenta"];1267 -> 1569[label="",style="dashed", color="magenta", weight=3]; 1267 -> 1570[label="",style="dashed", color="magenta", weight=3]; 1268 -> 1252[label="",style="dashed", color="red", weight=0]; 1268[label="vwx32 <= vwx33",fontsize=16,color="magenta"];1268 -> 1571[label="",style="dashed", color="magenta", weight=3]; 1268 -> 1572[label="",style="dashed", color="magenta", weight=3]; 1269 -> 1253[label="",style="dashed", color="red", weight=0]; 1269[label="vwx32 <= vwx33",fontsize=16,color="magenta"];1269 -> 1573[label="",style="dashed", color="magenta", weight=3]; 1269 -> 1574[label="",style="dashed", color="magenta", weight=3]; 1270 -> 1254[label="",style="dashed", color="red", weight=0]; 1270[label="vwx32 <= vwx33",fontsize=16,color="magenta"];1270 -> 1575[label="",style="dashed", color="magenta", weight=3]; 1270 -> 1576[label="",style="dashed", color="magenta", weight=3]; 1271 -> 1255[label="",style="dashed", color="red", weight=0]; 1271[label="vwx32 <= vwx33",fontsize=16,color="magenta"];1271 -> 1577[label="",style="dashed", color="magenta", weight=3]; 1271 -> 1578[label="",style="dashed", color="magenta", weight=3]; 1272 -> 1256[label="",style="dashed", color="red", weight=0]; 1272[label="vwx32 <= vwx33",fontsize=16,color="magenta"];1272 -> 1579[label="",style="dashed", color="magenta", weight=3]; 1272 -> 1580[label="",style="dashed", color="magenta", weight=3]; 1273[label="compare0 (Right vwx112) (Right vwx113) otherwise",fontsize=16,color="black",shape="box"];1273 -> 1581[label="",style="solid", color="black", weight=3]; 1274[label="LT",fontsize=16,color="green",shape="box"];1294 -> 1913[label="",style="dashed", color="red", weight=0]; 1294[label="vwx77 < vwx80 || vwx77 == vwx80 && vwx78 <= vwx81",fontsize=16,color="magenta"];1294 -> 1914[label="",style="dashed", color="magenta", weight=3]; 1294 -> 1915[label="",style="dashed", color="magenta", weight=3]; 1295[label="vwx76 == vwx79",fontsize=16,color="blue",shape="box"];3342[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1295 -> 3342[label="",style="solid", color="blue", weight=9]; 3342 -> 1584[label="",style="solid", color="blue", weight=3]; 3343[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1295 -> 3343[label="",style="solid", color="blue", weight=9]; 3343 -> 1585[label="",style="solid", color="blue", weight=3]; 3344[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1295 -> 3344[label="",style="solid", color="blue", weight=9]; 3344 -> 1586[label="",style="solid", color="blue", weight=3]; 3345[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1295 -> 3345[label="",style="solid", color="blue", weight=9]; 3345 -> 1587[label="",style="solid", color="blue", weight=3]; 3346[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1295 -> 3346[label="",style="solid", color="blue", weight=9]; 3346 -> 1588[label="",style="solid", color="blue", weight=3]; 3347[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1295 -> 3347[label="",style="solid", color="blue", weight=9]; 3347 -> 1589[label="",style="solid", color="blue", weight=3]; 3348[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1295 -> 3348[label="",style="solid", color="blue", weight=9]; 3348 -> 1590[label="",style="solid", color="blue", weight=3]; 3349[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1295 -> 3349[label="",style="solid", color="blue", weight=9]; 3349 -> 1591[label="",style="solid", color="blue", weight=3]; 3350[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1295 -> 3350[label="",style="solid", color="blue", weight=9]; 3350 -> 1592[label="",style="solid", color="blue", weight=3]; 3351[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1295 -> 3351[label="",style="solid", color="blue", weight=9]; 3351 -> 1593[label="",style="solid", color="blue", weight=3]; 3352[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1295 -> 3352[label="",style="solid", color="blue", weight=9]; 3352 -> 1594[label="",style="solid", color="blue", weight=3]; 3353[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1295 -> 3353[label="",style="solid", color="blue", weight=9]; 3353 -> 1595[label="",style="solid", color="blue", weight=3]; 3354[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1295 -> 3354[label="",style="solid", color="blue", weight=9]; 3354 -> 1596[label="",style="solid", color="blue", weight=3]; 3355[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1295 -> 3355[label="",style="solid", color="blue", weight=9]; 3355 -> 1597[label="",style="solid", color="blue", weight=3]; 1296[label="vwx76 < vwx79",fontsize=16,color="black",shape="triangle"];1296 -> 1598[label="",style="solid", color="black", weight=3]; 1297[label="vwx76 < vwx79",fontsize=16,color="black",shape="triangle"];1297 -> 1599[label="",style="solid", color="black", weight=3]; 1298[label="vwx76 < vwx79",fontsize=16,color="black",shape="triangle"];1298 -> 1600[label="",style="solid", color="black", weight=3]; 1299[label="vwx76 < vwx79",fontsize=16,color="black",shape="triangle"];1299 -> 1601[label="",style="solid", color="black", weight=3]; 1300[label="vwx76 < vwx79",fontsize=16,color="black",shape="triangle"];1300 -> 1602[label="",style="solid", color="black", weight=3]; 1301[label="vwx76 < vwx79",fontsize=16,color="black",shape="triangle"];1301 -> 1603[label="",style="solid", color="black", weight=3]; 1302[label="vwx76 < vwx79",fontsize=16,color="black",shape="triangle"];1302 -> 1604[label="",style="solid", color="black", weight=3]; 1303[label="vwx76 < vwx79",fontsize=16,color="black",shape="triangle"];1303 -> 1605[label="",style="solid", color="black", weight=3]; 1304[label="vwx76 < vwx79",fontsize=16,color="black",shape="triangle"];1304 -> 1606[label="",style="solid", color="black", weight=3]; 1305[label="vwx76 < vwx79",fontsize=16,color="black",shape="triangle"];1305 -> 1607[label="",style="solid", color="black", weight=3]; 1306[label="vwx76 < vwx79",fontsize=16,color="black",shape="triangle"];1306 -> 1608[label="",style="solid", color="black", weight=3]; 1307[label="vwx76 < vwx79",fontsize=16,color="black",shape="triangle"];1307 -> 1609[label="",style="solid", color="black", weight=3]; 1308[label="vwx76 < vwx79",fontsize=16,color="black",shape="triangle"];1308 -> 1610[label="",style="solid", color="black", weight=3]; 1309[label="vwx76 < vwx79",fontsize=16,color="black",shape="triangle"];1309 -> 1611[label="",style="solid", color="black", weight=3]; 1310[label="compare1 (vwx141,vwx142,vwx143) (vwx144,vwx145,vwx146) (False || vwx148)",fontsize=16,color="black",shape="box"];1310 -> 1612[label="",style="solid", color="black", weight=3]; 1311[label="compare1 (vwx141,vwx142,vwx143) (vwx144,vwx145,vwx146) (True || vwx148)",fontsize=16,color="black",shape="box"];1311 -> 1613[label="",style="solid", color="black", weight=3]; 1312 -> 1243[label="",style="dashed", color="red", weight=0]; 1312[label="vwx54 <= vwx55",fontsize=16,color="magenta"];1312 -> 1614[label="",style="dashed", color="magenta", weight=3]; 1312 -> 1615[label="",style="dashed", color="magenta", weight=3]; 1313 -> 1244[label="",style="dashed", color="red", weight=0]; 1313[label="vwx54 <= vwx55",fontsize=16,color="magenta"];1313 -> 1616[label="",style="dashed", color="magenta", weight=3]; 1313 -> 1617[label="",style="dashed", color="magenta", weight=3]; 1314 -> 1245[label="",style="dashed", color="red", weight=0]; 1314[label="vwx54 <= vwx55",fontsize=16,color="magenta"];1314 -> 1618[label="",style="dashed", color="magenta", weight=3]; 1314 -> 1619[label="",style="dashed", color="magenta", weight=3]; 1315 -> 1246[label="",style="dashed", color="red", weight=0]; 1315[label="vwx54 <= vwx55",fontsize=16,color="magenta"];1315 -> 1620[label="",style="dashed", color="magenta", weight=3]; 1315 -> 1621[label="",style="dashed", color="magenta", weight=3]; 1316 -> 1247[label="",style="dashed", color="red", weight=0]; 1316[label="vwx54 <= vwx55",fontsize=16,color="magenta"];1316 -> 1622[label="",style="dashed", color="magenta", weight=3]; 1316 -> 1623[label="",style="dashed", color="magenta", weight=3]; 1317 -> 1248[label="",style="dashed", color="red", weight=0]; 1317[label="vwx54 <= vwx55",fontsize=16,color="magenta"];1317 -> 1624[label="",style="dashed", color="magenta", weight=3]; 1317 -> 1625[label="",style="dashed", color="magenta", weight=3]; 1318 -> 1249[label="",style="dashed", color="red", weight=0]; 1318[label="vwx54 <= vwx55",fontsize=16,color="magenta"];1318 -> 1626[label="",style="dashed", color="magenta", weight=3]; 1318 -> 1627[label="",style="dashed", color="magenta", weight=3]; 1319 -> 1250[label="",style="dashed", color="red", weight=0]; 1319[label="vwx54 <= vwx55",fontsize=16,color="magenta"];1319 -> 1628[label="",style="dashed", color="magenta", weight=3]; 1319 -> 1629[label="",style="dashed", color="magenta", weight=3]; 1320 -> 1251[label="",style="dashed", color="red", weight=0]; 1320[label="vwx54 <= vwx55",fontsize=16,color="magenta"];1320 -> 1630[label="",style="dashed", color="magenta", weight=3]; 1320 -> 1631[label="",style="dashed", color="magenta", weight=3]; 1321 -> 1252[label="",style="dashed", color="red", weight=0]; 1321[label="vwx54 <= vwx55",fontsize=16,color="magenta"];1321 -> 1632[label="",style="dashed", color="magenta", weight=3]; 1321 -> 1633[label="",style="dashed", color="magenta", weight=3]; 1322 -> 1253[label="",style="dashed", color="red", weight=0]; 1322[label="vwx54 <= vwx55",fontsize=16,color="magenta"];1322 -> 1634[label="",style="dashed", color="magenta", weight=3]; 1322 -> 1635[label="",style="dashed", color="magenta", weight=3]; 1323 -> 1254[label="",style="dashed", color="red", weight=0]; 1323[label="vwx54 <= vwx55",fontsize=16,color="magenta"];1323 -> 1636[label="",style="dashed", color="magenta", weight=3]; 1323 -> 1637[label="",style="dashed", color="magenta", weight=3]; 1324 -> 1255[label="",style="dashed", color="red", weight=0]; 1324[label="vwx54 <= vwx55",fontsize=16,color="magenta"];1324 -> 1638[label="",style="dashed", color="magenta", weight=3]; 1324 -> 1639[label="",style="dashed", color="magenta", weight=3]; 1325 -> 1256[label="",style="dashed", color="red", weight=0]; 1325[label="vwx54 <= vwx55",fontsize=16,color="magenta"];1325 -> 1640[label="",style="dashed", color="magenta", weight=3]; 1325 -> 1641[label="",style="dashed", color="magenta", weight=3]; 1326[label="compare0 (Just vwx126) (Just vwx127) otherwise",fontsize=16,color="black",shape="box"];1326 -> 1642[label="",style="solid", color="black", weight=3]; 1327[label="LT",fontsize=16,color="green",shape="box"];1343[label="vwx90 <= vwx92",fontsize=16,color="blue",shape="box"];3356[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1343 -> 3356[label="",style="solid", color="blue", weight=9]; 3356 -> 1643[label="",style="solid", color="blue", weight=3]; 3357[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1343 -> 3357[label="",style="solid", color="blue", weight=9]; 3357 -> 1644[label="",style="solid", color="blue", weight=3]; 3358[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1343 -> 3358[label="",style="solid", color="blue", weight=9]; 3358 -> 1645[label="",style="solid", color="blue", weight=3]; 3359[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1343 -> 3359[label="",style="solid", color="blue", weight=9]; 3359 -> 1646[label="",style="solid", color="blue", weight=3]; 3360[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1343 -> 3360[label="",style="solid", color="blue", weight=9]; 3360 -> 1647[label="",style="solid", color="blue", weight=3]; 3361[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1343 -> 3361[label="",style="solid", color="blue", weight=9]; 3361 -> 1648[label="",style="solid", color="blue", weight=3]; 3362[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1343 -> 3362[label="",style="solid", color="blue", weight=9]; 3362 -> 1649[label="",style="solid", color="blue", weight=3]; 3363[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1343 -> 3363[label="",style="solid", color="blue", weight=9]; 3363 -> 1650[label="",style="solid", color="blue", weight=3]; 3364[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1343 -> 3364[label="",style="solid", color="blue", weight=9]; 3364 -> 1651[label="",style="solid", color="blue", weight=3]; 3365[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1343 -> 3365[label="",style="solid", color="blue", weight=9]; 3365 -> 1652[label="",style="solid", color="blue", weight=3]; 3366[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1343 -> 3366[label="",style="solid", color="blue", weight=9]; 3366 -> 1653[label="",style="solid", color="blue", weight=3]; 3367[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1343 -> 3367[label="",style="solid", color="blue", weight=9]; 3367 -> 1654[label="",style="solid", color="blue", weight=3]; 3368[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1343 -> 3368[label="",style="solid", color="blue", weight=9]; 3368 -> 1655[label="",style="solid", color="blue", weight=3]; 3369[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1343 -> 3369[label="",style="solid", color="blue", weight=9]; 3369 -> 1656[label="",style="solid", color="blue", weight=3]; 1344[label="vwx89 == vwx91",fontsize=16,color="blue",shape="box"];3370[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1344 -> 3370[label="",style="solid", color="blue", weight=9]; 3370 -> 1657[label="",style="solid", color="blue", weight=3]; 3371[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1344 -> 3371[label="",style="solid", color="blue", weight=9]; 3371 -> 1658[label="",style="solid", color="blue", weight=3]; 3372[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1344 -> 3372[label="",style="solid", color="blue", weight=9]; 3372 -> 1659[label="",style="solid", color="blue", weight=3]; 3373[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1344 -> 3373[label="",style="solid", color="blue", weight=9]; 3373 -> 1660[label="",style="solid", color="blue", weight=3]; 3374[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1344 -> 3374[label="",style="solid", color="blue", weight=9]; 3374 -> 1661[label="",style="solid", color="blue", weight=3]; 3375[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1344 -> 3375[label="",style="solid", color="blue", weight=9]; 3375 -> 1662[label="",style="solid", color="blue", weight=3]; 3376[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1344 -> 3376[label="",style="solid", color="blue", weight=9]; 3376 -> 1663[label="",style="solid", color="blue", weight=3]; 3377[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1344 -> 3377[label="",style="solid", color="blue", weight=9]; 3377 -> 1664[label="",style="solid", color="blue", weight=3]; 3378[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1344 -> 3378[label="",style="solid", color="blue", weight=9]; 3378 -> 1665[label="",style="solid", color="blue", weight=3]; 3379[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1344 -> 3379[label="",style="solid", color="blue", weight=9]; 3379 -> 1666[label="",style="solid", color="blue", weight=3]; 3380[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1344 -> 3380[label="",style="solid", color="blue", weight=9]; 3380 -> 1667[label="",style="solid", color="blue", weight=3]; 3381[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1344 -> 3381[label="",style="solid", color="blue", weight=9]; 3381 -> 1668[label="",style="solid", color="blue", weight=3]; 3382[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1344 -> 3382[label="",style="solid", color="blue", weight=9]; 3382 -> 1669[label="",style="solid", color="blue", weight=3]; 3383[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1344 -> 3383[label="",style="solid", color="blue", weight=9]; 3383 -> 1670[label="",style="solid", color="blue", weight=3]; 1345 -> 1296[label="",style="dashed", color="red", weight=0]; 1345[label="vwx89 < vwx91",fontsize=16,color="magenta"];1345 -> 1671[label="",style="dashed", color="magenta", weight=3]; 1345 -> 1672[label="",style="dashed", color="magenta", weight=3]; 1346 -> 1297[label="",style="dashed", color="red", weight=0]; 1346[label="vwx89 < vwx91",fontsize=16,color="magenta"];1346 -> 1673[label="",style="dashed", color="magenta", weight=3]; 1346 -> 1674[label="",style="dashed", color="magenta", weight=3]; 1347 -> 1298[label="",style="dashed", color="red", weight=0]; 1347[label="vwx89 < vwx91",fontsize=16,color="magenta"];1347 -> 1675[label="",style="dashed", color="magenta", weight=3]; 1347 -> 1676[label="",style="dashed", color="magenta", weight=3]; 1348 -> 1299[label="",style="dashed", color="red", weight=0]; 1348[label="vwx89 < vwx91",fontsize=16,color="magenta"];1348 -> 1677[label="",style="dashed", color="magenta", weight=3]; 1348 -> 1678[label="",style="dashed", color="magenta", weight=3]; 1349 -> 1300[label="",style="dashed", color="red", weight=0]; 1349[label="vwx89 < vwx91",fontsize=16,color="magenta"];1349 -> 1679[label="",style="dashed", color="magenta", weight=3]; 1349 -> 1680[label="",style="dashed", color="magenta", weight=3]; 1350 -> 1301[label="",style="dashed", color="red", weight=0]; 1350[label="vwx89 < vwx91",fontsize=16,color="magenta"];1350 -> 1681[label="",style="dashed", color="magenta", weight=3]; 1350 -> 1682[label="",style="dashed", color="magenta", weight=3]; 1351 -> 1302[label="",style="dashed", color="red", weight=0]; 1351[label="vwx89 < vwx91",fontsize=16,color="magenta"];1351 -> 1683[label="",style="dashed", color="magenta", weight=3]; 1351 -> 1684[label="",style="dashed", color="magenta", weight=3]; 1352 -> 1303[label="",style="dashed", color="red", weight=0]; 1352[label="vwx89 < vwx91",fontsize=16,color="magenta"];1352 -> 1685[label="",style="dashed", color="magenta", weight=3]; 1352 -> 1686[label="",style="dashed", color="magenta", weight=3]; 1353 -> 1304[label="",style="dashed", color="red", weight=0]; 1353[label="vwx89 < vwx91",fontsize=16,color="magenta"];1353 -> 1687[label="",style="dashed", color="magenta", weight=3]; 1353 -> 1688[label="",style="dashed", color="magenta", weight=3]; 1354 -> 1305[label="",style="dashed", color="red", weight=0]; 1354[label="vwx89 < vwx91",fontsize=16,color="magenta"];1354 -> 1689[label="",style="dashed", color="magenta", weight=3]; 1354 -> 1690[label="",style="dashed", color="magenta", weight=3]; 1355 -> 1306[label="",style="dashed", color="red", weight=0]; 1355[label="vwx89 < vwx91",fontsize=16,color="magenta"];1355 -> 1691[label="",style="dashed", color="magenta", weight=3]; 1355 -> 1692[label="",style="dashed", color="magenta", weight=3]; 1356 -> 1307[label="",style="dashed", color="red", weight=0]; 1356[label="vwx89 < vwx91",fontsize=16,color="magenta"];1356 -> 1693[label="",style="dashed", color="magenta", weight=3]; 1356 -> 1694[label="",style="dashed", color="magenta", weight=3]; 1357 -> 1308[label="",style="dashed", color="red", weight=0]; 1357[label="vwx89 < vwx91",fontsize=16,color="magenta"];1357 -> 1695[label="",style="dashed", color="magenta", weight=3]; 1357 -> 1696[label="",style="dashed", color="magenta", weight=3]; 1358 -> 1309[label="",style="dashed", color="red", weight=0]; 1358[label="vwx89 < vwx91",fontsize=16,color="magenta"];1358 -> 1697[label="",style="dashed", color="magenta", weight=3]; 1358 -> 1698[label="",style="dashed", color="magenta", weight=3]; 1359[label="compare1 (vwx156,vwx157) (vwx158,vwx159) (False || vwx161)",fontsize=16,color="black",shape="box"];1359 -> 1699[label="",style="solid", color="black", weight=3]; 1360[label="compare1 (vwx156,vwx157) (vwx158,vwx159) (True || vwx161)",fontsize=16,color="black",shape="box"];1360 -> 1700[label="",style="solid", color="black", weight=3]; 1361[label="primMulNat (Succ vwx40000) (Succ vwx30100)",fontsize=16,color="black",shape="box"];1361 -> 1701[label="",style="solid", color="black", weight=3]; 1362[label="primMulNat (Succ vwx40000) Zero",fontsize=16,color="black",shape="box"];1362 -> 1702[label="",style="solid", color="black", weight=3]; 1363[label="primMulNat Zero (Succ vwx30100)",fontsize=16,color="black",shape="box"];1363 -> 1703[label="",style="solid", color="black", weight=3]; 1364[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];1364 -> 1704[label="",style="solid", color="black", weight=3]; 1365 -> 224[label="",style="dashed", color="red", weight=0]; 1365[label="vwx3000 * vwx4001",fontsize=16,color="magenta"];1365 -> 1705[label="",style="dashed", color="magenta", weight=3]; 1365 -> 1706[label="",style="dashed", color="magenta", weight=3]; 1366 -> 224[label="",style="dashed", color="red", weight=0]; 1366[label="vwx3001 * vwx4000",fontsize=16,color="magenta"];1366 -> 1707[label="",style="dashed", color="magenta", weight=3]; 1366 -> 1708[label="",style="dashed", color="magenta", weight=3]; 1367[label="vwx3000",fontsize=16,color="green",shape="box"];1368[label="vwx4000",fontsize=16,color="green",shape="box"];1369[label="vwx3000",fontsize=16,color="green",shape="box"];1370[label="vwx4000",fontsize=16,color="green",shape="box"];1371[label="vwx3000",fontsize=16,color="green",shape="box"];1372[label="vwx4000",fontsize=16,color="green",shape="box"];1373[label="vwx3000",fontsize=16,color="green",shape="box"];1374[label="vwx4000",fontsize=16,color="green",shape="box"];1375[label="vwx3000",fontsize=16,color="green",shape="box"];1376[label="vwx4000",fontsize=16,color="green",shape="box"];1377[label="vwx3000",fontsize=16,color="green",shape="box"];1378[label="vwx4000",fontsize=16,color="green",shape="box"];1379[label="vwx3000",fontsize=16,color="green",shape="box"];1380[label="vwx4000",fontsize=16,color="green",shape="box"];1381[label="vwx3000",fontsize=16,color="green",shape="box"];1382[label="vwx4000",fontsize=16,color="green",shape="box"];1383[label="vwx3000",fontsize=16,color="green",shape="box"];1384[label="vwx4000",fontsize=16,color="green",shape="box"];1385[label="vwx3000",fontsize=16,color="green",shape="box"];1386[label="vwx4000",fontsize=16,color="green",shape="box"];1387[label="vwx3000",fontsize=16,color="green",shape="box"];1388[label="vwx4000",fontsize=16,color="green",shape="box"];1389[label="vwx3000",fontsize=16,color="green",shape="box"];1390[label="vwx4000",fontsize=16,color="green",shape="box"];1391[label="vwx3000",fontsize=16,color="green",shape="box"];1392[label="vwx4000",fontsize=16,color="green",shape="box"];1393[label="vwx3000",fontsize=16,color="green",shape="box"];1394[label="vwx4000",fontsize=16,color="green",shape="box"];1395[label="primEqNat (Succ vwx30000) vwx4000",fontsize=16,color="burlywood",shape="box"];3384[label="vwx4000/Succ vwx40000",fontsize=10,color="white",style="solid",shape="box"];1395 -> 3384[label="",style="solid", color="burlywood", weight=9]; 3384 -> 1709[label="",style="solid", color="burlywood", weight=3]; 3385[label="vwx4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1395 -> 3385[label="",style="solid", color="burlywood", weight=9]; 3385 -> 1710[label="",style="solid", color="burlywood", weight=3]; 1396[label="primEqNat Zero vwx4000",fontsize=16,color="burlywood",shape="box"];3386[label="vwx4000/Succ vwx40000",fontsize=10,color="white",style="solid",shape="box"];1396 -> 3386[label="",style="solid", color="burlywood", weight=9]; 3386 -> 1711[label="",style="solid", color="burlywood", weight=3]; 3387[label="vwx4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1396 -> 3387[label="",style="solid", color="burlywood", weight=9]; 3387 -> 1712[label="",style="solid", color="burlywood", weight=3]; 1397 -> 373[label="",style="dashed", color="red", weight=0]; 1397[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];1397 -> 1713[label="",style="dashed", color="magenta", weight=3]; 1397 -> 1714[label="",style="dashed", color="magenta", weight=3]; 1398 -> 374[label="",style="dashed", color="red", weight=0]; 1398[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];1398 -> 1715[label="",style="dashed", color="magenta", weight=3]; 1398 -> 1716[label="",style="dashed", color="magenta", weight=3]; 1399 -> 373[label="",style="dashed", color="red", weight=0]; 1399[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1399 -> 1717[label="",style="dashed", color="magenta", weight=3]; 1399 -> 1718[label="",style="dashed", color="magenta", weight=3]; 1400 -> 374[label="",style="dashed", color="red", weight=0]; 1400[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1400 -> 1719[label="",style="dashed", color="magenta", weight=3]; 1400 -> 1720[label="",style="dashed", color="magenta", weight=3]; 1401[label="vwx3002 == vwx4002",fontsize=16,color="blue",shape="box"];3388[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1401 -> 3388[label="",style="solid", color="blue", weight=9]; 3388 -> 1721[label="",style="solid", color="blue", weight=3]; 3389[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1401 -> 3389[label="",style="solid", color="blue", weight=9]; 3389 -> 1722[label="",style="solid", color="blue", weight=3]; 3390[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1401 -> 3390[label="",style="solid", color="blue", weight=9]; 3390 -> 1723[label="",style="solid", color="blue", weight=3]; 3391[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1401 -> 3391[label="",style="solid", color="blue", weight=9]; 3391 -> 1724[label="",style="solid", color="blue", weight=3]; 3392[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1401 -> 3392[label="",style="solid", color="blue", weight=9]; 3392 -> 1725[label="",style="solid", color="blue", weight=3]; 3393[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1401 -> 3393[label="",style="solid", color="blue", weight=9]; 3393 -> 1726[label="",style="solid", color="blue", weight=3]; 3394[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1401 -> 3394[label="",style="solid", color="blue", weight=9]; 3394 -> 1727[label="",style="solid", color="blue", weight=3]; 3395[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1401 -> 3395[label="",style="solid", color="blue", weight=9]; 3395 -> 1728[label="",style="solid", color="blue", weight=3]; 3396[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1401 -> 3396[label="",style="solid", color="blue", weight=9]; 3396 -> 1729[label="",style="solid", color="blue", weight=3]; 3397[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1401 -> 3397[label="",style="solid", color="blue", weight=9]; 3397 -> 1730[label="",style="solid", color="blue", weight=3]; 3398[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1401 -> 3398[label="",style="solid", color="blue", weight=9]; 3398 -> 1731[label="",style="solid", color="blue", weight=3]; 3399[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1401 -> 3399[label="",style="solid", color="blue", weight=9]; 3399 -> 1732[label="",style="solid", color="blue", weight=3]; 3400[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1401 -> 3400[label="",style="solid", color="blue", weight=9]; 3400 -> 1733[label="",style="solid", color="blue", weight=3]; 3401[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1401 -> 3401[label="",style="solid", color="blue", weight=9]; 3401 -> 1734[label="",style="solid", color="blue", weight=3]; 1402[label="vwx3001 == vwx4001",fontsize=16,color="blue",shape="box"];3402[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1402 -> 3402[label="",style="solid", color="blue", weight=9]; 3402 -> 1735[label="",style="solid", color="blue", weight=3]; 3403[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1402 -> 3403[label="",style="solid", color="blue", weight=9]; 3403 -> 1736[label="",style="solid", color="blue", weight=3]; 3404[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1402 -> 3404[label="",style="solid", color="blue", weight=9]; 3404 -> 1737[label="",style="solid", color="blue", weight=3]; 3405[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1402 -> 3405[label="",style="solid", color="blue", weight=9]; 3405 -> 1738[label="",style="solid", color="blue", weight=3]; 3406[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1402 -> 3406[label="",style="solid", color="blue", weight=9]; 3406 -> 1739[label="",style="solid", color="blue", weight=3]; 3407[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1402 -> 3407[label="",style="solid", color="blue", weight=9]; 3407 -> 1740[label="",style="solid", color="blue", weight=3]; 3408[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1402 -> 3408[label="",style="solid", color="blue", weight=9]; 3408 -> 1741[label="",style="solid", color="blue", weight=3]; 3409[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1402 -> 3409[label="",style="solid", color="blue", weight=9]; 3409 -> 1742[label="",style="solid", color="blue", weight=3]; 3410[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1402 -> 3410[label="",style="solid", color="blue", weight=9]; 3410 -> 1743[label="",style="solid", color="blue", weight=3]; 3411[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1402 -> 3411[label="",style="solid", color="blue", weight=9]; 3411 -> 1744[label="",style="solid", color="blue", weight=3]; 3412[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1402 -> 3412[label="",style="solid", color="blue", weight=9]; 3412 -> 1745[label="",style="solid", color="blue", weight=3]; 3413[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1402 -> 3413[label="",style="solid", color="blue", weight=9]; 3413 -> 1746[label="",style="solid", color="blue", weight=3]; 3414[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1402 -> 3414[label="",style="solid", color="blue", weight=9]; 3414 -> 1747[label="",style="solid", color="blue", weight=3]; 3415[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1402 -> 3415[label="",style="solid", color="blue", weight=9]; 3415 -> 1748[label="",style="solid", color="blue", weight=3]; 1403 -> 364[label="",style="dashed", color="red", weight=0]; 1403[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1403 -> 1749[label="",style="dashed", color="magenta", weight=3]; 1403 -> 1750[label="",style="dashed", color="magenta", weight=3]; 1404 -> 365[label="",style="dashed", color="red", weight=0]; 1404[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1404 -> 1751[label="",style="dashed", color="magenta", weight=3]; 1404 -> 1752[label="",style="dashed", color="magenta", weight=3]; 1405 -> 366[label="",style="dashed", color="red", weight=0]; 1405[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1405 -> 1753[label="",style="dashed", color="magenta", weight=3]; 1405 -> 1754[label="",style="dashed", color="magenta", weight=3]; 1406 -> 367[label="",style="dashed", color="red", weight=0]; 1406[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1406 -> 1755[label="",style="dashed", color="magenta", weight=3]; 1406 -> 1756[label="",style="dashed", color="magenta", weight=3]; 1407 -> 368[label="",style="dashed", color="red", weight=0]; 1407[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1407 -> 1757[label="",style="dashed", color="magenta", weight=3]; 1407 -> 1758[label="",style="dashed", color="magenta", weight=3]; 1408 -> 369[label="",style="dashed", color="red", weight=0]; 1408[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1408 -> 1759[label="",style="dashed", color="magenta", weight=3]; 1408 -> 1760[label="",style="dashed", color="magenta", weight=3]; 1409 -> 370[label="",style="dashed", color="red", weight=0]; 1409[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1409 -> 1761[label="",style="dashed", color="magenta", weight=3]; 1409 -> 1762[label="",style="dashed", color="magenta", weight=3]; 1410 -> 371[label="",style="dashed", color="red", weight=0]; 1410[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1410 -> 1763[label="",style="dashed", color="magenta", weight=3]; 1410 -> 1764[label="",style="dashed", color="magenta", weight=3]; 1411 -> 372[label="",style="dashed", color="red", weight=0]; 1411[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1411 -> 1765[label="",style="dashed", color="magenta", weight=3]; 1411 -> 1766[label="",style="dashed", color="magenta", weight=3]; 1412 -> 373[label="",style="dashed", color="red", weight=0]; 1412[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1412 -> 1767[label="",style="dashed", color="magenta", weight=3]; 1412 -> 1768[label="",style="dashed", color="magenta", weight=3]; 1413 -> 374[label="",style="dashed", color="red", weight=0]; 1413[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1413 -> 1769[label="",style="dashed", color="magenta", weight=3]; 1413 -> 1770[label="",style="dashed", color="magenta", weight=3]; 1414 -> 375[label="",style="dashed", color="red", weight=0]; 1414[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1414 -> 1771[label="",style="dashed", color="magenta", weight=3]; 1414 -> 1772[label="",style="dashed", color="magenta", weight=3]; 1415 -> 376[label="",style="dashed", color="red", weight=0]; 1415[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1415 -> 1773[label="",style="dashed", color="magenta", weight=3]; 1415 -> 1774[label="",style="dashed", color="magenta", weight=3]; 1416 -> 377[label="",style="dashed", color="red", weight=0]; 1416[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1416 -> 1775[label="",style="dashed", color="magenta", weight=3]; 1416 -> 1776[label="",style="dashed", color="magenta", weight=3]; 1417 -> 364[label="",style="dashed", color="red", weight=0]; 1417[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];1417 -> 1777[label="",style="dashed", color="magenta", weight=3]; 1417 -> 1778[label="",style="dashed", color="magenta", weight=3]; 1418 -> 365[label="",style="dashed", color="red", weight=0]; 1418[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];1418 -> 1779[label="",style="dashed", color="magenta", weight=3]; 1418 -> 1780[label="",style="dashed", color="magenta", weight=3]; 1419 -> 366[label="",style="dashed", color="red", weight=0]; 1419[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];1419 -> 1781[label="",style="dashed", color="magenta", weight=3]; 1419 -> 1782[label="",style="dashed", color="magenta", weight=3]; 1420 -> 367[label="",style="dashed", color="red", weight=0]; 1420[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];1420 -> 1783[label="",style="dashed", color="magenta", weight=3]; 1420 -> 1784[label="",style="dashed", color="magenta", weight=3]; 1421 -> 368[label="",style="dashed", color="red", weight=0]; 1421[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];1421 -> 1785[label="",style="dashed", color="magenta", weight=3]; 1421 -> 1786[label="",style="dashed", color="magenta", weight=3]; 1422 -> 369[label="",style="dashed", color="red", weight=0]; 1422[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];1422 -> 1787[label="",style="dashed", color="magenta", weight=3]; 1422 -> 1788[label="",style="dashed", color="magenta", weight=3]; 1423 -> 370[label="",style="dashed", color="red", weight=0]; 1423[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];1423 -> 1789[label="",style="dashed", color="magenta", weight=3]; 1423 -> 1790[label="",style="dashed", color="magenta", weight=3]; 1424 -> 371[label="",style="dashed", color="red", weight=0]; 1424[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];1424 -> 1791[label="",style="dashed", color="magenta", weight=3]; 1424 -> 1792[label="",style="dashed", color="magenta", weight=3]; 1425 -> 372[label="",style="dashed", color="red", weight=0]; 1425[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];1425 -> 1793[label="",style="dashed", color="magenta", weight=3]; 1425 -> 1794[label="",style="dashed", color="magenta", weight=3]; 1426 -> 373[label="",style="dashed", color="red", weight=0]; 1426[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];1426 -> 1795[label="",style="dashed", color="magenta", weight=3]; 1426 -> 1796[label="",style="dashed", color="magenta", weight=3]; 1427 -> 374[label="",style="dashed", color="red", weight=0]; 1427[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];1427 -> 1797[label="",style="dashed", color="magenta", weight=3]; 1427 -> 1798[label="",style="dashed", color="magenta", weight=3]; 1428 -> 375[label="",style="dashed", color="red", weight=0]; 1428[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];1428 -> 1799[label="",style="dashed", color="magenta", weight=3]; 1428 -> 1800[label="",style="dashed", color="magenta", weight=3]; 1429 -> 376[label="",style="dashed", color="red", weight=0]; 1429[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];1429 -> 1801[label="",style="dashed", color="magenta", weight=3]; 1429 -> 1802[label="",style="dashed", color="magenta", weight=3]; 1430 -> 377[label="",style="dashed", color="red", weight=0]; 1430[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];1430 -> 1803[label="",style="dashed", color="magenta", weight=3]; 1430 -> 1804[label="",style="dashed", color="magenta", weight=3]; 1431 -> 364[label="",style="dashed", color="red", weight=0]; 1431[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1431 -> 1805[label="",style="dashed", color="magenta", weight=3]; 1431 -> 1806[label="",style="dashed", color="magenta", weight=3]; 1432 -> 365[label="",style="dashed", color="red", weight=0]; 1432[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1432 -> 1807[label="",style="dashed", color="magenta", weight=3]; 1432 -> 1808[label="",style="dashed", color="magenta", weight=3]; 1433 -> 366[label="",style="dashed", color="red", weight=0]; 1433[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1433 -> 1809[label="",style="dashed", color="magenta", weight=3]; 1433 -> 1810[label="",style="dashed", color="magenta", weight=3]; 1434 -> 367[label="",style="dashed", color="red", weight=0]; 1434[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1434 -> 1811[label="",style="dashed", color="magenta", weight=3]; 1434 -> 1812[label="",style="dashed", color="magenta", weight=3]; 1435 -> 368[label="",style="dashed", color="red", weight=0]; 1435[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1435 -> 1813[label="",style="dashed", color="magenta", weight=3]; 1435 -> 1814[label="",style="dashed", color="magenta", weight=3]; 1436 -> 369[label="",style="dashed", color="red", weight=0]; 1436[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1436 -> 1815[label="",style="dashed", color="magenta", weight=3]; 1436 -> 1816[label="",style="dashed", color="magenta", weight=3]; 1437 -> 370[label="",style="dashed", color="red", weight=0]; 1437[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1437 -> 1817[label="",style="dashed", color="magenta", weight=3]; 1437 -> 1818[label="",style="dashed", color="magenta", weight=3]; 1438 -> 371[label="",style="dashed", color="red", weight=0]; 1438[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1438 -> 1819[label="",style="dashed", color="magenta", weight=3]; 1438 -> 1820[label="",style="dashed", color="magenta", weight=3]; 1439 -> 372[label="",style="dashed", color="red", weight=0]; 1439[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1439 -> 1821[label="",style="dashed", color="magenta", weight=3]; 1439 -> 1822[label="",style="dashed", color="magenta", weight=3]; 1440 -> 373[label="",style="dashed", color="red", weight=0]; 1440[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1440 -> 1823[label="",style="dashed", color="magenta", weight=3]; 1440 -> 1824[label="",style="dashed", color="magenta", weight=3]; 1441 -> 374[label="",style="dashed", color="red", weight=0]; 1441[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1441 -> 1825[label="",style="dashed", color="magenta", weight=3]; 1441 -> 1826[label="",style="dashed", color="magenta", weight=3]; 1442 -> 375[label="",style="dashed", color="red", weight=0]; 1442[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1442 -> 1827[label="",style="dashed", color="magenta", weight=3]; 1442 -> 1828[label="",style="dashed", color="magenta", weight=3]; 1443 -> 376[label="",style="dashed", color="red", weight=0]; 1443[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1443 -> 1829[label="",style="dashed", color="magenta", weight=3]; 1443 -> 1830[label="",style="dashed", color="magenta", weight=3]; 1444 -> 377[label="",style="dashed", color="red", weight=0]; 1444[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1444 -> 1831[label="",style="dashed", color="magenta", weight=3]; 1444 -> 1832[label="",style="dashed", color="magenta", weight=3]; 1445[label="vwx3001",fontsize=16,color="green",shape="box"];1446[label="vwx4001",fontsize=16,color="green",shape="box"];1447 -> 364[label="",style="dashed", color="red", weight=0]; 1447[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1447 -> 1833[label="",style="dashed", color="magenta", weight=3]; 1447 -> 1834[label="",style="dashed", color="magenta", weight=3]; 1448 -> 365[label="",style="dashed", color="red", weight=0]; 1448[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1448 -> 1835[label="",style="dashed", color="magenta", weight=3]; 1448 -> 1836[label="",style="dashed", color="magenta", weight=3]; 1449 -> 366[label="",style="dashed", color="red", weight=0]; 1449[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1449 -> 1837[label="",style="dashed", color="magenta", weight=3]; 1449 -> 1838[label="",style="dashed", color="magenta", weight=3]; 1450 -> 367[label="",style="dashed", color="red", weight=0]; 1450[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1450 -> 1839[label="",style="dashed", color="magenta", weight=3]; 1450 -> 1840[label="",style="dashed", color="magenta", weight=3]; 1451 -> 368[label="",style="dashed", color="red", weight=0]; 1451[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1451 -> 1841[label="",style="dashed", color="magenta", weight=3]; 1451 -> 1842[label="",style="dashed", color="magenta", weight=3]; 1452 -> 369[label="",style="dashed", color="red", weight=0]; 1452[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1452 -> 1843[label="",style="dashed", color="magenta", weight=3]; 1452 -> 1844[label="",style="dashed", color="magenta", weight=3]; 1453 -> 370[label="",style="dashed", color="red", weight=0]; 1453[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1453 -> 1845[label="",style="dashed", color="magenta", weight=3]; 1453 -> 1846[label="",style="dashed", color="magenta", weight=3]; 1454 -> 371[label="",style="dashed", color="red", weight=0]; 1454[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1454 -> 1847[label="",style="dashed", color="magenta", weight=3]; 1454 -> 1848[label="",style="dashed", color="magenta", weight=3]; 1455 -> 372[label="",style="dashed", color="red", weight=0]; 1455[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1455 -> 1849[label="",style="dashed", color="magenta", weight=3]; 1455 -> 1850[label="",style="dashed", color="magenta", weight=3]; 1456 -> 373[label="",style="dashed", color="red", weight=0]; 1456[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1456 -> 1851[label="",style="dashed", color="magenta", weight=3]; 1456 -> 1852[label="",style="dashed", color="magenta", weight=3]; 1457 -> 374[label="",style="dashed", color="red", weight=0]; 1457[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1457 -> 1853[label="",style="dashed", color="magenta", weight=3]; 1457 -> 1854[label="",style="dashed", color="magenta", weight=3]; 1458 -> 375[label="",style="dashed", color="red", weight=0]; 1458[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1458 -> 1855[label="",style="dashed", color="magenta", weight=3]; 1458 -> 1856[label="",style="dashed", color="magenta", weight=3]; 1459 -> 376[label="",style="dashed", color="red", weight=0]; 1459[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1459 -> 1857[label="",style="dashed", color="magenta", weight=3]; 1459 -> 1858[label="",style="dashed", color="magenta", weight=3]; 1460 -> 377[label="",style="dashed", color="red", weight=0]; 1460[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1460 -> 1859[label="",style="dashed", color="magenta", weight=3]; 1460 -> 1860[label="",style="dashed", color="magenta", weight=3]; 1461[label="primEqInt (Pos (Succ vwx30000)) (Pos (Succ vwx40000))",fontsize=16,color="black",shape="box"];1461 -> 1861[label="",style="solid", color="black", weight=3]; 1462[label="primEqInt (Pos (Succ vwx30000)) (Pos Zero)",fontsize=16,color="black",shape="box"];1462 -> 1862[label="",style="solid", color="black", weight=3]; 1463[label="False",fontsize=16,color="green",shape="box"];1464[label="primEqInt (Pos Zero) (Pos (Succ vwx40000))",fontsize=16,color="black",shape="box"];1464 -> 1863[label="",style="solid", color="black", weight=3]; 1465[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1465 -> 1864[label="",style="solid", color="black", weight=3]; 1466[label="primEqInt (Pos Zero) (Neg (Succ vwx40000))",fontsize=16,color="black",shape="box"];1466 -> 1865[label="",style="solid", color="black", weight=3]; 1467[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1467 -> 1866[label="",style="solid", color="black", weight=3]; 1468[label="False",fontsize=16,color="green",shape="box"];1469[label="primEqInt (Neg (Succ vwx30000)) (Neg (Succ vwx40000))",fontsize=16,color="black",shape="box"];1469 -> 1867[label="",style="solid", color="black", weight=3]; 1470[label="primEqInt (Neg (Succ vwx30000)) (Neg Zero)",fontsize=16,color="black",shape="box"];1470 -> 1868[label="",style="solid", color="black", weight=3]; 1471[label="primEqInt (Neg Zero) (Pos (Succ vwx40000))",fontsize=16,color="black",shape="box"];1471 -> 1869[label="",style="solid", color="black", weight=3]; 1472[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1472 -> 1870[label="",style="solid", color="black", weight=3]; 1473[label="primEqInt (Neg Zero) (Neg (Succ vwx40000))",fontsize=16,color="black",shape="box"];1473 -> 1871[label="",style="solid", color="black", weight=3]; 1474[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1474 -> 1872[label="",style="solid", color="black", weight=3]; 1475[label="vwx3000",fontsize=16,color="green",shape="box"];1476[label="vwx4000",fontsize=16,color="green",shape="box"];1477[label="vwx3000",fontsize=16,color="green",shape="box"];1478[label="vwx4000",fontsize=16,color="green",shape="box"];1479[label="vwx3000",fontsize=16,color="green",shape="box"];1480[label="vwx4000",fontsize=16,color="green",shape="box"];1481[label="vwx3000",fontsize=16,color="green",shape="box"];1482[label="vwx4000",fontsize=16,color="green",shape="box"];1483[label="vwx3000",fontsize=16,color="green",shape="box"];1484[label="vwx4000",fontsize=16,color="green",shape="box"];1485[label="vwx3000",fontsize=16,color="green",shape="box"];1486[label="vwx4000",fontsize=16,color="green",shape="box"];1487[label="vwx3000",fontsize=16,color="green",shape="box"];1488[label="vwx4000",fontsize=16,color="green",shape="box"];1489[label="vwx3000",fontsize=16,color="green",shape="box"];1490[label="vwx4000",fontsize=16,color="green",shape="box"];1491[label="vwx3000",fontsize=16,color="green",shape="box"];1492[label="vwx4000",fontsize=16,color="green",shape="box"];1493[label="vwx3000",fontsize=16,color="green",shape="box"];1494[label="vwx4000",fontsize=16,color="green",shape="box"];1495[label="vwx3000",fontsize=16,color="green",shape="box"];1496[label="vwx4000",fontsize=16,color="green",shape="box"];1497[label="vwx3000",fontsize=16,color="green",shape="box"];1498[label="vwx4000",fontsize=16,color="green",shape="box"];1499[label="vwx3000",fontsize=16,color="green",shape="box"];1500[label="vwx4000",fontsize=16,color="green",shape="box"];1501[label="vwx3000",fontsize=16,color="green",shape="box"];1502[label="vwx4000",fontsize=16,color="green",shape="box"];1503[label="vwx3000",fontsize=16,color="green",shape="box"];1504[label="vwx4000",fontsize=16,color="green",shape="box"];1505[label="vwx3000",fontsize=16,color="green",shape="box"];1506[label="vwx4000",fontsize=16,color="green",shape="box"];1507[label="vwx3000",fontsize=16,color="green",shape="box"];1508[label="vwx4000",fontsize=16,color="green",shape="box"];1509[label="vwx3000",fontsize=16,color="green",shape="box"];1510[label="vwx4000",fontsize=16,color="green",shape="box"];1511[label="vwx3000",fontsize=16,color="green",shape="box"];1512[label="vwx4000",fontsize=16,color="green",shape="box"];1513[label="vwx3000",fontsize=16,color="green",shape="box"];1514[label="vwx4000",fontsize=16,color="green",shape="box"];1515[label="vwx3000",fontsize=16,color="green",shape="box"];1516[label="vwx4000",fontsize=16,color="green",shape="box"];1517[label="vwx3000",fontsize=16,color="green",shape="box"];1518[label="vwx4000",fontsize=16,color="green",shape="box"];1519[label="vwx3000",fontsize=16,color="green",shape="box"];1520[label="vwx4000",fontsize=16,color="green",shape="box"];1521[label="vwx3000",fontsize=16,color="green",shape="box"];1522[label="vwx4000",fontsize=16,color="green",shape="box"];1523[label="vwx3000",fontsize=16,color="green",shape="box"];1524[label="vwx4000",fontsize=16,color="green",shape="box"];1525[label="vwx3000",fontsize=16,color="green",shape="box"];1526[label="vwx4000",fontsize=16,color="green",shape="box"];1527[label="vwx3000",fontsize=16,color="green",shape="box"];1528[label="vwx4000",fontsize=16,color="green",shape="box"];1529[label="vwx3000",fontsize=16,color="green",shape="box"];1530[label="vwx4000",fontsize=16,color="green",shape="box"];1531 -> 224[label="",style="dashed", color="red", weight=0]; 1531[label="vwx3000 * vwx4001",fontsize=16,color="magenta"];1531 -> 1873[label="",style="dashed", color="magenta", weight=3]; 1531 -> 1874[label="",style="dashed", color="magenta", weight=3]; 1532 -> 224[label="",style="dashed", color="red", weight=0]; 1532[label="vwx3001 * vwx4000",fontsize=16,color="magenta"];1532 -> 1875[label="",style="dashed", color="magenta", weight=3]; 1532 -> 1876[label="",style="dashed", color="magenta", weight=3]; 1533 -> 1877[label="",style="dashed", color="red", weight=0]; 1533[label="compare vwx25 vwx26 /= GT",fontsize=16,color="magenta"];1533 -> 1878[label="",style="dashed", color="magenta", weight=3]; 1534 -> 1877[label="",style="dashed", color="red", weight=0]; 1534[label="compare vwx25 vwx26 /= GT",fontsize=16,color="magenta"];1534 -> 1879[label="",style="dashed", color="magenta", weight=3]; 1535[label="LT <= vwx26",fontsize=16,color="burlywood",shape="box"];3416[label="vwx26/LT",fontsize=10,color="white",style="solid",shape="box"];1535 -> 3416[label="",style="solid", color="burlywood", weight=9]; 3416 -> 1886[label="",style="solid", color="burlywood", weight=3]; 3417[label="vwx26/EQ",fontsize=10,color="white",style="solid",shape="box"];1535 -> 3417[label="",style="solid", color="burlywood", weight=9]; 3417 -> 1887[label="",style="solid", color="burlywood", weight=3]; 3418[label="vwx26/GT",fontsize=10,color="white",style="solid",shape="box"];1535 -> 3418[label="",style="solid", color="burlywood", weight=9]; 3418 -> 1888[label="",style="solid", color="burlywood", weight=3]; 1536[label="EQ <= vwx26",fontsize=16,color="burlywood",shape="box"];3419[label="vwx26/LT",fontsize=10,color="white",style="solid",shape="box"];1536 -> 3419[label="",style="solid", color="burlywood", weight=9]; 3419 -> 1889[label="",style="solid", color="burlywood", weight=3]; 3420[label="vwx26/EQ",fontsize=10,color="white",style="solid",shape="box"];1536 -> 3420[label="",style="solid", color="burlywood", weight=9]; 3420 -> 1890[label="",style="solid", color="burlywood", weight=3]; 3421[label="vwx26/GT",fontsize=10,color="white",style="solid",shape="box"];1536 -> 3421[label="",style="solid", color="burlywood", weight=9]; 3421 -> 1891[label="",style="solid", color="burlywood", weight=3]; 1537[label="GT <= vwx26",fontsize=16,color="burlywood",shape="box"];3422[label="vwx26/LT",fontsize=10,color="white",style="solid",shape="box"];1537 -> 3422[label="",style="solid", color="burlywood", weight=9]; 3422 -> 1892[label="",style="solid", color="burlywood", weight=3]; 3423[label="vwx26/EQ",fontsize=10,color="white",style="solid",shape="box"];1537 -> 3423[label="",style="solid", color="burlywood", weight=9]; 3423 -> 1893[label="",style="solid", color="burlywood", weight=3]; 3424[label="vwx26/GT",fontsize=10,color="white",style="solid",shape="box"];1537 -> 3424[label="",style="solid", color="burlywood", weight=9]; 3424 -> 1894[label="",style="solid", color="burlywood", weight=3]; 1538 -> 1877[label="",style="dashed", color="red", weight=0]; 1538[label="compare vwx25 vwx26 /= GT",fontsize=16,color="magenta"];1538 -> 1880[label="",style="dashed", color="magenta", weight=3]; 1539[label="Left vwx250 <= vwx26",fontsize=16,color="burlywood",shape="box"];3425[label="vwx26/Left vwx260",fontsize=10,color="white",style="solid",shape="box"];1539 -> 3425[label="",style="solid", color="burlywood", weight=9]; 3425 -> 1895[label="",style="solid", color="burlywood", weight=3]; 3426[label="vwx26/Right vwx260",fontsize=10,color="white",style="solid",shape="box"];1539 -> 3426[label="",style="solid", color="burlywood", weight=9]; 3426 -> 1896[label="",style="solid", color="burlywood", weight=3]; 1540[label="Right vwx250 <= vwx26",fontsize=16,color="burlywood",shape="box"];3427[label="vwx26/Left vwx260",fontsize=10,color="white",style="solid",shape="box"];1540 -> 3427[label="",style="solid", color="burlywood", weight=9]; 3427 -> 1897[label="",style="solid", color="burlywood", weight=3]; 3428[label="vwx26/Right vwx260",fontsize=10,color="white",style="solid",shape="box"];1540 -> 3428[label="",style="solid", color="burlywood", weight=9]; 3428 -> 1898[label="",style="solid", color="burlywood", weight=3]; 1541 -> 1877[label="",style="dashed", color="red", weight=0]; 1541[label="compare vwx25 vwx26 /= GT",fontsize=16,color="magenta"];1541 -> 1881[label="",style="dashed", color="magenta", weight=3]; 1542 -> 1877[label="",style="dashed", color="red", weight=0]; 1542[label="compare vwx25 vwx26 /= GT",fontsize=16,color="magenta"];1542 -> 1882[label="",style="dashed", color="magenta", weight=3]; 1543[label="(vwx250,vwx251,vwx252) <= vwx26",fontsize=16,color="burlywood",shape="box"];3429[label="vwx26/(vwx260,vwx261,vwx262)",fontsize=10,color="white",style="solid",shape="box"];1543 -> 3429[label="",style="solid", color="burlywood", weight=9]; 3429 -> 1899[label="",style="solid", color="burlywood", weight=3]; 1544 -> 1877[label="",style="dashed", color="red", weight=0]; 1544[label="compare vwx25 vwx26 /= GT",fontsize=16,color="magenta"];1544 -> 1883[label="",style="dashed", color="magenta", weight=3]; 1545 -> 1877[label="",style="dashed", color="red", weight=0]; 1545[label="compare vwx25 vwx26 /= GT",fontsize=16,color="magenta"];1545 -> 1884[label="",style="dashed", color="magenta", weight=3]; 1546 -> 1877[label="",style="dashed", color="red", weight=0]; 1546[label="compare vwx25 vwx26 /= GT",fontsize=16,color="magenta"];1546 -> 1885[label="",style="dashed", color="magenta", weight=3]; 1547[label="False <= vwx26",fontsize=16,color="burlywood",shape="box"];3430[label="vwx26/False",fontsize=10,color="white",style="solid",shape="box"];1547 -> 3430[label="",style="solid", color="burlywood", weight=9]; 3430 -> 1900[label="",style="solid", color="burlywood", weight=3]; 3431[label="vwx26/True",fontsize=10,color="white",style="solid",shape="box"];1547 -> 3431[label="",style="solid", color="burlywood", weight=9]; 3431 -> 1901[label="",style="solid", color="burlywood", weight=3]; 1548[label="True <= vwx26",fontsize=16,color="burlywood",shape="box"];3432[label="vwx26/False",fontsize=10,color="white",style="solid",shape="box"];1548 -> 3432[label="",style="solid", color="burlywood", weight=9]; 3432 -> 1902[label="",style="solid", color="burlywood", weight=3]; 3433[label="vwx26/True",fontsize=10,color="white",style="solid",shape="box"];1548 -> 3433[label="",style="solid", color="burlywood", weight=9]; 3433 -> 1903[label="",style="solid", color="burlywood", weight=3]; 1549[label="Nothing <= vwx26",fontsize=16,color="burlywood",shape="box"];3434[label="vwx26/Nothing",fontsize=10,color="white",style="solid",shape="box"];1549 -> 3434[label="",style="solid", color="burlywood", weight=9]; 3434 -> 1904[label="",style="solid", color="burlywood", weight=3]; 3435[label="vwx26/Just vwx260",fontsize=10,color="white",style="solid",shape="box"];1549 -> 3435[label="",style="solid", color="burlywood", weight=9]; 3435 -> 1905[label="",style="solid", color="burlywood", weight=3]; 1550[label="Just vwx250 <= vwx26",fontsize=16,color="burlywood",shape="box"];3436[label="vwx26/Nothing",fontsize=10,color="white",style="solid",shape="box"];1550 -> 3436[label="",style="solid", color="burlywood", weight=9]; 3436 -> 1906[label="",style="solid", color="burlywood", weight=3]; 3437[label="vwx26/Just vwx260",fontsize=10,color="white",style="solid",shape="box"];1550 -> 3437[label="",style="solid", color="burlywood", weight=9]; 3437 -> 1907[label="",style="solid", color="burlywood", weight=3]; 1551[label="(vwx250,vwx251) <= vwx26",fontsize=16,color="burlywood",shape="box"];3438[label="vwx26/(vwx260,vwx261)",fontsize=10,color="white",style="solid",shape="box"];1551 -> 3438[label="",style="solid", color="burlywood", weight=9]; 3438 -> 1908[label="",style="solid", color="burlywood", weight=3]; 1552[label="compare0 (Left vwx105) (Left vwx106) True",fontsize=16,color="black",shape="box"];1552 -> 1909[label="",style="solid", color="black", weight=3]; 1553[label="vwx33",fontsize=16,color="green",shape="box"];1554[label="vwx32",fontsize=16,color="green",shape="box"];1555[label="vwx33",fontsize=16,color="green",shape="box"];1556[label="vwx32",fontsize=16,color="green",shape="box"];1557[label="vwx33",fontsize=16,color="green",shape="box"];1558[label="vwx32",fontsize=16,color="green",shape="box"];1559[label="vwx33",fontsize=16,color="green",shape="box"];1560[label="vwx32",fontsize=16,color="green",shape="box"];1561[label="vwx33",fontsize=16,color="green",shape="box"];1562[label="vwx32",fontsize=16,color="green",shape="box"];1563[label="vwx33",fontsize=16,color="green",shape="box"];1564[label="vwx32",fontsize=16,color="green",shape="box"];1565[label="vwx33",fontsize=16,color="green",shape="box"];1566[label="vwx32",fontsize=16,color="green",shape="box"];1567[label="vwx33",fontsize=16,color="green",shape="box"];1568[label="vwx32",fontsize=16,color="green",shape="box"];1569[label="vwx33",fontsize=16,color="green",shape="box"];1570[label="vwx32",fontsize=16,color="green",shape="box"];1571[label="vwx33",fontsize=16,color="green",shape="box"];1572[label="vwx32",fontsize=16,color="green",shape="box"];1573[label="vwx33",fontsize=16,color="green",shape="box"];1574[label="vwx32",fontsize=16,color="green",shape="box"];1575[label="vwx33",fontsize=16,color="green",shape="box"];1576[label="vwx32",fontsize=16,color="green",shape="box"];1577[label="vwx33",fontsize=16,color="green",shape="box"];1578[label="vwx32",fontsize=16,color="green",shape="box"];1579[label="vwx33",fontsize=16,color="green",shape="box"];1580[label="vwx32",fontsize=16,color="green",shape="box"];1581[label="compare0 (Right vwx112) (Right vwx113) True",fontsize=16,color="black",shape="box"];1581 -> 1910[label="",style="solid", color="black", weight=3]; 1914[label="vwx77 < vwx80",fontsize=16,color="blue",shape="box"];3439[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1914 -> 3439[label="",style="solid", color="blue", weight=9]; 3439 -> 1918[label="",style="solid", color="blue", weight=3]; 3440[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1914 -> 3440[label="",style="solid", color="blue", weight=9]; 3440 -> 1919[label="",style="solid", color="blue", weight=3]; 3441[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1914 -> 3441[label="",style="solid", color="blue", weight=9]; 3441 -> 1920[label="",style="solid", color="blue", weight=3]; 3442[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1914 -> 3442[label="",style="solid", color="blue", weight=9]; 3442 -> 1921[label="",style="solid", color="blue", weight=3]; 3443[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1914 -> 3443[label="",style="solid", color="blue", weight=9]; 3443 -> 1922[label="",style="solid", color="blue", weight=3]; 3444[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1914 -> 3444[label="",style="solid", color="blue", weight=9]; 3444 -> 1923[label="",style="solid", color="blue", weight=3]; 3445[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1914 -> 3445[label="",style="solid", color="blue", weight=9]; 3445 -> 1924[label="",style="solid", color="blue", weight=3]; 3446[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1914 -> 3446[label="",style="solid", color="blue", weight=9]; 3446 -> 1925[label="",style="solid", color="blue", weight=3]; 3447[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1914 -> 3447[label="",style="solid", color="blue", weight=9]; 3447 -> 1926[label="",style="solid", color="blue", weight=3]; 3448[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1914 -> 3448[label="",style="solid", color="blue", weight=9]; 3448 -> 1927[label="",style="solid", color="blue", weight=3]; 3449[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1914 -> 3449[label="",style="solid", color="blue", weight=9]; 3449 -> 1928[label="",style="solid", color="blue", weight=3]; 3450[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1914 -> 3450[label="",style="solid", color="blue", weight=9]; 3450 -> 1929[label="",style="solid", color="blue", weight=3]; 3451[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1914 -> 3451[label="",style="solid", color="blue", weight=9]; 3451 -> 1930[label="",style="solid", color="blue", weight=3]; 3452[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1914 -> 3452[label="",style="solid", color="blue", weight=9]; 3452 -> 1931[label="",style="solid", color="blue", weight=3]; 1915 -> 928[label="",style="dashed", color="red", weight=0]; 1915[label="vwx77 == vwx80 && vwx78 <= vwx81",fontsize=16,color="magenta"];1915 -> 1932[label="",style="dashed", color="magenta", weight=3]; 1915 -> 1933[label="",style="dashed", color="magenta", weight=3]; 1913[label="vwx167 || vwx168",fontsize=16,color="burlywood",shape="triangle"];3453[label="vwx167/False",fontsize=10,color="white",style="solid",shape="box"];1913 -> 3453[label="",style="solid", color="burlywood", weight=9]; 3453 -> 1934[label="",style="solid", color="burlywood", weight=3]; 3454[label="vwx167/True",fontsize=10,color="white",style="solid",shape="box"];1913 -> 3454[label="",style="solid", color="burlywood", weight=9]; 3454 -> 1935[label="",style="solid", color="burlywood", weight=3]; 1584 -> 368[label="",style="dashed", color="red", weight=0]; 1584[label="vwx76 == vwx79",fontsize=16,color="magenta"];1584 -> 1936[label="",style="dashed", color="magenta", weight=3]; 1584 -> 1937[label="",style="dashed", color="magenta", weight=3]; 1585 -> 372[label="",style="dashed", color="red", weight=0]; 1585[label="vwx76 == vwx79",fontsize=16,color="magenta"];1585 -> 1938[label="",style="dashed", color="magenta", weight=3]; 1585 -> 1939[label="",style="dashed", color="magenta", weight=3]; 1586 -> 369[label="",style="dashed", color="red", weight=0]; 1586[label="vwx76 == vwx79",fontsize=16,color="magenta"];1586 -> 1940[label="",style="dashed", color="magenta", weight=3]; 1586 -> 1941[label="",style="dashed", color="magenta", weight=3]; 1587 -> 377[label="",style="dashed", color="red", weight=0]; 1587[label="vwx76 == vwx79",fontsize=16,color="magenta"];1587 -> 1942[label="",style="dashed", color="magenta", weight=3]; 1587 -> 1943[label="",style="dashed", color="magenta", weight=3]; 1588 -> 376[label="",style="dashed", color="red", weight=0]; 1588[label="vwx76 == vwx79",fontsize=16,color="magenta"];1588 -> 1944[label="",style="dashed", color="magenta", weight=3]; 1588 -> 1945[label="",style="dashed", color="magenta", weight=3]; 1589 -> 374[label="",style="dashed", color="red", weight=0]; 1589[label="vwx76 == vwx79",fontsize=16,color="magenta"];1589 -> 1946[label="",style="dashed", color="magenta", weight=3]; 1589 -> 1947[label="",style="dashed", color="magenta", weight=3]; 1590 -> 373[label="",style="dashed", color="red", weight=0]; 1590[label="vwx76 == vwx79",fontsize=16,color="magenta"];1590 -> 1948[label="",style="dashed", color="magenta", weight=3]; 1590 -> 1949[label="",style="dashed", color="magenta", weight=3]; 1591 -> 370[label="",style="dashed", color="red", weight=0]; 1591[label="vwx76 == vwx79",fontsize=16,color="magenta"];1591 -> 1950[label="",style="dashed", color="magenta", weight=3]; 1591 -> 1951[label="",style="dashed", color="magenta", weight=3]; 1592 -> 364[label="",style="dashed", color="red", weight=0]; 1592[label="vwx76 == vwx79",fontsize=16,color="magenta"];1592 -> 1952[label="",style="dashed", color="magenta", weight=3]; 1592 -> 1953[label="",style="dashed", color="magenta", weight=3]; 1593 -> 365[label="",style="dashed", color="red", weight=0]; 1593[label="vwx76 == vwx79",fontsize=16,color="magenta"];1593 -> 1954[label="",style="dashed", color="magenta", weight=3]; 1593 -> 1955[label="",style="dashed", color="magenta", weight=3]; 1594 -> 367[label="",style="dashed", color="red", weight=0]; 1594[label="vwx76 == vwx79",fontsize=16,color="magenta"];1594 -> 1956[label="",style="dashed", color="magenta", weight=3]; 1594 -> 1957[label="",style="dashed", color="magenta", weight=3]; 1595 -> 375[label="",style="dashed", color="red", weight=0]; 1595[label="vwx76 == vwx79",fontsize=16,color="magenta"];1595 -> 1958[label="",style="dashed", color="magenta", weight=3]; 1595 -> 1959[label="",style="dashed", color="magenta", weight=3]; 1596 -> 366[label="",style="dashed", color="red", weight=0]; 1596[label="vwx76 == vwx79",fontsize=16,color="magenta"];1596 -> 1960[label="",style="dashed", color="magenta", weight=3]; 1596 -> 1961[label="",style="dashed", color="magenta", weight=3]; 1597 -> 371[label="",style="dashed", color="red", weight=0]; 1597[label="vwx76 == vwx79",fontsize=16,color="magenta"];1597 -> 1962[label="",style="dashed", color="magenta", weight=3]; 1597 -> 1963[label="",style="dashed", color="magenta", weight=3]; 1598 -> 369[label="",style="dashed", color="red", weight=0]; 1598[label="compare vwx76 vwx79 == LT",fontsize=16,color="magenta"];1598 -> 1964[label="",style="dashed", color="magenta", weight=3]; 1598 -> 1965[label="",style="dashed", color="magenta", weight=3]; 1599 -> 369[label="",style="dashed", color="red", weight=0]; 1599[label="compare vwx76 vwx79 == LT",fontsize=16,color="magenta"];1599 -> 1966[label="",style="dashed", color="magenta", weight=3]; 1599 -> 1967[label="",style="dashed", color="magenta", weight=3]; 1600 -> 369[label="",style="dashed", color="red", weight=0]; 1600[label="compare vwx76 vwx79 == LT",fontsize=16,color="magenta"];1600 -> 1968[label="",style="dashed", color="magenta", weight=3]; 1600 -> 1969[label="",style="dashed", color="magenta", weight=3]; 1601 -> 369[label="",style="dashed", color="red", weight=0]; 1601[label="compare vwx76 vwx79 == LT",fontsize=16,color="magenta"];1601 -> 1970[label="",style="dashed", color="magenta", weight=3]; 1601 -> 1971[label="",style="dashed", color="magenta", weight=3]; 1602 -> 369[label="",style="dashed", color="red", weight=0]; 1602[label="compare vwx76 vwx79 == LT",fontsize=16,color="magenta"];1602 -> 1972[label="",style="dashed", color="magenta", weight=3]; 1602 -> 1973[label="",style="dashed", color="magenta", weight=3]; 1603 -> 369[label="",style="dashed", color="red", weight=0]; 1603[label="compare vwx76 vwx79 == LT",fontsize=16,color="magenta"];1603 -> 1974[label="",style="dashed", color="magenta", weight=3]; 1603 -> 1975[label="",style="dashed", color="magenta", weight=3]; 1604 -> 369[label="",style="dashed", color="red", weight=0]; 1604[label="compare vwx76 vwx79 == LT",fontsize=16,color="magenta"];1604 -> 1976[label="",style="dashed", color="magenta", weight=3]; 1604 -> 1977[label="",style="dashed", color="magenta", weight=3]; 1605 -> 369[label="",style="dashed", color="red", weight=0]; 1605[label="compare vwx76 vwx79 == LT",fontsize=16,color="magenta"];1605 -> 1978[label="",style="dashed", color="magenta", weight=3]; 1605 -> 1979[label="",style="dashed", color="magenta", weight=3]; 1606 -> 369[label="",style="dashed", color="red", weight=0]; 1606[label="compare vwx76 vwx79 == LT",fontsize=16,color="magenta"];1606 -> 1980[label="",style="dashed", color="magenta", weight=3]; 1606 -> 1981[label="",style="dashed", color="magenta", weight=3]; 1607 -> 369[label="",style="dashed", color="red", weight=0]; 1607[label="compare vwx76 vwx79 == LT",fontsize=16,color="magenta"];1607 -> 1982[label="",style="dashed", color="magenta", weight=3]; 1607 -> 1983[label="",style="dashed", color="magenta", weight=3]; 1608 -> 369[label="",style="dashed", color="red", weight=0]; 1608[label="compare vwx76 vwx79 == LT",fontsize=16,color="magenta"];1608 -> 1984[label="",style="dashed", color="magenta", weight=3]; 1608 -> 1985[label="",style="dashed", color="magenta", weight=3]; 1609 -> 369[label="",style="dashed", color="red", weight=0]; 1609[label="compare vwx76 vwx79 == LT",fontsize=16,color="magenta"];1609 -> 1986[label="",style="dashed", color="magenta", weight=3]; 1609 -> 1987[label="",style="dashed", color="magenta", weight=3]; 1610 -> 369[label="",style="dashed", color="red", weight=0]; 1610[label="compare vwx76 vwx79 == LT",fontsize=16,color="magenta"];1610 -> 1988[label="",style="dashed", color="magenta", weight=3]; 1610 -> 1989[label="",style="dashed", color="magenta", weight=3]; 1611 -> 369[label="",style="dashed", color="red", weight=0]; 1611[label="compare vwx76 vwx79 == LT",fontsize=16,color="magenta"];1611 -> 1990[label="",style="dashed", color="magenta", weight=3]; 1611 -> 1991[label="",style="dashed", color="magenta", weight=3]; 1612[label="compare1 (vwx141,vwx142,vwx143) (vwx144,vwx145,vwx146) vwx148",fontsize=16,color="burlywood",shape="triangle"];3455[label="vwx148/False",fontsize=10,color="white",style="solid",shape="box"];1612 -> 3455[label="",style="solid", color="burlywood", weight=9]; 3455 -> 1992[label="",style="solid", color="burlywood", weight=3]; 3456[label="vwx148/True",fontsize=10,color="white",style="solid",shape="box"];1612 -> 3456[label="",style="solid", color="burlywood", weight=9]; 3456 -> 1993[label="",style="solid", color="burlywood", weight=3]; 1613 -> 1612[label="",style="dashed", color="red", weight=0]; 1613[label="compare1 (vwx141,vwx142,vwx143) (vwx144,vwx145,vwx146) True",fontsize=16,color="magenta"];1613 -> 1994[label="",style="dashed", color="magenta", weight=3]; 1614[label="vwx55",fontsize=16,color="green",shape="box"];1615[label="vwx54",fontsize=16,color="green",shape="box"];1616[label="vwx55",fontsize=16,color="green",shape="box"];1617[label="vwx54",fontsize=16,color="green",shape="box"];1618[label="vwx55",fontsize=16,color="green",shape="box"];1619[label="vwx54",fontsize=16,color="green",shape="box"];1620[label="vwx55",fontsize=16,color="green",shape="box"];1621[label="vwx54",fontsize=16,color="green",shape="box"];1622[label="vwx55",fontsize=16,color="green",shape="box"];1623[label="vwx54",fontsize=16,color="green",shape="box"];1624[label="vwx55",fontsize=16,color="green",shape="box"];1625[label="vwx54",fontsize=16,color="green",shape="box"];1626[label="vwx55",fontsize=16,color="green",shape="box"];1627[label="vwx54",fontsize=16,color="green",shape="box"];1628[label="vwx55",fontsize=16,color="green",shape="box"];1629[label="vwx54",fontsize=16,color="green",shape="box"];1630[label="vwx55",fontsize=16,color="green",shape="box"];1631[label="vwx54",fontsize=16,color="green",shape="box"];1632[label="vwx55",fontsize=16,color="green",shape="box"];1633[label="vwx54",fontsize=16,color="green",shape="box"];1634[label="vwx55",fontsize=16,color="green",shape="box"];1635[label="vwx54",fontsize=16,color="green",shape="box"];1636[label="vwx55",fontsize=16,color="green",shape="box"];1637[label="vwx54",fontsize=16,color="green",shape="box"];1638[label="vwx55",fontsize=16,color="green",shape="box"];1639[label="vwx54",fontsize=16,color="green",shape="box"];1640[label="vwx55",fontsize=16,color="green",shape="box"];1641[label="vwx54",fontsize=16,color="green",shape="box"];1642[label="compare0 (Just vwx126) (Just vwx127) True",fontsize=16,color="black",shape="box"];1642 -> 1995[label="",style="solid", color="black", weight=3]; 1643 -> 1243[label="",style="dashed", color="red", weight=0]; 1643[label="vwx90 <= vwx92",fontsize=16,color="magenta"];1643 -> 1996[label="",style="dashed", color="magenta", weight=3]; 1643 -> 1997[label="",style="dashed", color="magenta", weight=3]; 1644 -> 1244[label="",style="dashed", color="red", weight=0]; 1644[label="vwx90 <= vwx92",fontsize=16,color="magenta"];1644 -> 1998[label="",style="dashed", color="magenta", weight=3]; 1644 -> 1999[label="",style="dashed", color="magenta", weight=3]; 1645 -> 1245[label="",style="dashed", color="red", weight=0]; 1645[label="vwx90 <= vwx92",fontsize=16,color="magenta"];1645 -> 2000[label="",style="dashed", color="magenta", weight=3]; 1645 -> 2001[label="",style="dashed", color="magenta", weight=3]; 1646 -> 1246[label="",style="dashed", color="red", weight=0]; 1646[label="vwx90 <= vwx92",fontsize=16,color="magenta"];1646 -> 2002[label="",style="dashed", color="magenta", weight=3]; 1646 -> 2003[label="",style="dashed", color="magenta", weight=3]; 1647 -> 1247[label="",style="dashed", color="red", weight=0]; 1647[label="vwx90 <= vwx92",fontsize=16,color="magenta"];1647 -> 2004[label="",style="dashed", color="magenta", weight=3]; 1647 -> 2005[label="",style="dashed", color="magenta", weight=3]; 1648 -> 1248[label="",style="dashed", color="red", weight=0]; 1648[label="vwx90 <= vwx92",fontsize=16,color="magenta"];1648 -> 2006[label="",style="dashed", color="magenta", weight=3]; 1648 -> 2007[label="",style="dashed", color="magenta", weight=3]; 1649 -> 1249[label="",style="dashed", color="red", weight=0]; 1649[label="vwx90 <= vwx92",fontsize=16,color="magenta"];1649 -> 2008[label="",style="dashed", color="magenta", weight=3]; 1649 -> 2009[label="",style="dashed", color="magenta", weight=3]; 1650 -> 1250[label="",style="dashed", color="red", weight=0]; 1650[label="vwx90 <= vwx92",fontsize=16,color="magenta"];1650 -> 2010[label="",style="dashed", color="magenta", weight=3]; 1650 -> 2011[label="",style="dashed", color="magenta", weight=3]; 1651 -> 1251[label="",style="dashed", color="red", weight=0]; 1651[label="vwx90 <= vwx92",fontsize=16,color="magenta"];1651 -> 2012[label="",style="dashed", color="magenta", weight=3]; 1651 -> 2013[label="",style="dashed", color="magenta", weight=3]; 1652 -> 1252[label="",style="dashed", color="red", weight=0]; 1652[label="vwx90 <= vwx92",fontsize=16,color="magenta"];1652 -> 2014[label="",style="dashed", color="magenta", weight=3]; 1652 -> 2015[label="",style="dashed", color="magenta", weight=3]; 1653 -> 1253[label="",style="dashed", color="red", weight=0]; 1653[label="vwx90 <= vwx92",fontsize=16,color="magenta"];1653 -> 2016[label="",style="dashed", color="magenta", weight=3]; 1653 -> 2017[label="",style="dashed", color="magenta", weight=3]; 1654 -> 1254[label="",style="dashed", color="red", weight=0]; 1654[label="vwx90 <= vwx92",fontsize=16,color="magenta"];1654 -> 2018[label="",style="dashed", color="magenta", weight=3]; 1654 -> 2019[label="",style="dashed", color="magenta", weight=3]; 1655 -> 1255[label="",style="dashed", color="red", weight=0]; 1655[label="vwx90 <= vwx92",fontsize=16,color="magenta"];1655 -> 2020[label="",style="dashed", color="magenta", weight=3]; 1655 -> 2021[label="",style="dashed", color="magenta", weight=3]; 1656 -> 1256[label="",style="dashed", color="red", weight=0]; 1656[label="vwx90 <= vwx92",fontsize=16,color="magenta"];1656 -> 2022[label="",style="dashed", color="magenta", weight=3]; 1656 -> 2023[label="",style="dashed", color="magenta", weight=3]; 1657 -> 368[label="",style="dashed", color="red", weight=0]; 1657[label="vwx89 == vwx91",fontsize=16,color="magenta"];1657 -> 2024[label="",style="dashed", color="magenta", weight=3]; 1657 -> 2025[label="",style="dashed", color="magenta", weight=3]; 1658 -> 372[label="",style="dashed", color="red", weight=0]; 1658[label="vwx89 == vwx91",fontsize=16,color="magenta"];1658 -> 2026[label="",style="dashed", color="magenta", weight=3]; 1658 -> 2027[label="",style="dashed", color="magenta", weight=3]; 1659 -> 369[label="",style="dashed", color="red", weight=0]; 1659[label="vwx89 == vwx91",fontsize=16,color="magenta"];1659 -> 2028[label="",style="dashed", color="magenta", weight=3]; 1659 -> 2029[label="",style="dashed", color="magenta", weight=3]; 1660 -> 377[label="",style="dashed", color="red", weight=0]; 1660[label="vwx89 == vwx91",fontsize=16,color="magenta"];1660 -> 2030[label="",style="dashed", color="magenta", weight=3]; 1660 -> 2031[label="",style="dashed", color="magenta", weight=3]; 1661 -> 376[label="",style="dashed", color="red", weight=0]; 1661[label="vwx89 == vwx91",fontsize=16,color="magenta"];1661 -> 2032[label="",style="dashed", color="magenta", weight=3]; 1661 -> 2033[label="",style="dashed", color="magenta", weight=3]; 1662 -> 374[label="",style="dashed", color="red", weight=0]; 1662[label="vwx89 == vwx91",fontsize=16,color="magenta"];1662 -> 2034[label="",style="dashed", color="magenta", weight=3]; 1662 -> 2035[label="",style="dashed", color="magenta", weight=3]; 1663 -> 373[label="",style="dashed", color="red", weight=0]; 1663[label="vwx89 == vwx91",fontsize=16,color="magenta"];1663 -> 2036[label="",style="dashed", color="magenta", weight=3]; 1663 -> 2037[label="",style="dashed", color="magenta", weight=3]; 1664 -> 370[label="",style="dashed", color="red", weight=0]; 1664[label="vwx89 == vwx91",fontsize=16,color="magenta"];1664 -> 2038[label="",style="dashed", color="magenta", weight=3]; 1664 -> 2039[label="",style="dashed", color="magenta", weight=3]; 1665 -> 364[label="",style="dashed", color="red", weight=0]; 1665[label="vwx89 == vwx91",fontsize=16,color="magenta"];1665 -> 2040[label="",style="dashed", color="magenta", weight=3]; 1665 -> 2041[label="",style="dashed", color="magenta", weight=3]; 1666 -> 365[label="",style="dashed", color="red", weight=0]; 1666[label="vwx89 == vwx91",fontsize=16,color="magenta"];1666 -> 2042[label="",style="dashed", color="magenta", weight=3]; 1666 -> 2043[label="",style="dashed", color="magenta", weight=3]; 1667 -> 367[label="",style="dashed", color="red", weight=0]; 1667[label="vwx89 == vwx91",fontsize=16,color="magenta"];1667 -> 2044[label="",style="dashed", color="magenta", weight=3]; 1667 -> 2045[label="",style="dashed", color="magenta", weight=3]; 1668 -> 375[label="",style="dashed", color="red", weight=0]; 1668[label="vwx89 == vwx91",fontsize=16,color="magenta"];1668 -> 2046[label="",style="dashed", color="magenta", weight=3]; 1668 -> 2047[label="",style="dashed", color="magenta", weight=3]; 1669 -> 366[label="",style="dashed", color="red", weight=0]; 1669[label="vwx89 == vwx91",fontsize=16,color="magenta"];1669 -> 2048[label="",style="dashed", color="magenta", weight=3]; 1669 -> 2049[label="",style="dashed", color="magenta", weight=3]; 1670 -> 371[label="",style="dashed", color="red", weight=0]; 1670[label="vwx89 == vwx91",fontsize=16,color="magenta"];1670 -> 2050[label="",style="dashed", color="magenta", weight=3]; 1670 -> 2051[label="",style="dashed", color="magenta", weight=3]; 1671[label="vwx91",fontsize=16,color="green",shape="box"];1672[label="vwx89",fontsize=16,color="green",shape="box"];1673[label="vwx91",fontsize=16,color="green",shape="box"];1674[label="vwx89",fontsize=16,color="green",shape="box"];1675[label="vwx91",fontsize=16,color="green",shape="box"];1676[label="vwx89",fontsize=16,color="green",shape="box"];1677[label="vwx91",fontsize=16,color="green",shape="box"];1678[label="vwx89",fontsize=16,color="green",shape="box"];1679[label="vwx91",fontsize=16,color="green",shape="box"];1680[label="vwx89",fontsize=16,color="green",shape="box"];1681[label="vwx91",fontsize=16,color="green",shape="box"];1682[label="vwx89",fontsize=16,color="green",shape="box"];1683[label="vwx91",fontsize=16,color="green",shape="box"];1684[label="vwx89",fontsize=16,color="green",shape="box"];1685[label="vwx91",fontsize=16,color="green",shape="box"];1686[label="vwx89",fontsize=16,color="green",shape="box"];1687[label="vwx91",fontsize=16,color="green",shape="box"];1688[label="vwx89",fontsize=16,color="green",shape="box"];1689[label="vwx91",fontsize=16,color="green",shape="box"];1690[label="vwx89",fontsize=16,color="green",shape="box"];1691[label="vwx91",fontsize=16,color="green",shape="box"];1692[label="vwx89",fontsize=16,color="green",shape="box"];1693[label="vwx91",fontsize=16,color="green",shape="box"];1694[label="vwx89",fontsize=16,color="green",shape="box"];1695[label="vwx91",fontsize=16,color="green",shape="box"];1696[label="vwx89",fontsize=16,color="green",shape="box"];1697[label="vwx91",fontsize=16,color="green",shape="box"];1698[label="vwx89",fontsize=16,color="green",shape="box"];1699[label="compare1 (vwx156,vwx157) (vwx158,vwx159) vwx161",fontsize=16,color="burlywood",shape="triangle"];3457[label="vwx161/False",fontsize=10,color="white",style="solid",shape="box"];1699 -> 3457[label="",style="solid", color="burlywood", weight=9]; 3457 -> 2052[label="",style="solid", color="burlywood", weight=3]; 3458[label="vwx161/True",fontsize=10,color="white",style="solid",shape="box"];1699 -> 3458[label="",style="solid", color="burlywood", weight=9]; 3458 -> 2053[label="",style="solid", color="burlywood", weight=3]; 1700 -> 1699[label="",style="dashed", color="red", weight=0]; 1700[label="compare1 (vwx156,vwx157) (vwx158,vwx159) True",fontsize=16,color="magenta"];1700 -> 2054[label="",style="dashed", color="magenta", weight=3]; 1701 -> 2055[label="",style="dashed", color="red", weight=0]; 1701[label="primPlusNat (primMulNat vwx40000 (Succ vwx30100)) (Succ vwx30100)",fontsize=16,color="magenta"];1701 -> 2056[label="",style="dashed", color="magenta", weight=3]; 1702[label="Zero",fontsize=16,color="green",shape="box"];1703[label="Zero",fontsize=16,color="green",shape="box"];1704[label="Zero",fontsize=16,color="green",shape="box"];1705[label="vwx3000",fontsize=16,color="green",shape="box"];1706[label="vwx4001",fontsize=16,color="green",shape="box"];1707[label="vwx3001",fontsize=16,color="green",shape="box"];1708[label="vwx4000",fontsize=16,color="green",shape="box"];1709[label="primEqNat (Succ vwx30000) (Succ vwx40000)",fontsize=16,color="black",shape="box"];1709 -> 2057[label="",style="solid", color="black", weight=3]; 1710[label="primEqNat (Succ vwx30000) Zero",fontsize=16,color="black",shape="box"];1710 -> 2058[label="",style="solid", color="black", weight=3]; 1711[label="primEqNat Zero (Succ vwx40000)",fontsize=16,color="black",shape="box"];1711 -> 2059[label="",style="solid", color="black", weight=3]; 1712[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];1712 -> 2060[label="",style="solid", color="black", weight=3]; 1713[label="vwx3001",fontsize=16,color="green",shape="box"];1714[label="vwx4001",fontsize=16,color="green",shape="box"];1715[label="vwx3001",fontsize=16,color="green",shape="box"];1716[label="vwx4001",fontsize=16,color="green",shape="box"];1717[label="vwx3000",fontsize=16,color="green",shape="box"];1718[label="vwx4000",fontsize=16,color="green",shape="box"];1719[label="vwx3000",fontsize=16,color="green",shape="box"];1720[label="vwx4000",fontsize=16,color="green",shape="box"];1721 -> 364[label="",style="dashed", color="red", weight=0]; 1721[label="vwx3002 == vwx4002",fontsize=16,color="magenta"];1721 -> 2061[label="",style="dashed", color="magenta", weight=3]; 1721 -> 2062[label="",style="dashed", color="magenta", weight=3]; 1722 -> 365[label="",style="dashed", color="red", weight=0]; 1722[label="vwx3002 == vwx4002",fontsize=16,color="magenta"];1722 -> 2063[label="",style="dashed", color="magenta", weight=3]; 1722 -> 2064[label="",style="dashed", color="magenta", weight=3]; 1723 -> 366[label="",style="dashed", color="red", weight=0]; 1723[label="vwx3002 == vwx4002",fontsize=16,color="magenta"];1723 -> 2065[label="",style="dashed", color="magenta", weight=3]; 1723 -> 2066[label="",style="dashed", color="magenta", weight=3]; 1724 -> 367[label="",style="dashed", color="red", weight=0]; 1724[label="vwx3002 == vwx4002",fontsize=16,color="magenta"];1724 -> 2067[label="",style="dashed", color="magenta", weight=3]; 1724 -> 2068[label="",style="dashed", color="magenta", weight=3]; 1725 -> 368[label="",style="dashed", color="red", weight=0]; 1725[label="vwx3002 == vwx4002",fontsize=16,color="magenta"];1725 -> 2069[label="",style="dashed", color="magenta", weight=3]; 1725 -> 2070[label="",style="dashed", color="magenta", weight=3]; 1726 -> 369[label="",style="dashed", color="red", weight=0]; 1726[label="vwx3002 == vwx4002",fontsize=16,color="magenta"];1726 -> 2071[label="",style="dashed", color="magenta", weight=3]; 1726 -> 2072[label="",style="dashed", color="magenta", weight=3]; 1727 -> 370[label="",style="dashed", color="red", weight=0]; 1727[label="vwx3002 == vwx4002",fontsize=16,color="magenta"];1727 -> 2073[label="",style="dashed", color="magenta", weight=3]; 1727 -> 2074[label="",style="dashed", color="magenta", weight=3]; 1728 -> 371[label="",style="dashed", color="red", weight=0]; 1728[label="vwx3002 == vwx4002",fontsize=16,color="magenta"];1728 -> 2075[label="",style="dashed", color="magenta", weight=3]; 1728 -> 2076[label="",style="dashed", color="magenta", weight=3]; 1729 -> 372[label="",style="dashed", color="red", weight=0]; 1729[label="vwx3002 == vwx4002",fontsize=16,color="magenta"];1729 -> 2077[label="",style="dashed", color="magenta", weight=3]; 1729 -> 2078[label="",style="dashed", color="magenta", weight=3]; 1730 -> 373[label="",style="dashed", color="red", weight=0]; 1730[label="vwx3002 == vwx4002",fontsize=16,color="magenta"];1730 -> 2079[label="",style="dashed", color="magenta", weight=3]; 1730 -> 2080[label="",style="dashed", color="magenta", weight=3]; 1731 -> 374[label="",style="dashed", color="red", weight=0]; 1731[label="vwx3002 == vwx4002",fontsize=16,color="magenta"];1731 -> 2081[label="",style="dashed", color="magenta", weight=3]; 1731 -> 2082[label="",style="dashed", color="magenta", weight=3]; 1732 -> 375[label="",style="dashed", color="red", weight=0]; 1732[label="vwx3002 == vwx4002",fontsize=16,color="magenta"];1732 -> 2083[label="",style="dashed", color="magenta", weight=3]; 1732 -> 2084[label="",style="dashed", color="magenta", weight=3]; 1733 -> 376[label="",style="dashed", color="red", weight=0]; 1733[label="vwx3002 == vwx4002",fontsize=16,color="magenta"];1733 -> 2085[label="",style="dashed", color="magenta", weight=3]; 1733 -> 2086[label="",style="dashed", color="magenta", weight=3]; 1734 -> 377[label="",style="dashed", color="red", weight=0]; 1734[label="vwx3002 == vwx4002",fontsize=16,color="magenta"];1734 -> 2087[label="",style="dashed", color="magenta", weight=3]; 1734 -> 2088[label="",style="dashed", color="magenta", weight=3]; 1735 -> 364[label="",style="dashed", color="red", weight=0]; 1735[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];1735 -> 2089[label="",style="dashed", color="magenta", weight=3]; 1735 -> 2090[label="",style="dashed", color="magenta", weight=3]; 1736 -> 365[label="",style="dashed", color="red", weight=0]; 1736[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];1736 -> 2091[label="",style="dashed", color="magenta", weight=3]; 1736 -> 2092[label="",style="dashed", color="magenta", weight=3]; 1737 -> 366[label="",style="dashed", color="red", weight=0]; 1737[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];1737 -> 2093[label="",style="dashed", color="magenta", weight=3]; 1737 -> 2094[label="",style="dashed", color="magenta", weight=3]; 1738 -> 367[label="",style="dashed", color="red", weight=0]; 1738[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];1738 -> 2095[label="",style="dashed", color="magenta", weight=3]; 1738 -> 2096[label="",style="dashed", color="magenta", weight=3]; 1739 -> 368[label="",style="dashed", color="red", weight=0]; 1739[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];1739 -> 2097[label="",style="dashed", color="magenta", weight=3]; 1739 -> 2098[label="",style="dashed", color="magenta", weight=3]; 1740 -> 369[label="",style="dashed", color="red", weight=0]; 1740[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];1740 -> 2099[label="",style="dashed", color="magenta", weight=3]; 1740 -> 2100[label="",style="dashed", color="magenta", weight=3]; 1741 -> 370[label="",style="dashed", color="red", weight=0]; 1741[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];1741 -> 2101[label="",style="dashed", color="magenta", weight=3]; 1741 -> 2102[label="",style="dashed", color="magenta", weight=3]; 1742 -> 371[label="",style="dashed", color="red", weight=0]; 1742[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];1742 -> 2103[label="",style="dashed", color="magenta", weight=3]; 1742 -> 2104[label="",style="dashed", color="magenta", weight=3]; 1743 -> 372[label="",style="dashed", color="red", weight=0]; 1743[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];1743 -> 2105[label="",style="dashed", color="magenta", weight=3]; 1743 -> 2106[label="",style="dashed", color="magenta", weight=3]; 1744 -> 373[label="",style="dashed", color="red", weight=0]; 1744[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];1744 -> 2107[label="",style="dashed", color="magenta", weight=3]; 1744 -> 2108[label="",style="dashed", color="magenta", weight=3]; 1745 -> 374[label="",style="dashed", color="red", weight=0]; 1745[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];1745 -> 2109[label="",style="dashed", color="magenta", weight=3]; 1745 -> 2110[label="",style="dashed", color="magenta", weight=3]; 1746 -> 375[label="",style="dashed", color="red", weight=0]; 1746[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];1746 -> 2111[label="",style="dashed", color="magenta", weight=3]; 1746 -> 2112[label="",style="dashed", color="magenta", weight=3]; 1747 -> 376[label="",style="dashed", color="red", weight=0]; 1747[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];1747 -> 2113[label="",style="dashed", color="magenta", weight=3]; 1747 -> 2114[label="",style="dashed", color="magenta", weight=3]; 1748 -> 377[label="",style="dashed", color="red", weight=0]; 1748[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];1748 -> 2115[label="",style="dashed", color="magenta", weight=3]; 1748 -> 2116[label="",style="dashed", color="magenta", weight=3]; 1749[label="vwx3000",fontsize=16,color="green",shape="box"];1750[label="vwx4000",fontsize=16,color="green",shape="box"];1751[label="vwx3000",fontsize=16,color="green",shape="box"];1752[label="vwx4000",fontsize=16,color="green",shape="box"];1753[label="vwx3000",fontsize=16,color="green",shape="box"];1754[label="vwx4000",fontsize=16,color="green",shape="box"];1755[label="vwx3000",fontsize=16,color="green",shape="box"];1756[label="vwx4000",fontsize=16,color="green",shape="box"];1757[label="vwx3000",fontsize=16,color="green",shape="box"];1758[label="vwx4000",fontsize=16,color="green",shape="box"];1759[label="vwx3000",fontsize=16,color="green",shape="box"];1760[label="vwx4000",fontsize=16,color="green",shape="box"];1761[label="vwx3000",fontsize=16,color="green",shape="box"];1762[label="vwx4000",fontsize=16,color="green",shape="box"];1763[label="vwx3000",fontsize=16,color="green",shape="box"];1764[label="vwx4000",fontsize=16,color="green",shape="box"];1765[label="vwx3000",fontsize=16,color="green",shape="box"];1766[label="vwx4000",fontsize=16,color="green",shape="box"];1767[label="vwx3000",fontsize=16,color="green",shape="box"];1768[label="vwx4000",fontsize=16,color="green",shape="box"];1769[label="vwx3000",fontsize=16,color="green",shape="box"];1770[label="vwx4000",fontsize=16,color="green",shape="box"];1771[label="vwx3000",fontsize=16,color="green",shape="box"];1772[label="vwx4000",fontsize=16,color="green",shape="box"];1773[label="vwx3000",fontsize=16,color="green",shape="box"];1774[label="vwx4000",fontsize=16,color="green",shape="box"];1775[label="vwx3000",fontsize=16,color="green",shape="box"];1776[label="vwx4000",fontsize=16,color="green",shape="box"];1777[label="vwx3001",fontsize=16,color="green",shape="box"];1778[label="vwx4001",fontsize=16,color="green",shape="box"];1779[label="vwx3001",fontsize=16,color="green",shape="box"];1780[label="vwx4001",fontsize=16,color="green",shape="box"];1781[label="vwx3001",fontsize=16,color="green",shape="box"];1782[label="vwx4001",fontsize=16,color="green",shape="box"];1783[label="vwx3001",fontsize=16,color="green",shape="box"];1784[label="vwx4001",fontsize=16,color="green",shape="box"];1785[label="vwx3001",fontsize=16,color="green",shape="box"];1786[label="vwx4001",fontsize=16,color="green",shape="box"];1787[label="vwx3001",fontsize=16,color="green",shape="box"];1788[label="vwx4001",fontsize=16,color="green",shape="box"];1789[label="vwx3001",fontsize=16,color="green",shape="box"];1790[label="vwx4001",fontsize=16,color="green",shape="box"];1791[label="vwx3001",fontsize=16,color="green",shape="box"];1792[label="vwx4001",fontsize=16,color="green",shape="box"];1793[label="vwx3001",fontsize=16,color="green",shape="box"];1794[label="vwx4001",fontsize=16,color="green",shape="box"];1795[label="vwx3001",fontsize=16,color="green",shape="box"];1796[label="vwx4001",fontsize=16,color="green",shape="box"];1797[label="vwx3001",fontsize=16,color="green",shape="box"];1798[label="vwx4001",fontsize=16,color="green",shape="box"];1799[label="vwx3001",fontsize=16,color="green",shape="box"];1800[label="vwx4001",fontsize=16,color="green",shape="box"];1801[label="vwx3001",fontsize=16,color="green",shape="box"];1802[label="vwx4001",fontsize=16,color="green",shape="box"];1803[label="vwx3001",fontsize=16,color="green",shape="box"];1804[label="vwx4001",fontsize=16,color="green",shape="box"];1805[label="vwx3000",fontsize=16,color="green",shape="box"];1806[label="vwx4000",fontsize=16,color="green",shape="box"];1807[label="vwx3000",fontsize=16,color="green",shape="box"];1808[label="vwx4000",fontsize=16,color="green",shape="box"];1809[label="vwx3000",fontsize=16,color="green",shape="box"];1810[label="vwx4000",fontsize=16,color="green",shape="box"];1811[label="vwx3000",fontsize=16,color="green",shape="box"];1812[label="vwx4000",fontsize=16,color="green",shape="box"];1813[label="vwx3000",fontsize=16,color="green",shape="box"];1814[label="vwx4000",fontsize=16,color="green",shape="box"];1815[label="vwx3000",fontsize=16,color="green",shape="box"];1816[label="vwx4000",fontsize=16,color="green",shape="box"];1817[label="vwx3000",fontsize=16,color="green",shape="box"];1818[label="vwx4000",fontsize=16,color="green",shape="box"];1819[label="vwx3000",fontsize=16,color="green",shape="box"];1820[label="vwx4000",fontsize=16,color="green",shape="box"];1821[label="vwx3000",fontsize=16,color="green",shape="box"];1822[label="vwx4000",fontsize=16,color="green",shape="box"];1823[label="vwx3000",fontsize=16,color="green",shape="box"];1824[label="vwx4000",fontsize=16,color="green",shape="box"];1825[label="vwx3000",fontsize=16,color="green",shape="box"];1826[label="vwx4000",fontsize=16,color="green",shape="box"];1827[label="vwx3000",fontsize=16,color="green",shape="box"];1828[label="vwx4000",fontsize=16,color="green",shape="box"];1829[label="vwx3000",fontsize=16,color="green",shape="box"];1830[label="vwx4000",fontsize=16,color="green",shape="box"];1831[label="vwx3000",fontsize=16,color="green",shape="box"];1832[label="vwx4000",fontsize=16,color="green",shape="box"];1833[label="vwx3000",fontsize=16,color="green",shape="box"];1834[label="vwx4000",fontsize=16,color="green",shape="box"];1835[label="vwx3000",fontsize=16,color="green",shape="box"];1836[label="vwx4000",fontsize=16,color="green",shape="box"];1837[label="vwx3000",fontsize=16,color="green",shape="box"];1838[label="vwx4000",fontsize=16,color="green",shape="box"];1839[label="vwx3000",fontsize=16,color="green",shape="box"];1840[label="vwx4000",fontsize=16,color="green",shape="box"];1841[label="vwx3000",fontsize=16,color="green",shape="box"];1842[label="vwx4000",fontsize=16,color="green",shape="box"];1843[label="vwx3000",fontsize=16,color="green",shape="box"];1844[label="vwx4000",fontsize=16,color="green",shape="box"];1845[label="vwx3000",fontsize=16,color="green",shape="box"];1846[label="vwx4000",fontsize=16,color="green",shape="box"];1847[label="vwx3000",fontsize=16,color="green",shape="box"];1848[label="vwx4000",fontsize=16,color="green",shape="box"];1849[label="vwx3000",fontsize=16,color="green",shape="box"];1850[label="vwx4000",fontsize=16,color="green",shape="box"];1851[label="vwx3000",fontsize=16,color="green",shape="box"];1852[label="vwx4000",fontsize=16,color="green",shape="box"];1853[label="vwx3000",fontsize=16,color="green",shape="box"];1854[label="vwx4000",fontsize=16,color="green",shape="box"];1855[label="vwx3000",fontsize=16,color="green",shape="box"];1856[label="vwx4000",fontsize=16,color="green",shape="box"];1857[label="vwx3000",fontsize=16,color="green",shape="box"];1858[label="vwx4000",fontsize=16,color="green",shape="box"];1859[label="vwx3000",fontsize=16,color="green",shape="box"];1860[label="vwx4000",fontsize=16,color="green",shape="box"];1861 -> 1203[label="",style="dashed", color="red", weight=0]; 1861[label="primEqNat vwx30000 vwx40000",fontsize=16,color="magenta"];1861 -> 2117[label="",style="dashed", color="magenta", weight=3]; 1861 -> 2118[label="",style="dashed", color="magenta", weight=3]; 1862[label="False",fontsize=16,color="green",shape="box"];1863[label="False",fontsize=16,color="green",shape="box"];1864[label="True",fontsize=16,color="green",shape="box"];1865[label="False",fontsize=16,color="green",shape="box"];1866[label="True",fontsize=16,color="green",shape="box"];1867 -> 1203[label="",style="dashed", color="red", weight=0]; 1867[label="primEqNat vwx30000 vwx40000",fontsize=16,color="magenta"];1867 -> 2119[label="",style="dashed", color="magenta", weight=3]; 1867 -> 2120[label="",style="dashed", color="magenta", weight=3]; 1868[label="False",fontsize=16,color="green",shape="box"];1869[label="False",fontsize=16,color="green",shape="box"];1870[label="True",fontsize=16,color="green",shape="box"];1871[label="False",fontsize=16,color="green",shape="box"];1872[label="True",fontsize=16,color="green",shape="box"];1873[label="vwx3000",fontsize=16,color="green",shape="box"];1874[label="vwx4001",fontsize=16,color="green",shape="box"];1875[label="vwx3001",fontsize=16,color="green",shape="box"];1876[label="vwx4000",fontsize=16,color="green",shape="box"];1878 -> 112[label="",style="dashed", color="red", weight=0]; 1878[label="compare vwx25 vwx26",fontsize=16,color="magenta"];1878 -> 2121[label="",style="dashed", color="magenta", weight=3]; 1878 -> 2122[label="",style="dashed", color="magenta", weight=3]; 1877[label="vwx163 /= GT",fontsize=16,color="black",shape="triangle"];1877 -> 2123[label="",style="solid", color="black", weight=3]; 1879 -> 78[label="",style="dashed", color="red", weight=0]; 1879[label="compare vwx25 vwx26",fontsize=16,color="magenta"];1879 -> 2124[label="",style="dashed", color="magenta", weight=3]; 1879 -> 2125[label="",style="dashed", color="magenta", weight=3]; 1886[label="LT <= LT",fontsize=16,color="black",shape="box"];1886 -> 2126[label="",style="solid", color="black", weight=3]; 1887[label="LT <= EQ",fontsize=16,color="black",shape="box"];1887 -> 2127[label="",style="solid", color="black", weight=3]; 1888[label="LT <= GT",fontsize=16,color="black",shape="box"];1888 -> 2128[label="",style="solid", color="black", weight=3]; 1889[label="EQ <= LT",fontsize=16,color="black",shape="box"];1889 -> 2129[label="",style="solid", color="black", weight=3]; 1890[label="EQ <= EQ",fontsize=16,color="black",shape="box"];1890 -> 2130[label="",style="solid", color="black", weight=3]; 1891[label="EQ <= GT",fontsize=16,color="black",shape="box"];1891 -> 2131[label="",style="solid", color="black", weight=3]; 1892[label="GT <= LT",fontsize=16,color="black",shape="box"];1892 -> 2132[label="",style="solid", color="black", weight=3]; 1893[label="GT <= EQ",fontsize=16,color="black",shape="box"];1893 -> 2133[label="",style="solid", color="black", weight=3]; 1894[label="GT <= GT",fontsize=16,color="black",shape="box"];1894 -> 2134[label="",style="solid", color="black", weight=3]; 1880 -> 115[label="",style="dashed", color="red", weight=0]; 1880[label="compare vwx25 vwx26",fontsize=16,color="magenta"];1880 -> 2135[label="",style="dashed", color="magenta", weight=3]; 1880 -> 2136[label="",style="dashed", color="magenta", weight=3]; 1895[label="Left vwx250 <= Left vwx260",fontsize=16,color="black",shape="box"];1895 -> 2137[label="",style="solid", color="black", weight=3]; 1896[label="Left vwx250 <= Right vwx260",fontsize=16,color="black",shape="box"];1896 -> 2138[label="",style="solid", color="black", weight=3]; 1897[label="Right vwx250 <= Left vwx260",fontsize=16,color="black",shape="box"];1897 -> 2139[label="",style="solid", color="black", weight=3]; 1898[label="Right vwx250 <= Right vwx260",fontsize=16,color="black",shape="box"];1898 -> 2140[label="",style="solid", color="black", weight=3]; 1881 -> 117[label="",style="dashed", color="red", weight=0]; 1881[label="compare vwx25 vwx26",fontsize=16,color="magenta"];1881 -> 2141[label="",style="dashed", color="magenta", weight=3]; 1881 -> 2142[label="",style="dashed", color="magenta", weight=3]; 1882 -> 118[label="",style="dashed", color="red", weight=0]; 1882[label="compare vwx25 vwx26",fontsize=16,color="magenta"];1882 -> 2143[label="",style="dashed", color="magenta", weight=3]; 1882 -> 2144[label="",style="dashed", color="magenta", weight=3]; 1899[label="(vwx250,vwx251,vwx252) <= (vwx260,vwx261,vwx262)",fontsize=16,color="black",shape="box"];1899 -> 2145[label="",style="solid", color="black", weight=3]; 1883 -> 120[label="",style="dashed", color="red", weight=0]; 1883[label="compare vwx25 vwx26",fontsize=16,color="magenta"];1883 -> 2146[label="",style="dashed", color="magenta", weight=3]; 1883 -> 2147[label="",style="dashed", color="magenta", weight=3]; 1884 -> 121[label="",style="dashed", color="red", weight=0]; 1884[label="compare vwx25 vwx26",fontsize=16,color="magenta"];1884 -> 2148[label="",style="dashed", color="magenta", weight=3]; 1884 -> 2149[label="",style="dashed", color="magenta", weight=3]; 1885 -> 122[label="",style="dashed", color="red", weight=0]; 1885[label="compare vwx25 vwx26",fontsize=16,color="magenta"];1885 -> 2150[label="",style="dashed", color="magenta", weight=3]; 1885 -> 2151[label="",style="dashed", color="magenta", weight=3]; 1900[label="False <= False",fontsize=16,color="black",shape="box"];1900 -> 2152[label="",style="solid", color="black", weight=3]; 1901[label="False <= True",fontsize=16,color="black",shape="box"];1901 -> 2153[label="",style="solid", color="black", weight=3]; 1902[label="True <= False",fontsize=16,color="black",shape="box"];1902 -> 2154[label="",style="solid", color="black", weight=3]; 1903[label="True <= True",fontsize=16,color="black",shape="box"];1903 -> 2155[label="",style="solid", color="black", weight=3]; 1904[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];1904 -> 2156[label="",style="solid", color="black", weight=3]; 1905[label="Nothing <= Just vwx260",fontsize=16,color="black",shape="box"];1905 -> 2157[label="",style="solid", color="black", weight=3]; 1906[label="Just vwx250 <= Nothing",fontsize=16,color="black",shape="box"];1906 -> 2158[label="",style="solid", color="black", weight=3]; 1907[label="Just vwx250 <= Just vwx260",fontsize=16,color="black",shape="box"];1907 -> 2159[label="",style="solid", color="black", weight=3]; 1908[label="(vwx250,vwx251) <= (vwx260,vwx261)",fontsize=16,color="black",shape="box"];1908 -> 2160[label="",style="solid", color="black", weight=3]; 1909[label="GT",fontsize=16,color="green",shape="box"];1910[label="GT",fontsize=16,color="green",shape="box"];1918 -> 1296[label="",style="dashed", color="red", weight=0]; 1918[label="vwx77 < vwx80",fontsize=16,color="magenta"];1918 -> 2161[label="",style="dashed", color="magenta", weight=3]; 1918 -> 2162[label="",style="dashed", color="magenta", weight=3]; 1919 -> 1297[label="",style="dashed", color="red", weight=0]; 1919[label="vwx77 < vwx80",fontsize=16,color="magenta"];1919 -> 2163[label="",style="dashed", color="magenta", weight=3]; 1919 -> 2164[label="",style="dashed", color="magenta", weight=3]; 1920 -> 1298[label="",style="dashed", color="red", weight=0]; 1920[label="vwx77 < vwx80",fontsize=16,color="magenta"];1920 -> 2165[label="",style="dashed", color="magenta", weight=3]; 1920 -> 2166[label="",style="dashed", color="magenta", weight=3]; 1921 -> 1299[label="",style="dashed", color="red", weight=0]; 1921[label="vwx77 < vwx80",fontsize=16,color="magenta"];1921 -> 2167[label="",style="dashed", color="magenta", weight=3]; 1921 -> 2168[label="",style="dashed", color="magenta", weight=3]; 1922 -> 1300[label="",style="dashed", color="red", weight=0]; 1922[label="vwx77 < vwx80",fontsize=16,color="magenta"];1922 -> 2169[label="",style="dashed", color="magenta", weight=3]; 1922 -> 2170[label="",style="dashed", color="magenta", weight=3]; 1923 -> 1301[label="",style="dashed", color="red", weight=0]; 1923[label="vwx77 < vwx80",fontsize=16,color="magenta"];1923 -> 2171[label="",style="dashed", color="magenta", weight=3]; 1923 -> 2172[label="",style="dashed", color="magenta", weight=3]; 1924 -> 1302[label="",style="dashed", color="red", weight=0]; 1924[label="vwx77 < vwx80",fontsize=16,color="magenta"];1924 -> 2173[label="",style="dashed", color="magenta", weight=3]; 1924 -> 2174[label="",style="dashed", color="magenta", weight=3]; 1925 -> 1303[label="",style="dashed", color="red", weight=0]; 1925[label="vwx77 < vwx80",fontsize=16,color="magenta"];1925 -> 2175[label="",style="dashed", color="magenta", weight=3]; 1925 -> 2176[label="",style="dashed", color="magenta", weight=3]; 1926 -> 1304[label="",style="dashed", color="red", weight=0]; 1926[label="vwx77 < vwx80",fontsize=16,color="magenta"];1926 -> 2177[label="",style="dashed", color="magenta", weight=3]; 1926 -> 2178[label="",style="dashed", color="magenta", weight=3]; 1927 -> 1305[label="",style="dashed", color="red", weight=0]; 1927[label="vwx77 < vwx80",fontsize=16,color="magenta"];1927 -> 2179[label="",style="dashed", color="magenta", weight=3]; 1927 -> 2180[label="",style="dashed", color="magenta", weight=3]; 1928 -> 1306[label="",style="dashed", color="red", weight=0]; 1928[label="vwx77 < vwx80",fontsize=16,color="magenta"];1928 -> 2181[label="",style="dashed", color="magenta", weight=3]; 1928 -> 2182[label="",style="dashed", color="magenta", weight=3]; 1929 -> 1307[label="",style="dashed", color="red", weight=0]; 1929[label="vwx77 < vwx80",fontsize=16,color="magenta"];1929 -> 2183[label="",style="dashed", color="magenta", weight=3]; 1929 -> 2184[label="",style="dashed", color="magenta", weight=3]; 1930 -> 1308[label="",style="dashed", color="red", weight=0]; 1930[label="vwx77 < vwx80",fontsize=16,color="magenta"];1930 -> 2185[label="",style="dashed", color="magenta", weight=3]; 1930 -> 2186[label="",style="dashed", color="magenta", weight=3]; 1931 -> 1309[label="",style="dashed", color="red", weight=0]; 1931[label="vwx77 < vwx80",fontsize=16,color="magenta"];1931 -> 2187[label="",style="dashed", color="magenta", weight=3]; 1931 -> 2188[label="",style="dashed", color="magenta", weight=3]; 1932[label="vwx78 <= vwx81",fontsize=16,color="blue",shape="box"];3459[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1932 -> 3459[label="",style="solid", color="blue", weight=9]; 3459 -> 2189[label="",style="solid", color="blue", weight=3]; 3460[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1932 -> 3460[label="",style="solid", color="blue", weight=9]; 3460 -> 2190[label="",style="solid", color="blue", weight=3]; 3461[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1932 -> 3461[label="",style="solid", color="blue", weight=9]; 3461 -> 2191[label="",style="solid", color="blue", weight=3]; 3462[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1932 -> 3462[label="",style="solid", color="blue", weight=9]; 3462 -> 2192[label="",style="solid", color="blue", weight=3]; 3463[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1932 -> 3463[label="",style="solid", color="blue", weight=9]; 3463 -> 2193[label="",style="solid", color="blue", weight=3]; 3464[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1932 -> 3464[label="",style="solid", color="blue", weight=9]; 3464 -> 2194[label="",style="solid", color="blue", weight=3]; 3465[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1932 -> 3465[label="",style="solid", color="blue", weight=9]; 3465 -> 2195[label="",style="solid", color="blue", weight=3]; 3466[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1932 -> 3466[label="",style="solid", color="blue", weight=9]; 3466 -> 2196[label="",style="solid", color="blue", weight=3]; 3467[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1932 -> 3467[label="",style="solid", color="blue", weight=9]; 3467 -> 2197[label="",style="solid", color="blue", weight=3]; 3468[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1932 -> 3468[label="",style="solid", color="blue", weight=9]; 3468 -> 2198[label="",style="solid", color="blue", weight=3]; 3469[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1932 -> 3469[label="",style="solid", color="blue", weight=9]; 3469 -> 2199[label="",style="solid", color="blue", weight=3]; 3470[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1932 -> 3470[label="",style="solid", color="blue", weight=9]; 3470 -> 2200[label="",style="solid", color="blue", weight=3]; 3471[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1932 -> 3471[label="",style="solid", color="blue", weight=9]; 3471 -> 2201[label="",style="solid", color="blue", weight=3]; 3472[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1932 -> 3472[label="",style="solid", color="blue", weight=9]; 3472 -> 2202[label="",style="solid", color="blue", weight=3]; 1933[label="vwx77 == vwx80",fontsize=16,color="blue",shape="box"];3473[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1933 -> 3473[label="",style="solid", color="blue", weight=9]; 3473 -> 2203[label="",style="solid", color="blue", weight=3]; 3474[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1933 -> 3474[label="",style="solid", color="blue", weight=9]; 3474 -> 2204[label="",style="solid", color="blue", weight=3]; 3475[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1933 -> 3475[label="",style="solid", color="blue", weight=9]; 3475 -> 2205[label="",style="solid", color="blue", weight=3]; 3476[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1933 -> 3476[label="",style="solid", color="blue", weight=9]; 3476 -> 2206[label="",style="solid", color="blue", weight=3]; 3477[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1933 -> 3477[label="",style="solid", color="blue", weight=9]; 3477 -> 2207[label="",style="solid", color="blue", weight=3]; 3478[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1933 -> 3478[label="",style="solid", color="blue", weight=9]; 3478 -> 2208[label="",style="solid", color="blue", weight=3]; 3479[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1933 -> 3479[label="",style="solid", color="blue", weight=9]; 3479 -> 2209[label="",style="solid", color="blue", weight=3]; 3480[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1933 -> 3480[label="",style="solid", color="blue", weight=9]; 3480 -> 2210[label="",style="solid", color="blue", weight=3]; 3481[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1933 -> 3481[label="",style="solid", color="blue", weight=9]; 3481 -> 2211[label="",style="solid", color="blue", weight=3]; 3482[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1933 -> 3482[label="",style="solid", color="blue", weight=9]; 3482 -> 2212[label="",style="solid", color="blue", weight=3]; 3483[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1933 -> 3483[label="",style="solid", color="blue", weight=9]; 3483 -> 2213[label="",style="solid", color="blue", weight=3]; 3484[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1933 -> 3484[label="",style="solid", color="blue", weight=9]; 3484 -> 2214[label="",style="solid", color="blue", weight=3]; 3485[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1933 -> 3485[label="",style="solid", color="blue", weight=9]; 3485 -> 2215[label="",style="solid", color="blue", weight=3]; 3486[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1933 -> 3486[label="",style="solid", color="blue", weight=9]; 3486 -> 2216[label="",style="solid", color="blue", weight=3]; 1934[label="False || vwx168",fontsize=16,color="black",shape="box"];1934 -> 2217[label="",style="solid", color="black", weight=3]; 1935[label="True || vwx168",fontsize=16,color="black",shape="box"];1935 -> 2218[label="",style="solid", color="black", weight=3]; 1936[label="vwx76",fontsize=16,color="green",shape="box"];1937[label="vwx79",fontsize=16,color="green",shape="box"];1938[label="vwx76",fontsize=16,color="green",shape="box"];1939[label="vwx79",fontsize=16,color="green",shape="box"];1940[label="vwx76",fontsize=16,color="green",shape="box"];1941[label="vwx79",fontsize=16,color="green",shape="box"];1942[label="vwx76",fontsize=16,color="green",shape="box"];1943[label="vwx79",fontsize=16,color="green",shape="box"];1944[label="vwx76",fontsize=16,color="green",shape="box"];1945[label="vwx79",fontsize=16,color="green",shape="box"];1946[label="vwx76",fontsize=16,color="green",shape="box"];1947[label="vwx79",fontsize=16,color="green",shape="box"];1948[label="vwx76",fontsize=16,color="green",shape="box"];1949[label="vwx79",fontsize=16,color="green",shape="box"];1950[label="vwx76",fontsize=16,color="green",shape="box"];1951[label="vwx79",fontsize=16,color="green",shape="box"];1952[label="vwx76",fontsize=16,color="green",shape="box"];1953[label="vwx79",fontsize=16,color="green",shape="box"];1954[label="vwx76",fontsize=16,color="green",shape="box"];1955[label="vwx79",fontsize=16,color="green",shape="box"];1956[label="vwx76",fontsize=16,color="green",shape="box"];1957[label="vwx79",fontsize=16,color="green",shape="box"];1958[label="vwx76",fontsize=16,color="green",shape="box"];1959[label="vwx79",fontsize=16,color="green",shape="box"];1960[label="vwx76",fontsize=16,color="green",shape="box"];1961[label="vwx79",fontsize=16,color="green",shape="box"];1962[label="vwx76",fontsize=16,color="green",shape="box"];1963[label="vwx79",fontsize=16,color="green",shape="box"];1964 -> 112[label="",style="dashed", color="red", weight=0]; 1964[label="compare vwx76 vwx79",fontsize=16,color="magenta"];1964 -> 2219[label="",style="dashed", color="magenta", weight=3]; 1964 -> 2220[label="",style="dashed", color="magenta", weight=3]; 1965[label="LT",fontsize=16,color="green",shape="box"];1966 -> 78[label="",style="dashed", color="red", weight=0]; 1966[label="compare vwx76 vwx79",fontsize=16,color="magenta"];1966 -> 2221[label="",style="dashed", color="magenta", weight=3]; 1966 -> 2222[label="",style="dashed", color="magenta", weight=3]; 1967[label="LT",fontsize=16,color="green",shape="box"];1968 -> 114[label="",style="dashed", color="red", weight=0]; 1968[label="compare vwx76 vwx79",fontsize=16,color="magenta"];1968 -> 2223[label="",style="dashed", color="magenta", weight=3]; 1968 -> 2224[label="",style="dashed", color="magenta", weight=3]; 1969[label="LT",fontsize=16,color="green",shape="box"];1970 -> 115[label="",style="dashed", color="red", weight=0]; 1970[label="compare vwx76 vwx79",fontsize=16,color="magenta"];1970 -> 2225[label="",style="dashed", color="magenta", weight=3]; 1970 -> 2226[label="",style="dashed", color="magenta", weight=3]; 1971[label="LT",fontsize=16,color="green",shape="box"];1972 -> 116[label="",style="dashed", color="red", weight=0]; 1972[label="compare vwx76 vwx79",fontsize=16,color="magenta"];1972 -> 2227[label="",style="dashed", color="magenta", weight=3]; 1972 -> 2228[label="",style="dashed", color="magenta", weight=3]; 1973[label="LT",fontsize=16,color="green",shape="box"];1974 -> 117[label="",style="dashed", color="red", weight=0]; 1974[label="compare vwx76 vwx79",fontsize=16,color="magenta"];1974 -> 2229[label="",style="dashed", color="magenta", weight=3]; 1974 -> 2230[label="",style="dashed", color="magenta", weight=3]; 1975[label="LT",fontsize=16,color="green",shape="box"];1976 -> 118[label="",style="dashed", color="red", weight=0]; 1976[label="compare vwx76 vwx79",fontsize=16,color="magenta"];1976 -> 2231[label="",style="dashed", color="magenta", weight=3]; 1976 -> 2232[label="",style="dashed", color="magenta", weight=3]; 1977[label="LT",fontsize=16,color="green",shape="box"];1978 -> 119[label="",style="dashed", color="red", weight=0]; 1978[label="compare vwx76 vwx79",fontsize=16,color="magenta"];1978 -> 2233[label="",style="dashed", color="magenta", weight=3]; 1978 -> 2234[label="",style="dashed", color="magenta", weight=3]; 1979[label="LT",fontsize=16,color="green",shape="box"];1980 -> 120[label="",style="dashed", color="red", weight=0]; 1980[label="compare vwx76 vwx79",fontsize=16,color="magenta"];1980 -> 2235[label="",style="dashed", color="magenta", weight=3]; 1980 -> 2236[label="",style="dashed", color="magenta", weight=3]; 1981[label="LT",fontsize=16,color="green",shape="box"];1982 -> 121[label="",style="dashed", color="red", weight=0]; 1982[label="compare vwx76 vwx79",fontsize=16,color="magenta"];1982 -> 2237[label="",style="dashed", color="magenta", weight=3]; 1982 -> 2238[label="",style="dashed", color="magenta", weight=3]; 1983[label="LT",fontsize=16,color="green",shape="box"];1984 -> 122[label="",style="dashed", color="red", weight=0]; 1984[label="compare vwx76 vwx79",fontsize=16,color="magenta"];1984 -> 2239[label="",style="dashed", color="magenta", weight=3]; 1984 -> 2240[label="",style="dashed", color="magenta", weight=3]; 1985[label="LT",fontsize=16,color="green",shape="box"];1986 -> 123[label="",style="dashed", color="red", weight=0]; 1986[label="compare vwx76 vwx79",fontsize=16,color="magenta"];1986 -> 2241[label="",style="dashed", color="magenta", weight=3]; 1986 -> 2242[label="",style="dashed", color="magenta", weight=3]; 1987[label="LT",fontsize=16,color="green",shape="box"];1988 -> 124[label="",style="dashed", color="red", weight=0]; 1988[label="compare vwx76 vwx79",fontsize=16,color="magenta"];1988 -> 2243[label="",style="dashed", color="magenta", weight=3]; 1988 -> 2244[label="",style="dashed", color="magenta", weight=3]; 1989[label="LT",fontsize=16,color="green",shape="box"];1990 -> 125[label="",style="dashed", color="red", weight=0]; 1990[label="compare vwx76 vwx79",fontsize=16,color="magenta"];1990 -> 2245[label="",style="dashed", color="magenta", weight=3]; 1990 -> 2246[label="",style="dashed", color="magenta", weight=3]; 1991[label="LT",fontsize=16,color="green",shape="box"];1992[label="compare1 (vwx141,vwx142,vwx143) (vwx144,vwx145,vwx146) False",fontsize=16,color="black",shape="box"];1992 -> 2247[label="",style="solid", color="black", weight=3]; 1993[label="compare1 (vwx141,vwx142,vwx143) (vwx144,vwx145,vwx146) True",fontsize=16,color="black",shape="box"];1993 -> 2248[label="",style="solid", color="black", weight=3]; 1994[label="True",fontsize=16,color="green",shape="box"];1995[label="GT",fontsize=16,color="green",shape="box"];1996[label="vwx92",fontsize=16,color="green",shape="box"];1997[label="vwx90",fontsize=16,color="green",shape="box"];1998[label="vwx92",fontsize=16,color="green",shape="box"];1999[label="vwx90",fontsize=16,color="green",shape="box"];2000[label="vwx92",fontsize=16,color="green",shape="box"];2001[label="vwx90",fontsize=16,color="green",shape="box"];2002[label="vwx92",fontsize=16,color="green",shape="box"];2003[label="vwx90",fontsize=16,color="green",shape="box"];2004[label="vwx92",fontsize=16,color="green",shape="box"];2005[label="vwx90",fontsize=16,color="green",shape="box"];2006[label="vwx92",fontsize=16,color="green",shape="box"];2007[label="vwx90",fontsize=16,color="green",shape="box"];2008[label="vwx92",fontsize=16,color="green",shape="box"];2009[label="vwx90",fontsize=16,color="green",shape="box"];2010[label="vwx92",fontsize=16,color="green",shape="box"];2011[label="vwx90",fontsize=16,color="green",shape="box"];2012[label="vwx92",fontsize=16,color="green",shape="box"];2013[label="vwx90",fontsize=16,color="green",shape="box"];2014[label="vwx92",fontsize=16,color="green",shape="box"];2015[label="vwx90",fontsize=16,color="green",shape="box"];2016[label="vwx92",fontsize=16,color="green",shape="box"];2017[label="vwx90",fontsize=16,color="green",shape="box"];2018[label="vwx92",fontsize=16,color="green",shape="box"];2019[label="vwx90",fontsize=16,color="green",shape="box"];2020[label="vwx92",fontsize=16,color="green",shape="box"];2021[label="vwx90",fontsize=16,color="green",shape="box"];2022[label="vwx92",fontsize=16,color="green",shape="box"];2023[label="vwx90",fontsize=16,color="green",shape="box"];2024[label="vwx89",fontsize=16,color="green",shape="box"];2025[label="vwx91",fontsize=16,color="green",shape="box"];2026[label="vwx89",fontsize=16,color="green",shape="box"];2027[label="vwx91",fontsize=16,color="green",shape="box"];2028[label="vwx89",fontsize=16,color="green",shape="box"];2029[label="vwx91",fontsize=16,color="green",shape="box"];2030[label="vwx89",fontsize=16,color="green",shape="box"];2031[label="vwx91",fontsize=16,color="green",shape="box"];2032[label="vwx89",fontsize=16,color="green",shape="box"];2033[label="vwx91",fontsize=16,color="green",shape="box"];2034[label="vwx89",fontsize=16,color="green",shape="box"];2035[label="vwx91",fontsize=16,color="green",shape="box"];2036[label="vwx89",fontsize=16,color="green",shape="box"];2037[label="vwx91",fontsize=16,color="green",shape="box"];2038[label="vwx89",fontsize=16,color="green",shape="box"];2039[label="vwx91",fontsize=16,color="green",shape="box"];2040[label="vwx89",fontsize=16,color="green",shape="box"];2041[label="vwx91",fontsize=16,color="green",shape="box"];2042[label="vwx89",fontsize=16,color="green",shape="box"];2043[label="vwx91",fontsize=16,color="green",shape="box"];2044[label="vwx89",fontsize=16,color="green",shape="box"];2045[label="vwx91",fontsize=16,color="green",shape="box"];2046[label="vwx89",fontsize=16,color="green",shape="box"];2047[label="vwx91",fontsize=16,color="green",shape="box"];2048[label="vwx89",fontsize=16,color="green",shape="box"];2049[label="vwx91",fontsize=16,color="green",shape="box"];2050[label="vwx89",fontsize=16,color="green",shape="box"];2051[label="vwx91",fontsize=16,color="green",shape="box"];2052[label="compare1 (vwx156,vwx157) (vwx158,vwx159) False",fontsize=16,color="black",shape="box"];2052 -> 2249[label="",style="solid", color="black", weight=3]; 2053[label="compare1 (vwx156,vwx157) (vwx158,vwx159) True",fontsize=16,color="black",shape="box"];2053 -> 2250[label="",style="solid", color="black", weight=3]; 2054[label="True",fontsize=16,color="green",shape="box"];2056 -> 761[label="",style="dashed", color="red", weight=0]; 2056[label="primMulNat vwx40000 (Succ vwx30100)",fontsize=16,color="magenta"];2056 -> 2251[label="",style="dashed", color="magenta", weight=3]; 2056 -> 2252[label="",style="dashed", color="magenta", weight=3]; 2055[label="primPlusNat vwx169 (Succ vwx30100)",fontsize=16,color="burlywood",shape="triangle"];3487[label="vwx169/Succ vwx1690",fontsize=10,color="white",style="solid",shape="box"];2055 -> 3487[label="",style="solid", color="burlywood", weight=9]; 3487 -> 2253[label="",style="solid", color="burlywood", weight=3]; 3488[label="vwx169/Zero",fontsize=10,color="white",style="solid",shape="box"];2055 -> 3488[label="",style="solid", color="burlywood", weight=9]; 3488 -> 2254[label="",style="solid", color="burlywood", weight=3]; 2057 -> 1203[label="",style="dashed", color="red", weight=0]; 2057[label="primEqNat vwx30000 vwx40000",fontsize=16,color="magenta"];2057 -> 2255[label="",style="dashed", color="magenta", weight=3]; 2057 -> 2256[label="",style="dashed", color="magenta", weight=3]; 2058[label="False",fontsize=16,color="green",shape="box"];2059[label="False",fontsize=16,color="green",shape="box"];2060[label="True",fontsize=16,color="green",shape="box"];2061[label="vwx3002",fontsize=16,color="green",shape="box"];2062[label="vwx4002",fontsize=16,color="green",shape="box"];2063[label="vwx3002",fontsize=16,color="green",shape="box"];2064[label="vwx4002",fontsize=16,color="green",shape="box"];2065[label="vwx3002",fontsize=16,color="green",shape="box"];2066[label="vwx4002",fontsize=16,color="green",shape="box"];2067[label="vwx3002",fontsize=16,color="green",shape="box"];2068[label="vwx4002",fontsize=16,color="green",shape="box"];2069[label="vwx3002",fontsize=16,color="green",shape="box"];2070[label="vwx4002",fontsize=16,color="green",shape="box"];2071[label="vwx3002",fontsize=16,color="green",shape="box"];2072[label="vwx4002",fontsize=16,color="green",shape="box"];2073[label="vwx3002",fontsize=16,color="green",shape="box"];2074[label="vwx4002",fontsize=16,color="green",shape="box"];2075[label="vwx3002",fontsize=16,color="green",shape="box"];2076[label="vwx4002",fontsize=16,color="green",shape="box"];2077[label="vwx3002",fontsize=16,color="green",shape="box"];2078[label="vwx4002",fontsize=16,color="green",shape="box"];2079[label="vwx3002",fontsize=16,color="green",shape="box"];2080[label="vwx4002",fontsize=16,color="green",shape="box"];2081[label="vwx3002",fontsize=16,color="green",shape="box"];2082[label="vwx4002",fontsize=16,color="green",shape="box"];2083[label="vwx3002",fontsize=16,color="green",shape="box"];2084[label="vwx4002",fontsize=16,color="green",shape="box"];2085[label="vwx3002",fontsize=16,color="green",shape="box"];2086[label="vwx4002",fontsize=16,color="green",shape="box"];2087[label="vwx3002",fontsize=16,color="green",shape="box"];2088[label="vwx4002",fontsize=16,color="green",shape="box"];2089[label="vwx3001",fontsize=16,color="green",shape="box"];2090[label="vwx4001",fontsize=16,color="green",shape="box"];2091[label="vwx3001",fontsize=16,color="green",shape="box"];2092[label="vwx4001",fontsize=16,color="green",shape="box"];2093[label="vwx3001",fontsize=16,color="green",shape="box"];2094[label="vwx4001",fontsize=16,color="green",shape="box"];2095[label="vwx3001",fontsize=16,color="green",shape="box"];2096[label="vwx4001",fontsize=16,color="green",shape="box"];2097[label="vwx3001",fontsize=16,color="green",shape="box"];2098[label="vwx4001",fontsize=16,color="green",shape="box"];2099[label="vwx3001",fontsize=16,color="green",shape="box"];2100[label="vwx4001",fontsize=16,color="green",shape="box"];2101[label="vwx3001",fontsize=16,color="green",shape="box"];2102[label="vwx4001",fontsize=16,color="green",shape="box"];2103[label="vwx3001",fontsize=16,color="green",shape="box"];2104[label="vwx4001",fontsize=16,color="green",shape="box"];2105[label="vwx3001",fontsize=16,color="green",shape="box"];2106[label="vwx4001",fontsize=16,color="green",shape="box"];2107[label="vwx3001",fontsize=16,color="green",shape="box"];2108[label="vwx4001",fontsize=16,color="green",shape="box"];2109[label="vwx3001",fontsize=16,color="green",shape="box"];2110[label="vwx4001",fontsize=16,color="green",shape="box"];2111[label="vwx3001",fontsize=16,color="green",shape="box"];2112[label="vwx4001",fontsize=16,color="green",shape="box"];2113[label="vwx3001",fontsize=16,color="green",shape="box"];2114[label="vwx4001",fontsize=16,color="green",shape="box"];2115[label="vwx3001",fontsize=16,color="green",shape="box"];2116[label="vwx4001",fontsize=16,color="green",shape="box"];2117[label="vwx30000",fontsize=16,color="green",shape="box"];2118[label="vwx40000",fontsize=16,color="green",shape="box"];2119[label="vwx30000",fontsize=16,color="green",shape="box"];2120[label="vwx40000",fontsize=16,color="green",shape="box"];2121[label="vwx26",fontsize=16,color="green",shape="box"];2122[label="vwx25",fontsize=16,color="green",shape="box"];2123 -> 2257[label="",style="dashed", color="red", weight=0]; 2123[label="not (vwx163 == GT)",fontsize=16,color="magenta"];2123 -> 2258[label="",style="dashed", color="magenta", weight=3]; 2124[label="vwx26",fontsize=16,color="green",shape="box"];2125[label="vwx25",fontsize=16,color="green",shape="box"];2126[label="True",fontsize=16,color="green",shape="box"];2127[label="True",fontsize=16,color="green",shape="box"];2128[label="True",fontsize=16,color="green",shape="box"];2129[label="False",fontsize=16,color="green",shape="box"];2130[label="True",fontsize=16,color="green",shape="box"];2131[label="True",fontsize=16,color="green",shape="box"];2132[label="False",fontsize=16,color="green",shape="box"];2133[label="False",fontsize=16,color="green",shape="box"];2134[label="True",fontsize=16,color="green",shape="box"];2135[label="vwx26",fontsize=16,color="green",shape="box"];2136[label="vwx25",fontsize=16,color="green",shape="box"];2137[label="vwx250 <= vwx260",fontsize=16,color="blue",shape="box"];3489[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2137 -> 3489[label="",style="solid", color="blue", weight=9]; 3489 -> 2259[label="",style="solid", color="blue", weight=3]; 3490[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2137 -> 3490[label="",style="solid", color="blue", weight=9]; 3490 -> 2260[label="",style="solid", color="blue", weight=3]; 3491[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2137 -> 3491[label="",style="solid", color="blue", weight=9]; 3491 -> 2261[label="",style="solid", color="blue", weight=3]; 3492[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2137 -> 3492[label="",style="solid", color="blue", weight=9]; 3492 -> 2262[label="",style="solid", color="blue", weight=3]; 3493[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2137 -> 3493[label="",style="solid", color="blue", weight=9]; 3493 -> 2263[label="",style="solid", color="blue", weight=3]; 3494[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2137 -> 3494[label="",style="solid", color="blue", weight=9]; 3494 -> 2264[label="",style="solid", color="blue", weight=3]; 3495[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2137 -> 3495[label="",style="solid", color="blue", weight=9]; 3495 -> 2265[label="",style="solid", color="blue", weight=3]; 3496[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2137 -> 3496[label="",style="solid", color="blue", weight=9]; 3496 -> 2266[label="",style="solid", color="blue", weight=3]; 3497[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2137 -> 3497[label="",style="solid", color="blue", weight=9]; 3497 -> 2267[label="",style="solid", color="blue", weight=3]; 3498[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2137 -> 3498[label="",style="solid", color="blue", weight=9]; 3498 -> 2268[label="",style="solid", color="blue", weight=3]; 3499[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2137 -> 3499[label="",style="solid", color="blue", weight=9]; 3499 -> 2269[label="",style="solid", color="blue", weight=3]; 3500[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2137 -> 3500[label="",style="solid", color="blue", weight=9]; 3500 -> 2270[label="",style="solid", color="blue", weight=3]; 3501[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2137 -> 3501[label="",style="solid", color="blue", weight=9]; 3501 -> 2271[label="",style="solid", color="blue", weight=3]; 3502[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2137 -> 3502[label="",style="solid", color="blue", weight=9]; 3502 -> 2272[label="",style="solid", color="blue", weight=3]; 2138[label="True",fontsize=16,color="green",shape="box"];2139[label="False",fontsize=16,color="green",shape="box"];2140[label="vwx250 <= vwx260",fontsize=16,color="blue",shape="box"];3503[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2140 -> 3503[label="",style="solid", color="blue", weight=9]; 3503 -> 2273[label="",style="solid", color="blue", weight=3]; 3504[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2140 -> 3504[label="",style="solid", color="blue", weight=9]; 3504 -> 2274[label="",style="solid", color="blue", weight=3]; 3505[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2140 -> 3505[label="",style="solid", color="blue", weight=9]; 3505 -> 2275[label="",style="solid", color="blue", weight=3]; 3506[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2140 -> 3506[label="",style="solid", color="blue", weight=9]; 3506 -> 2276[label="",style="solid", color="blue", weight=3]; 3507[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2140 -> 3507[label="",style="solid", color="blue", weight=9]; 3507 -> 2277[label="",style="solid", color="blue", weight=3]; 3508[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2140 -> 3508[label="",style="solid", color="blue", weight=9]; 3508 -> 2278[label="",style="solid", color="blue", weight=3]; 3509[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2140 -> 3509[label="",style="solid", color="blue", weight=9]; 3509 -> 2279[label="",style="solid", color="blue", weight=3]; 3510[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2140 -> 3510[label="",style="solid", color="blue", weight=9]; 3510 -> 2280[label="",style="solid", color="blue", weight=3]; 3511[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2140 -> 3511[label="",style="solid", color="blue", weight=9]; 3511 -> 2281[label="",style="solid", color="blue", weight=3]; 3512[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2140 -> 3512[label="",style="solid", color="blue", weight=9]; 3512 -> 2282[label="",style="solid", color="blue", weight=3]; 3513[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2140 -> 3513[label="",style="solid", color="blue", weight=9]; 3513 -> 2283[label="",style="solid", color="blue", weight=3]; 3514[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2140 -> 3514[label="",style="solid", color="blue", weight=9]; 3514 -> 2284[label="",style="solid", color="blue", weight=3]; 3515[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2140 -> 3515[label="",style="solid", color="blue", weight=9]; 3515 -> 2285[label="",style="solid", color="blue", weight=3]; 3516[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2140 -> 3516[label="",style="solid", color="blue", weight=9]; 3516 -> 2286[label="",style="solid", color="blue", weight=3]; 2141[label="vwx26",fontsize=16,color="green",shape="box"];2142[label="vwx25",fontsize=16,color="green",shape="box"];2143[label="vwx26",fontsize=16,color="green",shape="box"];2144[label="vwx25",fontsize=16,color="green",shape="box"];2145 -> 1913[label="",style="dashed", color="red", weight=0]; 2145[label="vwx250 < vwx260 || vwx250 == vwx260 && (vwx251 < vwx261 || vwx251 == vwx261 && vwx252 <= vwx262)",fontsize=16,color="magenta"];2145 -> 2287[label="",style="dashed", color="magenta", weight=3]; 2145 -> 2288[label="",style="dashed", color="magenta", weight=3]; 2146[label="vwx26",fontsize=16,color="green",shape="box"];2147[label="vwx25",fontsize=16,color="green",shape="box"];2148[label="vwx26",fontsize=16,color="green",shape="box"];2149[label="vwx25",fontsize=16,color="green",shape="box"];2150[label="vwx26",fontsize=16,color="green",shape="box"];2151[label="vwx25",fontsize=16,color="green",shape="box"];2152[label="True",fontsize=16,color="green",shape="box"];2153[label="True",fontsize=16,color="green",shape="box"];2154[label="False",fontsize=16,color="green",shape="box"];2155[label="True",fontsize=16,color="green",shape="box"];2156[label="True",fontsize=16,color="green",shape="box"];2157[label="True",fontsize=16,color="green",shape="box"];2158[label="False",fontsize=16,color="green",shape="box"];2159[label="vwx250 <= vwx260",fontsize=16,color="blue",shape="box"];3517[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2159 -> 3517[label="",style="solid", color="blue", weight=9]; 3517 -> 2289[label="",style="solid", color="blue", weight=3]; 3518[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2159 -> 3518[label="",style="solid", color="blue", weight=9]; 3518 -> 2290[label="",style="solid", color="blue", weight=3]; 3519[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2159 -> 3519[label="",style="solid", color="blue", weight=9]; 3519 -> 2291[label="",style="solid", color="blue", weight=3]; 3520[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2159 -> 3520[label="",style="solid", color="blue", weight=9]; 3520 -> 2292[label="",style="solid", color="blue", weight=3]; 3521[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2159 -> 3521[label="",style="solid", color="blue", weight=9]; 3521 -> 2293[label="",style="solid", color="blue", weight=3]; 3522[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2159 -> 3522[label="",style="solid", color="blue", weight=9]; 3522 -> 2294[label="",style="solid", color="blue", weight=3]; 3523[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2159 -> 3523[label="",style="solid", color="blue", weight=9]; 3523 -> 2295[label="",style="solid", color="blue", weight=3]; 3524[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2159 -> 3524[label="",style="solid", color="blue", weight=9]; 3524 -> 2296[label="",style="solid", color="blue", weight=3]; 3525[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2159 -> 3525[label="",style="solid", color="blue", weight=9]; 3525 -> 2297[label="",style="solid", color="blue", weight=3]; 3526[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2159 -> 3526[label="",style="solid", color="blue", weight=9]; 3526 -> 2298[label="",style="solid", color="blue", weight=3]; 3527[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2159 -> 3527[label="",style="solid", color="blue", weight=9]; 3527 -> 2299[label="",style="solid", color="blue", weight=3]; 3528[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2159 -> 3528[label="",style="solid", color="blue", weight=9]; 3528 -> 2300[label="",style="solid", color="blue", weight=3]; 3529[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2159 -> 3529[label="",style="solid", color="blue", weight=9]; 3529 -> 2301[label="",style="solid", color="blue", weight=3]; 3530[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2159 -> 3530[label="",style="solid", color="blue", weight=9]; 3530 -> 2302[label="",style="solid", color="blue", weight=3]; 2160 -> 1913[label="",style="dashed", color="red", weight=0]; 2160[label="vwx250 < vwx260 || vwx250 == vwx260 && vwx251 <= vwx261",fontsize=16,color="magenta"];2160 -> 2303[label="",style="dashed", color="magenta", weight=3]; 2160 -> 2304[label="",style="dashed", color="magenta", weight=3]; 2161[label="vwx80",fontsize=16,color="green",shape="box"];2162[label="vwx77",fontsize=16,color="green",shape="box"];2163[label="vwx80",fontsize=16,color="green",shape="box"];2164[label="vwx77",fontsize=16,color="green",shape="box"];2165[label="vwx80",fontsize=16,color="green",shape="box"];2166[label="vwx77",fontsize=16,color="green",shape="box"];2167[label="vwx80",fontsize=16,color="green",shape="box"];2168[label="vwx77",fontsize=16,color="green",shape="box"];2169[label="vwx80",fontsize=16,color="green",shape="box"];2170[label="vwx77",fontsize=16,color="green",shape="box"];2171[label="vwx80",fontsize=16,color="green",shape="box"];2172[label="vwx77",fontsize=16,color="green",shape="box"];2173[label="vwx80",fontsize=16,color="green",shape="box"];2174[label="vwx77",fontsize=16,color="green",shape="box"];2175[label="vwx80",fontsize=16,color="green",shape="box"];2176[label="vwx77",fontsize=16,color="green",shape="box"];2177[label="vwx80",fontsize=16,color="green",shape="box"];2178[label="vwx77",fontsize=16,color="green",shape="box"];2179[label="vwx80",fontsize=16,color="green",shape="box"];2180[label="vwx77",fontsize=16,color="green",shape="box"];2181[label="vwx80",fontsize=16,color="green",shape="box"];2182[label="vwx77",fontsize=16,color="green",shape="box"];2183[label="vwx80",fontsize=16,color="green",shape="box"];2184[label="vwx77",fontsize=16,color="green",shape="box"];2185[label="vwx80",fontsize=16,color="green",shape="box"];2186[label="vwx77",fontsize=16,color="green",shape="box"];2187[label="vwx80",fontsize=16,color="green",shape="box"];2188[label="vwx77",fontsize=16,color="green",shape="box"];2189 -> 1243[label="",style="dashed", color="red", weight=0]; 2189[label="vwx78 <= vwx81",fontsize=16,color="magenta"];2189 -> 2305[label="",style="dashed", color="magenta", weight=3]; 2189 -> 2306[label="",style="dashed", color="magenta", weight=3]; 2190 -> 1244[label="",style="dashed", color="red", weight=0]; 2190[label="vwx78 <= vwx81",fontsize=16,color="magenta"];2190 -> 2307[label="",style="dashed", color="magenta", weight=3]; 2190 -> 2308[label="",style="dashed", color="magenta", weight=3]; 2191 -> 1245[label="",style="dashed", color="red", weight=0]; 2191[label="vwx78 <= vwx81",fontsize=16,color="magenta"];2191 -> 2309[label="",style="dashed", color="magenta", weight=3]; 2191 -> 2310[label="",style="dashed", color="magenta", weight=3]; 2192 -> 1246[label="",style="dashed", color="red", weight=0]; 2192[label="vwx78 <= vwx81",fontsize=16,color="magenta"];2192 -> 2311[label="",style="dashed", color="magenta", weight=3]; 2192 -> 2312[label="",style="dashed", color="magenta", weight=3]; 2193 -> 1247[label="",style="dashed", color="red", weight=0]; 2193[label="vwx78 <= vwx81",fontsize=16,color="magenta"];2193 -> 2313[label="",style="dashed", color="magenta", weight=3]; 2193 -> 2314[label="",style="dashed", color="magenta", weight=3]; 2194 -> 1248[label="",style="dashed", color="red", weight=0]; 2194[label="vwx78 <= vwx81",fontsize=16,color="magenta"];2194 -> 2315[label="",style="dashed", color="magenta", weight=3]; 2194 -> 2316[label="",style="dashed", color="magenta", weight=3]; 2195 -> 1249[label="",style="dashed", color="red", weight=0]; 2195[label="vwx78 <= vwx81",fontsize=16,color="magenta"];2195 -> 2317[label="",style="dashed", color="magenta", weight=3]; 2195 -> 2318[label="",style="dashed", color="magenta", weight=3]; 2196 -> 1250[label="",style="dashed", color="red", weight=0]; 2196[label="vwx78 <= vwx81",fontsize=16,color="magenta"];2196 -> 2319[label="",style="dashed", color="magenta", weight=3]; 2196 -> 2320[label="",style="dashed", color="magenta", weight=3]; 2197 -> 1251[label="",style="dashed", color="red", weight=0]; 2197[label="vwx78 <= vwx81",fontsize=16,color="magenta"];2197 -> 2321[label="",style="dashed", color="magenta", weight=3]; 2197 -> 2322[label="",style="dashed", color="magenta", weight=3]; 2198 -> 1252[label="",style="dashed", color="red", weight=0]; 2198[label="vwx78 <= vwx81",fontsize=16,color="magenta"];2198 -> 2323[label="",style="dashed", color="magenta", weight=3]; 2198 -> 2324[label="",style="dashed", color="magenta", weight=3]; 2199 -> 1253[label="",style="dashed", color="red", weight=0]; 2199[label="vwx78 <= vwx81",fontsize=16,color="magenta"];2199 -> 2325[label="",style="dashed", color="magenta", weight=3]; 2199 -> 2326[label="",style="dashed", color="magenta", weight=3]; 2200 -> 1254[label="",style="dashed", color="red", weight=0]; 2200[label="vwx78 <= vwx81",fontsize=16,color="magenta"];2200 -> 2327[label="",style="dashed", color="magenta", weight=3]; 2200 -> 2328[label="",style="dashed", color="magenta", weight=3]; 2201 -> 1255[label="",style="dashed", color="red", weight=0]; 2201[label="vwx78 <= vwx81",fontsize=16,color="magenta"];2201 -> 2329[label="",style="dashed", color="magenta", weight=3]; 2201 -> 2330[label="",style="dashed", color="magenta", weight=3]; 2202 -> 1256[label="",style="dashed", color="red", weight=0]; 2202[label="vwx78 <= vwx81",fontsize=16,color="magenta"];2202 -> 2331[label="",style="dashed", color="magenta", weight=3]; 2202 -> 2332[label="",style="dashed", color="magenta", weight=3]; 2203 -> 368[label="",style="dashed", color="red", weight=0]; 2203[label="vwx77 == vwx80",fontsize=16,color="magenta"];2203 -> 2333[label="",style="dashed", color="magenta", weight=3]; 2203 -> 2334[label="",style="dashed", color="magenta", weight=3]; 2204 -> 372[label="",style="dashed", color="red", weight=0]; 2204[label="vwx77 == vwx80",fontsize=16,color="magenta"];2204 -> 2335[label="",style="dashed", color="magenta", weight=3]; 2204 -> 2336[label="",style="dashed", color="magenta", weight=3]; 2205 -> 369[label="",style="dashed", color="red", weight=0]; 2205[label="vwx77 == vwx80",fontsize=16,color="magenta"];2205 -> 2337[label="",style="dashed", color="magenta", weight=3]; 2205 -> 2338[label="",style="dashed", color="magenta", weight=3]; 2206 -> 377[label="",style="dashed", color="red", weight=0]; 2206[label="vwx77 == vwx80",fontsize=16,color="magenta"];2206 -> 2339[label="",style="dashed", color="magenta", weight=3]; 2206 -> 2340[label="",style="dashed", color="magenta", weight=3]; 2207 -> 376[label="",style="dashed", color="red", weight=0]; 2207[label="vwx77 == vwx80",fontsize=16,color="magenta"];2207 -> 2341[label="",style="dashed", color="magenta", weight=3]; 2207 -> 2342[label="",style="dashed", color="magenta", weight=3]; 2208 -> 374[label="",style="dashed", color="red", weight=0]; 2208[label="vwx77 == vwx80",fontsize=16,color="magenta"];2208 -> 2343[label="",style="dashed", color="magenta", weight=3]; 2208 -> 2344[label="",style="dashed", color="magenta", weight=3]; 2209 -> 373[label="",style="dashed", color="red", weight=0]; 2209[label="vwx77 == vwx80",fontsize=16,color="magenta"];2209 -> 2345[label="",style="dashed", color="magenta", weight=3]; 2209 -> 2346[label="",style="dashed", color="magenta", weight=3]; 2210 -> 370[label="",style="dashed", color="red", weight=0]; 2210[label="vwx77 == vwx80",fontsize=16,color="magenta"];2210 -> 2347[label="",style="dashed", color="magenta", weight=3]; 2210 -> 2348[label="",style="dashed", color="magenta", weight=3]; 2211 -> 364[label="",style="dashed", color="red", weight=0]; 2211[label="vwx77 == vwx80",fontsize=16,color="magenta"];2211 -> 2349[label="",style="dashed", color="magenta", weight=3]; 2211 -> 2350[label="",style="dashed", color="magenta", weight=3]; 2212 -> 365[label="",style="dashed", color="red", weight=0]; 2212[label="vwx77 == vwx80",fontsize=16,color="magenta"];2212 -> 2351[label="",style="dashed", color="magenta", weight=3]; 2212 -> 2352[label="",style="dashed", color="magenta", weight=3]; 2213 -> 367[label="",style="dashed", color="red", weight=0]; 2213[label="vwx77 == vwx80",fontsize=16,color="magenta"];2213 -> 2353[label="",style="dashed", color="magenta", weight=3]; 2213 -> 2354[label="",style="dashed", color="magenta", weight=3]; 2214 -> 375[label="",style="dashed", color="red", weight=0]; 2214[label="vwx77 == vwx80",fontsize=16,color="magenta"];2214 -> 2355[label="",style="dashed", color="magenta", weight=3]; 2214 -> 2356[label="",style="dashed", color="magenta", weight=3]; 2215 -> 366[label="",style="dashed", color="red", weight=0]; 2215[label="vwx77 == vwx80",fontsize=16,color="magenta"];2215 -> 2357[label="",style="dashed", color="magenta", weight=3]; 2215 -> 2358[label="",style="dashed", color="magenta", weight=3]; 2216 -> 371[label="",style="dashed", color="red", weight=0]; 2216[label="vwx77 == vwx80",fontsize=16,color="magenta"];2216 -> 2359[label="",style="dashed", color="magenta", weight=3]; 2216 -> 2360[label="",style="dashed", color="magenta", weight=3]; 2217[label="vwx168",fontsize=16,color="green",shape="box"];2218[label="True",fontsize=16,color="green",shape="box"];2219[label="vwx79",fontsize=16,color="green",shape="box"];2220[label="vwx76",fontsize=16,color="green",shape="box"];2221[label="vwx79",fontsize=16,color="green",shape="box"];2222[label="vwx76",fontsize=16,color="green",shape="box"];2223[label="vwx79",fontsize=16,color="green",shape="box"];2224[label="vwx76",fontsize=16,color="green",shape="box"];2225[label="vwx79",fontsize=16,color="green",shape="box"];2226[label="vwx76",fontsize=16,color="green",shape="box"];2227[label="vwx79",fontsize=16,color="green",shape="box"];2228[label="vwx76",fontsize=16,color="green",shape="box"];2229[label="vwx79",fontsize=16,color="green",shape="box"];2230[label="vwx76",fontsize=16,color="green",shape="box"];2231[label="vwx79",fontsize=16,color="green",shape="box"];2232[label="vwx76",fontsize=16,color="green",shape="box"];2233[label="vwx79",fontsize=16,color="green",shape="box"];2234[label="vwx76",fontsize=16,color="green",shape="box"];2235[label="vwx79",fontsize=16,color="green",shape="box"];2236[label="vwx76",fontsize=16,color="green",shape="box"];2237[label="vwx79",fontsize=16,color="green",shape="box"];2238[label="vwx76",fontsize=16,color="green",shape="box"];2239[label="vwx79",fontsize=16,color="green",shape="box"];2240[label="vwx76",fontsize=16,color="green",shape="box"];2241[label="vwx79",fontsize=16,color="green",shape="box"];2242[label="vwx76",fontsize=16,color="green",shape="box"];2243[label="vwx79",fontsize=16,color="green",shape="box"];2244[label="vwx76",fontsize=16,color="green",shape="box"];2245[label="vwx79",fontsize=16,color="green",shape="box"];2246[label="vwx76",fontsize=16,color="green",shape="box"];2247[label="compare0 (vwx141,vwx142,vwx143) (vwx144,vwx145,vwx146) otherwise",fontsize=16,color="black",shape="box"];2247 -> 2361[label="",style="solid", color="black", weight=3]; 2248[label="LT",fontsize=16,color="green",shape="box"];2249[label="compare0 (vwx156,vwx157) (vwx158,vwx159) otherwise",fontsize=16,color="black",shape="box"];2249 -> 2362[label="",style="solid", color="black", weight=3]; 2250[label="LT",fontsize=16,color="green",shape="box"];2251[label="vwx40000",fontsize=16,color="green",shape="box"];2252[label="Succ vwx30100",fontsize=16,color="green",shape="box"];2253[label="primPlusNat (Succ vwx1690) (Succ vwx30100)",fontsize=16,color="black",shape="box"];2253 -> 2363[label="",style="solid", color="black", weight=3]; 2254[label="primPlusNat Zero (Succ vwx30100)",fontsize=16,color="black",shape="box"];2254 -> 2364[label="",style="solid", color="black", weight=3]; 2255[label="vwx30000",fontsize=16,color="green",shape="box"];2256[label="vwx40000",fontsize=16,color="green",shape="box"];2258 -> 369[label="",style="dashed", color="red", weight=0]; 2258[label="vwx163 == GT",fontsize=16,color="magenta"];2258 -> 2365[label="",style="dashed", color="magenta", weight=3]; 2258 -> 2366[label="",style="dashed", color="magenta", weight=3]; 2257[label="not vwx170",fontsize=16,color="burlywood",shape="triangle"];3531[label="vwx170/False",fontsize=10,color="white",style="solid",shape="box"];2257 -> 3531[label="",style="solid", color="burlywood", weight=9]; 3531 -> 2367[label="",style="solid", color="burlywood", weight=3]; 3532[label="vwx170/True",fontsize=10,color="white",style="solid",shape="box"];2257 -> 3532[label="",style="solid", color="burlywood", weight=9]; 3532 -> 2368[label="",style="solid", color="burlywood", weight=3]; 2259 -> 1243[label="",style="dashed", color="red", weight=0]; 2259[label="vwx250 <= vwx260",fontsize=16,color="magenta"];2259 -> 2369[label="",style="dashed", color="magenta", weight=3]; 2259 -> 2370[label="",style="dashed", color="magenta", weight=3]; 2260 -> 1244[label="",style="dashed", color="red", weight=0]; 2260[label="vwx250 <= vwx260",fontsize=16,color="magenta"];2260 -> 2371[label="",style="dashed", color="magenta", weight=3]; 2260 -> 2372[label="",style="dashed", color="magenta", weight=3]; 2261 -> 1245[label="",style="dashed", color="red", weight=0]; 2261[label="vwx250 <= vwx260",fontsize=16,color="magenta"];2261 -> 2373[label="",style="dashed", color="magenta", weight=3]; 2261 -> 2374[label="",style="dashed", color="magenta", weight=3]; 2262 -> 1246[label="",style="dashed", color="red", weight=0]; 2262[label="vwx250 <= vwx260",fontsize=16,color="magenta"];2262 -> 2375[label="",style="dashed", color="magenta", weight=3]; 2262 -> 2376[label="",style="dashed", color="magenta", weight=3]; 2263 -> 1247[label="",style="dashed", color="red", weight=0]; 2263[label="vwx250 <= vwx260",fontsize=16,color="magenta"];2263 -> 2377[label="",style="dashed", color="magenta", weight=3]; 2263 -> 2378[label="",style="dashed", color="magenta", weight=3]; 2264 -> 1248[label="",style="dashed", color="red", weight=0]; 2264[label="vwx250 <= vwx260",fontsize=16,color="magenta"];2264 -> 2379[label="",style="dashed", color="magenta", weight=3]; 2264 -> 2380[label="",style="dashed", color="magenta", weight=3]; 2265 -> 1249[label="",style="dashed", color="red", weight=0]; 2265[label="vwx250 <= vwx260",fontsize=16,color="magenta"];2265 -> 2381[label="",style="dashed", color="magenta", weight=3]; 2265 -> 2382[label="",style="dashed", color="magenta", weight=3]; 2266 -> 1250[label="",style="dashed", color="red", weight=0]; 2266[label="vwx250 <= vwx260",fontsize=16,color="magenta"];2266 -> 2383[label="",style="dashed", color="magenta", weight=3]; 2266 -> 2384[label="",style="dashed", color="magenta", weight=3]; 2267 -> 1251[label="",style="dashed", color="red", weight=0]; 2267[label="vwx250 <= vwx260",fontsize=16,color="magenta"];2267 -> 2385[label="",style="dashed", color="magenta", weight=3]; 2267 -> 2386[label="",style="dashed", color="magenta", weight=3]; 2268 -> 1252[label="",style="dashed", color="red", weight=0]; 2268[label="vwx250 <= vwx260",fontsize=16,color="magenta"];2268 -> 2387[label="",style="dashed", color="magenta", weight=3]; 2268 -> 2388[label="",style="dashed", color="magenta", weight=3]; 2269 -> 1253[label="",style="dashed", color="red", weight=0]; 2269[label="vwx250 <= vwx260",fontsize=16,color="magenta"];2269 -> 2389[label="",style="dashed", color="magenta", weight=3]; 2269 -> 2390[label="",style="dashed", color="magenta", weight=3]; 2270 -> 1254[label="",style="dashed", color="red", weight=0]; 2270[label="vwx250 <= vwx260",fontsize=16,color="magenta"];2270 -> 2391[label="",style="dashed", color="magenta", weight=3]; 2270 -> 2392[label="",style="dashed", color="magenta", weight=3]; 2271 -> 1255[label="",style="dashed", color="red", weight=0]; 2271[label="vwx250 <= vwx260",fontsize=16,color="magenta"];2271 -> 2393[label="",style="dashed", color="magenta", weight=3]; 2271 -> 2394[label="",style="dashed", color="magenta", weight=3]; 2272 -> 1256[label="",style="dashed", color="red", weight=0]; 2272[label="vwx250 <= vwx260",fontsize=16,color="magenta"];2272 -> 2395[label="",style="dashed", color="magenta", weight=3]; 2272 -> 2396[label="",style="dashed", color="magenta", weight=3]; 2273 -> 1243[label="",style="dashed", color="red", weight=0]; 2273[label="vwx250 <= vwx260",fontsize=16,color="magenta"];2273 -> 2397[label="",style="dashed", color="magenta", weight=3]; 2273 -> 2398[label="",style="dashed", color="magenta", weight=3]; 2274 -> 1244[label="",style="dashed", color="red", weight=0]; 2274[label="vwx250 <= vwx260",fontsize=16,color="magenta"];2274 -> 2399[label="",style="dashed", color="magenta", weight=3]; 2274 -> 2400[label="",style="dashed", color="magenta", weight=3]; 2275 -> 1245[label="",style="dashed", color="red", weight=0]; 2275[label="vwx250 <= vwx260",fontsize=16,color="magenta"];2275 -> 2401[label="",style="dashed", color="magenta", weight=3]; 2275 -> 2402[label="",style="dashed", color="magenta", weight=3]; 2276 -> 1246[label="",style="dashed", color="red", weight=0]; 2276[label="vwx250 <= vwx260",fontsize=16,color="magenta"];2276 -> 2403[label="",style="dashed", color="magenta", weight=3]; 2276 -> 2404[label="",style="dashed", color="magenta", weight=3]; 2277 -> 1247[label="",style="dashed", color="red", weight=0]; 2277[label="vwx250 <= vwx260",fontsize=16,color="magenta"];2277 -> 2405[label="",style="dashed", color="magenta", weight=3]; 2277 -> 2406[label="",style="dashed", color="magenta", weight=3]; 2278 -> 1248[label="",style="dashed", color="red", weight=0]; 2278[label="vwx250 <= vwx260",fontsize=16,color="magenta"];2278 -> 2407[label="",style="dashed", color="magenta", weight=3]; 2278 -> 2408[label="",style="dashed", color="magenta", weight=3]; 2279 -> 1249[label="",style="dashed", color="red", weight=0]; 2279[label="vwx250 <= vwx260",fontsize=16,color="magenta"];2279 -> 2409[label="",style="dashed", color="magenta", weight=3]; 2279 -> 2410[label="",style="dashed", color="magenta", weight=3]; 2280 -> 1250[label="",style="dashed", color="red", weight=0]; 2280[label="vwx250 <= vwx260",fontsize=16,color="magenta"];2280 -> 2411[label="",style="dashed", color="magenta", weight=3]; 2280 -> 2412[label="",style="dashed", color="magenta", weight=3]; 2281 -> 1251[label="",style="dashed", color="red", weight=0]; 2281[label="vwx250 <= vwx260",fontsize=16,color="magenta"];2281 -> 2413[label="",style="dashed", color="magenta", weight=3]; 2281 -> 2414[label="",style="dashed", color="magenta", weight=3]; 2282 -> 1252[label="",style="dashed", color="red", weight=0]; 2282[label="vwx250 <= vwx260",fontsize=16,color="magenta"];2282 -> 2415[label="",style="dashed", color="magenta", weight=3]; 2282 -> 2416[label="",style="dashed", color="magenta", weight=3]; 2283 -> 1253[label="",style="dashed", color="red", weight=0]; 2283[label="vwx250 <= vwx260",fontsize=16,color="magenta"];2283 -> 2417[label="",style="dashed", color="magenta", weight=3]; 2283 -> 2418[label="",style="dashed", color="magenta", weight=3]; 2284 -> 1254[label="",style="dashed", color="red", weight=0]; 2284[label="vwx250 <= vwx260",fontsize=16,color="magenta"];2284 -> 2419[label="",style="dashed", color="magenta", weight=3]; 2284 -> 2420[label="",style="dashed", color="magenta", weight=3]; 2285 -> 1255[label="",style="dashed", color="red", weight=0]; 2285[label="vwx250 <= vwx260",fontsize=16,color="magenta"];2285 -> 2421[label="",style="dashed", color="magenta", weight=3]; 2285 -> 2422[label="",style="dashed", color="magenta", weight=3]; 2286 -> 1256[label="",style="dashed", color="red", weight=0]; 2286[label="vwx250 <= vwx260",fontsize=16,color="magenta"];2286 -> 2423[label="",style="dashed", color="magenta", weight=3]; 2286 -> 2424[label="",style="dashed", color="magenta", weight=3]; 2287[label="vwx250 < vwx260",fontsize=16,color="blue",shape="box"];3533[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2287 -> 3533[label="",style="solid", color="blue", weight=9]; 3533 -> 2425[label="",style="solid", color="blue", weight=3]; 3534[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2287 -> 3534[label="",style="solid", color="blue", weight=9]; 3534 -> 2426[label="",style="solid", color="blue", weight=3]; 3535[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2287 -> 3535[label="",style="solid", color="blue", weight=9]; 3535 -> 2427[label="",style="solid", color="blue", weight=3]; 3536[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2287 -> 3536[label="",style="solid", color="blue", weight=9]; 3536 -> 2428[label="",style="solid", color="blue", weight=3]; 3537[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2287 -> 3537[label="",style="solid", color="blue", weight=9]; 3537 -> 2429[label="",style="solid", color="blue", weight=3]; 3538[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2287 -> 3538[label="",style="solid", color="blue", weight=9]; 3538 -> 2430[label="",style="solid", color="blue", weight=3]; 3539[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2287 -> 3539[label="",style="solid", color="blue", weight=9]; 3539 -> 2431[label="",style="solid", color="blue", weight=3]; 3540[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2287 -> 3540[label="",style="solid", color="blue", weight=9]; 3540 -> 2432[label="",style="solid", color="blue", weight=3]; 3541[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2287 -> 3541[label="",style="solid", color="blue", weight=9]; 3541 -> 2433[label="",style="solid", color="blue", weight=3]; 3542[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2287 -> 3542[label="",style="solid", color="blue", weight=9]; 3542 -> 2434[label="",style="solid", color="blue", weight=3]; 3543[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2287 -> 3543[label="",style="solid", color="blue", weight=9]; 3543 -> 2435[label="",style="solid", color="blue", weight=3]; 3544[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2287 -> 3544[label="",style="solid", color="blue", weight=9]; 3544 -> 2436[label="",style="solid", color="blue", weight=3]; 3545[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2287 -> 3545[label="",style="solid", color="blue", weight=9]; 3545 -> 2437[label="",style="solid", color="blue", weight=3]; 3546[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2287 -> 3546[label="",style="solid", color="blue", weight=9]; 3546 -> 2438[label="",style="solid", color="blue", weight=3]; 2288 -> 928[label="",style="dashed", color="red", weight=0]; 2288[label="vwx250 == vwx260 && (vwx251 < vwx261 || vwx251 == vwx261 && vwx252 <= vwx262)",fontsize=16,color="magenta"];2288 -> 2439[label="",style="dashed", color="magenta", weight=3]; 2288 -> 2440[label="",style="dashed", color="magenta", weight=3]; 2289 -> 1243[label="",style="dashed", color="red", weight=0]; 2289[label="vwx250 <= vwx260",fontsize=16,color="magenta"];2289 -> 2441[label="",style="dashed", color="magenta", weight=3]; 2289 -> 2442[label="",style="dashed", color="magenta", weight=3]; 2290 -> 1244[label="",style="dashed", color="red", weight=0]; 2290[label="vwx250 <= vwx260",fontsize=16,color="magenta"];2290 -> 2443[label="",style="dashed", color="magenta", weight=3]; 2290 -> 2444[label="",style="dashed", color="magenta", weight=3]; 2291 -> 1245[label="",style="dashed", color="red", weight=0]; 2291[label="vwx250 <= vwx260",fontsize=16,color="magenta"];2291 -> 2445[label="",style="dashed", color="magenta", weight=3]; 2291 -> 2446[label="",style="dashed", color="magenta", weight=3]; 2292 -> 1246[label="",style="dashed", color="red", weight=0]; 2292[label="vwx250 <= vwx260",fontsize=16,color="magenta"];2292 -> 2447[label="",style="dashed", color="magenta", weight=3]; 2292 -> 2448[label="",style="dashed", color="magenta", weight=3]; 2293 -> 1247[label="",style="dashed", color="red", weight=0]; 2293[label="vwx250 <= vwx260",fontsize=16,color="magenta"];2293 -> 2449[label="",style="dashed", color="magenta", weight=3]; 2293 -> 2450[label="",style="dashed", color="magenta", weight=3]; 2294 -> 1248[label="",style="dashed", color="red", weight=0]; 2294[label="vwx250 <= vwx260",fontsize=16,color="magenta"];2294 -> 2451[label="",style="dashed", color="magenta", weight=3]; 2294 -> 2452[label="",style="dashed", color="magenta", weight=3]; 2295 -> 1249[label="",style="dashed", color="red", weight=0]; 2295[label="vwx250 <= vwx260",fontsize=16,color="magenta"];2295 -> 2453[label="",style="dashed", color="magenta", weight=3]; 2295 -> 2454[label="",style="dashed", color="magenta", weight=3]; 2296 -> 1250[label="",style="dashed", color="red", weight=0]; 2296[label="vwx250 <= vwx260",fontsize=16,color="magenta"];2296 -> 2455[label="",style="dashed", color="magenta", weight=3]; 2296 -> 2456[label="",style="dashed", color="magenta", weight=3]; 2297 -> 1251[label="",style="dashed", color="red", weight=0]; 2297[label="vwx250 <= vwx260",fontsize=16,color="magenta"];2297 -> 2457[label="",style="dashed", color="magenta", weight=3]; 2297 -> 2458[label="",style="dashed", color="magenta", weight=3]; 2298 -> 1252[label="",style="dashed", color="red", weight=0]; 2298[label="vwx250 <= vwx260",fontsize=16,color="magenta"];2298 -> 2459[label="",style="dashed", color="magenta", weight=3]; 2298 -> 2460[label="",style="dashed", color="magenta", weight=3]; 2299 -> 1253[label="",style="dashed", color="red", weight=0]; 2299[label="vwx250 <= vwx260",fontsize=16,color="magenta"];2299 -> 2461[label="",style="dashed", color="magenta", weight=3]; 2299 -> 2462[label="",style="dashed", color="magenta", weight=3]; 2300 -> 1254[label="",style="dashed", color="red", weight=0]; 2300[label="vwx250 <= vwx260",fontsize=16,color="magenta"];2300 -> 2463[label="",style="dashed", color="magenta", weight=3]; 2300 -> 2464[label="",style="dashed", color="magenta", weight=3]; 2301 -> 1255[label="",style="dashed", color="red", weight=0]; 2301[label="vwx250 <= vwx260",fontsize=16,color="magenta"];2301 -> 2465[label="",style="dashed", color="magenta", weight=3]; 2301 -> 2466[label="",style="dashed", color="magenta", weight=3]; 2302 -> 1256[label="",style="dashed", color="red", weight=0]; 2302[label="vwx250 <= vwx260",fontsize=16,color="magenta"];2302 -> 2467[label="",style="dashed", color="magenta", weight=3]; 2302 -> 2468[label="",style="dashed", color="magenta", weight=3]; 2303[label="vwx250 < vwx260",fontsize=16,color="blue",shape="box"];3547[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2303 -> 3547[label="",style="solid", color="blue", weight=9]; 3547 -> 2469[label="",style="solid", color="blue", weight=3]; 3548[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2303 -> 3548[label="",style="solid", color="blue", weight=9]; 3548 -> 2470[label="",style="solid", color="blue", weight=3]; 3549[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2303 -> 3549[label="",style="solid", color="blue", weight=9]; 3549 -> 2471[label="",style="solid", color="blue", weight=3]; 3550[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2303 -> 3550[label="",style="solid", color="blue", weight=9]; 3550 -> 2472[label="",style="solid", color="blue", weight=3]; 3551[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2303 -> 3551[label="",style="solid", color="blue", weight=9]; 3551 -> 2473[label="",style="solid", color="blue", weight=3]; 3552[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2303 -> 3552[label="",style="solid", color="blue", weight=9]; 3552 -> 2474[label="",style="solid", color="blue", weight=3]; 3553[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2303 -> 3553[label="",style="solid", color="blue", weight=9]; 3553 -> 2475[label="",style="solid", color="blue", weight=3]; 3554[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2303 -> 3554[label="",style="solid", color="blue", weight=9]; 3554 -> 2476[label="",style="solid", color="blue", weight=3]; 3555[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2303 -> 3555[label="",style="solid", color="blue", weight=9]; 3555 -> 2477[label="",style="solid", color="blue", weight=3]; 3556[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2303 -> 3556[label="",style="solid", color="blue", weight=9]; 3556 -> 2478[label="",style="solid", color="blue", weight=3]; 3557[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2303 -> 3557[label="",style="solid", color="blue", weight=9]; 3557 -> 2479[label="",style="solid", color="blue", weight=3]; 3558[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2303 -> 3558[label="",style="solid", color="blue", weight=9]; 3558 -> 2480[label="",style="solid", color="blue", weight=3]; 3559[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2303 -> 3559[label="",style="solid", color="blue", weight=9]; 3559 -> 2481[label="",style="solid", color="blue", weight=3]; 3560[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2303 -> 3560[label="",style="solid", color="blue", weight=9]; 3560 -> 2482[label="",style="solid", color="blue", weight=3]; 2304 -> 928[label="",style="dashed", color="red", weight=0]; 2304[label="vwx250 == vwx260 && vwx251 <= vwx261",fontsize=16,color="magenta"];2304 -> 2483[label="",style="dashed", color="magenta", weight=3]; 2304 -> 2484[label="",style="dashed", color="magenta", weight=3]; 2305[label="vwx81",fontsize=16,color="green",shape="box"];2306[label="vwx78",fontsize=16,color="green",shape="box"];2307[label="vwx81",fontsize=16,color="green",shape="box"];2308[label="vwx78",fontsize=16,color="green",shape="box"];2309[label="vwx81",fontsize=16,color="green",shape="box"];2310[label="vwx78",fontsize=16,color="green",shape="box"];2311[label="vwx81",fontsize=16,color="green",shape="box"];2312[label="vwx78",fontsize=16,color="green",shape="box"];2313[label="vwx81",fontsize=16,color="green",shape="box"];2314[label="vwx78",fontsize=16,color="green",shape="box"];2315[label="vwx81",fontsize=16,color="green",shape="box"];2316[label="vwx78",fontsize=16,color="green",shape="box"];2317[label="vwx81",fontsize=16,color="green",shape="box"];2318[label="vwx78",fontsize=16,color="green",shape="box"];2319[label="vwx81",fontsize=16,color="green",shape="box"];2320[label="vwx78",fontsize=16,color="green",shape="box"];2321[label="vwx81",fontsize=16,color="green",shape="box"];2322[label="vwx78",fontsize=16,color="green",shape="box"];2323[label="vwx81",fontsize=16,color="green",shape="box"];2324[label="vwx78",fontsize=16,color="green",shape="box"];2325[label="vwx81",fontsize=16,color="green",shape="box"];2326[label="vwx78",fontsize=16,color="green",shape="box"];2327[label="vwx81",fontsize=16,color="green",shape="box"];2328[label="vwx78",fontsize=16,color="green",shape="box"];2329[label="vwx81",fontsize=16,color="green",shape="box"];2330[label="vwx78",fontsize=16,color="green",shape="box"];2331[label="vwx81",fontsize=16,color="green",shape="box"];2332[label="vwx78",fontsize=16,color="green",shape="box"];2333[label="vwx77",fontsize=16,color="green",shape="box"];2334[label="vwx80",fontsize=16,color="green",shape="box"];2335[label="vwx77",fontsize=16,color="green",shape="box"];2336[label="vwx80",fontsize=16,color="green",shape="box"];2337[label="vwx77",fontsize=16,color="green",shape="box"];2338[label="vwx80",fontsize=16,color="green",shape="box"];2339[label="vwx77",fontsize=16,color="green",shape="box"];2340[label="vwx80",fontsize=16,color="green",shape="box"];2341[label="vwx77",fontsize=16,color="green",shape="box"];2342[label="vwx80",fontsize=16,color="green",shape="box"];2343[label="vwx77",fontsize=16,color="green",shape="box"];2344[label="vwx80",fontsize=16,color="green",shape="box"];2345[label="vwx77",fontsize=16,color="green",shape="box"];2346[label="vwx80",fontsize=16,color="green",shape="box"];2347[label="vwx77",fontsize=16,color="green",shape="box"];2348[label="vwx80",fontsize=16,color="green",shape="box"];2349[label="vwx77",fontsize=16,color="green",shape="box"];2350[label="vwx80",fontsize=16,color="green",shape="box"];2351[label="vwx77",fontsize=16,color="green",shape="box"];2352[label="vwx80",fontsize=16,color="green",shape="box"];2353[label="vwx77",fontsize=16,color="green",shape="box"];2354[label="vwx80",fontsize=16,color="green",shape="box"];2355[label="vwx77",fontsize=16,color="green",shape="box"];2356[label="vwx80",fontsize=16,color="green",shape="box"];2357[label="vwx77",fontsize=16,color="green",shape="box"];2358[label="vwx80",fontsize=16,color="green",shape="box"];2359[label="vwx77",fontsize=16,color="green",shape="box"];2360[label="vwx80",fontsize=16,color="green",shape="box"];2361[label="compare0 (vwx141,vwx142,vwx143) (vwx144,vwx145,vwx146) True",fontsize=16,color="black",shape="box"];2361 -> 2485[label="",style="solid", color="black", weight=3]; 2362[label="compare0 (vwx156,vwx157) (vwx158,vwx159) True",fontsize=16,color="black",shape="box"];2362 -> 2486[label="",style="solid", color="black", weight=3]; 2363[label="Succ (Succ (primPlusNat vwx1690 vwx30100))",fontsize=16,color="green",shape="box"];2363 -> 2487[label="",style="dashed", color="green", weight=3]; 2364[label="Succ vwx30100",fontsize=16,color="green",shape="box"];2365[label="vwx163",fontsize=16,color="green",shape="box"];2366[label="GT",fontsize=16,color="green",shape="box"];2367[label="not False",fontsize=16,color="black",shape="box"];2367 -> 2488[label="",style="solid", color="black", weight=3]; 2368[label="not True",fontsize=16,color="black",shape="box"];2368 -> 2489[label="",style="solid", color="black", weight=3]; 2369[label="vwx260",fontsize=16,color="green",shape="box"];2370[label="vwx250",fontsize=16,color="green",shape="box"];2371[label="vwx260",fontsize=16,color="green",shape="box"];2372[label="vwx250",fontsize=16,color="green",shape="box"];2373[label="vwx260",fontsize=16,color="green",shape="box"];2374[label="vwx250",fontsize=16,color="green",shape="box"];2375[label="vwx260",fontsize=16,color="green",shape="box"];2376[label="vwx250",fontsize=16,color="green",shape="box"];2377[label="vwx260",fontsize=16,color="green",shape="box"];2378[label="vwx250",fontsize=16,color="green",shape="box"];2379[label="vwx260",fontsize=16,color="green",shape="box"];2380[label="vwx250",fontsize=16,color="green",shape="box"];2381[label="vwx260",fontsize=16,color="green",shape="box"];2382[label="vwx250",fontsize=16,color="green",shape="box"];2383[label="vwx260",fontsize=16,color="green",shape="box"];2384[label="vwx250",fontsize=16,color="green",shape="box"];2385[label="vwx260",fontsize=16,color="green",shape="box"];2386[label="vwx250",fontsize=16,color="green",shape="box"];2387[label="vwx260",fontsize=16,color="green",shape="box"];2388[label="vwx250",fontsize=16,color="green",shape="box"];2389[label="vwx260",fontsize=16,color="green",shape="box"];2390[label="vwx250",fontsize=16,color="green",shape="box"];2391[label="vwx260",fontsize=16,color="green",shape="box"];2392[label="vwx250",fontsize=16,color="green",shape="box"];2393[label="vwx260",fontsize=16,color="green",shape="box"];2394[label="vwx250",fontsize=16,color="green",shape="box"];2395[label="vwx260",fontsize=16,color="green",shape="box"];2396[label="vwx250",fontsize=16,color="green",shape="box"];2397[label="vwx260",fontsize=16,color="green",shape="box"];2398[label="vwx250",fontsize=16,color="green",shape="box"];2399[label="vwx260",fontsize=16,color="green",shape="box"];2400[label="vwx250",fontsize=16,color="green",shape="box"];2401[label="vwx260",fontsize=16,color="green",shape="box"];2402[label="vwx250",fontsize=16,color="green",shape="box"];2403[label="vwx260",fontsize=16,color="green",shape="box"];2404[label="vwx250",fontsize=16,color="green",shape="box"];2405[label="vwx260",fontsize=16,color="green",shape="box"];2406[label="vwx250",fontsize=16,color="green",shape="box"];2407[label="vwx260",fontsize=16,color="green",shape="box"];2408[label="vwx250",fontsize=16,color="green",shape="box"];2409[label="vwx260",fontsize=16,color="green",shape="box"];2410[label="vwx250",fontsize=16,color="green",shape="box"];2411[label="vwx260",fontsize=16,color="green",shape="box"];2412[label="vwx250",fontsize=16,color="green",shape="box"];2413[label="vwx260",fontsize=16,color="green",shape="box"];2414[label="vwx250",fontsize=16,color="green",shape="box"];2415[label="vwx260",fontsize=16,color="green",shape="box"];2416[label="vwx250",fontsize=16,color="green",shape="box"];2417[label="vwx260",fontsize=16,color="green",shape="box"];2418[label="vwx250",fontsize=16,color="green",shape="box"];2419[label="vwx260",fontsize=16,color="green",shape="box"];2420[label="vwx250",fontsize=16,color="green",shape="box"];2421[label="vwx260",fontsize=16,color="green",shape="box"];2422[label="vwx250",fontsize=16,color="green",shape="box"];2423[label="vwx260",fontsize=16,color="green",shape="box"];2424[label="vwx250",fontsize=16,color="green",shape="box"];2425 -> 1296[label="",style="dashed", color="red", weight=0]; 2425[label="vwx250 < vwx260",fontsize=16,color="magenta"];2425 -> 2490[label="",style="dashed", color="magenta", weight=3]; 2425 -> 2491[label="",style="dashed", color="magenta", weight=3]; 2426 -> 1297[label="",style="dashed", color="red", weight=0]; 2426[label="vwx250 < vwx260",fontsize=16,color="magenta"];2426 -> 2492[label="",style="dashed", color="magenta", weight=3]; 2426 -> 2493[label="",style="dashed", color="magenta", weight=3]; 2427 -> 1298[label="",style="dashed", color="red", weight=0]; 2427[label="vwx250 < vwx260",fontsize=16,color="magenta"];2427 -> 2494[label="",style="dashed", color="magenta", weight=3]; 2427 -> 2495[label="",style="dashed", color="magenta", weight=3]; 2428 -> 1299[label="",style="dashed", color="red", weight=0]; 2428[label="vwx250 < vwx260",fontsize=16,color="magenta"];2428 -> 2496[label="",style="dashed", color="magenta", weight=3]; 2428 -> 2497[label="",style="dashed", color="magenta", weight=3]; 2429 -> 1300[label="",style="dashed", color="red", weight=0]; 2429[label="vwx250 < vwx260",fontsize=16,color="magenta"];2429 -> 2498[label="",style="dashed", color="magenta", weight=3]; 2429 -> 2499[label="",style="dashed", color="magenta", weight=3]; 2430 -> 1301[label="",style="dashed", color="red", weight=0]; 2430[label="vwx250 < vwx260",fontsize=16,color="magenta"];2430 -> 2500[label="",style="dashed", color="magenta", weight=3]; 2430 -> 2501[label="",style="dashed", color="magenta", weight=3]; 2431 -> 1302[label="",style="dashed", color="red", weight=0]; 2431[label="vwx250 < vwx260",fontsize=16,color="magenta"];2431 -> 2502[label="",style="dashed", color="magenta", weight=3]; 2431 -> 2503[label="",style="dashed", color="magenta", weight=3]; 2432 -> 1303[label="",style="dashed", color="red", weight=0]; 2432[label="vwx250 < vwx260",fontsize=16,color="magenta"];2432 -> 2504[label="",style="dashed", color="magenta", weight=3]; 2432 -> 2505[label="",style="dashed", color="magenta", weight=3]; 2433 -> 1304[label="",style="dashed", color="red", weight=0]; 2433[label="vwx250 < vwx260",fontsize=16,color="magenta"];2433 -> 2506[label="",style="dashed", color="magenta", weight=3]; 2433 -> 2507[label="",style="dashed", color="magenta", weight=3]; 2434 -> 1305[label="",style="dashed", color="red", weight=0]; 2434[label="vwx250 < vwx260",fontsize=16,color="magenta"];2434 -> 2508[label="",style="dashed", color="magenta", weight=3]; 2434 -> 2509[label="",style="dashed", color="magenta", weight=3]; 2435 -> 1306[label="",style="dashed", color="red", weight=0]; 2435[label="vwx250 < vwx260",fontsize=16,color="magenta"];2435 -> 2510[label="",style="dashed", color="magenta", weight=3]; 2435 -> 2511[label="",style="dashed", color="magenta", weight=3]; 2436 -> 1307[label="",style="dashed", color="red", weight=0]; 2436[label="vwx250 < vwx260",fontsize=16,color="magenta"];2436 -> 2512[label="",style="dashed", color="magenta", weight=3]; 2436 -> 2513[label="",style="dashed", color="magenta", weight=3]; 2437 -> 1308[label="",style="dashed", color="red", weight=0]; 2437[label="vwx250 < vwx260",fontsize=16,color="magenta"];2437 -> 2514[label="",style="dashed", color="magenta", weight=3]; 2437 -> 2515[label="",style="dashed", color="magenta", weight=3]; 2438 -> 1309[label="",style="dashed", color="red", weight=0]; 2438[label="vwx250 < vwx260",fontsize=16,color="magenta"];2438 -> 2516[label="",style="dashed", color="magenta", weight=3]; 2438 -> 2517[label="",style="dashed", color="magenta", weight=3]; 2439 -> 1913[label="",style="dashed", color="red", weight=0]; 2439[label="vwx251 < vwx261 || vwx251 == vwx261 && vwx252 <= vwx262",fontsize=16,color="magenta"];2439 -> 2518[label="",style="dashed", color="magenta", weight=3]; 2439 -> 2519[label="",style="dashed", color="magenta", weight=3]; 2440[label="vwx250 == vwx260",fontsize=16,color="blue",shape="box"];3561[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2440 -> 3561[label="",style="solid", color="blue", weight=9]; 3561 -> 2520[label="",style="solid", color="blue", weight=3]; 3562[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2440 -> 3562[label="",style="solid", color="blue", weight=9]; 3562 -> 2521[label="",style="solid", color="blue", weight=3]; 3563[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2440 -> 3563[label="",style="solid", color="blue", weight=9]; 3563 -> 2522[label="",style="solid", color="blue", weight=3]; 3564[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2440 -> 3564[label="",style="solid", color="blue", weight=9]; 3564 -> 2523[label="",style="solid", color="blue", weight=3]; 3565[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2440 -> 3565[label="",style="solid", color="blue", weight=9]; 3565 -> 2524[label="",style="solid", color="blue", weight=3]; 3566[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2440 -> 3566[label="",style="solid", color="blue", weight=9]; 3566 -> 2525[label="",style="solid", color="blue", weight=3]; 3567[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2440 -> 3567[label="",style="solid", color="blue", weight=9]; 3567 -> 2526[label="",style="solid", color="blue", weight=3]; 3568[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2440 -> 3568[label="",style="solid", color="blue", weight=9]; 3568 -> 2527[label="",style="solid", color="blue", weight=3]; 3569[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2440 -> 3569[label="",style="solid", color="blue", weight=9]; 3569 -> 2528[label="",style="solid", color="blue", weight=3]; 3570[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2440 -> 3570[label="",style="solid", color="blue", weight=9]; 3570 -> 2529[label="",style="solid", color="blue", weight=3]; 3571[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2440 -> 3571[label="",style="solid", color="blue", weight=9]; 3571 -> 2530[label="",style="solid", color="blue", weight=3]; 3572[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2440 -> 3572[label="",style="solid", color="blue", weight=9]; 3572 -> 2531[label="",style="solid", color="blue", weight=3]; 3573[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2440 -> 3573[label="",style="solid", color="blue", weight=9]; 3573 -> 2532[label="",style="solid", color="blue", weight=3]; 3574[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2440 -> 3574[label="",style="solid", color="blue", weight=9]; 3574 -> 2533[label="",style="solid", color="blue", weight=3]; 2441[label="vwx260",fontsize=16,color="green",shape="box"];2442[label="vwx250",fontsize=16,color="green",shape="box"];2443[label="vwx260",fontsize=16,color="green",shape="box"];2444[label="vwx250",fontsize=16,color="green",shape="box"];2445[label="vwx260",fontsize=16,color="green",shape="box"];2446[label="vwx250",fontsize=16,color="green",shape="box"];2447[label="vwx260",fontsize=16,color="green",shape="box"];2448[label="vwx250",fontsize=16,color="green",shape="box"];2449[label="vwx260",fontsize=16,color="green",shape="box"];2450[label="vwx250",fontsize=16,color="green",shape="box"];2451[label="vwx260",fontsize=16,color="green",shape="box"];2452[label="vwx250",fontsize=16,color="green",shape="box"];2453[label="vwx260",fontsize=16,color="green",shape="box"];2454[label="vwx250",fontsize=16,color="green",shape="box"];2455[label="vwx260",fontsize=16,color="green",shape="box"];2456[label="vwx250",fontsize=16,color="green",shape="box"];2457[label="vwx260",fontsize=16,color="green",shape="box"];2458[label="vwx250",fontsize=16,color="green",shape="box"];2459[label="vwx260",fontsize=16,color="green",shape="box"];2460[label="vwx250",fontsize=16,color="green",shape="box"];2461[label="vwx260",fontsize=16,color="green",shape="box"];2462[label="vwx250",fontsize=16,color="green",shape="box"];2463[label="vwx260",fontsize=16,color="green",shape="box"];2464[label="vwx250",fontsize=16,color="green",shape="box"];2465[label="vwx260",fontsize=16,color="green",shape="box"];2466[label="vwx250",fontsize=16,color="green",shape="box"];2467[label="vwx260",fontsize=16,color="green",shape="box"];2468[label="vwx250",fontsize=16,color="green",shape="box"];2469 -> 1296[label="",style="dashed", color="red", weight=0]; 2469[label="vwx250 < vwx260",fontsize=16,color="magenta"];2469 -> 2534[label="",style="dashed", color="magenta", weight=3]; 2469 -> 2535[label="",style="dashed", color="magenta", weight=3]; 2470 -> 1297[label="",style="dashed", color="red", weight=0]; 2470[label="vwx250 < vwx260",fontsize=16,color="magenta"];2470 -> 2536[label="",style="dashed", color="magenta", weight=3]; 2470 -> 2537[label="",style="dashed", color="magenta", weight=3]; 2471 -> 1298[label="",style="dashed", color="red", weight=0]; 2471[label="vwx250 < vwx260",fontsize=16,color="magenta"];2471 -> 2538[label="",style="dashed", color="magenta", weight=3]; 2471 -> 2539[label="",style="dashed", color="magenta", weight=3]; 2472 -> 1299[label="",style="dashed", color="red", weight=0]; 2472[label="vwx250 < vwx260",fontsize=16,color="magenta"];2472 -> 2540[label="",style="dashed", color="magenta", weight=3]; 2472 -> 2541[label="",style="dashed", color="magenta", weight=3]; 2473 -> 1300[label="",style="dashed", color="red", weight=0]; 2473[label="vwx250 < vwx260",fontsize=16,color="magenta"];2473 -> 2542[label="",style="dashed", color="magenta", weight=3]; 2473 -> 2543[label="",style="dashed", color="magenta", weight=3]; 2474 -> 1301[label="",style="dashed", color="red", weight=0]; 2474[label="vwx250 < vwx260",fontsize=16,color="magenta"];2474 -> 2544[label="",style="dashed", color="magenta", weight=3]; 2474 -> 2545[label="",style="dashed", color="magenta", weight=3]; 2475 -> 1302[label="",style="dashed", color="red", weight=0]; 2475[label="vwx250 < vwx260",fontsize=16,color="magenta"];2475 -> 2546[label="",style="dashed", color="magenta", weight=3]; 2475 -> 2547[label="",style="dashed", color="magenta", weight=3]; 2476 -> 1303[label="",style="dashed", color="red", weight=0]; 2476[label="vwx250 < vwx260",fontsize=16,color="magenta"];2476 -> 2548[label="",style="dashed", color="magenta", weight=3]; 2476 -> 2549[label="",style="dashed", color="magenta", weight=3]; 2477 -> 1304[label="",style="dashed", color="red", weight=0]; 2477[label="vwx250 < vwx260",fontsize=16,color="magenta"];2477 -> 2550[label="",style="dashed", color="magenta", weight=3]; 2477 -> 2551[label="",style="dashed", color="magenta", weight=3]; 2478 -> 1305[label="",style="dashed", color="red", weight=0]; 2478[label="vwx250 < vwx260",fontsize=16,color="magenta"];2478 -> 2552[label="",style="dashed", color="magenta", weight=3]; 2478 -> 2553[label="",style="dashed", color="magenta", weight=3]; 2479 -> 1306[label="",style="dashed", color="red", weight=0]; 2479[label="vwx250 < vwx260",fontsize=16,color="magenta"];2479 -> 2554[label="",style="dashed", color="magenta", weight=3]; 2479 -> 2555[label="",style="dashed", color="magenta", weight=3]; 2480 -> 1307[label="",style="dashed", color="red", weight=0]; 2480[label="vwx250 < vwx260",fontsize=16,color="magenta"];2480 -> 2556[label="",style="dashed", color="magenta", weight=3]; 2480 -> 2557[label="",style="dashed", color="magenta", weight=3]; 2481 -> 1308[label="",style="dashed", color="red", weight=0]; 2481[label="vwx250 < vwx260",fontsize=16,color="magenta"];2481 -> 2558[label="",style="dashed", color="magenta", weight=3]; 2481 -> 2559[label="",style="dashed", color="magenta", weight=3]; 2482 -> 1309[label="",style="dashed", color="red", weight=0]; 2482[label="vwx250 < vwx260",fontsize=16,color="magenta"];2482 -> 2560[label="",style="dashed", color="magenta", weight=3]; 2482 -> 2561[label="",style="dashed", color="magenta", weight=3]; 2483[label="vwx251 <= vwx261",fontsize=16,color="blue",shape="box"];3575[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2483 -> 3575[label="",style="solid", color="blue", weight=9]; 3575 -> 2562[label="",style="solid", color="blue", weight=3]; 3576[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2483 -> 3576[label="",style="solid", color="blue", weight=9]; 3576 -> 2563[label="",style="solid", color="blue", weight=3]; 3577[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2483 -> 3577[label="",style="solid", color="blue", weight=9]; 3577 -> 2564[label="",style="solid", color="blue", weight=3]; 3578[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2483 -> 3578[label="",style="solid", color="blue", weight=9]; 3578 -> 2565[label="",style="solid", color="blue", weight=3]; 3579[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2483 -> 3579[label="",style="solid", color="blue", weight=9]; 3579 -> 2566[label="",style="solid", color="blue", weight=3]; 3580[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2483 -> 3580[label="",style="solid", color="blue", weight=9]; 3580 -> 2567[label="",style="solid", color="blue", weight=3]; 3581[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2483 -> 3581[label="",style="solid", color="blue", weight=9]; 3581 -> 2568[label="",style="solid", color="blue", weight=3]; 3582[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2483 -> 3582[label="",style="solid", color="blue", weight=9]; 3582 -> 2569[label="",style="solid", color="blue", weight=3]; 3583[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2483 -> 3583[label="",style="solid", color="blue", weight=9]; 3583 -> 2570[label="",style="solid", color="blue", weight=3]; 3584[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2483 -> 3584[label="",style="solid", color="blue", weight=9]; 3584 -> 2571[label="",style="solid", color="blue", weight=3]; 3585[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2483 -> 3585[label="",style="solid", color="blue", weight=9]; 3585 -> 2572[label="",style="solid", color="blue", weight=3]; 3586[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2483 -> 3586[label="",style="solid", color="blue", weight=9]; 3586 -> 2573[label="",style="solid", color="blue", weight=3]; 3587[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2483 -> 3587[label="",style="solid", color="blue", weight=9]; 3587 -> 2574[label="",style="solid", color="blue", weight=3]; 3588[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2483 -> 3588[label="",style="solid", color="blue", weight=9]; 3588 -> 2575[label="",style="solid", color="blue", weight=3]; 2484[label="vwx250 == vwx260",fontsize=16,color="blue",shape="box"];3589[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2484 -> 3589[label="",style="solid", color="blue", weight=9]; 3589 -> 2576[label="",style="solid", color="blue", weight=3]; 3590[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2484 -> 3590[label="",style="solid", color="blue", weight=9]; 3590 -> 2577[label="",style="solid", color="blue", weight=3]; 3591[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2484 -> 3591[label="",style="solid", color="blue", weight=9]; 3591 -> 2578[label="",style="solid", color="blue", weight=3]; 3592[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2484 -> 3592[label="",style="solid", color="blue", weight=9]; 3592 -> 2579[label="",style="solid", color="blue", weight=3]; 3593[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2484 -> 3593[label="",style="solid", color="blue", weight=9]; 3593 -> 2580[label="",style="solid", color="blue", weight=3]; 3594[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2484 -> 3594[label="",style="solid", color="blue", weight=9]; 3594 -> 2581[label="",style="solid", color="blue", weight=3]; 3595[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2484 -> 3595[label="",style="solid", color="blue", weight=9]; 3595 -> 2582[label="",style="solid", color="blue", weight=3]; 3596[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2484 -> 3596[label="",style="solid", color="blue", weight=9]; 3596 -> 2583[label="",style="solid", color="blue", weight=3]; 3597[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2484 -> 3597[label="",style="solid", color="blue", weight=9]; 3597 -> 2584[label="",style="solid", color="blue", weight=3]; 3598[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2484 -> 3598[label="",style="solid", color="blue", weight=9]; 3598 -> 2585[label="",style="solid", color="blue", weight=3]; 3599[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2484 -> 3599[label="",style="solid", color="blue", weight=9]; 3599 -> 2586[label="",style="solid", color="blue", weight=3]; 3600[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2484 -> 3600[label="",style="solid", color="blue", weight=9]; 3600 -> 2587[label="",style="solid", color="blue", weight=3]; 3601[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2484 -> 3601[label="",style="solid", color="blue", weight=9]; 3601 -> 2588[label="",style="solid", color="blue", weight=3]; 3602[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2484 -> 3602[label="",style="solid", color="blue", weight=9]; 3602 -> 2589[label="",style="solid", color="blue", weight=3]; 2485[label="GT",fontsize=16,color="green",shape="box"];2486[label="GT",fontsize=16,color="green",shape="box"];2487[label="primPlusNat vwx1690 vwx30100",fontsize=16,color="burlywood",shape="triangle"];3603[label="vwx1690/Succ vwx16900",fontsize=10,color="white",style="solid",shape="box"];2487 -> 3603[label="",style="solid", color="burlywood", weight=9]; 3603 -> 2590[label="",style="solid", color="burlywood", weight=3]; 3604[label="vwx1690/Zero",fontsize=10,color="white",style="solid",shape="box"];2487 -> 3604[label="",style="solid", color="burlywood", weight=9]; 3604 -> 2591[label="",style="solid", color="burlywood", weight=3]; 2488[label="True",fontsize=16,color="green",shape="box"];2489[label="False",fontsize=16,color="green",shape="box"];2490[label="vwx260",fontsize=16,color="green",shape="box"];2491[label="vwx250",fontsize=16,color="green",shape="box"];2492[label="vwx260",fontsize=16,color="green",shape="box"];2493[label="vwx250",fontsize=16,color="green",shape="box"];2494[label="vwx260",fontsize=16,color="green",shape="box"];2495[label="vwx250",fontsize=16,color="green",shape="box"];2496[label="vwx260",fontsize=16,color="green",shape="box"];2497[label="vwx250",fontsize=16,color="green",shape="box"];2498[label="vwx260",fontsize=16,color="green",shape="box"];2499[label="vwx250",fontsize=16,color="green",shape="box"];2500[label="vwx260",fontsize=16,color="green",shape="box"];2501[label="vwx250",fontsize=16,color="green",shape="box"];2502[label="vwx260",fontsize=16,color="green",shape="box"];2503[label="vwx250",fontsize=16,color="green",shape="box"];2504[label="vwx260",fontsize=16,color="green",shape="box"];2505[label="vwx250",fontsize=16,color="green",shape="box"];2506[label="vwx260",fontsize=16,color="green",shape="box"];2507[label="vwx250",fontsize=16,color="green",shape="box"];2508[label="vwx260",fontsize=16,color="green",shape="box"];2509[label="vwx250",fontsize=16,color="green",shape="box"];2510[label="vwx260",fontsize=16,color="green",shape="box"];2511[label="vwx250",fontsize=16,color="green",shape="box"];2512[label="vwx260",fontsize=16,color="green",shape="box"];2513[label="vwx250",fontsize=16,color="green",shape="box"];2514[label="vwx260",fontsize=16,color="green",shape="box"];2515[label="vwx250",fontsize=16,color="green",shape="box"];2516[label="vwx260",fontsize=16,color="green",shape="box"];2517[label="vwx250",fontsize=16,color="green",shape="box"];2518[label="vwx251 < vwx261",fontsize=16,color="blue",shape="box"];3605[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2518 -> 3605[label="",style="solid", color="blue", weight=9]; 3605 -> 2592[label="",style="solid", color="blue", weight=3]; 3606[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2518 -> 3606[label="",style="solid", color="blue", weight=9]; 3606 -> 2593[label="",style="solid", color="blue", weight=3]; 3607[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2518 -> 3607[label="",style="solid", color="blue", weight=9]; 3607 -> 2594[label="",style="solid", color="blue", weight=3]; 3608[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2518 -> 3608[label="",style="solid", color="blue", weight=9]; 3608 -> 2595[label="",style="solid", color="blue", weight=3]; 3609[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2518 -> 3609[label="",style="solid", color="blue", weight=9]; 3609 -> 2596[label="",style="solid", color="blue", weight=3]; 3610[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2518 -> 3610[label="",style="solid", color="blue", weight=9]; 3610 -> 2597[label="",style="solid", color="blue", weight=3]; 3611[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2518 -> 3611[label="",style="solid", color="blue", weight=9]; 3611 -> 2598[label="",style="solid", color="blue", weight=3]; 3612[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2518 -> 3612[label="",style="solid", color="blue", weight=9]; 3612 -> 2599[label="",style="solid", color="blue", weight=3]; 3613[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2518 -> 3613[label="",style="solid", color="blue", weight=9]; 3613 -> 2600[label="",style="solid", color="blue", weight=3]; 3614[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2518 -> 3614[label="",style="solid", color="blue", weight=9]; 3614 -> 2601[label="",style="solid", color="blue", weight=3]; 3615[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2518 -> 3615[label="",style="solid", color="blue", weight=9]; 3615 -> 2602[label="",style="solid", color="blue", weight=3]; 3616[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2518 -> 3616[label="",style="solid", color="blue", weight=9]; 3616 -> 2603[label="",style="solid", color="blue", weight=3]; 3617[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2518 -> 3617[label="",style="solid", color="blue", weight=9]; 3617 -> 2604[label="",style="solid", color="blue", weight=3]; 3618[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2518 -> 3618[label="",style="solid", color="blue", weight=9]; 3618 -> 2605[label="",style="solid", color="blue", weight=3]; 2519 -> 928[label="",style="dashed", color="red", weight=0]; 2519[label="vwx251 == vwx261 && vwx252 <= vwx262",fontsize=16,color="magenta"];2519 -> 2606[label="",style="dashed", color="magenta", weight=3]; 2519 -> 2607[label="",style="dashed", color="magenta", weight=3]; 2520 -> 368[label="",style="dashed", color="red", weight=0]; 2520[label="vwx250 == vwx260",fontsize=16,color="magenta"];2520 -> 2608[label="",style="dashed", color="magenta", weight=3]; 2520 -> 2609[label="",style="dashed", color="magenta", weight=3]; 2521 -> 372[label="",style="dashed", color="red", weight=0]; 2521[label="vwx250 == vwx260",fontsize=16,color="magenta"];2521 -> 2610[label="",style="dashed", color="magenta", weight=3]; 2521 -> 2611[label="",style="dashed", color="magenta", weight=3]; 2522 -> 369[label="",style="dashed", color="red", weight=0]; 2522[label="vwx250 == vwx260",fontsize=16,color="magenta"];2522 -> 2612[label="",style="dashed", color="magenta", weight=3]; 2522 -> 2613[label="",style="dashed", color="magenta", weight=3]; 2523 -> 377[label="",style="dashed", color="red", weight=0]; 2523[label="vwx250 == vwx260",fontsize=16,color="magenta"];2523 -> 2614[label="",style="dashed", color="magenta", weight=3]; 2523 -> 2615[label="",style="dashed", color="magenta", weight=3]; 2524 -> 376[label="",style="dashed", color="red", weight=0]; 2524[label="vwx250 == vwx260",fontsize=16,color="magenta"];2524 -> 2616[label="",style="dashed", color="magenta", weight=3]; 2524 -> 2617[label="",style="dashed", color="magenta", weight=3]; 2525 -> 374[label="",style="dashed", color="red", weight=0]; 2525[label="vwx250 == vwx260",fontsize=16,color="magenta"];2525 -> 2618[label="",style="dashed", color="magenta", weight=3]; 2525 -> 2619[label="",style="dashed", color="magenta", weight=3]; 2526 -> 373[label="",style="dashed", color="red", weight=0]; 2526[label="vwx250 == vwx260",fontsize=16,color="magenta"];2526 -> 2620[label="",style="dashed", color="magenta", weight=3]; 2526 -> 2621[label="",style="dashed", color="magenta", weight=3]; 2527 -> 370[label="",style="dashed", color="red", weight=0]; 2527[label="vwx250 == vwx260",fontsize=16,color="magenta"];2527 -> 2622[label="",style="dashed", color="magenta", weight=3]; 2527 -> 2623[label="",style="dashed", color="magenta", weight=3]; 2528 -> 364[label="",style="dashed", color="red", weight=0]; 2528[label="vwx250 == vwx260",fontsize=16,color="magenta"];2528 -> 2624[label="",style="dashed", color="magenta", weight=3]; 2528 -> 2625[label="",style="dashed", color="magenta", weight=3]; 2529 -> 365[label="",style="dashed", color="red", weight=0]; 2529[label="vwx250 == vwx260",fontsize=16,color="magenta"];2529 -> 2626[label="",style="dashed", color="magenta", weight=3]; 2529 -> 2627[label="",style="dashed", color="magenta", weight=3]; 2530 -> 367[label="",style="dashed", color="red", weight=0]; 2530[label="vwx250 == vwx260",fontsize=16,color="magenta"];2530 -> 2628[label="",style="dashed", color="magenta", weight=3]; 2530 -> 2629[label="",style="dashed", color="magenta", weight=3]; 2531 -> 375[label="",style="dashed", color="red", weight=0]; 2531[label="vwx250 == vwx260",fontsize=16,color="magenta"];2531 -> 2630[label="",style="dashed", color="magenta", weight=3]; 2531 -> 2631[label="",style="dashed", color="magenta", weight=3]; 2532 -> 366[label="",style="dashed", color="red", weight=0]; 2532[label="vwx250 == vwx260",fontsize=16,color="magenta"];2532 -> 2632[label="",style="dashed", color="magenta", weight=3]; 2532 -> 2633[label="",style="dashed", color="magenta", weight=3]; 2533 -> 371[label="",style="dashed", color="red", weight=0]; 2533[label="vwx250 == vwx260",fontsize=16,color="magenta"];2533 -> 2634[label="",style="dashed", color="magenta", weight=3]; 2533 -> 2635[label="",style="dashed", color="magenta", weight=3]; 2534[label="vwx260",fontsize=16,color="green",shape="box"];2535[label="vwx250",fontsize=16,color="green",shape="box"];2536[label="vwx260",fontsize=16,color="green",shape="box"];2537[label="vwx250",fontsize=16,color="green",shape="box"];2538[label="vwx260",fontsize=16,color="green",shape="box"];2539[label="vwx250",fontsize=16,color="green",shape="box"];2540[label="vwx260",fontsize=16,color="green",shape="box"];2541[label="vwx250",fontsize=16,color="green",shape="box"];2542[label="vwx260",fontsize=16,color="green",shape="box"];2543[label="vwx250",fontsize=16,color="green",shape="box"];2544[label="vwx260",fontsize=16,color="green",shape="box"];2545[label="vwx250",fontsize=16,color="green",shape="box"];2546[label="vwx260",fontsize=16,color="green",shape="box"];2547[label="vwx250",fontsize=16,color="green",shape="box"];2548[label="vwx260",fontsize=16,color="green",shape="box"];2549[label="vwx250",fontsize=16,color="green",shape="box"];2550[label="vwx260",fontsize=16,color="green",shape="box"];2551[label="vwx250",fontsize=16,color="green",shape="box"];2552[label="vwx260",fontsize=16,color="green",shape="box"];2553[label="vwx250",fontsize=16,color="green",shape="box"];2554[label="vwx260",fontsize=16,color="green",shape="box"];2555[label="vwx250",fontsize=16,color="green",shape="box"];2556[label="vwx260",fontsize=16,color="green",shape="box"];2557[label="vwx250",fontsize=16,color="green",shape="box"];2558[label="vwx260",fontsize=16,color="green",shape="box"];2559[label="vwx250",fontsize=16,color="green",shape="box"];2560[label="vwx260",fontsize=16,color="green",shape="box"];2561[label="vwx250",fontsize=16,color="green",shape="box"];2562 -> 1243[label="",style="dashed", color="red", weight=0]; 2562[label="vwx251 <= vwx261",fontsize=16,color="magenta"];2562 -> 2636[label="",style="dashed", color="magenta", weight=3]; 2562 -> 2637[label="",style="dashed", color="magenta", weight=3]; 2563 -> 1244[label="",style="dashed", color="red", weight=0]; 2563[label="vwx251 <= vwx261",fontsize=16,color="magenta"];2563 -> 2638[label="",style="dashed", color="magenta", weight=3]; 2563 -> 2639[label="",style="dashed", color="magenta", weight=3]; 2564 -> 1245[label="",style="dashed", color="red", weight=0]; 2564[label="vwx251 <= vwx261",fontsize=16,color="magenta"];2564 -> 2640[label="",style="dashed", color="magenta", weight=3]; 2564 -> 2641[label="",style="dashed", color="magenta", weight=3]; 2565 -> 1246[label="",style="dashed", color="red", weight=0]; 2565[label="vwx251 <= vwx261",fontsize=16,color="magenta"];2565 -> 2642[label="",style="dashed", color="magenta", weight=3]; 2565 -> 2643[label="",style="dashed", color="magenta", weight=3]; 2566 -> 1247[label="",style="dashed", color="red", weight=0]; 2566[label="vwx251 <= vwx261",fontsize=16,color="magenta"];2566 -> 2644[label="",style="dashed", color="magenta", weight=3]; 2566 -> 2645[label="",style="dashed", color="magenta", weight=3]; 2567 -> 1248[label="",style="dashed", color="red", weight=0]; 2567[label="vwx251 <= vwx261",fontsize=16,color="magenta"];2567 -> 2646[label="",style="dashed", color="magenta", weight=3]; 2567 -> 2647[label="",style="dashed", color="magenta", weight=3]; 2568 -> 1249[label="",style="dashed", color="red", weight=0]; 2568[label="vwx251 <= vwx261",fontsize=16,color="magenta"];2568 -> 2648[label="",style="dashed", color="magenta", weight=3]; 2568 -> 2649[label="",style="dashed", color="magenta", weight=3]; 2569 -> 1250[label="",style="dashed", color="red", weight=0]; 2569[label="vwx251 <= vwx261",fontsize=16,color="magenta"];2569 -> 2650[label="",style="dashed", color="magenta", weight=3]; 2569 -> 2651[label="",style="dashed", color="magenta", weight=3]; 2570 -> 1251[label="",style="dashed", color="red", weight=0]; 2570[label="vwx251 <= vwx261",fontsize=16,color="magenta"];2570 -> 2652[label="",style="dashed", color="magenta", weight=3]; 2570 -> 2653[label="",style="dashed", color="magenta", weight=3]; 2571 -> 1252[label="",style="dashed", color="red", weight=0]; 2571[label="vwx251 <= vwx261",fontsize=16,color="magenta"];2571 -> 2654[label="",style="dashed", color="magenta", weight=3]; 2571 -> 2655[label="",style="dashed", color="magenta", weight=3]; 2572 -> 1253[label="",style="dashed", color="red", weight=0]; 2572[label="vwx251 <= vwx261",fontsize=16,color="magenta"];2572 -> 2656[label="",style="dashed", color="magenta", weight=3]; 2572 -> 2657[label="",style="dashed", color="magenta", weight=3]; 2573 -> 1254[label="",style="dashed", color="red", weight=0]; 2573[label="vwx251 <= vwx261",fontsize=16,color="magenta"];2573 -> 2658[label="",style="dashed", color="magenta", weight=3]; 2573 -> 2659[label="",style="dashed", color="magenta", weight=3]; 2574 -> 1255[label="",style="dashed", color="red", weight=0]; 2574[label="vwx251 <= vwx261",fontsize=16,color="magenta"];2574 -> 2660[label="",style="dashed", color="magenta", weight=3]; 2574 -> 2661[label="",style="dashed", color="magenta", weight=3]; 2575 -> 1256[label="",style="dashed", color="red", weight=0]; 2575[label="vwx251 <= vwx261",fontsize=16,color="magenta"];2575 -> 2662[label="",style="dashed", color="magenta", weight=3]; 2575 -> 2663[label="",style="dashed", color="magenta", weight=3]; 2576 -> 368[label="",style="dashed", color="red", weight=0]; 2576[label="vwx250 == vwx260",fontsize=16,color="magenta"];2576 -> 2664[label="",style="dashed", color="magenta", weight=3]; 2576 -> 2665[label="",style="dashed", color="magenta", weight=3]; 2577 -> 372[label="",style="dashed", color="red", weight=0]; 2577[label="vwx250 == vwx260",fontsize=16,color="magenta"];2577 -> 2666[label="",style="dashed", color="magenta", weight=3]; 2577 -> 2667[label="",style="dashed", color="magenta", weight=3]; 2578 -> 369[label="",style="dashed", color="red", weight=0]; 2578[label="vwx250 == vwx260",fontsize=16,color="magenta"];2578 -> 2668[label="",style="dashed", color="magenta", weight=3]; 2578 -> 2669[label="",style="dashed", color="magenta", weight=3]; 2579 -> 377[label="",style="dashed", color="red", weight=0]; 2579[label="vwx250 == vwx260",fontsize=16,color="magenta"];2579 -> 2670[label="",style="dashed", color="magenta", weight=3]; 2579 -> 2671[label="",style="dashed", color="magenta", weight=3]; 2580 -> 376[label="",style="dashed", color="red", weight=0]; 2580[label="vwx250 == vwx260",fontsize=16,color="magenta"];2580 -> 2672[label="",style="dashed", color="magenta", weight=3]; 2580 -> 2673[label="",style="dashed", color="magenta", weight=3]; 2581 -> 374[label="",style="dashed", color="red", weight=0]; 2581[label="vwx250 == vwx260",fontsize=16,color="magenta"];2581 -> 2674[label="",style="dashed", color="magenta", weight=3]; 2581 -> 2675[label="",style="dashed", color="magenta", weight=3]; 2582 -> 373[label="",style="dashed", color="red", weight=0]; 2582[label="vwx250 == vwx260",fontsize=16,color="magenta"];2582 -> 2676[label="",style="dashed", color="magenta", weight=3]; 2582 -> 2677[label="",style="dashed", color="magenta", weight=3]; 2583 -> 370[label="",style="dashed", color="red", weight=0]; 2583[label="vwx250 == vwx260",fontsize=16,color="magenta"];2583 -> 2678[label="",style="dashed", color="magenta", weight=3]; 2583 -> 2679[label="",style="dashed", color="magenta", weight=3]; 2584 -> 364[label="",style="dashed", color="red", weight=0]; 2584[label="vwx250 == vwx260",fontsize=16,color="magenta"];2584 -> 2680[label="",style="dashed", color="magenta", weight=3]; 2584 -> 2681[label="",style="dashed", color="magenta", weight=3]; 2585 -> 365[label="",style="dashed", color="red", weight=0]; 2585[label="vwx250 == vwx260",fontsize=16,color="magenta"];2585 -> 2682[label="",style="dashed", color="magenta", weight=3]; 2585 -> 2683[label="",style="dashed", color="magenta", weight=3]; 2586 -> 367[label="",style="dashed", color="red", weight=0]; 2586[label="vwx250 == vwx260",fontsize=16,color="magenta"];2586 -> 2684[label="",style="dashed", color="magenta", weight=3]; 2586 -> 2685[label="",style="dashed", color="magenta", weight=3]; 2587 -> 375[label="",style="dashed", color="red", weight=0]; 2587[label="vwx250 == vwx260",fontsize=16,color="magenta"];2587 -> 2686[label="",style="dashed", color="magenta", weight=3]; 2587 -> 2687[label="",style="dashed", color="magenta", weight=3]; 2588 -> 366[label="",style="dashed", color="red", weight=0]; 2588[label="vwx250 == vwx260",fontsize=16,color="magenta"];2588 -> 2688[label="",style="dashed", color="magenta", weight=3]; 2588 -> 2689[label="",style="dashed", color="magenta", weight=3]; 2589 -> 371[label="",style="dashed", color="red", weight=0]; 2589[label="vwx250 == vwx260",fontsize=16,color="magenta"];2589 -> 2690[label="",style="dashed", color="magenta", weight=3]; 2589 -> 2691[label="",style="dashed", color="magenta", weight=3]; 2590[label="primPlusNat (Succ vwx16900) vwx30100",fontsize=16,color="burlywood",shape="box"];3619[label="vwx30100/Succ vwx301000",fontsize=10,color="white",style="solid",shape="box"];2590 -> 3619[label="",style="solid", color="burlywood", weight=9]; 3619 -> 2692[label="",style="solid", color="burlywood", weight=3]; 3620[label="vwx30100/Zero",fontsize=10,color="white",style="solid",shape="box"];2590 -> 3620[label="",style="solid", color="burlywood", weight=9]; 3620 -> 2693[label="",style="solid", color="burlywood", weight=3]; 2591[label="primPlusNat Zero vwx30100",fontsize=16,color="burlywood",shape="box"];3621[label="vwx30100/Succ vwx301000",fontsize=10,color="white",style="solid",shape="box"];2591 -> 3621[label="",style="solid", color="burlywood", weight=9]; 3621 -> 2694[label="",style="solid", color="burlywood", weight=3]; 3622[label="vwx30100/Zero",fontsize=10,color="white",style="solid",shape="box"];2591 -> 3622[label="",style="solid", color="burlywood", weight=9]; 3622 -> 2695[label="",style="solid", color="burlywood", weight=3]; 2592 -> 1296[label="",style="dashed", color="red", weight=0]; 2592[label="vwx251 < vwx261",fontsize=16,color="magenta"];2592 -> 2696[label="",style="dashed", color="magenta", weight=3]; 2592 -> 2697[label="",style="dashed", color="magenta", weight=3]; 2593 -> 1297[label="",style="dashed", color="red", weight=0]; 2593[label="vwx251 < vwx261",fontsize=16,color="magenta"];2593 -> 2698[label="",style="dashed", color="magenta", weight=3]; 2593 -> 2699[label="",style="dashed", color="magenta", weight=3]; 2594 -> 1298[label="",style="dashed", color="red", weight=0]; 2594[label="vwx251 < vwx261",fontsize=16,color="magenta"];2594 -> 2700[label="",style="dashed", color="magenta", weight=3]; 2594 -> 2701[label="",style="dashed", color="magenta", weight=3]; 2595 -> 1299[label="",style="dashed", color="red", weight=0]; 2595[label="vwx251 < vwx261",fontsize=16,color="magenta"];2595 -> 2702[label="",style="dashed", color="magenta", weight=3]; 2595 -> 2703[label="",style="dashed", color="magenta", weight=3]; 2596 -> 1300[label="",style="dashed", color="red", weight=0]; 2596[label="vwx251 < vwx261",fontsize=16,color="magenta"];2596 -> 2704[label="",style="dashed", color="magenta", weight=3]; 2596 -> 2705[label="",style="dashed", color="magenta", weight=3]; 2597 -> 1301[label="",style="dashed", color="red", weight=0]; 2597[label="vwx251 < vwx261",fontsize=16,color="magenta"];2597 -> 2706[label="",style="dashed", color="magenta", weight=3]; 2597 -> 2707[label="",style="dashed", color="magenta", weight=3]; 2598 -> 1302[label="",style="dashed", color="red", weight=0]; 2598[label="vwx251 < vwx261",fontsize=16,color="magenta"];2598 -> 2708[label="",style="dashed", color="magenta", weight=3]; 2598 -> 2709[label="",style="dashed", color="magenta", weight=3]; 2599 -> 1303[label="",style="dashed", color="red", weight=0]; 2599[label="vwx251 < vwx261",fontsize=16,color="magenta"];2599 -> 2710[label="",style="dashed", color="magenta", weight=3]; 2599 -> 2711[label="",style="dashed", color="magenta", weight=3]; 2600 -> 1304[label="",style="dashed", color="red", weight=0]; 2600[label="vwx251 < vwx261",fontsize=16,color="magenta"];2600 -> 2712[label="",style="dashed", color="magenta", weight=3]; 2600 -> 2713[label="",style="dashed", color="magenta", weight=3]; 2601 -> 1305[label="",style="dashed", color="red", weight=0]; 2601[label="vwx251 < vwx261",fontsize=16,color="magenta"];2601 -> 2714[label="",style="dashed", color="magenta", weight=3]; 2601 -> 2715[label="",style="dashed", color="magenta", weight=3]; 2602 -> 1306[label="",style="dashed", color="red", weight=0]; 2602[label="vwx251 < vwx261",fontsize=16,color="magenta"];2602 -> 2716[label="",style="dashed", color="magenta", weight=3]; 2602 -> 2717[label="",style="dashed", color="magenta", weight=3]; 2603 -> 1307[label="",style="dashed", color="red", weight=0]; 2603[label="vwx251 < vwx261",fontsize=16,color="magenta"];2603 -> 2718[label="",style="dashed", color="magenta", weight=3]; 2603 -> 2719[label="",style="dashed", color="magenta", weight=3]; 2604 -> 1308[label="",style="dashed", color="red", weight=0]; 2604[label="vwx251 < vwx261",fontsize=16,color="magenta"];2604 -> 2720[label="",style="dashed", color="magenta", weight=3]; 2604 -> 2721[label="",style="dashed", color="magenta", weight=3]; 2605 -> 1309[label="",style="dashed", color="red", weight=0]; 2605[label="vwx251 < vwx261",fontsize=16,color="magenta"];2605 -> 2722[label="",style="dashed", color="magenta", weight=3]; 2605 -> 2723[label="",style="dashed", color="magenta", weight=3]; 2606[label="vwx252 <= vwx262",fontsize=16,color="blue",shape="box"];3623[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2606 -> 3623[label="",style="solid", color="blue", weight=9]; 3623 -> 2724[label="",style="solid", color="blue", weight=3]; 3624[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2606 -> 3624[label="",style="solid", color="blue", weight=9]; 3624 -> 2725[label="",style="solid", color="blue", weight=3]; 3625[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2606 -> 3625[label="",style="solid", color="blue", weight=9]; 3625 -> 2726[label="",style="solid", color="blue", weight=3]; 3626[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2606 -> 3626[label="",style="solid", color="blue", weight=9]; 3626 -> 2727[label="",style="solid", color="blue", weight=3]; 3627[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2606 -> 3627[label="",style="solid", color="blue", weight=9]; 3627 -> 2728[label="",style="solid", color="blue", weight=3]; 3628[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2606 -> 3628[label="",style="solid", color="blue", weight=9]; 3628 -> 2729[label="",style="solid", color="blue", weight=3]; 3629[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2606 -> 3629[label="",style="solid", color="blue", weight=9]; 3629 -> 2730[label="",style="solid", color="blue", weight=3]; 3630[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2606 -> 3630[label="",style="solid", color="blue", weight=9]; 3630 -> 2731[label="",style="solid", color="blue", weight=3]; 3631[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2606 -> 3631[label="",style="solid", color="blue", weight=9]; 3631 -> 2732[label="",style="solid", color="blue", weight=3]; 3632[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2606 -> 3632[label="",style="solid", color="blue", weight=9]; 3632 -> 2733[label="",style="solid", color="blue", weight=3]; 3633[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2606 -> 3633[label="",style="solid", color="blue", weight=9]; 3633 -> 2734[label="",style="solid", color="blue", weight=3]; 3634[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2606 -> 3634[label="",style="solid", color="blue", weight=9]; 3634 -> 2735[label="",style="solid", color="blue", weight=3]; 3635[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2606 -> 3635[label="",style="solid", color="blue", weight=9]; 3635 -> 2736[label="",style="solid", color="blue", weight=3]; 3636[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2606 -> 3636[label="",style="solid", color="blue", weight=9]; 3636 -> 2737[label="",style="solid", color="blue", weight=3]; 2607[label="vwx251 == vwx261",fontsize=16,color="blue",shape="box"];3637[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2607 -> 3637[label="",style="solid", color="blue", weight=9]; 3637 -> 2738[label="",style="solid", color="blue", weight=3]; 3638[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2607 -> 3638[label="",style="solid", color="blue", weight=9]; 3638 -> 2739[label="",style="solid", color="blue", weight=3]; 3639[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2607 -> 3639[label="",style="solid", color="blue", weight=9]; 3639 -> 2740[label="",style="solid", color="blue", weight=3]; 3640[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2607 -> 3640[label="",style="solid", color="blue", weight=9]; 3640 -> 2741[label="",style="solid", color="blue", weight=3]; 3641[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2607 -> 3641[label="",style="solid", color="blue", weight=9]; 3641 -> 2742[label="",style="solid", color="blue", weight=3]; 3642[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2607 -> 3642[label="",style="solid", color="blue", weight=9]; 3642 -> 2743[label="",style="solid", color="blue", weight=3]; 3643[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2607 -> 3643[label="",style="solid", color="blue", weight=9]; 3643 -> 2744[label="",style="solid", color="blue", weight=3]; 3644[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2607 -> 3644[label="",style="solid", color="blue", weight=9]; 3644 -> 2745[label="",style="solid", color="blue", weight=3]; 3645[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2607 -> 3645[label="",style="solid", color="blue", weight=9]; 3645 -> 2746[label="",style="solid", color="blue", weight=3]; 3646[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2607 -> 3646[label="",style="solid", color="blue", weight=9]; 3646 -> 2747[label="",style="solid", color="blue", weight=3]; 3647[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2607 -> 3647[label="",style="solid", color="blue", weight=9]; 3647 -> 2748[label="",style="solid", color="blue", weight=3]; 3648[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2607 -> 3648[label="",style="solid", color="blue", weight=9]; 3648 -> 2749[label="",style="solid", color="blue", weight=3]; 3649[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2607 -> 3649[label="",style="solid", color="blue", weight=9]; 3649 -> 2750[label="",style="solid", color="blue", weight=3]; 3650[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2607 -> 3650[label="",style="solid", color="blue", weight=9]; 3650 -> 2751[label="",style="solid", color="blue", weight=3]; 2608[label="vwx250",fontsize=16,color="green",shape="box"];2609[label="vwx260",fontsize=16,color="green",shape="box"];2610[label="vwx250",fontsize=16,color="green",shape="box"];2611[label="vwx260",fontsize=16,color="green",shape="box"];2612[label="vwx250",fontsize=16,color="green",shape="box"];2613[label="vwx260",fontsize=16,color="green",shape="box"];2614[label="vwx250",fontsize=16,color="green",shape="box"];2615[label="vwx260",fontsize=16,color="green",shape="box"];2616[label="vwx250",fontsize=16,color="green",shape="box"];2617[label="vwx260",fontsize=16,color="green",shape="box"];2618[label="vwx250",fontsize=16,color="green",shape="box"];2619[label="vwx260",fontsize=16,color="green",shape="box"];2620[label="vwx250",fontsize=16,color="green",shape="box"];2621[label="vwx260",fontsize=16,color="green",shape="box"];2622[label="vwx250",fontsize=16,color="green",shape="box"];2623[label="vwx260",fontsize=16,color="green",shape="box"];2624[label="vwx250",fontsize=16,color="green",shape="box"];2625[label="vwx260",fontsize=16,color="green",shape="box"];2626[label="vwx250",fontsize=16,color="green",shape="box"];2627[label="vwx260",fontsize=16,color="green",shape="box"];2628[label="vwx250",fontsize=16,color="green",shape="box"];2629[label="vwx260",fontsize=16,color="green",shape="box"];2630[label="vwx250",fontsize=16,color="green",shape="box"];2631[label="vwx260",fontsize=16,color="green",shape="box"];2632[label="vwx250",fontsize=16,color="green",shape="box"];2633[label="vwx260",fontsize=16,color="green",shape="box"];2634[label="vwx250",fontsize=16,color="green",shape="box"];2635[label="vwx260",fontsize=16,color="green",shape="box"];2636[label="vwx261",fontsize=16,color="green",shape="box"];2637[label="vwx251",fontsize=16,color="green",shape="box"];2638[label="vwx261",fontsize=16,color="green",shape="box"];2639[label="vwx251",fontsize=16,color="green",shape="box"];2640[label="vwx261",fontsize=16,color="green",shape="box"];2641[label="vwx251",fontsize=16,color="green",shape="box"];2642[label="vwx261",fontsize=16,color="green",shape="box"];2643[label="vwx251",fontsize=16,color="green",shape="box"];2644[label="vwx261",fontsize=16,color="green",shape="box"];2645[label="vwx251",fontsize=16,color="green",shape="box"];2646[label="vwx261",fontsize=16,color="green",shape="box"];2647[label="vwx251",fontsize=16,color="green",shape="box"];2648[label="vwx261",fontsize=16,color="green",shape="box"];2649[label="vwx251",fontsize=16,color="green",shape="box"];2650[label="vwx261",fontsize=16,color="green",shape="box"];2651[label="vwx251",fontsize=16,color="green",shape="box"];2652[label="vwx261",fontsize=16,color="green",shape="box"];2653[label="vwx251",fontsize=16,color="green",shape="box"];2654[label="vwx261",fontsize=16,color="green",shape="box"];2655[label="vwx251",fontsize=16,color="green",shape="box"];2656[label="vwx261",fontsize=16,color="green",shape="box"];2657[label="vwx251",fontsize=16,color="green",shape="box"];2658[label="vwx261",fontsize=16,color="green",shape="box"];2659[label="vwx251",fontsize=16,color="green",shape="box"];2660[label="vwx261",fontsize=16,color="green",shape="box"];2661[label="vwx251",fontsize=16,color="green",shape="box"];2662[label="vwx261",fontsize=16,color="green",shape="box"];2663[label="vwx251",fontsize=16,color="green",shape="box"];2664[label="vwx250",fontsize=16,color="green",shape="box"];2665[label="vwx260",fontsize=16,color="green",shape="box"];2666[label="vwx250",fontsize=16,color="green",shape="box"];2667[label="vwx260",fontsize=16,color="green",shape="box"];2668[label="vwx250",fontsize=16,color="green",shape="box"];2669[label="vwx260",fontsize=16,color="green",shape="box"];2670[label="vwx250",fontsize=16,color="green",shape="box"];2671[label="vwx260",fontsize=16,color="green",shape="box"];2672[label="vwx250",fontsize=16,color="green",shape="box"];2673[label="vwx260",fontsize=16,color="green",shape="box"];2674[label="vwx250",fontsize=16,color="green",shape="box"];2675[label="vwx260",fontsize=16,color="green",shape="box"];2676[label="vwx250",fontsize=16,color="green",shape="box"];2677[label="vwx260",fontsize=16,color="green",shape="box"];2678[label="vwx250",fontsize=16,color="green",shape="box"];2679[label="vwx260",fontsize=16,color="green",shape="box"];2680[label="vwx250",fontsize=16,color="green",shape="box"];2681[label="vwx260",fontsize=16,color="green",shape="box"];2682[label="vwx250",fontsize=16,color="green",shape="box"];2683[label="vwx260",fontsize=16,color="green",shape="box"];2684[label="vwx250",fontsize=16,color="green",shape="box"];2685[label="vwx260",fontsize=16,color="green",shape="box"];2686[label="vwx250",fontsize=16,color="green",shape="box"];2687[label="vwx260",fontsize=16,color="green",shape="box"];2688[label="vwx250",fontsize=16,color="green",shape="box"];2689[label="vwx260",fontsize=16,color="green",shape="box"];2690[label="vwx250",fontsize=16,color="green",shape="box"];2691[label="vwx260",fontsize=16,color="green",shape="box"];2692[label="primPlusNat (Succ vwx16900) (Succ vwx301000)",fontsize=16,color="black",shape="box"];2692 -> 2752[label="",style="solid", color="black", weight=3]; 2693[label="primPlusNat (Succ vwx16900) Zero",fontsize=16,color="black",shape="box"];2693 -> 2753[label="",style="solid", color="black", weight=3]; 2694[label="primPlusNat Zero (Succ vwx301000)",fontsize=16,color="black",shape="box"];2694 -> 2754[label="",style="solid", color="black", weight=3]; 2695[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];2695 -> 2755[label="",style="solid", color="black", weight=3]; 2696[label="vwx261",fontsize=16,color="green",shape="box"];2697[label="vwx251",fontsize=16,color="green",shape="box"];2698[label="vwx261",fontsize=16,color="green",shape="box"];2699[label="vwx251",fontsize=16,color="green",shape="box"];2700[label="vwx261",fontsize=16,color="green",shape="box"];2701[label="vwx251",fontsize=16,color="green",shape="box"];2702[label="vwx261",fontsize=16,color="green",shape="box"];2703[label="vwx251",fontsize=16,color="green",shape="box"];2704[label="vwx261",fontsize=16,color="green",shape="box"];2705[label="vwx251",fontsize=16,color="green",shape="box"];2706[label="vwx261",fontsize=16,color="green",shape="box"];2707[label="vwx251",fontsize=16,color="green",shape="box"];2708[label="vwx261",fontsize=16,color="green",shape="box"];2709[label="vwx251",fontsize=16,color="green",shape="box"];2710[label="vwx261",fontsize=16,color="green",shape="box"];2711[label="vwx251",fontsize=16,color="green",shape="box"];2712[label="vwx261",fontsize=16,color="green",shape="box"];2713[label="vwx251",fontsize=16,color="green",shape="box"];2714[label="vwx261",fontsize=16,color="green",shape="box"];2715[label="vwx251",fontsize=16,color="green",shape="box"];2716[label="vwx261",fontsize=16,color="green",shape="box"];2717[label="vwx251",fontsize=16,color="green",shape="box"];2718[label="vwx261",fontsize=16,color="green",shape="box"];2719[label="vwx251",fontsize=16,color="green",shape="box"];2720[label="vwx261",fontsize=16,color="green",shape="box"];2721[label="vwx251",fontsize=16,color="green",shape="box"];2722[label="vwx261",fontsize=16,color="green",shape="box"];2723[label="vwx251",fontsize=16,color="green",shape="box"];2724 -> 1243[label="",style="dashed", color="red", weight=0]; 2724[label="vwx252 <= vwx262",fontsize=16,color="magenta"];2724 -> 2756[label="",style="dashed", color="magenta", weight=3]; 2724 -> 2757[label="",style="dashed", color="magenta", weight=3]; 2725 -> 1244[label="",style="dashed", color="red", weight=0]; 2725[label="vwx252 <= vwx262",fontsize=16,color="magenta"];2725 -> 2758[label="",style="dashed", color="magenta", weight=3]; 2725 -> 2759[label="",style="dashed", color="magenta", weight=3]; 2726 -> 1245[label="",style="dashed", color="red", weight=0]; 2726[label="vwx252 <= vwx262",fontsize=16,color="magenta"];2726 -> 2760[label="",style="dashed", color="magenta", weight=3]; 2726 -> 2761[label="",style="dashed", color="magenta", weight=3]; 2727 -> 1246[label="",style="dashed", color="red", weight=0]; 2727[label="vwx252 <= vwx262",fontsize=16,color="magenta"];2727 -> 2762[label="",style="dashed", color="magenta", weight=3]; 2727 -> 2763[label="",style="dashed", color="magenta", weight=3]; 2728 -> 1247[label="",style="dashed", color="red", weight=0]; 2728[label="vwx252 <= vwx262",fontsize=16,color="magenta"];2728 -> 2764[label="",style="dashed", color="magenta", weight=3]; 2728 -> 2765[label="",style="dashed", color="magenta", weight=3]; 2729 -> 1248[label="",style="dashed", color="red", weight=0]; 2729[label="vwx252 <= vwx262",fontsize=16,color="magenta"];2729 -> 2766[label="",style="dashed", color="magenta", weight=3]; 2729 -> 2767[label="",style="dashed", color="magenta", weight=3]; 2730 -> 1249[label="",style="dashed", color="red", weight=0]; 2730[label="vwx252 <= vwx262",fontsize=16,color="magenta"];2730 -> 2768[label="",style="dashed", color="magenta", weight=3]; 2730 -> 2769[label="",style="dashed", color="magenta", weight=3]; 2731 -> 1250[label="",style="dashed", color="red", weight=0]; 2731[label="vwx252 <= vwx262",fontsize=16,color="magenta"];2731 -> 2770[label="",style="dashed", color="magenta", weight=3]; 2731 -> 2771[label="",style="dashed", color="magenta", weight=3]; 2732 -> 1251[label="",style="dashed", color="red", weight=0]; 2732[label="vwx252 <= vwx262",fontsize=16,color="magenta"];2732 -> 2772[label="",style="dashed", color="magenta", weight=3]; 2732 -> 2773[label="",style="dashed", color="magenta", weight=3]; 2733 -> 1252[label="",style="dashed", color="red", weight=0]; 2733[label="vwx252 <= vwx262",fontsize=16,color="magenta"];2733 -> 2774[label="",style="dashed", color="magenta", weight=3]; 2733 -> 2775[label="",style="dashed", color="magenta", weight=3]; 2734 -> 1253[label="",style="dashed", color="red", weight=0]; 2734[label="vwx252 <= vwx262",fontsize=16,color="magenta"];2734 -> 2776[label="",style="dashed", color="magenta", weight=3]; 2734 -> 2777[label="",style="dashed", color="magenta", weight=3]; 2735 -> 1254[label="",style="dashed", color="red", weight=0]; 2735[label="vwx252 <= vwx262",fontsize=16,color="magenta"];2735 -> 2778[label="",style="dashed", color="magenta", weight=3]; 2735 -> 2779[label="",style="dashed", color="magenta", weight=3]; 2736 -> 1255[label="",style="dashed", color="red", weight=0]; 2736[label="vwx252 <= vwx262",fontsize=16,color="magenta"];2736 -> 2780[label="",style="dashed", color="magenta", weight=3]; 2736 -> 2781[label="",style="dashed", color="magenta", weight=3]; 2737 -> 1256[label="",style="dashed", color="red", weight=0]; 2737[label="vwx252 <= vwx262",fontsize=16,color="magenta"];2737 -> 2782[label="",style="dashed", color="magenta", weight=3]; 2737 -> 2783[label="",style="dashed", color="magenta", weight=3]; 2738 -> 368[label="",style="dashed", color="red", weight=0]; 2738[label="vwx251 == vwx261",fontsize=16,color="magenta"];2738 -> 2784[label="",style="dashed", color="magenta", weight=3]; 2738 -> 2785[label="",style="dashed", color="magenta", weight=3]; 2739 -> 372[label="",style="dashed", color="red", weight=0]; 2739[label="vwx251 == vwx261",fontsize=16,color="magenta"];2739 -> 2786[label="",style="dashed", color="magenta", weight=3]; 2739 -> 2787[label="",style="dashed", color="magenta", weight=3]; 2740 -> 369[label="",style="dashed", color="red", weight=0]; 2740[label="vwx251 == vwx261",fontsize=16,color="magenta"];2740 -> 2788[label="",style="dashed", color="magenta", weight=3]; 2740 -> 2789[label="",style="dashed", color="magenta", weight=3]; 2741 -> 377[label="",style="dashed", color="red", weight=0]; 2741[label="vwx251 == vwx261",fontsize=16,color="magenta"];2741 -> 2790[label="",style="dashed", color="magenta", weight=3]; 2741 -> 2791[label="",style="dashed", color="magenta", weight=3]; 2742 -> 376[label="",style="dashed", color="red", weight=0]; 2742[label="vwx251 == vwx261",fontsize=16,color="magenta"];2742 -> 2792[label="",style="dashed", color="magenta", weight=3]; 2742 -> 2793[label="",style="dashed", color="magenta", weight=3]; 2743 -> 374[label="",style="dashed", color="red", weight=0]; 2743[label="vwx251 == vwx261",fontsize=16,color="magenta"];2743 -> 2794[label="",style="dashed", color="magenta", weight=3]; 2743 -> 2795[label="",style="dashed", color="magenta", weight=3]; 2744 -> 373[label="",style="dashed", color="red", weight=0]; 2744[label="vwx251 == vwx261",fontsize=16,color="magenta"];2744 -> 2796[label="",style="dashed", color="magenta", weight=3]; 2744 -> 2797[label="",style="dashed", color="magenta", weight=3]; 2745 -> 370[label="",style="dashed", color="red", weight=0]; 2745[label="vwx251 == vwx261",fontsize=16,color="magenta"];2745 -> 2798[label="",style="dashed", color="magenta", weight=3]; 2745 -> 2799[label="",style="dashed", color="magenta", weight=3]; 2746 -> 364[label="",style="dashed", color="red", weight=0]; 2746[label="vwx251 == vwx261",fontsize=16,color="magenta"];2746 -> 2800[label="",style="dashed", color="magenta", weight=3]; 2746 -> 2801[label="",style="dashed", color="magenta", weight=3]; 2747 -> 365[label="",style="dashed", color="red", weight=0]; 2747[label="vwx251 == vwx261",fontsize=16,color="magenta"];2747 -> 2802[label="",style="dashed", color="magenta", weight=3]; 2747 -> 2803[label="",style="dashed", color="magenta", weight=3]; 2748 -> 367[label="",style="dashed", color="red", weight=0]; 2748[label="vwx251 == vwx261",fontsize=16,color="magenta"];2748 -> 2804[label="",style="dashed", color="magenta", weight=3]; 2748 -> 2805[label="",style="dashed", color="magenta", weight=3]; 2749 -> 375[label="",style="dashed", color="red", weight=0]; 2749[label="vwx251 == vwx261",fontsize=16,color="magenta"];2749 -> 2806[label="",style="dashed", color="magenta", weight=3]; 2749 -> 2807[label="",style="dashed", color="magenta", weight=3]; 2750 -> 366[label="",style="dashed", color="red", weight=0]; 2750[label="vwx251 == vwx261",fontsize=16,color="magenta"];2750 -> 2808[label="",style="dashed", color="magenta", weight=3]; 2750 -> 2809[label="",style="dashed", color="magenta", weight=3]; 2751 -> 371[label="",style="dashed", color="red", weight=0]; 2751[label="vwx251 == vwx261",fontsize=16,color="magenta"];2751 -> 2810[label="",style="dashed", color="magenta", weight=3]; 2751 -> 2811[label="",style="dashed", color="magenta", weight=3]; 2752[label="Succ (Succ (primPlusNat vwx16900 vwx301000))",fontsize=16,color="green",shape="box"];2752 -> 2812[label="",style="dashed", color="green", weight=3]; 2753[label="Succ vwx16900",fontsize=16,color="green",shape="box"];2754[label="Succ vwx301000",fontsize=16,color="green",shape="box"];2755[label="Zero",fontsize=16,color="green",shape="box"];2756[label="vwx262",fontsize=16,color="green",shape="box"];2757[label="vwx252",fontsize=16,color="green",shape="box"];2758[label="vwx262",fontsize=16,color="green",shape="box"];2759[label="vwx252",fontsize=16,color="green",shape="box"];2760[label="vwx262",fontsize=16,color="green",shape="box"];2761[label="vwx252",fontsize=16,color="green",shape="box"];2762[label="vwx262",fontsize=16,color="green",shape="box"];2763[label="vwx252",fontsize=16,color="green",shape="box"];2764[label="vwx262",fontsize=16,color="green",shape="box"];2765[label="vwx252",fontsize=16,color="green",shape="box"];2766[label="vwx262",fontsize=16,color="green",shape="box"];2767[label="vwx252",fontsize=16,color="green",shape="box"];2768[label="vwx262",fontsize=16,color="green",shape="box"];2769[label="vwx252",fontsize=16,color="green",shape="box"];2770[label="vwx262",fontsize=16,color="green",shape="box"];2771[label="vwx252",fontsize=16,color="green",shape="box"];2772[label="vwx262",fontsize=16,color="green",shape="box"];2773[label="vwx252",fontsize=16,color="green",shape="box"];2774[label="vwx262",fontsize=16,color="green",shape="box"];2775[label="vwx252",fontsize=16,color="green",shape="box"];2776[label="vwx262",fontsize=16,color="green",shape="box"];2777[label="vwx252",fontsize=16,color="green",shape="box"];2778[label="vwx262",fontsize=16,color="green",shape="box"];2779[label="vwx252",fontsize=16,color="green",shape="box"];2780[label="vwx262",fontsize=16,color="green",shape="box"];2781[label="vwx252",fontsize=16,color="green",shape="box"];2782[label="vwx262",fontsize=16,color="green",shape="box"];2783[label="vwx252",fontsize=16,color="green",shape="box"];2784[label="vwx251",fontsize=16,color="green",shape="box"];2785[label="vwx261",fontsize=16,color="green",shape="box"];2786[label="vwx251",fontsize=16,color="green",shape="box"];2787[label="vwx261",fontsize=16,color="green",shape="box"];2788[label="vwx251",fontsize=16,color="green",shape="box"];2789[label="vwx261",fontsize=16,color="green",shape="box"];2790[label="vwx251",fontsize=16,color="green",shape="box"];2791[label="vwx261",fontsize=16,color="green",shape="box"];2792[label="vwx251",fontsize=16,color="green",shape="box"];2793[label="vwx261",fontsize=16,color="green",shape="box"];2794[label="vwx251",fontsize=16,color="green",shape="box"];2795[label="vwx261",fontsize=16,color="green",shape="box"];2796[label="vwx251",fontsize=16,color="green",shape="box"];2797[label="vwx261",fontsize=16,color="green",shape="box"];2798[label="vwx251",fontsize=16,color="green",shape="box"];2799[label="vwx261",fontsize=16,color="green",shape="box"];2800[label="vwx251",fontsize=16,color="green",shape="box"];2801[label="vwx261",fontsize=16,color="green",shape="box"];2802[label="vwx251",fontsize=16,color="green",shape="box"];2803[label="vwx261",fontsize=16,color="green",shape="box"];2804[label="vwx251",fontsize=16,color="green",shape="box"];2805[label="vwx261",fontsize=16,color="green",shape="box"];2806[label="vwx251",fontsize=16,color="green",shape="box"];2807[label="vwx261",fontsize=16,color="green",shape="box"];2808[label="vwx251",fontsize=16,color="green",shape="box"];2809[label="vwx261",fontsize=16,color="green",shape="box"];2810[label="vwx251",fontsize=16,color="green",shape="box"];2811[label="vwx261",fontsize=16,color="green",shape="box"];2812 -> 2487[label="",style="dashed", color="red", weight=0]; 2812[label="primPlusNat vwx16900 vwx301000",fontsize=16,color="magenta"];2812 -> 2813[label="",style="dashed", color="magenta", weight=3]; 2812 -> 2814[label="",style="dashed", color="magenta", weight=3]; 2813[label="vwx16900",fontsize=16,color="green",shape="box"];2814[label="vwx301000",fontsize=16,color="green",shape="box"];} ---------------------------------------- (14) Complex Obligation (AND) ---------------------------------------- (15) Obligation: Q DP problem: The TRS P consists of the following rules: new_primCmpNat(Succ(vwx3000), Succ(vwx4000)) -> new_primCmpNat(vwx3000, vwx4000) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (16) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_primCmpNat(Succ(vwx3000), Succ(vwx4000)) -> new_primCmpNat(vwx3000, vwx4000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (17) YES ---------------------------------------- (18) Obligation: Q DP problem: The TRS P consists of the following rules: new_esEs(:(vwx3000, vwx3001), :(vwx4000, vwx4001), app(app(app(ty_@3, bb), bc), bd)) -> new_esEs1(vwx3000, vwx4000, bb, bc, bd) new_esEs3(Left(vwx3000), Left(vwx4000), app(app(ty_Either, bcg), bch), bbh) -> new_esEs3(vwx3000, vwx4000, bcg, bch) new_esEs(:(vwx3000, vwx3001), :(vwx4000, vwx4001), app(app(ty_@2, be), bf)) -> new_esEs2(vwx3000, vwx4000, be, bf) new_esEs2(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), hc, app(app(ty_@2, hh), baa)) -> new_esEs2(vwx3001, vwx4001, hh, baa) new_esEs3(Right(vwx3000), Right(vwx4000), bda, app(ty_[], bdh)) -> new_esEs(vwx3000, vwx4000, bdh) new_esEs2(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), hc, app(ty_[], bab)) -> new_esEs(vwx3001, vwx4001, bab) new_esEs1(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), app(app(app(ty_@3, gc), gd), ge), de, eh) -> new_esEs1(vwx3000, vwx4000, gc, gd, ge) new_esEs2(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), app(app(ty_Either, bbe), bbf), baf) -> new_esEs3(vwx3000, vwx4000, bbe, bbf) new_esEs(:(vwx3000, vwx3001), :(vwx4000, vwx4001), h) -> new_esEs(vwx3001, vwx4001, h) new_esEs0(Just(vwx3000), Just(vwx4000), app(app(app(ty_@3, cc), cd), ce)) -> new_esEs1(vwx3000, vwx4000, cc, cd, ce) new_esEs0(Just(vwx3000), Just(vwx4000), app(ty_[], da)) -> new_esEs(vwx3000, vwx4000, da) new_esEs3(Left(vwx3000), Left(vwx4000), app(ty_[], bcf), bbh) -> new_esEs(vwx3000, vwx4000, bcf) new_esEs1(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), dd, app(ty_Maybe, eg), eh) -> new_esEs0(vwx3001, vwx4001, eg) new_esEs1(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), app(app(ty_@2, gf), gg), de, eh) -> new_esEs2(vwx3000, vwx4000, gf, gg) new_esEs3(Right(vwx3000), Right(vwx4000), bda, app(app(ty_@2, bdf), bdg)) -> new_esEs2(vwx3000, vwx4000, bdf, bdg) new_esEs(:(vwx3000, vwx3001), :(vwx4000, vwx4001), app(ty_[], bg)) -> new_esEs(vwx3000, vwx4000, bg) new_esEs0(Just(vwx3000), Just(vwx4000), app(app(ty_@2, cf), cg)) -> new_esEs2(vwx3000, vwx4000, cf, cg) new_esEs2(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), app(ty_Maybe, bae), baf) -> new_esEs0(vwx3000, vwx4000, bae) new_esEs(:(vwx3000, vwx3001), :(vwx4000, vwx4001), app(app(ty_Either, bh), ca)) -> new_esEs3(vwx3000, vwx4000, bh, ca) new_esEs1(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), dd, de, app(ty_Maybe, df)) -> new_esEs0(vwx3002, vwx4002, df) new_esEs0(Just(vwx3000), Just(vwx4000), app(app(ty_Either, db), dc)) -> new_esEs3(vwx3000, vwx4000, db, dc) new_esEs2(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), app(app(ty_@2, bbb), bbc), baf) -> new_esEs2(vwx3000, vwx4000, bbb, bbc) new_esEs3(Right(vwx3000), Right(vwx4000), bda, app(app(ty_Either, bea), beb)) -> new_esEs3(vwx3000, vwx4000, bea, beb) new_esEs1(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), app(ty_Maybe, gb), de, eh) -> new_esEs0(vwx3000, vwx4000, gb) new_esEs1(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), app(app(ty_Either, ha), hb), de, eh) -> new_esEs3(vwx3000, vwx4000, ha, hb) new_esEs2(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), hc, app(app(ty_Either, bac), bad)) -> new_esEs3(vwx3001, vwx4001, bac, bad) new_esEs3(Right(vwx3000), Right(vwx4000), bda, app(app(app(ty_@3, bdc), bdd), bde)) -> new_esEs1(vwx3000, vwx4000, bdc, bdd, bde) new_esEs3(Right(vwx3000), Right(vwx4000), bda, app(ty_Maybe, bdb)) -> new_esEs0(vwx3000, vwx4000, bdb) new_esEs1(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), dd, de, app(app(app(ty_@3, dg), dh), ea)) -> new_esEs1(vwx3002, vwx4002, dg, dh, ea) new_esEs2(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), hc, app(ty_Maybe, hd)) -> new_esEs0(vwx3001, vwx4001, hd) new_esEs2(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), hc, app(app(app(ty_@3, he), hf), hg)) -> new_esEs1(vwx3001, vwx4001, he, hf, hg) new_esEs3(Left(vwx3000), Left(vwx4000), app(app(ty_@2, bcd), bce), bbh) -> new_esEs2(vwx3000, vwx4000, bcd, bce) new_esEs1(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), dd, app(app(ty_Either, fh), ga), eh) -> new_esEs3(vwx3001, vwx4001, fh, ga) new_esEs3(Left(vwx3000), Left(vwx4000), app(app(app(ty_@3, bca), bcb), bcc), bbh) -> new_esEs1(vwx3000, vwx4000, bca, bcb, bcc) new_esEs2(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), app(ty_[], bbd), baf) -> new_esEs(vwx3000, vwx4000, bbd) new_esEs1(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), dd, de, app(ty_[], ed)) -> new_esEs(vwx3002, vwx4002, ed) new_esEs1(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), dd, de, app(app(ty_Either, ee), ef)) -> new_esEs3(vwx3002, vwx4002, ee, ef) new_esEs3(Left(vwx3000), Left(vwx4000), app(ty_Maybe, bbg), bbh) -> new_esEs0(vwx3000, vwx4000, bbg) new_esEs1(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), dd, app(ty_[], fg), eh) -> new_esEs(vwx3001, vwx4001, fg) new_esEs0(Just(vwx3000), Just(vwx4000), app(ty_Maybe, cb)) -> new_esEs0(vwx3000, vwx4000, cb) new_esEs1(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), dd, app(app(ty_@2, fd), ff), eh) -> new_esEs2(vwx3001, vwx4001, fd, ff) new_esEs1(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), dd, app(app(app(ty_@3, fa), fb), fc), eh) -> new_esEs1(vwx3001, vwx4001, fa, fb, fc) new_esEs1(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), dd, de, app(app(ty_@2, eb), ec)) -> new_esEs2(vwx3002, vwx4002, eb, ec) new_esEs1(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), app(ty_[], gh), de, eh) -> new_esEs(vwx3000, vwx4000, gh) new_esEs(:(vwx3000, vwx3001), :(vwx4000, vwx4001), app(ty_Maybe, ba)) -> new_esEs0(vwx3000, vwx4000, ba) new_esEs2(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), app(app(app(ty_@3, bag), bah), bba), baf) -> new_esEs1(vwx3000, vwx4000, bag, bah, bba) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (19) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_esEs0(Just(vwx3000), Just(vwx4000), app(ty_[], da)) -> new_esEs(vwx3000, vwx4000, da) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(:(vwx3000, vwx3001), :(vwx4000, vwx4001), app(app(ty_Either, bh), ca)) -> new_esEs3(vwx3000, vwx4000, bh, ca) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(Just(vwx3000), Just(vwx4000), app(app(ty_Either, db), dc)) -> new_esEs3(vwx3000, vwx4000, db, dc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(:(vwx3000, vwx3001), :(vwx4000, vwx4001), app(app(ty_@2, be), bf)) -> new_esEs2(vwx3000, vwx4000, be, bf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(Just(vwx3000), Just(vwx4000), app(app(ty_@2, cf), cg)) -> new_esEs2(vwx3000, vwx4000, cf, cg) 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, bb), bc), bd)) -> new_esEs1(vwx3000, vwx4000, bb, bc, bd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs(:(vwx3000, vwx3001), :(vwx4000, vwx4001), app(ty_Maybe, ba)) -> new_esEs0(vwx3000, vwx4000, ba) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(Just(vwx3000), Just(vwx4000), app(app(app(ty_@3, cc), cd), ce)) -> new_esEs1(vwx3000, vwx4000, cc, cd, ce) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs0(Just(vwx3000), Just(vwx4000), app(ty_Maybe, cb)) -> new_esEs0(vwx3000, vwx4000, cb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), dd, de, app(ty_[], ed)) -> new_esEs(vwx3002, vwx4002, ed) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs1(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), dd, app(ty_[], fg), eh) -> new_esEs(vwx3001, vwx4001, fg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs1(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), app(ty_[], gh), de, eh) -> new_esEs(vwx3000, vwx4000, gh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), app(app(ty_Either, ha), hb), de, eh) -> new_esEs3(vwx3000, vwx4000, ha, hb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), dd, app(app(ty_Either, fh), ga), eh) -> new_esEs3(vwx3001, vwx4001, fh, ga) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs1(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), dd, de, app(app(ty_Either, ee), ef)) -> new_esEs3(vwx3002, vwx4002, ee, ef) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs1(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), app(app(ty_@2, gf), gg), de, eh) -> new_esEs2(vwx3000, vwx4000, gf, gg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), dd, app(app(ty_@2, fd), ff), eh) -> new_esEs2(vwx3001, vwx4001, fd, ff) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs1(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), dd, de, app(app(ty_@2, eb), ec)) -> new_esEs2(vwx3002, vwx4002, eb, ec) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs1(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), app(app(app(ty_@3, gc), gd), ge), de, eh) -> new_esEs1(vwx3000, vwx4000, gc, gd, ge) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs1(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), dd, de, app(app(app(ty_@3, dg), dh), ea)) -> new_esEs1(vwx3002, vwx4002, dg, dh, ea) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_esEs1(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), dd, app(app(app(ty_@3, fa), fb), fc), eh) -> new_esEs1(vwx3001, vwx4001, fa, fb, fc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs1(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), dd, app(ty_Maybe, eg), eh) -> new_esEs0(vwx3001, vwx4001, eg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs1(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), dd, de, app(ty_Maybe, df)) -> new_esEs0(vwx3002, vwx4002, df) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs1(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), app(ty_Maybe, gb), de, eh) -> new_esEs0(vwx3000, vwx4000, gb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(Right(vwx3000), Right(vwx4000), bda, app(ty_[], bdh)) -> new_esEs(vwx3000, vwx4000, bdh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs3(Left(vwx3000), Left(vwx4000), app(ty_[], bcf), bbh) -> new_esEs(vwx3000, vwx4000, bcf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), hc, app(ty_[], bab)) -> new_esEs(vwx3001, vwx4001, bab) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs2(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), app(ty_[], bbd), baf) -> new_esEs(vwx3000, vwx4000, bbd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(:(vwx3000, vwx3001), :(vwx4000, vwx4001), h) -> new_esEs(vwx3001, vwx4001, h) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_esEs(:(vwx3000, vwx3001), :(vwx4000, vwx4001), app(ty_[], bg)) -> new_esEs(vwx3000, vwx4000, bg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(Left(vwx3000), Left(vwx4000), app(app(ty_Either, bcg), bch), bbh) -> new_esEs3(vwx3000, vwx4000, bcg, bch) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(Right(vwx3000), Right(vwx4000), bda, app(app(ty_Either, bea), beb)) -> new_esEs3(vwx3000, vwx4000, bea, beb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs3(Right(vwx3000), Right(vwx4000), bda, app(app(ty_@2, bdf), bdg)) -> new_esEs2(vwx3000, vwx4000, bdf, bdg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs3(Left(vwx3000), Left(vwx4000), app(app(ty_@2, bcd), bce), bbh) -> new_esEs2(vwx3000, vwx4000, bcd, bce) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(Right(vwx3000), Right(vwx4000), bda, app(app(app(ty_@3, bdc), bdd), bde)) -> new_esEs1(vwx3000, vwx4000, bdc, bdd, bde) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs3(Left(vwx3000), Left(vwx4000), app(app(app(ty_@3, bca), bcb), bcc), bbh) -> new_esEs1(vwx3000, vwx4000, bca, bcb, bcc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs3(Right(vwx3000), Right(vwx4000), bda, app(ty_Maybe, bdb)) -> new_esEs0(vwx3000, vwx4000, bdb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs3(Left(vwx3000), Left(vwx4000), app(ty_Maybe, bbg), bbh) -> new_esEs0(vwx3000, vwx4000, bbg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), app(app(ty_Either, bbe), bbf), baf) -> new_esEs3(vwx3000, vwx4000, bbe, bbf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), hc, app(app(ty_Either, bac), bad)) -> new_esEs3(vwx3001, vwx4001, bac, bad) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs2(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), hc, app(app(ty_@2, hh), baa)) -> new_esEs2(vwx3001, vwx4001, hh, baa) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs2(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), app(app(ty_@2, bbb), bbc), baf) -> new_esEs2(vwx3000, vwx4000, bbb, bbc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), hc, app(app(app(ty_@3, he), hf), hg)) -> new_esEs1(vwx3001, vwx4001, he, hf, hg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs2(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), app(app(app(ty_@3, bag), bah), bba), baf) -> new_esEs1(vwx3000, vwx4000, bag, bah, bba) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs2(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), app(ty_Maybe, bae), baf) -> new_esEs0(vwx3000, vwx4000, bae) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), hc, app(ty_Maybe, hd)) -> new_esEs0(vwx3001, vwx4001, hd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 ---------------------------------------- (20) YES ---------------------------------------- (21) Obligation: Q DP problem: The TRS P consists of the following rules: new_primMulNat(Succ(vwx40000), Succ(vwx30100)) -> new_primMulNat(vwx40000, Succ(vwx30100)) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (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_primMulNat(Succ(vwx40000), Succ(vwx30100)) -> new_primMulNat(vwx40000, Succ(vwx30100)) The graph contains the following edges 1 > 1, 2 >= 2 ---------------------------------------- (23) YES ---------------------------------------- (24) Obligation: Q DP problem: The TRS P consists of the following rules: new_compare2(@3(vwx250, vwx251, vwx252), @3(vwx260, vwx261, vwx262), False, app(app(app(ty_@3, ge), fb), app(app(app(ty_@3, bab), bac), bad)), cc) -> new_ltEs1(vwx252, vwx262, bab, bac, bad) new_ltEs1(@3(vwx250, vwx251, vwx252), @3(vwx260, vwx261, vwx262), ge, fb, app(app(ty_Either, hh), baa)) -> new_ltEs0(vwx252, vwx262, hh, baa) new_primCompAux(Just(vwx300), Just(vwx400), vwx15, app(ty_Maybe, bf)) -> new_compare22(vwx300, vwx400, new_esEs9(vwx300, vwx400, bf), bf) new_ltEs0(Left(vwx250), Left(vwx260), app(ty_Maybe, dd), ce) -> new_ltEs2(vwx250, vwx260, dd) new_ltEs(vwx25, vwx26, cb) -> new_compare(vwx25, vwx26, cb) new_compare23(vwx89, vwx90, vwx91, vwx92, False, app(ty_Maybe, cde), ccg) -> new_lt2(vwx89, vwx91, cde) new_ltEs0(Left(vwx250), Left(vwx260), app(app(ty_@2, de), df), ce) -> new_ltEs3(vwx250, vwx260, de, df) new_compare2(Just(vwx250), Just(vwx260), False, app(ty_Maybe, app(app(ty_Either, bba), bbb)), cc) -> new_ltEs0(vwx250, vwx260, bba, bbb) new_ltEs0(Right(vwx250), Right(vwx260), dg, app(app(app(ty_@3, ec), ed), ee)) -> new_ltEs1(vwx250, vwx260, ec, ed, ee) new_compare1(Right(vwx300), Right(vwx400), ba, bb) -> new_compare20(vwx300, vwx400, new_esEs5(vwx300, vwx400, bb), ba, bb) new_ltEs0(Left(vwx250), Left(vwx260), app(app(app(ty_@3, da), db), dc), ce) -> new_ltEs1(vwx250, vwx260, da, db, dc) new_compare23(vwx89, vwx90, vwx91, vwx92, False, app(ty_[], ccf), ccg) -> new_lt(vwx89, vwx91, ccf) new_compare1(Left(vwx300), Left(vwx400), ba, bb) -> new_compare2(vwx300, vwx400, new_esEs4(vwx300, vwx400, ba), ba, bb) new_ltEs1(@3(vwx250, vwx251, vwx252), @3(vwx260, vwx261, vwx262), app(app(ty_Either, fd), ff), fb, fc) -> new_lt0(vwx250, vwx260, fd, ff) new_ltEs1(@3(vwx250, vwx251, vwx252), @3(vwx260, vwx261, vwx262), ge, app(app(app(ty_@3, ha), hb), hc), fc) -> new_lt1(vwx251, vwx261, ha, hb, hc) new_compare2(@2(vwx250, vwx251), @2(vwx260, vwx261), False, app(app(ty_@2, bdc), app(app(ty_Either, bde), bdf)), cc) -> new_ltEs0(vwx251, vwx261, bde, bdf) new_ltEs0(Right(vwx250), Right(vwx260), dg, app(ty_[], dh)) -> new_ltEs(vwx250, vwx260, dh) new_compare20(vwx32, vwx33, False, cdh, app(ty_Maybe, ceg)) -> new_ltEs2(vwx32, vwx33, ceg) new_ltEs0(Right(vwx250), Right(vwx260), dg, app(ty_Maybe, ef)) -> new_ltEs2(vwx250, vwx260, ef) new_compare22(vwx54, vwx55, False, app(app(app(ty_@3, caf), cag), cah)) -> new_ltEs1(vwx54, vwx55, caf, cag, cah) new_ltEs3(@2(vwx250, vwx251), @2(vwx260, vwx261), bdc, app(app(ty_@2, bec), bed)) -> new_ltEs3(vwx251, vwx261, bec, bed) new_compare2(@2(vwx250, vwx251), @2(vwx260, vwx261), False, app(app(ty_@2, bdc), app(ty_[], bdd)), cc) -> new_ltEs(vwx251, vwx261, bdd) new_ltEs1(@3(vwx250, vwx251, vwx252), @3(vwx260, vwx261, vwx262), ge, app(ty_[], gf), fc) -> new_lt(vwx251, vwx261, gf) new_ltEs3(@2(vwx250, vwx251), @2(vwx260, vwx261), app(app(ty_@2, bda), bdb), bcb) -> new_lt3(vwx250, vwx260, bda, bdb) new_compare2(@3(vwx250, vwx251, vwx252), @3(vwx260, vwx261, vwx262), False, app(app(app(ty_@3, ge), fb), app(app(ty_@2, baf), bag)), cc) -> new_ltEs3(vwx252, vwx262, baf, bag) new_ltEs3(@2(vwx250, vwx251), @2(vwx260, vwx261), bdc, app(ty_Maybe, beb)) -> new_ltEs2(vwx251, vwx261, beb) new_compare21(vwx76, vwx77, vwx78, vwx79, vwx80, vwx81, False, bfc, bgf, app(app(ty_Either, bgh), bha)) -> new_ltEs0(vwx78, vwx81, bgh, bha) new_ltEs3(@2(vwx250, vwx251), @2(vwx260, vwx261), bdc, app(app(app(ty_@3, bdg), bdh), bea)) -> new_ltEs1(vwx251, vwx261, bdg, bdh, bea) new_ltEs1(@3(vwx250, vwx251, vwx252), @3(vwx260, vwx261, vwx262), ge, app(ty_Maybe, hd), fc) -> new_lt2(vwx251, vwx261, hd) new_compare23(vwx89, vwx90, vwx91, vwx92, False, cbd, app(app(ty_Either, cbf), cbg)) -> new_ltEs0(vwx90, vwx92, cbf, cbg) new_compare21(vwx76, vwx77, vwx78, vwx79, vwx80, vwx81, False, bfc, app(app(ty_Either, bff), bfg), bfe) -> new_lt0(vwx77, vwx80, bff, bfg) new_compare21(vwx76, vwx77, vwx78, vwx79, vwx80, vwx81, False, bfc, bgf, app(app(app(ty_@3, bhb), bhc), bhd)) -> new_ltEs1(vwx78, vwx81, bhb, bhc, bhd) new_lt3(vwx76, vwx79, caa, cab) -> new_compare5(vwx76, vwx79, caa, cab) new_compare2(@3(vwx250, vwx251, vwx252), @3(vwx260, vwx261, vwx262), False, app(app(app(ty_@3, app(app(ty_@2, gc), gd)), fb), fc), cc) -> new_lt3(vwx250, vwx260, gc, gd) new_compare2(@2(vwx250, vwx251), @2(vwx260, vwx261), False, app(app(ty_@2, app(ty_[], bca)), bcb), cc) -> new_lt(vwx250, vwx260, bca) new_compare2(@2(vwx250, vwx251), @2(vwx260, vwx261), False, app(app(ty_@2, bdc), app(app(app(ty_@3, bdg), bdh), bea)), cc) -> new_ltEs1(vwx251, vwx261, bdg, bdh, bea) new_compare22(vwx54, vwx55, False, app(app(ty_@2, cbb), cbc)) -> new_ltEs3(vwx54, vwx55, cbb, cbc) new_compare21(vwx76, vwx77, vwx78, vwx79, vwx80, vwx81, False, app(ty_[], bee), bgf, bfe) -> new_compare(vwx76, vwx79, bee) new_compare2(@3(vwx250, vwx251, vwx252), @3(vwx260, vwx261, vwx262), False, app(app(app(ty_@3, app(ty_[], fa)), fb), fc), cc) -> new_lt(vwx250, vwx260, fa) new_ltEs3(@2(vwx250, vwx251), @2(vwx260, vwx261), app(ty_[], bca), bcb) -> new_lt(vwx250, vwx260, bca) new_ltEs0(Left(vwx250), Left(vwx260), app(ty_[], cd), ce) -> new_ltEs(vwx250, vwx260, cd) new_compare2(@3(vwx250, vwx251, vwx252), @3(vwx260, vwx261, vwx262), False, app(app(app(ty_@3, ge), fb), app(app(ty_Either, hh), baa)), cc) -> new_ltEs0(vwx252, vwx262, hh, baa) new_ltEs1(@3(vwx250, vwx251, vwx252), @3(vwx260, vwx261, vwx262), app(ty_Maybe, gb), fb, fc) -> new_lt2(vwx250, vwx260, gb) new_ltEs0(Right(vwx250), Right(vwx260), dg, app(app(ty_@2, eg), eh)) -> new_ltEs3(vwx250, vwx260, eg, eh) new_compare22(vwx54, vwx55, False, app(ty_[], cac)) -> new_ltEs(vwx54, vwx55, cac) new_compare2(@3(vwx250, vwx251, vwx252), @3(vwx260, vwx261, vwx262), False, app(app(app(ty_@3, app(app(ty_Either, fd), ff)), fb), fc), cc) -> new_lt0(vwx250, vwx260, fd, ff) new_compare21(vwx76, vwx77, vwx78, vwx79, vwx80, vwx81, False, app(app(ty_@2, caa), cab), bgf, bfe) -> new_compare5(vwx76, vwx79, caa, cab) new_ltEs1(@3(vwx250, vwx251, vwx252), @3(vwx260, vwx261, vwx262), app(app(app(ty_@3, fg), fh), ga), fb, fc) -> new_lt1(vwx250, vwx260, fg, fh, ga) new_ltEs1(@3(vwx250, vwx251, vwx252), @3(vwx260, vwx261, vwx262), ge, fb, app(ty_Maybe, bae)) -> new_ltEs2(vwx252, vwx262, bae) new_ltEs1(@3(vwx250, vwx251, vwx252), @3(vwx260, vwx261, vwx262), ge, app(app(ty_Either, gg), gh), fc) -> new_lt0(vwx251, vwx261, gg, gh) new_compare2(vwx25, vwx26, False, app(ty_[], cb), cc) -> new_compare(vwx25, vwx26, cb) new_compare21(vwx76, vwx77, vwx78, vwx79, vwx80, vwx81, False, bfc, bgf, app(ty_Maybe, bhe)) -> new_ltEs2(vwx78, vwx81, bhe) new_compare21(vwx76, vwx77, vwx78, vwx79, vwx80, vwx81, False, bfc, bgf, app(ty_[], bgg)) -> new_ltEs(vwx78, vwx81, bgg) new_ltEs2(Just(vwx250), Just(vwx260), app(ty_[], bah)) -> new_ltEs(vwx250, vwx260, bah) new_compare2(Right(vwx250), Right(vwx260), False, app(app(ty_Either, dg), app(ty_Maybe, ef)), cc) -> new_ltEs2(vwx250, vwx260, ef) new_ltEs3(@2(vwx250, vwx251), @2(vwx260, vwx261), app(app(app(ty_@3, bce), bcf), bcg), bcb) -> new_lt1(vwx250, vwx260, bce, bcf, bcg) new_primCompAux(Right(vwx300), Right(vwx400), vwx15, app(app(ty_Either, ba), bb)) -> new_compare20(vwx300, vwx400, new_esEs5(vwx300, vwx400, bb), ba, bb) new_compare20(vwx32, vwx33, False, cdh, app(app(ty_@2, ceh), cfa)) -> new_ltEs3(vwx32, vwx33, ceh, cfa) new_compare2(Just(vwx250), Just(vwx260), False, app(ty_Maybe, app(app(ty_@2, bbg), bbh)), cc) -> new_ltEs3(vwx250, vwx260, bbg, bbh) new_ltEs2(Just(vwx250), Just(vwx260), app(ty_Maybe, bbf)) -> new_ltEs2(vwx250, vwx260, bbf) new_compare23(vwx89, vwx90, vwx91, vwx92, False, app(app(ty_@2, cdf), cdg), ccg) -> new_lt3(vwx89, vwx91, cdf, cdg) new_compare22(vwx54, vwx55, False, app(ty_Maybe, cba)) -> new_ltEs2(vwx54, vwx55, cba) new_compare21(vwx76, vwx77, vwx78, vwx79, vwx80, vwx81, False, bfc, app(ty_Maybe, bgc), bfe) -> new_lt2(vwx77, vwx80, bgc) new_compare20(vwx32, vwx33, False, cdh, app(app(ty_Either, ceb), cec)) -> new_ltEs0(vwx32, vwx33, ceb, cec) new_compare23(vwx89, vwx90, vwx91, vwx92, False, app(app(app(ty_@3, cdb), cdc), cdd), ccg) -> new_lt1(vwx89, vwx91, cdb, cdc, cdd) new_ltEs2(Just(vwx250), Just(vwx260), app(app(ty_@2, bbg), bbh)) -> new_ltEs3(vwx250, vwx260, bbg, bbh) new_compare2(@3(vwx250, vwx251, vwx252), @3(vwx260, vwx261, vwx262), False, app(app(app(ty_@3, ge), app(app(ty_@2, he), hf)), fc), cc) -> new_lt3(vwx251, vwx261, he, hf) new_ltEs3(@2(vwx250, vwx251), @2(vwx260, vwx261), bdc, app(app(ty_Either, bde), bdf)) -> new_ltEs0(vwx251, vwx261, bde, bdf) new_compare23(vwx89, vwx90, vwx91, vwx92, False, cbd, app(app(app(ty_@3, cbh), cca), ccb)) -> new_ltEs1(vwx90, vwx92, cbh, cca, ccb) new_compare2(@3(vwx250, vwx251, vwx252), @3(vwx260, vwx261, vwx262), False, app(app(app(ty_@3, ge), fb), app(ty_[], hg)), cc) -> new_ltEs(vwx252, vwx262, hg) new_compare2(Just(vwx250), Just(vwx260), False, app(ty_Maybe, app(app(app(ty_@3, bbc), bbd), bbe)), cc) -> new_ltEs1(vwx250, vwx260, bbc, bbd, bbe) new_ltEs3(@2(vwx250, vwx251), @2(vwx260, vwx261), bdc, app(ty_[], bdd)) -> new_ltEs(vwx251, vwx261, bdd) new_primCompAux(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), vwx15, app(app(app(ty_@3, bc), bd), be)) -> new_compare21(vwx300, vwx301, vwx302, vwx400, vwx401, vwx402, new_asAs(new_esEs8(vwx300, vwx400, bc), new_asAs(new_esEs7(vwx301, vwx401, bd), new_esEs6(vwx302, vwx402, be))), bc, bd, be) new_ltEs1(@3(vwx250, vwx251, vwx252), @3(vwx260, vwx261, vwx262), ge, app(app(ty_@2, he), hf), fc) -> new_lt3(vwx251, vwx261, he, hf) new_compare2(@3(vwx250, vwx251, vwx252), @3(vwx260, vwx261, vwx262), False, app(app(app(ty_@3, ge), app(app(app(ty_@3, ha), hb), hc)), fc), cc) -> new_lt1(vwx251, vwx261, ha, hb, hc) new_ltEs1(@3(vwx250, vwx251, vwx252), @3(vwx260, vwx261, vwx262), ge, fb, app(app(ty_@2, baf), bag)) -> new_ltEs3(vwx252, vwx262, baf, bag) new_compare2(Left(vwx250), Left(vwx260), False, app(app(ty_Either, app(app(ty_@2, de), df)), ce), cc) -> new_ltEs3(vwx250, vwx260, de, df) new_compare2(Right(vwx250), Right(vwx260), False, app(app(ty_Either, dg), app(app(app(ty_@3, ec), ed), ee)), cc) -> new_ltEs1(vwx250, vwx260, ec, ed, ee) new_compare2(@2(vwx250, vwx251), @2(vwx260, vwx261), False, app(app(ty_@2, app(app(ty_Either, bcc), bcd)), bcb), cc) -> new_lt0(vwx250, vwx260, bcc, bcd) new_ltEs0(Right(vwx250), Right(vwx260), dg, app(app(ty_Either, ea), eb)) -> new_ltEs0(vwx250, vwx260, ea, eb) new_compare2(@3(vwx250, vwx251, vwx252), @3(vwx260, vwx261, vwx262), False, app(app(app(ty_@3, ge), app(ty_[], gf)), fc), cc) -> new_lt(vwx251, vwx261, gf) new_ltEs3(@2(vwx250, vwx251), @2(vwx260, vwx261), app(app(ty_Either, bcc), bcd), bcb) -> new_lt0(vwx250, vwx260, bcc, bcd) new_compare2(Left(vwx250), Left(vwx260), False, app(app(ty_Either, app(app(app(ty_@3, da), db), dc)), ce), cc) -> new_ltEs1(vwx250, vwx260, da, db, dc) new_compare2(Just(vwx250), Just(vwx260), False, app(ty_Maybe, app(ty_Maybe, bbf)), cc) -> new_ltEs2(vwx250, vwx260, bbf) new_compare2(@2(vwx250, vwx251), @2(vwx260, vwx261), False, app(app(ty_@2, bdc), app(app(ty_@2, bec), bed)), cc) -> new_ltEs3(vwx251, vwx261, bec, bed) new_ltEs1(@3(vwx250, vwx251, vwx252), @3(vwx260, vwx261, vwx262), ge, fb, app(ty_[], hg)) -> new_ltEs(vwx252, vwx262, hg) new_lt1(vwx76, vwx79, beh, bfa, bfb) -> new_compare3(vwx76, vwx79, beh, bfa, bfb) new_compare2(Right(vwx250), Right(vwx260), False, app(app(ty_Either, dg), app(app(ty_Either, ea), eb)), cc) -> new_ltEs0(vwx250, vwx260, ea, eb) new_primCompAux(Left(vwx300), Left(vwx400), vwx15, app(app(ty_Either, ba), bb)) -> new_compare2(vwx300, vwx400, new_esEs4(vwx300, vwx400, ba), ba, bb) new_compare2(@3(vwx250, vwx251, vwx252), @3(vwx260, vwx261, vwx262), False, app(app(app(ty_@3, ge), fb), app(ty_Maybe, bae)), cc) -> new_ltEs2(vwx252, vwx262, bae) new_ltEs0(Left(vwx250), Left(vwx260), app(app(ty_Either, cf), cg), ce) -> new_ltEs0(vwx250, vwx260, cf, cg) new_primCompAux(@2(vwx300, vwx301), @2(vwx400, vwx401), vwx15, app(app(ty_@2, bg), bh)) -> new_compare23(vwx300, vwx301, vwx400, vwx401, new_asAs(new_esEs11(vwx300, vwx400, bg), new_esEs10(vwx301, vwx401, bh)), bg, bh) new_lt0(vwx76, vwx79, bef, beg) -> new_compare1(vwx76, vwx79, bef, beg) new_lt(vwx76, vwx79, bee) -> new_compare(vwx76, vwx79, bee) new_compare3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bc, bd, be) -> new_compare21(vwx300, vwx301, vwx302, vwx400, vwx401, vwx402, new_asAs(new_esEs8(vwx300, vwx400, bc), new_asAs(new_esEs7(vwx301, vwx401, bd), new_esEs6(vwx302, vwx402, be))), bc, bd, be) new_compare21(vwx76, vwx77, vwx78, vwx79, vwx80, vwx81, False, app(ty_Maybe, bhh), bgf, bfe) -> new_compare4(vwx76, vwx79, bhh) new_compare(:(vwx30, vwx31), :(vwx40, vwx41), ca) -> new_primCompAux(vwx30, vwx40, new_compare0(vwx31, vwx41, ca), ca) new_compare21(vwx76, vwx77, vwx78, vwx79, vwx80, vwx81, False, bfc, app(app(ty_@2, bgd), bge), bfe) -> new_lt3(vwx77, vwx80, bgd, bge) new_lt2(vwx76, vwx79, bhh) -> new_compare4(vwx76, vwx79, bhh) new_compare2(@2(vwx250, vwx251), @2(vwx260, vwx261), False, app(app(ty_@2, app(ty_Maybe, bch)), bcb), cc) -> new_lt2(vwx250, vwx260, bch) new_compare21(vwx76, vwx77, vwx78, vwx79, vwx80, vwx81, False, app(app(ty_Either, bef), beg), bgf, bfe) -> new_compare1(vwx76, vwx79, bef, beg) new_compare2(Right(vwx250), Right(vwx260), False, app(app(ty_Either, dg), app(ty_[], dh)), cc) -> new_ltEs(vwx250, vwx260, dh) new_compare21(vwx76, vwx77, vwx78, vwx79, vwx80, vwx81, False, bfc, bgf, app(app(ty_@2, bhf), bhg)) -> new_ltEs3(vwx78, vwx81, bhf, bhg) new_compare2(@2(vwx250, vwx251), @2(vwx260, vwx261), False, app(app(ty_@2, app(app(app(ty_@3, bce), bcf), bcg)), bcb), cc) -> new_lt1(vwx250, vwx260, bce, bcf, bcg) new_primCompAux(vwx30, vwx40, vwx15, app(ty_[], h)) -> new_compare(vwx30, vwx40, h) new_ltEs3(@2(vwx250, vwx251), @2(vwx260, vwx261), app(ty_Maybe, bch), bcb) -> new_lt2(vwx250, vwx260, bch) new_compare2(@3(vwx250, vwx251, vwx252), @3(vwx260, vwx261, vwx262), False, app(app(app(ty_@3, ge), app(app(ty_Either, gg), gh)), fc), cc) -> new_lt0(vwx251, vwx261, gg, gh) new_compare22(vwx54, vwx55, False, app(app(ty_Either, cad), cae)) -> new_ltEs0(vwx54, vwx55, cad, cae) new_compare2(@3(vwx250, vwx251, vwx252), @3(vwx260, vwx261, vwx262), False, app(app(app(ty_@3, app(app(app(ty_@3, fg), fh), ga)), fb), fc), cc) -> new_lt1(vwx250, vwx260, fg, fh, ga) new_compare2(Left(vwx250), Left(vwx260), False, app(app(ty_Either, app(app(ty_Either, cf), cg)), ce), cc) -> new_ltEs0(vwx250, vwx260, cf, cg) new_ltEs1(@3(vwx250, vwx251, vwx252), @3(vwx260, vwx261, vwx262), ge, fb, app(app(app(ty_@3, bab), bac), bad)) -> new_ltEs1(vwx252, vwx262, bab, bac, bad) new_compare2(@3(vwx250, vwx251, vwx252), @3(vwx260, vwx261, vwx262), False, app(app(app(ty_@3, ge), app(ty_Maybe, hd)), fc), cc) -> new_lt2(vwx251, vwx261, hd) new_compare5(@2(vwx300, vwx301), @2(vwx400, vwx401), bg, bh) -> new_compare23(vwx300, vwx301, vwx400, vwx401, new_asAs(new_esEs11(vwx300, vwx400, bg), new_esEs10(vwx301, vwx401, bh)), bg, bh) new_compare4(Just(vwx300), Just(vwx400), bf) -> new_compare22(vwx300, vwx400, new_esEs9(vwx300, vwx400, bf), bf) new_ltEs2(Just(vwx250), Just(vwx260), app(app(app(ty_@3, bbc), bbd), bbe)) -> new_ltEs1(vwx250, vwx260, bbc, bbd, bbe) new_compare23(vwx89, vwx90, vwx91, vwx92, False, cbd, app(ty_[], cbe)) -> new_ltEs(vwx90, vwx92, cbe) new_ltEs1(@3(vwx250, vwx251, vwx252), @3(vwx260, vwx261, vwx262), app(app(ty_@2, gc), gd), fb, fc) -> new_lt3(vwx250, vwx260, gc, gd) new_compare(:(vwx30, vwx31), :(vwx40, vwx41), ca) -> new_compare(vwx31, vwx41, ca) new_compare2(Left(vwx250), Left(vwx260), False, app(app(ty_Either, app(ty_[], cd)), ce), cc) -> new_ltEs(vwx250, vwx260, cd) new_compare2(@2(vwx250, vwx251), @2(vwx260, vwx261), False, app(app(ty_@2, bdc), app(ty_Maybe, beb)), cc) -> new_ltEs2(vwx251, vwx261, beb) new_ltEs2(Just(vwx250), Just(vwx260), app(app(ty_Either, bba), bbb)) -> new_ltEs0(vwx250, vwx260, bba, bbb) new_compare2(@2(vwx250, vwx251), @2(vwx260, vwx261), False, app(app(ty_@2, app(app(ty_@2, bda), bdb)), bcb), cc) -> new_lt3(vwx250, vwx260, bda, bdb) new_compare2(Right(vwx250), Right(vwx260), False, app(app(ty_Either, dg), app(app(ty_@2, eg), eh)), cc) -> new_ltEs3(vwx250, vwx260, eg, eh) new_compare20(vwx32, vwx33, False, cdh, app(ty_[], cea)) -> new_ltEs(vwx32, vwx33, cea) new_ltEs1(@3(vwx250, vwx251, vwx252), @3(vwx260, vwx261, vwx262), app(ty_[], fa), fb, fc) -> new_lt(vwx250, vwx260, fa) new_compare20(vwx32, vwx33, False, cdh, app(app(app(ty_@3, ced), cee), cef)) -> new_ltEs1(vwx32, vwx33, ced, cee, cef) new_compare23(vwx89, vwx90, vwx91, vwx92, False, cbd, app(app(ty_@2, ccd), cce)) -> new_ltEs3(vwx90, vwx92, ccd, cce) new_compare2(@3(vwx250, vwx251, vwx252), @3(vwx260, vwx261, vwx262), False, app(app(app(ty_@3, app(ty_Maybe, gb)), fb), fc), cc) -> new_lt2(vwx250, vwx260, gb) new_compare21(vwx76, vwx77, vwx78, vwx79, vwx80, vwx81, False, bfc, app(app(app(ty_@3, bfh), bga), bgb), bfe) -> new_lt1(vwx77, vwx80, bfh, bga, bgb) new_compare21(vwx76, vwx77, vwx78, vwx79, vwx80, vwx81, False, bfc, app(ty_[], bfd), bfe) -> new_lt(vwx77, vwx80, bfd) new_compare23(vwx89, vwx90, vwx91, vwx92, False, cbd, app(ty_Maybe, ccc)) -> new_ltEs2(vwx90, vwx92, ccc) new_compare2(Left(vwx250), Left(vwx260), False, app(app(ty_Either, app(ty_Maybe, dd)), ce), cc) -> new_ltEs2(vwx250, vwx260, dd) new_compare2(Just(vwx250), Just(vwx260), False, app(ty_Maybe, app(ty_[], bah)), cc) -> new_ltEs(vwx250, vwx260, bah) new_compare23(vwx89, vwx90, vwx91, vwx92, False, app(app(ty_Either, cch), cda), ccg) -> new_lt0(vwx89, vwx91, cch, cda) new_compare21(vwx76, vwx77, vwx78, vwx79, vwx80, vwx81, False, app(app(app(ty_@3, beh), bfa), bfb), bgf, bfe) -> new_compare3(vwx76, vwx79, beh, bfa, bfb) The TRS R consists of the following rules: new_esEs26(Left(vwx3000), Left(vwx4000), app(app(app(ty_@3, dca), dcb), dcc), dbc) -> new_esEs21(vwx3000, vwx4000, dca, dcb, dcc) new_ltEs19(vwx252, vwx262, ty_Integer) -> new_ltEs11(vwx252, vwx262) new_lt22(vwx77, vwx80, ty_Float) -> new_lt8(vwx77, vwx80) new_primCmpInt(Neg(Succ(vwx3000)), Pos(vwx400)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_lt21(vwx89, vwx91, app(ty_Maybe, cde)) -> new_lt19(vwx89, vwx91, cde) new_esEs15(vwx3000, vwx4000, app(ty_Ratio, chc)) -> new_esEs20(vwx3000, vwx4000, chc) new_pePe(True, vwx168) -> True new_esEs33(vwx3001, vwx4001, ty_@0) -> new_esEs16(vwx3001, vwx4001) new_esEs7(vwx301, vwx401, app(app(app(ty_@3, ega), egb), egc)) -> new_esEs21(vwx301, vwx401, ega, egb, egc) new_esEs8(vwx300, vwx400, app(ty_[], dgh)) -> new_esEs22(vwx300, vwx400, dgh) new_ltEs19(vwx252, vwx262, app(app(ty_Either, hh), baa)) -> new_ltEs9(vwx252, vwx262, hh, baa) new_esEs37(vwx89, vwx91, ty_Ordering) -> new_esEs12(vwx89, vwx91) new_lt5(vwx76, vwx79) -> new_esEs12(new_compare7(vwx76, vwx79), LT) new_esEs6(vwx302, vwx402, ty_@0) -> new_esEs16(vwx302, vwx402) new_esEs30(vwx250, vwx260, ty_Char) -> new_esEs19(vwx250, vwx260) new_esEs34(vwx3000, vwx4000, app(app(app(ty_@3, fda), fdb), fdc)) -> new_esEs21(vwx3000, vwx4000, fda, fdb, fdc) new_ltEs22(vwx90, vwx92, app(ty_Ratio, fea)) -> new_ltEs5(vwx90, vwx92, fea) new_esEs9(vwx300, vwx400, ty_Integer) -> new_esEs23(vwx300, vwx400) new_compare112(vwx126, vwx127, True, ffe) -> LT new_esEs36(vwx3000, vwx4000, ty_Integer) -> new_esEs23(vwx3000, vwx4000) new_esEs9(vwx300, vwx400, app(ty_Maybe, eae)) -> new_esEs18(vwx300, vwx400, eae) new_ltEs22(vwx90, vwx92, ty_Bool) -> new_ltEs16(vwx90, vwx92) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_esEs36(vwx3000, vwx4000, ty_Int) -> new_esEs24(vwx3000, vwx4000) new_primCmpInt(Pos(Zero), Neg(Succ(vwx4000))) -> GT new_compare26(vwx32, vwx33, True, cdh, fff) -> EQ new_esEs26(Left(vwx3000), Left(vwx4000), app(app(ty_@2, dcd), dce), dbc) -> new_esEs13(vwx3000, vwx4000, dcd, dce) new_esEs9(vwx300, vwx400, ty_Bool) -> new_esEs25(vwx300, vwx400) new_esEs10(vwx301, vwx401, app(app(ty_Either, ffc), ffd)) -> new_esEs26(vwx301, vwx401, ffc, ffd) new_esEs29(vwx251, vwx261, app(ty_[], gf)) -> new_esEs22(vwx251, vwx261, gf) new_ltEs24(vwx78, vwx81, ty_Int) -> new_ltEs10(vwx78, vwx81) new_lt22(vwx77, vwx80, app(ty_[], bfd)) -> new_lt6(vwx77, vwx80, bfd) new_primCmpInt(Neg(Succ(vwx3000)), Neg(vwx400)) -> new_primCmpNat0(vwx400, Succ(vwx3000)) new_compare0(:(vwx30, vwx31), :(vwx40, vwx41), ca) -> new_primCompAux1(vwx30, vwx40, new_compare0(vwx31, vwx41, ca), ca) new_lt12(vwx251, vwx261, ty_Int) -> new_lt7(vwx251, vwx261) new_esEs26(Right(vwx3000), Right(vwx4000), dbb, ty_Int) -> new_esEs24(vwx3000, vwx4000) new_compare30(vwx30, vwx40, app(app(ty_@2, bg), bh)) -> new_compare27(vwx30, vwx40, bg, bh) new_ltEs9(Right(vwx250), Right(vwx260), dg, app(app(ty_Either, ea), eb)) -> new_ltEs9(vwx250, vwx260, ea, eb) new_ltEs9(Right(vwx250), Right(vwx260), dg, ty_Bool) -> new_ltEs16(vwx250, vwx260) new_esEs9(vwx300, vwx400, ty_Int) -> new_esEs24(vwx300, vwx400) new_esEs4(vwx300, vwx400, app(app(ty_@2, cff), cfg)) -> new_esEs13(vwx300, vwx400, cff, cfg) new_esEs39(vwx76, vwx79, ty_Char) -> new_esEs19(vwx76, vwx79) new_compare18(Just(vwx300), Just(vwx400), bf) -> new_compare25(vwx300, vwx400, new_esEs9(vwx300, vwx400, bf), bf) new_compare12(vwx156, vwx157, vwx158, vwx159, True, cfd, cfe) -> LT new_esEs5(vwx300, vwx400, ty_Float) -> new_esEs17(vwx300, vwx400) new_esEs31(vwx250, vwx260, app(app(ty_@2, bda), bdb)) -> new_esEs13(vwx250, vwx260, bda, bdb) new_compare30(vwx30, vwx40, app(ty_Ratio, efd)) -> new_compare14(vwx30, vwx40, efd) new_lt12(vwx251, vwx261, ty_Ordering) -> new_lt14(vwx251, vwx261) new_esEs10(vwx301, vwx401, app(app(ty_@2, feh), ffa)) -> new_esEs13(vwx301, vwx401, feh, ffa) new_esEs8(vwx300, vwx400, app(app(ty_Either, dha), dhb)) -> new_esEs26(vwx300, vwx400, dha, dhb) new_ltEs17(Just(vwx250), Just(vwx260), ty_Double) -> new_ltEs8(vwx250, vwx260) new_esEs29(vwx251, vwx261, ty_Char) -> new_esEs19(vwx251, vwx261) new_ltEs21(vwx54, vwx55, ty_Float) -> new_ltEs14(vwx54, vwx55) new_lt11(vwx250, vwx260, app(ty_Maybe, gb)) -> new_lt19(vwx250, vwx260, gb) new_esEs15(vwx3000, vwx4000, app(app(ty_@2, chg), chh)) -> new_esEs13(vwx3000, vwx4000, chg, chh) new_primCompAux0(vwx19, GT) -> GT new_esEs15(vwx3000, vwx4000, ty_Integer) -> new_esEs23(vwx3000, vwx4000) new_esEs15(vwx3000, vwx4000, app(ty_Maybe, chb)) -> new_esEs18(vwx3000, vwx4000, chb) new_ltEs11(vwx25, vwx26) -> new_fsEs(new_compare28(vwx25, vwx26)) new_esEs39(vwx76, vwx79, ty_Double) -> new_esEs27(vwx76, vwx79) new_esEs19(Char(vwx3000), Char(vwx4000)) -> new_primEqNat0(vwx3000, vwx4000) new_lt20(vwx250, vwx260, ty_Bool) -> new_lt4(vwx250, vwx260) new_primEqInt(Pos(Succ(vwx30000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(vwx40000))) -> False new_lt12(vwx251, vwx261, app(app(ty_@2, he), hf)) -> new_lt10(vwx251, vwx261, he, hf) new_ltEs21(vwx54, vwx55, ty_@0) -> new_ltEs13(vwx54, vwx55) new_esEs26(Left(vwx3000), Left(vwx4000), ty_Char, dbc) -> new_esEs19(vwx3000, vwx4000) new_esEs15(vwx3000, vwx4000, ty_Bool) -> new_esEs25(vwx3000, vwx4000) new_ltEs9(Left(vwx250), Left(vwx260), ty_Integer, ce) -> new_ltEs11(vwx250, vwx260) new_esEs10(vwx301, vwx401, app(ty_[], ffb)) -> new_esEs22(vwx301, vwx401, ffb) new_ltEs19(vwx252, vwx262, app(ty_[], hg)) -> new_ltEs6(vwx252, vwx262, hg) new_esEs29(vwx251, vwx261, app(app(ty_Either, gg), gh)) -> new_esEs26(vwx251, vwx261, gg, gh) new_esEs22(:(vwx3000, vwx3001), :(vwx4000, vwx4001), dba) -> new_asAs(new_esEs28(vwx3000, vwx4000, dba), new_esEs22(vwx3001, vwx4001, dba)) new_lt11(vwx250, vwx260, ty_@0) -> new_lt5(vwx250, vwx260) new_esEs17(Float(vwx3000, vwx3001), Float(vwx4000, vwx4001)) -> new_esEs24(new_sr0(vwx3000, vwx4001), new_sr0(vwx3001, vwx4000)) new_lt23(vwx76, vwx79, app(app(ty_@2, caa), cab)) -> new_lt10(vwx76, vwx79, caa, cab) new_lt23(vwx76, vwx79, ty_Ordering) -> new_lt14(vwx76, vwx79) new_lt15(vwx76, vwx79) -> new_esEs12(new_compare17(vwx76, vwx79), LT) new_compare8(GT, GT) -> EQ new_primEqNat0(Succ(vwx30000), Succ(vwx40000)) -> new_primEqNat0(vwx30000, vwx40000) new_compare18(Nothing, Just(vwx400), bf) -> LT new_esEs30(vwx250, vwx260, app(app(app(ty_@3, fg), fh), ga)) -> new_esEs21(vwx250, vwx260, fg, fh, ga) new_ltEs4(vwx25, vwx26, ty_@0) -> new_ltEs13(vwx25, vwx26) new_ltEs4(vwx25, vwx26, ty_Bool) -> new_ltEs16(vwx25, vwx26) new_compare30(vwx30, vwx40, ty_Int) -> new_compare9(vwx30, vwx40) new_primCompAux0(vwx19, LT) -> LT new_lt8(vwx76, vwx79) -> new_esEs12(new_compare13(vwx76, vwx79), LT) new_esEs11(vwx300, vwx400, ty_Int) -> new_esEs24(vwx300, vwx400) new_esEs26(Left(vwx3000), Left(vwx4000), app(app(ty_Either, dcg), dch), dbc) -> new_esEs26(vwx3000, vwx4000, dcg, dch) new_ltEs14(vwx25, vwx26) -> new_fsEs(new_compare13(vwx25, vwx26)) new_ltEs20(vwx251, vwx261, app(app(ty_@2, bec), bed)) -> new_ltEs18(vwx251, vwx261, bec, bed) new_esEs7(vwx301, vwx401, ty_Double) -> new_esEs27(vwx301, vwx401) new_esEs28(vwx3000, vwx4000, ty_Double) -> new_esEs27(vwx3000, vwx4000) new_not(True) -> False new_esEs18(Just(vwx3000), Just(vwx4000), ty_Double) -> new_esEs27(vwx3000, vwx4000) new_esEs34(vwx3000, vwx4000, ty_Double) -> new_esEs27(vwx3000, vwx4000) new_lt22(vwx77, vwx80, ty_Integer) -> new_lt17(vwx77, vwx80) new_esEs38(vwx77, vwx80, app(app(app(ty_@3, bfh), bga), bgb)) -> new_esEs21(vwx77, vwx80, bfh, bga, bgb) new_lt19(vwx76, vwx79, bhh) -> new_esEs12(new_compare18(vwx76, vwx79, bhh), LT) new_esEs34(vwx3000, vwx4000, ty_Char) -> new_esEs19(vwx3000, vwx4000) new_ltEs23(vwx32, vwx33, ty_Char) -> new_ltEs15(vwx32, vwx33) new_esEs4(vwx300, vwx400, app(ty_Maybe, dad)) -> new_esEs18(vwx300, vwx400, dad) new_lt11(vwx250, vwx260, app(ty_[], fa)) -> new_lt6(vwx250, vwx260, fa) new_lt17(vwx76, vwx79) -> new_esEs12(new_compare28(vwx76, vwx79), LT) new_ltEs4(vwx25, vwx26, app(ty_Ratio, dbe)) -> new_ltEs5(vwx25, vwx26, dbe) new_primCmpNat0(Zero, Zero) -> EQ new_ltEs17(Just(vwx250), Just(vwx260), ty_Char) -> new_ltEs15(vwx250, vwx260) new_lt12(vwx251, vwx261, ty_Double) -> new_lt15(vwx251, vwx261) new_esEs38(vwx77, vwx80, ty_@0) -> new_esEs16(vwx77, vwx80) new_esEs14(vwx3001, vwx4001, ty_Double) -> new_esEs27(vwx3001, vwx4001) new_esEs32(vwx3002, vwx4002, ty_Ordering) -> new_esEs12(vwx3002, vwx4002) new_lt12(vwx251, vwx261, app(ty_Ratio, edf)) -> new_lt13(vwx251, vwx261, edf) new_lt12(vwx251, vwx261, ty_Char) -> new_lt18(vwx251, vwx261) new_ltEs9(Left(vwx250), Left(vwx260), ty_Int, ce) -> new_ltEs10(vwx250, vwx260) new_lt11(vwx250, vwx260, ty_Float) -> new_lt8(vwx250, vwx260) new_esEs26(Right(vwx3000), Right(vwx4000), dbb, ty_Bool) -> new_esEs25(vwx3000, vwx4000) new_esEs25(False, False) -> True new_compare17(Double(vwx300, Neg(vwx3010)), Double(vwx400, Neg(vwx4010))) -> new_compare9(new_sr0(vwx300, Neg(vwx4010)), new_sr0(Neg(vwx3010), vwx400)) new_lt12(vwx251, vwx261, app(ty_[], gf)) -> new_lt6(vwx251, vwx261, gf) new_esEs5(vwx300, vwx400, app(ty_Maybe, dhc)) -> new_esEs18(vwx300, vwx400, dhc) new_esEs5(vwx300, vwx400, ty_Integer) -> new_esEs23(vwx300, vwx400) new_ltEs21(vwx54, vwx55, app(app(ty_Either, cad), cae)) -> new_ltEs9(vwx54, vwx55, cad, cae) new_compare14(:%(vwx300, vwx301), :%(vwx400, vwx401), ty_Integer) -> new_compare28(new_sr(vwx300, vwx401), new_sr(vwx400, vwx301)) new_esEs15(vwx3000, vwx4000, app(ty_[], daa)) -> new_esEs22(vwx3000, vwx4000, daa) new_esEs31(vwx250, vwx260, ty_Int) -> new_esEs24(vwx250, vwx260) new_ltEs24(vwx78, vwx81, ty_Ordering) -> new_ltEs7(vwx78, vwx81) new_esEs12(LT, LT) -> True new_ltEs22(vwx90, vwx92, ty_Double) -> new_ltEs8(vwx90, vwx92) new_ltEs9(Right(vwx250), Right(vwx260), dg, app(ty_Ratio, ded)) -> new_ltEs5(vwx250, vwx260, ded) new_compare17(Double(vwx300, Pos(vwx3010)), Double(vwx400, Pos(vwx4010))) -> new_compare9(new_sr0(vwx300, Pos(vwx4010)), new_sr0(Pos(vwx3010), vwx400)) new_primEqNat0(Succ(vwx30000), Zero) -> False new_primEqNat0(Zero, Succ(vwx40000)) -> False new_esEs31(vwx250, vwx260, app(ty_[], bca)) -> new_esEs22(vwx250, vwx260, bca) new_compare13(Float(vwx300, Pos(vwx3010)), Float(vwx400, Neg(vwx4010))) -> new_compare9(new_sr0(vwx300, Pos(vwx4010)), new_sr0(Neg(vwx3010), vwx400)) new_compare13(Float(vwx300, Neg(vwx3010)), Float(vwx400, Pos(vwx4010))) -> new_compare9(new_sr0(vwx300, Neg(vwx4010)), new_sr0(Pos(vwx3010), vwx400)) new_compare10(vwx105, vwx106, True, cfb, cfc) -> LT new_ltEs20(vwx251, vwx261, ty_Int) -> new_ltEs10(vwx251, vwx261) new_esEs5(vwx300, vwx400, ty_Int) -> new_esEs24(vwx300, vwx400) new_esEs5(vwx300, vwx400, ty_Bool) -> new_esEs25(vwx300, vwx400) new_esEs14(vwx3001, vwx4001, app(app(ty_Either, cgh), cha)) -> new_esEs26(vwx3001, vwx4001, cgh, cha) new_ltEs23(vwx32, vwx33, ty_Double) -> new_ltEs8(vwx32, vwx33) new_ltEs20(vwx251, vwx261, ty_Integer) -> new_ltEs11(vwx251, vwx261) new_esEs8(vwx300, vwx400, app(app(ty_@2, dgf), dgg)) -> new_esEs13(vwx300, vwx400, dgf, dgg) new_esEs8(vwx300, vwx400, ty_Double) -> new_esEs27(vwx300, vwx400) new_esEs18(Just(vwx3000), Just(vwx4000), ty_Char) -> new_esEs19(vwx3000, vwx4000) new_esEs37(vwx89, vwx91, ty_Float) -> new_esEs17(vwx89, vwx91) new_esEs32(vwx3002, vwx4002, ty_Float) -> new_esEs17(vwx3002, vwx4002) new_ltEs9(Left(vwx250), Right(vwx260), dg, ce) -> True new_lt12(vwx251, vwx261, ty_@0) -> new_lt5(vwx251, vwx261) new_ltEs9(Left(vwx250), Left(vwx260), app(ty_Ratio, dec), ce) -> new_ltEs5(vwx250, vwx260, dec) new_lt22(vwx77, vwx80, ty_Double) -> new_lt15(vwx77, vwx80) new_compare15(vwx112, vwx113, True, dfg, dfh) -> LT new_compare11(vwx156, vwx157, vwx158, vwx159, True, vwx161, cfd, cfe) -> new_compare12(vwx156, vwx157, vwx158, vwx159, True, cfd, cfe) new_esEs14(vwx3001, vwx4001, app(app(ty_@2, cge), cgf)) -> new_esEs13(vwx3001, vwx4001, cge, cgf) new_esEs25(False, True) -> False new_esEs25(True, False) -> False new_primCmpInt(Pos(Succ(vwx3000)), Neg(vwx400)) -> GT new_lt12(vwx251, vwx261, ty_Integer) -> new_lt17(vwx251, vwx261) new_esEs31(vwx250, vwx260, app(app(ty_Either, bcc), bcd)) -> new_esEs26(vwx250, vwx260, bcc, bcd) new_esEs26(Right(vwx3000), Right(vwx4000), dbb, ty_Integer) -> new_esEs23(vwx3000, vwx4000) new_esEs11(vwx300, vwx400, ty_Integer) -> new_esEs23(vwx300, vwx400) new_esEs11(vwx300, vwx400, ty_Bool) -> new_esEs25(vwx300, vwx400) new_esEs4(vwx300, vwx400, ty_Bool) -> new_esEs25(vwx300, vwx400) new_compare9(vwx30, vwx40) -> new_primCmpInt(vwx30, vwx40) new_esEs31(vwx250, vwx260, app(ty_Ratio, efb)) -> new_esEs20(vwx250, vwx260, efb) new_ltEs4(vwx25, vwx26, app(ty_Maybe, dbf)) -> new_ltEs17(vwx25, vwx26, dbf) new_ltEs19(vwx252, vwx262, ty_Float) -> new_ltEs14(vwx252, vwx262) new_ltEs20(vwx251, vwx261, app(app(app(ty_@3, bdg), bdh), bea)) -> new_ltEs12(vwx251, vwx261, bdg, bdh, bea) new_esEs23(Integer(vwx3000), Integer(vwx4000)) -> new_primEqInt(vwx3000, vwx4000) new_esEs28(vwx3000, vwx4000, ty_Char) -> new_esEs19(vwx3000, vwx4000) new_lt23(vwx76, vwx79, ty_Char) -> new_lt18(vwx76, vwx79) new_esEs26(Right(vwx3000), Right(vwx4000), dbb, ty_Ordering) -> new_esEs12(vwx3000, vwx4000) new_ltEs22(vwx90, vwx92, ty_Char) -> new_ltEs15(vwx90, vwx92) new_ltEs4(vwx25, vwx26, app(ty_[], cb)) -> new_ltEs6(vwx25, vwx26, cb) new_lt11(vwx250, vwx260, ty_Double) -> new_lt15(vwx250, vwx260) new_lt23(vwx76, vwx79, ty_Integer) -> new_lt17(vwx76, vwx79) new_ltEs7(GT, GT) -> True new_esEs11(vwx300, vwx400, app(ty_Maybe, edh)) -> new_esEs18(vwx300, vwx400, edh) new_ltEs20(vwx251, vwx261, ty_Float) -> new_ltEs14(vwx251, vwx261) new_esEs10(vwx301, vwx401, ty_Double) -> new_esEs27(vwx301, vwx401) new_compare110(vwx141, vwx142, vwx143, vwx144, vwx145, vwx146, True, vwx148, ebg, ebh, eca) -> new_compare111(vwx141, vwx142, vwx143, vwx144, vwx145, vwx146, True, ebg, ebh, eca) new_primPlusNat1(Succ(vwx16900), Succ(vwx301000)) -> Succ(Succ(new_primPlusNat1(vwx16900, vwx301000))) new_esEs9(vwx300, vwx400, ty_Ordering) -> new_esEs12(vwx300, vwx400) new_compare28(Integer(vwx300), Integer(vwx400)) -> new_primCmpInt(vwx300, vwx400) new_esEs7(vwx301, vwx401, app(ty_[], egf)) -> new_esEs22(vwx301, vwx401, egf) new_esEs33(vwx3001, vwx4001, ty_Ordering) -> new_esEs12(vwx3001, vwx4001) new_primCmpNat0(Zero, Succ(vwx4000)) -> LT new_lt12(vwx251, vwx261, ty_Float) -> new_lt8(vwx251, vwx261) new_ltEs8(vwx25, vwx26) -> new_fsEs(new_compare17(vwx25, vwx26)) new_esEs14(vwx3001, vwx4001, app(app(app(ty_@3, cgb), cgc), cgd)) -> new_esEs21(vwx3001, vwx4001, cgb, cgc, cgd) new_esEs4(vwx300, vwx400, ty_Integer) -> new_esEs23(vwx300, vwx400) new_esEs38(vwx77, vwx80, ty_Double) -> new_esEs27(vwx77, vwx80) new_ltEs19(vwx252, vwx262, app(app(app(ty_@3, bab), bac), bad)) -> new_ltEs12(vwx252, vwx262, bab, bac, bad) new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_esEs26(Left(vwx3000), Left(vwx4000), ty_Double, dbc) -> new_esEs27(vwx3000, vwx4000) new_ltEs22(vwx90, vwx92, ty_@0) -> new_ltEs13(vwx90, vwx92) new_esEs14(vwx3001, vwx4001, app(ty_[], cgg)) -> new_esEs22(vwx3001, vwx4001, cgg) new_esEs13(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), cff, cfg) -> new_asAs(new_esEs15(vwx3000, vwx4000, cff), new_esEs14(vwx3001, vwx4001, cfg)) new_ltEs4(vwx25, vwx26, ty_Integer) -> new_ltEs11(vwx25, vwx26) new_esEs26(Right(vwx3000), Right(vwx4000), dbb, app(app(app(ty_@3, ddc), ddd), dde)) -> new_esEs21(vwx3000, vwx4000, ddc, ddd, dde) new_esEs29(vwx251, vwx261, ty_Integer) -> new_esEs23(vwx251, vwx261) new_lt23(vwx76, vwx79, app(ty_[], bee)) -> new_lt6(vwx76, vwx79, bee) new_sr(Integer(vwx4000), Integer(vwx3010)) -> Integer(new_primMulInt(vwx4000, vwx3010)) new_primCmpNat0(Succ(vwx3000), Zero) -> GT new_ltEs17(Just(vwx250), Just(vwx260), app(app(ty_@2, bbg), bbh)) -> new_ltEs18(vwx250, vwx260, bbg, bbh) new_ltEs21(vwx54, vwx55, app(ty_Ratio, eff)) -> new_ltEs5(vwx54, vwx55, eff) new_ltEs17(Nothing, Nothing, dbf) -> True new_pePe(False, vwx168) -> vwx168 new_ltEs17(Nothing, Just(vwx260), dbf) -> True new_esEs28(vwx3000, vwx4000, app(ty_[], dfd)) -> new_esEs22(vwx3000, vwx4000, dfd) new_esEs6(vwx302, vwx402, app(app(app(ty_@3, ece), ecf), ecg)) -> new_esEs21(vwx302, vwx402, ece, ecf, ecg) new_ltEs17(Just(vwx250), Nothing, dbf) -> False new_esEs33(vwx3001, vwx4001, ty_Double) -> new_esEs27(vwx3001, vwx4001) new_esEs5(vwx300, vwx400, app(app(ty_@2, dhh), eaa)) -> new_esEs13(vwx300, vwx400, dhh, eaa) new_esEs27(Double(vwx3000, vwx3001), Double(vwx4000, vwx4001)) -> new_esEs24(new_sr0(vwx3000, vwx4001), new_sr0(vwx3001, vwx4000)) new_lt11(vwx250, vwx260, ty_Int) -> new_lt7(vwx250, vwx260) new_ltEs19(vwx252, vwx262, ty_Int) -> new_ltEs10(vwx252, vwx262) new_ltEs20(vwx251, vwx261, app(ty_Maybe, beb)) -> new_ltEs17(vwx251, vwx261, beb) new_ltEs23(vwx32, vwx33, app(app(ty_@2, ceh), cfa)) -> new_ltEs18(vwx32, vwx33, ceh, cfa) new_lt20(vwx250, vwx260, app(app(app(ty_@3, bce), bcf), bcg)) -> new_lt9(vwx250, vwx260, bce, bcf, bcg) new_ltEs19(vwx252, vwx262, ty_@0) -> new_ltEs13(vwx252, vwx262) new_esEs26(Right(vwx3000), Right(vwx4000), dbb, app(ty_Maybe, dda)) -> new_esEs18(vwx3000, vwx4000, dda) new_esEs30(vwx250, vwx260, app(app(ty_@2, gc), gd)) -> new_esEs13(vwx250, vwx260, gc, gd) new_esEs7(vwx301, vwx401, app(app(ty_Either, egg), egh)) -> new_esEs26(vwx301, vwx401, egg, egh) new_lt23(vwx76, vwx79, ty_Bool) -> new_lt4(vwx76, vwx79) new_esEs29(vwx251, vwx261, ty_Bool) -> new_esEs25(vwx251, vwx261) new_lt11(vwx250, vwx260, ty_Ordering) -> new_lt14(vwx250, vwx260) new_ltEs10(vwx25, vwx26) -> new_fsEs(new_compare9(vwx25, vwx26)) new_lt11(vwx250, vwx260, app(app(ty_@2, gc), gd)) -> new_lt10(vwx250, vwx260, gc, gd) new_esEs18(Just(vwx3000), Just(vwx4000), app(app(ty_Either, faa), fab)) -> new_esEs26(vwx3000, vwx4000, faa, fab) new_ltEs17(Just(vwx250), Just(vwx260), ty_Bool) -> new_ltEs16(vwx250, vwx260) new_lt23(vwx76, vwx79, ty_Double) -> new_lt15(vwx76, vwx79) new_lt23(vwx76, vwx79, ty_Float) -> new_lt8(vwx76, vwx79) new_esEs39(vwx76, vwx79, app(app(ty_@2, caa), cab)) -> new_esEs13(vwx76, vwx79, caa, cab) new_esEs38(vwx77, vwx80, ty_Ordering) -> new_esEs12(vwx77, vwx80) new_esEs34(vwx3000, vwx4000, app(app(ty_Either, fdg), fdh)) -> new_esEs26(vwx3000, vwx4000, fdg, fdh) new_compare14(:%(vwx300, vwx301), :%(vwx400, vwx401), ty_Int) -> new_compare9(new_sr0(vwx300, vwx401), new_sr0(vwx400, vwx301)) new_esEs31(vwx250, vwx260, ty_Char) -> new_esEs19(vwx250, vwx260) new_primEqInt(Pos(Zero), Neg(Succ(vwx40000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(vwx40000))) -> False new_ltEs23(vwx32, vwx33, app(ty_Ratio, ffg)) -> new_ltEs5(vwx32, vwx33, ffg) new_ltEs9(Left(vwx250), Left(vwx260), ty_Ordering, ce) -> new_ltEs7(vwx250, vwx260) new_esEs28(vwx3000, vwx4000, ty_@0) -> new_esEs16(vwx3000, vwx4000) new_esEs7(vwx301, vwx401, ty_@0) -> new_esEs16(vwx301, vwx401) new_ltEs17(Just(vwx250), Just(vwx260), app(ty_Ratio, ecb)) -> new_ltEs5(vwx250, vwx260, ecb) new_esEs11(vwx300, vwx400, ty_Ordering) -> new_esEs12(vwx300, vwx400) new_lt23(vwx76, vwx79, app(app(ty_Either, bef), beg)) -> new_lt16(vwx76, vwx79, bef, beg) new_ltEs22(vwx90, vwx92, ty_Float) -> new_ltEs14(vwx90, vwx92) new_ltEs20(vwx251, vwx261, ty_@0) -> new_ltEs13(vwx251, vwx261) new_esEs15(vwx3000, vwx4000, ty_Ordering) -> new_esEs12(vwx3000, vwx4000) new_lt21(vwx89, vwx91, ty_Int) -> new_lt7(vwx89, vwx91) new_ltEs23(vwx32, vwx33, ty_Int) -> new_ltEs10(vwx32, vwx33) new_ltEs9(Left(vwx250), Left(vwx260), ty_@0, ce) -> new_ltEs13(vwx250, vwx260) new_esEs10(vwx301, vwx401, ty_Integer) -> new_esEs23(vwx301, vwx401) new_esEs10(vwx301, vwx401, app(ty_Maybe, fec)) -> new_esEs18(vwx301, vwx401, fec) new_esEs14(vwx3001, vwx4001, ty_Int) -> new_esEs24(vwx3001, vwx4001) new_esEs26(Left(vwx3000), Left(vwx4000), ty_@0, dbc) -> new_esEs16(vwx3000, vwx4000) new_esEs30(vwx250, vwx260, ty_Bool) -> new_esEs25(vwx250, vwx260) new_lt4(vwx76, vwx79) -> new_esEs12(new_compare6(vwx76, vwx79), LT) new_esEs8(vwx300, vwx400, ty_Bool) -> new_esEs25(vwx300, vwx400) new_primEqInt(Neg(Succ(vwx30000)), Neg(Succ(vwx40000))) -> new_primEqNat0(vwx30000, vwx40000) new_ltEs19(vwx252, vwx262, app(ty_Maybe, bae)) -> new_ltEs17(vwx252, vwx262, bae) new_ltEs22(vwx90, vwx92, app(ty_Maybe, ccc)) -> new_ltEs17(vwx90, vwx92, ccc) new_esEs34(vwx3000, vwx4000, ty_Ordering) -> new_esEs12(vwx3000, vwx4000) new_ltEs9(Left(vwx250), Left(vwx260), app(app(ty_Either, cf), cg), ce) -> new_ltEs9(vwx250, vwx260, cf, cg) new_primCmpInt(Neg(Zero), Pos(Succ(vwx4000))) -> LT new_esEs9(vwx300, vwx400, ty_Char) -> new_esEs19(vwx300, vwx400) new_esEs33(vwx3001, vwx4001, ty_Float) -> new_esEs17(vwx3001, vwx4001) new_primMulInt(Pos(vwx4000), Pos(vwx3010)) -> Pos(new_primMulNat0(vwx4000, vwx3010)) new_esEs30(vwx250, vwx260, ty_Integer) -> new_esEs23(vwx250, vwx260) new_esEs38(vwx77, vwx80, app(ty_[], bfd)) -> new_esEs22(vwx77, vwx80, bfd) new_esEs37(vwx89, vwx91, ty_Int) -> new_esEs24(vwx89, vwx91) new_ltEs21(vwx54, vwx55, ty_Char) -> new_ltEs15(vwx54, vwx55) new_ltEs9(Right(vwx250), Right(vwx260), dg, ty_Float) -> new_ltEs14(vwx250, vwx260) new_compare19(Right(vwx300), Left(vwx400), ba, bb) -> GT new_esEs6(vwx302, vwx402, ty_Char) -> new_esEs19(vwx302, vwx402) new_compare16(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bc, bd, be) -> new_compare211(vwx300, vwx301, vwx302, vwx400, vwx401, vwx402, new_asAs(new_esEs8(vwx300, vwx400, bc), new_asAs(new_esEs7(vwx301, vwx401, bd), new_esEs6(vwx302, vwx402, be))), bc, bd, be) new_ltEs4(vwx25, vwx26, app(app(app(ty_@3, ge), fb), fc)) -> new_ltEs12(vwx25, vwx26, ge, fb, fc) new_primCompAux1(vwx30, vwx40, vwx15, ca) -> new_primCompAux0(vwx15, new_compare30(vwx30, vwx40, ca)) new_ltEs21(vwx54, vwx55, ty_Bool) -> new_ltEs16(vwx54, vwx55) new_compare30(vwx30, vwx40, ty_Integer) -> new_compare28(vwx30, vwx40) new_lt9(vwx76, vwx79, beh, bfa, bfb) -> new_esEs12(new_compare16(vwx76, vwx79, beh, bfa, bfb), LT) new_esEs10(vwx301, vwx401, ty_Bool) -> new_esEs25(vwx301, vwx401) new_esEs32(vwx3002, vwx4002, ty_@0) -> new_esEs16(vwx3002, vwx4002) new_ltEs4(vwx25, vwx26, ty_Char) -> new_ltEs15(vwx25, vwx26) new_primMulNat0(Succ(vwx40000), Zero) -> Zero new_primMulNat0(Zero, Succ(vwx30100)) -> Zero new_ltEs4(vwx25, vwx26, ty_Double) -> new_ltEs8(vwx25, vwx26) new_esEs26(Left(vwx3000), Left(vwx4000), ty_Bool, dbc) -> new_esEs25(vwx3000, vwx4000) new_primPlusNat0(Zero, vwx30100) -> Succ(vwx30100) new_esEs10(vwx301, vwx401, ty_Float) -> new_esEs17(vwx301, vwx401) new_esEs32(vwx3002, vwx4002, app(app(ty_Either, fbc), fbd)) -> new_esEs26(vwx3002, vwx4002, fbc, fbd) new_compare210(vwx89, vwx90, vwx91, vwx92, False, cbd, ccg) -> new_compare11(vwx89, vwx90, vwx91, vwx92, new_lt21(vwx89, vwx91, cbd), new_asAs(new_esEs37(vwx89, vwx91, cbd), new_ltEs22(vwx90, vwx92, ccg)), cbd, ccg) new_esEs5(vwx300, vwx400, ty_@0) -> new_esEs16(vwx300, vwx400) new_ltEs4(vwx25, vwx26, app(app(ty_Either, dg), ce)) -> new_ltEs9(vwx25, vwx26, dg, ce) new_compare30(vwx30, vwx40, ty_Char) -> new_compare29(vwx30, vwx40) new_esEs10(vwx301, vwx401, ty_Char) -> new_esEs19(vwx301, vwx401) new_esEs8(vwx300, vwx400, app(ty_Maybe, dga)) -> new_esEs18(vwx300, vwx400, dga) new_esEs8(vwx300, vwx400, ty_Integer) -> new_esEs23(vwx300, vwx400) new_esEs33(vwx3001, vwx4001, ty_Char) -> new_esEs19(vwx3001, vwx4001) new_esEs32(vwx3002, vwx4002, app(ty_Ratio, fad)) -> new_esEs20(vwx3002, vwx4002, fad) new_esEs29(vwx251, vwx261, app(ty_Maybe, hd)) -> new_esEs18(vwx251, vwx261, hd) new_ltEs24(vwx78, vwx81, ty_Float) -> new_ltEs14(vwx78, vwx81) new_lt11(vwx250, vwx260, ty_Bool) -> new_lt4(vwx250, vwx260) new_esEs26(Right(vwx3000), Right(vwx4000), dbb, app(ty_Ratio, ddb)) -> new_esEs20(vwx3000, vwx4000, ddb) new_esEs11(vwx300, vwx400, ty_Float) -> new_esEs17(vwx300, vwx400) new_esEs10(vwx301, vwx401, app(ty_Ratio, fed)) -> new_esEs20(vwx301, vwx401, fed) new_esEs31(vwx250, vwx260, app(ty_Maybe, bch)) -> new_esEs18(vwx250, vwx260, bch) new_esEs6(vwx302, vwx402, ty_Bool) -> new_esEs25(vwx302, vwx402) new_esEs7(vwx301, vwx401, ty_Char) -> new_esEs19(vwx301, vwx401) new_ltEs19(vwx252, vwx262, app(ty_Ratio, edg)) -> new_ltEs5(vwx252, vwx262, edg) new_ltEs21(vwx54, vwx55, ty_Int) -> new_ltEs10(vwx54, vwx55) new_esEs26(Right(vwx3000), Right(vwx4000), dbb, app(app(ty_Either, dea), deb)) -> new_esEs26(vwx3000, vwx4000, dea, deb) new_esEs30(vwx250, vwx260, app(ty_[], fa)) -> new_esEs22(vwx250, vwx260, fa) new_lt23(vwx76, vwx79, ty_Int) -> new_lt7(vwx76, vwx79) new_esEs33(vwx3001, vwx4001, app(ty_Ratio, fbf)) -> new_esEs20(vwx3001, vwx4001, fbf) new_esEs39(vwx76, vwx79, ty_Int) -> new_esEs24(vwx76, vwx79) new_esEs4(vwx300, vwx400, ty_Int) -> new_esEs24(vwx300, vwx400) new_esEs32(vwx3002, vwx4002, ty_Integer) -> new_esEs23(vwx3002, vwx4002) new_lt21(vwx89, vwx91, ty_Ordering) -> new_lt14(vwx89, vwx91) new_esEs4(vwx300, vwx400, app(ty_[], dba)) -> new_esEs22(vwx300, vwx400, dba) new_ltEs20(vwx251, vwx261, ty_Double) -> new_ltEs8(vwx251, vwx261) new_esEs20(:%(vwx3000, vwx3001), :%(vwx4000, vwx4001), dae) -> new_asAs(new_esEs36(vwx3000, vwx4000, dae), new_esEs35(vwx3001, vwx4001, dae)) new_lt22(vwx77, vwx80, app(app(ty_@2, bgd), bge)) -> new_lt10(vwx77, vwx80, bgd, bge) new_esEs30(vwx250, vwx260, app(ty_Maybe, gb)) -> new_esEs18(vwx250, vwx260, gb) new_esEs32(vwx3002, vwx4002, app(ty_Maybe, fac)) -> new_esEs18(vwx3002, vwx4002, fac) new_esEs28(vwx3000, vwx4000, app(app(ty_@2, dfb), dfc)) -> new_esEs13(vwx3000, vwx4000, dfb, dfc) new_esEs8(vwx300, vwx400, app(ty_Ratio, dgb)) -> new_esEs20(vwx300, vwx400, dgb) new_esEs26(Left(vwx3000), Right(vwx4000), dbb, dbc) -> False new_esEs26(Right(vwx3000), Left(vwx4000), dbb, dbc) -> False new_esEs9(vwx300, vwx400, ty_Float) -> new_esEs17(vwx300, vwx400) new_compare25(vwx54, vwx55, False, efe) -> new_compare112(vwx54, vwx55, new_ltEs21(vwx54, vwx55, efe), efe) new_compare6(False, False) -> EQ new_esEs6(vwx302, vwx402, ty_Integer) -> new_esEs23(vwx302, vwx402) new_primPlusNat1(Succ(vwx16900), Zero) -> Succ(vwx16900) new_primPlusNat1(Zero, Succ(vwx301000)) -> Succ(vwx301000) new_esEs30(vwx250, vwx260, ty_@0) -> new_esEs16(vwx250, vwx260) new_ltEs17(Just(vwx250), Just(vwx260), app(ty_Maybe, bbf)) -> new_ltEs17(vwx250, vwx260, bbf) new_esEs11(vwx300, vwx400, app(ty_Ratio, eea)) -> new_esEs20(vwx300, vwx400, eea) new_ltEs9(Right(vwx250), Right(vwx260), dg, app(app(app(ty_@3, ec), ed), ee)) -> new_ltEs12(vwx250, vwx260, ec, ed, ee) new_compare8(LT, GT) -> LT new_lt22(vwx77, vwx80, ty_Int) -> new_lt7(vwx77, vwx80) new_esEs5(vwx300, vwx400, app(ty_[], eab)) -> new_esEs22(vwx300, vwx400, eab) new_esEs32(vwx3002, vwx4002, ty_Bool) -> new_esEs25(vwx3002, vwx4002) new_esEs29(vwx251, vwx261, app(app(app(ty_@3, ha), hb), hc)) -> new_esEs21(vwx251, vwx261, ha, hb, hc) new_lt21(vwx89, vwx91, app(app(ty_@2, cdf), cdg)) -> new_lt10(vwx89, vwx91, cdf, cdg) new_esEs6(vwx302, vwx402, app(ty_Maybe, ecc)) -> new_esEs18(vwx302, vwx402, ecc) new_ltEs20(vwx251, vwx261, app(app(ty_Either, bde), bdf)) -> new_ltEs9(vwx251, vwx261, bde, bdf) new_esEs22(:(vwx3000, vwx3001), [], dba) -> False new_esEs22([], :(vwx4000, vwx4001), dba) -> False new_esEs8(vwx300, vwx400, ty_Char) -> new_esEs19(vwx300, vwx400) new_esEs29(vwx251, vwx261, app(app(ty_@2, he), hf)) -> new_esEs13(vwx251, vwx261, he, hf) new_esEs39(vwx76, vwx79, app(ty_[], bee)) -> new_esEs22(vwx76, vwx79, bee) new_esEs39(vwx76, vwx79, app(app(app(ty_@3, beh), bfa), bfb)) -> new_esEs21(vwx76, vwx79, beh, bfa, bfb) new_esEs34(vwx3000, vwx4000, app(ty_Ratio, fch)) -> new_esEs20(vwx3000, vwx4000, fch) new_esEs18(Just(vwx3000), Just(vwx4000), app(ty_Ratio, ehb)) -> new_esEs20(vwx3000, vwx4000, ehb) new_lt16(vwx76, vwx79, bef, beg) -> new_esEs12(new_compare19(vwx76, vwx79, bef, beg), LT) new_lt7(vwx76, vwx79) -> new_esEs12(new_compare9(vwx76, vwx79), LT) new_esEs7(vwx301, vwx401, ty_Integer) -> new_esEs23(vwx301, vwx401) new_compare210(vwx89, vwx90, vwx91, vwx92, True, cbd, ccg) -> EQ new_esEs31(vwx250, vwx260, ty_@0) -> new_esEs16(vwx250, vwx260) new_esEs18(Nothing, Nothing, dad) -> True new_ltEs17(Just(vwx250), Just(vwx260), ty_Int) -> new_ltEs10(vwx250, vwx260) new_fsEs(vwx163) -> new_not(new_esEs12(vwx163, GT)) new_esEs4(vwx300, vwx400, app(app(app(ty_@3, daf), dag), dah)) -> new_esEs21(vwx300, vwx400, daf, dag, dah) new_compare111(vwx141, vwx142, vwx143, vwx144, vwx145, vwx146, True, ebg, ebh, eca) -> LT new_primMulInt(Neg(vwx4000), Neg(vwx3010)) -> Pos(new_primMulNat0(vwx4000, vwx3010)) new_primCmpInt(Pos(Zero), Pos(Succ(vwx4000))) -> new_primCmpNat0(Zero, Succ(vwx4000)) new_ltEs19(vwx252, vwx262, ty_Char) -> new_ltEs15(vwx252, vwx262) new_esEs7(vwx301, vwx401, app(ty_Maybe, efg)) -> new_esEs18(vwx301, vwx401, efg) new_esEs18(Nothing, Just(vwx4000), dad) -> False new_esEs18(Just(vwx3000), Nothing, dad) -> False new_esEs28(vwx3000, vwx4000, app(app(app(ty_@3, deg), deh), dfa)) -> new_esEs21(vwx3000, vwx4000, deg, deh, dfa) new_esEs31(vwx250, vwx260, ty_Bool) -> new_esEs25(vwx250, vwx260) new_compare25(vwx54, vwx55, True, efe) -> EQ new_esEs11(vwx300, vwx400, app(app(ty_Either, eeh), efa)) -> new_esEs26(vwx300, vwx400, eeh, efa) new_esEs32(vwx3002, vwx4002, ty_Char) -> new_esEs19(vwx3002, vwx4002) new_compare8(EQ, GT) -> LT new_ltEs20(vwx251, vwx261, ty_Bool) -> new_ltEs16(vwx251, vwx261) new_lt12(vwx251, vwx261, ty_Bool) -> new_lt4(vwx251, vwx261) new_esEs7(vwx301, vwx401, ty_Bool) -> new_esEs25(vwx301, vwx401) new_compare19(Left(vwx300), Left(vwx400), ba, bb) -> new_compare24(vwx300, vwx400, new_esEs4(vwx300, vwx400, ba), ba, bb) new_lt21(vwx89, vwx91, ty_Float) -> new_lt8(vwx89, vwx91) new_ltEs22(vwx90, vwx92, ty_Int) -> new_ltEs10(vwx90, vwx92) new_ltEs21(vwx54, vwx55, app(ty_Maybe, cba)) -> new_ltEs17(vwx54, vwx55, cba) new_esEs9(vwx300, vwx400, app(app(ty_Either, ebe), ebf)) -> new_esEs26(vwx300, vwx400, ebe, ebf) new_esEs15(vwx3000, vwx4000, ty_Int) -> new_esEs24(vwx3000, vwx4000) new_ltEs19(vwx252, vwx262, ty_Double) -> new_ltEs8(vwx252, vwx262) new_esEs18(Just(vwx3000), Just(vwx4000), ty_Float) -> new_esEs17(vwx3000, vwx4000) new_lt22(vwx77, vwx80, ty_Ordering) -> new_lt14(vwx77, vwx80) new_esEs38(vwx77, vwx80, ty_Int) -> new_esEs24(vwx77, vwx80) new_esEs34(vwx3000, vwx4000, ty_Float) -> new_esEs17(vwx3000, vwx4000) new_esEs9(vwx300, vwx400, app(ty_Ratio, eaf)) -> new_esEs20(vwx300, vwx400, eaf) new_esEs31(vwx250, vwx260, ty_Integer) -> new_esEs23(vwx250, vwx260) new_ltEs24(vwx78, vwx81, app(app(ty_@2, bhf), bhg)) -> new_ltEs18(vwx78, vwx81, bhf, bhg) new_ltEs19(vwx252, vwx262, ty_Bool) -> new_ltEs16(vwx252, vwx262) new_compare19(Right(vwx300), Right(vwx400), ba, bb) -> new_compare26(vwx300, vwx400, new_esEs5(vwx300, vwx400, bb), ba, bb) new_esEs25(True, True) -> True new_esEs6(vwx302, vwx402, app(app(ty_Either, edc), edd)) -> new_esEs26(vwx302, vwx402, edc, edd) new_esEs10(vwx301, vwx401, ty_@0) -> new_esEs16(vwx301, vwx401) new_lt22(vwx77, vwx80, ty_Bool) -> new_lt4(vwx77, vwx80) new_lt21(vwx89, vwx91, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_lt9(vwx89, vwx91, cdb, cdc, cdd) new_ltEs7(LT, LT) -> True new_compare17(Double(vwx300, Pos(vwx3010)), Double(vwx400, Neg(vwx4010))) -> new_compare9(new_sr0(vwx300, Pos(vwx4010)), new_sr0(Neg(vwx3010), vwx400)) new_compare17(Double(vwx300, Neg(vwx3010)), Double(vwx400, Pos(vwx4010))) -> new_compare9(new_sr0(vwx300, Neg(vwx4010)), new_sr0(Pos(vwx3010), vwx400)) new_esEs33(vwx3001, vwx4001, app(app(ty_Either, fce), fcf)) -> new_esEs26(vwx3001, vwx4001, fce, fcf) new_primMulInt(Pos(vwx4000), Neg(vwx3010)) -> Neg(new_primMulNat0(vwx4000, vwx3010)) new_primMulInt(Neg(vwx4000), Pos(vwx3010)) -> Neg(new_primMulNat0(vwx4000, vwx3010)) new_esEs29(vwx251, vwx261, ty_Ordering) -> new_esEs12(vwx251, vwx261) new_esEs39(vwx76, vwx79, ty_Float) -> new_esEs17(vwx76, vwx79) new_esEs28(vwx3000, vwx4000, app(ty_Maybe, dee)) -> new_esEs18(vwx3000, vwx4000, dee) new_ltEs23(vwx32, vwx33, ty_Float) -> new_ltEs14(vwx32, vwx33) new_esEs26(Left(vwx3000), Left(vwx4000), app(ty_[], dcf), dbc) -> new_esEs22(vwx3000, vwx4000, dcf) new_esEs38(vwx77, vwx80, ty_Bool) -> new_esEs25(vwx77, vwx80) new_compare30(vwx30, vwx40, app(ty_Maybe, bf)) -> new_compare18(vwx30, vwx40, bf) new_ltEs17(Just(vwx250), Just(vwx260), ty_Float) -> new_ltEs14(vwx250, vwx260) new_esEs28(vwx3000, vwx4000, ty_Integer) -> new_esEs23(vwx3000, vwx4000) new_esEs14(vwx3001, vwx4001, ty_Ordering) -> new_esEs12(vwx3001, vwx4001) new_esEs26(Right(vwx3000), Right(vwx4000), dbb, app(ty_[], ddh)) -> new_esEs22(vwx3000, vwx4000, ddh) new_esEs32(vwx3002, vwx4002, app(app(app(ty_@3, fae), faf), fag)) -> new_esEs21(vwx3002, vwx4002, fae, faf, fag) new_ltEs20(vwx251, vwx261, app(ty_Ratio, efc)) -> new_ltEs5(vwx251, vwx261, efc) new_compare26(vwx32, vwx33, False, cdh, fff) -> new_compare15(vwx32, vwx33, new_ltEs23(vwx32, vwx33, fff), cdh, fff) new_ltEs6(vwx25, vwx26, cb) -> new_fsEs(new_compare0(vwx25, vwx26, cb)) new_lt14(vwx76, vwx79) -> new_esEs12(new_compare8(vwx76, vwx79), LT) new_esEs5(vwx300, vwx400, app(app(app(ty_@3, dhe), dhf), dhg)) -> new_esEs21(vwx300, vwx400, dhe, dhf, dhg) new_ltEs4(vwx25, vwx26, ty_Ordering) -> new_ltEs7(vwx25, vwx26) new_esEs8(vwx300, vwx400, ty_Ordering) -> new_esEs12(vwx300, vwx400) new_esEs26(Right(vwx3000), Right(vwx4000), dbb, ty_Double) -> new_esEs27(vwx3000, vwx4000) new_ltEs9(Right(vwx250), Left(vwx260), dg, ce) -> False new_esEs5(vwx300, vwx400, ty_Double) -> new_esEs27(vwx300, vwx400) new_ltEs17(Just(vwx250), Just(vwx260), app(ty_[], bah)) -> new_ltEs6(vwx250, vwx260, bah) new_esEs38(vwx77, vwx80, app(ty_Ratio, fga)) -> new_esEs20(vwx77, vwx80, fga) new_esEs32(vwx3002, vwx4002, ty_Double) -> new_esEs27(vwx3002, vwx4002) new_ltEs22(vwx90, vwx92, app(app(ty_@2, ccd), cce)) -> new_ltEs18(vwx90, vwx92, ccd, cce) new_ltEs20(vwx251, vwx261, ty_Char) -> new_ltEs15(vwx251, vwx261) new_ltEs23(vwx32, vwx33, app(ty_[], cea)) -> new_ltEs6(vwx32, vwx33, cea) new_ltEs23(vwx32, vwx33, app(app(ty_Either, ceb), cec)) -> new_ltEs9(vwx32, vwx33, ceb, cec) new_esEs38(vwx77, vwx80, app(ty_Maybe, bgc)) -> new_esEs18(vwx77, vwx80, bgc) new_esEs9(vwx300, vwx400, app(app(app(ty_@3, eag), eah), eba)) -> new_esEs21(vwx300, vwx400, eag, eah, eba) new_esEs38(vwx77, vwx80, app(app(ty_@2, bgd), bge)) -> new_esEs13(vwx77, vwx80, bgd, bge) new_lt23(vwx76, vwx79, app(ty_Maybe, bhh)) -> new_lt19(vwx76, vwx79, bhh) new_esEs11(vwx300, vwx400, ty_Double) -> new_esEs27(vwx300, vwx400) new_esEs12(GT, GT) -> True new_esEs29(vwx251, vwx261, ty_@0) -> new_esEs16(vwx251, vwx261) new_compare0([], :(vwx40, vwx41), ca) -> LT new_ltEs5(vwx25, vwx26, dbe) -> new_fsEs(new_compare14(vwx25, vwx26, dbe)) new_asAs(True, vwx121) -> vwx121 new_compare6(True, False) -> GT new_lt20(vwx250, vwx260, ty_Float) -> new_lt8(vwx250, vwx260) new_esEs6(vwx302, vwx402, app(ty_[], edb)) -> new_esEs22(vwx302, vwx402, edb) new_compare10(vwx105, vwx106, False, cfb, cfc) -> GT new_ltEs9(Left(vwx250), Left(vwx260), ty_Char, ce) -> new_ltEs15(vwx250, vwx260) new_lt20(vwx250, vwx260, app(app(ty_@2, bda), bdb)) -> new_lt10(vwx250, vwx260, bda, bdb) new_esEs29(vwx251, vwx261, ty_Float) -> new_esEs17(vwx251, vwx261) new_esEs38(vwx77, vwx80, ty_Integer) -> new_esEs23(vwx77, vwx80) new_ltEs23(vwx32, vwx33, ty_Integer) -> new_ltEs11(vwx32, vwx33) new_ltEs24(vwx78, vwx81, ty_Bool) -> new_ltEs16(vwx78, vwx81) new_esEs16(@0, @0) -> True new_esEs7(vwx301, vwx401, ty_Int) -> new_esEs24(vwx301, vwx401) new_esEs8(vwx300, vwx400, ty_@0) -> new_esEs16(vwx300, vwx400) new_ltEs16(True, False) -> False new_compare24(vwx25, vwx26, False, dbd, cc) -> new_compare10(vwx25, vwx26, new_ltEs4(vwx25, vwx26, dbd), dbd, cc) new_esEs24(vwx300, vwx400) -> new_primEqInt(vwx300, vwx400) new_compare24(vwx25, vwx26, True, dbd, cc) -> EQ new_esEs6(vwx302, vwx402, app(app(ty_@2, ech), eda)) -> new_esEs13(vwx302, vwx402, ech, eda) new_compare211(vwx76, vwx77, vwx78, vwx79, vwx80, vwx81, True, bfc, bgf, bfe) -> EQ new_esEs33(vwx3001, vwx4001, app(ty_[], fcd)) -> new_esEs22(vwx3001, vwx4001, fcd) new_primCmpInt(Pos(Succ(vwx3000)), Pos(vwx400)) -> new_primCmpNat0(Succ(vwx3000), vwx400) new_esEs26(Left(vwx3000), Left(vwx4000), ty_Float, dbc) -> new_esEs17(vwx3000, vwx4000) new_ltEs9(Left(vwx250), Left(vwx260), ty_Bool, ce) -> new_ltEs16(vwx250, vwx260) new_compare12(vwx156, vwx157, vwx158, vwx159, False, cfd, cfe) -> GT new_ltEs4(vwx25, vwx26, ty_Int) -> new_ltEs10(vwx25, vwx26) new_esEs28(vwx3000, vwx4000, ty_Int) -> new_esEs24(vwx3000, vwx4000) new_ltEs9(Left(vwx250), Left(vwx260), ty_Double, ce) -> new_ltEs8(vwx250, vwx260) new_esEs30(vwx250, vwx260, ty_Float) -> new_esEs17(vwx250, vwx260) new_esEs33(vwx3001, vwx4001, app(app(ty_@2, fcb), fcc)) -> new_esEs13(vwx3001, vwx4001, fcb, fcc) new_compare0([], [], ca) -> EQ new_esEs12(EQ, EQ) -> True new_esEs18(Just(vwx3000), Just(vwx4000), ty_Int) -> new_esEs24(vwx3000, vwx4000) new_ltEs21(vwx54, vwx55, ty_Double) -> new_ltEs8(vwx54, vwx55) new_esEs34(vwx3000, vwx4000, ty_Int) -> new_esEs24(vwx3000, vwx4000) new_esEs18(Just(vwx3000), Just(vwx4000), ty_Integer) -> new_esEs23(vwx3000, vwx4000) new_compare19(Left(vwx300), Right(vwx400), ba, bb) -> LT new_compare8(GT, EQ) -> GT new_ltEs18(@2(vwx250, vwx251), @2(vwx260, vwx261), bdc, bcb) -> new_pePe(new_lt20(vwx250, vwx260, bdc), new_asAs(new_esEs31(vwx250, vwx260, bdc), new_ltEs20(vwx251, vwx261, bcb))) new_esEs37(vwx89, vwx91, ty_Double) -> new_esEs27(vwx89, vwx91) new_primMulNat0(Zero, Zero) -> Zero new_esEs37(vwx89, vwx91, app(app(ty_Either, cch), cda)) -> new_esEs26(vwx89, vwx91, cch, cda) new_ltEs9(Right(vwx250), Right(vwx260), dg, ty_Integer) -> new_ltEs11(vwx250, vwx260) new_lt12(vwx251, vwx261, app(app(ty_Either, gg), gh)) -> new_lt16(vwx251, vwx261, gg, gh) new_esEs18(Just(vwx3000), Just(vwx4000), ty_Ordering) -> new_esEs12(vwx3000, vwx4000) new_esEs33(vwx3001, vwx4001, ty_Bool) -> new_esEs25(vwx3001, vwx4001) new_ltEs24(vwx78, vwx81, app(ty_Maybe, bhe)) -> new_ltEs17(vwx78, vwx81, bhe) new_esEs26(Left(vwx3000), Left(vwx4000), ty_Ordering, dbc) -> new_esEs12(vwx3000, vwx4000) new_compare8(LT, LT) -> EQ new_esEs15(vwx3000, vwx4000, app(app(app(ty_@3, chd), che), chf)) -> new_esEs21(vwx3000, vwx4000, chd, che, chf) new_esEs11(vwx300, vwx400, ty_Char) -> new_esEs19(vwx300, vwx400) new_ltEs23(vwx32, vwx33, ty_@0) -> new_ltEs13(vwx32, vwx33) new_compare8(LT, EQ) -> LT new_ltEs9(Left(vwx250), Left(vwx260), app(ty_Maybe, dd), ce) -> new_ltEs17(vwx250, vwx260, dd) new_esEs26(Right(vwx3000), Right(vwx4000), dbb, ty_Char) -> new_esEs19(vwx3000, vwx4000) new_esEs6(vwx302, vwx402, app(ty_Ratio, ecd)) -> new_esEs20(vwx302, vwx402, ecd) new_esEs15(vwx3000, vwx4000, ty_@0) -> new_esEs16(vwx3000, vwx4000) new_esEs8(vwx300, vwx400, ty_Float) -> new_esEs17(vwx300, vwx400) new_ltEs7(LT, EQ) -> True new_esEs18(Just(vwx3000), Just(vwx4000), app(ty_Maybe, eha)) -> new_esEs18(vwx3000, vwx4000, eha) new_esEs26(Left(vwx3000), Left(vwx4000), ty_Integer, dbc) -> new_esEs23(vwx3000, vwx4000) new_ltEs9(Right(vwx250), Right(vwx260), dg, ty_Int) -> new_ltEs10(vwx250, vwx260) new_esEs4(vwx300, vwx400, ty_Ordering) -> new_esEs12(vwx300, vwx400) new_ltEs17(Just(vwx250), Just(vwx260), ty_@0) -> new_ltEs13(vwx250, vwx260) new_lt20(vwx250, vwx260, ty_Ordering) -> new_lt14(vwx250, vwx260) new_lt11(vwx250, vwx260, ty_Char) -> new_lt18(vwx250, vwx260) new_ltEs23(vwx32, vwx33, app(ty_Maybe, ceg)) -> new_ltEs17(vwx32, vwx33, ceg) new_lt20(vwx250, vwx260, app(ty_Ratio, efb)) -> new_lt13(vwx250, vwx260, efb) new_ltEs9(Right(vwx250), Right(vwx260), dg, app(ty_Maybe, ef)) -> new_ltEs17(vwx250, vwx260, ef) new_lt13(vwx76, vwx79, ffh) -> new_esEs12(new_compare14(vwx76, vwx79, ffh), LT) new_ltEs12(@3(vwx250, vwx251, vwx252), @3(vwx260, vwx261, vwx262), ge, fb, fc) -> new_pePe(new_lt11(vwx250, vwx260, ge), new_asAs(new_esEs30(vwx250, vwx260, ge), new_pePe(new_lt12(vwx251, vwx261, fb), new_asAs(new_esEs29(vwx251, vwx261, fb), new_ltEs19(vwx252, vwx262, fc))))) new_esEs33(vwx3001, vwx4001, app(ty_Maybe, fbe)) -> new_esEs18(vwx3001, vwx4001, fbe) new_esEs7(vwx301, vwx401, app(ty_Ratio, efh)) -> new_esEs20(vwx301, vwx401, efh) new_esEs9(vwx300, vwx400, ty_Double) -> new_esEs27(vwx300, vwx400) new_esEs33(vwx3001, vwx4001, ty_Integer) -> new_esEs23(vwx3001, vwx4001) new_esEs9(vwx300, vwx400, ty_@0) -> new_esEs16(vwx300, vwx400) new_primCompAux0(vwx19, EQ) -> vwx19 new_esEs28(vwx3000, vwx4000, ty_Bool) -> new_esEs25(vwx3000, vwx4000) new_esEs31(vwx250, vwx260, app(app(app(ty_@3, bce), bcf), bcg)) -> new_esEs21(vwx250, vwx260, bce, bcf, bcg) new_ltEs9(Right(vwx250), Right(vwx260), dg, app(ty_[], dh)) -> new_ltEs6(vwx250, vwx260, dh) new_esEs6(vwx302, vwx402, ty_Int) -> new_esEs24(vwx302, vwx402) new_esEs37(vwx89, vwx91, app(ty_[], ccf)) -> new_esEs22(vwx89, vwx91, ccf) new_esEs39(vwx76, vwx79, ty_Ordering) -> new_esEs12(vwx76, vwx79) new_compare111(vwx141, vwx142, vwx143, vwx144, vwx145, vwx146, False, ebg, ebh, eca) -> GT new_ltEs17(Just(vwx250), Just(vwx260), app(app(ty_Either, bba), bbb)) -> new_ltEs9(vwx250, vwx260, bba, bbb) new_esEs18(Just(vwx3000), Just(vwx4000), ty_@0) -> new_esEs16(vwx3000, vwx4000) new_esEs32(vwx3002, vwx4002, app(ty_[], fbb)) -> new_esEs22(vwx3002, vwx4002, fbb) new_esEs5(vwx300, vwx400, ty_Char) -> new_esEs19(vwx300, vwx400) new_primEqInt(Neg(Succ(vwx30000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(vwx40000))) -> False new_esEs10(vwx301, vwx401, ty_Ordering) -> new_esEs12(vwx301, vwx401) new_primEqInt(Pos(Succ(vwx30000)), Pos(Succ(vwx40000))) -> new_primEqNat0(vwx30000, vwx40000) new_esEs7(vwx301, vwx401, app(app(ty_@2, egd), ege)) -> new_esEs13(vwx301, vwx401, egd, ege) new_ltEs24(vwx78, vwx81, app(ty_Ratio, fgb)) -> new_ltEs5(vwx78, vwx81, fgb) new_esEs4(vwx300, vwx400, ty_@0) -> new_esEs16(vwx300, vwx400) new_esEs34(vwx3000, vwx4000, app(ty_Maybe, fcg)) -> new_esEs18(vwx3000, vwx4000, fcg) new_lt22(vwx77, vwx80, app(app(ty_Either, bff), bfg)) -> new_lt16(vwx77, vwx80, bff, bfg) new_ltEs21(vwx54, vwx55, app(app(ty_@2, cbb), cbc)) -> new_ltEs18(vwx54, vwx55, cbb, cbc) new_esEs34(vwx3000, vwx4000, ty_Integer) -> new_esEs23(vwx3000, vwx4000) new_ltEs24(vwx78, vwx81, app(ty_[], bgg)) -> new_ltEs6(vwx78, vwx81, bgg) new_compare30(vwx30, vwx40, ty_Bool) -> new_compare6(vwx30, vwx40) new_ltEs9(Right(vwx250), Right(vwx260), dg, ty_Ordering) -> new_ltEs7(vwx250, vwx260) new_esEs18(Just(vwx3000), Just(vwx4000), ty_Bool) -> new_esEs25(vwx3000, vwx4000) new_lt11(vwx250, vwx260, app(app(ty_Either, fd), ff)) -> new_lt16(vwx250, vwx260, fd, ff) new_esEs29(vwx251, vwx261, ty_Int) -> new_esEs24(vwx251, vwx261) new_ltEs22(vwx90, vwx92, app(app(ty_Either, cbf), cbg)) -> new_ltEs9(vwx90, vwx92, cbf, cbg) new_esEs39(vwx76, vwx79, app(ty_Maybe, bhh)) -> new_esEs18(vwx76, vwx79, bhh) new_compare6(False, True) -> LT new_esEs37(vwx89, vwx91, app(app(ty_@2, cdf), cdg)) -> new_esEs13(vwx89, vwx91, cdf, cdg) new_esEs15(vwx3000, vwx4000, ty_Double) -> new_esEs27(vwx3000, vwx4000) new_esEs39(vwx76, vwx79, ty_@0) -> new_esEs16(vwx76, vwx79) new_lt20(vwx250, vwx260, ty_Int) -> new_lt7(vwx250, vwx260) new_primEqInt(Pos(Succ(vwx30000)), Neg(vwx4000)) -> False new_primEqInt(Neg(Succ(vwx30000)), Pos(vwx4000)) -> False new_ltEs9(Left(vwx250), Left(vwx260), app(ty_[], cd), ce) -> new_ltEs6(vwx250, vwx260, cd) new_esEs34(vwx3000, vwx4000, ty_Bool) -> new_esEs25(vwx3000, vwx4000) new_esEs14(vwx3001, vwx4001, ty_Float) -> new_esEs17(vwx3001, vwx4001) new_compare30(vwx30, vwx40, app(ty_[], h)) -> new_compare0(vwx30, vwx40, h) new_primCmpInt(Neg(Zero), Neg(Succ(vwx4000))) -> new_primCmpNat0(Succ(vwx4000), Zero) new_esEs39(vwx76, vwx79, ty_Integer) -> new_esEs23(vwx76, vwx79) new_lt21(vwx89, vwx91, ty_Bool) -> new_lt4(vwx89, vwx91) new_compare13(Float(vwx300, Pos(vwx3010)), Float(vwx400, Pos(vwx4010))) -> new_compare9(new_sr0(vwx300, Pos(vwx4010)), new_sr0(Pos(vwx3010), vwx400)) new_esEs30(vwx250, vwx260, ty_Int) -> new_esEs24(vwx250, vwx260) new_esEs37(vwx89, vwx91, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_esEs21(vwx89, vwx91, cdb, cdc, cdd) new_esEs7(vwx301, vwx401, ty_Float) -> new_esEs17(vwx301, vwx401) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs15(vwx3000, vwx4000, ty_Char) -> new_esEs19(vwx3000, vwx4000) new_esEs8(vwx300, vwx400, ty_Int) -> new_esEs24(vwx300, vwx400) new_esEs33(vwx3001, vwx4001, app(app(app(ty_@3, fbg), fbh), fca)) -> new_esEs21(vwx3001, vwx4001, fbg, fbh, fca) new_esEs37(vwx89, vwx91, ty_Bool) -> new_esEs25(vwx89, vwx91) new_compare8(GT, LT) -> GT new_ltEs22(vwx90, vwx92, app(ty_[], cbe)) -> new_ltEs6(vwx90, vwx92, cbe) new_esEs38(vwx77, vwx80, ty_Char) -> new_esEs19(vwx77, vwx80) new_esEs34(vwx3000, vwx4000, app(ty_[], fdf)) -> new_esEs22(vwx3000, vwx4000, fdf) new_esEs39(vwx76, vwx79, app(ty_Ratio, ffh)) -> new_esEs20(vwx76, vwx79, ffh) new_esEs15(vwx3000, vwx4000, ty_Float) -> new_esEs17(vwx3000, vwx4000) new_esEs26(Right(vwx3000), Right(vwx4000), dbb, ty_@0) -> new_esEs16(vwx3000, vwx4000) new_esEs6(vwx302, vwx402, ty_Double) -> new_esEs27(vwx302, vwx402) new_esEs32(vwx3002, vwx4002, app(app(ty_@2, fah), fba)) -> new_esEs13(vwx3002, vwx4002, fah, fba) new_esEs4(vwx300, vwx400, ty_Float) -> new_esEs17(vwx300, vwx400) new_esEs18(Just(vwx3000), Just(vwx4000), app(app(ty_@2, ehf), ehg)) -> new_esEs13(vwx3000, vwx4000, ehf, ehg) new_compare30(vwx30, vwx40, ty_Ordering) -> new_compare8(vwx30, vwx40) new_lt6(vwx76, vwx79, bee) -> new_esEs12(new_compare0(vwx76, vwx79, bee), LT) new_esEs11(vwx300, vwx400, app(ty_[], eeg)) -> new_esEs22(vwx300, vwx400, eeg) new_esEs35(vwx3001, vwx4001, ty_Int) -> new_esEs24(vwx3001, vwx4001) new_ltEs7(EQ, GT) -> True new_lt10(vwx76, vwx79, caa, cab) -> new_esEs12(new_compare27(vwx76, vwx79, caa, cab), LT) new_esEs30(vwx250, vwx260, app(ty_Ratio, ede)) -> new_esEs20(vwx250, vwx260, ede) new_esEs31(vwx250, vwx260, ty_Float) -> new_esEs17(vwx250, vwx260) new_compare6(True, True) -> EQ new_esEs37(vwx89, vwx91, app(ty_Ratio, feb)) -> new_esEs20(vwx89, vwx91, feb) new_not(False) -> True new_esEs11(vwx300, vwx400, ty_@0) -> new_esEs16(vwx300, vwx400) new_lt22(vwx77, vwx80, app(ty_Maybe, bgc)) -> new_lt19(vwx77, vwx80, bgc) new_esEs28(vwx3000, vwx4000, ty_Ordering) -> new_esEs12(vwx3000, vwx4000) new_esEs8(vwx300, vwx400, app(app(app(ty_@3, dgc), dgd), dge)) -> new_esEs21(vwx300, vwx400, dgc, dgd, dge) new_esEs14(vwx3001, vwx4001, ty_Integer) -> new_esEs23(vwx3001, vwx4001) new_esEs4(vwx300, vwx400, ty_Char) -> new_esEs19(vwx300, vwx400) new_compare8(EQ, LT) -> GT new_ltEs24(vwx78, vwx81, app(app(ty_Either, bgh), bha)) -> new_ltEs9(vwx78, vwx81, bgh, bha) new_esEs14(vwx3001, vwx4001, app(ty_Ratio, cga)) -> new_esEs20(vwx3001, vwx4001, cga) new_esEs9(vwx300, vwx400, app(ty_[], ebd)) -> new_esEs22(vwx300, vwx400, ebd) new_lt12(vwx251, vwx261, app(ty_Maybe, hd)) -> new_lt19(vwx251, vwx261, hd) new_esEs34(vwx3000, vwx4000, ty_@0) -> new_esEs16(vwx3000, vwx4000) new_compare30(vwx30, vwx40, app(app(app(ty_@3, bc), bd), be)) -> new_compare16(vwx30, vwx40, bc, bd, be) new_compare0(:(vwx30, vwx31), [], ca) -> GT new_esEs39(vwx76, vwx79, ty_Bool) -> new_esEs25(vwx76, vwx79) new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_esEs37(vwx89, vwx91, ty_Integer) -> new_esEs23(vwx89, vwx91) new_ltEs23(vwx32, vwx33, ty_Bool) -> new_ltEs16(vwx32, vwx33) new_lt11(vwx250, vwx260, ty_Integer) -> new_lt17(vwx250, vwx260) new_esEs37(vwx89, vwx91, app(ty_Maybe, cde)) -> new_esEs18(vwx89, vwx91, cde) new_ltEs7(EQ, EQ) -> True new_ltEs19(vwx252, vwx262, ty_Ordering) -> new_ltEs7(vwx252, vwx262) new_ltEs7(GT, EQ) -> False new_compare18(Just(vwx300), Nothing, bf) -> GT new_ltEs24(vwx78, vwx81, ty_Integer) -> new_ltEs11(vwx78, vwx81) new_lt22(vwx77, vwx80, ty_Char) -> new_lt18(vwx77, vwx80) new_esEs30(vwx250, vwx260, app(app(ty_Either, fd), ff)) -> new_esEs26(vwx250, vwx260, fd, ff) new_compare211(vwx76, vwx77, vwx78, vwx79, vwx80, vwx81, False, bfc, bgf, bfe) -> new_compare110(vwx76, vwx77, vwx78, vwx79, vwx80, vwx81, new_lt23(vwx76, vwx79, bfc), new_asAs(new_esEs39(vwx76, vwx79, bfc), new_pePe(new_lt22(vwx77, vwx80, bgf), new_asAs(new_esEs38(vwx77, vwx80, bgf), new_ltEs24(vwx78, vwx81, bfe)))), bfc, bgf, bfe) new_ltEs4(vwx25, vwx26, ty_Float) -> new_ltEs14(vwx25, vwx26) new_lt21(vwx89, vwx91, app(ty_[], ccf)) -> new_lt6(vwx89, vwx91, ccf) new_esEs6(vwx302, vwx402, ty_Float) -> new_esEs17(vwx302, vwx402) new_esEs4(vwx300, vwx400, ty_Double) -> new_esEs27(vwx300, vwx400) new_esEs26(Left(vwx3000), Left(vwx4000), app(ty_Ratio, dbh), dbc) -> new_esEs20(vwx3000, vwx4000, dbh) new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_esEs7(vwx301, vwx401, ty_Ordering) -> new_esEs12(vwx301, vwx401) new_primPlusNat0(Succ(vwx1690), vwx30100) -> Succ(Succ(new_primPlusNat1(vwx1690, vwx30100))) new_ltEs16(False, False) -> True new_ltEs20(vwx251, vwx261, app(ty_[], bdd)) -> new_ltEs6(vwx251, vwx261, bdd) new_esEs31(vwx250, vwx260, ty_Double) -> new_esEs27(vwx250, vwx260) new_ltEs24(vwx78, vwx81, ty_Double) -> new_ltEs8(vwx78, vwx81) new_esEs29(vwx251, vwx261, app(ty_Ratio, edf)) -> new_esEs20(vwx251, vwx261, edf) new_lt23(vwx76, vwx79, ty_@0) -> new_lt5(vwx76, vwx79) new_sr0(vwx400, vwx301) -> new_primMulInt(vwx400, vwx301) new_compare13(Float(vwx300, Neg(vwx3010)), Float(vwx400, Neg(vwx4010))) -> new_compare9(new_sr0(vwx300, Neg(vwx4010)), new_sr0(Neg(vwx3010), vwx400)) new_ltEs19(vwx252, vwx262, app(app(ty_@2, baf), bag)) -> new_ltEs18(vwx252, vwx262, baf, bag) new_ltEs20(vwx251, vwx261, ty_Ordering) -> new_ltEs7(vwx251, vwx261) new_compare30(vwx30, vwx40, app(app(ty_Either, ba), bb)) -> new_compare19(vwx30, vwx40, ba, bb) new_esEs35(vwx3001, vwx4001, ty_Integer) -> new_esEs23(vwx3001, vwx4001) new_esEs38(vwx77, vwx80, ty_Float) -> new_esEs17(vwx77, vwx80) new_lt18(vwx76, vwx79) -> new_esEs12(new_compare29(vwx76, vwx79), LT) new_lt23(vwx76, vwx79, app(ty_Ratio, ffh)) -> new_lt13(vwx76, vwx79, ffh) new_ltEs9(Left(vwx250), Left(vwx260), ty_Float, ce) -> new_ltEs14(vwx250, vwx260) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_compare18(Nothing, Nothing, bf) -> EQ new_lt22(vwx77, vwx80, app(app(app(ty_@3, bfh), bga), bgb)) -> new_lt9(vwx77, vwx80, bfh, bga, bgb) new_ltEs24(vwx78, vwx81, app(app(app(ty_@3, bhb), bhc), bhd)) -> new_ltEs12(vwx78, vwx81, bhb, bhc, bhd) new_lt20(vwx250, vwx260, app(ty_Maybe, bch)) -> new_lt19(vwx250, vwx260, bch) new_primPlusNat1(Zero, Zero) -> Zero new_ltEs15(vwx25, vwx26) -> new_fsEs(new_compare29(vwx25, vwx26)) new_lt21(vwx89, vwx91, ty_Double) -> new_lt15(vwx89, vwx91) new_lt21(vwx89, vwx91, app(app(ty_Either, cch), cda)) -> new_lt16(vwx89, vwx91, cch, cda) new_esEs26(Right(vwx3000), Right(vwx4000), dbb, app(app(ty_@2, ddf), ddg)) -> new_esEs13(vwx3000, vwx4000, ddf, ddg) new_esEs5(vwx300, vwx400, app(ty_Ratio, dhd)) -> new_esEs20(vwx300, vwx400, dhd) new_ltEs21(vwx54, vwx55, app(app(app(ty_@3, caf), cag), cah)) -> new_ltEs12(vwx54, vwx55, caf, cag, cah) new_esEs26(Left(vwx3000), Left(vwx4000), app(ty_Maybe, dbg), dbc) -> new_esEs18(vwx3000, vwx4000, dbg) new_esEs5(vwx300, vwx400, app(app(ty_Either, eac), ead)) -> new_esEs26(vwx300, vwx400, eac, ead) new_ltEs16(True, True) -> True new_ltEs7(EQ, LT) -> False new_lt20(vwx250, vwx260, ty_@0) -> new_lt5(vwx250, vwx260) new_esEs10(vwx301, vwx401, app(app(app(ty_@3, fee), fef), feg)) -> new_esEs21(vwx301, vwx401, fee, fef, feg) new_esEs9(vwx300, vwx400, app(app(ty_@2, ebb), ebc)) -> new_esEs13(vwx300, vwx400, ebb, ebc) new_ltEs23(vwx32, vwx33, ty_Ordering) -> new_ltEs7(vwx32, vwx33) new_esEs21(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), daf, dag, dah) -> new_asAs(new_esEs34(vwx3000, vwx4000, daf), new_asAs(new_esEs33(vwx3001, vwx4001, dag), new_esEs32(vwx3002, vwx4002, dah))) new_ltEs23(vwx32, vwx33, app(app(app(ty_@3, ced), cee), cef)) -> new_ltEs12(vwx32, vwx33, ced, cee, cef) new_ltEs9(Left(vwx250), Left(vwx260), app(app(ty_@2, de), df), ce) -> new_ltEs18(vwx250, vwx260, de, df) new_esEs5(vwx300, vwx400, ty_Ordering) -> new_esEs12(vwx300, vwx400) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_ltEs17(Just(vwx250), Just(vwx260), ty_Ordering) -> new_ltEs7(vwx250, vwx260) new_primMulNat0(Succ(vwx40000), Succ(vwx30100)) -> new_primPlusNat0(new_primMulNat0(vwx40000, Succ(vwx30100)), vwx30100) new_ltEs9(Right(vwx250), Right(vwx260), dg, ty_@0) -> new_ltEs13(vwx250, vwx260) new_ltEs21(vwx54, vwx55, ty_Integer) -> new_ltEs11(vwx54, vwx55) new_ltEs7(GT, LT) -> False new_lt20(vwx250, vwx260, app(app(ty_Either, bcc), bcd)) -> new_lt16(vwx250, vwx260, bcc, bcd) new_ltEs22(vwx90, vwx92, app(app(app(ty_@3, cbh), cca), ccb)) -> new_ltEs12(vwx90, vwx92, cbh, cca, ccb) new_primCmpNat0(Succ(vwx3000), Succ(vwx4000)) -> new_primCmpNat0(vwx3000, vwx4000) new_esEs29(vwx251, vwx261, ty_Double) -> new_esEs27(vwx251, vwx261) new_ltEs22(vwx90, vwx92, ty_Ordering) -> new_ltEs7(vwx90, vwx92) new_lt21(vwx89, vwx91, ty_@0) -> new_lt5(vwx89, vwx91) new_esEs22([], [], dba) -> True new_compare30(vwx30, vwx40, ty_Float) -> new_compare13(vwx30, vwx40) new_esEs37(vwx89, vwx91, ty_@0) -> new_esEs16(vwx89, vwx91) new_esEs11(vwx300, vwx400, app(app(ty_@2, eee), eef)) -> new_esEs13(vwx300, vwx400, eee, eef) new_esEs15(vwx3000, vwx4000, app(app(ty_Either, dab), dac)) -> new_esEs26(vwx3000, vwx4000, dab, dac) new_compare8(EQ, EQ) -> EQ new_ltEs9(Right(vwx250), Right(vwx260), dg, ty_Double) -> new_ltEs8(vwx250, vwx260) new_ltEs9(Right(vwx250), Right(vwx260), dg, ty_Char) -> new_ltEs15(vwx250, vwx260) new_lt21(vwx89, vwx91, app(ty_Ratio, feb)) -> new_lt13(vwx89, vwx91, feb) new_esEs26(Right(vwx3000), Right(vwx4000), dbb, ty_Float) -> new_esEs17(vwx3000, vwx4000) new_esEs31(vwx250, vwx260, ty_Ordering) -> new_esEs12(vwx250, vwx260) new_esEs38(vwx77, vwx80, app(app(ty_Either, bff), bfg)) -> new_esEs26(vwx77, vwx80, bff, bfg) new_lt11(vwx250, vwx260, app(ty_Ratio, ede)) -> new_lt13(vwx250, vwx260, ede) new_esEs14(vwx3001, vwx4001, ty_@0) -> new_esEs16(vwx3001, vwx4001) new_ltEs9(Left(vwx250), Left(vwx260), app(app(app(ty_@3, da), db), dc), ce) -> new_ltEs12(vwx250, vwx260, da, db, dc) new_compare15(vwx112, vwx113, False, dfg, dfh) -> GT new_ltEs17(Just(vwx250), Just(vwx260), app(app(app(ty_@3, bbc), bbd), bbe)) -> new_ltEs12(vwx250, vwx260, bbc, bbd, bbe) new_esEs32(vwx3002, vwx4002, ty_Int) -> new_esEs24(vwx3002, vwx4002) new_lt22(vwx77, vwx80, ty_@0) -> new_lt5(vwx77, vwx80) new_ltEs7(LT, GT) -> True new_lt20(vwx250, vwx260, ty_Char) -> new_lt18(vwx250, vwx260) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_ltEs24(vwx78, vwx81, ty_Char) -> new_ltEs15(vwx78, vwx81) new_esEs28(vwx3000, vwx4000, app(ty_Ratio, def)) -> new_esEs20(vwx3000, vwx4000, def) new_lt11(vwx250, vwx260, app(app(app(ty_@3, fg), fh), ga)) -> new_lt9(vwx250, vwx260, fg, fh, ga) new_ltEs24(vwx78, vwx81, ty_@0) -> new_ltEs13(vwx78, vwx81) new_lt21(vwx89, vwx91, ty_Integer) -> new_lt17(vwx89, vwx91) new_ltEs21(vwx54, vwx55, ty_Ordering) -> new_ltEs7(vwx54, vwx55) new_lt22(vwx77, vwx80, app(ty_Ratio, fga)) -> new_lt13(vwx77, vwx80, fga) new_esEs30(vwx250, vwx260, ty_Double) -> new_esEs27(vwx250, vwx260) new_esEs28(vwx3000, vwx4000, app(app(ty_Either, dfe), dff)) -> new_esEs26(vwx3000, vwx4000, dfe, dff) new_compare29(Char(vwx300), Char(vwx400)) -> new_primCmpNat0(vwx300, vwx400) new_lt23(vwx76, vwx79, app(app(app(ty_@3, beh), bfa), bfb)) -> new_lt9(vwx76, vwx79, beh, bfa, bfb) new_primEqNat0(Zero, Zero) -> True new_compare30(vwx30, vwx40, ty_@0) -> new_compare7(vwx30, vwx40) new_esEs14(vwx3001, vwx4001, app(ty_Maybe, cfh)) -> new_esEs18(vwx3001, vwx4001, cfh) new_ltEs17(Just(vwx250), Just(vwx260), ty_Integer) -> new_ltEs11(vwx250, vwx260) new_ltEs4(vwx25, vwx26, app(app(ty_@2, bdc), bcb)) -> new_ltEs18(vwx25, vwx26, bdc, bcb) new_lt20(vwx250, vwx260, app(ty_[], bca)) -> new_lt6(vwx250, vwx260, bca) new_esEs4(vwx300, vwx400, app(app(ty_Either, dbb), dbc)) -> new_esEs26(vwx300, vwx400, dbb, dbc) new_compare30(vwx30, vwx40, ty_Double) -> new_compare17(vwx30, vwx40) new_esEs34(vwx3000, vwx4000, app(app(ty_@2, fdd), fde)) -> new_esEs13(vwx3000, vwx4000, fdd, fde) new_esEs30(vwx250, vwx260, ty_Ordering) -> new_esEs12(vwx250, vwx260) new_compare27(@2(vwx300, vwx301), @2(vwx400, vwx401), bg, bh) -> new_compare210(vwx300, vwx301, vwx400, vwx401, new_asAs(new_esEs11(vwx300, vwx400, bg), new_esEs10(vwx301, vwx401, bh)), bg, bh) new_esEs18(Just(vwx3000), Just(vwx4000), app(app(app(ty_@3, ehc), ehd), ehe)) -> new_esEs21(vwx3000, vwx4000, ehc, ehd, ehe) new_lt21(vwx89, vwx91, ty_Char) -> new_lt18(vwx89, vwx91) new_esEs4(vwx300, vwx400, app(ty_Ratio, dae)) -> new_esEs20(vwx300, vwx400, dae) new_lt20(vwx250, vwx260, ty_Integer) -> new_lt17(vwx250, vwx260) new_asAs(False, vwx121) -> False new_esEs33(vwx3001, vwx4001, ty_Int) -> new_esEs24(vwx3001, vwx4001) new_lt12(vwx251, vwx261, app(app(app(ty_@3, ha), hb), hc)) -> new_lt9(vwx251, vwx261, ha, hb, hc) new_esEs11(vwx300, vwx400, app(app(app(ty_@3, eeb), eec), eed)) -> new_esEs21(vwx300, vwx400, eeb, eec, eed) new_compare7(@0, @0) -> EQ new_esEs26(Left(vwx3000), Left(vwx4000), ty_Int, dbc) -> new_esEs24(vwx3000, vwx4000) new_esEs14(vwx3001, vwx4001, ty_Char) -> new_esEs19(vwx3001, vwx4001) new_ltEs13(vwx25, vwx26) -> new_fsEs(new_compare7(vwx25, vwx26)) new_esEs10(vwx301, vwx401, ty_Int) -> new_esEs24(vwx301, vwx401) new_esEs6(vwx302, vwx402, ty_Ordering) -> new_esEs12(vwx302, vwx402) new_esEs18(Just(vwx3000), Just(vwx4000), app(ty_[], ehh)) -> new_esEs22(vwx3000, vwx4000, ehh) new_compare112(vwx126, vwx127, False, ffe) -> GT new_compare11(vwx156, vwx157, vwx158, vwx159, False, vwx161, cfd, cfe) -> new_compare12(vwx156, vwx157, vwx158, vwx159, vwx161, cfd, cfe) new_lt20(vwx250, vwx260, ty_Double) -> new_lt15(vwx250, vwx260) new_ltEs9(Right(vwx250), Right(vwx260), dg, app(app(ty_@2, eg), eh)) -> new_ltEs18(vwx250, vwx260, eg, eh) new_esEs28(vwx3000, vwx4000, ty_Float) -> new_esEs17(vwx3000, vwx4000) new_esEs39(vwx76, vwx79, app(app(ty_Either, bef), beg)) -> new_esEs26(vwx76, vwx79, bef, beg) new_ltEs16(False, True) -> True new_ltEs22(vwx90, vwx92, ty_Integer) -> new_ltEs11(vwx90, vwx92) new_esEs14(vwx3001, vwx4001, ty_Bool) -> new_esEs25(vwx3001, vwx4001) new_compare110(vwx141, vwx142, vwx143, vwx144, vwx145, vwx146, False, vwx148, ebg, ebh, eca) -> new_compare111(vwx141, vwx142, vwx143, vwx144, vwx145, vwx146, vwx148, ebg, ebh, eca) new_ltEs21(vwx54, vwx55, app(ty_[], cac)) -> new_ltEs6(vwx54, vwx55, cac) new_esEs37(vwx89, vwx91, ty_Char) -> new_esEs19(vwx89, vwx91) The set Q consists of the following terms: new_esEs7(x0, x1, ty_Double) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_compare211(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs15(x0, x1, ty_Char) new_esEs38(x0, x1, ty_Float) new_ltEs9(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs33(x0, x1, ty_Double) new_primMulNat0(Zero, Succ(x0)) new_esEs29(x0, x1, ty_Float) new_esEs8(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_lt11(x0, x1, ty_Bool) new_compare8(LT, GT) new_compare8(GT, LT) new_esEs18(Just(x0), Just(x1), ty_Char) new_lt12(x0, x1, ty_Integer) new_esEs12(EQ, EQ) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_esEs39(x0, x1, ty_Bool) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_compare12(x0, x1, x2, x3, False, x4, x5) new_esEs21(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, ty_Float) new_esEs37(x0, x1, ty_Ordering) new_primPlusNat1(Zero, Zero) new_esEs10(x0, x1, ty_Float) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(x0, x1, ty_Char) new_esEs26(Right(x0), Right(x1), x2, ty_Char) new_esEs14(x0, x1, ty_@0) new_ltEs24(x0, x1, ty_Float) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_compare17(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs37(x0, x1, ty_Int) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat0(Zero, x0) new_esEs14(x0, x1, ty_Bool) new_esEs9(x0, x1, ty_Integer) new_esEs15(x0, x1, app(app(ty_Either, x2), x3)) new_lt11(x0, x1, app(ty_[], x2)) new_esEs15(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_compare15(x0, x1, False, x2, x3) new_compare29(Char(x0), Char(x1)) new_esEs28(x0, x1, app(ty_[], x2)) new_lt12(x0, x1, ty_Bool) new_compare0([], [], x0) new_esEs18(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt23(x0, x1, app(ty_[], x2)) new_ltEs17(Just(x0), Just(x1), ty_Bool) new_compare27(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs5(x0, x1, ty_Float) new_compare6(True, False) new_compare6(False, True) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(x0, x1, ty_Ordering) new_ltEs4(x0, x1, ty_Int) new_esEs26(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_compare13(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare13(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs15(x0, x1, ty_Ordering) new_esEs4(x0, x1, ty_Double) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs11(x0, x1, ty_Integer) new_esEs11(x0, x1, ty_Float) new_ltEs12(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs4(x0, x1, ty_Char) new_esEs5(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Double) new_esEs15(x0, x1, ty_Int) new_esEs6(x0, x1, ty_Int) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_lt21(x0, x1, ty_Integer) new_esEs33(x0, x1, ty_Ordering) new_ltEs9(Left(x0), Left(x1), ty_Float, x2) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs7(x0, x1, app(ty_[], x2)) new_esEs6(x0, x1, ty_Ordering) new_esEs15(x0, x1, app(ty_[], x2)) new_esEs26(Right(x0), Right(x1), x2, ty_Bool) new_compare17(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs18(Nothing, Nothing, x0) new_esEs33(x0, x1, ty_Int) new_esEs4(x0, x1, ty_Int) new_esEs31(x0, x1, ty_Ordering) new_lt20(x0, x1, ty_Ordering) new_lt21(x0, x1, ty_@0) new_esEs26(Left(x0), Left(x1), app(ty_[], x2), x3) new_lt18(x0, x1) new_ltEs4(x0, x1, app(ty_[], x2)) new_ltEs17(Just(x0), Just(x1), ty_Int) new_ltEs9(Left(x0), Right(x1), x2, x3) new_ltEs9(Right(x0), Left(x1), x2, x3) new_ltEs16(False, False) new_ltEs9(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_compare25(x0, x1, True, x2) new_esEs14(x0, x1, ty_Int) new_esEs26(Right(x0), Right(x1), x2, ty_Ordering) new_esEs32(x0, x1, ty_@0) new_esEs33(x0, x1, ty_Char) new_esEs15(x0, x1, ty_Double) new_esEs18(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_primPlusNat1(Zero, Succ(x0)) new_ltEs17(Just(x0), Just(x1), ty_Char) new_esEs8(x0, x1, ty_Double) new_esEs15(x0, x1, ty_Bool) new_compare14(:%(x0, x1), :%(x2, x3), ty_Integer) new_esEs8(x0, x1, ty_Int) new_esEs39(x0, x1, ty_Char) new_primMulNat0(Succ(x0), Zero) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt16(x0, x1, x2, x3) new_ltEs23(x0, x1, ty_Ordering) new_ltEs4(x0, x1, ty_@0) new_lt12(x0, x1, app(app(ty_Either, x2), x3)) new_lt6(x0, x1, x2) new_esEs32(x0, x1, ty_Bool) new_lt11(x0, x1, ty_Char) new_ltEs24(x0, x1, ty_Integer) new_esEs7(x0, x1, ty_Char) new_compare30(x0, x1, app(ty_Ratio, x2)) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs14(x0, x1, app(ty_Ratio, x2)) new_compare8(EQ, EQ) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_esEs18(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_lt23(x0, x1, ty_Float) new_primMulInt(Pos(x0), Pos(x1)) new_esEs4(x0, x1, app(ty_[], x2)) new_esEs26(Right(x0), Right(x1), x2, ty_Integer) new_esEs39(x0, x1, ty_Int) new_esEs12(LT, GT) new_esEs12(GT, LT) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs18(Just(x0), Just(x1), ty_Ordering) new_ltEs7(EQ, EQ) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_esEs5(x0, x1, ty_Bool) new_compare6(False, False) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_lt11(x0, x1, ty_Int) new_esEs37(x0, x1, ty_Double) new_asAs(False, x0) new_esEs7(x0, x1, ty_Int) new_ltEs17(Just(x0), Just(x1), ty_@0) new_esEs37(x0, x1, ty_Char) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(x0, x1, app(ty_Ratio, x2)) new_esEs35(x0, x1, ty_Int) new_ltEs13(x0, x1) new_esEs32(x0, x1, ty_Double) new_compare16(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs14(x0, x1, ty_Char) new_esEs14(x0, x1, ty_Double) new_esEs32(x0, x1, ty_Int) new_esEs11(x0, x1, ty_Bool) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_sr0(x0, x1) new_esEs32(x0, x1, ty_Char) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs37(x0, x1, ty_Bool) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs39(x0, x1, ty_@0) new_compare13(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_lt11(x0, x1, ty_@0) new_compare30(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, ty_@0) new_compare8(EQ, GT) new_compare8(GT, EQ) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_lt21(x0, x1, ty_Bool) new_esEs34(x0, x1, ty_Ordering) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_lt12(x0, x1, ty_Int) new_ltEs9(Right(x0), Right(x1), x2, ty_Float) new_lt11(x0, x1, app(app(ty_@2, x2), x3)) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22([], [], x0) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCompAux0(x0, EQ) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs32(x0, x1, ty_Integer) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_ltEs18(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs9(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs15(x0, x1, app(ty_Ratio, x2)) new_compare211(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs7(x0, x1, ty_Bool) new_ltEs22(x0, x1, ty_Double) new_ltEs9(Left(x0), Left(x1), ty_@0, x2) new_lt4(x0, x1) new_esEs38(x0, x1, ty_@0) new_esEs33(x0, x1, ty_Bool) new_esEs29(x0, x1, ty_@0) new_esEs14(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpNat0(Zero, Succ(x0)) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_lt22(x0, x1, ty_Int) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs27(Double(x0, x1), Double(x2, x3)) new_esEs9(x0, x1, ty_Char) new_compare24(x0, x1, False, x2, x3) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs22(:(x0, x1), :(x2, x3), x4) new_compare111(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_compare30(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs8(x0, x1, ty_Char) new_compare19(Left(x0), Left(x1), x2, x3) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_ltEs9(Right(x0), Right(x1), x2, ty_Ordering) new_esEs24(x0, x1) new_lt22(x0, x1, ty_Char) new_lt12(x0, x1, ty_Char) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs12(GT, GT) new_ltEs20(x0, x1, ty_Integer) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_esEs18(Just(x0), Just(x1), ty_Integer) new_ltEs9(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs6(x0, x1, x2) new_compare6(True, True) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_compare30(x0, x1, ty_Integer) new_lt22(x0, x1, ty_Float) new_compare0(:(x0, x1), :(x2, x3), x4) new_esEs36(x0, x1, ty_Int) new_compare14(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs26(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_lt12(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, ty_Integer) new_compare26(x0, x1, True, x2, x3) new_esEs5(x0, x1, ty_@0) new_ltEs17(Just(x0), Just(x1), ty_Double) new_esEs4(x0, x1, ty_Char) new_ltEs22(x0, x1, ty_Ordering) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs15(x0, x1) new_esEs28(x0, x1, ty_Float) new_ltEs14(x0, x1) new_esEs26(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs23(x0, x1, ty_Integer) new_esEs9(x0, x1, app(ty_[], x2)) new_ltEs7(GT, LT) new_ltEs7(LT, GT) new_lt21(x0, x1, ty_Ordering) new_ltEs24(x0, x1, ty_@0) new_lt22(x0, x1, ty_Ordering) new_primPlusNat1(Succ(x0), Zero) new_esEs26(Left(x0), Left(x1), ty_Double, x2) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_ltEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_esEs31(x0, x1, ty_Float) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_ltEs9(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs6(x0, x1, ty_@0) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs25(False, False) new_ltEs16(True, False) new_ltEs16(False, True) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, ty_@0) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_ltEs4(x0, x1, ty_Double) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_lt17(x0, x1) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs17(Nothing, Nothing, x0) new_esEs14(x0, x1, ty_Integer) new_compare110(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_ltEs23(x0, x1, ty_Bool) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_esEs18(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Integer) new_esEs26(Left(x0), Right(x1), x2, x3) new_esEs26(Right(x0), Left(x1), x2, x3) new_fsEs(x0) new_esEs9(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_@0) new_primMulNat0(Succ(x0), Succ(x1)) new_ltEs19(x0, x1, ty_Char) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_ltEs23(x0, x1, ty_Float) new_esEs14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, ty_Bool) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(Integer(x0), Integer(x1)) new_esEs26(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_esEs35(x0, x1, ty_Integer) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_esEs15(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_esEs34(x0, x1, ty_Double) new_lt20(x0, x1, ty_@0) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_esEs18(Just(x0), Just(x1), ty_Bool) new_esEs26(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs26(Right(x0), Right(x1), x2, ty_Double) new_esEs39(x0, x1, ty_Integer) new_asAs(True, x0) new_esEs6(x0, x1, ty_Double) new_ltEs21(x0, x1, ty_Int) new_esEs26(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs5(x0, x1, ty_Ordering) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpNat0(Succ(x0), Succ(x1)) new_lt12(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(x0, x1, ty_Integer) new_esEs31(x0, x1, ty_Int) new_ltEs22(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, ty_Float) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_esEs15(x0, x1, ty_Float) new_esEs30(x0, x1, ty_Float) new_ltEs24(x0, x1, app(ty_[], x2)) new_esEs18(Just(x0), Just(x1), ty_Float) new_esEs4(x0, x1, ty_Bool) new_ltEs23(x0, x1, ty_Int) new_lt12(x0, x1, ty_Float) new_compare112(x0, x1, False, x2) new_esEs19(Char(x0), Char(x1)) new_esEs14(x0, x1, ty_Ordering) new_primPlusNat0(Succ(x0), x1) new_lt23(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_Ordering) new_ltEs19(x0, x1, ty_Bool) new_esEs26(Right(x0), Right(x1), x2, ty_@0) new_primCompAux0(x0, LT) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_ltEs9(Right(x0), Right(x1), x2, ty_Int) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(x0, x1, ty_Integer) new_compare17(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare17(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_lt22(x0, x1, app(ty_[], x2)) new_lt11(x0, x1, ty_Integer) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt10(x0, x1, x2, x3) new_esEs31(x0, x1, ty_Char) new_esEs18(Just(x0), Just(x1), ty_Int) new_ltEs23(x0, x1, ty_Char) new_lt11(x0, x1, ty_Ordering) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_esEs26(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs7(x0, x1, ty_Ordering) new_lt5(x0, x1) new_ltEs21(x0, x1, ty_Float) new_lt11(x0, x1, app(ty_Ratio, x2)) new_lt12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs16(@0, @0) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, app(ty_[], x2)) new_compare210(x0, x1, x2, x3, False, x4, x5) new_lt22(x0, x1, ty_Bool) new_esEs39(x0, x1, ty_Ordering) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_ltEs9(Right(x0), Right(x1), x2, ty_Char) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs34(x0, x1, ty_@0) new_esEs9(x0, x1, ty_Int) new_compare18(Nothing, Just(x0), x1) new_ltEs17(Nothing, Just(x0), x1) new_ltEs23(x0, x1, app(ty_[], x2)) new_ltEs24(x0, x1, ty_Ordering) new_esEs29(x0, x1, ty_Double) new_esEs38(x0, x1, ty_Double) new_esEs33(x0, x1, ty_Float) new_ltEs22(x0, x1, ty_@0) new_compare18(Just(x0), Just(x1), x2) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_esEs38(x0, x1, app(ty_[], x2)) new_ltEs5(x0, x1, x2) new_esEs10(x0, x1, ty_Ordering) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_esEs26(Left(x0), Left(x1), ty_Integer, x2) new_compare9(x0, x1) new_ltEs9(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs26(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs20(x0, x1, ty_Char) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_esEs25(False, True) new_esEs25(True, False) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs17(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs24(x0, x1, ty_Double) new_esEs7(x0, x1, ty_Float) new_esEs38(x0, x1, ty_Ordering) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs9(Left(x0), Left(x1), ty_Double, x2) new_compare30(x0, x1, ty_Char) new_primMulNat0(Zero, Zero) new_compare11(x0, x1, x2, x3, False, x4, x5, x6) new_esEs26(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs21(x0, x1, ty_Char) new_ltEs19(x0, x1, ty_Double) new_compare111(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_ltEs20(x0, x1, app(ty_[], x2)) new_compare7(@0, @0) new_esEs10(x0, x1, ty_Double) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_ltEs9(Right(x0), Right(x1), x2, ty_@0) new_lt20(x0, x1, app(ty_[], x2)) new_ltEs9(Right(x0), Right(x1), x2, ty_Bool) new_esEs28(x0, x1, ty_@0) new_esEs4(x0, x1, ty_Float) new_ltEs22(x0, x1, ty_Bool) new_compare112(x0, x1, True, x2) new_esEs8(x0, x1, ty_Integer) new_ltEs7(LT, LT) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs9(Left(x0), Left(x1), ty_Ordering, x2) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_lt21(x0, x1, app(ty_Ratio, x2)) new_esEs38(x0, x1, ty_Int) new_ltEs19(x0, x1, ty_Ordering) new_esEs30(x0, x1, ty_Char) new_lt13(x0, x1, x2) new_esEs30(x0, x1, ty_@0) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_compare0(:(x0, x1), [], x2) new_compare28(Integer(x0), Integer(x1)) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, ty_Ordering) new_sr(Integer(x0), Integer(x1)) new_ltEs24(x0, x1, ty_Char) new_ltEs17(Just(x0), Nothing, x1) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt22(x0, x1, ty_Integer) new_compare30(x0, x1, ty_@0) new_ltEs9(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_lt11(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, ty_Ordering) new_esEs33(x0, x1, app(ty_[], x2)) new_esEs36(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_compare30(x0, x1, ty_Int) new_lt20(x0, x1, app(ty_Maybe, x2)) new_lt22(x0, x1, ty_@0) new_esEs37(x0, x1, ty_Float) new_ltEs21(x0, x1, ty_Bool) new_compare8(LT, LT) new_esEs8(x0, x1, ty_Float) new_esEs29(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Int) new_ltEs24(x0, x1, ty_Int) new_ltEs19(x0, x1, ty_Int) new_ltEs20(x0, x1, ty_Int) new_compare30(x0, x1, ty_Ordering) new_esEs26(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs39(x0, x1, app(ty_[], x2)) new_ltEs17(Just(x0), Just(x1), app(ty_[], x2)) new_lt9(x0, x1, x2, x3, x4) new_not(True) new_ltEs20(x0, x1, ty_Bool) new_compare110(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_esEs9(x0, x1, ty_Ordering) new_lt12(x0, x1, app(ty_Maybe, x2)) new_ltEs9(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_ltEs22(x0, x1, ty_Char) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_esEs11(x0, x1, ty_Int) new_compare8(GT, GT) new_lt20(x0, x1, ty_Bool) new_compare30(x0, x1, ty_Bool) new_esEs30(x0, x1, ty_Ordering) new_esEs28(x0, x1, ty_Int) new_ltEs20(x0, x1, ty_Ordering) new_lt21(x0, x1, ty_Double) new_ltEs10(x0, x1) new_ltEs20(x0, x1, ty_Double) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_ltEs21(x0, x1, ty_Ordering) new_esEs30(x0, x1, app(ty_[], x2)) new_compare8(LT, EQ) new_compare8(EQ, LT) new_lt15(x0, x1) new_esEs26(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_ltEs4(x0, x1, ty_Float) new_lt12(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, ty_Float) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs26(Left(x0), Left(x1), ty_@0, x2) new_compare19(Right(x0), Right(x1), x2, x3) new_esEs33(x0, x1, ty_Integer) new_ltEs8(x0, x1) new_esEs34(x0, x1, app(ty_[], x2)) new_esEs30(x0, x1, ty_Bool) new_esEs10(x0, x1, ty_Char) new_esEs37(x0, x1, app(ty_[], x2)) new_ltEs9(Right(x0), Right(x1), x2, ty_Integer) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs22(x0, x1, ty_Integer) new_esEs6(x0, x1, ty_Float) new_compare30(x0, x1, ty_Double) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(Left(x0), Left(x1), ty_Float, x2) new_esEs5(x0, x1, ty_Int) new_esEs11(x0, x1, ty_Char) new_esEs11(x0, x1, ty_Double) new_esEs30(x0, x1, ty_Integer) new_compare26(x0, x1, False, x2, x3) new_esEs5(x0, x1, ty_Double) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_lt23(x0, x1, ty_Double) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs34(x0, x1, ty_Integer) new_ltEs21(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Integer) new_lt21(x0, x1, app(ty_Maybe, x2)) new_lt12(x0, x1, ty_Ordering) new_esEs28(x0, x1, ty_Bool) new_lt23(x0, x1, ty_Char) new_lt23(x0, x1, ty_@0) new_esEs5(x0, x1, ty_Char) new_compare18(Nothing, Nothing, x0) new_compare15(x0, x1, True, x2, x3) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_compare10(x0, x1, True, x2, x3) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, ty_Double) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs12(LT, LT) new_compare19(Right(x0), Left(x1), x2, x3) new_compare19(Left(x0), Right(x1), x2, x3) new_ltEs7(EQ, GT) new_ltEs7(GT, EQ) new_esEs14(x0, x1, app(ty_Maybe, x2)) new_pePe(True, x0) new_esEs10(x0, x1, ty_@0) new_primCmpNat0(Succ(x0), Zero) new_esEs18(Nothing, Just(x0), x1) new_esEs8(x0, x1, ty_Bool) new_esEs10(x0, x1, ty_Int) new_esEs28(x0, x1, ty_Char) new_lt23(x0, x1, ty_Int) new_ltEs17(Just(x0), Just(x1), ty_Float) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs20(:%(x0, x1), :%(x2, x3), x4) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_compare12(x0, x1, x2, x3, True, x4, x5) new_esEs39(x0, x1, ty_Float) new_lt21(x0, x1, ty_Char) new_ltEs7(GT, GT) new_lt11(x0, x1, ty_Double) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs17(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs4(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_esEs6(x0, x1, ty_Integer) new_compare210(x0, x1, x2, x3, True, x4, x5) new_ltEs24(x0, x1, ty_Bool) new_esEs39(x0, x1, ty_Double) new_ltEs9(Right(x0), Right(x1), x2, ty_Double) new_esEs29(x0, x1, ty_Bool) new_ltEs7(LT, EQ) new_ltEs7(EQ, LT) new_esEs26(Left(x0), Left(x1), ty_Int, x2) new_primEqNat0(Succ(x0), Zero) new_ltEs19(x0, x1, ty_@0) new_esEs10(x0, x1, ty_Bool) new_esEs33(x0, x1, ty_@0) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_lt11(x0, x1, ty_Float) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_lt21(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_esEs25(True, True) new_primEqNat0(Zero, Succ(x0)) new_esEs34(x0, x1, ty_Char) new_ltEs22(x0, x1, ty_Float) new_lt21(x0, x1, ty_Int) new_esEs31(x0, x1, app(ty_[], x2)) new_esEs14(x0, x1, app(ty_[], x2)) new_primCompAux1(x0, x1, x2, x3) new_compare30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs15(x0, x1, ty_Integer) new_lt23(x0, x1, ty_Integer) new_esEs32(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, ty_Ordering) new_esEs17(Float(x0, x1), Float(x2, x3)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs37(x0, x1, ty_@0) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_compare0([], :(x0, x1), x2) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_lt23(x0, x1, ty_Bool) new_lt12(x0, x1, ty_Double) new_esEs18(Just(x0), Nothing, x1) new_ltEs17(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt7(x0, x1) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs14(x0, x1, ty_Float) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_esEs8(x0, x1, ty_@0) new_esEs4(x0, x1, ty_@0) new_esEs30(x0, x1, ty_Double) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(Left(x0), Left(x1), ty_Char, x2) new_esEs13(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, ty_Char) new_esEs22([], :(x0, x1), x2) new_esEs18(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs22(x0, x1, ty_Int) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs11(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_lt21(x0, x1, ty_Float) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_esEs38(x0, x1, ty_Integer) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs37(x0, x1, ty_Integer) new_ltEs4(x0, x1, ty_Ordering) new_esEs22(:(x0, x1), [], x2) new_esEs15(x0, x1, ty_@0) new_esEs8(x0, x1, ty_Ordering) new_lt19(x0, x1, x2) new_ltEs20(x0, x1, ty_Float) new_esEs28(x0, x1, ty_Integer) new_primEqNat0(Zero, Zero) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_ltEs4(x0, x1, ty_Bool) new_ltEs9(Left(x0), Left(x1), ty_Integer, x2) new_ltEs11(x0, x1) new_not(False) new_esEs9(x0, x1, ty_Double) new_esEs34(x0, x1, ty_Bool) new_esEs29(x0, x1, ty_Char) new_esEs38(x0, x1, ty_Char) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_pePe(False, x0) new_esEs34(x0, x1, ty_Float) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs18(Just(x0), Just(x1), ty_Double) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_esEs18(Just(x0), Just(x1), ty_@0) new_ltEs16(True, True) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, ty_Double) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_ltEs17(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_compare13(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_lt22(x0, x1, app(ty_Maybe, x2)) new_ltEs9(Left(x0), Left(x1), ty_Int, x2) new_esEs26(Right(x0), Right(x1), x2, ty_Int) new_esEs31(x0, x1, ty_@0) new_ltEs9(Left(x0), Left(x1), ty_Char, x2) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_lt20(x0, x1, ty_Int) new_ltEs21(x0, x1, app(ty_[], x2)) new_compare10(x0, x1, False, x2, x3) new_compare30(x0, x1, ty_Float) new_lt11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, ty_Integer) new_ltEs9(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_primEqNat0(Succ(x0), Succ(x1)) new_compare25(x0, x1, False, x2) new_ltEs9(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs23(x0, x1, ty_@0) new_esEs26(Left(x0), Left(x1), ty_Bool, x2) new_lt8(x0, x1) new_esEs10(x0, x1, ty_Integer) new_lt22(x0, x1, ty_Double) new_ltEs19(x0, x1, app(ty_[], x2)) new_ltEs9(Right(x0), Right(x1), x2, app(ty_[], x3)) new_compare18(Just(x0), Nothing, x1) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs34(x0, x1, ty_Int) new_lt11(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, ty_@0) new_compare30(x0, x1, app(ty_[], x2)) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_lt23(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, app(ty_Ratio, x2)) new_esEs6(x0, x1, ty_Bool) new_esEs15(x0, x1, app(app(ty_@2, x2), x3)) new_compare11(x0, x1, x2, x3, True, x4, x5, x6) new_ltEs4(x0, x1, ty_Integer) new_ltEs17(Just(x0), Just(x1), ty_Ordering) new_esEs18(Just(x0), Just(x1), app(ty_[], x2)) new_esEs14(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(Right(x0), Right(x1), x2, ty_Float) new_ltEs4(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_esEs9(x0, x1, ty_@0) new_lt23(x0, x1, ty_Ordering) new_ltEs17(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_lt14(x0, x1) new_esEs31(x0, x1, ty_Double) new_lt12(x0, x1, ty_@0) new_ltEs23(x0, x1, ty_Double) new_ltEs9(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_primCompAux0(x0, GT) new_lt20(x0, x1, ty_Float) new_compare24(x0, x1, True, x2, x3) new_ltEs17(Just(x0), Just(x1), ty_Integer) new_primCmpNat0(Zero, Zero) new_compare30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs38(x0, x1, ty_Bool) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs9(Left(x0), Left(x1), ty_Bool, x2) new_primMulInt(Neg(x0), Neg(x1)) 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_ltEs1(@3(vwx250, vwx251, vwx252), @3(vwx260, vwx261, vwx262), ge, fb, app(app(app(ty_@3, bab), bac), bad)) -> new_ltEs1(vwx252, vwx262, bab, bac, bad) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_compare22(vwx54, vwx55, False, app(app(app(ty_@3, caf), cag), cah)) -> new_ltEs1(vwx54, vwx55, caf, cag, cah) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 *new_compare(:(vwx30, vwx31), :(vwx40, vwx41), ca) -> new_primCompAux(vwx30, vwx40, new_compare0(vwx31, vwx41, ca), ca) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_ltEs1(@3(vwx250, vwx251, vwx252), @3(vwx260, vwx261, vwx262), ge, fb, app(app(ty_Either, hh), baa)) -> new_ltEs0(vwx252, vwx262, hh, baa) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs2(Just(vwx250), Just(vwx260), app(app(app(ty_@3, bbc), bbd), bbe)) -> new_ltEs1(vwx250, vwx260, bbc, bbd, bbe) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_compare22(vwx54, vwx55, False, app(app(ty_Either, cad), cae)) -> new_ltEs0(vwx54, vwx55, cad, cae) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_ltEs2(Just(vwx250), Just(vwx260), app(app(ty_Either, bba), bbb)) -> new_ltEs0(vwx250, vwx260, bba, bbb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs1(@3(vwx250, vwx251, vwx252), @3(vwx260, vwx261, vwx262), ge, fb, app(ty_[], hg)) -> new_ltEs(vwx252, vwx262, hg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare22(vwx54, vwx55, False, app(ty_[], cac)) -> new_ltEs(vwx54, vwx55, cac) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_ltEs2(Just(vwx250), Just(vwx260), app(ty_[], bah)) -> new_ltEs(vwx250, vwx260, bah) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_compare(:(vwx30, vwx31), :(vwx40, vwx41), ca) -> new_compare(vwx31, vwx41, ca) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_lt2(vwx76, vwx79, bhh) -> new_compare4(vwx76, vwx79, bhh) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_ltEs3(@2(vwx250, vwx251), @2(vwx260, vwx261), bdc, app(app(app(ty_@3, bdg), bdh), bea)) -> new_ltEs1(vwx251, vwx261, bdg, bdh, bea) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs3(@2(vwx250, vwx251), @2(vwx260, vwx261), bdc, app(app(ty_Either, bde), bdf)) -> new_ltEs0(vwx251, vwx261, bde, bdf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs3(@2(vwx250, vwx251), @2(vwx260, vwx261), bdc, app(ty_[], bdd)) -> new_ltEs(vwx251, vwx261, bdd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(vwx32, vwx33, False, cdh, app(app(app(ty_@3, ced), cee), cef)) -> new_ltEs1(vwx32, vwx33, ced, cee, cef) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4, 5 > 5 *new_compare20(vwx32, vwx33, False, cdh, app(app(ty_Either, ceb), cec)) -> new_ltEs0(vwx32, vwx33, ceb, cec) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4 *new_compare20(vwx32, vwx33, False, cdh, app(ty_[], cea)) -> new_ltEs(vwx32, vwx33, cea) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3 *new_lt(vwx76, vwx79, bee) -> new_compare(vwx76, vwx79, bee) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_lt0(vwx76, vwx79, bef, beg) -> new_compare1(vwx76, vwx79, bef, beg) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4 *new_compare21(vwx76, vwx77, vwx78, vwx79, vwx80, vwx81, False, app(app(ty_Either, bef), beg), bgf, bfe) -> new_compare1(vwx76, vwx79, bef, beg) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4 *new_lt1(vwx76, vwx79, beh, bfa, bfb) -> new_compare3(vwx76, vwx79, beh, bfa, bfb) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5 *new_ltEs(vwx25, vwx26, cb) -> new_compare(vwx25, vwx26, cb) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_ltEs1(@3(vwx250, vwx251, vwx252), @3(vwx260, vwx261, vwx262), ge, fb, app(app(ty_@2, baf), bag)) -> new_ltEs3(vwx252, vwx262, baf, bag) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare22(vwx54, vwx55, False, app(app(ty_@2, cbb), cbc)) -> new_ltEs3(vwx54, vwx55, cbb, cbc) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_compare22(vwx54, vwx55, False, app(ty_Maybe, cba)) -> new_ltEs2(vwx54, vwx55, cba) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_ltEs2(Just(vwx250), Just(vwx260), app(app(ty_@2, bbg), bbh)) -> new_ltEs3(vwx250, vwx260, bbg, bbh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs2(Just(vwx250), Just(vwx260), app(ty_Maybe, bbf)) -> new_ltEs2(vwx250, vwx260, bbf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs3(@2(vwx250, vwx251), @2(vwx260, vwx261), bdc, app(app(ty_@2, bec), bed)) -> new_ltEs3(vwx251, vwx261, bec, bed) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(vwx32, vwx33, False, cdh, app(app(ty_@2, ceh), cfa)) -> new_ltEs3(vwx32, vwx33, ceh, cfa) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4 *new_compare20(vwx32, vwx33, False, cdh, app(ty_Maybe, ceg)) -> new_ltEs2(vwx32, vwx33, ceg) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3 *new_lt3(vwx76, vwx79, caa, cab) -> new_compare5(vwx76, vwx79, caa, cab) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4 *new_compare5(@2(vwx300, vwx301), @2(vwx400, vwx401), bg, bh) -> new_compare23(vwx300, vwx301, vwx400, vwx401, new_asAs(new_esEs11(vwx300, vwx400, bg), new_esEs10(vwx301, vwx401, bh)), bg, bh) 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), vwx15, app(app(ty_@2, bg), bh)) -> new_compare23(vwx300, vwx301, vwx400, vwx401, new_asAs(new_esEs11(vwx300, vwx400, bg), new_esEs10(vwx301, vwx401, bh)), bg, bh) The graph contains the following edges 1 > 1, 1 > 2, 2 > 3, 2 > 4, 4 > 6, 4 > 7 *new_ltEs3(@2(vwx250, vwx251), @2(vwx260, vwx261), app(app(ty_@2, bda), bdb), bcb) -> new_lt3(vwx250, vwx260, bda, bdb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs1(@3(vwx250, vwx251, vwx252), @3(vwx260, vwx261, vwx262), ge, fb, app(ty_Maybe, bae)) -> new_ltEs2(vwx252, vwx262, bae) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_ltEs3(@2(vwx250, vwx251), @2(vwx260, vwx261), bdc, app(ty_Maybe, beb)) -> new_ltEs2(vwx251, vwx261, beb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(vwx76, vwx77, vwx78, vwx79, vwx80, vwx81, False, bfc, bgf, app(app(app(ty_@3, bhb), bhc), bhd)) -> new_ltEs1(vwx78, vwx81, bhb, bhc, bhd) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4, 10 > 5 *new_compare23(vwx89, vwx90, vwx91, vwx92, False, cbd, app(app(app(ty_@3, cbh), cca), ccb)) -> new_ltEs1(vwx90, vwx92, cbh, cca, ccb) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4, 7 > 5 *new_compare21(vwx76, vwx77, vwx78, vwx79, vwx80, vwx81, False, bfc, bgf, app(app(ty_Either, bgh), bha)) -> new_ltEs0(vwx78, vwx81, bgh, bha) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4 *new_compare23(vwx89, vwx90, vwx91, vwx92, False, cbd, app(app(ty_Either, cbf), cbg)) -> new_ltEs0(vwx90, vwx92, cbf, cbg) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4 *new_compare21(vwx76, vwx77, vwx78, vwx79, vwx80, vwx81, False, bfc, bgf, app(ty_[], bgg)) -> new_ltEs(vwx78, vwx81, bgg) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3 *new_compare23(vwx89, vwx90, vwx91, vwx92, False, cbd, app(ty_[], cbe)) -> new_ltEs(vwx90, vwx92, cbe) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3 *new_compare21(vwx76, vwx77, vwx78, vwx79, vwx80, vwx81, False, bfc, bgf, app(app(ty_@2, bhf), bhg)) -> new_ltEs3(vwx78, vwx81, bhf, bhg) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4 *new_compare23(vwx89, vwx90, vwx91, vwx92, False, cbd, app(app(ty_@2, ccd), cce)) -> new_ltEs3(vwx90, vwx92, ccd, cce) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4 *new_compare21(vwx76, vwx77, vwx78, vwx79, vwx80, vwx81, False, bfc, app(app(ty_@2, bgd), bge), bfe) -> new_lt3(vwx77, vwx80, bgd, bge) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4 *new_compare23(vwx89, vwx90, vwx91, vwx92, False, app(app(ty_@2, cdf), cdg), ccg) -> new_lt3(vwx89, vwx91, cdf, cdg) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4 *new_compare21(vwx76, vwx77, vwx78, vwx79, vwx80, vwx81, False, bfc, bgf, app(ty_Maybe, bhe)) -> new_ltEs2(vwx78, vwx81, bhe) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3 *new_compare23(vwx89, vwx90, vwx91, vwx92, False, cbd, app(ty_Maybe, ccc)) -> new_ltEs2(vwx90, vwx92, ccc) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3 *new_ltEs3(@2(vwx250, vwx251), @2(vwx260, vwx261), app(app(app(ty_@3, bce), bcf), bcg), bcb) -> new_lt1(vwx250, vwx260, bce, bcf, bcg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_compare3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bc, bd, be) -> new_compare21(vwx300, vwx301, vwx302, vwx400, vwx401, vwx402, new_asAs(new_esEs8(vwx300, vwx400, bc), new_asAs(new_esEs7(vwx301, vwx401, bd), new_esEs6(vwx302, vwx402, be))), bc, bd, be) 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), vwx15, app(app(app(ty_@3, bc), bd), be)) -> new_compare21(vwx300, vwx301, vwx302, vwx400, vwx401, vwx402, new_asAs(new_esEs8(vwx300, vwx400, bc), new_asAs(new_esEs7(vwx301, vwx401, bd), new_esEs6(vwx302, vwx402, be))), bc, bd, be) 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_compare21(vwx76, vwx77, vwx78, vwx79, vwx80, vwx81, False, bfc, app(app(app(ty_@3, bfh), bga), bgb), bfe) -> new_lt1(vwx77, vwx80, bfh, bga, bgb) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4, 9 > 5 *new_compare23(vwx89, vwx90, vwx91, vwx92, False, app(app(app(ty_@3, cdb), cdc), cdd), ccg) -> new_lt1(vwx89, vwx91, cdb, cdc, cdd) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4, 6 > 5 *new_primCompAux(vwx30, vwx40, vwx15, app(ty_[], h)) -> new_compare(vwx30, vwx40, h) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_compare1(Left(vwx300), Left(vwx400), ba, bb) -> new_compare2(vwx300, vwx400, new_esEs4(vwx300, vwx400, ba), ba, bb) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 *new_primCompAux(Left(vwx300), Left(vwx400), vwx15, app(app(ty_Either, ba), bb)) -> new_compare2(vwx300, vwx400, new_esEs4(vwx300, vwx400, ba), ba, bb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 *new_ltEs3(@2(vwx250, vwx251), @2(vwx260, vwx261), app(app(ty_Either, bcc), bcd), bcb) -> new_lt0(vwx250, vwx260, bcc, bcd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_compare1(Right(vwx300), Right(vwx400), ba, bb) -> new_compare20(vwx300, vwx400, new_esEs5(vwx300, vwx400, bb), ba, bb) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 *new_primCompAux(Right(vwx300), Right(vwx400), vwx15, app(app(ty_Either, ba), bb)) -> new_compare20(vwx300, vwx400, new_esEs5(vwx300, vwx400, bb), ba, bb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 *new_compare21(vwx76, vwx77, vwx78, vwx79, vwx80, vwx81, False, bfc, app(app(ty_Either, bff), bfg), bfe) -> new_lt0(vwx77, vwx80, bff, bfg) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4 *new_compare23(vwx89, vwx90, vwx91, vwx92, False, app(app(ty_Either, cch), cda), ccg) -> new_lt0(vwx89, vwx91, cch, cda) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4 *new_ltEs3(@2(vwx250, vwx251), @2(vwx260, vwx261), app(ty_[], bca), bcb) -> new_lt(vwx250, vwx260, bca) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs3(@2(vwx250, vwx251), @2(vwx260, vwx261), app(ty_Maybe, bch), bcb) -> new_lt2(vwx250, vwx260, bch) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_compare21(vwx76, vwx77, vwx78, vwx79, vwx80, vwx81, False, bfc, app(ty_[], bfd), bfe) -> new_lt(vwx77, vwx80, bfd) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3 *new_compare23(vwx89, vwx90, vwx91, vwx92, False, app(ty_[], ccf), ccg) -> new_lt(vwx89, vwx91, ccf) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3 *new_compare23(vwx89, vwx90, vwx91, vwx92, False, app(ty_Maybe, cde), ccg) -> new_lt2(vwx89, vwx91, cde) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3 *new_compare21(vwx76, vwx77, vwx78, vwx79, vwx80, vwx81, False, app(app(app(ty_@3, beh), bfa), bfb), bgf, bfe) -> new_compare3(vwx76, vwx79, beh, bfa, bfb) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4, 8 > 5 *new_compare4(Just(vwx300), Just(vwx400), bf) -> new_compare22(vwx300, vwx400, new_esEs9(vwx300, vwx400, bf), bf) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_primCompAux(Just(vwx300), Just(vwx400), vwx15, app(ty_Maybe, bf)) -> new_compare22(vwx300, vwx400, new_esEs9(vwx300, vwx400, bf), bf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 *new_compare2(vwx25, vwx26, False, app(ty_[], cb), cc) -> new_compare(vwx25, vwx26, cb) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_compare21(vwx76, vwx77, vwx78, vwx79, vwx80, vwx81, False, app(ty_[], bee), bgf, bfe) -> new_compare(vwx76, vwx79, bee) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3 *new_compare21(vwx76, vwx77, vwx78, vwx79, vwx80, vwx81, False, bfc, app(ty_Maybe, bgc), bfe) -> new_lt2(vwx77, vwx80, bgc) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3 *new_compare21(vwx76, vwx77, vwx78, vwx79, vwx80, vwx81, False, app(app(ty_@2, caa), cab), bgf, bfe) -> new_compare5(vwx76, vwx79, caa, cab) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4 *new_compare21(vwx76, vwx77, vwx78, vwx79, vwx80, vwx81, False, app(ty_Maybe, bhh), bgf, bfe) -> new_compare4(vwx76, vwx79, bhh) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3 *new_ltEs1(@3(vwx250, vwx251, vwx252), @3(vwx260, vwx261, vwx262), ge, app(app(ty_@2, he), hf), fc) -> new_lt3(vwx251, vwx261, he, hf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs1(@3(vwx250, vwx251, vwx252), @3(vwx260, vwx261, vwx262), app(app(ty_@2, gc), gd), fb, fc) -> new_lt3(vwx250, vwx260, gc, gd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs1(@3(vwx250, vwx251, vwx252), @3(vwx260, vwx261, vwx262), ge, app(app(app(ty_@3, ha), hb), hc), fc) -> new_lt1(vwx251, vwx261, ha, hb, hc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs1(@3(vwx250, vwx251, vwx252), @3(vwx260, vwx261, vwx262), app(app(app(ty_@3, fg), fh), ga), fb, fc) -> new_lt1(vwx250, vwx260, fg, fh, ga) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs1(@3(vwx250, vwx251, vwx252), @3(vwx260, vwx261, vwx262), app(app(ty_Either, fd), ff), fb, fc) -> new_lt0(vwx250, vwx260, fd, ff) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs1(@3(vwx250, vwx251, vwx252), @3(vwx260, vwx261, vwx262), ge, app(app(ty_Either, gg), gh), fc) -> new_lt0(vwx251, vwx261, gg, gh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs1(@3(vwx250, vwx251, vwx252), @3(vwx260, vwx261, vwx262), ge, app(ty_[], gf), fc) -> new_lt(vwx251, vwx261, gf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs1(@3(vwx250, vwx251, vwx252), @3(vwx260, vwx261, vwx262), app(ty_[], fa), fb, fc) -> new_lt(vwx250, vwx260, fa) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs1(@3(vwx250, vwx251, vwx252), @3(vwx260, vwx261, vwx262), ge, app(ty_Maybe, hd), fc) -> new_lt2(vwx251, vwx261, hd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs1(@3(vwx250, vwx251, vwx252), @3(vwx260, vwx261, vwx262), app(ty_Maybe, gb), fb, fc) -> new_lt2(vwx250, vwx260, gb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs0(Right(vwx250), Right(vwx260), dg, app(app(app(ty_@3, ec), ed), ee)) -> new_ltEs1(vwx250, vwx260, ec, ed, ee) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs0(Left(vwx250), Left(vwx260), app(app(app(ty_@3, da), db), dc), ce) -> new_ltEs1(vwx250, vwx260, da, db, dc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs0(Right(vwx250), Right(vwx260), dg, app(app(ty_Either, ea), eb)) -> new_ltEs0(vwx250, vwx260, ea, eb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs0(Left(vwx250), Left(vwx260), app(app(ty_Either, cf), cg), ce) -> new_ltEs0(vwx250, vwx260, cf, cg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs0(Right(vwx250), Right(vwx260), dg, app(ty_[], dh)) -> new_ltEs(vwx250, vwx260, dh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs0(Left(vwx250), Left(vwx260), app(ty_[], cd), ce) -> new_ltEs(vwx250, vwx260, cd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs0(Left(vwx250), Left(vwx260), app(app(ty_@2, de), df), ce) -> new_ltEs3(vwx250, vwx260, de, df) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs0(Right(vwx250), Right(vwx260), dg, app(app(ty_@2, eg), eh)) -> new_ltEs3(vwx250, vwx260, eg, eh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs0(Left(vwx250), Left(vwx260), app(ty_Maybe, dd), ce) -> new_ltEs2(vwx250, vwx260, dd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs0(Right(vwx250), Right(vwx260), dg, app(ty_Maybe, ef)) -> new_ltEs2(vwx250, vwx260, ef) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(@3(vwx250, vwx251, vwx252), @3(vwx260, vwx261, vwx262), False, app(app(app(ty_@3, ge), fb), app(app(app(ty_@3, bab), bac), bad)), cc) -> new_ltEs1(vwx252, vwx262, bab, bac, bad) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare2(@2(vwx250, vwx251), @2(vwx260, vwx261), False, app(app(ty_@2, bdc), app(app(app(ty_@3, bdg), bdh), bea)), cc) -> new_ltEs1(vwx251, vwx261, bdg, bdh, bea) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare2(Just(vwx250), Just(vwx260), False, app(ty_Maybe, app(app(app(ty_@3, bbc), bbd), bbe)), cc) -> new_ltEs1(vwx250, vwx260, bbc, bbd, bbe) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare2(Right(vwx250), Right(vwx260), False, app(app(ty_Either, dg), app(app(app(ty_@3, ec), ed), ee)), cc) -> new_ltEs1(vwx250, vwx260, ec, ed, ee) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare2(Left(vwx250), Left(vwx260), False, app(app(ty_Either, app(app(app(ty_@3, da), db), dc)), ce), cc) -> new_ltEs1(vwx250, vwx260, da, db, dc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare2(Just(vwx250), Just(vwx260), False, app(ty_Maybe, app(app(ty_Either, bba), bbb)), cc) -> new_ltEs0(vwx250, vwx260, bba, bbb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(@2(vwx250, vwx251), @2(vwx260, vwx261), False, app(app(ty_@2, bdc), app(app(ty_Either, bde), bdf)), cc) -> new_ltEs0(vwx251, vwx261, bde, bdf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(@3(vwx250, vwx251, vwx252), @3(vwx260, vwx261, vwx262), False, app(app(app(ty_@3, ge), fb), app(app(ty_Either, hh), baa)), cc) -> new_ltEs0(vwx252, vwx262, hh, baa) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(Right(vwx250), Right(vwx260), False, app(app(ty_Either, dg), app(app(ty_Either, ea), eb)), cc) -> new_ltEs0(vwx250, vwx260, ea, eb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(Left(vwx250), Left(vwx260), False, app(app(ty_Either, app(app(ty_Either, cf), cg)), ce), cc) -> new_ltEs0(vwx250, vwx260, cf, cg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(@2(vwx250, vwx251), @2(vwx260, vwx261), False, app(app(ty_@2, bdc), app(ty_[], bdd)), cc) -> new_ltEs(vwx251, vwx261, bdd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(@3(vwx250, vwx251, vwx252), @3(vwx260, vwx261, vwx262), False, app(app(app(ty_@3, ge), fb), app(ty_[], hg)), cc) -> new_ltEs(vwx252, vwx262, hg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(Right(vwx250), Right(vwx260), False, app(app(ty_Either, dg), app(ty_[], dh)), cc) -> new_ltEs(vwx250, vwx260, dh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(Left(vwx250), Left(vwx260), False, app(app(ty_Either, app(ty_[], cd)), ce), cc) -> new_ltEs(vwx250, vwx260, cd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(Just(vwx250), Just(vwx260), False, app(ty_Maybe, app(ty_[], bah)), cc) -> new_ltEs(vwx250, vwx260, bah) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(@3(vwx250, vwx251, vwx252), @3(vwx260, vwx261, vwx262), False, app(app(app(ty_@3, ge), fb), app(app(ty_@2, baf), bag)), cc) -> new_ltEs3(vwx252, vwx262, baf, bag) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(Just(vwx250), Just(vwx260), False, app(ty_Maybe, app(app(ty_@2, bbg), bbh)), cc) -> new_ltEs3(vwx250, vwx260, bbg, bbh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(Left(vwx250), Left(vwx260), False, app(app(ty_Either, app(app(ty_@2, de), df)), ce), cc) -> new_ltEs3(vwx250, vwx260, de, df) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(@2(vwx250, vwx251), @2(vwx260, vwx261), False, app(app(ty_@2, bdc), app(app(ty_@2, bec), bed)), cc) -> new_ltEs3(vwx251, vwx261, bec, bed) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(Right(vwx250), Right(vwx260), False, app(app(ty_Either, dg), app(app(ty_@2, eg), eh)), cc) -> new_ltEs3(vwx250, vwx260, eg, eh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(@3(vwx250, vwx251, vwx252), @3(vwx260, vwx261, vwx262), False, app(app(app(ty_@3, app(app(ty_@2, gc), gd)), fb), fc), cc) -> new_lt3(vwx250, vwx260, gc, gd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(@3(vwx250, vwx251, vwx252), @3(vwx260, vwx261, vwx262), False, app(app(app(ty_@3, ge), app(app(ty_@2, he), hf)), fc), cc) -> new_lt3(vwx251, vwx261, he, hf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(@2(vwx250, vwx251), @2(vwx260, vwx261), False, app(app(ty_@2, app(app(ty_@2, bda), bdb)), bcb), cc) -> new_lt3(vwx250, vwx260, bda, bdb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(Right(vwx250), Right(vwx260), False, app(app(ty_Either, dg), app(ty_Maybe, ef)), cc) -> new_ltEs2(vwx250, vwx260, ef) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(Just(vwx250), Just(vwx260), False, app(ty_Maybe, app(ty_Maybe, bbf)), cc) -> new_ltEs2(vwx250, vwx260, bbf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(@3(vwx250, vwx251, vwx252), @3(vwx260, vwx261, vwx262), False, app(app(app(ty_@3, ge), fb), app(ty_Maybe, bae)), cc) -> new_ltEs2(vwx252, vwx262, bae) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(@2(vwx250, vwx251), @2(vwx260, vwx261), False, app(app(ty_@2, bdc), app(ty_Maybe, beb)), cc) -> new_ltEs2(vwx251, vwx261, beb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(Left(vwx250), Left(vwx260), False, app(app(ty_Either, app(ty_Maybe, dd)), ce), cc) -> new_ltEs2(vwx250, vwx260, dd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(@3(vwx250, vwx251, vwx252), @3(vwx260, vwx261, vwx262), False, app(app(app(ty_@3, ge), app(app(app(ty_@3, ha), hb), hc)), fc), cc) -> new_lt1(vwx251, vwx261, ha, hb, hc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare2(@2(vwx250, vwx251), @2(vwx260, vwx261), False, app(app(ty_@2, app(app(app(ty_@3, bce), bcf), bcg)), bcb), cc) -> new_lt1(vwx250, vwx260, bce, bcf, bcg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare2(@3(vwx250, vwx251, vwx252), @3(vwx260, vwx261, vwx262), False, app(app(app(ty_@3, app(app(app(ty_@3, fg), fh), ga)), fb), fc), cc) -> new_lt1(vwx250, vwx260, fg, fh, ga) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare2(@3(vwx250, vwx251, vwx252), @3(vwx260, vwx261, vwx262), False, app(app(app(ty_@3, app(app(ty_Either, fd), ff)), fb), fc), cc) -> new_lt0(vwx250, vwx260, fd, ff) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(@2(vwx250, vwx251), @2(vwx260, vwx261), False, app(app(ty_@2, app(app(ty_Either, bcc), bcd)), bcb), cc) -> new_lt0(vwx250, vwx260, bcc, bcd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(@3(vwx250, vwx251, vwx252), @3(vwx260, vwx261, vwx262), False, app(app(app(ty_@3, ge), app(app(ty_Either, gg), gh)), fc), cc) -> new_lt0(vwx251, vwx261, gg, gh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(@2(vwx250, vwx251), @2(vwx260, vwx261), False, app(app(ty_@2, app(ty_[], bca)), bcb), cc) -> new_lt(vwx250, vwx260, bca) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(@3(vwx250, vwx251, vwx252), @3(vwx260, vwx261, vwx262), False, app(app(app(ty_@3, app(ty_[], fa)), fb), fc), cc) -> new_lt(vwx250, vwx260, fa) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(@3(vwx250, vwx251, vwx252), @3(vwx260, vwx261, vwx262), False, app(app(app(ty_@3, ge), app(ty_[], gf)), fc), cc) -> new_lt(vwx251, vwx261, gf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(@2(vwx250, vwx251), @2(vwx260, vwx261), False, app(app(ty_@2, app(ty_Maybe, bch)), bcb), cc) -> new_lt2(vwx250, vwx260, bch) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(@3(vwx250, vwx251, vwx252), @3(vwx260, vwx261, vwx262), False, app(app(app(ty_@3, ge), app(ty_Maybe, hd)), fc), cc) -> new_lt2(vwx251, vwx261, hd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(@3(vwx250, vwx251, vwx252), @3(vwx260, vwx261, vwx262), False, app(app(app(ty_@3, app(ty_Maybe, gb)), fb), fc), cc) -> new_lt2(vwx250, vwx260, gb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 ---------------------------------------- (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(vwx16900), Succ(vwx301000)) -> new_primPlusNat(vwx16900, vwx301000) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (31) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_primPlusNat(Succ(vwx16900), Succ(vwx301000)) -> new_primPlusNat(vwx16900, vwx301000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (32) YES