/export/starexec/sandbox/solver/bin/starexec_run_standard /export/starexec/sandbox/benchmark/theBenchmark.hs /export/starexec/sandbox/output/output_files -------------------------------------------------------------------------------- YES proof of /export/starexec/sandbox/benchmark/theBenchmark.hs # AProVE Commit ID: 794c25de1cacf0d048858bcd21c9a779e1221865 marcel 20200619 unpublished dirty H-Termination with start terms of the given HASKELL could be proven: (0) HASKELL (1) CR [EQUIVALENT, 0 ms] (2) HASKELL (3) IFR [EQUIVALENT, 0 ms] (4) HASKELL (5) BR [EQUIVALENT, 0 ms] (6) HASKELL (7) COR [EQUIVALENT, 8 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, 35 ms] (20) YES (21) QDP (22) QDPSizeChangeProof [EQUIVALENT, 0 ms] (23) YES (24) QDP (25) QDPSizeChangeProof [EQUIVALENT, 3 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; " "compare0 x y True = GT; " "compare2 x y True = EQ; compare2 x y False = compare1 x y (x <= y); " "compare3 x y = compare2 x y (x == y); " ---------------------------------------- (8) Obligation: mainModule Main module 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' x zx = gcd0Gcd'2 x zx; gcd0Gcd' x y = gcd0Gcd'0 x y; " "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); " The bindings of the following Let/Where expression "reduce1 x y (y == 0) where { d = gcd x y; ; reduce0 x y True = x `quot` d :% (y `quot` d); ; reduce1 x y True = error []; reduce1 x y False = reduce0 x y otherwise; } " are unpacked to the following functions on top level "reduce2D vwv vww = gcd vwv vww; " "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); " ---------------------------------------- (10) Obligation: mainModule Main module Main where { import qualified Prelude; } ---------------------------------------- (11) NumRed (SOUND) Num Reduction:All numbers are transformed to their corresponding representation with Succ, Pred and Zero. ---------------------------------------- (12) Obligation: mainModule Main module Main where { import qualified Prelude; } ---------------------------------------- (13) Narrow (SOUND) Haskell To QDPs digraph dp_graph { node [outthreshold=100, inthreshold=100];1[label="(>)",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 3[label="(>) vwx3",fontsize=16,color="grey",shape="box"];3 -> 4[label="",style="dashed", color="grey", weight=3]; 4[label="(>) vwx3 vwx4",fontsize=16,color="black",shape="triangle"];4 -> 5[label="",style="solid", color="black", weight=3]; 5[label="compare vwx3 vwx4 == GT",fontsize=16,color="black",shape="box"];5 -> 6[label="",style="solid", color="black", weight=3]; 6[label="compare3 vwx3 vwx4 == GT",fontsize=16,color="black",shape="box"];6 -> 7[label="",style="solid", color="black", weight=3]; 7[label="compare2 vwx3 vwx4 (vwx3 == vwx4) == GT",fontsize=16,color="burlywood",shape="box"];2152[label="vwx3/(vwx30,vwx31)",fontsize=10,color="white",style="solid",shape="box"];7 -> 2152[label="",style="solid", color="burlywood", weight=9]; 2152 -> 8[label="",style="solid", color="burlywood", weight=3]; 8[label="compare2 (vwx30,vwx31) vwx4 ((vwx30,vwx31) == vwx4) == GT",fontsize=16,color="burlywood",shape="box"];2153[label="vwx4/(vwx40,vwx41)",fontsize=10,color="white",style="solid",shape="box"];8 -> 2153[label="",style="solid", color="burlywood", weight=9]; 2153 -> 9[label="",style="solid", color="burlywood", weight=3]; 9[label="compare2 (vwx30,vwx31) (vwx40,vwx41) ((vwx30,vwx31) == (vwx40,vwx41)) == GT",fontsize=16,color="black",shape="box"];9 -> 10[label="",style="solid", color="black", weight=3]; 10 -> 11[label="",style="dashed", color="red", weight=0]; 10[label="compare2 (vwx30,vwx31) (vwx40,vwx41) (vwx30 == vwx40 && vwx31 == vwx41) == GT",fontsize=16,color="magenta"];10 -> 12[label="",style="dashed", color="magenta", weight=3]; 10 -> 13[label="",style="dashed", color="magenta", weight=3]; 10 -> 14[label="",style="dashed", color="magenta", weight=3]; 10 -> 15[label="",style="dashed", color="magenta", weight=3]; 10 -> 16[label="",style="dashed", color="magenta", weight=3]; 12[label="vwx40",fontsize=16,color="green",shape="box"];13[label="vwx31",fontsize=16,color="green",shape="box"];14[label="vwx30",fontsize=16,color="green",shape="box"];15[label="vwx30 == vwx40",fontsize=16,color="blue",shape="box"];2154[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];15 -> 2154[label="",style="solid", color="blue", weight=9]; 2154 -> 17[label="",style="solid", color="blue", weight=3]; 2155[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];15 -> 2155[label="",style="solid", color="blue", weight=9]; 2155 -> 18[label="",style="solid", color="blue", weight=3]; 2156[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];15 -> 2156[label="",style="solid", color="blue", weight=9]; 2156 -> 19[label="",style="solid", color="blue", weight=3]; 2157[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];15 -> 2157[label="",style="solid", color="blue", weight=9]; 2157 -> 20[label="",style="solid", color="blue", weight=3]; 2158[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];15 -> 2158[label="",style="solid", color="blue", weight=9]; 2158 -> 21[label="",style="solid", color="blue", weight=3]; 2159[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];15 -> 2159[label="",style="solid", color="blue", weight=9]; 2159 -> 22[label="",style="solid", color="blue", weight=3]; 2160[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];15 -> 2160[label="",style="solid", color="blue", weight=9]; 2160 -> 23[label="",style="solid", color="blue", weight=3]; 2161[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];15 -> 2161[label="",style="solid", color="blue", weight=9]; 2161 -> 24[label="",style="solid", color="blue", weight=3]; 2162[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];15 -> 2162[label="",style="solid", color="blue", weight=9]; 2162 -> 25[label="",style="solid", color="blue", weight=3]; 2163[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];15 -> 2163[label="",style="solid", color="blue", weight=9]; 2163 -> 26[label="",style="solid", color="blue", weight=3]; 2164[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];15 -> 2164[label="",style="solid", color="blue", weight=9]; 2164 -> 27[label="",style="solid", color="blue", weight=3]; 2165[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];15 -> 2165[label="",style="solid", color="blue", weight=9]; 2165 -> 28[label="",style="solid", color="blue", weight=3]; 2166[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];15 -> 2166[label="",style="solid", color="blue", weight=9]; 2166 -> 29[label="",style="solid", color="blue", weight=3]; 2167[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];15 -> 2167[label="",style="solid", color="blue", weight=9]; 2167 -> 30[label="",style="solid", color="blue", weight=3]; 16[label="vwx41",fontsize=16,color="green",shape="box"];11[label="compare2 (vwx11,vwx12) (vwx13,vwx14) (vwx15 && vwx12 == vwx14) == GT",fontsize=16,color="burlywood",shape="triangle"];2168[label="vwx15/False",fontsize=10,color="white",style="solid",shape="box"];11 -> 2168[label="",style="solid", color="burlywood", weight=9]; 2168 -> 31[label="",style="solid", color="burlywood", weight=3]; 2169[label="vwx15/True",fontsize=10,color="white",style="solid",shape="box"];11 -> 2169[label="",style="solid", color="burlywood", weight=9]; 2169 -> 32[label="",style="solid", color="burlywood", weight=3]; 17[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];2170[label="vwx30/False",fontsize=10,color="white",style="solid",shape="box"];17 -> 2170[label="",style="solid", color="burlywood", weight=9]; 2170 -> 33[label="",style="solid", color="burlywood", weight=3]; 2171[label="vwx30/True",fontsize=10,color="white",style="solid",shape="box"];17 -> 2171[label="",style="solid", color="burlywood", weight=9]; 2171 -> 34[label="",style="solid", color="burlywood", weight=3]; 18[label="vwx30 == vwx40",fontsize=16,color="black",shape="triangle"];18 -> 35[label="",style="solid", color="black", weight=3]; 19[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];2172[label="vwx30/Integer vwx300",fontsize=10,color="white",style="solid",shape="box"];19 -> 2172[label="",style="solid", color="burlywood", weight=9]; 2172 -> 36[label="",style="solid", color="burlywood", weight=3]; 20[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];2173[label="vwx30/(vwx300,vwx301)",fontsize=10,color="white",style="solid",shape="box"];20 -> 2173[label="",style="solid", color="burlywood", weight=9]; 2173 -> 37[label="",style="solid", color="burlywood", weight=3]; 21[label="vwx30 == vwx40",fontsize=16,color="black",shape="triangle"];21 -> 38[label="",style="solid", color="black", weight=3]; 22[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];2174[label="vwx30/vwx300 :% vwx301",fontsize=10,color="white",style="solid",shape="box"];22 -> 2174[label="",style="solid", color="burlywood", weight=9]; 2174 -> 39[label="",style="solid", color="burlywood", weight=3]; 23[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];2175[label="vwx30/Left vwx300",fontsize=10,color="white",style="solid",shape="box"];23 -> 2175[label="",style="solid", color="burlywood", weight=9]; 2175 -> 40[label="",style="solid", color="burlywood", weight=3]; 2176[label="vwx30/Right vwx300",fontsize=10,color="white",style="solid",shape="box"];23 -> 2176[label="",style="solid", color="burlywood", weight=9]; 2176 -> 41[label="",style="solid", color="burlywood", weight=3]; 24[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];2177[label="vwx30/(vwx300,vwx301,vwx302)",fontsize=10,color="white",style="solid",shape="box"];24 -> 2177[label="",style="solid", color="burlywood", weight=9]; 2177 -> 42[label="",style="solid", color="burlywood", weight=3]; 25[label="vwx30 == vwx40",fontsize=16,color="black",shape="triangle"];25 -> 43[label="",style="solid", color="black", weight=3]; 26[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];2178[label="vwx30/()",fontsize=10,color="white",style="solid",shape="box"];26 -> 2178[label="",style="solid", color="burlywood", weight=9]; 2178 -> 44[label="",style="solid", color="burlywood", weight=3]; 27[label="vwx30 == vwx40",fontsize=16,color="black",shape="triangle"];27 -> 45[label="",style="solid", color="black", weight=3]; 28[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];2179[label="vwx30/Nothing",fontsize=10,color="white",style="solid",shape="box"];28 -> 2179[label="",style="solid", color="burlywood", weight=9]; 2179 -> 46[label="",style="solid", color="burlywood", weight=3]; 2180[label="vwx30/Just vwx300",fontsize=10,color="white",style="solid",shape="box"];28 -> 2180[label="",style="solid", color="burlywood", weight=9]; 2180 -> 47[label="",style="solid", color="burlywood", weight=3]; 29[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];2181[label="vwx30/vwx300 : vwx301",fontsize=10,color="white",style="solid",shape="box"];29 -> 2181[label="",style="solid", color="burlywood", weight=9]; 2181 -> 48[label="",style="solid", color="burlywood", weight=3]; 2182[label="vwx30/[]",fontsize=10,color="white",style="solid",shape="box"];29 -> 2182[label="",style="solid", color="burlywood", weight=9]; 2182 -> 49[label="",style="solid", color="burlywood", weight=3]; 30[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];2183[label="vwx30/LT",fontsize=10,color="white",style="solid",shape="box"];30 -> 2183[label="",style="solid", color="burlywood", weight=9]; 2183 -> 50[label="",style="solid", color="burlywood", weight=3]; 2184[label="vwx30/EQ",fontsize=10,color="white",style="solid",shape="box"];30 -> 2184[label="",style="solid", color="burlywood", weight=9]; 2184 -> 51[label="",style="solid", color="burlywood", weight=3]; 2185[label="vwx30/GT",fontsize=10,color="white",style="solid",shape="box"];30 -> 2185[label="",style="solid", color="burlywood", weight=9]; 2185 -> 52[label="",style="solid", color="burlywood", weight=3]; 31[label="compare2 (vwx11,vwx12) (vwx13,vwx14) (False && vwx12 == vwx14) == GT",fontsize=16,color="black",shape="box"];31 -> 53[label="",style="solid", color="black", weight=3]; 32[label="compare2 (vwx11,vwx12) (vwx13,vwx14) (True && vwx12 == vwx14) == GT",fontsize=16,color="black",shape="box"];32 -> 54[label="",style="solid", color="black", weight=3]; 33[label="False == vwx40",fontsize=16,color="burlywood",shape="box"];2186[label="vwx40/False",fontsize=10,color="white",style="solid",shape="box"];33 -> 2186[label="",style="solid", color="burlywood", weight=9]; 2186 -> 55[label="",style="solid", color="burlywood", weight=3]; 2187[label="vwx40/True",fontsize=10,color="white",style="solid",shape="box"];33 -> 2187[label="",style="solid", color="burlywood", weight=9]; 2187 -> 56[label="",style="solid", color="burlywood", weight=3]; 34[label="True == vwx40",fontsize=16,color="burlywood",shape="box"];2188[label="vwx40/False",fontsize=10,color="white",style="solid",shape="box"];34 -> 2188[label="",style="solid", color="burlywood", weight=9]; 2188 -> 57[label="",style="solid", color="burlywood", weight=3]; 2189[label="vwx40/True",fontsize=10,color="white",style="solid",shape="box"];34 -> 2189[label="",style="solid", color="burlywood", weight=9]; 2189 -> 58[label="",style="solid", color="burlywood", weight=3]; 35[label="primEqFloat vwx30 vwx40",fontsize=16,color="burlywood",shape="box"];2190[label="vwx30/Float vwx300 vwx301",fontsize=10,color="white",style="solid",shape="box"];35 -> 2190[label="",style="solid", color="burlywood", weight=9]; 2190 -> 59[label="",style="solid", color="burlywood", weight=3]; 36[label="Integer vwx300 == vwx40",fontsize=16,color="burlywood",shape="box"];2191[label="vwx40/Integer vwx400",fontsize=10,color="white",style="solid",shape="box"];36 -> 2191[label="",style="solid", color="burlywood", weight=9]; 2191 -> 60[label="",style="solid", color="burlywood", weight=3]; 37[label="(vwx300,vwx301) == vwx40",fontsize=16,color="burlywood",shape="box"];2192[label="vwx40/(vwx400,vwx401)",fontsize=10,color="white",style="solid",shape="box"];37 -> 2192[label="",style="solid", color="burlywood", weight=9]; 2192 -> 61[label="",style="solid", color="burlywood", weight=3]; 38[label="primEqInt vwx30 vwx40",fontsize=16,color="burlywood",shape="triangle"];2193[label="vwx30/Pos vwx300",fontsize=10,color="white",style="solid",shape="box"];38 -> 2193[label="",style="solid", color="burlywood", weight=9]; 2193 -> 62[label="",style="solid", color="burlywood", weight=3]; 2194[label="vwx30/Neg vwx300",fontsize=10,color="white",style="solid",shape="box"];38 -> 2194[label="",style="solid", color="burlywood", weight=9]; 2194 -> 63[label="",style="solid", color="burlywood", weight=3]; 39[label="vwx300 :% vwx301 == vwx40",fontsize=16,color="burlywood",shape="box"];2195[label="vwx40/vwx400 :% vwx401",fontsize=10,color="white",style="solid",shape="box"];39 -> 2195[label="",style="solid", color="burlywood", weight=9]; 2195 -> 64[label="",style="solid", color="burlywood", weight=3]; 40[label="Left vwx300 == vwx40",fontsize=16,color="burlywood",shape="box"];2196[label="vwx40/Left vwx400",fontsize=10,color="white",style="solid",shape="box"];40 -> 2196[label="",style="solid", color="burlywood", weight=9]; 2196 -> 65[label="",style="solid", color="burlywood", weight=3]; 2197[label="vwx40/Right vwx400",fontsize=10,color="white",style="solid",shape="box"];40 -> 2197[label="",style="solid", color="burlywood", weight=9]; 2197 -> 66[label="",style="solid", color="burlywood", weight=3]; 41[label="Right vwx300 == vwx40",fontsize=16,color="burlywood",shape="box"];2198[label="vwx40/Left vwx400",fontsize=10,color="white",style="solid",shape="box"];41 -> 2198[label="",style="solid", color="burlywood", weight=9]; 2198 -> 67[label="",style="solid", color="burlywood", weight=3]; 2199[label="vwx40/Right vwx400",fontsize=10,color="white",style="solid",shape="box"];41 -> 2199[label="",style="solid", color="burlywood", weight=9]; 2199 -> 68[label="",style="solid", color="burlywood", weight=3]; 42[label="(vwx300,vwx301,vwx302) == vwx40",fontsize=16,color="burlywood",shape="box"];2200[label="vwx40/(vwx400,vwx401,vwx402)",fontsize=10,color="white",style="solid",shape="box"];42 -> 2200[label="",style="solid", color="burlywood", weight=9]; 2200 -> 69[label="",style="solid", color="burlywood", weight=3]; 43[label="primEqDouble vwx30 vwx40",fontsize=16,color="burlywood",shape="box"];2201[label="vwx30/Double vwx300 vwx301",fontsize=10,color="white",style="solid",shape="box"];43 -> 2201[label="",style="solid", color="burlywood", weight=9]; 2201 -> 70[label="",style="solid", color="burlywood", weight=3]; 44[label="() == vwx40",fontsize=16,color="burlywood",shape="box"];2202[label="vwx40/()",fontsize=10,color="white",style="solid",shape="box"];44 -> 2202[label="",style="solid", color="burlywood", weight=9]; 2202 -> 71[label="",style="solid", color="burlywood", weight=3]; 45[label="primEqChar vwx30 vwx40",fontsize=16,color="burlywood",shape="box"];2203[label="vwx30/Char vwx300",fontsize=10,color="white",style="solid",shape="box"];45 -> 2203[label="",style="solid", color="burlywood", weight=9]; 2203 -> 72[label="",style="solid", color="burlywood", weight=3]; 46[label="Nothing == vwx40",fontsize=16,color="burlywood",shape="box"];2204[label="vwx40/Nothing",fontsize=10,color="white",style="solid",shape="box"];46 -> 2204[label="",style="solid", color="burlywood", weight=9]; 2204 -> 73[label="",style="solid", color="burlywood", weight=3]; 2205[label="vwx40/Just vwx400",fontsize=10,color="white",style="solid",shape="box"];46 -> 2205[label="",style="solid", color="burlywood", weight=9]; 2205 -> 74[label="",style="solid", color="burlywood", weight=3]; 47[label="Just vwx300 == vwx40",fontsize=16,color="burlywood",shape="box"];2206[label="vwx40/Nothing",fontsize=10,color="white",style="solid",shape="box"];47 -> 2206[label="",style="solid", color="burlywood", weight=9]; 2206 -> 75[label="",style="solid", color="burlywood", weight=3]; 2207[label="vwx40/Just vwx400",fontsize=10,color="white",style="solid",shape="box"];47 -> 2207[label="",style="solid", color="burlywood", weight=9]; 2207 -> 76[label="",style="solid", color="burlywood", weight=3]; 48[label="vwx300 : vwx301 == vwx40",fontsize=16,color="burlywood",shape="box"];2208[label="vwx40/vwx400 : vwx401",fontsize=10,color="white",style="solid",shape="box"];48 -> 2208[label="",style="solid", color="burlywood", weight=9]; 2208 -> 77[label="",style="solid", color="burlywood", weight=3]; 2209[label="vwx40/[]",fontsize=10,color="white",style="solid",shape="box"];48 -> 2209[label="",style="solid", color="burlywood", weight=9]; 2209 -> 78[label="",style="solid", color="burlywood", weight=3]; 49[label="[] == vwx40",fontsize=16,color="burlywood",shape="box"];2210[label="vwx40/vwx400 : vwx401",fontsize=10,color="white",style="solid",shape="box"];49 -> 2210[label="",style="solid", color="burlywood", weight=9]; 2210 -> 79[label="",style="solid", color="burlywood", weight=3]; 2211[label="vwx40/[]",fontsize=10,color="white",style="solid",shape="box"];49 -> 2211[label="",style="solid", color="burlywood", weight=9]; 2211 -> 80[label="",style="solid", color="burlywood", weight=3]; 50[label="LT == vwx40",fontsize=16,color="burlywood",shape="box"];2212[label="vwx40/LT",fontsize=10,color="white",style="solid",shape="box"];50 -> 2212[label="",style="solid", color="burlywood", weight=9]; 2212 -> 81[label="",style="solid", color="burlywood", weight=3]; 2213[label="vwx40/EQ",fontsize=10,color="white",style="solid",shape="box"];50 -> 2213[label="",style="solid", color="burlywood", weight=9]; 2213 -> 82[label="",style="solid", color="burlywood", weight=3]; 2214[label="vwx40/GT",fontsize=10,color="white",style="solid",shape="box"];50 -> 2214[label="",style="solid", color="burlywood", weight=9]; 2214 -> 83[label="",style="solid", color="burlywood", weight=3]; 51[label="EQ == vwx40",fontsize=16,color="burlywood",shape="box"];2215[label="vwx40/LT",fontsize=10,color="white",style="solid",shape="box"];51 -> 2215[label="",style="solid", color="burlywood", weight=9]; 2215 -> 84[label="",style="solid", color="burlywood", weight=3]; 2216[label="vwx40/EQ",fontsize=10,color="white",style="solid",shape="box"];51 -> 2216[label="",style="solid", color="burlywood", weight=9]; 2216 -> 85[label="",style="solid", color="burlywood", weight=3]; 2217[label="vwx40/GT",fontsize=10,color="white",style="solid",shape="box"];51 -> 2217[label="",style="solid", color="burlywood", weight=9]; 2217 -> 86[label="",style="solid", color="burlywood", weight=3]; 52[label="GT == vwx40",fontsize=16,color="burlywood",shape="box"];2218[label="vwx40/LT",fontsize=10,color="white",style="solid",shape="box"];52 -> 2218[label="",style="solid", color="burlywood", weight=9]; 2218 -> 87[label="",style="solid", color="burlywood", weight=3]; 2219[label="vwx40/EQ",fontsize=10,color="white",style="solid",shape="box"];52 -> 2219[label="",style="solid", color="burlywood", weight=9]; 2219 -> 88[label="",style="solid", color="burlywood", weight=3]; 2220[label="vwx40/GT",fontsize=10,color="white",style="solid",shape="box"];52 -> 2220[label="",style="solid", color="burlywood", weight=9]; 2220 -> 89[label="",style="solid", color="burlywood", weight=3]; 53 -> 30[label="",style="dashed", color="red", weight=0]; 53[label="compare2 (vwx11,vwx12) (vwx13,vwx14) False == GT",fontsize=16,color="magenta"];53 -> 90[label="",style="dashed", color="magenta", weight=3]; 53 -> 91[label="",style="dashed", color="magenta", weight=3]; 54 -> 30[label="",style="dashed", color="red", weight=0]; 54[label="compare2 (vwx11,vwx12) (vwx13,vwx14) (vwx12 == vwx14) == GT",fontsize=16,color="magenta"];54 -> 92[label="",style="dashed", color="magenta", weight=3]; 54 -> 93[label="",style="dashed", color="magenta", weight=3]; 55[label="False == False",fontsize=16,color="black",shape="box"];55 -> 94[label="",style="solid", color="black", weight=3]; 56[label="False == True",fontsize=16,color="black",shape="box"];56 -> 95[label="",style="solid", color="black", weight=3]; 57[label="True == False",fontsize=16,color="black",shape="box"];57 -> 96[label="",style="solid", color="black", weight=3]; 58[label="True == True",fontsize=16,color="black",shape="box"];58 -> 97[label="",style="solid", color="black", weight=3]; 59[label="primEqFloat (Float vwx300 vwx301) vwx40",fontsize=16,color="burlywood",shape="box"];2221[label="vwx40/Float vwx400 vwx401",fontsize=10,color="white",style="solid",shape="box"];59 -> 2221[label="",style="solid", color="burlywood", weight=9]; 2221 -> 98[label="",style="solid", color="burlywood", weight=3]; 60[label="Integer vwx300 == Integer vwx400",fontsize=16,color="black",shape="box"];60 -> 99[label="",style="solid", color="black", weight=3]; 61[label="(vwx300,vwx301) == (vwx400,vwx401)",fontsize=16,color="black",shape="box"];61 -> 100[label="",style="solid", color="black", weight=3]; 62[label="primEqInt (Pos vwx300) vwx40",fontsize=16,color="burlywood",shape="box"];2222[label="vwx300/Succ vwx3000",fontsize=10,color="white",style="solid",shape="box"];62 -> 2222[label="",style="solid", color="burlywood", weight=9]; 2222 -> 101[label="",style="solid", color="burlywood", weight=3]; 2223[label="vwx300/Zero",fontsize=10,color="white",style="solid",shape="box"];62 -> 2223[label="",style="solid", color="burlywood", weight=9]; 2223 -> 102[label="",style="solid", color="burlywood", weight=3]; 63[label="primEqInt (Neg vwx300) vwx40",fontsize=16,color="burlywood",shape="box"];2224[label="vwx300/Succ vwx3000",fontsize=10,color="white",style="solid",shape="box"];63 -> 2224[label="",style="solid", color="burlywood", weight=9]; 2224 -> 103[label="",style="solid", color="burlywood", weight=3]; 2225[label="vwx300/Zero",fontsize=10,color="white",style="solid",shape="box"];63 -> 2225[label="",style="solid", color="burlywood", weight=9]; 2225 -> 104[label="",style="solid", color="burlywood", weight=3]; 64[label="vwx300 :% vwx301 == vwx400 :% vwx401",fontsize=16,color="black",shape="box"];64 -> 105[label="",style="solid", color="black", weight=3]; 65[label="Left vwx300 == Left vwx400",fontsize=16,color="black",shape="box"];65 -> 106[label="",style="solid", color="black", weight=3]; 66[label="Left vwx300 == Right vwx400",fontsize=16,color="black",shape="box"];66 -> 107[label="",style="solid", color="black", weight=3]; 67[label="Right vwx300 == Left vwx400",fontsize=16,color="black",shape="box"];67 -> 108[label="",style="solid", color="black", weight=3]; 68[label="Right vwx300 == Right vwx400",fontsize=16,color="black",shape="box"];68 -> 109[label="",style="solid", color="black", weight=3]; 69[label="(vwx300,vwx301,vwx302) == (vwx400,vwx401,vwx402)",fontsize=16,color="black",shape="box"];69 -> 110[label="",style="solid", color="black", weight=3]; 70[label="primEqDouble (Double vwx300 vwx301) vwx40",fontsize=16,color="burlywood",shape="box"];2226[label="vwx40/Double vwx400 vwx401",fontsize=10,color="white",style="solid",shape="box"];70 -> 2226[label="",style="solid", color="burlywood", weight=9]; 2226 -> 111[label="",style="solid", color="burlywood", weight=3]; 71[label="() == ()",fontsize=16,color="black",shape="box"];71 -> 112[label="",style="solid", color="black", weight=3]; 72[label="primEqChar (Char vwx300) vwx40",fontsize=16,color="burlywood",shape="box"];2227[label="vwx40/Char vwx400",fontsize=10,color="white",style="solid",shape="box"];72 -> 2227[label="",style="solid", color="burlywood", weight=9]; 2227 -> 113[label="",style="solid", color="burlywood", weight=3]; 73[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];73 -> 114[label="",style="solid", color="black", weight=3]; 74[label="Nothing == Just vwx400",fontsize=16,color="black",shape="box"];74 -> 115[label="",style="solid", color="black", weight=3]; 75[label="Just vwx300 == Nothing",fontsize=16,color="black",shape="box"];75 -> 116[label="",style="solid", color="black", weight=3]; 76[label="Just vwx300 == Just vwx400",fontsize=16,color="black",shape="box"];76 -> 117[label="",style="solid", color="black", weight=3]; 77[label="vwx300 : vwx301 == vwx400 : vwx401",fontsize=16,color="black",shape="box"];77 -> 118[label="",style="solid", color="black", weight=3]; 78[label="vwx300 : vwx301 == []",fontsize=16,color="black",shape="box"];78 -> 119[label="",style="solid", color="black", weight=3]; 79[label="[] == vwx400 : vwx401",fontsize=16,color="black",shape="box"];79 -> 120[label="",style="solid", color="black", weight=3]; 80[label="[] == []",fontsize=16,color="black",shape="box"];80 -> 121[label="",style="solid", color="black", weight=3]; 81[label="LT == LT",fontsize=16,color="black",shape="box"];81 -> 122[label="",style="solid", color="black", weight=3]; 82[label="LT == EQ",fontsize=16,color="black",shape="box"];82 -> 123[label="",style="solid", color="black", weight=3]; 83[label="LT == GT",fontsize=16,color="black",shape="box"];83 -> 124[label="",style="solid", color="black", weight=3]; 84[label="EQ == LT",fontsize=16,color="black",shape="box"];84 -> 125[label="",style="solid", color="black", weight=3]; 85[label="EQ == EQ",fontsize=16,color="black",shape="box"];85 -> 126[label="",style="solid", color="black", weight=3]; 86[label="EQ == GT",fontsize=16,color="black",shape="box"];86 -> 127[label="",style="solid", color="black", weight=3]; 87[label="GT == LT",fontsize=16,color="black",shape="box"];87 -> 128[label="",style="solid", color="black", weight=3]; 88[label="GT == EQ",fontsize=16,color="black",shape="box"];88 -> 129[label="",style="solid", color="black", weight=3]; 89[label="GT == GT",fontsize=16,color="black",shape="box"];89 -> 130[label="",style="solid", color="black", weight=3]; 90 -> 1004[label="",style="dashed", color="red", weight=0]; 90[label="compare2 (vwx11,vwx12) (vwx13,vwx14) False",fontsize=16,color="magenta"];90 -> 1005[label="",style="dashed", color="magenta", weight=3]; 90 -> 1006[label="",style="dashed", color="magenta", weight=3]; 90 -> 1007[label="",style="dashed", color="magenta", weight=3]; 91[label="GT",fontsize=16,color="green",shape="box"];92 -> 1004[label="",style="dashed", color="red", weight=0]; 92[label="compare2 (vwx11,vwx12) (vwx13,vwx14) (vwx12 == vwx14)",fontsize=16,color="magenta"];92 -> 1008[label="",style="dashed", color="magenta", weight=3]; 92 -> 1009[label="",style="dashed", color="magenta", weight=3]; 92 -> 1010[label="",style="dashed", color="magenta", weight=3]; 93[label="GT",fontsize=16,color="green",shape="box"];94[label="True",fontsize=16,color="green",shape="box"];95[label="False",fontsize=16,color="green",shape="box"];96[label="False",fontsize=16,color="green",shape="box"];97[label="True",fontsize=16,color="green",shape="box"];98[label="primEqFloat (Float vwx300 vwx301) (Float vwx400 vwx401)",fontsize=16,color="black",shape="box"];98 -> 143[label="",style="solid", color="black", weight=3]; 99 -> 38[label="",style="dashed", color="red", weight=0]; 99[label="primEqInt vwx300 vwx400",fontsize=16,color="magenta"];99 -> 144[label="",style="dashed", color="magenta", weight=3]; 99 -> 145[label="",style="dashed", color="magenta", weight=3]; 100 -> 251[label="",style="dashed", color="red", weight=0]; 100[label="vwx300 == vwx400 && vwx301 == vwx401",fontsize=16,color="magenta"];100 -> 252[label="",style="dashed", color="magenta", weight=3]; 100 -> 253[label="",style="dashed", color="magenta", weight=3]; 101[label="primEqInt (Pos (Succ vwx3000)) vwx40",fontsize=16,color="burlywood",shape="box"];2228[label="vwx40/Pos vwx400",fontsize=10,color="white",style="solid",shape="box"];101 -> 2228[label="",style="solid", color="burlywood", weight=9]; 2228 -> 156[label="",style="solid", color="burlywood", weight=3]; 2229[label="vwx40/Neg vwx400",fontsize=10,color="white",style="solid",shape="box"];101 -> 2229[label="",style="solid", color="burlywood", weight=9]; 2229 -> 157[label="",style="solid", color="burlywood", weight=3]; 102[label="primEqInt (Pos Zero) vwx40",fontsize=16,color="burlywood",shape="box"];2230[label="vwx40/Pos vwx400",fontsize=10,color="white",style="solid",shape="box"];102 -> 2230[label="",style="solid", color="burlywood", weight=9]; 2230 -> 158[label="",style="solid", color="burlywood", weight=3]; 2231[label="vwx40/Neg vwx400",fontsize=10,color="white",style="solid",shape="box"];102 -> 2231[label="",style="solid", color="burlywood", weight=9]; 2231 -> 159[label="",style="solid", color="burlywood", weight=3]; 103[label="primEqInt (Neg (Succ vwx3000)) vwx40",fontsize=16,color="burlywood",shape="box"];2232[label="vwx40/Pos vwx400",fontsize=10,color="white",style="solid",shape="box"];103 -> 2232[label="",style="solid", color="burlywood", weight=9]; 2232 -> 160[label="",style="solid", color="burlywood", weight=3]; 2233[label="vwx40/Neg vwx400",fontsize=10,color="white",style="solid",shape="box"];103 -> 2233[label="",style="solid", color="burlywood", weight=9]; 2233 -> 161[label="",style="solid", color="burlywood", weight=3]; 104[label="primEqInt (Neg Zero) vwx40",fontsize=16,color="burlywood",shape="box"];2234[label="vwx40/Pos vwx400",fontsize=10,color="white",style="solid",shape="box"];104 -> 2234[label="",style="solid", color="burlywood", weight=9]; 2234 -> 162[label="",style="solid", color="burlywood", weight=3]; 2235[label="vwx40/Neg vwx400",fontsize=10,color="white",style="solid",shape="box"];104 -> 2235[label="",style="solid", color="burlywood", weight=9]; 2235 -> 163[label="",style="solid", color="burlywood", weight=3]; 105 -> 251[label="",style="dashed", color="red", weight=0]; 105[label="vwx300 == vwx400 && vwx301 == vwx401",fontsize=16,color="magenta"];105 -> 254[label="",style="dashed", color="magenta", weight=3]; 105 -> 255[label="",style="dashed", color="magenta", weight=3]; 106[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];2236[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];106 -> 2236[label="",style="solid", color="blue", weight=9]; 2236 -> 164[label="",style="solid", color="blue", weight=3]; 2237[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];106 -> 2237[label="",style="solid", color="blue", weight=9]; 2237 -> 165[label="",style="solid", color="blue", weight=3]; 2238[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];106 -> 2238[label="",style="solid", color="blue", weight=9]; 2238 -> 166[label="",style="solid", color="blue", weight=3]; 2239[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];106 -> 2239[label="",style="solid", color="blue", weight=9]; 2239 -> 167[label="",style="solid", color="blue", weight=3]; 2240[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];106 -> 2240[label="",style="solid", color="blue", weight=9]; 2240 -> 168[label="",style="solid", color="blue", weight=3]; 2241[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];106 -> 2241[label="",style="solid", color="blue", weight=9]; 2241 -> 169[label="",style="solid", color="blue", weight=3]; 2242[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];106 -> 2242[label="",style="solid", color="blue", weight=9]; 2242 -> 170[label="",style="solid", color="blue", weight=3]; 2243[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];106 -> 2243[label="",style="solid", color="blue", weight=9]; 2243 -> 171[label="",style="solid", color="blue", weight=3]; 2244[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];106 -> 2244[label="",style="solid", color="blue", weight=9]; 2244 -> 172[label="",style="solid", color="blue", weight=3]; 2245[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];106 -> 2245[label="",style="solid", color="blue", weight=9]; 2245 -> 173[label="",style="solid", color="blue", weight=3]; 2246[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];106 -> 2246[label="",style="solid", color="blue", weight=9]; 2246 -> 174[label="",style="solid", color="blue", weight=3]; 2247[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];106 -> 2247[label="",style="solid", color="blue", weight=9]; 2247 -> 175[label="",style="solid", color="blue", weight=3]; 2248[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];106 -> 2248[label="",style="solid", color="blue", weight=9]; 2248 -> 176[label="",style="solid", color="blue", weight=3]; 2249[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];106 -> 2249[label="",style="solid", color="blue", weight=9]; 2249 -> 177[label="",style="solid", color="blue", weight=3]; 107[label="False",fontsize=16,color="green",shape="box"];108[label="False",fontsize=16,color="green",shape="box"];109[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];2250[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];109 -> 2250[label="",style="solid", color="blue", weight=9]; 2250 -> 178[label="",style="solid", color="blue", weight=3]; 2251[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];109 -> 2251[label="",style="solid", color="blue", weight=9]; 2251 -> 179[label="",style="solid", color="blue", weight=3]; 2252[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];109 -> 2252[label="",style="solid", color="blue", weight=9]; 2252 -> 180[label="",style="solid", color="blue", weight=3]; 2253[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];109 -> 2253[label="",style="solid", color="blue", weight=9]; 2253 -> 181[label="",style="solid", color="blue", weight=3]; 2254[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];109 -> 2254[label="",style="solid", color="blue", weight=9]; 2254 -> 182[label="",style="solid", color="blue", weight=3]; 2255[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];109 -> 2255[label="",style="solid", color="blue", weight=9]; 2255 -> 183[label="",style="solid", color="blue", weight=3]; 2256[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];109 -> 2256[label="",style="solid", color="blue", weight=9]; 2256 -> 184[label="",style="solid", color="blue", weight=3]; 2257[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];109 -> 2257[label="",style="solid", color="blue", weight=9]; 2257 -> 185[label="",style="solid", color="blue", weight=3]; 2258[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];109 -> 2258[label="",style="solid", color="blue", weight=9]; 2258 -> 186[label="",style="solid", color="blue", weight=3]; 2259[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];109 -> 2259[label="",style="solid", color="blue", weight=9]; 2259 -> 187[label="",style="solid", color="blue", weight=3]; 2260[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];109 -> 2260[label="",style="solid", color="blue", weight=9]; 2260 -> 188[label="",style="solid", color="blue", weight=3]; 2261[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];109 -> 2261[label="",style="solid", color="blue", weight=9]; 2261 -> 189[label="",style="solid", color="blue", weight=3]; 2262[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];109 -> 2262[label="",style="solid", color="blue", weight=9]; 2262 -> 190[label="",style="solid", color="blue", weight=3]; 2263[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];109 -> 2263[label="",style="solid", color="blue", weight=9]; 2263 -> 191[label="",style="solid", color="blue", weight=3]; 110 -> 251[label="",style="dashed", color="red", weight=0]; 110[label="vwx300 == vwx400 && vwx301 == vwx401 && vwx302 == vwx402",fontsize=16,color="magenta"];110 -> 256[label="",style="dashed", color="magenta", weight=3]; 110 -> 257[label="",style="dashed", color="magenta", weight=3]; 111[label="primEqDouble (Double vwx300 vwx301) (Double vwx400 vwx401)",fontsize=16,color="black",shape="box"];111 -> 203[label="",style="solid", color="black", weight=3]; 112[label="True",fontsize=16,color="green",shape="box"];113[label="primEqChar (Char vwx300) (Char vwx400)",fontsize=16,color="black",shape="box"];113 -> 204[label="",style="solid", color="black", weight=3]; 114[label="True",fontsize=16,color="green",shape="box"];115[label="False",fontsize=16,color="green",shape="box"];116[label="False",fontsize=16,color="green",shape="box"];117[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];2264[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];117 -> 2264[label="",style="solid", color="blue", weight=9]; 2264 -> 205[label="",style="solid", color="blue", weight=3]; 2265[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];117 -> 2265[label="",style="solid", color="blue", weight=9]; 2265 -> 206[label="",style="solid", color="blue", weight=3]; 2266[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];117 -> 2266[label="",style="solid", color="blue", weight=9]; 2266 -> 207[label="",style="solid", color="blue", weight=3]; 2267[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];117 -> 2267[label="",style="solid", color="blue", weight=9]; 2267 -> 208[label="",style="solid", color="blue", weight=3]; 2268[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];117 -> 2268[label="",style="solid", color="blue", weight=9]; 2268 -> 209[label="",style="solid", color="blue", weight=3]; 2269[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];117 -> 2269[label="",style="solid", color="blue", weight=9]; 2269 -> 210[label="",style="solid", color="blue", weight=3]; 2270[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];117 -> 2270[label="",style="solid", color="blue", weight=9]; 2270 -> 211[label="",style="solid", color="blue", weight=3]; 2271[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];117 -> 2271[label="",style="solid", color="blue", weight=9]; 2271 -> 212[label="",style="solid", color="blue", weight=3]; 2272[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];117 -> 2272[label="",style="solid", color="blue", weight=9]; 2272 -> 213[label="",style="solid", color="blue", weight=3]; 2273[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];117 -> 2273[label="",style="solid", color="blue", weight=9]; 2273 -> 214[label="",style="solid", color="blue", weight=3]; 2274[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];117 -> 2274[label="",style="solid", color="blue", weight=9]; 2274 -> 215[label="",style="solid", color="blue", weight=3]; 2275[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];117 -> 2275[label="",style="solid", color="blue", weight=9]; 2275 -> 216[label="",style="solid", color="blue", weight=3]; 2276[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];117 -> 2276[label="",style="solid", color="blue", weight=9]; 2276 -> 217[label="",style="solid", color="blue", weight=3]; 2277[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];117 -> 2277[label="",style="solid", color="blue", weight=9]; 2277 -> 218[label="",style="solid", color="blue", weight=3]; 118 -> 251[label="",style="dashed", color="red", weight=0]; 118[label="vwx300 == vwx400 && vwx301 == vwx401",fontsize=16,color="magenta"];118 -> 258[label="",style="dashed", color="magenta", weight=3]; 118 -> 259[label="",style="dashed", color="magenta", weight=3]; 119[label="False",fontsize=16,color="green",shape="box"];120[label="False",fontsize=16,color="green",shape="box"];121[label="True",fontsize=16,color="green",shape="box"];122[label="True",fontsize=16,color="green",shape="box"];123[label="False",fontsize=16,color="green",shape="box"];124[label="False",fontsize=16,color="green",shape="box"];125[label="False",fontsize=16,color="green",shape="box"];126[label="True",fontsize=16,color="green",shape="box"];127[label="False",fontsize=16,color="green",shape="box"];128[label="False",fontsize=16,color="green",shape="box"];129[label="False",fontsize=16,color="green",shape="box"];130[label="True",fontsize=16,color="green",shape="box"];1005[label="False",fontsize=16,color="green",shape="box"];1006[label="(vwx13,vwx14)",fontsize=16,color="green",shape="box"];1007[label="(vwx11,vwx12)",fontsize=16,color="green",shape="box"];1004[label="compare2 vwx22 vwx24 vwx55",fontsize=16,color="burlywood",shape="triangle"];2278[label="vwx55/False",fontsize=10,color="white",style="solid",shape="box"];1004 -> 2278[label="",style="solid", color="burlywood", weight=9]; 2278 -> 1015[label="",style="solid", color="burlywood", weight=3]; 2279[label="vwx55/True",fontsize=10,color="white",style="solid",shape="box"];1004 -> 2279[label="",style="solid", color="burlywood", weight=9]; 2279 -> 1016[label="",style="solid", color="burlywood", weight=3]; 1008[label="vwx12 == vwx14",fontsize=16,color="blue",shape="box"];2280[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1008 -> 2280[label="",style="solid", color="blue", weight=9]; 2280 -> 1017[label="",style="solid", color="blue", weight=3]; 2281[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1008 -> 2281[label="",style="solid", color="blue", weight=9]; 2281 -> 1018[label="",style="solid", color="blue", weight=3]; 2282[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1008 -> 2282[label="",style="solid", color="blue", weight=9]; 2282 -> 1019[label="",style="solid", color="blue", weight=3]; 2283[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1008 -> 2283[label="",style="solid", color="blue", weight=9]; 2283 -> 1020[label="",style="solid", color="blue", weight=3]; 2284[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1008 -> 2284[label="",style="solid", color="blue", weight=9]; 2284 -> 1021[label="",style="solid", color="blue", weight=3]; 2285[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1008 -> 2285[label="",style="solid", color="blue", weight=9]; 2285 -> 1022[label="",style="solid", color="blue", weight=3]; 2286[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1008 -> 2286[label="",style="solid", color="blue", weight=9]; 2286 -> 1023[label="",style="solid", color="blue", weight=3]; 2287[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1008 -> 2287[label="",style="solid", color="blue", weight=9]; 2287 -> 1024[label="",style="solid", color="blue", weight=3]; 2288[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1008 -> 2288[label="",style="solid", color="blue", weight=9]; 2288 -> 1025[label="",style="solid", color="blue", weight=3]; 2289[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1008 -> 2289[label="",style="solid", color="blue", weight=9]; 2289 -> 1026[label="",style="solid", color="blue", weight=3]; 2290[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1008 -> 2290[label="",style="solid", color="blue", weight=9]; 2290 -> 1027[label="",style="solid", color="blue", weight=3]; 2291[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1008 -> 2291[label="",style="solid", color="blue", weight=9]; 2291 -> 1028[label="",style="solid", color="blue", weight=3]; 2292[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1008 -> 2292[label="",style="solid", color="blue", weight=9]; 2292 -> 1029[label="",style="solid", color="blue", weight=3]; 2293[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1008 -> 2293[label="",style="solid", color="blue", weight=9]; 2293 -> 1030[label="",style="solid", color="blue", weight=3]; 1009[label="(vwx13,vwx14)",fontsize=16,color="green",shape="box"];1010[label="(vwx11,vwx12)",fontsize=16,color="green",shape="box"];143 -> 21[label="",style="dashed", color="red", weight=0]; 143[label="vwx300 * vwx401 == vwx301 * vwx400",fontsize=16,color="magenta"];143 -> 235[label="",style="dashed", color="magenta", weight=3]; 143 -> 236[label="",style="dashed", color="magenta", weight=3]; 144[label="vwx300",fontsize=16,color="green",shape="box"];145[label="vwx400",fontsize=16,color="green",shape="box"];252[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];2294[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];252 -> 2294[label="",style="solid", color="blue", weight=9]; 2294 -> 264[label="",style="solid", color="blue", weight=3]; 2295[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];252 -> 2295[label="",style="solid", color="blue", weight=9]; 2295 -> 265[label="",style="solid", color="blue", weight=3]; 2296[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];252 -> 2296[label="",style="solid", color="blue", weight=9]; 2296 -> 266[label="",style="solid", color="blue", weight=3]; 2297[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];252 -> 2297[label="",style="solid", color="blue", weight=9]; 2297 -> 267[label="",style="solid", color="blue", weight=3]; 2298[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];252 -> 2298[label="",style="solid", color="blue", weight=9]; 2298 -> 268[label="",style="solid", color="blue", weight=3]; 2299[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];252 -> 2299[label="",style="solid", color="blue", weight=9]; 2299 -> 269[label="",style="solid", color="blue", weight=3]; 2300[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];252 -> 2300[label="",style="solid", color="blue", weight=9]; 2300 -> 270[label="",style="solid", color="blue", weight=3]; 2301[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];252 -> 2301[label="",style="solid", color="blue", weight=9]; 2301 -> 271[label="",style="solid", color="blue", weight=3]; 2302[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];252 -> 2302[label="",style="solid", color="blue", weight=9]; 2302 -> 272[label="",style="solid", color="blue", weight=3]; 2303[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];252 -> 2303[label="",style="solid", color="blue", weight=9]; 2303 -> 273[label="",style="solid", color="blue", weight=3]; 2304[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];252 -> 2304[label="",style="solid", color="blue", weight=9]; 2304 -> 274[label="",style="solid", color="blue", weight=3]; 2305[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];252 -> 2305[label="",style="solid", color="blue", weight=9]; 2305 -> 275[label="",style="solid", color="blue", weight=3]; 2306[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];252 -> 2306[label="",style="solid", color="blue", weight=9]; 2306 -> 276[label="",style="solid", color="blue", weight=3]; 2307[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];252 -> 2307[label="",style="solid", color="blue", weight=9]; 2307 -> 277[label="",style="solid", color="blue", weight=3]; 253[label="vwx301 == vwx401",fontsize=16,color="blue",shape="box"];2308[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];253 -> 2308[label="",style="solid", color="blue", weight=9]; 2308 -> 278[label="",style="solid", color="blue", weight=3]; 2309[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];253 -> 2309[label="",style="solid", color="blue", weight=9]; 2309 -> 279[label="",style="solid", color="blue", weight=3]; 2310[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];253 -> 2310[label="",style="solid", color="blue", weight=9]; 2310 -> 280[label="",style="solid", color="blue", weight=3]; 2311[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];253 -> 2311[label="",style="solid", color="blue", weight=9]; 2311 -> 281[label="",style="solid", color="blue", weight=3]; 2312[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];253 -> 2312[label="",style="solid", color="blue", weight=9]; 2312 -> 282[label="",style="solid", color="blue", weight=3]; 2313[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];253 -> 2313[label="",style="solid", color="blue", weight=9]; 2313 -> 283[label="",style="solid", color="blue", weight=3]; 2314[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];253 -> 2314[label="",style="solid", color="blue", weight=9]; 2314 -> 284[label="",style="solid", color="blue", weight=3]; 2315[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];253 -> 2315[label="",style="solid", color="blue", weight=9]; 2315 -> 285[label="",style="solid", color="blue", weight=3]; 2316[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];253 -> 2316[label="",style="solid", color="blue", weight=9]; 2316 -> 286[label="",style="solid", color="blue", weight=3]; 2317[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];253 -> 2317[label="",style="solid", color="blue", weight=9]; 2317 -> 287[label="",style="solid", color="blue", weight=3]; 2318[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];253 -> 2318[label="",style="solid", color="blue", weight=9]; 2318 -> 288[label="",style="solid", color="blue", weight=3]; 2319[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];253 -> 2319[label="",style="solid", color="blue", weight=9]; 2319 -> 289[label="",style="solid", color="blue", weight=3]; 2320[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];253 -> 2320[label="",style="solid", color="blue", weight=9]; 2320 -> 290[label="",style="solid", color="blue", weight=3]; 2321[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];253 -> 2321[label="",style="solid", color="blue", weight=9]; 2321 -> 291[label="",style="solid", color="blue", weight=3]; 251[label="vwx38 && vwx39",fontsize=16,color="burlywood",shape="triangle"];2322[label="vwx38/False",fontsize=10,color="white",style="solid",shape="box"];251 -> 2322[label="",style="solid", color="burlywood", weight=9]; 2322 -> 292[label="",style="solid", color="burlywood", weight=3]; 2323[label="vwx38/True",fontsize=10,color="white",style="solid",shape="box"];251 -> 2323[label="",style="solid", color="burlywood", weight=9]; 2323 -> 293[label="",style="solid", color="burlywood", weight=3]; 156[label="primEqInt (Pos (Succ vwx3000)) (Pos vwx400)",fontsize=16,color="burlywood",shape="box"];2324[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];156 -> 2324[label="",style="solid", color="burlywood", weight=9]; 2324 -> 294[label="",style="solid", color="burlywood", weight=3]; 2325[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];156 -> 2325[label="",style="solid", color="burlywood", weight=9]; 2325 -> 295[label="",style="solid", color="burlywood", weight=3]; 157[label="primEqInt (Pos (Succ vwx3000)) (Neg vwx400)",fontsize=16,color="black",shape="box"];157 -> 296[label="",style="solid", color="black", weight=3]; 158[label="primEqInt (Pos Zero) (Pos vwx400)",fontsize=16,color="burlywood",shape="box"];2326[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];158 -> 2326[label="",style="solid", color="burlywood", weight=9]; 2326 -> 297[label="",style="solid", color="burlywood", weight=3]; 2327[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];158 -> 2327[label="",style="solid", color="burlywood", weight=9]; 2327 -> 298[label="",style="solid", color="burlywood", weight=3]; 159[label="primEqInt (Pos Zero) (Neg vwx400)",fontsize=16,color="burlywood",shape="box"];2328[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];159 -> 2328[label="",style="solid", color="burlywood", weight=9]; 2328 -> 299[label="",style="solid", color="burlywood", weight=3]; 2329[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];159 -> 2329[label="",style="solid", color="burlywood", weight=9]; 2329 -> 300[label="",style="solid", color="burlywood", weight=3]; 160[label="primEqInt (Neg (Succ vwx3000)) (Pos vwx400)",fontsize=16,color="black",shape="box"];160 -> 301[label="",style="solid", color="black", weight=3]; 161[label="primEqInt (Neg (Succ vwx3000)) (Neg vwx400)",fontsize=16,color="burlywood",shape="box"];2330[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];161 -> 2330[label="",style="solid", color="burlywood", weight=9]; 2330 -> 302[label="",style="solid", color="burlywood", weight=3]; 2331[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];161 -> 2331[label="",style="solid", color="burlywood", weight=9]; 2331 -> 303[label="",style="solid", color="burlywood", weight=3]; 162[label="primEqInt (Neg Zero) (Pos vwx400)",fontsize=16,color="burlywood",shape="box"];2332[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];162 -> 2332[label="",style="solid", color="burlywood", weight=9]; 2332 -> 304[label="",style="solid", color="burlywood", weight=3]; 2333[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];162 -> 2333[label="",style="solid", color="burlywood", weight=9]; 2333 -> 305[label="",style="solid", color="burlywood", weight=3]; 163[label="primEqInt (Neg Zero) (Neg vwx400)",fontsize=16,color="burlywood",shape="box"];2334[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];163 -> 2334[label="",style="solid", color="burlywood", weight=9]; 2334 -> 306[label="",style="solid", color="burlywood", weight=3]; 2335[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];163 -> 2335[label="",style="solid", color="burlywood", weight=9]; 2335 -> 307[label="",style="solid", color="burlywood", weight=3]; 254[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];2336[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];254 -> 2336[label="",style="solid", color="blue", weight=9]; 2336 -> 308[label="",style="solid", color="blue", weight=3]; 2337[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];254 -> 2337[label="",style="solid", color="blue", weight=9]; 2337 -> 309[label="",style="solid", color="blue", weight=3]; 255[label="vwx301 == vwx401",fontsize=16,color="blue",shape="box"];2338[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];255 -> 2338[label="",style="solid", color="blue", weight=9]; 2338 -> 310[label="",style="solid", color="blue", weight=3]; 2339[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];255 -> 2339[label="",style="solid", color="blue", weight=9]; 2339 -> 311[label="",style="solid", color="blue", weight=3]; 164 -> 17[label="",style="dashed", color="red", weight=0]; 164[label="vwx300 == vwx400",fontsize=16,color="magenta"];164 -> 312[label="",style="dashed", color="magenta", weight=3]; 164 -> 313[label="",style="dashed", color="magenta", weight=3]; 165 -> 18[label="",style="dashed", color="red", weight=0]; 165[label="vwx300 == vwx400",fontsize=16,color="magenta"];165 -> 314[label="",style="dashed", color="magenta", weight=3]; 165 -> 315[label="",style="dashed", color="magenta", weight=3]; 166 -> 19[label="",style="dashed", color="red", weight=0]; 166[label="vwx300 == vwx400",fontsize=16,color="magenta"];166 -> 316[label="",style="dashed", color="magenta", weight=3]; 166 -> 317[label="",style="dashed", color="magenta", weight=3]; 167 -> 20[label="",style="dashed", color="red", weight=0]; 167[label="vwx300 == vwx400",fontsize=16,color="magenta"];167 -> 318[label="",style="dashed", color="magenta", weight=3]; 167 -> 319[label="",style="dashed", color="magenta", weight=3]; 168 -> 21[label="",style="dashed", color="red", weight=0]; 168[label="vwx300 == vwx400",fontsize=16,color="magenta"];168 -> 320[label="",style="dashed", color="magenta", weight=3]; 168 -> 321[label="",style="dashed", color="magenta", weight=3]; 169 -> 22[label="",style="dashed", color="red", weight=0]; 169[label="vwx300 == vwx400",fontsize=16,color="magenta"];169 -> 322[label="",style="dashed", color="magenta", weight=3]; 169 -> 323[label="",style="dashed", color="magenta", weight=3]; 170 -> 23[label="",style="dashed", color="red", weight=0]; 170[label="vwx300 == vwx400",fontsize=16,color="magenta"];170 -> 324[label="",style="dashed", color="magenta", weight=3]; 170 -> 325[label="",style="dashed", color="magenta", weight=3]; 171 -> 24[label="",style="dashed", color="red", weight=0]; 171[label="vwx300 == vwx400",fontsize=16,color="magenta"];171 -> 326[label="",style="dashed", color="magenta", weight=3]; 171 -> 327[label="",style="dashed", color="magenta", weight=3]; 172 -> 25[label="",style="dashed", color="red", weight=0]; 172[label="vwx300 == vwx400",fontsize=16,color="magenta"];172 -> 328[label="",style="dashed", color="magenta", weight=3]; 172 -> 329[label="",style="dashed", color="magenta", weight=3]; 173 -> 26[label="",style="dashed", color="red", weight=0]; 173[label="vwx300 == vwx400",fontsize=16,color="magenta"];173 -> 330[label="",style="dashed", color="magenta", weight=3]; 173 -> 331[label="",style="dashed", color="magenta", weight=3]; 174 -> 27[label="",style="dashed", color="red", weight=0]; 174[label="vwx300 == vwx400",fontsize=16,color="magenta"];174 -> 332[label="",style="dashed", color="magenta", weight=3]; 174 -> 333[label="",style="dashed", color="magenta", weight=3]; 175 -> 28[label="",style="dashed", color="red", weight=0]; 175[label="vwx300 == vwx400",fontsize=16,color="magenta"];175 -> 334[label="",style="dashed", color="magenta", weight=3]; 175 -> 335[label="",style="dashed", color="magenta", weight=3]; 176 -> 29[label="",style="dashed", color="red", weight=0]; 176[label="vwx300 == vwx400",fontsize=16,color="magenta"];176 -> 336[label="",style="dashed", color="magenta", weight=3]; 176 -> 337[label="",style="dashed", color="magenta", weight=3]; 177 -> 30[label="",style="dashed", color="red", weight=0]; 177[label="vwx300 == vwx400",fontsize=16,color="magenta"];177 -> 338[label="",style="dashed", color="magenta", weight=3]; 177 -> 339[label="",style="dashed", color="magenta", weight=3]; 178 -> 17[label="",style="dashed", color="red", weight=0]; 178[label="vwx300 == vwx400",fontsize=16,color="magenta"];178 -> 340[label="",style="dashed", color="magenta", weight=3]; 178 -> 341[label="",style="dashed", color="magenta", weight=3]; 179 -> 18[label="",style="dashed", color="red", weight=0]; 179[label="vwx300 == vwx400",fontsize=16,color="magenta"];179 -> 342[label="",style="dashed", color="magenta", weight=3]; 179 -> 343[label="",style="dashed", color="magenta", weight=3]; 180 -> 19[label="",style="dashed", color="red", weight=0]; 180[label="vwx300 == vwx400",fontsize=16,color="magenta"];180 -> 344[label="",style="dashed", color="magenta", weight=3]; 180 -> 345[label="",style="dashed", color="magenta", weight=3]; 181 -> 20[label="",style="dashed", color="red", weight=0]; 181[label="vwx300 == vwx400",fontsize=16,color="magenta"];181 -> 346[label="",style="dashed", color="magenta", weight=3]; 181 -> 347[label="",style="dashed", color="magenta", weight=3]; 182 -> 21[label="",style="dashed", color="red", weight=0]; 182[label="vwx300 == vwx400",fontsize=16,color="magenta"];182 -> 348[label="",style="dashed", color="magenta", weight=3]; 182 -> 349[label="",style="dashed", color="magenta", weight=3]; 183 -> 22[label="",style="dashed", color="red", weight=0]; 183[label="vwx300 == vwx400",fontsize=16,color="magenta"];183 -> 350[label="",style="dashed", color="magenta", weight=3]; 183 -> 351[label="",style="dashed", color="magenta", weight=3]; 184 -> 23[label="",style="dashed", color="red", weight=0]; 184[label="vwx300 == vwx400",fontsize=16,color="magenta"];184 -> 352[label="",style="dashed", color="magenta", weight=3]; 184 -> 353[label="",style="dashed", color="magenta", weight=3]; 185 -> 24[label="",style="dashed", color="red", weight=0]; 185[label="vwx300 == vwx400",fontsize=16,color="magenta"];185 -> 354[label="",style="dashed", color="magenta", weight=3]; 185 -> 355[label="",style="dashed", color="magenta", weight=3]; 186 -> 25[label="",style="dashed", color="red", weight=0]; 186[label="vwx300 == vwx400",fontsize=16,color="magenta"];186 -> 356[label="",style="dashed", color="magenta", weight=3]; 186 -> 357[label="",style="dashed", color="magenta", weight=3]; 187 -> 26[label="",style="dashed", color="red", weight=0]; 187[label="vwx300 == vwx400",fontsize=16,color="magenta"];187 -> 358[label="",style="dashed", color="magenta", weight=3]; 187 -> 359[label="",style="dashed", color="magenta", weight=3]; 188 -> 27[label="",style="dashed", color="red", weight=0]; 188[label="vwx300 == vwx400",fontsize=16,color="magenta"];188 -> 360[label="",style="dashed", color="magenta", weight=3]; 188 -> 361[label="",style="dashed", color="magenta", weight=3]; 189 -> 28[label="",style="dashed", color="red", weight=0]; 189[label="vwx300 == vwx400",fontsize=16,color="magenta"];189 -> 362[label="",style="dashed", color="magenta", weight=3]; 189 -> 363[label="",style="dashed", color="magenta", weight=3]; 190 -> 29[label="",style="dashed", color="red", weight=0]; 190[label="vwx300 == vwx400",fontsize=16,color="magenta"];190 -> 364[label="",style="dashed", color="magenta", weight=3]; 190 -> 365[label="",style="dashed", color="magenta", weight=3]; 191 -> 30[label="",style="dashed", color="red", weight=0]; 191[label="vwx300 == vwx400",fontsize=16,color="magenta"];191 -> 366[label="",style="dashed", color="magenta", weight=3]; 191 -> 367[label="",style="dashed", color="magenta", weight=3]; 256[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];2340[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];256 -> 2340[label="",style="solid", color="blue", weight=9]; 2340 -> 368[label="",style="solid", color="blue", weight=3]; 2341[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];256 -> 2341[label="",style="solid", color="blue", weight=9]; 2341 -> 369[label="",style="solid", color="blue", weight=3]; 2342[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];256 -> 2342[label="",style="solid", color="blue", weight=9]; 2342 -> 370[label="",style="solid", color="blue", weight=3]; 2343[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];256 -> 2343[label="",style="solid", color="blue", weight=9]; 2343 -> 371[label="",style="solid", color="blue", weight=3]; 2344[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];256 -> 2344[label="",style="solid", color="blue", weight=9]; 2344 -> 372[label="",style="solid", color="blue", weight=3]; 2345[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];256 -> 2345[label="",style="solid", color="blue", weight=9]; 2345 -> 373[label="",style="solid", color="blue", weight=3]; 2346[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];256 -> 2346[label="",style="solid", color="blue", weight=9]; 2346 -> 374[label="",style="solid", color="blue", weight=3]; 2347[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];256 -> 2347[label="",style="solid", color="blue", weight=9]; 2347 -> 375[label="",style="solid", color="blue", weight=3]; 2348[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];256 -> 2348[label="",style="solid", color="blue", weight=9]; 2348 -> 376[label="",style="solid", color="blue", weight=3]; 2349[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];256 -> 2349[label="",style="solid", color="blue", weight=9]; 2349 -> 377[label="",style="solid", color="blue", weight=3]; 2350[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];256 -> 2350[label="",style="solid", color="blue", weight=9]; 2350 -> 378[label="",style="solid", color="blue", weight=3]; 2351[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];256 -> 2351[label="",style="solid", color="blue", weight=9]; 2351 -> 379[label="",style="solid", color="blue", weight=3]; 2352[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];256 -> 2352[label="",style="solid", color="blue", weight=9]; 2352 -> 380[label="",style="solid", color="blue", weight=3]; 2353[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];256 -> 2353[label="",style="solid", color="blue", weight=9]; 2353 -> 381[label="",style="solid", color="blue", weight=3]; 257 -> 251[label="",style="dashed", color="red", weight=0]; 257[label="vwx301 == vwx401 && vwx302 == vwx402",fontsize=16,color="magenta"];257 -> 382[label="",style="dashed", color="magenta", weight=3]; 257 -> 383[label="",style="dashed", color="magenta", weight=3]; 203 -> 21[label="",style="dashed", color="red", weight=0]; 203[label="vwx300 * vwx401 == vwx301 * vwx400",fontsize=16,color="magenta"];203 -> 384[label="",style="dashed", color="magenta", weight=3]; 203 -> 385[label="",style="dashed", color="magenta", weight=3]; 204[label="primEqNat vwx300 vwx400",fontsize=16,color="burlywood",shape="triangle"];2354[label="vwx300/Succ vwx3000",fontsize=10,color="white",style="solid",shape="box"];204 -> 2354[label="",style="solid", color="burlywood", weight=9]; 2354 -> 386[label="",style="solid", color="burlywood", weight=3]; 2355[label="vwx300/Zero",fontsize=10,color="white",style="solid",shape="box"];204 -> 2355[label="",style="solid", color="burlywood", weight=9]; 2355 -> 387[label="",style="solid", color="burlywood", weight=3]; 205 -> 17[label="",style="dashed", color="red", weight=0]; 205[label="vwx300 == vwx400",fontsize=16,color="magenta"];205 -> 388[label="",style="dashed", color="magenta", weight=3]; 205 -> 389[label="",style="dashed", color="magenta", weight=3]; 206 -> 18[label="",style="dashed", color="red", weight=0]; 206[label="vwx300 == vwx400",fontsize=16,color="magenta"];206 -> 390[label="",style="dashed", color="magenta", weight=3]; 206 -> 391[label="",style="dashed", color="magenta", weight=3]; 207 -> 19[label="",style="dashed", color="red", weight=0]; 207[label="vwx300 == vwx400",fontsize=16,color="magenta"];207 -> 392[label="",style="dashed", color="magenta", weight=3]; 207 -> 393[label="",style="dashed", color="magenta", weight=3]; 208 -> 20[label="",style="dashed", color="red", weight=0]; 208[label="vwx300 == vwx400",fontsize=16,color="magenta"];208 -> 394[label="",style="dashed", color="magenta", weight=3]; 208 -> 395[label="",style="dashed", color="magenta", weight=3]; 209 -> 21[label="",style="dashed", color="red", weight=0]; 209[label="vwx300 == vwx400",fontsize=16,color="magenta"];209 -> 396[label="",style="dashed", color="magenta", weight=3]; 209 -> 397[label="",style="dashed", color="magenta", weight=3]; 210 -> 22[label="",style="dashed", color="red", weight=0]; 210[label="vwx300 == vwx400",fontsize=16,color="magenta"];210 -> 398[label="",style="dashed", color="magenta", weight=3]; 210 -> 399[label="",style="dashed", color="magenta", weight=3]; 211 -> 23[label="",style="dashed", color="red", weight=0]; 211[label="vwx300 == vwx400",fontsize=16,color="magenta"];211 -> 400[label="",style="dashed", color="magenta", weight=3]; 211 -> 401[label="",style="dashed", color="magenta", weight=3]; 212 -> 24[label="",style="dashed", color="red", weight=0]; 212[label="vwx300 == vwx400",fontsize=16,color="magenta"];212 -> 402[label="",style="dashed", color="magenta", weight=3]; 212 -> 403[label="",style="dashed", color="magenta", weight=3]; 213 -> 25[label="",style="dashed", color="red", weight=0]; 213[label="vwx300 == vwx400",fontsize=16,color="magenta"];213 -> 404[label="",style="dashed", color="magenta", weight=3]; 213 -> 405[label="",style="dashed", color="magenta", weight=3]; 214 -> 26[label="",style="dashed", color="red", weight=0]; 214[label="vwx300 == vwx400",fontsize=16,color="magenta"];214 -> 406[label="",style="dashed", color="magenta", weight=3]; 214 -> 407[label="",style="dashed", color="magenta", weight=3]; 215 -> 27[label="",style="dashed", color="red", weight=0]; 215[label="vwx300 == vwx400",fontsize=16,color="magenta"];215 -> 408[label="",style="dashed", color="magenta", weight=3]; 215 -> 409[label="",style="dashed", color="magenta", weight=3]; 216 -> 28[label="",style="dashed", color="red", weight=0]; 216[label="vwx300 == vwx400",fontsize=16,color="magenta"];216 -> 410[label="",style="dashed", color="magenta", weight=3]; 216 -> 411[label="",style="dashed", color="magenta", weight=3]; 217 -> 29[label="",style="dashed", color="red", weight=0]; 217[label="vwx300 == vwx400",fontsize=16,color="magenta"];217 -> 412[label="",style="dashed", color="magenta", weight=3]; 217 -> 413[label="",style="dashed", color="magenta", weight=3]; 218 -> 30[label="",style="dashed", color="red", weight=0]; 218[label="vwx300 == vwx400",fontsize=16,color="magenta"];218 -> 414[label="",style="dashed", color="magenta", weight=3]; 218 -> 415[label="",style="dashed", color="magenta", weight=3]; 258[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];2356[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];258 -> 2356[label="",style="solid", color="blue", weight=9]; 2356 -> 416[label="",style="solid", color="blue", weight=3]; 2357[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];258 -> 2357[label="",style="solid", color="blue", weight=9]; 2357 -> 417[label="",style="solid", color="blue", weight=3]; 2358[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];258 -> 2358[label="",style="solid", color="blue", weight=9]; 2358 -> 418[label="",style="solid", color="blue", weight=3]; 2359[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];258 -> 2359[label="",style="solid", color="blue", weight=9]; 2359 -> 419[label="",style="solid", color="blue", weight=3]; 2360[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];258 -> 2360[label="",style="solid", color="blue", weight=9]; 2360 -> 420[label="",style="solid", color="blue", weight=3]; 2361[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];258 -> 2361[label="",style="solid", color="blue", weight=9]; 2361 -> 421[label="",style="solid", color="blue", weight=3]; 2362[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];258 -> 2362[label="",style="solid", color="blue", weight=9]; 2362 -> 422[label="",style="solid", color="blue", weight=3]; 2363[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];258 -> 2363[label="",style="solid", color="blue", weight=9]; 2363 -> 423[label="",style="solid", color="blue", weight=3]; 2364[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];258 -> 2364[label="",style="solid", color="blue", weight=9]; 2364 -> 424[label="",style="solid", color="blue", weight=3]; 2365[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];258 -> 2365[label="",style="solid", color="blue", weight=9]; 2365 -> 425[label="",style="solid", color="blue", weight=3]; 2366[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];258 -> 2366[label="",style="solid", color="blue", weight=9]; 2366 -> 426[label="",style="solid", color="blue", weight=3]; 2367[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];258 -> 2367[label="",style="solid", color="blue", weight=9]; 2367 -> 427[label="",style="solid", color="blue", weight=3]; 2368[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];258 -> 2368[label="",style="solid", color="blue", weight=9]; 2368 -> 428[label="",style="solid", color="blue", weight=3]; 2369[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];258 -> 2369[label="",style="solid", color="blue", weight=9]; 2369 -> 429[label="",style="solid", color="blue", weight=3]; 259 -> 29[label="",style="dashed", color="red", weight=0]; 259[label="vwx301 == vwx401",fontsize=16,color="magenta"];259 -> 430[label="",style="dashed", color="magenta", weight=3]; 259 -> 431[label="",style="dashed", color="magenta", weight=3]; 1015[label="compare2 vwx22 vwx24 False",fontsize=16,color="black",shape="box"];1015 -> 1033[label="",style="solid", color="black", weight=3]; 1016[label="compare2 vwx22 vwx24 True",fontsize=16,color="black",shape="box"];1016 -> 1034[label="",style="solid", color="black", weight=3]; 1017 -> 17[label="",style="dashed", color="red", weight=0]; 1017[label="vwx12 == vwx14",fontsize=16,color="magenta"];1017 -> 1035[label="",style="dashed", color="magenta", weight=3]; 1017 -> 1036[label="",style="dashed", color="magenta", weight=3]; 1018 -> 18[label="",style="dashed", color="red", weight=0]; 1018[label="vwx12 == vwx14",fontsize=16,color="magenta"];1018 -> 1037[label="",style="dashed", color="magenta", weight=3]; 1018 -> 1038[label="",style="dashed", color="magenta", weight=3]; 1019 -> 19[label="",style="dashed", color="red", weight=0]; 1019[label="vwx12 == vwx14",fontsize=16,color="magenta"];1019 -> 1039[label="",style="dashed", color="magenta", weight=3]; 1019 -> 1040[label="",style="dashed", color="magenta", weight=3]; 1020 -> 20[label="",style="dashed", color="red", weight=0]; 1020[label="vwx12 == vwx14",fontsize=16,color="magenta"];1020 -> 1041[label="",style="dashed", color="magenta", weight=3]; 1020 -> 1042[label="",style="dashed", color="magenta", weight=3]; 1021 -> 21[label="",style="dashed", color="red", weight=0]; 1021[label="vwx12 == vwx14",fontsize=16,color="magenta"];1021 -> 1043[label="",style="dashed", color="magenta", weight=3]; 1021 -> 1044[label="",style="dashed", color="magenta", weight=3]; 1022 -> 22[label="",style="dashed", color="red", weight=0]; 1022[label="vwx12 == vwx14",fontsize=16,color="magenta"];1022 -> 1045[label="",style="dashed", color="magenta", weight=3]; 1022 -> 1046[label="",style="dashed", color="magenta", weight=3]; 1023 -> 23[label="",style="dashed", color="red", weight=0]; 1023[label="vwx12 == vwx14",fontsize=16,color="magenta"];1023 -> 1047[label="",style="dashed", color="magenta", weight=3]; 1023 -> 1048[label="",style="dashed", color="magenta", weight=3]; 1024 -> 24[label="",style="dashed", color="red", weight=0]; 1024[label="vwx12 == vwx14",fontsize=16,color="magenta"];1024 -> 1049[label="",style="dashed", color="magenta", weight=3]; 1024 -> 1050[label="",style="dashed", color="magenta", weight=3]; 1025 -> 25[label="",style="dashed", color="red", weight=0]; 1025[label="vwx12 == vwx14",fontsize=16,color="magenta"];1025 -> 1051[label="",style="dashed", color="magenta", weight=3]; 1025 -> 1052[label="",style="dashed", color="magenta", weight=3]; 1026 -> 26[label="",style="dashed", color="red", weight=0]; 1026[label="vwx12 == vwx14",fontsize=16,color="magenta"];1026 -> 1053[label="",style="dashed", color="magenta", weight=3]; 1026 -> 1054[label="",style="dashed", color="magenta", weight=3]; 1027 -> 27[label="",style="dashed", color="red", weight=0]; 1027[label="vwx12 == vwx14",fontsize=16,color="magenta"];1027 -> 1055[label="",style="dashed", color="magenta", weight=3]; 1027 -> 1056[label="",style="dashed", color="magenta", weight=3]; 1028 -> 28[label="",style="dashed", color="red", weight=0]; 1028[label="vwx12 == vwx14",fontsize=16,color="magenta"];1028 -> 1057[label="",style="dashed", color="magenta", weight=3]; 1028 -> 1058[label="",style="dashed", color="magenta", weight=3]; 1029 -> 29[label="",style="dashed", color="red", weight=0]; 1029[label="vwx12 == vwx14",fontsize=16,color="magenta"];1029 -> 1059[label="",style="dashed", color="magenta", weight=3]; 1029 -> 1060[label="",style="dashed", color="magenta", weight=3]; 1030 -> 30[label="",style="dashed", color="red", weight=0]; 1030[label="vwx12 == vwx14",fontsize=16,color="magenta"];1030 -> 1061[label="",style="dashed", color="magenta", weight=3]; 1030 -> 1062[label="",style="dashed", color="magenta", weight=3]; 235[label="vwx300 * vwx401",fontsize=16,color="black",shape="triangle"];235 -> 462[label="",style="solid", color="black", weight=3]; 236 -> 235[label="",style="dashed", color="red", weight=0]; 236[label="vwx301 * vwx400",fontsize=16,color="magenta"];236 -> 463[label="",style="dashed", color="magenta", weight=3]; 236 -> 464[label="",style="dashed", color="magenta", weight=3]; 264 -> 17[label="",style="dashed", color="red", weight=0]; 264[label="vwx300 == vwx400",fontsize=16,color="magenta"];264 -> 465[label="",style="dashed", color="magenta", weight=3]; 264 -> 466[label="",style="dashed", color="magenta", weight=3]; 265 -> 18[label="",style="dashed", color="red", weight=0]; 265[label="vwx300 == vwx400",fontsize=16,color="magenta"];265 -> 467[label="",style="dashed", color="magenta", weight=3]; 265 -> 468[label="",style="dashed", color="magenta", weight=3]; 266 -> 19[label="",style="dashed", color="red", weight=0]; 266[label="vwx300 == vwx400",fontsize=16,color="magenta"];266 -> 469[label="",style="dashed", color="magenta", weight=3]; 266 -> 470[label="",style="dashed", color="magenta", weight=3]; 267 -> 20[label="",style="dashed", color="red", weight=0]; 267[label="vwx300 == vwx400",fontsize=16,color="magenta"];267 -> 471[label="",style="dashed", color="magenta", weight=3]; 267 -> 472[label="",style="dashed", color="magenta", weight=3]; 268 -> 21[label="",style="dashed", color="red", weight=0]; 268[label="vwx300 == vwx400",fontsize=16,color="magenta"];268 -> 473[label="",style="dashed", color="magenta", weight=3]; 268 -> 474[label="",style="dashed", color="magenta", weight=3]; 269 -> 22[label="",style="dashed", color="red", weight=0]; 269[label="vwx300 == vwx400",fontsize=16,color="magenta"];269 -> 475[label="",style="dashed", color="magenta", weight=3]; 269 -> 476[label="",style="dashed", color="magenta", weight=3]; 270 -> 23[label="",style="dashed", color="red", weight=0]; 270[label="vwx300 == vwx400",fontsize=16,color="magenta"];270 -> 477[label="",style="dashed", color="magenta", weight=3]; 270 -> 478[label="",style="dashed", color="magenta", weight=3]; 271 -> 24[label="",style="dashed", color="red", weight=0]; 271[label="vwx300 == vwx400",fontsize=16,color="magenta"];271 -> 479[label="",style="dashed", color="magenta", weight=3]; 271 -> 480[label="",style="dashed", color="magenta", weight=3]; 272 -> 25[label="",style="dashed", color="red", weight=0]; 272[label="vwx300 == vwx400",fontsize=16,color="magenta"];272 -> 481[label="",style="dashed", color="magenta", weight=3]; 272 -> 482[label="",style="dashed", color="magenta", weight=3]; 273 -> 26[label="",style="dashed", color="red", weight=0]; 273[label="vwx300 == vwx400",fontsize=16,color="magenta"];273 -> 483[label="",style="dashed", color="magenta", weight=3]; 273 -> 484[label="",style="dashed", color="magenta", weight=3]; 274 -> 27[label="",style="dashed", color="red", weight=0]; 274[label="vwx300 == vwx400",fontsize=16,color="magenta"];274 -> 485[label="",style="dashed", color="magenta", weight=3]; 274 -> 486[label="",style="dashed", color="magenta", weight=3]; 275 -> 28[label="",style="dashed", color="red", weight=0]; 275[label="vwx300 == vwx400",fontsize=16,color="magenta"];275 -> 487[label="",style="dashed", color="magenta", weight=3]; 275 -> 488[label="",style="dashed", color="magenta", weight=3]; 276 -> 29[label="",style="dashed", color="red", weight=0]; 276[label="vwx300 == vwx400",fontsize=16,color="magenta"];276 -> 489[label="",style="dashed", color="magenta", weight=3]; 276 -> 490[label="",style="dashed", color="magenta", weight=3]; 277 -> 30[label="",style="dashed", color="red", weight=0]; 277[label="vwx300 == vwx400",fontsize=16,color="magenta"];277 -> 491[label="",style="dashed", color="magenta", weight=3]; 277 -> 492[label="",style="dashed", color="magenta", weight=3]; 278 -> 17[label="",style="dashed", color="red", weight=0]; 278[label="vwx301 == vwx401",fontsize=16,color="magenta"];278 -> 493[label="",style="dashed", color="magenta", weight=3]; 278 -> 494[label="",style="dashed", color="magenta", weight=3]; 279 -> 18[label="",style="dashed", color="red", weight=0]; 279[label="vwx301 == vwx401",fontsize=16,color="magenta"];279 -> 495[label="",style="dashed", color="magenta", weight=3]; 279 -> 496[label="",style="dashed", color="magenta", weight=3]; 280 -> 19[label="",style="dashed", color="red", weight=0]; 280[label="vwx301 == vwx401",fontsize=16,color="magenta"];280 -> 497[label="",style="dashed", color="magenta", weight=3]; 280 -> 498[label="",style="dashed", color="magenta", weight=3]; 281 -> 20[label="",style="dashed", color="red", weight=0]; 281[label="vwx301 == vwx401",fontsize=16,color="magenta"];281 -> 499[label="",style="dashed", color="magenta", weight=3]; 281 -> 500[label="",style="dashed", color="magenta", weight=3]; 282 -> 21[label="",style="dashed", color="red", weight=0]; 282[label="vwx301 == vwx401",fontsize=16,color="magenta"];282 -> 501[label="",style="dashed", color="magenta", weight=3]; 282 -> 502[label="",style="dashed", color="magenta", weight=3]; 283 -> 22[label="",style="dashed", color="red", weight=0]; 283[label="vwx301 == vwx401",fontsize=16,color="magenta"];283 -> 503[label="",style="dashed", color="magenta", weight=3]; 283 -> 504[label="",style="dashed", color="magenta", weight=3]; 284 -> 23[label="",style="dashed", color="red", weight=0]; 284[label="vwx301 == vwx401",fontsize=16,color="magenta"];284 -> 505[label="",style="dashed", color="magenta", weight=3]; 284 -> 506[label="",style="dashed", color="magenta", weight=3]; 285 -> 24[label="",style="dashed", color="red", weight=0]; 285[label="vwx301 == vwx401",fontsize=16,color="magenta"];285 -> 507[label="",style="dashed", color="magenta", weight=3]; 285 -> 508[label="",style="dashed", color="magenta", weight=3]; 286 -> 25[label="",style="dashed", color="red", weight=0]; 286[label="vwx301 == vwx401",fontsize=16,color="magenta"];286 -> 509[label="",style="dashed", color="magenta", weight=3]; 286 -> 510[label="",style="dashed", color="magenta", weight=3]; 287 -> 26[label="",style="dashed", color="red", weight=0]; 287[label="vwx301 == vwx401",fontsize=16,color="magenta"];287 -> 511[label="",style="dashed", color="magenta", weight=3]; 287 -> 512[label="",style="dashed", color="magenta", weight=3]; 288 -> 27[label="",style="dashed", color="red", weight=0]; 288[label="vwx301 == vwx401",fontsize=16,color="magenta"];288 -> 513[label="",style="dashed", color="magenta", weight=3]; 288 -> 514[label="",style="dashed", color="magenta", weight=3]; 289 -> 28[label="",style="dashed", color="red", weight=0]; 289[label="vwx301 == vwx401",fontsize=16,color="magenta"];289 -> 515[label="",style="dashed", color="magenta", weight=3]; 289 -> 516[label="",style="dashed", color="magenta", weight=3]; 290 -> 29[label="",style="dashed", color="red", weight=0]; 290[label="vwx301 == vwx401",fontsize=16,color="magenta"];290 -> 517[label="",style="dashed", color="magenta", weight=3]; 290 -> 518[label="",style="dashed", color="magenta", weight=3]; 291 -> 30[label="",style="dashed", color="red", weight=0]; 291[label="vwx301 == vwx401",fontsize=16,color="magenta"];291 -> 519[label="",style="dashed", color="magenta", weight=3]; 291 -> 520[label="",style="dashed", color="magenta", weight=3]; 292[label="False && vwx39",fontsize=16,color="black",shape="box"];292 -> 521[label="",style="solid", color="black", weight=3]; 293[label="True && vwx39",fontsize=16,color="black",shape="box"];293 -> 522[label="",style="solid", color="black", weight=3]; 294[label="primEqInt (Pos (Succ vwx3000)) (Pos (Succ vwx4000))",fontsize=16,color="black",shape="box"];294 -> 523[label="",style="solid", color="black", weight=3]; 295[label="primEqInt (Pos (Succ vwx3000)) (Pos Zero)",fontsize=16,color="black",shape="box"];295 -> 524[label="",style="solid", color="black", weight=3]; 296[label="False",fontsize=16,color="green",shape="box"];297[label="primEqInt (Pos Zero) (Pos (Succ vwx4000))",fontsize=16,color="black",shape="box"];297 -> 525[label="",style="solid", color="black", weight=3]; 298[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];298 -> 526[label="",style="solid", color="black", weight=3]; 299[label="primEqInt (Pos Zero) (Neg (Succ vwx4000))",fontsize=16,color="black",shape="box"];299 -> 527[label="",style="solid", color="black", weight=3]; 300[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];300 -> 528[label="",style="solid", color="black", weight=3]; 301[label="False",fontsize=16,color="green",shape="box"];302[label="primEqInt (Neg (Succ vwx3000)) (Neg (Succ vwx4000))",fontsize=16,color="black",shape="box"];302 -> 529[label="",style="solid", color="black", weight=3]; 303[label="primEqInt (Neg (Succ vwx3000)) (Neg Zero)",fontsize=16,color="black",shape="box"];303 -> 530[label="",style="solid", color="black", weight=3]; 304[label="primEqInt (Neg Zero) (Pos (Succ vwx4000))",fontsize=16,color="black",shape="box"];304 -> 531[label="",style="solid", color="black", weight=3]; 305[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];305 -> 532[label="",style="solid", color="black", weight=3]; 306[label="primEqInt (Neg Zero) (Neg (Succ vwx4000))",fontsize=16,color="black",shape="box"];306 -> 533[label="",style="solid", color="black", weight=3]; 307[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];307 -> 534[label="",style="solid", color="black", weight=3]; 308 -> 19[label="",style="dashed", color="red", weight=0]; 308[label="vwx300 == vwx400",fontsize=16,color="magenta"];308 -> 535[label="",style="dashed", color="magenta", weight=3]; 308 -> 536[label="",style="dashed", color="magenta", weight=3]; 309 -> 21[label="",style="dashed", color="red", weight=0]; 309[label="vwx300 == vwx400",fontsize=16,color="magenta"];309 -> 537[label="",style="dashed", color="magenta", weight=3]; 309 -> 538[label="",style="dashed", color="magenta", weight=3]; 310 -> 19[label="",style="dashed", color="red", weight=0]; 310[label="vwx301 == vwx401",fontsize=16,color="magenta"];310 -> 539[label="",style="dashed", color="magenta", weight=3]; 310 -> 540[label="",style="dashed", color="magenta", weight=3]; 311 -> 21[label="",style="dashed", color="red", weight=0]; 311[label="vwx301 == vwx401",fontsize=16,color="magenta"];311 -> 541[label="",style="dashed", color="magenta", weight=3]; 311 -> 542[label="",style="dashed", color="magenta", weight=3]; 312[label="vwx300",fontsize=16,color="green",shape="box"];313[label="vwx400",fontsize=16,color="green",shape="box"];314[label="vwx300",fontsize=16,color="green",shape="box"];315[label="vwx400",fontsize=16,color="green",shape="box"];316[label="vwx300",fontsize=16,color="green",shape="box"];317[label="vwx400",fontsize=16,color="green",shape="box"];318[label="vwx300",fontsize=16,color="green",shape="box"];319[label="vwx400",fontsize=16,color="green",shape="box"];320[label="vwx300",fontsize=16,color="green",shape="box"];321[label="vwx400",fontsize=16,color="green",shape="box"];322[label="vwx300",fontsize=16,color="green",shape="box"];323[label="vwx400",fontsize=16,color="green",shape="box"];324[label="vwx300",fontsize=16,color="green",shape="box"];325[label="vwx400",fontsize=16,color="green",shape="box"];326[label="vwx300",fontsize=16,color="green",shape="box"];327[label="vwx400",fontsize=16,color="green",shape="box"];328[label="vwx300",fontsize=16,color="green",shape="box"];329[label="vwx400",fontsize=16,color="green",shape="box"];330[label="vwx300",fontsize=16,color="green",shape="box"];331[label="vwx400",fontsize=16,color="green",shape="box"];332[label="vwx300",fontsize=16,color="green",shape="box"];333[label="vwx400",fontsize=16,color="green",shape="box"];334[label="vwx300",fontsize=16,color="green",shape="box"];335[label="vwx400",fontsize=16,color="green",shape="box"];336[label="vwx300",fontsize=16,color="green",shape="box"];337[label="vwx400",fontsize=16,color="green",shape="box"];338[label="vwx300",fontsize=16,color="green",shape="box"];339[label="vwx400",fontsize=16,color="green",shape="box"];340[label="vwx300",fontsize=16,color="green",shape="box"];341[label="vwx400",fontsize=16,color="green",shape="box"];342[label="vwx300",fontsize=16,color="green",shape="box"];343[label="vwx400",fontsize=16,color="green",shape="box"];344[label="vwx300",fontsize=16,color="green",shape="box"];345[label="vwx400",fontsize=16,color="green",shape="box"];346[label="vwx300",fontsize=16,color="green",shape="box"];347[label="vwx400",fontsize=16,color="green",shape="box"];348[label="vwx300",fontsize=16,color="green",shape="box"];349[label="vwx400",fontsize=16,color="green",shape="box"];350[label="vwx300",fontsize=16,color="green",shape="box"];351[label="vwx400",fontsize=16,color="green",shape="box"];352[label="vwx300",fontsize=16,color="green",shape="box"];353[label="vwx400",fontsize=16,color="green",shape="box"];354[label="vwx300",fontsize=16,color="green",shape="box"];355[label="vwx400",fontsize=16,color="green",shape="box"];356[label="vwx300",fontsize=16,color="green",shape="box"];357[label="vwx400",fontsize=16,color="green",shape="box"];358[label="vwx300",fontsize=16,color="green",shape="box"];359[label="vwx400",fontsize=16,color="green",shape="box"];360[label="vwx300",fontsize=16,color="green",shape="box"];361[label="vwx400",fontsize=16,color="green",shape="box"];362[label="vwx300",fontsize=16,color="green",shape="box"];363[label="vwx400",fontsize=16,color="green",shape="box"];364[label="vwx300",fontsize=16,color="green",shape="box"];365[label="vwx400",fontsize=16,color="green",shape="box"];366[label="vwx300",fontsize=16,color="green",shape="box"];367[label="vwx400",fontsize=16,color="green",shape="box"];368 -> 17[label="",style="dashed", color="red", weight=0]; 368[label="vwx300 == vwx400",fontsize=16,color="magenta"];368 -> 543[label="",style="dashed", color="magenta", weight=3]; 368 -> 544[label="",style="dashed", color="magenta", weight=3]; 369 -> 18[label="",style="dashed", color="red", weight=0]; 369[label="vwx300 == vwx400",fontsize=16,color="magenta"];369 -> 545[label="",style="dashed", color="magenta", weight=3]; 369 -> 546[label="",style="dashed", color="magenta", weight=3]; 370 -> 19[label="",style="dashed", color="red", weight=0]; 370[label="vwx300 == vwx400",fontsize=16,color="magenta"];370 -> 547[label="",style="dashed", color="magenta", weight=3]; 370 -> 548[label="",style="dashed", color="magenta", weight=3]; 371 -> 20[label="",style="dashed", color="red", weight=0]; 371[label="vwx300 == vwx400",fontsize=16,color="magenta"];371 -> 549[label="",style="dashed", color="magenta", weight=3]; 371 -> 550[label="",style="dashed", color="magenta", weight=3]; 372 -> 21[label="",style="dashed", color="red", weight=0]; 372[label="vwx300 == vwx400",fontsize=16,color="magenta"];372 -> 551[label="",style="dashed", color="magenta", weight=3]; 372 -> 552[label="",style="dashed", color="magenta", weight=3]; 373 -> 22[label="",style="dashed", color="red", weight=0]; 373[label="vwx300 == vwx400",fontsize=16,color="magenta"];373 -> 553[label="",style="dashed", color="magenta", weight=3]; 373 -> 554[label="",style="dashed", color="magenta", weight=3]; 374 -> 23[label="",style="dashed", color="red", weight=0]; 374[label="vwx300 == vwx400",fontsize=16,color="magenta"];374 -> 555[label="",style="dashed", color="magenta", weight=3]; 374 -> 556[label="",style="dashed", color="magenta", weight=3]; 375 -> 24[label="",style="dashed", color="red", weight=0]; 375[label="vwx300 == vwx400",fontsize=16,color="magenta"];375 -> 557[label="",style="dashed", color="magenta", weight=3]; 375 -> 558[label="",style="dashed", color="magenta", weight=3]; 376 -> 25[label="",style="dashed", color="red", weight=0]; 376[label="vwx300 == vwx400",fontsize=16,color="magenta"];376 -> 559[label="",style="dashed", color="magenta", weight=3]; 376 -> 560[label="",style="dashed", color="magenta", weight=3]; 377 -> 26[label="",style="dashed", color="red", weight=0]; 377[label="vwx300 == vwx400",fontsize=16,color="magenta"];377 -> 561[label="",style="dashed", color="magenta", weight=3]; 377 -> 562[label="",style="dashed", color="magenta", weight=3]; 378 -> 27[label="",style="dashed", color="red", weight=0]; 378[label="vwx300 == vwx400",fontsize=16,color="magenta"];378 -> 563[label="",style="dashed", color="magenta", weight=3]; 378 -> 564[label="",style="dashed", color="magenta", weight=3]; 379 -> 28[label="",style="dashed", color="red", weight=0]; 379[label="vwx300 == vwx400",fontsize=16,color="magenta"];379 -> 565[label="",style="dashed", color="magenta", weight=3]; 379 -> 566[label="",style="dashed", color="magenta", weight=3]; 380 -> 29[label="",style="dashed", color="red", weight=0]; 380[label="vwx300 == vwx400",fontsize=16,color="magenta"];380 -> 567[label="",style="dashed", color="magenta", weight=3]; 380 -> 568[label="",style="dashed", color="magenta", weight=3]; 381 -> 30[label="",style="dashed", color="red", weight=0]; 381[label="vwx300 == vwx400",fontsize=16,color="magenta"];381 -> 569[label="",style="dashed", color="magenta", weight=3]; 381 -> 570[label="",style="dashed", color="magenta", weight=3]; 382[label="vwx301 == vwx401",fontsize=16,color="blue",shape="box"];2370[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];382 -> 2370[label="",style="solid", color="blue", weight=9]; 2370 -> 571[label="",style="solid", color="blue", weight=3]; 2371[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];382 -> 2371[label="",style="solid", color="blue", weight=9]; 2371 -> 572[label="",style="solid", color="blue", weight=3]; 2372[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];382 -> 2372[label="",style="solid", color="blue", weight=9]; 2372 -> 573[label="",style="solid", color="blue", weight=3]; 2373[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];382 -> 2373[label="",style="solid", color="blue", weight=9]; 2373 -> 574[label="",style="solid", color="blue", weight=3]; 2374[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];382 -> 2374[label="",style="solid", color="blue", weight=9]; 2374 -> 575[label="",style="solid", color="blue", weight=3]; 2375[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];382 -> 2375[label="",style="solid", color="blue", weight=9]; 2375 -> 576[label="",style="solid", color="blue", weight=3]; 2376[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];382 -> 2376[label="",style="solid", color="blue", weight=9]; 2376 -> 577[label="",style="solid", color="blue", weight=3]; 2377[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];382 -> 2377[label="",style="solid", color="blue", weight=9]; 2377 -> 578[label="",style="solid", color="blue", weight=3]; 2378[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];382 -> 2378[label="",style="solid", color="blue", weight=9]; 2378 -> 579[label="",style="solid", color="blue", weight=3]; 2379[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];382 -> 2379[label="",style="solid", color="blue", weight=9]; 2379 -> 580[label="",style="solid", color="blue", weight=3]; 2380[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];382 -> 2380[label="",style="solid", color="blue", weight=9]; 2380 -> 581[label="",style="solid", color="blue", weight=3]; 2381[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];382 -> 2381[label="",style="solid", color="blue", weight=9]; 2381 -> 582[label="",style="solid", color="blue", weight=3]; 2382[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];382 -> 2382[label="",style="solid", color="blue", weight=9]; 2382 -> 583[label="",style="solid", color="blue", weight=3]; 2383[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];382 -> 2383[label="",style="solid", color="blue", weight=9]; 2383 -> 584[label="",style="solid", color="blue", weight=3]; 383[label="vwx302 == vwx402",fontsize=16,color="blue",shape="box"];2384[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];383 -> 2384[label="",style="solid", color="blue", weight=9]; 2384 -> 585[label="",style="solid", color="blue", weight=3]; 2385[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];383 -> 2385[label="",style="solid", color="blue", weight=9]; 2385 -> 586[label="",style="solid", color="blue", weight=3]; 2386[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];383 -> 2386[label="",style="solid", color="blue", weight=9]; 2386 -> 587[label="",style="solid", color="blue", weight=3]; 2387[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];383 -> 2387[label="",style="solid", color="blue", weight=9]; 2387 -> 588[label="",style="solid", color="blue", weight=3]; 2388[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];383 -> 2388[label="",style="solid", color="blue", weight=9]; 2388 -> 589[label="",style="solid", color="blue", weight=3]; 2389[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];383 -> 2389[label="",style="solid", color="blue", weight=9]; 2389 -> 590[label="",style="solid", color="blue", weight=3]; 2390[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];383 -> 2390[label="",style="solid", color="blue", weight=9]; 2390 -> 591[label="",style="solid", color="blue", weight=3]; 2391[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];383 -> 2391[label="",style="solid", color="blue", weight=9]; 2391 -> 592[label="",style="solid", color="blue", weight=3]; 2392[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];383 -> 2392[label="",style="solid", color="blue", weight=9]; 2392 -> 593[label="",style="solid", color="blue", weight=3]; 2393[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];383 -> 2393[label="",style="solid", color="blue", weight=9]; 2393 -> 594[label="",style="solid", color="blue", weight=3]; 2394[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];383 -> 2394[label="",style="solid", color="blue", weight=9]; 2394 -> 595[label="",style="solid", color="blue", weight=3]; 2395[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];383 -> 2395[label="",style="solid", color="blue", weight=9]; 2395 -> 596[label="",style="solid", color="blue", weight=3]; 2396[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];383 -> 2396[label="",style="solid", color="blue", weight=9]; 2396 -> 597[label="",style="solid", color="blue", weight=3]; 2397[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];383 -> 2397[label="",style="solid", color="blue", weight=9]; 2397 -> 598[label="",style="solid", color="blue", weight=3]; 384 -> 235[label="",style="dashed", color="red", weight=0]; 384[label="vwx300 * vwx401",fontsize=16,color="magenta"];384 -> 599[label="",style="dashed", color="magenta", weight=3]; 384 -> 600[label="",style="dashed", color="magenta", weight=3]; 385 -> 235[label="",style="dashed", color="red", weight=0]; 385[label="vwx301 * vwx400",fontsize=16,color="magenta"];385 -> 601[label="",style="dashed", color="magenta", weight=3]; 385 -> 602[label="",style="dashed", color="magenta", weight=3]; 386[label="primEqNat (Succ vwx3000) vwx400",fontsize=16,color="burlywood",shape="box"];2398[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];386 -> 2398[label="",style="solid", color="burlywood", weight=9]; 2398 -> 603[label="",style="solid", color="burlywood", weight=3]; 2399[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];386 -> 2399[label="",style="solid", color="burlywood", weight=9]; 2399 -> 604[label="",style="solid", color="burlywood", weight=3]; 387[label="primEqNat Zero vwx400",fontsize=16,color="burlywood",shape="box"];2400[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];387 -> 2400[label="",style="solid", color="burlywood", weight=9]; 2400 -> 605[label="",style="solid", color="burlywood", weight=3]; 2401[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];387 -> 2401[label="",style="solid", color="burlywood", weight=9]; 2401 -> 606[label="",style="solid", color="burlywood", weight=3]; 388[label="vwx300",fontsize=16,color="green",shape="box"];389[label="vwx400",fontsize=16,color="green",shape="box"];390[label="vwx300",fontsize=16,color="green",shape="box"];391[label="vwx400",fontsize=16,color="green",shape="box"];392[label="vwx300",fontsize=16,color="green",shape="box"];393[label="vwx400",fontsize=16,color="green",shape="box"];394[label="vwx300",fontsize=16,color="green",shape="box"];395[label="vwx400",fontsize=16,color="green",shape="box"];396[label="vwx300",fontsize=16,color="green",shape="box"];397[label="vwx400",fontsize=16,color="green",shape="box"];398[label="vwx300",fontsize=16,color="green",shape="box"];399[label="vwx400",fontsize=16,color="green",shape="box"];400[label="vwx300",fontsize=16,color="green",shape="box"];401[label="vwx400",fontsize=16,color="green",shape="box"];402[label="vwx300",fontsize=16,color="green",shape="box"];403[label="vwx400",fontsize=16,color="green",shape="box"];404[label="vwx300",fontsize=16,color="green",shape="box"];405[label="vwx400",fontsize=16,color="green",shape="box"];406[label="vwx300",fontsize=16,color="green",shape="box"];407[label="vwx400",fontsize=16,color="green",shape="box"];408[label="vwx300",fontsize=16,color="green",shape="box"];409[label="vwx400",fontsize=16,color="green",shape="box"];410[label="vwx300",fontsize=16,color="green",shape="box"];411[label="vwx400",fontsize=16,color="green",shape="box"];412[label="vwx300",fontsize=16,color="green",shape="box"];413[label="vwx400",fontsize=16,color="green",shape="box"];414[label="vwx300",fontsize=16,color="green",shape="box"];415[label="vwx400",fontsize=16,color="green",shape="box"];416 -> 17[label="",style="dashed", color="red", weight=0]; 416[label="vwx300 == vwx400",fontsize=16,color="magenta"];416 -> 607[label="",style="dashed", color="magenta", weight=3]; 416 -> 608[label="",style="dashed", color="magenta", weight=3]; 417 -> 18[label="",style="dashed", color="red", weight=0]; 417[label="vwx300 == vwx400",fontsize=16,color="magenta"];417 -> 609[label="",style="dashed", color="magenta", weight=3]; 417 -> 610[label="",style="dashed", color="magenta", weight=3]; 418 -> 19[label="",style="dashed", color="red", weight=0]; 418[label="vwx300 == vwx400",fontsize=16,color="magenta"];418 -> 611[label="",style="dashed", color="magenta", weight=3]; 418 -> 612[label="",style="dashed", color="magenta", weight=3]; 419 -> 20[label="",style="dashed", color="red", weight=0]; 419[label="vwx300 == vwx400",fontsize=16,color="magenta"];419 -> 613[label="",style="dashed", color="magenta", weight=3]; 419 -> 614[label="",style="dashed", color="magenta", weight=3]; 420 -> 21[label="",style="dashed", color="red", weight=0]; 420[label="vwx300 == vwx400",fontsize=16,color="magenta"];420 -> 615[label="",style="dashed", color="magenta", weight=3]; 420 -> 616[label="",style="dashed", color="magenta", weight=3]; 421 -> 22[label="",style="dashed", color="red", weight=0]; 421[label="vwx300 == vwx400",fontsize=16,color="magenta"];421 -> 617[label="",style="dashed", color="magenta", weight=3]; 421 -> 618[label="",style="dashed", color="magenta", weight=3]; 422 -> 23[label="",style="dashed", color="red", weight=0]; 422[label="vwx300 == vwx400",fontsize=16,color="magenta"];422 -> 619[label="",style="dashed", color="magenta", weight=3]; 422 -> 620[label="",style="dashed", color="magenta", weight=3]; 423 -> 24[label="",style="dashed", color="red", weight=0]; 423[label="vwx300 == vwx400",fontsize=16,color="magenta"];423 -> 621[label="",style="dashed", color="magenta", weight=3]; 423 -> 622[label="",style="dashed", color="magenta", weight=3]; 424 -> 25[label="",style="dashed", color="red", weight=0]; 424[label="vwx300 == vwx400",fontsize=16,color="magenta"];424 -> 623[label="",style="dashed", color="magenta", weight=3]; 424 -> 624[label="",style="dashed", color="magenta", weight=3]; 425 -> 26[label="",style="dashed", color="red", weight=0]; 425[label="vwx300 == vwx400",fontsize=16,color="magenta"];425 -> 625[label="",style="dashed", color="magenta", weight=3]; 425 -> 626[label="",style="dashed", color="magenta", weight=3]; 426 -> 27[label="",style="dashed", color="red", weight=0]; 426[label="vwx300 == vwx400",fontsize=16,color="magenta"];426 -> 627[label="",style="dashed", color="magenta", weight=3]; 426 -> 628[label="",style="dashed", color="magenta", weight=3]; 427 -> 28[label="",style="dashed", color="red", weight=0]; 427[label="vwx300 == vwx400",fontsize=16,color="magenta"];427 -> 629[label="",style="dashed", color="magenta", weight=3]; 427 -> 630[label="",style="dashed", color="magenta", weight=3]; 428 -> 29[label="",style="dashed", color="red", weight=0]; 428[label="vwx300 == vwx400",fontsize=16,color="magenta"];428 -> 631[label="",style="dashed", color="magenta", weight=3]; 428 -> 632[label="",style="dashed", color="magenta", weight=3]; 429 -> 30[label="",style="dashed", color="red", weight=0]; 429[label="vwx300 == vwx400",fontsize=16,color="magenta"];429 -> 633[label="",style="dashed", color="magenta", weight=3]; 429 -> 634[label="",style="dashed", color="magenta", weight=3]; 430[label="vwx301",fontsize=16,color="green",shape="box"];431[label="vwx401",fontsize=16,color="green",shape="box"];1033[label="compare1 vwx22 vwx24 (vwx22 <= vwx24)",fontsize=16,color="burlywood",shape="box"];2402[label="vwx22/(vwx220,vwx221)",fontsize=10,color="white",style="solid",shape="box"];1033 -> 2402[label="",style="solid", color="burlywood", weight=9]; 2402 -> 1067[label="",style="solid", color="burlywood", weight=3]; 1034[label="EQ",fontsize=16,color="green",shape="box"];1035[label="vwx12",fontsize=16,color="green",shape="box"];1036[label="vwx14",fontsize=16,color="green",shape="box"];1037[label="vwx12",fontsize=16,color="green",shape="box"];1038[label="vwx14",fontsize=16,color="green",shape="box"];1039[label="vwx12",fontsize=16,color="green",shape="box"];1040[label="vwx14",fontsize=16,color="green",shape="box"];1041[label="vwx12",fontsize=16,color="green",shape="box"];1042[label="vwx14",fontsize=16,color="green",shape="box"];1043[label="vwx12",fontsize=16,color="green",shape="box"];1044[label="vwx14",fontsize=16,color="green",shape="box"];1045[label="vwx12",fontsize=16,color="green",shape="box"];1046[label="vwx14",fontsize=16,color="green",shape="box"];1047[label="vwx12",fontsize=16,color="green",shape="box"];1048[label="vwx14",fontsize=16,color="green",shape="box"];1049[label="vwx12",fontsize=16,color="green",shape="box"];1050[label="vwx14",fontsize=16,color="green",shape="box"];1051[label="vwx12",fontsize=16,color="green",shape="box"];1052[label="vwx14",fontsize=16,color="green",shape="box"];1053[label="vwx12",fontsize=16,color="green",shape="box"];1054[label="vwx14",fontsize=16,color="green",shape="box"];1055[label="vwx12",fontsize=16,color="green",shape="box"];1056[label="vwx14",fontsize=16,color="green",shape="box"];1057[label="vwx12",fontsize=16,color="green",shape="box"];1058[label="vwx14",fontsize=16,color="green",shape="box"];1059[label="vwx12",fontsize=16,color="green",shape="box"];1060[label="vwx14",fontsize=16,color="green",shape="box"];1061[label="vwx12",fontsize=16,color="green",shape="box"];1062[label="vwx14",fontsize=16,color="green",shape="box"];462[label="primMulInt vwx300 vwx401",fontsize=16,color="burlywood",shape="triangle"];2403[label="vwx300/Pos vwx3000",fontsize=10,color="white",style="solid",shape="box"];462 -> 2403[label="",style="solid", color="burlywood", weight=9]; 2403 -> 636[label="",style="solid", color="burlywood", weight=3]; 2404[label="vwx300/Neg vwx3000",fontsize=10,color="white",style="solid",shape="box"];462 -> 2404[label="",style="solid", color="burlywood", weight=9]; 2404 -> 637[label="",style="solid", color="burlywood", weight=3]; 463[label="vwx400",fontsize=16,color="green",shape="box"];464[label="vwx301",fontsize=16,color="green",shape="box"];465[label="vwx300",fontsize=16,color="green",shape="box"];466[label="vwx400",fontsize=16,color="green",shape="box"];467[label="vwx300",fontsize=16,color="green",shape="box"];468[label="vwx400",fontsize=16,color="green",shape="box"];469[label="vwx300",fontsize=16,color="green",shape="box"];470[label="vwx400",fontsize=16,color="green",shape="box"];471[label="vwx300",fontsize=16,color="green",shape="box"];472[label="vwx400",fontsize=16,color="green",shape="box"];473[label="vwx300",fontsize=16,color="green",shape="box"];474[label="vwx400",fontsize=16,color="green",shape="box"];475[label="vwx300",fontsize=16,color="green",shape="box"];476[label="vwx400",fontsize=16,color="green",shape="box"];477[label="vwx300",fontsize=16,color="green",shape="box"];478[label="vwx400",fontsize=16,color="green",shape="box"];479[label="vwx300",fontsize=16,color="green",shape="box"];480[label="vwx400",fontsize=16,color="green",shape="box"];481[label="vwx300",fontsize=16,color="green",shape="box"];482[label="vwx400",fontsize=16,color="green",shape="box"];483[label="vwx300",fontsize=16,color="green",shape="box"];484[label="vwx400",fontsize=16,color="green",shape="box"];485[label="vwx300",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="vwx400",fontsize=16,color="green",shape="box"];489[label="vwx300",fontsize=16,color="green",shape="box"];490[label="vwx400",fontsize=16,color="green",shape="box"];491[label="vwx300",fontsize=16,color="green",shape="box"];492[label="vwx400",fontsize=16,color="green",shape="box"];493[label="vwx301",fontsize=16,color="green",shape="box"];494[label="vwx401",fontsize=16,color="green",shape="box"];495[label="vwx301",fontsize=16,color="green",shape="box"];496[label="vwx401",fontsize=16,color="green",shape="box"];497[label="vwx301",fontsize=16,color="green",shape="box"];498[label="vwx401",fontsize=16,color="green",shape="box"];499[label="vwx301",fontsize=16,color="green",shape="box"];500[label="vwx401",fontsize=16,color="green",shape="box"];501[label="vwx301",fontsize=16,color="green",shape="box"];502[label="vwx401",fontsize=16,color="green",shape="box"];503[label="vwx301",fontsize=16,color="green",shape="box"];504[label="vwx401",fontsize=16,color="green",shape="box"];505[label="vwx301",fontsize=16,color="green",shape="box"];506[label="vwx401",fontsize=16,color="green",shape="box"];507[label="vwx301",fontsize=16,color="green",shape="box"];508[label="vwx401",fontsize=16,color="green",shape="box"];509[label="vwx301",fontsize=16,color="green",shape="box"];510[label="vwx401",fontsize=16,color="green",shape="box"];511[label="vwx301",fontsize=16,color="green",shape="box"];512[label="vwx401",fontsize=16,color="green",shape="box"];513[label="vwx301",fontsize=16,color="green",shape="box"];514[label="vwx401",fontsize=16,color="green",shape="box"];515[label="vwx301",fontsize=16,color="green",shape="box"];516[label="vwx401",fontsize=16,color="green",shape="box"];517[label="vwx301",fontsize=16,color="green",shape="box"];518[label="vwx401",fontsize=16,color="green",shape="box"];519[label="vwx301",fontsize=16,color="green",shape="box"];520[label="vwx401",fontsize=16,color="green",shape="box"];521[label="False",fontsize=16,color="green",shape="box"];522[label="vwx39",fontsize=16,color="green",shape="box"];523 -> 204[label="",style="dashed", color="red", weight=0]; 523[label="primEqNat vwx3000 vwx4000",fontsize=16,color="magenta"];523 -> 638[label="",style="dashed", color="magenta", weight=3]; 523 -> 639[label="",style="dashed", color="magenta", weight=3]; 524[label="False",fontsize=16,color="green",shape="box"];525[label="False",fontsize=16,color="green",shape="box"];526[label="True",fontsize=16,color="green",shape="box"];527[label="False",fontsize=16,color="green",shape="box"];528[label="True",fontsize=16,color="green",shape="box"];529 -> 204[label="",style="dashed", color="red", weight=0]; 529[label="primEqNat vwx3000 vwx4000",fontsize=16,color="magenta"];529 -> 640[label="",style="dashed", color="magenta", weight=3]; 529 -> 641[label="",style="dashed", color="magenta", weight=3]; 530[label="False",fontsize=16,color="green",shape="box"];531[label="False",fontsize=16,color="green",shape="box"];532[label="True",fontsize=16,color="green",shape="box"];533[label="False",fontsize=16,color="green",shape="box"];534[label="True",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="vwx301",fontsize=16,color="green",shape="box"];540[label="vwx401",fontsize=16,color="green",shape="box"];541[label="vwx301",fontsize=16,color="green",shape="box"];542[label="vwx401",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[label="vwx300",fontsize=16,color="green",shape="box"];546[label="vwx400",fontsize=16,color="green",shape="box"];547[label="vwx300",fontsize=16,color="green",shape="box"];548[label="vwx400",fontsize=16,color="green",shape="box"];549[label="vwx300",fontsize=16,color="green",shape="box"];550[label="vwx400",fontsize=16,color="green",shape="box"];551[label="vwx300",fontsize=16,color="green",shape="box"];552[label="vwx400",fontsize=16,color="green",shape="box"];553[label="vwx300",fontsize=16,color="green",shape="box"];554[label="vwx400",fontsize=16,color="green",shape="box"];555[label="vwx300",fontsize=16,color="green",shape="box"];556[label="vwx400",fontsize=16,color="green",shape="box"];557[label="vwx300",fontsize=16,color="green",shape="box"];558[label="vwx400",fontsize=16,color="green",shape="box"];559[label="vwx300",fontsize=16,color="green",shape="box"];560[label="vwx400",fontsize=16,color="green",shape="box"];561[label="vwx300",fontsize=16,color="green",shape="box"];562[label="vwx400",fontsize=16,color="green",shape="box"];563[label="vwx300",fontsize=16,color="green",shape="box"];564[label="vwx400",fontsize=16,color="green",shape="box"];565[label="vwx300",fontsize=16,color="green",shape="box"];566[label="vwx400",fontsize=16,color="green",shape="box"];567[label="vwx300",fontsize=16,color="green",shape="box"];568[label="vwx400",fontsize=16,color="green",shape="box"];569[label="vwx300",fontsize=16,color="green",shape="box"];570[label="vwx400",fontsize=16,color="green",shape="box"];571 -> 17[label="",style="dashed", color="red", weight=0]; 571[label="vwx301 == vwx401",fontsize=16,color="magenta"];571 -> 642[label="",style="dashed", color="magenta", weight=3]; 571 -> 643[label="",style="dashed", color="magenta", weight=3]; 572 -> 18[label="",style="dashed", color="red", weight=0]; 572[label="vwx301 == vwx401",fontsize=16,color="magenta"];572 -> 644[label="",style="dashed", color="magenta", weight=3]; 572 -> 645[label="",style="dashed", color="magenta", weight=3]; 573 -> 19[label="",style="dashed", color="red", weight=0]; 573[label="vwx301 == vwx401",fontsize=16,color="magenta"];573 -> 646[label="",style="dashed", color="magenta", weight=3]; 573 -> 647[label="",style="dashed", color="magenta", weight=3]; 574 -> 20[label="",style="dashed", color="red", weight=0]; 574[label="vwx301 == vwx401",fontsize=16,color="magenta"];574 -> 648[label="",style="dashed", color="magenta", weight=3]; 574 -> 649[label="",style="dashed", color="magenta", weight=3]; 575 -> 21[label="",style="dashed", color="red", weight=0]; 575[label="vwx301 == vwx401",fontsize=16,color="magenta"];575 -> 650[label="",style="dashed", color="magenta", weight=3]; 575 -> 651[label="",style="dashed", color="magenta", weight=3]; 576 -> 22[label="",style="dashed", color="red", weight=0]; 576[label="vwx301 == vwx401",fontsize=16,color="magenta"];576 -> 652[label="",style="dashed", color="magenta", weight=3]; 576 -> 653[label="",style="dashed", color="magenta", weight=3]; 577 -> 23[label="",style="dashed", color="red", weight=0]; 577[label="vwx301 == vwx401",fontsize=16,color="magenta"];577 -> 654[label="",style="dashed", color="magenta", weight=3]; 577 -> 655[label="",style="dashed", color="magenta", weight=3]; 578 -> 24[label="",style="dashed", color="red", weight=0]; 578[label="vwx301 == vwx401",fontsize=16,color="magenta"];578 -> 656[label="",style="dashed", color="magenta", weight=3]; 578 -> 657[label="",style="dashed", color="magenta", weight=3]; 579 -> 25[label="",style="dashed", color="red", weight=0]; 579[label="vwx301 == vwx401",fontsize=16,color="magenta"];579 -> 658[label="",style="dashed", color="magenta", weight=3]; 579 -> 659[label="",style="dashed", color="magenta", weight=3]; 580 -> 26[label="",style="dashed", color="red", weight=0]; 580[label="vwx301 == vwx401",fontsize=16,color="magenta"];580 -> 660[label="",style="dashed", color="magenta", weight=3]; 580 -> 661[label="",style="dashed", color="magenta", weight=3]; 581 -> 27[label="",style="dashed", color="red", weight=0]; 581[label="vwx301 == vwx401",fontsize=16,color="magenta"];581 -> 662[label="",style="dashed", color="magenta", weight=3]; 581 -> 663[label="",style="dashed", color="magenta", weight=3]; 582 -> 28[label="",style="dashed", color="red", weight=0]; 582[label="vwx301 == vwx401",fontsize=16,color="magenta"];582 -> 664[label="",style="dashed", color="magenta", weight=3]; 582 -> 665[label="",style="dashed", color="magenta", weight=3]; 583 -> 29[label="",style="dashed", color="red", weight=0]; 583[label="vwx301 == vwx401",fontsize=16,color="magenta"];583 -> 666[label="",style="dashed", color="magenta", weight=3]; 583 -> 667[label="",style="dashed", color="magenta", weight=3]; 584 -> 30[label="",style="dashed", color="red", weight=0]; 584[label="vwx301 == vwx401",fontsize=16,color="magenta"];584 -> 668[label="",style="dashed", color="magenta", weight=3]; 584 -> 669[label="",style="dashed", color="magenta", weight=3]; 585 -> 17[label="",style="dashed", color="red", weight=0]; 585[label="vwx302 == vwx402",fontsize=16,color="magenta"];585 -> 670[label="",style="dashed", color="magenta", weight=3]; 585 -> 671[label="",style="dashed", color="magenta", weight=3]; 586 -> 18[label="",style="dashed", color="red", weight=0]; 586[label="vwx302 == vwx402",fontsize=16,color="magenta"];586 -> 672[label="",style="dashed", color="magenta", weight=3]; 586 -> 673[label="",style="dashed", color="magenta", weight=3]; 587 -> 19[label="",style="dashed", color="red", weight=0]; 587[label="vwx302 == vwx402",fontsize=16,color="magenta"];587 -> 674[label="",style="dashed", color="magenta", weight=3]; 587 -> 675[label="",style="dashed", color="magenta", weight=3]; 588 -> 20[label="",style="dashed", color="red", weight=0]; 588[label="vwx302 == vwx402",fontsize=16,color="magenta"];588 -> 676[label="",style="dashed", color="magenta", weight=3]; 588 -> 677[label="",style="dashed", color="magenta", weight=3]; 589 -> 21[label="",style="dashed", color="red", weight=0]; 589[label="vwx302 == vwx402",fontsize=16,color="magenta"];589 -> 678[label="",style="dashed", color="magenta", weight=3]; 589 -> 679[label="",style="dashed", color="magenta", weight=3]; 590 -> 22[label="",style="dashed", color="red", weight=0]; 590[label="vwx302 == vwx402",fontsize=16,color="magenta"];590 -> 680[label="",style="dashed", color="magenta", weight=3]; 590 -> 681[label="",style="dashed", color="magenta", weight=3]; 591 -> 23[label="",style="dashed", color="red", weight=0]; 591[label="vwx302 == vwx402",fontsize=16,color="magenta"];591 -> 682[label="",style="dashed", color="magenta", weight=3]; 591 -> 683[label="",style="dashed", color="magenta", weight=3]; 592 -> 24[label="",style="dashed", color="red", weight=0]; 592[label="vwx302 == vwx402",fontsize=16,color="magenta"];592 -> 684[label="",style="dashed", color="magenta", weight=3]; 592 -> 685[label="",style="dashed", color="magenta", weight=3]; 593 -> 25[label="",style="dashed", color="red", weight=0]; 593[label="vwx302 == vwx402",fontsize=16,color="magenta"];593 -> 686[label="",style="dashed", color="magenta", weight=3]; 593 -> 687[label="",style="dashed", color="magenta", weight=3]; 594 -> 26[label="",style="dashed", color="red", weight=0]; 594[label="vwx302 == vwx402",fontsize=16,color="magenta"];594 -> 688[label="",style="dashed", color="magenta", weight=3]; 594 -> 689[label="",style="dashed", color="magenta", weight=3]; 595 -> 27[label="",style="dashed", color="red", weight=0]; 595[label="vwx302 == vwx402",fontsize=16,color="magenta"];595 -> 690[label="",style="dashed", color="magenta", weight=3]; 595 -> 691[label="",style="dashed", color="magenta", weight=3]; 596 -> 28[label="",style="dashed", color="red", weight=0]; 596[label="vwx302 == vwx402",fontsize=16,color="magenta"];596 -> 692[label="",style="dashed", color="magenta", weight=3]; 596 -> 693[label="",style="dashed", color="magenta", weight=3]; 597 -> 29[label="",style="dashed", color="red", weight=0]; 597[label="vwx302 == vwx402",fontsize=16,color="magenta"];597 -> 694[label="",style="dashed", color="magenta", weight=3]; 597 -> 695[label="",style="dashed", color="magenta", weight=3]; 598 -> 30[label="",style="dashed", color="red", weight=0]; 598[label="vwx302 == vwx402",fontsize=16,color="magenta"];598 -> 696[label="",style="dashed", color="magenta", weight=3]; 598 -> 697[label="",style="dashed", color="magenta", weight=3]; 599[label="vwx401",fontsize=16,color="green",shape="box"];600[label="vwx300",fontsize=16,color="green",shape="box"];601[label="vwx400",fontsize=16,color="green",shape="box"];602[label="vwx301",fontsize=16,color="green",shape="box"];603[label="primEqNat (Succ vwx3000) (Succ vwx4000)",fontsize=16,color="black",shape="box"];603 -> 698[label="",style="solid", color="black", weight=3]; 604[label="primEqNat (Succ vwx3000) Zero",fontsize=16,color="black",shape="box"];604 -> 699[label="",style="solid", color="black", weight=3]; 605[label="primEqNat Zero (Succ vwx4000)",fontsize=16,color="black",shape="box"];605 -> 700[label="",style="solid", color="black", weight=3]; 606[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];606 -> 701[label="",style="solid", color="black", weight=3]; 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[label="vwx300",fontsize=16,color="green",shape="box"];628[label="vwx400",fontsize=16,color="green",shape="box"];629[label="vwx300",fontsize=16,color="green",shape="box"];630[label="vwx400",fontsize=16,color="green",shape="box"];631[label="vwx300",fontsize=16,color="green",shape="box"];632[label="vwx400",fontsize=16,color="green",shape="box"];633[label="vwx300",fontsize=16,color="green",shape="box"];634[label="vwx400",fontsize=16,color="green",shape="box"];1067[label="compare1 (vwx220,vwx221) vwx24 ((vwx220,vwx221) <= vwx24)",fontsize=16,color="burlywood",shape="box"];2405[label="vwx24/(vwx240,vwx241)",fontsize=10,color="white",style="solid",shape="box"];1067 -> 2405[label="",style="solid", color="burlywood", weight=9]; 2405 -> 1070[label="",style="solid", color="burlywood", weight=3]; 636[label="primMulInt (Pos vwx3000) vwx401",fontsize=16,color="burlywood",shape="box"];2406[label="vwx401/Pos vwx4010",fontsize=10,color="white",style="solid",shape="box"];636 -> 2406[label="",style="solid", color="burlywood", weight=9]; 2406 -> 704[label="",style="solid", color="burlywood", weight=3]; 2407[label="vwx401/Neg vwx4010",fontsize=10,color="white",style="solid",shape="box"];636 -> 2407[label="",style="solid", color="burlywood", weight=9]; 2407 -> 705[label="",style="solid", color="burlywood", weight=3]; 637[label="primMulInt (Neg vwx3000) vwx401",fontsize=16,color="burlywood",shape="box"];2408[label="vwx401/Pos vwx4010",fontsize=10,color="white",style="solid",shape="box"];637 -> 2408[label="",style="solid", color="burlywood", weight=9]; 2408 -> 706[label="",style="solid", color="burlywood", weight=3]; 2409[label="vwx401/Neg vwx4010",fontsize=10,color="white",style="solid",shape="box"];637 -> 2409[label="",style="solid", color="burlywood", weight=9]; 2409 -> 707[label="",style="solid", color="burlywood", weight=3]; 638[label="vwx4000",fontsize=16,color="green",shape="box"];639[label="vwx3000",fontsize=16,color="green",shape="box"];640[label="vwx4000",fontsize=16,color="green",shape="box"];641[label="vwx3000",fontsize=16,color="green",shape="box"];642[label="vwx301",fontsize=16,color="green",shape="box"];643[label="vwx401",fontsize=16,color="green",shape="box"];644[label="vwx301",fontsize=16,color="green",shape="box"];645[label="vwx401",fontsize=16,color="green",shape="box"];646[label="vwx301",fontsize=16,color="green",shape="box"];647[label="vwx401",fontsize=16,color="green",shape="box"];648[label="vwx301",fontsize=16,color="green",shape="box"];649[label="vwx401",fontsize=16,color="green",shape="box"];650[label="vwx301",fontsize=16,color="green",shape="box"];651[label="vwx401",fontsize=16,color="green",shape="box"];652[label="vwx301",fontsize=16,color="green",shape="box"];653[label="vwx401",fontsize=16,color="green",shape="box"];654[label="vwx301",fontsize=16,color="green",shape="box"];655[label="vwx401",fontsize=16,color="green",shape="box"];656[label="vwx301",fontsize=16,color="green",shape="box"];657[label="vwx401",fontsize=16,color="green",shape="box"];658[label="vwx301",fontsize=16,color="green",shape="box"];659[label="vwx401",fontsize=16,color="green",shape="box"];660[label="vwx301",fontsize=16,color="green",shape="box"];661[label="vwx401",fontsize=16,color="green",shape="box"];662[label="vwx301",fontsize=16,color="green",shape="box"];663[label="vwx401",fontsize=16,color="green",shape="box"];664[label="vwx301",fontsize=16,color="green",shape="box"];665[label="vwx401",fontsize=16,color="green",shape="box"];666[label="vwx301",fontsize=16,color="green",shape="box"];667[label="vwx401",fontsize=16,color="green",shape="box"];668[label="vwx301",fontsize=16,color="green",shape="box"];669[label="vwx401",fontsize=16,color="green",shape="box"];670[label="vwx302",fontsize=16,color="green",shape="box"];671[label="vwx402",fontsize=16,color="green",shape="box"];672[label="vwx302",fontsize=16,color="green",shape="box"];673[label="vwx402",fontsize=16,color="green",shape="box"];674[label="vwx302",fontsize=16,color="green",shape="box"];675[label="vwx402",fontsize=16,color="green",shape="box"];676[label="vwx302",fontsize=16,color="green",shape="box"];677[label="vwx402",fontsize=16,color="green",shape="box"];678[label="vwx302",fontsize=16,color="green",shape="box"];679[label="vwx402",fontsize=16,color="green",shape="box"];680[label="vwx302",fontsize=16,color="green",shape="box"];681[label="vwx402",fontsize=16,color="green",shape="box"];682[label="vwx302",fontsize=16,color="green",shape="box"];683[label="vwx402",fontsize=16,color="green",shape="box"];684[label="vwx302",fontsize=16,color="green",shape="box"];685[label="vwx402",fontsize=16,color="green",shape="box"];686[label="vwx302",fontsize=16,color="green",shape="box"];687[label="vwx402",fontsize=16,color="green",shape="box"];688[label="vwx302",fontsize=16,color="green",shape="box"];689[label="vwx402",fontsize=16,color="green",shape="box"];690[label="vwx302",fontsize=16,color="green",shape="box"];691[label="vwx402",fontsize=16,color="green",shape="box"];692[label="vwx302",fontsize=16,color="green",shape="box"];693[label="vwx402",fontsize=16,color="green",shape="box"];694[label="vwx302",fontsize=16,color="green",shape="box"];695[label="vwx402",fontsize=16,color="green",shape="box"];696[label="vwx302",fontsize=16,color="green",shape="box"];697[label="vwx402",fontsize=16,color="green",shape="box"];698 -> 204[label="",style="dashed", color="red", weight=0]; 698[label="primEqNat vwx3000 vwx4000",fontsize=16,color="magenta"];698 -> 708[label="",style="dashed", color="magenta", weight=3]; 698 -> 709[label="",style="dashed", color="magenta", weight=3]; 699[label="False",fontsize=16,color="green",shape="box"];700[label="False",fontsize=16,color="green",shape="box"];701[label="True",fontsize=16,color="green",shape="box"];1070[label="compare1 (vwx220,vwx221) (vwx240,vwx241) ((vwx220,vwx221) <= (vwx240,vwx241))",fontsize=16,color="black",shape="box"];1070 -> 1072[label="",style="solid", color="black", weight=3]; 704[label="primMulInt (Pos vwx3000) (Pos vwx4010)",fontsize=16,color="black",shape="box"];704 -> 743[label="",style="solid", color="black", weight=3]; 705[label="primMulInt (Pos vwx3000) (Neg vwx4010)",fontsize=16,color="black",shape="box"];705 -> 744[label="",style="solid", color="black", weight=3]; 706[label="primMulInt (Neg vwx3000) (Pos vwx4010)",fontsize=16,color="black",shape="box"];706 -> 745[label="",style="solid", color="black", weight=3]; 707[label="primMulInt (Neg vwx3000) (Neg vwx4010)",fontsize=16,color="black",shape="box"];707 -> 746[label="",style="solid", color="black", weight=3]; 708[label="vwx4000",fontsize=16,color="green",shape="box"];709[label="vwx3000",fontsize=16,color="green",shape="box"];1072 -> 1079[label="",style="dashed", color="red", weight=0]; 1072[label="compare1 (vwx220,vwx221) (vwx240,vwx241) (vwx220 < vwx240 || vwx220 == vwx240 && vwx221 <= vwx241)",fontsize=16,color="magenta"];1072 -> 1080[label="",style="dashed", color="magenta", weight=3]; 1072 -> 1081[label="",style="dashed", color="magenta", weight=3]; 1072 -> 1082[label="",style="dashed", color="magenta", weight=3]; 1072 -> 1083[label="",style="dashed", color="magenta", weight=3]; 1072 -> 1084[label="",style="dashed", color="magenta", weight=3]; 1072 -> 1085[label="",style="dashed", color="magenta", weight=3]; 743[label="Pos (primMulNat vwx3000 vwx4010)",fontsize=16,color="green",shape="box"];743 -> 791[label="",style="dashed", color="green", weight=3]; 744[label="Neg (primMulNat vwx3000 vwx4010)",fontsize=16,color="green",shape="box"];744 -> 792[label="",style="dashed", color="green", weight=3]; 745[label="Neg (primMulNat vwx3000 vwx4010)",fontsize=16,color="green",shape="box"];745 -> 793[label="",style="dashed", color="green", weight=3]; 746[label="Pos (primMulNat vwx3000 vwx4010)",fontsize=16,color="green",shape="box"];746 -> 794[label="",style="dashed", color="green", weight=3]; 1080[label="vwx220",fontsize=16,color="green",shape="box"];1081[label="vwx220 < vwx240",fontsize=16,color="blue",shape="box"];2410[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1081 -> 2410[label="",style="solid", color="blue", weight=9]; 2410 -> 1092[label="",style="solid", color="blue", weight=3]; 2411[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1081 -> 2411[label="",style="solid", color="blue", weight=9]; 2411 -> 1093[label="",style="solid", color="blue", weight=3]; 2412[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1081 -> 2412[label="",style="solid", color="blue", weight=9]; 2412 -> 1094[label="",style="solid", color="blue", weight=3]; 2413[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1081 -> 2413[label="",style="solid", color="blue", weight=9]; 2413 -> 1095[label="",style="solid", color="blue", weight=3]; 2414[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1081 -> 2414[label="",style="solid", color="blue", weight=9]; 2414 -> 1096[label="",style="solid", color="blue", weight=3]; 2415[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1081 -> 2415[label="",style="solid", color="blue", weight=9]; 2415 -> 1097[label="",style="solid", color="blue", weight=3]; 2416[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1081 -> 2416[label="",style="solid", color="blue", weight=9]; 2416 -> 1098[label="",style="solid", color="blue", weight=3]; 2417[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1081 -> 2417[label="",style="solid", color="blue", weight=9]; 2417 -> 1099[label="",style="solid", color="blue", weight=3]; 2418[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1081 -> 2418[label="",style="solid", color="blue", weight=9]; 2418 -> 1100[label="",style="solid", color="blue", weight=3]; 2419[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1081 -> 2419[label="",style="solid", color="blue", weight=9]; 2419 -> 1101[label="",style="solid", color="blue", weight=3]; 2420[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1081 -> 2420[label="",style="solid", color="blue", weight=9]; 2420 -> 1102[label="",style="solid", color="blue", weight=3]; 2421[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1081 -> 2421[label="",style="solid", color="blue", weight=9]; 2421 -> 1103[label="",style="solid", color="blue", weight=3]; 2422[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1081 -> 2422[label="",style="solid", color="blue", weight=9]; 2422 -> 1104[label="",style="solid", color="blue", weight=3]; 2423[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1081 -> 2423[label="",style="solid", color="blue", weight=9]; 2423 -> 1105[label="",style="solid", color="blue", weight=3]; 1082[label="vwx221",fontsize=16,color="green",shape="box"];1083[label="vwx241",fontsize=16,color="green",shape="box"];1084 -> 251[label="",style="dashed", color="red", weight=0]; 1084[label="vwx220 == vwx240 && vwx221 <= vwx241",fontsize=16,color="magenta"];1084 -> 1106[label="",style="dashed", color="magenta", weight=3]; 1084 -> 1107[label="",style="dashed", color="magenta", weight=3]; 1085[label="vwx240",fontsize=16,color="green",shape="box"];1079[label="compare1 (vwx65,vwx66) (vwx67,vwx68) (vwx69 || vwx70)",fontsize=16,color="burlywood",shape="triangle"];2424[label="vwx69/False",fontsize=10,color="white",style="solid",shape="box"];1079 -> 2424[label="",style="solid", color="burlywood", weight=9]; 2424 -> 1108[label="",style="solid", color="burlywood", weight=3]; 2425[label="vwx69/True",fontsize=10,color="white",style="solid",shape="box"];1079 -> 2425[label="",style="solid", color="burlywood", weight=9]; 2425 -> 1109[label="",style="solid", color="burlywood", weight=3]; 791[label="primMulNat vwx3000 vwx4010",fontsize=16,color="burlywood",shape="triangle"];2426[label="vwx3000/Succ vwx30000",fontsize=10,color="white",style="solid",shape="box"];791 -> 2426[label="",style="solid", color="burlywood", weight=9]; 2426 -> 873[label="",style="solid", color="burlywood", weight=3]; 2427[label="vwx3000/Zero",fontsize=10,color="white",style="solid",shape="box"];791 -> 2427[label="",style="solid", color="burlywood", weight=9]; 2427 -> 874[label="",style="solid", color="burlywood", weight=3]; 792 -> 791[label="",style="dashed", color="red", weight=0]; 792[label="primMulNat vwx3000 vwx4010",fontsize=16,color="magenta"];792 -> 875[label="",style="dashed", color="magenta", weight=3]; 793 -> 791[label="",style="dashed", color="red", weight=0]; 793[label="primMulNat vwx3000 vwx4010",fontsize=16,color="magenta"];793 -> 876[label="",style="dashed", color="magenta", weight=3]; 794 -> 791[label="",style="dashed", color="red", weight=0]; 794[label="primMulNat vwx3000 vwx4010",fontsize=16,color="magenta"];794 -> 877[label="",style="dashed", color="magenta", weight=3]; 794 -> 878[label="",style="dashed", color="magenta", weight=3]; 1092[label="vwx220 < vwx240",fontsize=16,color="black",shape="triangle"];1092 -> 1114[label="",style="solid", color="black", weight=3]; 1093[label="vwx220 < vwx240",fontsize=16,color="black",shape="triangle"];1093 -> 1115[label="",style="solid", color="black", weight=3]; 1094[label="vwx220 < vwx240",fontsize=16,color="black",shape="triangle"];1094 -> 1116[label="",style="solid", color="black", weight=3]; 1095[label="vwx220 < vwx240",fontsize=16,color="black",shape="triangle"];1095 -> 1117[label="",style="solid", color="black", weight=3]; 1096[label="vwx220 < vwx240",fontsize=16,color="black",shape="triangle"];1096 -> 1118[label="",style="solid", color="black", weight=3]; 1097[label="vwx220 < vwx240",fontsize=16,color="black",shape="triangle"];1097 -> 1119[label="",style="solid", color="black", weight=3]; 1098[label="vwx220 < vwx240",fontsize=16,color="black",shape="triangle"];1098 -> 1120[label="",style="solid", color="black", weight=3]; 1099[label="vwx220 < vwx240",fontsize=16,color="black",shape="triangle"];1099 -> 1121[label="",style="solid", color="black", weight=3]; 1100[label="vwx220 < vwx240",fontsize=16,color="black",shape="triangle"];1100 -> 1122[label="",style="solid", color="black", weight=3]; 1101[label="vwx220 < vwx240",fontsize=16,color="black",shape="triangle"];1101 -> 1123[label="",style="solid", color="black", weight=3]; 1102[label="vwx220 < vwx240",fontsize=16,color="black",shape="triangle"];1102 -> 1124[label="",style="solid", color="black", weight=3]; 1103[label="vwx220 < vwx240",fontsize=16,color="black",shape="triangle"];1103 -> 1125[label="",style="solid", color="black", weight=3]; 1104[label="vwx220 < vwx240",fontsize=16,color="black",shape="triangle"];1104 -> 1126[label="",style="solid", color="black", weight=3]; 1105[label="vwx220 < vwx240",fontsize=16,color="black",shape="triangle"];1105 -> 1127[label="",style="solid", color="black", weight=3]; 1106[label="vwx220 == vwx240",fontsize=16,color="blue",shape="box"];2428[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1106 -> 2428[label="",style="solid", color="blue", weight=9]; 2428 -> 1128[label="",style="solid", color="blue", weight=3]; 2429[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1106 -> 2429[label="",style="solid", color="blue", weight=9]; 2429 -> 1129[label="",style="solid", color="blue", weight=3]; 2430[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1106 -> 2430[label="",style="solid", color="blue", weight=9]; 2430 -> 1130[label="",style="solid", color="blue", weight=3]; 2431[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1106 -> 2431[label="",style="solid", color="blue", weight=9]; 2431 -> 1131[label="",style="solid", color="blue", weight=3]; 2432[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1106 -> 2432[label="",style="solid", color="blue", weight=9]; 2432 -> 1132[label="",style="solid", color="blue", weight=3]; 2433[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1106 -> 2433[label="",style="solid", color="blue", weight=9]; 2433 -> 1133[label="",style="solid", color="blue", weight=3]; 2434[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1106 -> 2434[label="",style="solid", color="blue", weight=9]; 2434 -> 1134[label="",style="solid", color="blue", weight=3]; 2435[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1106 -> 2435[label="",style="solid", color="blue", weight=9]; 2435 -> 1135[label="",style="solid", color="blue", weight=3]; 2436[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1106 -> 2436[label="",style="solid", color="blue", weight=9]; 2436 -> 1136[label="",style="solid", color="blue", weight=3]; 2437[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1106 -> 2437[label="",style="solid", color="blue", weight=9]; 2437 -> 1137[label="",style="solid", color="blue", weight=3]; 2438[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1106 -> 2438[label="",style="solid", color="blue", weight=9]; 2438 -> 1138[label="",style="solid", color="blue", weight=3]; 2439[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1106 -> 2439[label="",style="solid", color="blue", weight=9]; 2439 -> 1139[label="",style="solid", color="blue", weight=3]; 2440[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1106 -> 2440[label="",style="solid", color="blue", weight=9]; 2440 -> 1140[label="",style="solid", color="blue", weight=3]; 2441[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1106 -> 2441[label="",style="solid", color="blue", weight=9]; 2441 -> 1141[label="",style="solid", color="blue", weight=3]; 1107[label="vwx221 <= vwx241",fontsize=16,color="blue",shape="box"];2442[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1107 -> 2442[label="",style="solid", color="blue", weight=9]; 2442 -> 1142[label="",style="solid", color="blue", weight=3]; 2443[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1107 -> 2443[label="",style="solid", color="blue", weight=9]; 2443 -> 1143[label="",style="solid", color="blue", weight=3]; 2444[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1107 -> 2444[label="",style="solid", color="blue", weight=9]; 2444 -> 1144[label="",style="solid", color="blue", weight=3]; 2445[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1107 -> 2445[label="",style="solid", color="blue", weight=9]; 2445 -> 1145[label="",style="solid", color="blue", weight=3]; 2446[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1107 -> 2446[label="",style="solid", color="blue", weight=9]; 2446 -> 1146[label="",style="solid", color="blue", weight=3]; 2447[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1107 -> 2447[label="",style="solid", color="blue", weight=9]; 2447 -> 1147[label="",style="solid", color="blue", weight=3]; 2448[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1107 -> 2448[label="",style="solid", color="blue", weight=9]; 2448 -> 1148[label="",style="solid", color="blue", weight=3]; 2449[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1107 -> 2449[label="",style="solid", color="blue", weight=9]; 2449 -> 1149[label="",style="solid", color="blue", weight=3]; 2450[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1107 -> 2450[label="",style="solid", color="blue", weight=9]; 2450 -> 1150[label="",style="solid", color="blue", weight=3]; 2451[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1107 -> 2451[label="",style="solid", color="blue", weight=9]; 2451 -> 1151[label="",style="solid", color="blue", weight=3]; 2452[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1107 -> 2452[label="",style="solid", color="blue", weight=9]; 2452 -> 1152[label="",style="solid", color="blue", weight=3]; 2453[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1107 -> 2453[label="",style="solid", color="blue", weight=9]; 2453 -> 1153[label="",style="solid", color="blue", weight=3]; 2454[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1107 -> 2454[label="",style="solid", color="blue", weight=9]; 2454 -> 1154[label="",style="solid", color="blue", weight=3]; 2455[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1107 -> 2455[label="",style="solid", color="blue", weight=9]; 2455 -> 1155[label="",style="solid", color="blue", weight=3]; 1108[label="compare1 (vwx65,vwx66) (vwx67,vwx68) (False || vwx70)",fontsize=16,color="black",shape="box"];1108 -> 1156[label="",style="solid", color="black", weight=3]; 1109[label="compare1 (vwx65,vwx66) (vwx67,vwx68) (True || vwx70)",fontsize=16,color="black",shape="box"];1109 -> 1157[label="",style="solid", color="black", weight=3]; 873[label="primMulNat (Succ vwx30000) vwx4010",fontsize=16,color="burlywood",shape="box"];2456[label="vwx4010/Succ vwx40100",fontsize=10,color="white",style="solid",shape="box"];873 -> 2456[label="",style="solid", color="burlywood", weight=9]; 2456 -> 928[label="",style="solid", color="burlywood", weight=3]; 2457[label="vwx4010/Zero",fontsize=10,color="white",style="solid",shape="box"];873 -> 2457[label="",style="solid", color="burlywood", weight=9]; 2457 -> 929[label="",style="solid", color="burlywood", weight=3]; 874[label="primMulNat Zero vwx4010",fontsize=16,color="burlywood",shape="box"];2458[label="vwx4010/Succ vwx40100",fontsize=10,color="white",style="solid",shape="box"];874 -> 2458[label="",style="solid", color="burlywood", weight=9]; 2458 -> 930[label="",style="solid", color="burlywood", weight=3]; 2459[label="vwx4010/Zero",fontsize=10,color="white",style="solid",shape="box"];874 -> 2459[label="",style="solid", color="burlywood", weight=9]; 2459 -> 931[label="",style="solid", color="burlywood", weight=3]; 875[label="vwx4010",fontsize=16,color="green",shape="box"];876[label="vwx3000",fontsize=16,color="green",shape="box"];877[label="vwx3000",fontsize=16,color="green",shape="box"];878[label="vwx4010",fontsize=16,color="green",shape="box"];1114 -> 30[label="",style="dashed", color="red", weight=0]; 1114[label="compare vwx220 vwx240 == LT",fontsize=16,color="magenta"];1114 -> 1162[label="",style="dashed", color="magenta", weight=3]; 1114 -> 1163[label="",style="dashed", color="magenta", weight=3]; 1115 -> 30[label="",style="dashed", color="red", weight=0]; 1115[label="compare vwx220 vwx240 == LT",fontsize=16,color="magenta"];1115 -> 1164[label="",style="dashed", color="magenta", weight=3]; 1115 -> 1165[label="",style="dashed", color="magenta", weight=3]; 1116 -> 30[label="",style="dashed", color="red", weight=0]; 1116[label="compare vwx220 vwx240 == LT",fontsize=16,color="magenta"];1116 -> 1166[label="",style="dashed", color="magenta", weight=3]; 1116 -> 1167[label="",style="dashed", color="magenta", weight=3]; 1117 -> 30[label="",style="dashed", color="red", weight=0]; 1117[label="compare vwx220 vwx240 == LT",fontsize=16,color="magenta"];1117 -> 1168[label="",style="dashed", color="magenta", weight=3]; 1117 -> 1169[label="",style="dashed", color="magenta", weight=3]; 1118 -> 30[label="",style="dashed", color="red", weight=0]; 1118[label="compare vwx220 vwx240 == LT",fontsize=16,color="magenta"];1118 -> 1170[label="",style="dashed", color="magenta", weight=3]; 1118 -> 1171[label="",style="dashed", color="magenta", weight=3]; 1119 -> 30[label="",style="dashed", color="red", weight=0]; 1119[label="compare vwx220 vwx240 == LT",fontsize=16,color="magenta"];1119 -> 1172[label="",style="dashed", color="magenta", weight=3]; 1119 -> 1173[label="",style="dashed", color="magenta", weight=3]; 1120 -> 30[label="",style="dashed", color="red", weight=0]; 1120[label="compare vwx220 vwx240 == LT",fontsize=16,color="magenta"];1120 -> 1174[label="",style="dashed", color="magenta", weight=3]; 1120 -> 1175[label="",style="dashed", color="magenta", weight=3]; 1121 -> 30[label="",style="dashed", color="red", weight=0]; 1121[label="compare vwx220 vwx240 == LT",fontsize=16,color="magenta"];1121 -> 1176[label="",style="dashed", color="magenta", weight=3]; 1121 -> 1177[label="",style="dashed", color="magenta", weight=3]; 1122 -> 30[label="",style="dashed", color="red", weight=0]; 1122[label="compare vwx220 vwx240 == LT",fontsize=16,color="magenta"];1122 -> 1178[label="",style="dashed", color="magenta", weight=3]; 1122 -> 1179[label="",style="dashed", color="magenta", weight=3]; 1123 -> 30[label="",style="dashed", color="red", weight=0]; 1123[label="compare vwx220 vwx240 == LT",fontsize=16,color="magenta"];1123 -> 1180[label="",style="dashed", color="magenta", weight=3]; 1123 -> 1181[label="",style="dashed", color="magenta", weight=3]; 1124 -> 30[label="",style="dashed", color="red", weight=0]; 1124[label="compare vwx220 vwx240 == LT",fontsize=16,color="magenta"];1124 -> 1182[label="",style="dashed", color="magenta", weight=3]; 1124 -> 1183[label="",style="dashed", color="magenta", weight=3]; 1125 -> 30[label="",style="dashed", color="red", weight=0]; 1125[label="compare vwx220 vwx240 == LT",fontsize=16,color="magenta"];1125 -> 1184[label="",style="dashed", color="magenta", weight=3]; 1125 -> 1185[label="",style="dashed", color="magenta", weight=3]; 1126 -> 30[label="",style="dashed", color="red", weight=0]; 1126[label="compare vwx220 vwx240 == LT",fontsize=16,color="magenta"];1126 -> 1186[label="",style="dashed", color="magenta", weight=3]; 1126 -> 1187[label="",style="dashed", color="magenta", weight=3]; 1127 -> 30[label="",style="dashed", color="red", weight=0]; 1127[label="compare vwx220 vwx240 == LT",fontsize=16,color="magenta"];1127 -> 1188[label="",style="dashed", color="magenta", weight=3]; 1127 -> 1189[label="",style="dashed", color="magenta", weight=3]; 1128 -> 18[label="",style="dashed", color="red", weight=0]; 1128[label="vwx220 == vwx240",fontsize=16,color="magenta"];1128 -> 1190[label="",style="dashed", color="magenta", weight=3]; 1128 -> 1191[label="",style="dashed", color="magenta", weight=3]; 1129 -> 25[label="",style="dashed", color="red", weight=0]; 1129[label="vwx220 == vwx240",fontsize=16,color="magenta"];1129 -> 1192[label="",style="dashed", color="magenta", weight=3]; 1129 -> 1193[label="",style="dashed", color="magenta", weight=3]; 1130 -> 22[label="",style="dashed", color="red", weight=0]; 1130[label="vwx220 == vwx240",fontsize=16,color="magenta"];1130 -> 1194[label="",style="dashed", color="magenta", weight=3]; 1130 -> 1195[label="",style="dashed", color="magenta", weight=3]; 1131 -> 29[label="",style="dashed", color="red", weight=0]; 1131[label="vwx220 == vwx240",fontsize=16,color="magenta"];1131 -> 1196[label="",style="dashed", color="magenta", weight=3]; 1131 -> 1197[label="",style="dashed", color="magenta", weight=3]; 1132 -> 20[label="",style="dashed", color="red", weight=0]; 1132[label="vwx220 == vwx240",fontsize=16,color="magenta"];1132 -> 1198[label="",style="dashed", color="magenta", weight=3]; 1132 -> 1199[label="",style="dashed", color="magenta", weight=3]; 1133 -> 19[label="",style="dashed", color="red", weight=0]; 1133[label="vwx220 == vwx240",fontsize=16,color="magenta"];1133 -> 1200[label="",style="dashed", color="magenta", weight=3]; 1133 -> 1201[label="",style="dashed", color="magenta", weight=3]; 1134 -> 27[label="",style="dashed", color="red", weight=0]; 1134[label="vwx220 == vwx240",fontsize=16,color="magenta"];1134 -> 1202[label="",style="dashed", color="magenta", weight=3]; 1134 -> 1203[label="",style="dashed", color="magenta", weight=3]; 1135 -> 23[label="",style="dashed", color="red", weight=0]; 1135[label="vwx220 == vwx240",fontsize=16,color="magenta"];1135 -> 1204[label="",style="dashed", color="magenta", weight=3]; 1135 -> 1205[label="",style="dashed", color="magenta", weight=3]; 1136 -> 30[label="",style="dashed", color="red", weight=0]; 1136[label="vwx220 == vwx240",fontsize=16,color="magenta"];1136 -> 1206[label="",style="dashed", color="magenta", weight=3]; 1136 -> 1207[label="",style="dashed", color="magenta", weight=3]; 1137 -> 28[label="",style="dashed", color="red", weight=0]; 1137[label="vwx220 == vwx240",fontsize=16,color="magenta"];1137 -> 1208[label="",style="dashed", color="magenta", weight=3]; 1137 -> 1209[label="",style="dashed", color="magenta", weight=3]; 1138 -> 17[label="",style="dashed", color="red", weight=0]; 1138[label="vwx220 == vwx240",fontsize=16,color="magenta"];1138 -> 1210[label="",style="dashed", color="magenta", weight=3]; 1138 -> 1211[label="",style="dashed", color="magenta", weight=3]; 1139 -> 24[label="",style="dashed", color="red", weight=0]; 1139[label="vwx220 == vwx240",fontsize=16,color="magenta"];1139 -> 1212[label="",style="dashed", color="magenta", weight=3]; 1139 -> 1213[label="",style="dashed", color="magenta", weight=3]; 1140 -> 21[label="",style="dashed", color="red", weight=0]; 1140[label="vwx220 == vwx240",fontsize=16,color="magenta"];1140 -> 1214[label="",style="dashed", color="magenta", weight=3]; 1140 -> 1215[label="",style="dashed", color="magenta", weight=3]; 1141 -> 26[label="",style="dashed", color="red", weight=0]; 1141[label="vwx220 == vwx240",fontsize=16,color="magenta"];1141 -> 1216[label="",style="dashed", color="magenta", weight=3]; 1141 -> 1217[label="",style="dashed", color="magenta", weight=3]; 1142[label="vwx221 <= vwx241",fontsize=16,color="black",shape="triangle"];1142 -> 1218[label="",style="solid", color="black", weight=3]; 1143[label="vwx221 <= vwx241",fontsize=16,color="black",shape="triangle"];1143 -> 1219[label="",style="solid", color="black", weight=3]; 1144[label="vwx221 <= vwx241",fontsize=16,color="black",shape="triangle"];1144 -> 1220[label="",style="solid", color="black", weight=3]; 1145[label="vwx221 <= vwx241",fontsize=16,color="black",shape="triangle"];1145 -> 1221[label="",style="solid", color="black", weight=3]; 1146[label="vwx221 <= vwx241",fontsize=16,color="burlywood",shape="triangle"];2460[label="vwx221/(vwx2210,vwx2211)",fontsize=10,color="white",style="solid",shape="box"];1146 -> 2460[label="",style="solid", color="burlywood", weight=9]; 2460 -> 1222[label="",style="solid", color="burlywood", weight=3]; 1147[label="vwx221 <= vwx241",fontsize=16,color="black",shape="triangle"];1147 -> 1223[label="",style="solid", color="black", weight=3]; 1148[label="vwx221 <= vwx241",fontsize=16,color="black",shape="triangle"];1148 -> 1224[label="",style="solid", color="black", weight=3]; 1149[label="vwx221 <= vwx241",fontsize=16,color="burlywood",shape="triangle"];2461[label="vwx221/Left vwx2210",fontsize=10,color="white",style="solid",shape="box"];1149 -> 2461[label="",style="solid", color="burlywood", weight=9]; 2461 -> 1225[label="",style="solid", color="burlywood", weight=3]; 2462[label="vwx221/Right vwx2210",fontsize=10,color="white",style="solid",shape="box"];1149 -> 2462[label="",style="solid", color="burlywood", weight=9]; 2462 -> 1226[label="",style="solid", color="burlywood", weight=3]; 1150[label="vwx221 <= vwx241",fontsize=16,color="burlywood",shape="triangle"];2463[label="vwx221/LT",fontsize=10,color="white",style="solid",shape="box"];1150 -> 2463[label="",style="solid", color="burlywood", weight=9]; 2463 -> 1227[label="",style="solid", color="burlywood", weight=3]; 2464[label="vwx221/EQ",fontsize=10,color="white",style="solid",shape="box"];1150 -> 2464[label="",style="solid", color="burlywood", weight=9]; 2464 -> 1228[label="",style="solid", color="burlywood", weight=3]; 2465[label="vwx221/GT",fontsize=10,color="white",style="solid",shape="box"];1150 -> 2465[label="",style="solid", color="burlywood", weight=9]; 2465 -> 1229[label="",style="solid", color="burlywood", weight=3]; 1151[label="vwx221 <= vwx241",fontsize=16,color="burlywood",shape="triangle"];2466[label="vwx221/Nothing",fontsize=10,color="white",style="solid",shape="box"];1151 -> 2466[label="",style="solid", color="burlywood", weight=9]; 2466 -> 1230[label="",style="solid", color="burlywood", weight=3]; 2467[label="vwx221/Just vwx2210",fontsize=10,color="white",style="solid",shape="box"];1151 -> 2467[label="",style="solid", color="burlywood", weight=9]; 2467 -> 1231[label="",style="solid", color="burlywood", weight=3]; 1152[label="vwx221 <= vwx241",fontsize=16,color="burlywood",shape="triangle"];2468[label="vwx221/False",fontsize=10,color="white",style="solid",shape="box"];1152 -> 2468[label="",style="solid", color="burlywood", weight=9]; 2468 -> 1232[label="",style="solid", color="burlywood", weight=3]; 2469[label="vwx221/True",fontsize=10,color="white",style="solid",shape="box"];1152 -> 2469[label="",style="solid", color="burlywood", weight=9]; 2469 -> 1233[label="",style="solid", color="burlywood", weight=3]; 1153[label="vwx221 <= vwx241",fontsize=16,color="burlywood",shape="triangle"];2470[label="vwx221/(vwx2210,vwx2211,vwx2212)",fontsize=10,color="white",style="solid",shape="box"];1153 -> 2470[label="",style="solid", color="burlywood", weight=9]; 2470 -> 1234[label="",style="solid", color="burlywood", weight=3]; 1154[label="vwx221 <= vwx241",fontsize=16,color="black",shape="triangle"];1154 -> 1235[label="",style="solid", color="black", weight=3]; 1155[label="vwx221 <= vwx241",fontsize=16,color="black",shape="triangle"];1155 -> 1236[label="",style="solid", color="black", weight=3]; 1156[label="compare1 (vwx65,vwx66) (vwx67,vwx68) vwx70",fontsize=16,color="burlywood",shape="triangle"];2471[label="vwx70/False",fontsize=10,color="white",style="solid",shape="box"];1156 -> 2471[label="",style="solid", color="burlywood", weight=9]; 2471 -> 1237[label="",style="solid", color="burlywood", weight=3]; 2472[label="vwx70/True",fontsize=10,color="white",style="solid",shape="box"];1156 -> 2472[label="",style="solid", color="burlywood", weight=9]; 2472 -> 1238[label="",style="solid", color="burlywood", weight=3]; 1157 -> 1156[label="",style="dashed", color="red", weight=0]; 1157[label="compare1 (vwx65,vwx66) (vwx67,vwx68) True",fontsize=16,color="magenta"];1157 -> 1239[label="",style="dashed", color="magenta", weight=3]; 928[label="primMulNat (Succ vwx30000) (Succ vwx40100)",fontsize=16,color="black",shape="box"];928 -> 991[label="",style="solid", color="black", weight=3]; 929[label="primMulNat (Succ vwx30000) Zero",fontsize=16,color="black",shape="box"];929 -> 992[label="",style="solid", color="black", weight=3]; 930[label="primMulNat Zero (Succ vwx40100)",fontsize=16,color="black",shape="box"];930 -> 993[label="",style="solid", color="black", weight=3]; 931[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];931 -> 994[label="",style="solid", color="black", weight=3]; 1162[label="compare vwx220 vwx240",fontsize=16,color="black",shape="triangle"];1162 -> 1241[label="",style="solid", color="black", weight=3]; 1163[label="LT",fontsize=16,color="green",shape="box"];1164[label="compare vwx220 vwx240",fontsize=16,color="black",shape="triangle"];1164 -> 1242[label="",style="solid", color="black", weight=3]; 1165[label="LT",fontsize=16,color="green",shape="box"];1166[label="compare vwx220 vwx240",fontsize=16,color="burlywood",shape="triangle"];2473[label="vwx220/vwx2200 :% vwx2201",fontsize=10,color="white",style="solid",shape="box"];1166 -> 2473[label="",style="solid", color="burlywood", weight=9]; 2473 -> 1243[label="",style="solid", color="burlywood", weight=3]; 1167[label="LT",fontsize=16,color="green",shape="box"];1168[label="compare vwx220 vwx240",fontsize=16,color="burlywood",shape="triangle"];2474[label="vwx220/vwx2200 : vwx2201",fontsize=10,color="white",style="solid",shape="box"];1168 -> 2474[label="",style="solid", color="burlywood", weight=9]; 2474 -> 1244[label="",style="solid", color="burlywood", weight=3]; 2475[label="vwx220/[]",fontsize=10,color="white",style="solid",shape="box"];1168 -> 2475[label="",style="solid", color="burlywood", weight=9]; 2475 -> 1245[label="",style="solid", color="burlywood", weight=3]; 1169[label="LT",fontsize=16,color="green",shape="box"];1170[label="compare vwx220 vwx240",fontsize=16,color="black",shape="triangle"];1170 -> 1246[label="",style="solid", color="black", weight=3]; 1171[label="LT",fontsize=16,color="green",shape="box"];1172[label="compare vwx220 vwx240",fontsize=16,color="burlywood",shape="triangle"];2476[label="vwx220/Integer vwx2200",fontsize=10,color="white",style="solid",shape="box"];1172 -> 2476[label="",style="solid", color="burlywood", weight=9]; 2476 -> 1247[label="",style="solid", color="burlywood", weight=3]; 1173[label="LT",fontsize=16,color="green",shape="box"];1174[label="compare vwx220 vwx240",fontsize=16,color="black",shape="triangle"];1174 -> 1248[label="",style="solid", color="black", weight=3]; 1175[label="LT",fontsize=16,color="green",shape="box"];1176[label="compare vwx220 vwx240",fontsize=16,color="black",shape="triangle"];1176 -> 1249[label="",style="solid", color="black", weight=3]; 1177[label="LT",fontsize=16,color="green",shape="box"];1178[label="compare vwx220 vwx240",fontsize=16,color="black",shape="triangle"];1178 -> 1250[label="",style="solid", color="black", weight=3]; 1179[label="LT",fontsize=16,color="green",shape="box"];1180[label="compare vwx220 vwx240",fontsize=16,color="black",shape="triangle"];1180 -> 1251[label="",style="solid", color="black", weight=3]; 1181[label="LT",fontsize=16,color="green",shape="box"];1182[label="compare vwx220 vwx240",fontsize=16,color="black",shape="triangle"];1182 -> 1252[label="",style="solid", color="black", weight=3]; 1183[label="LT",fontsize=16,color="green",shape="box"];1184[label="compare vwx220 vwx240",fontsize=16,color="black",shape="triangle"];1184 -> 1253[label="",style="solid", color="black", weight=3]; 1185[label="LT",fontsize=16,color="green",shape="box"];1186[label="compare vwx220 vwx240",fontsize=16,color="black",shape="triangle"];1186 -> 1254[label="",style="solid", color="black", weight=3]; 1187[label="LT",fontsize=16,color="green",shape="box"];1188[label="compare vwx220 vwx240",fontsize=16,color="burlywood",shape="triangle"];2477[label="vwx220/()",fontsize=10,color="white",style="solid",shape="box"];1188 -> 2477[label="",style="solid", color="burlywood", weight=9]; 2477 -> 1255[label="",style="solid", color="burlywood", weight=3]; 1189[label="LT",fontsize=16,color="green",shape="box"];1190[label="vwx220",fontsize=16,color="green",shape="box"];1191[label="vwx240",fontsize=16,color="green",shape="box"];1192[label="vwx220",fontsize=16,color="green",shape="box"];1193[label="vwx240",fontsize=16,color="green",shape="box"];1194[label="vwx220",fontsize=16,color="green",shape="box"];1195[label="vwx240",fontsize=16,color="green",shape="box"];1196[label="vwx220",fontsize=16,color="green",shape="box"];1197[label="vwx240",fontsize=16,color="green",shape="box"];1198[label="vwx220",fontsize=16,color="green",shape="box"];1199[label="vwx240",fontsize=16,color="green",shape="box"];1200[label="vwx220",fontsize=16,color="green",shape="box"];1201[label="vwx240",fontsize=16,color="green",shape="box"];1202[label="vwx220",fontsize=16,color="green",shape="box"];1203[label="vwx240",fontsize=16,color="green",shape="box"];1204[label="vwx220",fontsize=16,color="green",shape="box"];1205[label="vwx240",fontsize=16,color="green",shape="box"];1206[label="vwx220",fontsize=16,color="green",shape="box"];1207[label="vwx240",fontsize=16,color="green",shape="box"];1208[label="vwx220",fontsize=16,color="green",shape="box"];1209[label="vwx240",fontsize=16,color="green",shape="box"];1210[label="vwx220",fontsize=16,color="green",shape="box"];1211[label="vwx240",fontsize=16,color="green",shape="box"];1212[label="vwx220",fontsize=16,color="green",shape="box"];1213[label="vwx240",fontsize=16,color="green",shape="box"];1214[label="vwx220",fontsize=16,color="green",shape="box"];1215[label="vwx240",fontsize=16,color="green",shape="box"];1216[label="vwx220",fontsize=16,color="green",shape="box"];1217[label="vwx240",fontsize=16,color="green",shape="box"];1218 -> 1256[label="",style="dashed", color="red", weight=0]; 1218[label="compare vwx221 vwx241 /= GT",fontsize=16,color="magenta"];1218 -> 1257[label="",style="dashed", color="magenta", weight=3]; 1219 -> 1256[label="",style="dashed", color="red", weight=0]; 1219[label="compare vwx221 vwx241 /= GT",fontsize=16,color="magenta"];1219 -> 1258[label="",style="dashed", color="magenta", weight=3]; 1220 -> 1256[label="",style="dashed", color="red", weight=0]; 1220[label="compare vwx221 vwx241 /= GT",fontsize=16,color="magenta"];1220 -> 1259[label="",style="dashed", color="magenta", weight=3]; 1221 -> 1256[label="",style="dashed", color="red", weight=0]; 1221[label="compare vwx221 vwx241 /= GT",fontsize=16,color="magenta"];1221 -> 1260[label="",style="dashed", color="magenta", weight=3]; 1222[label="(vwx2210,vwx2211) <= vwx241",fontsize=16,color="burlywood",shape="box"];2478[label="vwx241/(vwx2410,vwx2411)",fontsize=10,color="white",style="solid",shape="box"];1222 -> 2478[label="",style="solid", color="burlywood", weight=9]; 2478 -> 1265[label="",style="solid", color="burlywood", weight=3]; 1223 -> 1256[label="",style="dashed", color="red", weight=0]; 1223[label="compare vwx221 vwx241 /= GT",fontsize=16,color="magenta"];1223 -> 1261[label="",style="dashed", color="magenta", weight=3]; 1224 -> 1256[label="",style="dashed", color="red", weight=0]; 1224[label="compare vwx221 vwx241 /= GT",fontsize=16,color="magenta"];1224 -> 1262[label="",style="dashed", color="magenta", weight=3]; 1225[label="Left vwx2210 <= vwx241",fontsize=16,color="burlywood",shape="box"];2479[label="vwx241/Left vwx2410",fontsize=10,color="white",style="solid",shape="box"];1225 -> 2479[label="",style="solid", color="burlywood", weight=9]; 2479 -> 1266[label="",style="solid", color="burlywood", weight=3]; 2480[label="vwx241/Right vwx2410",fontsize=10,color="white",style="solid",shape="box"];1225 -> 2480[label="",style="solid", color="burlywood", weight=9]; 2480 -> 1267[label="",style="solid", color="burlywood", weight=3]; 1226[label="Right vwx2210 <= vwx241",fontsize=16,color="burlywood",shape="box"];2481[label="vwx241/Left vwx2410",fontsize=10,color="white",style="solid",shape="box"];1226 -> 2481[label="",style="solid", color="burlywood", weight=9]; 2481 -> 1268[label="",style="solid", color="burlywood", weight=3]; 2482[label="vwx241/Right vwx2410",fontsize=10,color="white",style="solid",shape="box"];1226 -> 2482[label="",style="solid", color="burlywood", weight=9]; 2482 -> 1269[label="",style="solid", color="burlywood", weight=3]; 1227[label="LT <= vwx241",fontsize=16,color="burlywood",shape="box"];2483[label="vwx241/LT",fontsize=10,color="white",style="solid",shape="box"];1227 -> 2483[label="",style="solid", color="burlywood", weight=9]; 2483 -> 1270[label="",style="solid", color="burlywood", weight=3]; 2484[label="vwx241/EQ",fontsize=10,color="white",style="solid",shape="box"];1227 -> 2484[label="",style="solid", color="burlywood", weight=9]; 2484 -> 1271[label="",style="solid", color="burlywood", weight=3]; 2485[label="vwx241/GT",fontsize=10,color="white",style="solid",shape="box"];1227 -> 2485[label="",style="solid", color="burlywood", weight=9]; 2485 -> 1272[label="",style="solid", color="burlywood", weight=3]; 1228[label="EQ <= vwx241",fontsize=16,color="burlywood",shape="box"];2486[label="vwx241/LT",fontsize=10,color="white",style="solid",shape="box"];1228 -> 2486[label="",style="solid", color="burlywood", weight=9]; 2486 -> 1273[label="",style="solid", color="burlywood", weight=3]; 2487[label="vwx241/EQ",fontsize=10,color="white",style="solid",shape="box"];1228 -> 2487[label="",style="solid", color="burlywood", weight=9]; 2487 -> 1274[label="",style="solid", color="burlywood", weight=3]; 2488[label="vwx241/GT",fontsize=10,color="white",style="solid",shape="box"];1228 -> 2488[label="",style="solid", color="burlywood", weight=9]; 2488 -> 1275[label="",style="solid", color="burlywood", weight=3]; 1229[label="GT <= vwx241",fontsize=16,color="burlywood",shape="box"];2489[label="vwx241/LT",fontsize=10,color="white",style="solid",shape="box"];1229 -> 2489[label="",style="solid", color="burlywood", weight=9]; 2489 -> 1276[label="",style="solid", color="burlywood", weight=3]; 2490[label="vwx241/EQ",fontsize=10,color="white",style="solid",shape="box"];1229 -> 2490[label="",style="solid", color="burlywood", weight=9]; 2490 -> 1277[label="",style="solid", color="burlywood", weight=3]; 2491[label="vwx241/GT",fontsize=10,color="white",style="solid",shape="box"];1229 -> 2491[label="",style="solid", color="burlywood", weight=9]; 2491 -> 1278[label="",style="solid", color="burlywood", weight=3]; 1230[label="Nothing <= vwx241",fontsize=16,color="burlywood",shape="box"];2492[label="vwx241/Nothing",fontsize=10,color="white",style="solid",shape="box"];1230 -> 2492[label="",style="solid", color="burlywood", weight=9]; 2492 -> 1279[label="",style="solid", color="burlywood", weight=3]; 2493[label="vwx241/Just vwx2410",fontsize=10,color="white",style="solid",shape="box"];1230 -> 2493[label="",style="solid", color="burlywood", weight=9]; 2493 -> 1280[label="",style="solid", color="burlywood", weight=3]; 1231[label="Just vwx2210 <= vwx241",fontsize=16,color="burlywood",shape="box"];2494[label="vwx241/Nothing",fontsize=10,color="white",style="solid",shape="box"];1231 -> 2494[label="",style="solid", color="burlywood", weight=9]; 2494 -> 1281[label="",style="solid", color="burlywood", weight=3]; 2495[label="vwx241/Just vwx2410",fontsize=10,color="white",style="solid",shape="box"];1231 -> 2495[label="",style="solid", color="burlywood", weight=9]; 2495 -> 1282[label="",style="solid", color="burlywood", weight=3]; 1232[label="False <= vwx241",fontsize=16,color="burlywood",shape="box"];2496[label="vwx241/False",fontsize=10,color="white",style="solid",shape="box"];1232 -> 2496[label="",style="solid", color="burlywood", weight=9]; 2496 -> 1283[label="",style="solid", color="burlywood", weight=3]; 2497[label="vwx241/True",fontsize=10,color="white",style="solid",shape="box"];1232 -> 2497[label="",style="solid", color="burlywood", weight=9]; 2497 -> 1284[label="",style="solid", color="burlywood", weight=3]; 1233[label="True <= vwx241",fontsize=16,color="burlywood",shape="box"];2498[label="vwx241/False",fontsize=10,color="white",style="solid",shape="box"];1233 -> 2498[label="",style="solid", color="burlywood", weight=9]; 2498 -> 1285[label="",style="solid", color="burlywood", weight=3]; 2499[label="vwx241/True",fontsize=10,color="white",style="solid",shape="box"];1233 -> 2499[label="",style="solid", color="burlywood", weight=9]; 2499 -> 1286[label="",style="solid", color="burlywood", weight=3]; 1234[label="(vwx2210,vwx2211,vwx2212) <= vwx241",fontsize=16,color="burlywood",shape="box"];2500[label="vwx241/(vwx2410,vwx2411,vwx2412)",fontsize=10,color="white",style="solid",shape="box"];1234 -> 2500[label="",style="solid", color="burlywood", weight=9]; 2500 -> 1287[label="",style="solid", color="burlywood", weight=3]; 1235 -> 1256[label="",style="dashed", color="red", weight=0]; 1235[label="compare vwx221 vwx241 /= GT",fontsize=16,color="magenta"];1235 -> 1263[label="",style="dashed", color="magenta", weight=3]; 1236 -> 1256[label="",style="dashed", color="red", weight=0]; 1236[label="compare vwx221 vwx241 /= GT",fontsize=16,color="magenta"];1236 -> 1264[label="",style="dashed", color="magenta", weight=3]; 1237[label="compare1 (vwx65,vwx66) (vwx67,vwx68) False",fontsize=16,color="black",shape="box"];1237 -> 1288[label="",style="solid", color="black", weight=3]; 1238[label="compare1 (vwx65,vwx66) (vwx67,vwx68) True",fontsize=16,color="black",shape="box"];1238 -> 1289[label="",style="solid", color="black", weight=3]; 1239[label="True",fontsize=16,color="green",shape="box"];991 -> 1031[label="",style="dashed", color="red", weight=0]; 991[label="primPlusNat (primMulNat vwx30000 (Succ vwx40100)) (Succ vwx40100)",fontsize=16,color="magenta"];991 -> 1032[label="",style="dashed", color="magenta", weight=3]; 992[label="Zero",fontsize=16,color="green",shape="box"];993[label="Zero",fontsize=16,color="green",shape="box"];994[label="Zero",fontsize=16,color="green",shape="box"];1241[label="primCmpFloat vwx220 vwx240",fontsize=16,color="burlywood",shape="box"];2501[label="vwx220/Float vwx2200 vwx2201",fontsize=10,color="white",style="solid",shape="box"];1241 -> 2501[label="",style="solid", color="burlywood", weight=9]; 2501 -> 1290[label="",style="solid", color="burlywood", weight=3]; 1242[label="primCmpDouble vwx220 vwx240",fontsize=16,color="burlywood",shape="box"];2502[label="vwx220/Double vwx2200 vwx2201",fontsize=10,color="white",style="solid",shape="box"];1242 -> 2502[label="",style="solid", color="burlywood", weight=9]; 2502 -> 1291[label="",style="solid", color="burlywood", weight=3]; 1243[label="compare (vwx2200 :% vwx2201) vwx240",fontsize=16,color="burlywood",shape="box"];2503[label="vwx240/vwx2400 :% vwx2401",fontsize=10,color="white",style="solid",shape="box"];1243 -> 2503[label="",style="solid", color="burlywood", weight=9]; 2503 -> 1292[label="",style="solid", color="burlywood", weight=3]; 1244[label="compare (vwx2200 : vwx2201) vwx240",fontsize=16,color="burlywood",shape="box"];2504[label="vwx240/vwx2400 : vwx2401",fontsize=10,color="white",style="solid",shape="box"];1244 -> 2504[label="",style="solid", color="burlywood", weight=9]; 2504 -> 1293[label="",style="solid", color="burlywood", weight=3]; 2505[label="vwx240/[]",fontsize=10,color="white",style="solid",shape="box"];1244 -> 2505[label="",style="solid", color="burlywood", weight=9]; 2505 -> 1294[label="",style="solid", color="burlywood", weight=3]; 1245[label="compare [] vwx240",fontsize=16,color="burlywood",shape="box"];2506[label="vwx240/vwx2400 : vwx2401",fontsize=10,color="white",style="solid",shape="box"];1245 -> 2506[label="",style="solid", color="burlywood", weight=9]; 2506 -> 1295[label="",style="solid", color="burlywood", weight=3]; 2507[label="vwx240/[]",fontsize=10,color="white",style="solid",shape="box"];1245 -> 2507[label="",style="solid", color="burlywood", weight=9]; 2507 -> 1296[label="",style="solid", color="burlywood", weight=3]; 1246[label="compare3 vwx220 vwx240",fontsize=16,color="black",shape="box"];1246 -> 1297[label="",style="solid", color="black", weight=3]; 1247[label="compare (Integer vwx2200) vwx240",fontsize=16,color="burlywood",shape="box"];2508[label="vwx240/Integer vwx2400",fontsize=10,color="white",style="solid",shape="box"];1247 -> 2508[label="",style="solid", color="burlywood", weight=9]; 2508 -> 1298[label="",style="solid", color="burlywood", weight=3]; 1248[label="primCmpChar vwx220 vwx240",fontsize=16,color="burlywood",shape="box"];2509[label="vwx220/Char vwx2200",fontsize=10,color="white",style="solid",shape="box"];1248 -> 2509[label="",style="solid", color="burlywood", weight=9]; 2509 -> 1299[label="",style="solid", color="burlywood", weight=3]; 1249[label="compare3 vwx220 vwx240",fontsize=16,color="black",shape="box"];1249 -> 1300[label="",style="solid", color="black", weight=3]; 1250[label="compare3 vwx220 vwx240",fontsize=16,color="black",shape="box"];1250 -> 1301[label="",style="solid", color="black", weight=3]; 1251[label="compare3 vwx220 vwx240",fontsize=16,color="black",shape="box"];1251 -> 1302[label="",style="solid", color="black", weight=3]; 1252[label="compare3 vwx220 vwx240",fontsize=16,color="black",shape="box"];1252 -> 1303[label="",style="solid", color="black", weight=3]; 1253[label="compare3 vwx220 vwx240",fontsize=16,color="black",shape="box"];1253 -> 1304[label="",style="solid", color="black", weight=3]; 1254[label="primCmpInt vwx220 vwx240",fontsize=16,color="burlywood",shape="triangle"];2510[label="vwx220/Pos vwx2200",fontsize=10,color="white",style="solid",shape="box"];1254 -> 2510[label="",style="solid", color="burlywood", weight=9]; 2510 -> 1305[label="",style="solid", color="burlywood", weight=3]; 2511[label="vwx220/Neg vwx2200",fontsize=10,color="white",style="solid",shape="box"];1254 -> 2511[label="",style="solid", color="burlywood", weight=9]; 2511 -> 1306[label="",style="solid", color="burlywood", weight=3]; 1255[label="compare () vwx240",fontsize=16,color="burlywood",shape="box"];2512[label="vwx240/()",fontsize=10,color="white",style="solid",shape="box"];1255 -> 2512[label="",style="solid", color="burlywood", weight=9]; 2512 -> 1307[label="",style="solid", color="burlywood", weight=3]; 1257 -> 1162[label="",style="dashed", color="red", weight=0]; 1257[label="compare vwx221 vwx241",fontsize=16,color="magenta"];1257 -> 1308[label="",style="dashed", color="magenta", weight=3]; 1257 -> 1309[label="",style="dashed", color="magenta", weight=3]; 1256[label="vwx71 /= GT",fontsize=16,color="black",shape="triangle"];1256 -> 1310[label="",style="solid", color="black", weight=3]; 1258 -> 1164[label="",style="dashed", color="red", weight=0]; 1258[label="compare vwx221 vwx241",fontsize=16,color="magenta"];1258 -> 1311[label="",style="dashed", color="magenta", weight=3]; 1258 -> 1312[label="",style="dashed", color="magenta", weight=3]; 1259 -> 1166[label="",style="dashed", color="red", weight=0]; 1259[label="compare vwx221 vwx241",fontsize=16,color="magenta"];1259 -> 1313[label="",style="dashed", color="magenta", weight=3]; 1259 -> 1314[label="",style="dashed", color="magenta", weight=3]; 1260 -> 1168[label="",style="dashed", color="red", weight=0]; 1260[label="compare vwx221 vwx241",fontsize=16,color="magenta"];1260 -> 1315[label="",style="dashed", color="magenta", weight=3]; 1260 -> 1316[label="",style="dashed", color="magenta", weight=3]; 1265[label="(vwx2210,vwx2211) <= (vwx2410,vwx2411)",fontsize=16,color="black",shape="box"];1265 -> 1327[label="",style="solid", color="black", weight=3]; 1261 -> 1172[label="",style="dashed", color="red", weight=0]; 1261[label="compare vwx221 vwx241",fontsize=16,color="magenta"];1261 -> 1317[label="",style="dashed", color="magenta", weight=3]; 1261 -> 1318[label="",style="dashed", color="magenta", weight=3]; 1262 -> 1174[label="",style="dashed", color="red", weight=0]; 1262[label="compare vwx221 vwx241",fontsize=16,color="magenta"];1262 -> 1319[label="",style="dashed", color="magenta", weight=3]; 1262 -> 1320[label="",style="dashed", color="magenta", weight=3]; 1266[label="Left vwx2210 <= Left vwx2410",fontsize=16,color="black",shape="box"];1266 -> 1328[label="",style="solid", color="black", weight=3]; 1267[label="Left vwx2210 <= Right vwx2410",fontsize=16,color="black",shape="box"];1267 -> 1329[label="",style="solid", color="black", weight=3]; 1268[label="Right vwx2210 <= Left vwx2410",fontsize=16,color="black",shape="box"];1268 -> 1330[label="",style="solid", color="black", weight=3]; 1269[label="Right vwx2210 <= Right vwx2410",fontsize=16,color="black",shape="box"];1269 -> 1331[label="",style="solid", color="black", weight=3]; 1270[label="LT <= LT",fontsize=16,color="black",shape="box"];1270 -> 1332[label="",style="solid", color="black", weight=3]; 1271[label="LT <= EQ",fontsize=16,color="black",shape="box"];1271 -> 1333[label="",style="solid", color="black", weight=3]; 1272[label="LT <= GT",fontsize=16,color="black",shape="box"];1272 -> 1334[label="",style="solid", color="black", weight=3]; 1273[label="EQ <= LT",fontsize=16,color="black",shape="box"];1273 -> 1335[label="",style="solid", color="black", weight=3]; 1274[label="EQ <= EQ",fontsize=16,color="black",shape="box"];1274 -> 1336[label="",style="solid", color="black", weight=3]; 1275[label="EQ <= GT",fontsize=16,color="black",shape="box"];1275 -> 1337[label="",style="solid", color="black", weight=3]; 1276[label="GT <= LT",fontsize=16,color="black",shape="box"];1276 -> 1338[label="",style="solid", color="black", weight=3]; 1277[label="GT <= EQ",fontsize=16,color="black",shape="box"];1277 -> 1339[label="",style="solid", color="black", weight=3]; 1278[label="GT <= GT",fontsize=16,color="black",shape="box"];1278 -> 1340[label="",style="solid", color="black", weight=3]; 1279[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];1279 -> 1341[label="",style="solid", color="black", weight=3]; 1280[label="Nothing <= Just vwx2410",fontsize=16,color="black",shape="box"];1280 -> 1342[label="",style="solid", color="black", weight=3]; 1281[label="Just vwx2210 <= Nothing",fontsize=16,color="black",shape="box"];1281 -> 1343[label="",style="solid", color="black", weight=3]; 1282[label="Just vwx2210 <= Just vwx2410",fontsize=16,color="black",shape="box"];1282 -> 1344[label="",style="solid", color="black", weight=3]; 1283[label="False <= False",fontsize=16,color="black",shape="box"];1283 -> 1345[label="",style="solid", color="black", weight=3]; 1284[label="False <= True",fontsize=16,color="black",shape="box"];1284 -> 1346[label="",style="solid", color="black", weight=3]; 1285[label="True <= False",fontsize=16,color="black",shape="box"];1285 -> 1347[label="",style="solid", color="black", weight=3]; 1286[label="True <= True",fontsize=16,color="black",shape="box"];1286 -> 1348[label="",style="solid", color="black", weight=3]; 1287[label="(vwx2210,vwx2211,vwx2212) <= (vwx2410,vwx2411,vwx2412)",fontsize=16,color="black",shape="box"];1287 -> 1349[label="",style="solid", color="black", weight=3]; 1263 -> 1186[label="",style="dashed", color="red", weight=0]; 1263[label="compare vwx221 vwx241",fontsize=16,color="magenta"];1263 -> 1321[label="",style="dashed", color="magenta", weight=3]; 1263 -> 1322[label="",style="dashed", color="magenta", weight=3]; 1264 -> 1188[label="",style="dashed", color="red", weight=0]; 1264[label="compare vwx221 vwx241",fontsize=16,color="magenta"];1264 -> 1323[label="",style="dashed", color="magenta", weight=3]; 1264 -> 1324[label="",style="dashed", color="magenta", weight=3]; 1288[label="compare0 (vwx65,vwx66) (vwx67,vwx68) otherwise",fontsize=16,color="black",shape="box"];1288 -> 1350[label="",style="solid", color="black", weight=3]; 1289[label="LT",fontsize=16,color="green",shape="box"];1032 -> 791[label="",style="dashed", color="red", weight=0]; 1032[label="primMulNat vwx30000 (Succ vwx40100)",fontsize=16,color="magenta"];1032 -> 1063[label="",style="dashed", color="magenta", weight=3]; 1032 -> 1064[label="",style="dashed", color="magenta", weight=3]; 1031[label="primPlusNat vwx56 (Succ vwx40100)",fontsize=16,color="burlywood",shape="triangle"];2513[label="vwx56/Succ vwx560",fontsize=10,color="white",style="solid",shape="box"];1031 -> 2513[label="",style="solid", color="burlywood", weight=9]; 2513 -> 1065[label="",style="solid", color="burlywood", weight=3]; 2514[label="vwx56/Zero",fontsize=10,color="white",style="solid",shape="box"];1031 -> 2514[label="",style="solid", color="burlywood", weight=9]; 2514 -> 1066[label="",style="solid", color="burlywood", weight=3]; 1290[label="primCmpFloat (Float vwx2200 vwx2201) vwx240",fontsize=16,color="burlywood",shape="box"];2515[label="vwx2201/Pos vwx22010",fontsize=10,color="white",style="solid",shape="box"];1290 -> 2515[label="",style="solid", color="burlywood", weight=9]; 2515 -> 1351[label="",style="solid", color="burlywood", weight=3]; 2516[label="vwx2201/Neg vwx22010",fontsize=10,color="white",style="solid",shape="box"];1290 -> 2516[label="",style="solid", color="burlywood", weight=9]; 2516 -> 1352[label="",style="solid", color="burlywood", weight=3]; 1291[label="primCmpDouble (Double vwx2200 vwx2201) vwx240",fontsize=16,color="burlywood",shape="box"];2517[label="vwx2201/Pos vwx22010",fontsize=10,color="white",style="solid",shape="box"];1291 -> 2517[label="",style="solid", color="burlywood", weight=9]; 2517 -> 1353[label="",style="solid", color="burlywood", weight=3]; 2518[label="vwx2201/Neg vwx22010",fontsize=10,color="white",style="solid",shape="box"];1291 -> 2518[label="",style="solid", color="burlywood", weight=9]; 2518 -> 1354[label="",style="solid", color="burlywood", weight=3]; 1292[label="compare (vwx2200 :% vwx2201) (vwx2400 :% vwx2401)",fontsize=16,color="black",shape="box"];1292 -> 1355[label="",style="solid", color="black", weight=3]; 1293[label="compare (vwx2200 : vwx2201) (vwx2400 : vwx2401)",fontsize=16,color="black",shape="box"];1293 -> 1356[label="",style="solid", color="black", weight=3]; 1294[label="compare (vwx2200 : vwx2201) []",fontsize=16,color="black",shape="box"];1294 -> 1357[label="",style="solid", color="black", weight=3]; 1295[label="compare [] (vwx2400 : vwx2401)",fontsize=16,color="black",shape="box"];1295 -> 1358[label="",style="solid", color="black", weight=3]; 1296[label="compare [] []",fontsize=16,color="black",shape="box"];1296 -> 1359[label="",style="solid", color="black", weight=3]; 1297 -> 1004[label="",style="dashed", color="red", weight=0]; 1297[label="compare2 vwx220 vwx240 (vwx220 == vwx240)",fontsize=16,color="magenta"];1297 -> 1360[label="",style="dashed", color="magenta", weight=3]; 1297 -> 1361[label="",style="dashed", color="magenta", weight=3]; 1297 -> 1362[label="",style="dashed", color="magenta", weight=3]; 1298[label="compare (Integer vwx2200) (Integer vwx2400)",fontsize=16,color="black",shape="box"];1298 -> 1363[label="",style="solid", color="black", weight=3]; 1299[label="primCmpChar (Char vwx2200) vwx240",fontsize=16,color="burlywood",shape="box"];2519[label="vwx240/Char vwx2400",fontsize=10,color="white",style="solid",shape="box"];1299 -> 2519[label="",style="solid", color="burlywood", weight=9]; 2519 -> 1364[label="",style="solid", color="burlywood", weight=3]; 1300 -> 1365[label="",style="dashed", color="red", weight=0]; 1300[label="compare2 vwx220 vwx240 (vwx220 == vwx240)",fontsize=16,color="magenta"];1300 -> 1366[label="",style="dashed", color="magenta", weight=3]; 1301 -> 1367[label="",style="dashed", color="red", weight=0]; 1301[label="compare2 vwx220 vwx240 (vwx220 == vwx240)",fontsize=16,color="magenta"];1301 -> 1368[label="",style="dashed", color="magenta", weight=3]; 1302 -> 1369[label="",style="dashed", color="red", weight=0]; 1302[label="compare2 vwx220 vwx240 (vwx220 == vwx240)",fontsize=16,color="magenta"];1302 -> 1370[label="",style="dashed", color="magenta", weight=3]; 1303 -> 1371[label="",style="dashed", color="red", weight=0]; 1303[label="compare2 vwx220 vwx240 (vwx220 == vwx240)",fontsize=16,color="magenta"];1303 -> 1372[label="",style="dashed", color="magenta", weight=3]; 1304 -> 1373[label="",style="dashed", color="red", weight=0]; 1304[label="compare2 vwx220 vwx240 (vwx220 == vwx240)",fontsize=16,color="magenta"];1304 -> 1374[label="",style="dashed", color="magenta", weight=3]; 1305[label="primCmpInt (Pos vwx2200) vwx240",fontsize=16,color="burlywood",shape="box"];2520[label="vwx2200/Succ vwx22000",fontsize=10,color="white",style="solid",shape="box"];1305 -> 2520[label="",style="solid", color="burlywood", weight=9]; 2520 -> 1375[label="",style="solid", color="burlywood", weight=3]; 2521[label="vwx2200/Zero",fontsize=10,color="white",style="solid",shape="box"];1305 -> 2521[label="",style="solid", color="burlywood", weight=9]; 2521 -> 1376[label="",style="solid", color="burlywood", weight=3]; 1306[label="primCmpInt (Neg vwx2200) vwx240",fontsize=16,color="burlywood",shape="box"];2522[label="vwx2200/Succ vwx22000",fontsize=10,color="white",style="solid",shape="box"];1306 -> 2522[label="",style="solid", color="burlywood", weight=9]; 2522 -> 1377[label="",style="solid", color="burlywood", weight=3]; 2523[label="vwx2200/Zero",fontsize=10,color="white",style="solid",shape="box"];1306 -> 2523[label="",style="solid", color="burlywood", weight=9]; 2523 -> 1378[label="",style="solid", color="burlywood", weight=3]; 1307[label="compare () ()",fontsize=16,color="black",shape="box"];1307 -> 1379[label="",style="solid", color="black", weight=3]; 1308[label="vwx241",fontsize=16,color="green",shape="box"];1309[label="vwx221",fontsize=16,color="green",shape="box"];1310 -> 1380[label="",style="dashed", color="red", weight=0]; 1310[label="not (vwx71 == GT)",fontsize=16,color="magenta"];1310 -> 1381[label="",style="dashed", color="magenta", weight=3]; 1311[label="vwx241",fontsize=16,color="green",shape="box"];1312[label="vwx221",fontsize=16,color="green",shape="box"];1313[label="vwx241",fontsize=16,color="green",shape="box"];1314[label="vwx221",fontsize=16,color="green",shape="box"];1315[label="vwx241",fontsize=16,color="green",shape="box"];1316[label="vwx221",fontsize=16,color="green",shape="box"];1327 -> 1477[label="",style="dashed", color="red", weight=0]; 1327[label="vwx2210 < vwx2410 || vwx2210 == vwx2410 && vwx2211 <= vwx2411",fontsize=16,color="magenta"];1327 -> 1478[label="",style="dashed", color="magenta", weight=3]; 1327 -> 1479[label="",style="dashed", color="magenta", weight=3]; 1317[label="vwx241",fontsize=16,color="green",shape="box"];1318[label="vwx221",fontsize=16,color="green",shape="box"];1319[label="vwx241",fontsize=16,color="green",shape="box"];1320[label="vwx221",fontsize=16,color="green",shape="box"];1328[label="vwx2210 <= vwx2410",fontsize=16,color="blue",shape="box"];2524[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1328 -> 2524[label="",style="solid", color="blue", weight=9]; 2524 -> 1387[label="",style="solid", color="blue", weight=3]; 2525[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1328 -> 2525[label="",style="solid", color="blue", weight=9]; 2525 -> 1388[label="",style="solid", color="blue", weight=3]; 2526[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1328 -> 2526[label="",style="solid", color="blue", weight=9]; 2526 -> 1389[label="",style="solid", color="blue", weight=3]; 2527[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1328 -> 2527[label="",style="solid", color="blue", weight=9]; 2527 -> 1390[label="",style="solid", color="blue", weight=3]; 2528[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1328 -> 2528[label="",style="solid", color="blue", weight=9]; 2528 -> 1391[label="",style="solid", color="blue", weight=3]; 2529[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1328 -> 2529[label="",style="solid", color="blue", weight=9]; 2529 -> 1392[label="",style="solid", color="blue", weight=3]; 2530[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1328 -> 2530[label="",style="solid", color="blue", weight=9]; 2530 -> 1393[label="",style="solid", color="blue", weight=3]; 2531[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1328 -> 2531[label="",style="solid", color="blue", weight=9]; 2531 -> 1394[label="",style="solid", color="blue", weight=3]; 2532[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1328 -> 2532[label="",style="solid", color="blue", weight=9]; 2532 -> 1395[label="",style="solid", color="blue", weight=3]; 2533[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1328 -> 2533[label="",style="solid", color="blue", weight=9]; 2533 -> 1396[label="",style="solid", color="blue", weight=3]; 2534[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1328 -> 2534[label="",style="solid", color="blue", weight=9]; 2534 -> 1397[label="",style="solid", color="blue", weight=3]; 2535[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1328 -> 2535[label="",style="solid", color="blue", weight=9]; 2535 -> 1398[label="",style="solid", color="blue", weight=3]; 2536[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1328 -> 2536[label="",style="solid", color="blue", weight=9]; 2536 -> 1399[label="",style="solid", color="blue", weight=3]; 2537[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1328 -> 2537[label="",style="solid", color="blue", weight=9]; 2537 -> 1400[label="",style="solid", color="blue", weight=3]; 1329[label="True",fontsize=16,color="green",shape="box"];1330[label="False",fontsize=16,color="green",shape="box"];1331[label="vwx2210 <= vwx2410",fontsize=16,color="blue",shape="box"];2538[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1331 -> 2538[label="",style="solid", color="blue", weight=9]; 2538 -> 1401[label="",style="solid", color="blue", weight=3]; 2539[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1331 -> 2539[label="",style="solid", color="blue", weight=9]; 2539 -> 1402[label="",style="solid", color="blue", weight=3]; 2540[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1331 -> 2540[label="",style="solid", color="blue", weight=9]; 2540 -> 1403[label="",style="solid", color="blue", weight=3]; 2541[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1331 -> 2541[label="",style="solid", color="blue", weight=9]; 2541 -> 1404[label="",style="solid", color="blue", weight=3]; 2542[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1331 -> 2542[label="",style="solid", color="blue", weight=9]; 2542 -> 1405[label="",style="solid", color="blue", weight=3]; 2543[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1331 -> 2543[label="",style="solid", color="blue", weight=9]; 2543 -> 1406[label="",style="solid", color="blue", weight=3]; 2544[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1331 -> 2544[label="",style="solid", color="blue", weight=9]; 2544 -> 1407[label="",style="solid", color="blue", weight=3]; 2545[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1331 -> 2545[label="",style="solid", color="blue", weight=9]; 2545 -> 1408[label="",style="solid", color="blue", weight=3]; 2546[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1331 -> 2546[label="",style="solid", color="blue", weight=9]; 2546 -> 1409[label="",style="solid", color="blue", weight=3]; 2547[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1331 -> 2547[label="",style="solid", color="blue", weight=9]; 2547 -> 1410[label="",style="solid", color="blue", weight=3]; 2548[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1331 -> 2548[label="",style="solid", color="blue", weight=9]; 2548 -> 1411[label="",style="solid", color="blue", weight=3]; 2549[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1331 -> 2549[label="",style="solid", color="blue", weight=9]; 2549 -> 1412[label="",style="solid", color="blue", weight=3]; 2550[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1331 -> 2550[label="",style="solid", color="blue", weight=9]; 2550 -> 1413[label="",style="solid", color="blue", weight=3]; 2551[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1331 -> 2551[label="",style="solid", color="blue", weight=9]; 2551 -> 1414[label="",style="solid", color="blue", weight=3]; 1332[label="True",fontsize=16,color="green",shape="box"];1333[label="True",fontsize=16,color="green",shape="box"];1334[label="True",fontsize=16,color="green",shape="box"];1335[label="False",fontsize=16,color="green",shape="box"];1336[label="True",fontsize=16,color="green",shape="box"];1337[label="True",fontsize=16,color="green",shape="box"];1338[label="False",fontsize=16,color="green",shape="box"];1339[label="False",fontsize=16,color="green",shape="box"];1340[label="True",fontsize=16,color="green",shape="box"];1341[label="True",fontsize=16,color="green",shape="box"];1342[label="True",fontsize=16,color="green",shape="box"];1343[label="False",fontsize=16,color="green",shape="box"];1344[label="vwx2210 <= vwx2410",fontsize=16,color="blue",shape="box"];2552[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1344 -> 2552[label="",style="solid", color="blue", weight=9]; 2552 -> 1415[label="",style="solid", color="blue", weight=3]; 2553[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1344 -> 2553[label="",style="solid", color="blue", weight=9]; 2553 -> 1416[label="",style="solid", color="blue", weight=3]; 2554[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1344 -> 2554[label="",style="solid", color="blue", weight=9]; 2554 -> 1417[label="",style="solid", color="blue", weight=3]; 2555[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1344 -> 2555[label="",style="solid", color="blue", weight=9]; 2555 -> 1418[label="",style="solid", color="blue", weight=3]; 2556[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1344 -> 2556[label="",style="solid", color="blue", weight=9]; 2556 -> 1419[label="",style="solid", color="blue", weight=3]; 2557[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1344 -> 2557[label="",style="solid", color="blue", weight=9]; 2557 -> 1420[label="",style="solid", color="blue", weight=3]; 2558[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1344 -> 2558[label="",style="solid", color="blue", weight=9]; 2558 -> 1421[label="",style="solid", color="blue", weight=3]; 2559[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1344 -> 2559[label="",style="solid", color="blue", weight=9]; 2559 -> 1422[label="",style="solid", color="blue", weight=3]; 2560[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1344 -> 2560[label="",style="solid", color="blue", weight=9]; 2560 -> 1423[label="",style="solid", color="blue", weight=3]; 2561[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1344 -> 2561[label="",style="solid", color="blue", weight=9]; 2561 -> 1424[label="",style="solid", color="blue", weight=3]; 2562[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1344 -> 2562[label="",style="solid", color="blue", weight=9]; 2562 -> 1425[label="",style="solid", color="blue", weight=3]; 2563[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1344 -> 2563[label="",style="solid", color="blue", weight=9]; 2563 -> 1426[label="",style="solid", color="blue", weight=3]; 2564[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1344 -> 2564[label="",style="solid", color="blue", weight=9]; 2564 -> 1427[label="",style="solid", color="blue", weight=3]; 2565[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1344 -> 2565[label="",style="solid", color="blue", weight=9]; 2565 -> 1428[label="",style="solid", color="blue", weight=3]; 1345[label="True",fontsize=16,color="green",shape="box"];1346[label="True",fontsize=16,color="green",shape="box"];1347[label="False",fontsize=16,color="green",shape="box"];1348[label="True",fontsize=16,color="green",shape="box"];1349 -> 1477[label="",style="dashed", color="red", weight=0]; 1349[label="vwx2210 < vwx2410 || vwx2210 == vwx2410 && (vwx2211 < vwx2411 || vwx2211 == vwx2411 && vwx2212 <= vwx2412)",fontsize=16,color="magenta"];1349 -> 1480[label="",style="dashed", color="magenta", weight=3]; 1349 -> 1481[label="",style="dashed", color="magenta", weight=3]; 1321[label="vwx241",fontsize=16,color="green",shape="box"];1322[label="vwx221",fontsize=16,color="green",shape="box"];1323[label="vwx241",fontsize=16,color="green",shape="box"];1324[label="vwx221",fontsize=16,color="green",shape="box"];1350[label="compare0 (vwx65,vwx66) (vwx67,vwx68) True",fontsize=16,color="black",shape="box"];1350 -> 1429[label="",style="solid", color="black", weight=3]; 1063[label="vwx30000",fontsize=16,color="green",shape="box"];1064[label="Succ vwx40100",fontsize=16,color="green",shape="box"];1065[label="primPlusNat (Succ vwx560) (Succ vwx40100)",fontsize=16,color="black",shape="box"];1065 -> 1068[label="",style="solid", color="black", weight=3]; 1066[label="primPlusNat Zero (Succ vwx40100)",fontsize=16,color="black",shape="box"];1066 -> 1069[label="",style="solid", color="black", weight=3]; 1351[label="primCmpFloat (Float vwx2200 (Pos vwx22010)) vwx240",fontsize=16,color="burlywood",shape="box"];2566[label="vwx240/Float vwx2400 vwx2401",fontsize=10,color="white",style="solid",shape="box"];1351 -> 2566[label="",style="solid", color="burlywood", weight=9]; 2566 -> 1430[label="",style="solid", color="burlywood", weight=3]; 1352[label="primCmpFloat (Float vwx2200 (Neg vwx22010)) vwx240",fontsize=16,color="burlywood",shape="box"];2567[label="vwx240/Float vwx2400 vwx2401",fontsize=10,color="white",style="solid",shape="box"];1352 -> 2567[label="",style="solid", color="burlywood", weight=9]; 2567 -> 1431[label="",style="solid", color="burlywood", weight=3]; 1353[label="primCmpDouble (Double vwx2200 (Pos vwx22010)) vwx240",fontsize=16,color="burlywood",shape="box"];2568[label="vwx240/Double vwx2400 vwx2401",fontsize=10,color="white",style="solid",shape="box"];1353 -> 2568[label="",style="solid", color="burlywood", weight=9]; 2568 -> 1432[label="",style="solid", color="burlywood", weight=3]; 1354[label="primCmpDouble (Double vwx2200 (Neg vwx22010)) vwx240",fontsize=16,color="burlywood",shape="box"];2569[label="vwx240/Double vwx2400 vwx2401",fontsize=10,color="white",style="solid",shape="box"];1354 -> 2569[label="",style="solid", color="burlywood", weight=9]; 2569 -> 1433[label="",style="solid", color="burlywood", weight=3]; 1355[label="compare (vwx2200 * vwx2401) (vwx2400 * vwx2201)",fontsize=16,color="blue",shape="box"];2570[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1355 -> 2570[label="",style="solid", color="blue", weight=9]; 2570 -> 1434[label="",style="solid", color="blue", weight=3]; 2571[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1355 -> 2571[label="",style="solid", color="blue", weight=9]; 2571 -> 1435[label="",style="solid", color="blue", weight=3]; 1356 -> 1436[label="",style="dashed", color="red", weight=0]; 1356[label="primCompAux vwx2200 vwx2400 (compare vwx2201 vwx2401)",fontsize=16,color="magenta"];1356 -> 1437[label="",style="dashed", color="magenta", weight=3]; 1357[label="GT",fontsize=16,color="green",shape="box"];1358[label="LT",fontsize=16,color="green",shape="box"];1359[label="EQ",fontsize=16,color="green",shape="box"];1360 -> 20[label="",style="dashed", color="red", weight=0]; 1360[label="vwx220 == vwx240",fontsize=16,color="magenta"];1360 -> 1438[label="",style="dashed", color="magenta", weight=3]; 1360 -> 1439[label="",style="dashed", color="magenta", weight=3]; 1361[label="vwx240",fontsize=16,color="green",shape="box"];1362[label="vwx220",fontsize=16,color="green",shape="box"];1363 -> 1254[label="",style="dashed", color="red", weight=0]; 1363[label="primCmpInt vwx2200 vwx2400",fontsize=16,color="magenta"];1363 -> 1440[label="",style="dashed", color="magenta", weight=3]; 1363 -> 1441[label="",style="dashed", color="magenta", weight=3]; 1364[label="primCmpChar (Char vwx2200) (Char vwx2400)",fontsize=16,color="black",shape="box"];1364 -> 1442[label="",style="solid", color="black", weight=3]; 1366 -> 23[label="",style="dashed", color="red", weight=0]; 1366[label="vwx220 == vwx240",fontsize=16,color="magenta"];1366 -> 1443[label="",style="dashed", color="magenta", weight=3]; 1366 -> 1444[label="",style="dashed", color="magenta", weight=3]; 1365[label="compare2 vwx220 vwx240 vwx72",fontsize=16,color="burlywood",shape="triangle"];2572[label="vwx72/False",fontsize=10,color="white",style="solid",shape="box"];1365 -> 2572[label="",style="solid", color="burlywood", weight=9]; 2572 -> 1445[label="",style="solid", color="burlywood", weight=3]; 2573[label="vwx72/True",fontsize=10,color="white",style="solid",shape="box"];1365 -> 2573[label="",style="solid", color="burlywood", weight=9]; 2573 -> 1446[label="",style="solid", color="burlywood", weight=3]; 1368 -> 30[label="",style="dashed", color="red", weight=0]; 1368[label="vwx220 == vwx240",fontsize=16,color="magenta"];1368 -> 1447[label="",style="dashed", color="magenta", weight=3]; 1368 -> 1448[label="",style="dashed", color="magenta", weight=3]; 1367[label="compare2 vwx220 vwx240 vwx73",fontsize=16,color="burlywood",shape="triangle"];2574[label="vwx73/False",fontsize=10,color="white",style="solid",shape="box"];1367 -> 2574[label="",style="solid", color="burlywood", weight=9]; 2574 -> 1449[label="",style="solid", color="burlywood", weight=3]; 2575[label="vwx73/True",fontsize=10,color="white",style="solid",shape="box"];1367 -> 2575[label="",style="solid", color="burlywood", weight=9]; 2575 -> 1450[label="",style="solid", color="burlywood", weight=3]; 1370 -> 28[label="",style="dashed", color="red", weight=0]; 1370[label="vwx220 == vwx240",fontsize=16,color="magenta"];1370 -> 1451[label="",style="dashed", color="magenta", weight=3]; 1370 -> 1452[label="",style="dashed", color="magenta", weight=3]; 1369[label="compare2 vwx220 vwx240 vwx74",fontsize=16,color="burlywood",shape="triangle"];2576[label="vwx74/False",fontsize=10,color="white",style="solid",shape="box"];1369 -> 2576[label="",style="solid", color="burlywood", weight=9]; 2576 -> 1453[label="",style="solid", color="burlywood", weight=3]; 2577[label="vwx74/True",fontsize=10,color="white",style="solid",shape="box"];1369 -> 2577[label="",style="solid", color="burlywood", weight=9]; 2577 -> 1454[label="",style="solid", color="burlywood", weight=3]; 1372 -> 17[label="",style="dashed", color="red", weight=0]; 1372[label="vwx220 == vwx240",fontsize=16,color="magenta"];1372 -> 1455[label="",style="dashed", color="magenta", weight=3]; 1372 -> 1456[label="",style="dashed", color="magenta", weight=3]; 1371[label="compare2 vwx220 vwx240 vwx75",fontsize=16,color="burlywood",shape="triangle"];2578[label="vwx75/False",fontsize=10,color="white",style="solid",shape="box"];1371 -> 2578[label="",style="solid", color="burlywood", weight=9]; 2578 -> 1457[label="",style="solid", color="burlywood", weight=3]; 2579[label="vwx75/True",fontsize=10,color="white",style="solid",shape="box"];1371 -> 2579[label="",style="solid", color="burlywood", weight=9]; 2579 -> 1458[label="",style="solid", color="burlywood", weight=3]; 1374 -> 24[label="",style="dashed", color="red", weight=0]; 1374[label="vwx220 == vwx240",fontsize=16,color="magenta"];1374 -> 1459[label="",style="dashed", color="magenta", weight=3]; 1374 -> 1460[label="",style="dashed", color="magenta", weight=3]; 1373[label="compare2 vwx220 vwx240 vwx76",fontsize=16,color="burlywood",shape="triangle"];2580[label="vwx76/False",fontsize=10,color="white",style="solid",shape="box"];1373 -> 2580[label="",style="solid", color="burlywood", weight=9]; 2580 -> 1461[label="",style="solid", color="burlywood", weight=3]; 2581[label="vwx76/True",fontsize=10,color="white",style="solid",shape="box"];1373 -> 2581[label="",style="solid", color="burlywood", weight=9]; 2581 -> 1462[label="",style="solid", color="burlywood", weight=3]; 1375[label="primCmpInt (Pos (Succ vwx22000)) vwx240",fontsize=16,color="burlywood",shape="box"];2582[label="vwx240/Pos vwx2400",fontsize=10,color="white",style="solid",shape="box"];1375 -> 2582[label="",style="solid", color="burlywood", weight=9]; 2582 -> 1463[label="",style="solid", color="burlywood", weight=3]; 2583[label="vwx240/Neg vwx2400",fontsize=10,color="white",style="solid",shape="box"];1375 -> 2583[label="",style="solid", color="burlywood", weight=9]; 2583 -> 1464[label="",style="solid", color="burlywood", weight=3]; 1376[label="primCmpInt (Pos Zero) vwx240",fontsize=16,color="burlywood",shape="box"];2584[label="vwx240/Pos vwx2400",fontsize=10,color="white",style="solid",shape="box"];1376 -> 2584[label="",style="solid", color="burlywood", weight=9]; 2584 -> 1465[label="",style="solid", color="burlywood", weight=3]; 2585[label="vwx240/Neg vwx2400",fontsize=10,color="white",style="solid",shape="box"];1376 -> 2585[label="",style="solid", color="burlywood", weight=9]; 2585 -> 1466[label="",style="solid", color="burlywood", weight=3]; 1377[label="primCmpInt (Neg (Succ vwx22000)) vwx240",fontsize=16,color="burlywood",shape="box"];2586[label="vwx240/Pos vwx2400",fontsize=10,color="white",style="solid",shape="box"];1377 -> 2586[label="",style="solid", color="burlywood", weight=9]; 2586 -> 1467[label="",style="solid", color="burlywood", weight=3]; 2587[label="vwx240/Neg vwx2400",fontsize=10,color="white",style="solid",shape="box"];1377 -> 2587[label="",style="solid", color="burlywood", weight=9]; 2587 -> 1468[label="",style="solid", color="burlywood", weight=3]; 1378[label="primCmpInt (Neg Zero) vwx240",fontsize=16,color="burlywood",shape="box"];2588[label="vwx240/Pos vwx2400",fontsize=10,color="white",style="solid",shape="box"];1378 -> 2588[label="",style="solid", color="burlywood", weight=9]; 2588 -> 1469[label="",style="solid", color="burlywood", weight=3]; 2589[label="vwx240/Neg vwx2400",fontsize=10,color="white",style="solid",shape="box"];1378 -> 2589[label="",style="solid", color="burlywood", weight=9]; 2589 -> 1470[label="",style="solid", color="burlywood", weight=3]; 1379[label="EQ",fontsize=16,color="green",shape="box"];1381 -> 30[label="",style="dashed", color="red", weight=0]; 1381[label="vwx71 == GT",fontsize=16,color="magenta"];1381 -> 1471[label="",style="dashed", color="magenta", weight=3]; 1381 -> 1472[label="",style="dashed", color="magenta", weight=3]; 1380[label="not vwx77",fontsize=16,color="burlywood",shape="triangle"];2590[label="vwx77/False",fontsize=10,color="white",style="solid",shape="box"];1380 -> 2590[label="",style="solid", color="burlywood", weight=9]; 2590 -> 1473[label="",style="solid", color="burlywood", weight=3]; 2591[label="vwx77/True",fontsize=10,color="white",style="solid",shape="box"];1380 -> 2591[label="",style="solid", color="burlywood", weight=9]; 2591 -> 1474[label="",style="solid", color="burlywood", weight=3]; 1478[label="vwx2210 < vwx2410",fontsize=16,color="blue",shape="box"];2592[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1478 -> 2592[label="",style="solid", color="blue", weight=9]; 2592 -> 1484[label="",style="solid", color="blue", weight=3]; 2593[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1478 -> 2593[label="",style="solid", color="blue", weight=9]; 2593 -> 1485[label="",style="solid", color="blue", weight=3]; 2594[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1478 -> 2594[label="",style="solid", color="blue", weight=9]; 2594 -> 1486[label="",style="solid", color="blue", weight=3]; 2595[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1478 -> 2595[label="",style="solid", color="blue", weight=9]; 2595 -> 1487[label="",style="solid", color="blue", weight=3]; 2596[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1478 -> 2596[label="",style="solid", color="blue", weight=9]; 2596 -> 1488[label="",style="solid", color="blue", weight=3]; 2597[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1478 -> 2597[label="",style="solid", color="blue", weight=9]; 2597 -> 1489[label="",style="solid", color="blue", weight=3]; 2598[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1478 -> 2598[label="",style="solid", color="blue", weight=9]; 2598 -> 1490[label="",style="solid", color="blue", weight=3]; 2599[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1478 -> 2599[label="",style="solid", color="blue", weight=9]; 2599 -> 1491[label="",style="solid", color="blue", weight=3]; 2600[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1478 -> 2600[label="",style="solid", color="blue", weight=9]; 2600 -> 1492[label="",style="solid", color="blue", weight=3]; 2601[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1478 -> 2601[label="",style="solid", color="blue", weight=9]; 2601 -> 1493[label="",style="solid", color="blue", weight=3]; 2602[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1478 -> 2602[label="",style="solid", color="blue", weight=9]; 2602 -> 1494[label="",style="solid", color="blue", weight=3]; 2603[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1478 -> 2603[label="",style="solid", color="blue", weight=9]; 2603 -> 1495[label="",style="solid", color="blue", weight=3]; 2604[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1478 -> 2604[label="",style="solid", color="blue", weight=9]; 2604 -> 1496[label="",style="solid", color="blue", weight=3]; 2605[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1478 -> 2605[label="",style="solid", color="blue", weight=9]; 2605 -> 1497[label="",style="solid", color="blue", weight=3]; 1479 -> 251[label="",style="dashed", color="red", weight=0]; 1479[label="vwx2210 == vwx2410 && vwx2211 <= vwx2411",fontsize=16,color="magenta"];1479 -> 1498[label="",style="dashed", color="magenta", weight=3]; 1479 -> 1499[label="",style="dashed", color="magenta", weight=3]; 1477[label="vwx83 || vwx84",fontsize=16,color="burlywood",shape="triangle"];2606[label="vwx83/False",fontsize=10,color="white",style="solid",shape="box"];1477 -> 2606[label="",style="solid", color="burlywood", weight=9]; 2606 -> 1500[label="",style="solid", color="burlywood", weight=3]; 2607[label="vwx83/True",fontsize=10,color="white",style="solid",shape="box"];1477 -> 2607[label="",style="solid", color="burlywood", weight=9]; 2607 -> 1501[label="",style="solid", color="burlywood", weight=3]; 1387 -> 1142[label="",style="dashed", color="red", weight=0]; 1387[label="vwx2210 <= vwx2410",fontsize=16,color="magenta"];1387 -> 1502[label="",style="dashed", color="magenta", weight=3]; 1387 -> 1503[label="",style="dashed", color="magenta", weight=3]; 1388 -> 1143[label="",style="dashed", color="red", weight=0]; 1388[label="vwx2210 <= vwx2410",fontsize=16,color="magenta"];1388 -> 1504[label="",style="dashed", color="magenta", weight=3]; 1388 -> 1505[label="",style="dashed", color="magenta", weight=3]; 1389 -> 1144[label="",style="dashed", color="red", weight=0]; 1389[label="vwx2210 <= vwx2410",fontsize=16,color="magenta"];1389 -> 1506[label="",style="dashed", color="magenta", weight=3]; 1389 -> 1507[label="",style="dashed", color="magenta", weight=3]; 1390 -> 1145[label="",style="dashed", color="red", weight=0]; 1390[label="vwx2210 <= vwx2410",fontsize=16,color="magenta"];1390 -> 1508[label="",style="dashed", color="magenta", weight=3]; 1390 -> 1509[label="",style="dashed", color="magenta", weight=3]; 1391 -> 1146[label="",style="dashed", color="red", weight=0]; 1391[label="vwx2210 <= vwx2410",fontsize=16,color="magenta"];1391 -> 1510[label="",style="dashed", color="magenta", weight=3]; 1391 -> 1511[label="",style="dashed", color="magenta", weight=3]; 1392 -> 1147[label="",style="dashed", color="red", weight=0]; 1392[label="vwx2210 <= vwx2410",fontsize=16,color="magenta"];1392 -> 1512[label="",style="dashed", color="magenta", weight=3]; 1392 -> 1513[label="",style="dashed", color="magenta", weight=3]; 1393 -> 1148[label="",style="dashed", color="red", weight=0]; 1393[label="vwx2210 <= vwx2410",fontsize=16,color="magenta"];1393 -> 1514[label="",style="dashed", color="magenta", weight=3]; 1393 -> 1515[label="",style="dashed", color="magenta", weight=3]; 1394 -> 1149[label="",style="dashed", color="red", weight=0]; 1394[label="vwx2210 <= vwx2410",fontsize=16,color="magenta"];1394 -> 1516[label="",style="dashed", color="magenta", weight=3]; 1394 -> 1517[label="",style="dashed", color="magenta", weight=3]; 1395 -> 1150[label="",style="dashed", color="red", weight=0]; 1395[label="vwx2210 <= vwx2410",fontsize=16,color="magenta"];1395 -> 1518[label="",style="dashed", color="magenta", weight=3]; 1395 -> 1519[label="",style="dashed", color="magenta", weight=3]; 1396 -> 1151[label="",style="dashed", color="red", weight=0]; 1396[label="vwx2210 <= vwx2410",fontsize=16,color="magenta"];1396 -> 1520[label="",style="dashed", color="magenta", weight=3]; 1396 -> 1521[label="",style="dashed", color="magenta", weight=3]; 1397 -> 1152[label="",style="dashed", color="red", weight=0]; 1397[label="vwx2210 <= vwx2410",fontsize=16,color="magenta"];1397 -> 1522[label="",style="dashed", color="magenta", weight=3]; 1397 -> 1523[label="",style="dashed", color="magenta", weight=3]; 1398 -> 1153[label="",style="dashed", color="red", weight=0]; 1398[label="vwx2210 <= vwx2410",fontsize=16,color="magenta"];1398 -> 1524[label="",style="dashed", color="magenta", weight=3]; 1398 -> 1525[label="",style="dashed", color="magenta", weight=3]; 1399 -> 1154[label="",style="dashed", color="red", weight=0]; 1399[label="vwx2210 <= vwx2410",fontsize=16,color="magenta"];1399 -> 1526[label="",style="dashed", color="magenta", weight=3]; 1399 -> 1527[label="",style="dashed", color="magenta", weight=3]; 1400 -> 1155[label="",style="dashed", color="red", weight=0]; 1400[label="vwx2210 <= vwx2410",fontsize=16,color="magenta"];1400 -> 1528[label="",style="dashed", color="magenta", weight=3]; 1400 -> 1529[label="",style="dashed", color="magenta", weight=3]; 1401 -> 1142[label="",style="dashed", color="red", weight=0]; 1401[label="vwx2210 <= vwx2410",fontsize=16,color="magenta"];1401 -> 1530[label="",style="dashed", color="magenta", weight=3]; 1401 -> 1531[label="",style="dashed", color="magenta", weight=3]; 1402 -> 1143[label="",style="dashed", color="red", weight=0]; 1402[label="vwx2210 <= vwx2410",fontsize=16,color="magenta"];1402 -> 1532[label="",style="dashed", color="magenta", weight=3]; 1402 -> 1533[label="",style="dashed", color="magenta", weight=3]; 1403 -> 1144[label="",style="dashed", color="red", weight=0]; 1403[label="vwx2210 <= vwx2410",fontsize=16,color="magenta"];1403 -> 1534[label="",style="dashed", color="magenta", weight=3]; 1403 -> 1535[label="",style="dashed", color="magenta", weight=3]; 1404 -> 1145[label="",style="dashed", color="red", weight=0]; 1404[label="vwx2210 <= vwx2410",fontsize=16,color="magenta"];1404 -> 1536[label="",style="dashed", color="magenta", weight=3]; 1404 -> 1537[label="",style="dashed", color="magenta", weight=3]; 1405 -> 1146[label="",style="dashed", color="red", weight=0]; 1405[label="vwx2210 <= vwx2410",fontsize=16,color="magenta"];1405 -> 1538[label="",style="dashed", color="magenta", weight=3]; 1405 -> 1539[label="",style="dashed", color="magenta", weight=3]; 1406 -> 1147[label="",style="dashed", color="red", weight=0]; 1406[label="vwx2210 <= vwx2410",fontsize=16,color="magenta"];1406 -> 1540[label="",style="dashed", color="magenta", weight=3]; 1406 -> 1541[label="",style="dashed", color="magenta", weight=3]; 1407 -> 1148[label="",style="dashed", color="red", weight=0]; 1407[label="vwx2210 <= vwx2410",fontsize=16,color="magenta"];1407 -> 1542[label="",style="dashed", color="magenta", weight=3]; 1407 -> 1543[label="",style="dashed", color="magenta", weight=3]; 1408 -> 1149[label="",style="dashed", color="red", weight=0]; 1408[label="vwx2210 <= vwx2410",fontsize=16,color="magenta"];1408 -> 1544[label="",style="dashed", color="magenta", weight=3]; 1408 -> 1545[label="",style="dashed", color="magenta", weight=3]; 1409 -> 1150[label="",style="dashed", color="red", weight=0]; 1409[label="vwx2210 <= vwx2410",fontsize=16,color="magenta"];1409 -> 1546[label="",style="dashed", color="magenta", weight=3]; 1409 -> 1547[label="",style="dashed", color="magenta", weight=3]; 1410 -> 1151[label="",style="dashed", color="red", weight=0]; 1410[label="vwx2210 <= vwx2410",fontsize=16,color="magenta"];1410 -> 1548[label="",style="dashed", color="magenta", weight=3]; 1410 -> 1549[label="",style="dashed", color="magenta", weight=3]; 1411 -> 1152[label="",style="dashed", color="red", weight=0]; 1411[label="vwx2210 <= vwx2410",fontsize=16,color="magenta"];1411 -> 1550[label="",style="dashed", color="magenta", weight=3]; 1411 -> 1551[label="",style="dashed", color="magenta", weight=3]; 1412 -> 1153[label="",style="dashed", color="red", weight=0]; 1412[label="vwx2210 <= vwx2410",fontsize=16,color="magenta"];1412 -> 1552[label="",style="dashed", color="magenta", weight=3]; 1412 -> 1553[label="",style="dashed", color="magenta", weight=3]; 1413 -> 1154[label="",style="dashed", color="red", weight=0]; 1413[label="vwx2210 <= vwx2410",fontsize=16,color="magenta"];1413 -> 1554[label="",style="dashed", color="magenta", weight=3]; 1413 -> 1555[label="",style="dashed", color="magenta", weight=3]; 1414 -> 1155[label="",style="dashed", color="red", weight=0]; 1414[label="vwx2210 <= vwx2410",fontsize=16,color="magenta"];1414 -> 1556[label="",style="dashed", color="magenta", weight=3]; 1414 -> 1557[label="",style="dashed", color="magenta", weight=3]; 1415 -> 1142[label="",style="dashed", color="red", weight=0]; 1415[label="vwx2210 <= vwx2410",fontsize=16,color="magenta"];1415 -> 1558[label="",style="dashed", color="magenta", weight=3]; 1415 -> 1559[label="",style="dashed", color="magenta", weight=3]; 1416 -> 1143[label="",style="dashed", color="red", weight=0]; 1416[label="vwx2210 <= vwx2410",fontsize=16,color="magenta"];1416 -> 1560[label="",style="dashed", color="magenta", weight=3]; 1416 -> 1561[label="",style="dashed", color="magenta", weight=3]; 1417 -> 1144[label="",style="dashed", color="red", weight=0]; 1417[label="vwx2210 <= vwx2410",fontsize=16,color="magenta"];1417 -> 1562[label="",style="dashed", color="magenta", weight=3]; 1417 -> 1563[label="",style="dashed", color="magenta", weight=3]; 1418 -> 1145[label="",style="dashed", color="red", weight=0]; 1418[label="vwx2210 <= vwx2410",fontsize=16,color="magenta"];1418 -> 1564[label="",style="dashed", color="magenta", weight=3]; 1418 -> 1565[label="",style="dashed", color="magenta", weight=3]; 1419 -> 1146[label="",style="dashed", color="red", weight=0]; 1419[label="vwx2210 <= vwx2410",fontsize=16,color="magenta"];1419 -> 1566[label="",style="dashed", color="magenta", weight=3]; 1419 -> 1567[label="",style="dashed", color="magenta", weight=3]; 1420 -> 1147[label="",style="dashed", color="red", weight=0]; 1420[label="vwx2210 <= vwx2410",fontsize=16,color="magenta"];1420 -> 1568[label="",style="dashed", color="magenta", weight=3]; 1420 -> 1569[label="",style="dashed", color="magenta", weight=3]; 1421 -> 1148[label="",style="dashed", color="red", weight=0]; 1421[label="vwx2210 <= vwx2410",fontsize=16,color="magenta"];1421 -> 1570[label="",style="dashed", color="magenta", weight=3]; 1421 -> 1571[label="",style="dashed", color="magenta", weight=3]; 1422 -> 1149[label="",style="dashed", color="red", weight=0]; 1422[label="vwx2210 <= vwx2410",fontsize=16,color="magenta"];1422 -> 1572[label="",style="dashed", color="magenta", weight=3]; 1422 -> 1573[label="",style="dashed", color="magenta", weight=3]; 1423 -> 1150[label="",style="dashed", color="red", weight=0]; 1423[label="vwx2210 <= vwx2410",fontsize=16,color="magenta"];1423 -> 1574[label="",style="dashed", color="magenta", weight=3]; 1423 -> 1575[label="",style="dashed", color="magenta", weight=3]; 1424 -> 1151[label="",style="dashed", color="red", weight=0]; 1424[label="vwx2210 <= vwx2410",fontsize=16,color="magenta"];1424 -> 1576[label="",style="dashed", color="magenta", weight=3]; 1424 -> 1577[label="",style="dashed", color="magenta", weight=3]; 1425 -> 1152[label="",style="dashed", color="red", weight=0]; 1425[label="vwx2210 <= vwx2410",fontsize=16,color="magenta"];1425 -> 1578[label="",style="dashed", color="magenta", weight=3]; 1425 -> 1579[label="",style="dashed", color="magenta", weight=3]; 1426 -> 1153[label="",style="dashed", color="red", weight=0]; 1426[label="vwx2210 <= vwx2410",fontsize=16,color="magenta"];1426 -> 1580[label="",style="dashed", color="magenta", weight=3]; 1426 -> 1581[label="",style="dashed", color="magenta", weight=3]; 1427 -> 1154[label="",style="dashed", color="red", weight=0]; 1427[label="vwx2210 <= vwx2410",fontsize=16,color="magenta"];1427 -> 1582[label="",style="dashed", color="magenta", weight=3]; 1427 -> 1583[label="",style="dashed", color="magenta", weight=3]; 1428 -> 1155[label="",style="dashed", color="red", weight=0]; 1428[label="vwx2210 <= vwx2410",fontsize=16,color="magenta"];1428 -> 1584[label="",style="dashed", color="magenta", weight=3]; 1428 -> 1585[label="",style="dashed", color="magenta", weight=3]; 1480[label="vwx2210 < vwx2410",fontsize=16,color="blue",shape="box"];2608[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1480 -> 2608[label="",style="solid", color="blue", weight=9]; 2608 -> 1586[label="",style="solid", color="blue", weight=3]; 2609[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1480 -> 2609[label="",style="solid", color="blue", weight=9]; 2609 -> 1587[label="",style="solid", color="blue", weight=3]; 2610[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1480 -> 2610[label="",style="solid", color="blue", weight=9]; 2610 -> 1588[label="",style="solid", color="blue", weight=3]; 2611[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1480 -> 2611[label="",style="solid", color="blue", weight=9]; 2611 -> 1589[label="",style="solid", color="blue", weight=3]; 2612[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1480 -> 2612[label="",style="solid", color="blue", weight=9]; 2612 -> 1590[label="",style="solid", color="blue", weight=3]; 2613[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1480 -> 2613[label="",style="solid", color="blue", weight=9]; 2613 -> 1591[label="",style="solid", color="blue", weight=3]; 2614[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1480 -> 2614[label="",style="solid", color="blue", weight=9]; 2614 -> 1592[label="",style="solid", color="blue", weight=3]; 2615[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1480 -> 2615[label="",style="solid", color="blue", weight=9]; 2615 -> 1593[label="",style="solid", color="blue", weight=3]; 2616[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1480 -> 2616[label="",style="solid", color="blue", weight=9]; 2616 -> 1594[label="",style="solid", color="blue", weight=3]; 2617[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1480 -> 2617[label="",style="solid", color="blue", weight=9]; 2617 -> 1595[label="",style="solid", color="blue", weight=3]; 2618[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1480 -> 2618[label="",style="solid", color="blue", weight=9]; 2618 -> 1596[label="",style="solid", color="blue", weight=3]; 2619[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1480 -> 2619[label="",style="solid", color="blue", weight=9]; 2619 -> 1597[label="",style="solid", color="blue", weight=3]; 2620[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1480 -> 2620[label="",style="solid", color="blue", weight=9]; 2620 -> 1598[label="",style="solid", color="blue", weight=3]; 2621[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1480 -> 2621[label="",style="solid", color="blue", weight=9]; 2621 -> 1599[label="",style="solid", color="blue", weight=3]; 1481 -> 251[label="",style="dashed", color="red", weight=0]; 1481[label="vwx2210 == vwx2410 && (vwx2211 < vwx2411 || vwx2211 == vwx2411 && vwx2212 <= vwx2412)",fontsize=16,color="magenta"];1481 -> 1600[label="",style="dashed", color="magenta", weight=3]; 1481 -> 1601[label="",style="dashed", color="magenta", weight=3]; 1429[label="GT",fontsize=16,color="green",shape="box"];1068[label="Succ (Succ (primPlusNat vwx560 vwx40100))",fontsize=16,color="green",shape="box"];1068 -> 1071[label="",style="dashed", color="green", weight=3]; 1069[label="Succ vwx40100",fontsize=16,color="green",shape="box"];1430[label="primCmpFloat (Float vwx2200 (Pos vwx22010)) (Float vwx2400 vwx2401)",fontsize=16,color="burlywood",shape="box"];2622[label="vwx2401/Pos vwx24010",fontsize=10,color="white",style="solid",shape="box"];1430 -> 2622[label="",style="solid", color="burlywood", weight=9]; 2622 -> 1602[label="",style="solid", color="burlywood", weight=3]; 2623[label="vwx2401/Neg vwx24010",fontsize=10,color="white",style="solid",shape="box"];1430 -> 2623[label="",style="solid", color="burlywood", weight=9]; 2623 -> 1603[label="",style="solid", color="burlywood", weight=3]; 1431[label="primCmpFloat (Float vwx2200 (Neg vwx22010)) (Float vwx2400 vwx2401)",fontsize=16,color="burlywood",shape="box"];2624[label="vwx2401/Pos vwx24010",fontsize=10,color="white",style="solid",shape="box"];1431 -> 2624[label="",style="solid", color="burlywood", weight=9]; 2624 -> 1604[label="",style="solid", color="burlywood", weight=3]; 2625[label="vwx2401/Neg vwx24010",fontsize=10,color="white",style="solid",shape="box"];1431 -> 2625[label="",style="solid", color="burlywood", weight=9]; 2625 -> 1605[label="",style="solid", color="burlywood", weight=3]; 1432[label="primCmpDouble (Double vwx2200 (Pos vwx22010)) (Double vwx2400 vwx2401)",fontsize=16,color="burlywood",shape="box"];2626[label="vwx2401/Pos vwx24010",fontsize=10,color="white",style="solid",shape="box"];1432 -> 2626[label="",style="solid", color="burlywood", weight=9]; 2626 -> 1606[label="",style="solid", color="burlywood", weight=3]; 2627[label="vwx2401/Neg vwx24010",fontsize=10,color="white",style="solid",shape="box"];1432 -> 2627[label="",style="solid", color="burlywood", weight=9]; 2627 -> 1607[label="",style="solid", color="burlywood", weight=3]; 1433[label="primCmpDouble (Double vwx2200 (Neg vwx22010)) (Double vwx2400 vwx2401)",fontsize=16,color="burlywood",shape="box"];2628[label="vwx2401/Pos vwx24010",fontsize=10,color="white",style="solid",shape="box"];1433 -> 2628[label="",style="solid", color="burlywood", weight=9]; 2628 -> 1608[label="",style="solid", color="burlywood", weight=3]; 2629[label="vwx2401/Neg vwx24010",fontsize=10,color="white",style="solid",shape="box"];1433 -> 2629[label="",style="solid", color="burlywood", weight=9]; 2629 -> 1609[label="",style="solid", color="burlywood", weight=3]; 1434 -> 1172[label="",style="dashed", color="red", weight=0]; 1434[label="compare (vwx2200 * vwx2401) (vwx2400 * vwx2201)",fontsize=16,color="magenta"];1434 -> 1610[label="",style="dashed", color="magenta", weight=3]; 1434 -> 1611[label="",style="dashed", color="magenta", weight=3]; 1435 -> 1186[label="",style="dashed", color="red", weight=0]; 1435[label="compare (vwx2200 * vwx2401) (vwx2400 * vwx2201)",fontsize=16,color="magenta"];1435 -> 1612[label="",style="dashed", color="magenta", weight=3]; 1435 -> 1613[label="",style="dashed", color="magenta", weight=3]; 1437 -> 1168[label="",style="dashed", color="red", weight=0]; 1437[label="compare vwx2201 vwx2401",fontsize=16,color="magenta"];1437 -> 1614[label="",style="dashed", color="magenta", weight=3]; 1437 -> 1615[label="",style="dashed", color="magenta", weight=3]; 1436[label="primCompAux vwx2200 vwx2400 vwx79",fontsize=16,color="black",shape="triangle"];1436 -> 1616[label="",style="solid", color="black", weight=3]; 1438[label="vwx220",fontsize=16,color="green",shape="box"];1439[label="vwx240",fontsize=16,color="green",shape="box"];1440[label="vwx2400",fontsize=16,color="green",shape="box"];1441[label="vwx2200",fontsize=16,color="green",shape="box"];1442[label="primCmpNat vwx2200 vwx2400",fontsize=16,color="burlywood",shape="triangle"];2630[label="vwx2200/Succ vwx22000",fontsize=10,color="white",style="solid",shape="box"];1442 -> 2630[label="",style="solid", color="burlywood", weight=9]; 2630 -> 1617[label="",style="solid", color="burlywood", weight=3]; 2631[label="vwx2200/Zero",fontsize=10,color="white",style="solid",shape="box"];1442 -> 2631[label="",style="solid", color="burlywood", weight=9]; 2631 -> 1618[label="",style="solid", color="burlywood", weight=3]; 1443[label="vwx220",fontsize=16,color="green",shape="box"];1444[label="vwx240",fontsize=16,color="green",shape="box"];1445[label="compare2 vwx220 vwx240 False",fontsize=16,color="black",shape="box"];1445 -> 1619[label="",style="solid", color="black", weight=3]; 1446[label="compare2 vwx220 vwx240 True",fontsize=16,color="black",shape="box"];1446 -> 1620[label="",style="solid", color="black", weight=3]; 1447[label="vwx220",fontsize=16,color="green",shape="box"];1448[label="vwx240",fontsize=16,color="green",shape="box"];1449[label="compare2 vwx220 vwx240 False",fontsize=16,color="black",shape="box"];1449 -> 1621[label="",style="solid", color="black", weight=3]; 1450[label="compare2 vwx220 vwx240 True",fontsize=16,color="black",shape="box"];1450 -> 1622[label="",style="solid", color="black", weight=3]; 1451[label="vwx220",fontsize=16,color="green",shape="box"];1452[label="vwx240",fontsize=16,color="green",shape="box"];1453[label="compare2 vwx220 vwx240 False",fontsize=16,color="black",shape="box"];1453 -> 1623[label="",style="solid", color="black", weight=3]; 1454[label="compare2 vwx220 vwx240 True",fontsize=16,color="black",shape="box"];1454 -> 1624[label="",style="solid", color="black", weight=3]; 1455[label="vwx220",fontsize=16,color="green",shape="box"];1456[label="vwx240",fontsize=16,color="green",shape="box"];1457[label="compare2 vwx220 vwx240 False",fontsize=16,color="black",shape="box"];1457 -> 1625[label="",style="solid", color="black", weight=3]; 1458[label="compare2 vwx220 vwx240 True",fontsize=16,color="black",shape="box"];1458 -> 1626[label="",style="solid", color="black", weight=3]; 1459[label="vwx220",fontsize=16,color="green",shape="box"];1460[label="vwx240",fontsize=16,color="green",shape="box"];1461[label="compare2 vwx220 vwx240 False",fontsize=16,color="black",shape="box"];1461 -> 1627[label="",style="solid", color="black", weight=3]; 1462[label="compare2 vwx220 vwx240 True",fontsize=16,color="black",shape="box"];1462 -> 1628[label="",style="solid", color="black", weight=3]; 1463[label="primCmpInt (Pos (Succ vwx22000)) (Pos vwx2400)",fontsize=16,color="black",shape="box"];1463 -> 1629[label="",style="solid", color="black", weight=3]; 1464[label="primCmpInt (Pos (Succ vwx22000)) (Neg vwx2400)",fontsize=16,color="black",shape="box"];1464 -> 1630[label="",style="solid", color="black", weight=3]; 1465[label="primCmpInt (Pos Zero) (Pos vwx2400)",fontsize=16,color="burlywood",shape="box"];2632[label="vwx2400/Succ vwx24000",fontsize=10,color="white",style="solid",shape="box"];1465 -> 2632[label="",style="solid", color="burlywood", weight=9]; 2632 -> 1631[label="",style="solid", color="burlywood", weight=3]; 2633[label="vwx2400/Zero",fontsize=10,color="white",style="solid",shape="box"];1465 -> 2633[label="",style="solid", color="burlywood", weight=9]; 2633 -> 1632[label="",style="solid", color="burlywood", weight=3]; 1466[label="primCmpInt (Pos Zero) (Neg vwx2400)",fontsize=16,color="burlywood",shape="box"];2634[label="vwx2400/Succ vwx24000",fontsize=10,color="white",style="solid",shape="box"];1466 -> 2634[label="",style="solid", color="burlywood", weight=9]; 2634 -> 1633[label="",style="solid", color="burlywood", weight=3]; 2635[label="vwx2400/Zero",fontsize=10,color="white",style="solid",shape="box"];1466 -> 2635[label="",style="solid", color="burlywood", weight=9]; 2635 -> 1634[label="",style="solid", color="burlywood", weight=3]; 1467[label="primCmpInt (Neg (Succ vwx22000)) (Pos vwx2400)",fontsize=16,color="black",shape="box"];1467 -> 1635[label="",style="solid", color="black", weight=3]; 1468[label="primCmpInt (Neg (Succ vwx22000)) (Neg vwx2400)",fontsize=16,color="black",shape="box"];1468 -> 1636[label="",style="solid", color="black", weight=3]; 1469[label="primCmpInt (Neg Zero) (Pos vwx2400)",fontsize=16,color="burlywood",shape="box"];2636[label="vwx2400/Succ vwx24000",fontsize=10,color="white",style="solid",shape="box"];1469 -> 2636[label="",style="solid", color="burlywood", weight=9]; 2636 -> 1637[label="",style="solid", color="burlywood", weight=3]; 2637[label="vwx2400/Zero",fontsize=10,color="white",style="solid",shape="box"];1469 -> 2637[label="",style="solid", color="burlywood", weight=9]; 2637 -> 1638[label="",style="solid", color="burlywood", weight=3]; 1470[label="primCmpInt (Neg Zero) (Neg vwx2400)",fontsize=16,color="burlywood",shape="box"];2638[label="vwx2400/Succ vwx24000",fontsize=10,color="white",style="solid",shape="box"];1470 -> 2638[label="",style="solid", color="burlywood", weight=9]; 2638 -> 1639[label="",style="solid", color="burlywood", weight=3]; 2639[label="vwx2400/Zero",fontsize=10,color="white",style="solid",shape="box"];1470 -> 2639[label="",style="solid", color="burlywood", weight=9]; 2639 -> 1640[label="",style="solid", color="burlywood", weight=3]; 1471[label="vwx71",fontsize=16,color="green",shape="box"];1472[label="GT",fontsize=16,color="green",shape="box"];1473[label="not False",fontsize=16,color="black",shape="box"];1473 -> 1641[label="",style="solid", color="black", weight=3]; 1474[label="not True",fontsize=16,color="black",shape="box"];1474 -> 1642[label="",style="solid", color="black", weight=3]; 1484 -> 1092[label="",style="dashed", color="red", weight=0]; 1484[label="vwx2210 < vwx2410",fontsize=16,color="magenta"];1484 -> 1643[label="",style="dashed", color="magenta", weight=3]; 1484 -> 1644[label="",style="dashed", color="magenta", weight=3]; 1485 -> 1093[label="",style="dashed", color="red", weight=0]; 1485[label="vwx2210 < vwx2410",fontsize=16,color="magenta"];1485 -> 1645[label="",style="dashed", color="magenta", weight=3]; 1485 -> 1646[label="",style="dashed", color="magenta", weight=3]; 1486 -> 1094[label="",style="dashed", color="red", weight=0]; 1486[label="vwx2210 < vwx2410",fontsize=16,color="magenta"];1486 -> 1647[label="",style="dashed", color="magenta", weight=3]; 1486 -> 1648[label="",style="dashed", color="magenta", weight=3]; 1487 -> 1095[label="",style="dashed", color="red", weight=0]; 1487[label="vwx2210 < vwx2410",fontsize=16,color="magenta"];1487 -> 1649[label="",style="dashed", color="magenta", weight=3]; 1487 -> 1650[label="",style="dashed", color="magenta", weight=3]; 1488 -> 1096[label="",style="dashed", color="red", weight=0]; 1488[label="vwx2210 < vwx2410",fontsize=16,color="magenta"];1488 -> 1651[label="",style="dashed", color="magenta", weight=3]; 1488 -> 1652[label="",style="dashed", color="magenta", weight=3]; 1489 -> 1097[label="",style="dashed", color="red", weight=0]; 1489[label="vwx2210 < vwx2410",fontsize=16,color="magenta"];1489 -> 1653[label="",style="dashed", color="magenta", weight=3]; 1489 -> 1654[label="",style="dashed", color="magenta", weight=3]; 1490 -> 1098[label="",style="dashed", color="red", weight=0]; 1490[label="vwx2210 < vwx2410",fontsize=16,color="magenta"];1490 -> 1655[label="",style="dashed", color="magenta", weight=3]; 1490 -> 1656[label="",style="dashed", color="magenta", weight=3]; 1491 -> 1099[label="",style="dashed", color="red", weight=0]; 1491[label="vwx2210 < vwx2410",fontsize=16,color="magenta"];1491 -> 1657[label="",style="dashed", color="magenta", weight=3]; 1491 -> 1658[label="",style="dashed", color="magenta", weight=3]; 1492 -> 1100[label="",style="dashed", color="red", weight=0]; 1492[label="vwx2210 < vwx2410",fontsize=16,color="magenta"];1492 -> 1659[label="",style="dashed", color="magenta", weight=3]; 1492 -> 1660[label="",style="dashed", color="magenta", weight=3]; 1493 -> 1101[label="",style="dashed", color="red", weight=0]; 1493[label="vwx2210 < vwx2410",fontsize=16,color="magenta"];1493 -> 1661[label="",style="dashed", color="magenta", weight=3]; 1493 -> 1662[label="",style="dashed", color="magenta", weight=3]; 1494 -> 1102[label="",style="dashed", color="red", weight=0]; 1494[label="vwx2210 < vwx2410",fontsize=16,color="magenta"];1494 -> 1663[label="",style="dashed", color="magenta", weight=3]; 1494 -> 1664[label="",style="dashed", color="magenta", weight=3]; 1495 -> 1103[label="",style="dashed", color="red", weight=0]; 1495[label="vwx2210 < vwx2410",fontsize=16,color="magenta"];1495 -> 1665[label="",style="dashed", color="magenta", weight=3]; 1495 -> 1666[label="",style="dashed", color="magenta", weight=3]; 1496 -> 1104[label="",style="dashed", color="red", weight=0]; 1496[label="vwx2210 < vwx2410",fontsize=16,color="magenta"];1496 -> 1667[label="",style="dashed", color="magenta", weight=3]; 1496 -> 1668[label="",style="dashed", color="magenta", weight=3]; 1497 -> 1105[label="",style="dashed", color="red", weight=0]; 1497[label="vwx2210 < vwx2410",fontsize=16,color="magenta"];1497 -> 1669[label="",style="dashed", color="magenta", weight=3]; 1497 -> 1670[label="",style="dashed", color="magenta", weight=3]; 1498[label="vwx2210 == vwx2410",fontsize=16,color="blue",shape="box"];2640[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1498 -> 2640[label="",style="solid", color="blue", weight=9]; 2640 -> 1671[label="",style="solid", color="blue", weight=3]; 2641[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1498 -> 2641[label="",style="solid", color="blue", weight=9]; 2641 -> 1672[label="",style="solid", color="blue", weight=3]; 2642[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1498 -> 2642[label="",style="solid", color="blue", weight=9]; 2642 -> 1673[label="",style="solid", color="blue", weight=3]; 2643[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1498 -> 2643[label="",style="solid", color="blue", weight=9]; 2643 -> 1674[label="",style="solid", color="blue", weight=3]; 2644[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1498 -> 2644[label="",style="solid", color="blue", weight=9]; 2644 -> 1675[label="",style="solid", color="blue", weight=3]; 2645[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1498 -> 2645[label="",style="solid", color="blue", weight=9]; 2645 -> 1676[label="",style="solid", color="blue", weight=3]; 2646[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1498 -> 2646[label="",style="solid", color="blue", weight=9]; 2646 -> 1677[label="",style="solid", color="blue", weight=3]; 2647[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1498 -> 2647[label="",style="solid", color="blue", weight=9]; 2647 -> 1678[label="",style="solid", color="blue", weight=3]; 2648[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1498 -> 2648[label="",style="solid", color="blue", weight=9]; 2648 -> 1679[label="",style="solid", color="blue", weight=3]; 2649[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1498 -> 2649[label="",style="solid", color="blue", weight=9]; 2649 -> 1680[label="",style="solid", color="blue", weight=3]; 2650[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1498 -> 2650[label="",style="solid", color="blue", weight=9]; 2650 -> 1681[label="",style="solid", color="blue", weight=3]; 2651[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1498 -> 2651[label="",style="solid", color="blue", weight=9]; 2651 -> 1682[label="",style="solid", color="blue", weight=3]; 2652[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1498 -> 2652[label="",style="solid", color="blue", weight=9]; 2652 -> 1683[label="",style="solid", color="blue", weight=3]; 2653[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1498 -> 2653[label="",style="solid", color="blue", weight=9]; 2653 -> 1684[label="",style="solid", color="blue", weight=3]; 1499[label="vwx2211 <= vwx2411",fontsize=16,color="blue",shape="box"];2654[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1499 -> 2654[label="",style="solid", color="blue", weight=9]; 2654 -> 1685[label="",style="solid", color="blue", weight=3]; 2655[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1499 -> 2655[label="",style="solid", color="blue", weight=9]; 2655 -> 1686[label="",style="solid", color="blue", weight=3]; 2656[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1499 -> 2656[label="",style="solid", color="blue", weight=9]; 2656 -> 1687[label="",style="solid", color="blue", weight=3]; 2657[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1499 -> 2657[label="",style="solid", color="blue", weight=9]; 2657 -> 1688[label="",style="solid", color="blue", weight=3]; 2658[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1499 -> 2658[label="",style="solid", color="blue", weight=9]; 2658 -> 1689[label="",style="solid", color="blue", weight=3]; 2659[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1499 -> 2659[label="",style="solid", color="blue", weight=9]; 2659 -> 1690[label="",style="solid", color="blue", weight=3]; 2660[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1499 -> 2660[label="",style="solid", color="blue", weight=9]; 2660 -> 1691[label="",style="solid", color="blue", weight=3]; 2661[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1499 -> 2661[label="",style="solid", color="blue", weight=9]; 2661 -> 1692[label="",style="solid", color="blue", weight=3]; 2662[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1499 -> 2662[label="",style="solid", color="blue", weight=9]; 2662 -> 1693[label="",style="solid", color="blue", weight=3]; 2663[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1499 -> 2663[label="",style="solid", color="blue", weight=9]; 2663 -> 1694[label="",style="solid", color="blue", weight=3]; 2664[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1499 -> 2664[label="",style="solid", color="blue", weight=9]; 2664 -> 1695[label="",style="solid", color="blue", weight=3]; 2665[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1499 -> 2665[label="",style="solid", color="blue", weight=9]; 2665 -> 1696[label="",style="solid", color="blue", weight=3]; 2666[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1499 -> 2666[label="",style="solid", color="blue", weight=9]; 2666 -> 1697[label="",style="solid", color="blue", weight=3]; 2667[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1499 -> 2667[label="",style="solid", color="blue", weight=9]; 2667 -> 1698[label="",style="solid", color="blue", weight=3]; 1500[label="False || vwx84",fontsize=16,color="black",shape="box"];1500 -> 1699[label="",style="solid", color="black", weight=3]; 1501[label="True || vwx84",fontsize=16,color="black",shape="box"];1501 -> 1700[label="",style="solid", color="black", weight=3]; 1502[label="vwx2210",fontsize=16,color="green",shape="box"];1503[label="vwx2410",fontsize=16,color="green",shape="box"];1504[label="vwx2210",fontsize=16,color="green",shape="box"];1505[label="vwx2410",fontsize=16,color="green",shape="box"];1506[label="vwx2210",fontsize=16,color="green",shape="box"];1507[label="vwx2410",fontsize=16,color="green",shape="box"];1508[label="vwx2210",fontsize=16,color="green",shape="box"];1509[label="vwx2410",fontsize=16,color="green",shape="box"];1510[label="vwx2210",fontsize=16,color="green",shape="box"];1511[label="vwx2410",fontsize=16,color="green",shape="box"];1512[label="vwx2210",fontsize=16,color="green",shape="box"];1513[label="vwx2410",fontsize=16,color="green",shape="box"];1514[label="vwx2210",fontsize=16,color="green",shape="box"];1515[label="vwx2410",fontsize=16,color="green",shape="box"];1516[label="vwx2210",fontsize=16,color="green",shape="box"];1517[label="vwx2410",fontsize=16,color="green",shape="box"];1518[label="vwx2210",fontsize=16,color="green",shape="box"];1519[label="vwx2410",fontsize=16,color="green",shape="box"];1520[label="vwx2210",fontsize=16,color="green",shape="box"];1521[label="vwx2410",fontsize=16,color="green",shape="box"];1522[label="vwx2210",fontsize=16,color="green",shape="box"];1523[label="vwx2410",fontsize=16,color="green",shape="box"];1524[label="vwx2210",fontsize=16,color="green",shape="box"];1525[label="vwx2410",fontsize=16,color="green",shape="box"];1526[label="vwx2210",fontsize=16,color="green",shape="box"];1527[label="vwx2410",fontsize=16,color="green",shape="box"];1528[label="vwx2210",fontsize=16,color="green",shape="box"];1529[label="vwx2410",fontsize=16,color="green",shape="box"];1530[label="vwx2210",fontsize=16,color="green",shape="box"];1531[label="vwx2410",fontsize=16,color="green",shape="box"];1532[label="vwx2210",fontsize=16,color="green",shape="box"];1533[label="vwx2410",fontsize=16,color="green",shape="box"];1534[label="vwx2210",fontsize=16,color="green",shape="box"];1535[label="vwx2410",fontsize=16,color="green",shape="box"];1536[label="vwx2210",fontsize=16,color="green",shape="box"];1537[label="vwx2410",fontsize=16,color="green",shape="box"];1538[label="vwx2210",fontsize=16,color="green",shape="box"];1539[label="vwx2410",fontsize=16,color="green",shape="box"];1540[label="vwx2210",fontsize=16,color="green",shape="box"];1541[label="vwx2410",fontsize=16,color="green",shape="box"];1542[label="vwx2210",fontsize=16,color="green",shape="box"];1543[label="vwx2410",fontsize=16,color="green",shape="box"];1544[label="vwx2210",fontsize=16,color="green",shape="box"];1545[label="vwx2410",fontsize=16,color="green",shape="box"];1546[label="vwx2210",fontsize=16,color="green",shape="box"];1547[label="vwx2410",fontsize=16,color="green",shape="box"];1548[label="vwx2210",fontsize=16,color="green",shape="box"];1549[label="vwx2410",fontsize=16,color="green",shape="box"];1550[label="vwx2210",fontsize=16,color="green",shape="box"];1551[label="vwx2410",fontsize=16,color="green",shape="box"];1552[label="vwx2210",fontsize=16,color="green",shape="box"];1553[label="vwx2410",fontsize=16,color="green",shape="box"];1554[label="vwx2210",fontsize=16,color="green",shape="box"];1555[label="vwx2410",fontsize=16,color="green",shape="box"];1556[label="vwx2210",fontsize=16,color="green",shape="box"];1557[label="vwx2410",fontsize=16,color="green",shape="box"];1558[label="vwx2210",fontsize=16,color="green",shape="box"];1559[label="vwx2410",fontsize=16,color="green",shape="box"];1560[label="vwx2210",fontsize=16,color="green",shape="box"];1561[label="vwx2410",fontsize=16,color="green",shape="box"];1562[label="vwx2210",fontsize=16,color="green",shape="box"];1563[label="vwx2410",fontsize=16,color="green",shape="box"];1564[label="vwx2210",fontsize=16,color="green",shape="box"];1565[label="vwx2410",fontsize=16,color="green",shape="box"];1566[label="vwx2210",fontsize=16,color="green",shape="box"];1567[label="vwx2410",fontsize=16,color="green",shape="box"];1568[label="vwx2210",fontsize=16,color="green",shape="box"];1569[label="vwx2410",fontsize=16,color="green",shape="box"];1570[label="vwx2210",fontsize=16,color="green",shape="box"];1571[label="vwx2410",fontsize=16,color="green",shape="box"];1572[label="vwx2210",fontsize=16,color="green",shape="box"];1573[label="vwx2410",fontsize=16,color="green",shape="box"];1574[label="vwx2210",fontsize=16,color="green",shape="box"];1575[label="vwx2410",fontsize=16,color="green",shape="box"];1576[label="vwx2210",fontsize=16,color="green",shape="box"];1577[label="vwx2410",fontsize=16,color="green",shape="box"];1578[label="vwx2210",fontsize=16,color="green",shape="box"];1579[label="vwx2410",fontsize=16,color="green",shape="box"];1580[label="vwx2210",fontsize=16,color="green",shape="box"];1581[label="vwx2410",fontsize=16,color="green",shape="box"];1582[label="vwx2210",fontsize=16,color="green",shape="box"];1583[label="vwx2410",fontsize=16,color="green",shape="box"];1584[label="vwx2210",fontsize=16,color="green",shape="box"];1585[label="vwx2410",fontsize=16,color="green",shape="box"];1586 -> 1092[label="",style="dashed", color="red", weight=0]; 1586[label="vwx2210 < vwx2410",fontsize=16,color="magenta"];1586 -> 1701[label="",style="dashed", color="magenta", weight=3]; 1586 -> 1702[label="",style="dashed", color="magenta", weight=3]; 1587 -> 1093[label="",style="dashed", color="red", weight=0]; 1587[label="vwx2210 < vwx2410",fontsize=16,color="magenta"];1587 -> 1703[label="",style="dashed", color="magenta", weight=3]; 1587 -> 1704[label="",style="dashed", color="magenta", weight=3]; 1588 -> 1094[label="",style="dashed", color="red", weight=0]; 1588[label="vwx2210 < vwx2410",fontsize=16,color="magenta"];1588 -> 1705[label="",style="dashed", color="magenta", weight=3]; 1588 -> 1706[label="",style="dashed", color="magenta", weight=3]; 1589 -> 1095[label="",style="dashed", color="red", weight=0]; 1589[label="vwx2210 < vwx2410",fontsize=16,color="magenta"];1589 -> 1707[label="",style="dashed", color="magenta", weight=3]; 1589 -> 1708[label="",style="dashed", color="magenta", weight=3]; 1590 -> 1096[label="",style="dashed", color="red", weight=0]; 1590[label="vwx2210 < vwx2410",fontsize=16,color="magenta"];1590 -> 1709[label="",style="dashed", color="magenta", weight=3]; 1590 -> 1710[label="",style="dashed", color="magenta", weight=3]; 1591 -> 1097[label="",style="dashed", color="red", weight=0]; 1591[label="vwx2210 < vwx2410",fontsize=16,color="magenta"];1591 -> 1711[label="",style="dashed", color="magenta", weight=3]; 1591 -> 1712[label="",style="dashed", color="magenta", weight=3]; 1592 -> 1098[label="",style="dashed", color="red", weight=0]; 1592[label="vwx2210 < vwx2410",fontsize=16,color="magenta"];1592 -> 1713[label="",style="dashed", color="magenta", weight=3]; 1592 -> 1714[label="",style="dashed", color="magenta", weight=3]; 1593 -> 1099[label="",style="dashed", color="red", weight=0]; 1593[label="vwx2210 < vwx2410",fontsize=16,color="magenta"];1593 -> 1715[label="",style="dashed", color="magenta", weight=3]; 1593 -> 1716[label="",style="dashed", color="magenta", weight=3]; 1594 -> 1100[label="",style="dashed", color="red", weight=0]; 1594[label="vwx2210 < vwx2410",fontsize=16,color="magenta"];1594 -> 1717[label="",style="dashed", color="magenta", weight=3]; 1594 -> 1718[label="",style="dashed", color="magenta", weight=3]; 1595 -> 1101[label="",style="dashed", color="red", weight=0]; 1595[label="vwx2210 < vwx2410",fontsize=16,color="magenta"];1595 -> 1719[label="",style="dashed", color="magenta", weight=3]; 1595 -> 1720[label="",style="dashed", color="magenta", weight=3]; 1596 -> 1102[label="",style="dashed", color="red", weight=0]; 1596[label="vwx2210 < vwx2410",fontsize=16,color="magenta"];1596 -> 1721[label="",style="dashed", color="magenta", weight=3]; 1596 -> 1722[label="",style="dashed", color="magenta", weight=3]; 1597 -> 1103[label="",style="dashed", color="red", weight=0]; 1597[label="vwx2210 < vwx2410",fontsize=16,color="magenta"];1597 -> 1723[label="",style="dashed", color="magenta", weight=3]; 1597 -> 1724[label="",style="dashed", color="magenta", weight=3]; 1598 -> 1104[label="",style="dashed", color="red", weight=0]; 1598[label="vwx2210 < vwx2410",fontsize=16,color="magenta"];1598 -> 1725[label="",style="dashed", color="magenta", weight=3]; 1598 -> 1726[label="",style="dashed", color="magenta", weight=3]; 1599 -> 1105[label="",style="dashed", color="red", weight=0]; 1599[label="vwx2210 < vwx2410",fontsize=16,color="magenta"];1599 -> 1727[label="",style="dashed", color="magenta", weight=3]; 1599 -> 1728[label="",style="dashed", color="magenta", weight=3]; 1600[label="vwx2210 == vwx2410",fontsize=16,color="blue",shape="box"];2668[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1600 -> 2668[label="",style="solid", color="blue", weight=9]; 2668 -> 1729[label="",style="solid", color="blue", weight=3]; 2669[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1600 -> 2669[label="",style="solid", color="blue", weight=9]; 2669 -> 1730[label="",style="solid", color="blue", weight=3]; 2670[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1600 -> 2670[label="",style="solid", color="blue", weight=9]; 2670 -> 1731[label="",style="solid", color="blue", weight=3]; 2671[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1600 -> 2671[label="",style="solid", color="blue", weight=9]; 2671 -> 1732[label="",style="solid", color="blue", weight=3]; 2672[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1600 -> 2672[label="",style="solid", color="blue", weight=9]; 2672 -> 1733[label="",style="solid", color="blue", weight=3]; 2673[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1600 -> 2673[label="",style="solid", color="blue", weight=9]; 2673 -> 1734[label="",style="solid", color="blue", weight=3]; 2674[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1600 -> 2674[label="",style="solid", color="blue", weight=9]; 2674 -> 1735[label="",style="solid", color="blue", weight=3]; 2675[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1600 -> 2675[label="",style="solid", color="blue", weight=9]; 2675 -> 1736[label="",style="solid", color="blue", weight=3]; 2676[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1600 -> 2676[label="",style="solid", color="blue", weight=9]; 2676 -> 1737[label="",style="solid", color="blue", weight=3]; 2677[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1600 -> 2677[label="",style="solid", color="blue", weight=9]; 2677 -> 1738[label="",style="solid", color="blue", weight=3]; 2678[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1600 -> 2678[label="",style="solid", color="blue", weight=9]; 2678 -> 1739[label="",style="solid", color="blue", weight=3]; 2679[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1600 -> 2679[label="",style="solid", color="blue", weight=9]; 2679 -> 1740[label="",style="solid", color="blue", weight=3]; 2680[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1600 -> 2680[label="",style="solid", color="blue", weight=9]; 2680 -> 1741[label="",style="solid", color="blue", weight=3]; 2681[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1600 -> 2681[label="",style="solid", color="blue", weight=9]; 2681 -> 1742[label="",style="solid", color="blue", weight=3]; 1601 -> 1477[label="",style="dashed", color="red", weight=0]; 1601[label="vwx2211 < vwx2411 || vwx2211 == vwx2411 && vwx2212 <= vwx2412",fontsize=16,color="magenta"];1601 -> 1743[label="",style="dashed", color="magenta", weight=3]; 1601 -> 1744[label="",style="dashed", color="magenta", weight=3]; 1071[label="primPlusNat vwx560 vwx40100",fontsize=16,color="burlywood",shape="triangle"];2682[label="vwx560/Succ vwx5600",fontsize=10,color="white",style="solid",shape="box"];1071 -> 2682[label="",style="solid", color="burlywood", weight=9]; 2682 -> 1073[label="",style="solid", color="burlywood", weight=3]; 2683[label="vwx560/Zero",fontsize=10,color="white",style="solid",shape="box"];1071 -> 2683[label="",style="solid", color="burlywood", weight=9]; 2683 -> 1074[label="",style="solid", color="burlywood", weight=3]; 1602[label="primCmpFloat (Float vwx2200 (Pos vwx22010)) (Float vwx2400 (Pos vwx24010))",fontsize=16,color="black",shape="box"];1602 -> 1745[label="",style="solid", color="black", weight=3]; 1603[label="primCmpFloat (Float vwx2200 (Pos vwx22010)) (Float vwx2400 (Neg vwx24010))",fontsize=16,color="black",shape="box"];1603 -> 1746[label="",style="solid", color="black", weight=3]; 1604[label="primCmpFloat (Float vwx2200 (Neg vwx22010)) (Float vwx2400 (Pos vwx24010))",fontsize=16,color="black",shape="box"];1604 -> 1747[label="",style="solid", color="black", weight=3]; 1605[label="primCmpFloat (Float vwx2200 (Neg vwx22010)) (Float vwx2400 (Neg vwx24010))",fontsize=16,color="black",shape="box"];1605 -> 1748[label="",style="solid", color="black", weight=3]; 1606[label="primCmpDouble (Double vwx2200 (Pos vwx22010)) (Double vwx2400 (Pos vwx24010))",fontsize=16,color="black",shape="box"];1606 -> 1749[label="",style="solid", color="black", weight=3]; 1607[label="primCmpDouble (Double vwx2200 (Pos vwx22010)) (Double vwx2400 (Neg vwx24010))",fontsize=16,color="black",shape="box"];1607 -> 1750[label="",style="solid", color="black", weight=3]; 1608[label="primCmpDouble (Double vwx2200 (Neg vwx22010)) (Double vwx2400 (Pos vwx24010))",fontsize=16,color="black",shape="box"];1608 -> 1751[label="",style="solid", color="black", weight=3]; 1609[label="primCmpDouble (Double vwx2200 (Neg vwx22010)) (Double vwx2400 (Neg vwx24010))",fontsize=16,color="black",shape="box"];1609 -> 1752[label="",style="solid", color="black", weight=3]; 1610[label="vwx2400 * vwx2201",fontsize=16,color="burlywood",shape="triangle"];2684[label="vwx2400/Integer vwx24000",fontsize=10,color="white",style="solid",shape="box"];1610 -> 2684[label="",style="solid", color="burlywood", weight=9]; 2684 -> 1753[label="",style="solid", color="burlywood", weight=3]; 1611 -> 1610[label="",style="dashed", color="red", weight=0]; 1611[label="vwx2200 * vwx2401",fontsize=16,color="magenta"];1611 -> 1754[label="",style="dashed", color="magenta", weight=3]; 1611 -> 1755[label="",style="dashed", color="magenta", weight=3]; 1612 -> 235[label="",style="dashed", color="red", weight=0]; 1612[label="vwx2400 * vwx2201",fontsize=16,color="magenta"];1612 -> 1756[label="",style="dashed", color="magenta", weight=3]; 1612 -> 1757[label="",style="dashed", color="magenta", weight=3]; 1613 -> 235[label="",style="dashed", color="red", weight=0]; 1613[label="vwx2200 * vwx2401",fontsize=16,color="magenta"];1613 -> 1758[label="",style="dashed", color="magenta", weight=3]; 1613 -> 1759[label="",style="dashed", color="magenta", weight=3]; 1614[label="vwx2401",fontsize=16,color="green",shape="box"];1615[label="vwx2201",fontsize=16,color="green",shape="box"];1616 -> 1760[label="",style="dashed", color="red", weight=0]; 1616[label="primCompAux0 vwx79 (compare vwx2200 vwx2400)",fontsize=16,color="magenta"];1616 -> 1761[label="",style="dashed", color="magenta", weight=3]; 1616 -> 1762[label="",style="dashed", color="magenta", weight=3]; 1617[label="primCmpNat (Succ vwx22000) vwx2400",fontsize=16,color="burlywood",shape="box"];2685[label="vwx2400/Succ vwx24000",fontsize=10,color="white",style="solid",shape="box"];1617 -> 2685[label="",style="solid", color="burlywood", weight=9]; 2685 -> 1763[label="",style="solid", color="burlywood", weight=3]; 2686[label="vwx2400/Zero",fontsize=10,color="white",style="solid",shape="box"];1617 -> 2686[label="",style="solid", color="burlywood", weight=9]; 2686 -> 1764[label="",style="solid", color="burlywood", weight=3]; 1618[label="primCmpNat Zero vwx2400",fontsize=16,color="burlywood",shape="box"];2687[label="vwx2400/Succ vwx24000",fontsize=10,color="white",style="solid",shape="box"];1618 -> 2687[label="",style="solid", color="burlywood", weight=9]; 2687 -> 1765[label="",style="solid", color="burlywood", weight=3]; 2688[label="vwx2400/Zero",fontsize=10,color="white",style="solid",shape="box"];1618 -> 2688[label="",style="solid", color="burlywood", weight=9]; 2688 -> 1766[label="",style="solid", color="burlywood", weight=3]; 1619 -> 1767[label="",style="dashed", color="red", weight=0]; 1619[label="compare1 vwx220 vwx240 (vwx220 <= vwx240)",fontsize=16,color="magenta"];1619 -> 1768[label="",style="dashed", color="magenta", weight=3]; 1620[label="EQ",fontsize=16,color="green",shape="box"];1621 -> 1769[label="",style="dashed", color="red", weight=0]; 1621[label="compare1 vwx220 vwx240 (vwx220 <= vwx240)",fontsize=16,color="magenta"];1621 -> 1770[label="",style="dashed", color="magenta", weight=3]; 1622[label="EQ",fontsize=16,color="green",shape="box"];1623 -> 1771[label="",style="dashed", color="red", weight=0]; 1623[label="compare1 vwx220 vwx240 (vwx220 <= vwx240)",fontsize=16,color="magenta"];1623 -> 1772[label="",style="dashed", color="magenta", weight=3]; 1624[label="EQ",fontsize=16,color="green",shape="box"];1625 -> 1773[label="",style="dashed", color="red", weight=0]; 1625[label="compare1 vwx220 vwx240 (vwx220 <= vwx240)",fontsize=16,color="magenta"];1625 -> 1774[label="",style="dashed", color="magenta", weight=3]; 1626[label="EQ",fontsize=16,color="green",shape="box"];1627 -> 1775[label="",style="dashed", color="red", weight=0]; 1627[label="compare1 vwx220 vwx240 (vwx220 <= vwx240)",fontsize=16,color="magenta"];1627 -> 1776[label="",style="dashed", color="magenta", weight=3]; 1628[label="EQ",fontsize=16,color="green",shape="box"];1629 -> 1442[label="",style="dashed", color="red", weight=0]; 1629[label="primCmpNat (Succ vwx22000) vwx2400",fontsize=16,color="magenta"];1629 -> 1777[label="",style="dashed", color="magenta", weight=3]; 1629 -> 1778[label="",style="dashed", color="magenta", weight=3]; 1630[label="GT",fontsize=16,color="green",shape="box"];1631[label="primCmpInt (Pos Zero) (Pos (Succ vwx24000))",fontsize=16,color="black",shape="box"];1631 -> 1779[label="",style="solid", color="black", weight=3]; 1632[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1632 -> 1780[label="",style="solid", color="black", weight=3]; 1633[label="primCmpInt (Pos Zero) (Neg (Succ vwx24000))",fontsize=16,color="black",shape="box"];1633 -> 1781[label="",style="solid", color="black", weight=3]; 1634[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1634 -> 1782[label="",style="solid", color="black", weight=3]; 1635[label="LT",fontsize=16,color="green",shape="box"];1636 -> 1442[label="",style="dashed", color="red", weight=0]; 1636[label="primCmpNat vwx2400 (Succ vwx22000)",fontsize=16,color="magenta"];1636 -> 1783[label="",style="dashed", color="magenta", weight=3]; 1636 -> 1784[label="",style="dashed", color="magenta", weight=3]; 1637[label="primCmpInt (Neg Zero) (Pos (Succ vwx24000))",fontsize=16,color="black",shape="box"];1637 -> 1785[label="",style="solid", color="black", weight=3]; 1638[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1638 -> 1786[label="",style="solid", color="black", weight=3]; 1639[label="primCmpInt (Neg Zero) (Neg (Succ vwx24000))",fontsize=16,color="black",shape="box"];1639 -> 1787[label="",style="solid", color="black", weight=3]; 1640[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1640 -> 1788[label="",style="solid", color="black", weight=3]; 1641[label="True",fontsize=16,color="green",shape="box"];1642[label="False",fontsize=16,color="green",shape="box"];1643[label="vwx2410",fontsize=16,color="green",shape="box"];1644[label="vwx2210",fontsize=16,color="green",shape="box"];1645[label="vwx2410",fontsize=16,color="green",shape="box"];1646[label="vwx2210",fontsize=16,color="green",shape="box"];1647[label="vwx2410",fontsize=16,color="green",shape="box"];1648[label="vwx2210",fontsize=16,color="green",shape="box"];1649[label="vwx2410",fontsize=16,color="green",shape="box"];1650[label="vwx2210",fontsize=16,color="green",shape="box"];1651[label="vwx2410",fontsize=16,color="green",shape="box"];1652[label="vwx2210",fontsize=16,color="green",shape="box"];1653[label="vwx2410",fontsize=16,color="green",shape="box"];1654[label="vwx2210",fontsize=16,color="green",shape="box"];1655[label="vwx2410",fontsize=16,color="green",shape="box"];1656[label="vwx2210",fontsize=16,color="green",shape="box"];1657[label="vwx2410",fontsize=16,color="green",shape="box"];1658[label="vwx2210",fontsize=16,color="green",shape="box"];1659[label="vwx2410",fontsize=16,color="green",shape="box"];1660[label="vwx2210",fontsize=16,color="green",shape="box"];1661[label="vwx2410",fontsize=16,color="green",shape="box"];1662[label="vwx2210",fontsize=16,color="green",shape="box"];1663[label="vwx2410",fontsize=16,color="green",shape="box"];1664[label="vwx2210",fontsize=16,color="green",shape="box"];1665[label="vwx2410",fontsize=16,color="green",shape="box"];1666[label="vwx2210",fontsize=16,color="green",shape="box"];1667[label="vwx2410",fontsize=16,color="green",shape="box"];1668[label="vwx2210",fontsize=16,color="green",shape="box"];1669[label="vwx2410",fontsize=16,color="green",shape="box"];1670[label="vwx2210",fontsize=16,color="green",shape="box"];1671 -> 18[label="",style="dashed", color="red", weight=0]; 1671[label="vwx2210 == vwx2410",fontsize=16,color="magenta"];1671 -> 1789[label="",style="dashed", color="magenta", weight=3]; 1671 -> 1790[label="",style="dashed", color="magenta", weight=3]; 1672 -> 25[label="",style="dashed", color="red", weight=0]; 1672[label="vwx2210 == vwx2410",fontsize=16,color="magenta"];1672 -> 1791[label="",style="dashed", color="magenta", weight=3]; 1672 -> 1792[label="",style="dashed", color="magenta", weight=3]; 1673 -> 22[label="",style="dashed", color="red", weight=0]; 1673[label="vwx2210 == vwx2410",fontsize=16,color="magenta"];1673 -> 1793[label="",style="dashed", color="magenta", weight=3]; 1673 -> 1794[label="",style="dashed", color="magenta", weight=3]; 1674 -> 29[label="",style="dashed", color="red", weight=0]; 1674[label="vwx2210 == vwx2410",fontsize=16,color="magenta"];1674 -> 1795[label="",style="dashed", color="magenta", weight=3]; 1674 -> 1796[label="",style="dashed", color="magenta", weight=3]; 1675 -> 20[label="",style="dashed", color="red", weight=0]; 1675[label="vwx2210 == vwx2410",fontsize=16,color="magenta"];1675 -> 1797[label="",style="dashed", color="magenta", weight=3]; 1675 -> 1798[label="",style="dashed", color="magenta", weight=3]; 1676 -> 19[label="",style="dashed", color="red", weight=0]; 1676[label="vwx2210 == vwx2410",fontsize=16,color="magenta"];1676 -> 1799[label="",style="dashed", color="magenta", weight=3]; 1676 -> 1800[label="",style="dashed", color="magenta", weight=3]; 1677 -> 27[label="",style="dashed", color="red", weight=0]; 1677[label="vwx2210 == vwx2410",fontsize=16,color="magenta"];1677 -> 1801[label="",style="dashed", color="magenta", weight=3]; 1677 -> 1802[label="",style="dashed", color="magenta", weight=3]; 1678 -> 23[label="",style="dashed", color="red", weight=0]; 1678[label="vwx2210 == vwx2410",fontsize=16,color="magenta"];1678 -> 1803[label="",style="dashed", color="magenta", weight=3]; 1678 -> 1804[label="",style="dashed", color="magenta", weight=3]; 1679 -> 30[label="",style="dashed", color="red", weight=0]; 1679[label="vwx2210 == vwx2410",fontsize=16,color="magenta"];1679 -> 1805[label="",style="dashed", color="magenta", weight=3]; 1679 -> 1806[label="",style="dashed", color="magenta", weight=3]; 1680 -> 28[label="",style="dashed", color="red", weight=0]; 1680[label="vwx2210 == vwx2410",fontsize=16,color="magenta"];1680 -> 1807[label="",style="dashed", color="magenta", weight=3]; 1680 -> 1808[label="",style="dashed", color="magenta", weight=3]; 1681 -> 17[label="",style="dashed", color="red", weight=0]; 1681[label="vwx2210 == vwx2410",fontsize=16,color="magenta"];1681 -> 1809[label="",style="dashed", color="magenta", weight=3]; 1681 -> 1810[label="",style="dashed", color="magenta", weight=3]; 1682 -> 24[label="",style="dashed", color="red", weight=0]; 1682[label="vwx2210 == vwx2410",fontsize=16,color="magenta"];1682 -> 1811[label="",style="dashed", color="magenta", weight=3]; 1682 -> 1812[label="",style="dashed", color="magenta", weight=3]; 1683 -> 21[label="",style="dashed", color="red", weight=0]; 1683[label="vwx2210 == vwx2410",fontsize=16,color="magenta"];1683 -> 1813[label="",style="dashed", color="magenta", weight=3]; 1683 -> 1814[label="",style="dashed", color="magenta", weight=3]; 1684 -> 26[label="",style="dashed", color="red", weight=0]; 1684[label="vwx2210 == vwx2410",fontsize=16,color="magenta"];1684 -> 1815[label="",style="dashed", color="magenta", weight=3]; 1684 -> 1816[label="",style="dashed", color="magenta", weight=3]; 1685 -> 1142[label="",style="dashed", color="red", weight=0]; 1685[label="vwx2211 <= vwx2411",fontsize=16,color="magenta"];1685 -> 1817[label="",style="dashed", color="magenta", weight=3]; 1685 -> 1818[label="",style="dashed", color="magenta", weight=3]; 1686 -> 1143[label="",style="dashed", color="red", weight=0]; 1686[label="vwx2211 <= vwx2411",fontsize=16,color="magenta"];1686 -> 1819[label="",style="dashed", color="magenta", weight=3]; 1686 -> 1820[label="",style="dashed", color="magenta", weight=3]; 1687 -> 1144[label="",style="dashed", color="red", weight=0]; 1687[label="vwx2211 <= vwx2411",fontsize=16,color="magenta"];1687 -> 1821[label="",style="dashed", color="magenta", weight=3]; 1687 -> 1822[label="",style="dashed", color="magenta", weight=3]; 1688 -> 1145[label="",style="dashed", color="red", weight=0]; 1688[label="vwx2211 <= vwx2411",fontsize=16,color="magenta"];1688 -> 1823[label="",style="dashed", color="magenta", weight=3]; 1688 -> 1824[label="",style="dashed", color="magenta", weight=3]; 1689 -> 1146[label="",style="dashed", color="red", weight=0]; 1689[label="vwx2211 <= vwx2411",fontsize=16,color="magenta"];1689 -> 1825[label="",style="dashed", color="magenta", weight=3]; 1689 -> 1826[label="",style="dashed", color="magenta", weight=3]; 1690 -> 1147[label="",style="dashed", color="red", weight=0]; 1690[label="vwx2211 <= vwx2411",fontsize=16,color="magenta"];1690 -> 1827[label="",style="dashed", color="magenta", weight=3]; 1690 -> 1828[label="",style="dashed", color="magenta", weight=3]; 1691 -> 1148[label="",style="dashed", color="red", weight=0]; 1691[label="vwx2211 <= vwx2411",fontsize=16,color="magenta"];1691 -> 1829[label="",style="dashed", color="magenta", weight=3]; 1691 -> 1830[label="",style="dashed", color="magenta", weight=3]; 1692 -> 1149[label="",style="dashed", color="red", weight=0]; 1692[label="vwx2211 <= vwx2411",fontsize=16,color="magenta"];1692 -> 1831[label="",style="dashed", color="magenta", weight=3]; 1692 -> 1832[label="",style="dashed", color="magenta", weight=3]; 1693 -> 1150[label="",style="dashed", color="red", weight=0]; 1693[label="vwx2211 <= vwx2411",fontsize=16,color="magenta"];1693 -> 1833[label="",style="dashed", color="magenta", weight=3]; 1693 -> 1834[label="",style="dashed", color="magenta", weight=3]; 1694 -> 1151[label="",style="dashed", color="red", weight=0]; 1694[label="vwx2211 <= vwx2411",fontsize=16,color="magenta"];1694 -> 1835[label="",style="dashed", color="magenta", weight=3]; 1694 -> 1836[label="",style="dashed", color="magenta", weight=3]; 1695 -> 1152[label="",style="dashed", color="red", weight=0]; 1695[label="vwx2211 <= vwx2411",fontsize=16,color="magenta"];1695 -> 1837[label="",style="dashed", color="magenta", weight=3]; 1695 -> 1838[label="",style="dashed", color="magenta", weight=3]; 1696 -> 1153[label="",style="dashed", color="red", weight=0]; 1696[label="vwx2211 <= vwx2411",fontsize=16,color="magenta"];1696 -> 1839[label="",style="dashed", color="magenta", weight=3]; 1696 -> 1840[label="",style="dashed", color="magenta", weight=3]; 1697 -> 1154[label="",style="dashed", color="red", weight=0]; 1697[label="vwx2211 <= vwx2411",fontsize=16,color="magenta"];1697 -> 1841[label="",style="dashed", color="magenta", weight=3]; 1697 -> 1842[label="",style="dashed", color="magenta", weight=3]; 1698 -> 1155[label="",style="dashed", color="red", weight=0]; 1698[label="vwx2211 <= vwx2411",fontsize=16,color="magenta"];1698 -> 1843[label="",style="dashed", color="magenta", weight=3]; 1698 -> 1844[label="",style="dashed", color="magenta", weight=3]; 1699[label="vwx84",fontsize=16,color="green",shape="box"];1700[label="True",fontsize=16,color="green",shape="box"];1701[label="vwx2410",fontsize=16,color="green",shape="box"];1702[label="vwx2210",fontsize=16,color="green",shape="box"];1703[label="vwx2410",fontsize=16,color="green",shape="box"];1704[label="vwx2210",fontsize=16,color="green",shape="box"];1705[label="vwx2410",fontsize=16,color="green",shape="box"];1706[label="vwx2210",fontsize=16,color="green",shape="box"];1707[label="vwx2410",fontsize=16,color="green",shape="box"];1708[label="vwx2210",fontsize=16,color="green",shape="box"];1709[label="vwx2410",fontsize=16,color="green",shape="box"];1710[label="vwx2210",fontsize=16,color="green",shape="box"];1711[label="vwx2410",fontsize=16,color="green",shape="box"];1712[label="vwx2210",fontsize=16,color="green",shape="box"];1713[label="vwx2410",fontsize=16,color="green",shape="box"];1714[label="vwx2210",fontsize=16,color="green",shape="box"];1715[label="vwx2410",fontsize=16,color="green",shape="box"];1716[label="vwx2210",fontsize=16,color="green",shape="box"];1717[label="vwx2410",fontsize=16,color="green",shape="box"];1718[label="vwx2210",fontsize=16,color="green",shape="box"];1719[label="vwx2410",fontsize=16,color="green",shape="box"];1720[label="vwx2210",fontsize=16,color="green",shape="box"];1721[label="vwx2410",fontsize=16,color="green",shape="box"];1722[label="vwx2210",fontsize=16,color="green",shape="box"];1723[label="vwx2410",fontsize=16,color="green",shape="box"];1724[label="vwx2210",fontsize=16,color="green",shape="box"];1725[label="vwx2410",fontsize=16,color="green",shape="box"];1726[label="vwx2210",fontsize=16,color="green",shape="box"];1727[label="vwx2410",fontsize=16,color="green",shape="box"];1728[label="vwx2210",fontsize=16,color="green",shape="box"];1729 -> 18[label="",style="dashed", color="red", weight=0]; 1729[label="vwx2210 == vwx2410",fontsize=16,color="magenta"];1729 -> 1845[label="",style="dashed", color="magenta", weight=3]; 1729 -> 1846[label="",style="dashed", color="magenta", weight=3]; 1730 -> 25[label="",style="dashed", color="red", weight=0]; 1730[label="vwx2210 == vwx2410",fontsize=16,color="magenta"];1730 -> 1847[label="",style="dashed", color="magenta", weight=3]; 1730 -> 1848[label="",style="dashed", color="magenta", weight=3]; 1731 -> 22[label="",style="dashed", color="red", weight=0]; 1731[label="vwx2210 == vwx2410",fontsize=16,color="magenta"];1731 -> 1849[label="",style="dashed", color="magenta", weight=3]; 1731 -> 1850[label="",style="dashed", color="magenta", weight=3]; 1732 -> 29[label="",style="dashed", color="red", weight=0]; 1732[label="vwx2210 == vwx2410",fontsize=16,color="magenta"];1732 -> 1851[label="",style="dashed", color="magenta", weight=3]; 1732 -> 1852[label="",style="dashed", color="magenta", weight=3]; 1733 -> 20[label="",style="dashed", color="red", weight=0]; 1733[label="vwx2210 == vwx2410",fontsize=16,color="magenta"];1733 -> 1853[label="",style="dashed", color="magenta", weight=3]; 1733 -> 1854[label="",style="dashed", color="magenta", weight=3]; 1734 -> 19[label="",style="dashed", color="red", weight=0]; 1734[label="vwx2210 == vwx2410",fontsize=16,color="magenta"];1734 -> 1855[label="",style="dashed", color="magenta", weight=3]; 1734 -> 1856[label="",style="dashed", color="magenta", weight=3]; 1735 -> 27[label="",style="dashed", color="red", weight=0]; 1735[label="vwx2210 == vwx2410",fontsize=16,color="magenta"];1735 -> 1857[label="",style="dashed", color="magenta", weight=3]; 1735 -> 1858[label="",style="dashed", color="magenta", weight=3]; 1736 -> 23[label="",style="dashed", color="red", weight=0]; 1736[label="vwx2210 == vwx2410",fontsize=16,color="magenta"];1736 -> 1859[label="",style="dashed", color="magenta", weight=3]; 1736 -> 1860[label="",style="dashed", color="magenta", weight=3]; 1737 -> 30[label="",style="dashed", color="red", weight=0]; 1737[label="vwx2210 == vwx2410",fontsize=16,color="magenta"];1737 -> 1861[label="",style="dashed", color="magenta", weight=3]; 1737 -> 1862[label="",style="dashed", color="magenta", weight=3]; 1738 -> 28[label="",style="dashed", color="red", weight=0]; 1738[label="vwx2210 == vwx2410",fontsize=16,color="magenta"];1738 -> 1863[label="",style="dashed", color="magenta", weight=3]; 1738 -> 1864[label="",style="dashed", color="magenta", weight=3]; 1739 -> 17[label="",style="dashed", color="red", weight=0]; 1739[label="vwx2210 == vwx2410",fontsize=16,color="magenta"];1739 -> 1865[label="",style="dashed", color="magenta", weight=3]; 1739 -> 1866[label="",style="dashed", color="magenta", weight=3]; 1740 -> 24[label="",style="dashed", color="red", weight=0]; 1740[label="vwx2210 == vwx2410",fontsize=16,color="magenta"];1740 -> 1867[label="",style="dashed", color="magenta", weight=3]; 1740 -> 1868[label="",style="dashed", color="magenta", weight=3]; 1741 -> 21[label="",style="dashed", color="red", weight=0]; 1741[label="vwx2210 == vwx2410",fontsize=16,color="magenta"];1741 -> 1869[label="",style="dashed", color="magenta", weight=3]; 1741 -> 1870[label="",style="dashed", color="magenta", weight=3]; 1742 -> 26[label="",style="dashed", color="red", weight=0]; 1742[label="vwx2210 == vwx2410",fontsize=16,color="magenta"];1742 -> 1871[label="",style="dashed", color="magenta", weight=3]; 1742 -> 1872[label="",style="dashed", color="magenta", weight=3]; 1743[label="vwx2211 < vwx2411",fontsize=16,color="blue",shape="box"];2689[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1743 -> 2689[label="",style="solid", color="blue", weight=9]; 2689 -> 1873[label="",style="solid", color="blue", weight=3]; 2690[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1743 -> 2690[label="",style="solid", color="blue", weight=9]; 2690 -> 1874[label="",style="solid", color="blue", weight=3]; 2691[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1743 -> 2691[label="",style="solid", color="blue", weight=9]; 2691 -> 1875[label="",style="solid", color="blue", weight=3]; 2692[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1743 -> 2692[label="",style="solid", color="blue", weight=9]; 2692 -> 1876[label="",style="solid", color="blue", weight=3]; 2693[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1743 -> 2693[label="",style="solid", color="blue", weight=9]; 2693 -> 1877[label="",style="solid", color="blue", weight=3]; 2694[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1743 -> 2694[label="",style="solid", color="blue", weight=9]; 2694 -> 1878[label="",style="solid", color="blue", weight=3]; 2695[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1743 -> 2695[label="",style="solid", color="blue", weight=9]; 2695 -> 1879[label="",style="solid", color="blue", weight=3]; 2696[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1743 -> 2696[label="",style="solid", color="blue", weight=9]; 2696 -> 1880[label="",style="solid", color="blue", weight=3]; 2697[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1743 -> 2697[label="",style="solid", color="blue", weight=9]; 2697 -> 1881[label="",style="solid", color="blue", weight=3]; 2698[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1743 -> 2698[label="",style="solid", color="blue", weight=9]; 2698 -> 1882[label="",style="solid", color="blue", weight=3]; 2699[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1743 -> 2699[label="",style="solid", color="blue", weight=9]; 2699 -> 1883[label="",style="solid", color="blue", weight=3]; 2700[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1743 -> 2700[label="",style="solid", color="blue", weight=9]; 2700 -> 1884[label="",style="solid", color="blue", weight=3]; 2701[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1743 -> 2701[label="",style="solid", color="blue", weight=9]; 2701 -> 1885[label="",style="solid", color="blue", weight=3]; 2702[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1743 -> 2702[label="",style="solid", color="blue", weight=9]; 2702 -> 1886[label="",style="solid", color="blue", weight=3]; 1744 -> 251[label="",style="dashed", color="red", weight=0]; 1744[label="vwx2211 == vwx2411 && vwx2212 <= vwx2412",fontsize=16,color="magenta"];1744 -> 1887[label="",style="dashed", color="magenta", weight=3]; 1744 -> 1888[label="",style="dashed", color="magenta", weight=3]; 1073[label="primPlusNat (Succ vwx5600) vwx40100",fontsize=16,color="burlywood",shape="box"];2703[label="vwx40100/Succ vwx401000",fontsize=10,color="white",style="solid",shape="box"];1073 -> 2703[label="",style="solid", color="burlywood", weight=9]; 2703 -> 1110[label="",style="solid", color="burlywood", weight=3]; 2704[label="vwx40100/Zero",fontsize=10,color="white",style="solid",shape="box"];1073 -> 2704[label="",style="solid", color="burlywood", weight=9]; 2704 -> 1111[label="",style="solid", color="burlywood", weight=3]; 1074[label="primPlusNat Zero vwx40100",fontsize=16,color="burlywood",shape="box"];2705[label="vwx40100/Succ vwx401000",fontsize=10,color="white",style="solid",shape="box"];1074 -> 2705[label="",style="solid", color="burlywood", weight=9]; 2705 -> 1112[label="",style="solid", color="burlywood", weight=3]; 2706[label="vwx40100/Zero",fontsize=10,color="white",style="solid",shape="box"];1074 -> 2706[label="",style="solid", color="burlywood", weight=9]; 2706 -> 1113[label="",style="solid", color="burlywood", weight=3]; 1745 -> 1186[label="",style="dashed", color="red", weight=0]; 1745[label="compare (vwx2200 * Pos vwx24010) (Pos vwx22010 * vwx2400)",fontsize=16,color="magenta"];1745 -> 1889[label="",style="dashed", color="magenta", weight=3]; 1745 -> 1890[label="",style="dashed", color="magenta", weight=3]; 1746 -> 1186[label="",style="dashed", color="red", weight=0]; 1746[label="compare (vwx2200 * Pos vwx24010) (Neg vwx22010 * vwx2400)",fontsize=16,color="magenta"];1746 -> 1891[label="",style="dashed", color="magenta", weight=3]; 1746 -> 1892[label="",style="dashed", color="magenta", weight=3]; 1747 -> 1186[label="",style="dashed", color="red", weight=0]; 1747[label="compare (vwx2200 * Neg vwx24010) (Pos vwx22010 * vwx2400)",fontsize=16,color="magenta"];1747 -> 1893[label="",style="dashed", color="magenta", weight=3]; 1747 -> 1894[label="",style="dashed", color="magenta", weight=3]; 1748 -> 1186[label="",style="dashed", color="red", weight=0]; 1748[label="compare (vwx2200 * Neg vwx24010) (Neg vwx22010 * vwx2400)",fontsize=16,color="magenta"];1748 -> 1895[label="",style="dashed", color="magenta", weight=3]; 1748 -> 1896[label="",style="dashed", color="magenta", weight=3]; 1749 -> 1186[label="",style="dashed", color="red", weight=0]; 1749[label="compare (vwx2200 * Pos vwx24010) (Pos vwx22010 * vwx2400)",fontsize=16,color="magenta"];1749 -> 1897[label="",style="dashed", color="magenta", weight=3]; 1749 -> 1898[label="",style="dashed", color="magenta", weight=3]; 1750 -> 1186[label="",style="dashed", color="red", weight=0]; 1750[label="compare (vwx2200 * Pos vwx24010) (Neg vwx22010 * vwx2400)",fontsize=16,color="magenta"];1750 -> 1899[label="",style="dashed", color="magenta", weight=3]; 1750 -> 1900[label="",style="dashed", color="magenta", weight=3]; 1751 -> 1186[label="",style="dashed", color="red", weight=0]; 1751[label="compare (vwx2200 * Neg vwx24010) (Pos vwx22010 * vwx2400)",fontsize=16,color="magenta"];1751 -> 1901[label="",style="dashed", color="magenta", weight=3]; 1751 -> 1902[label="",style="dashed", color="magenta", weight=3]; 1752 -> 1186[label="",style="dashed", color="red", weight=0]; 1752[label="compare (vwx2200 * Neg vwx24010) (Neg vwx22010 * vwx2400)",fontsize=16,color="magenta"];1752 -> 1903[label="",style="dashed", color="magenta", weight=3]; 1752 -> 1904[label="",style="dashed", color="magenta", weight=3]; 1753[label="Integer vwx24000 * vwx2201",fontsize=16,color="burlywood",shape="box"];2707[label="vwx2201/Integer vwx22010",fontsize=10,color="white",style="solid",shape="box"];1753 -> 2707[label="",style="solid", color="burlywood", weight=9]; 2707 -> 1905[label="",style="solid", color="burlywood", weight=3]; 1754[label="vwx2401",fontsize=16,color="green",shape="box"];1755[label="vwx2200",fontsize=16,color="green",shape="box"];1756[label="vwx2201",fontsize=16,color="green",shape="box"];1757[label="vwx2400",fontsize=16,color="green",shape="box"];1758[label="vwx2401",fontsize=16,color="green",shape="box"];1759[label="vwx2200",fontsize=16,color="green",shape="box"];1761[label="compare vwx2200 vwx2400",fontsize=16,color="blue",shape="box"];2708[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1761 -> 2708[label="",style="solid", color="blue", weight=9]; 2708 -> 1906[label="",style="solid", color="blue", weight=3]; 2709[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1761 -> 2709[label="",style="solid", color="blue", weight=9]; 2709 -> 1907[label="",style="solid", color="blue", weight=3]; 2710[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1761 -> 2710[label="",style="solid", color="blue", weight=9]; 2710 -> 1908[label="",style="solid", color="blue", weight=3]; 2711[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1761 -> 2711[label="",style="solid", color="blue", weight=9]; 2711 -> 1909[label="",style="solid", color="blue", weight=3]; 2712[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1761 -> 2712[label="",style="solid", color="blue", weight=9]; 2712 -> 1910[label="",style="solid", color="blue", weight=3]; 2713[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1761 -> 2713[label="",style="solid", color="blue", weight=9]; 2713 -> 1911[label="",style="solid", color="blue", weight=3]; 2714[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1761 -> 2714[label="",style="solid", color="blue", weight=9]; 2714 -> 1912[label="",style="solid", color="blue", weight=3]; 2715[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1761 -> 2715[label="",style="solid", color="blue", weight=9]; 2715 -> 1913[label="",style="solid", color="blue", weight=3]; 2716[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1761 -> 2716[label="",style="solid", color="blue", weight=9]; 2716 -> 1914[label="",style="solid", color="blue", weight=3]; 2717[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1761 -> 2717[label="",style="solid", color="blue", weight=9]; 2717 -> 1915[label="",style="solid", color="blue", weight=3]; 2718[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1761 -> 2718[label="",style="solid", color="blue", weight=9]; 2718 -> 1916[label="",style="solid", color="blue", weight=3]; 2719[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1761 -> 2719[label="",style="solid", color="blue", weight=9]; 2719 -> 1917[label="",style="solid", color="blue", weight=3]; 2720[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1761 -> 2720[label="",style="solid", color="blue", weight=9]; 2720 -> 1918[label="",style="solid", color="blue", weight=3]; 2721[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1761 -> 2721[label="",style="solid", color="blue", weight=9]; 2721 -> 1919[label="",style="solid", color="blue", weight=3]; 1762[label="vwx79",fontsize=16,color="green",shape="box"];1760[label="primCompAux0 vwx88 vwx89",fontsize=16,color="burlywood",shape="triangle"];2722[label="vwx89/LT",fontsize=10,color="white",style="solid",shape="box"];1760 -> 2722[label="",style="solid", color="burlywood", weight=9]; 2722 -> 1920[label="",style="solid", color="burlywood", weight=3]; 2723[label="vwx89/EQ",fontsize=10,color="white",style="solid",shape="box"];1760 -> 2723[label="",style="solid", color="burlywood", weight=9]; 2723 -> 1921[label="",style="solid", color="burlywood", weight=3]; 2724[label="vwx89/GT",fontsize=10,color="white",style="solid",shape="box"];1760 -> 2724[label="",style="solid", color="burlywood", weight=9]; 2724 -> 1922[label="",style="solid", color="burlywood", weight=3]; 1763[label="primCmpNat (Succ vwx22000) (Succ vwx24000)",fontsize=16,color="black",shape="box"];1763 -> 1923[label="",style="solid", color="black", weight=3]; 1764[label="primCmpNat (Succ vwx22000) Zero",fontsize=16,color="black",shape="box"];1764 -> 1924[label="",style="solid", color="black", weight=3]; 1765[label="primCmpNat Zero (Succ vwx24000)",fontsize=16,color="black",shape="box"];1765 -> 1925[label="",style="solid", color="black", weight=3]; 1766[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];1766 -> 1926[label="",style="solid", color="black", weight=3]; 1768 -> 1149[label="",style="dashed", color="red", weight=0]; 1768[label="vwx220 <= vwx240",fontsize=16,color="magenta"];1768 -> 1927[label="",style="dashed", color="magenta", weight=3]; 1768 -> 1928[label="",style="dashed", color="magenta", weight=3]; 1767[label="compare1 vwx220 vwx240 vwx90",fontsize=16,color="burlywood",shape="triangle"];2725[label="vwx90/False",fontsize=10,color="white",style="solid",shape="box"];1767 -> 2725[label="",style="solid", color="burlywood", weight=9]; 2725 -> 1929[label="",style="solid", color="burlywood", weight=3]; 2726[label="vwx90/True",fontsize=10,color="white",style="solid",shape="box"];1767 -> 2726[label="",style="solid", color="burlywood", weight=9]; 2726 -> 1930[label="",style="solid", color="burlywood", weight=3]; 1770 -> 1150[label="",style="dashed", color="red", weight=0]; 1770[label="vwx220 <= vwx240",fontsize=16,color="magenta"];1770 -> 1931[label="",style="dashed", color="magenta", weight=3]; 1770 -> 1932[label="",style="dashed", color="magenta", weight=3]; 1769[label="compare1 vwx220 vwx240 vwx91",fontsize=16,color="burlywood",shape="triangle"];2727[label="vwx91/False",fontsize=10,color="white",style="solid",shape="box"];1769 -> 2727[label="",style="solid", color="burlywood", weight=9]; 2727 -> 1933[label="",style="solid", color="burlywood", weight=3]; 2728[label="vwx91/True",fontsize=10,color="white",style="solid",shape="box"];1769 -> 2728[label="",style="solid", color="burlywood", weight=9]; 2728 -> 1934[label="",style="solid", color="burlywood", weight=3]; 1772 -> 1151[label="",style="dashed", color="red", weight=0]; 1772[label="vwx220 <= vwx240",fontsize=16,color="magenta"];1772 -> 1935[label="",style="dashed", color="magenta", weight=3]; 1772 -> 1936[label="",style="dashed", color="magenta", weight=3]; 1771[label="compare1 vwx220 vwx240 vwx92",fontsize=16,color="burlywood",shape="triangle"];2729[label="vwx92/False",fontsize=10,color="white",style="solid",shape="box"];1771 -> 2729[label="",style="solid", color="burlywood", weight=9]; 2729 -> 1937[label="",style="solid", color="burlywood", weight=3]; 2730[label="vwx92/True",fontsize=10,color="white",style="solid",shape="box"];1771 -> 2730[label="",style="solid", color="burlywood", weight=9]; 2730 -> 1938[label="",style="solid", color="burlywood", weight=3]; 1774 -> 1152[label="",style="dashed", color="red", weight=0]; 1774[label="vwx220 <= vwx240",fontsize=16,color="magenta"];1774 -> 1939[label="",style="dashed", color="magenta", weight=3]; 1774 -> 1940[label="",style="dashed", color="magenta", weight=3]; 1773[label="compare1 vwx220 vwx240 vwx93",fontsize=16,color="burlywood",shape="triangle"];2731[label="vwx93/False",fontsize=10,color="white",style="solid",shape="box"];1773 -> 2731[label="",style="solid", color="burlywood", weight=9]; 2731 -> 1941[label="",style="solid", color="burlywood", weight=3]; 2732[label="vwx93/True",fontsize=10,color="white",style="solid",shape="box"];1773 -> 2732[label="",style="solid", color="burlywood", weight=9]; 2732 -> 1942[label="",style="solid", color="burlywood", weight=3]; 1776 -> 1153[label="",style="dashed", color="red", weight=0]; 1776[label="vwx220 <= vwx240",fontsize=16,color="magenta"];1776 -> 1943[label="",style="dashed", color="magenta", weight=3]; 1776 -> 1944[label="",style="dashed", color="magenta", weight=3]; 1775[label="compare1 vwx220 vwx240 vwx94",fontsize=16,color="burlywood",shape="triangle"];2733[label="vwx94/False",fontsize=10,color="white",style="solid",shape="box"];1775 -> 2733[label="",style="solid", color="burlywood", weight=9]; 2733 -> 1945[label="",style="solid", color="burlywood", weight=3]; 2734[label="vwx94/True",fontsize=10,color="white",style="solid",shape="box"];1775 -> 2734[label="",style="solid", color="burlywood", weight=9]; 2734 -> 1946[label="",style="solid", color="burlywood", weight=3]; 1777[label="Succ vwx22000",fontsize=16,color="green",shape="box"];1778[label="vwx2400",fontsize=16,color="green",shape="box"];1779 -> 1442[label="",style="dashed", color="red", weight=0]; 1779[label="primCmpNat Zero (Succ vwx24000)",fontsize=16,color="magenta"];1779 -> 1947[label="",style="dashed", color="magenta", weight=3]; 1779 -> 1948[label="",style="dashed", color="magenta", weight=3]; 1780[label="EQ",fontsize=16,color="green",shape="box"];1781[label="GT",fontsize=16,color="green",shape="box"];1782[label="EQ",fontsize=16,color="green",shape="box"];1783[label="vwx2400",fontsize=16,color="green",shape="box"];1784[label="Succ vwx22000",fontsize=16,color="green",shape="box"];1785[label="LT",fontsize=16,color="green",shape="box"];1786[label="EQ",fontsize=16,color="green",shape="box"];1787 -> 1442[label="",style="dashed", color="red", weight=0]; 1787[label="primCmpNat (Succ vwx24000) Zero",fontsize=16,color="magenta"];1787 -> 1949[label="",style="dashed", color="magenta", weight=3]; 1787 -> 1950[label="",style="dashed", color="magenta", weight=3]; 1788[label="EQ",fontsize=16,color="green",shape="box"];1789[label="vwx2210",fontsize=16,color="green",shape="box"];1790[label="vwx2410",fontsize=16,color="green",shape="box"];1791[label="vwx2210",fontsize=16,color="green",shape="box"];1792[label="vwx2410",fontsize=16,color="green",shape="box"];1793[label="vwx2210",fontsize=16,color="green",shape="box"];1794[label="vwx2410",fontsize=16,color="green",shape="box"];1795[label="vwx2210",fontsize=16,color="green",shape="box"];1796[label="vwx2410",fontsize=16,color="green",shape="box"];1797[label="vwx2210",fontsize=16,color="green",shape="box"];1798[label="vwx2410",fontsize=16,color="green",shape="box"];1799[label="vwx2210",fontsize=16,color="green",shape="box"];1800[label="vwx2410",fontsize=16,color="green",shape="box"];1801[label="vwx2210",fontsize=16,color="green",shape="box"];1802[label="vwx2410",fontsize=16,color="green",shape="box"];1803[label="vwx2210",fontsize=16,color="green",shape="box"];1804[label="vwx2410",fontsize=16,color="green",shape="box"];1805[label="vwx2210",fontsize=16,color="green",shape="box"];1806[label="vwx2410",fontsize=16,color="green",shape="box"];1807[label="vwx2210",fontsize=16,color="green",shape="box"];1808[label="vwx2410",fontsize=16,color="green",shape="box"];1809[label="vwx2210",fontsize=16,color="green",shape="box"];1810[label="vwx2410",fontsize=16,color="green",shape="box"];1811[label="vwx2210",fontsize=16,color="green",shape="box"];1812[label="vwx2410",fontsize=16,color="green",shape="box"];1813[label="vwx2210",fontsize=16,color="green",shape="box"];1814[label="vwx2410",fontsize=16,color="green",shape="box"];1815[label="vwx2210",fontsize=16,color="green",shape="box"];1816[label="vwx2410",fontsize=16,color="green",shape="box"];1817[label="vwx2211",fontsize=16,color="green",shape="box"];1818[label="vwx2411",fontsize=16,color="green",shape="box"];1819[label="vwx2211",fontsize=16,color="green",shape="box"];1820[label="vwx2411",fontsize=16,color="green",shape="box"];1821[label="vwx2211",fontsize=16,color="green",shape="box"];1822[label="vwx2411",fontsize=16,color="green",shape="box"];1823[label="vwx2211",fontsize=16,color="green",shape="box"];1824[label="vwx2411",fontsize=16,color="green",shape="box"];1825[label="vwx2211",fontsize=16,color="green",shape="box"];1826[label="vwx2411",fontsize=16,color="green",shape="box"];1827[label="vwx2211",fontsize=16,color="green",shape="box"];1828[label="vwx2411",fontsize=16,color="green",shape="box"];1829[label="vwx2211",fontsize=16,color="green",shape="box"];1830[label="vwx2411",fontsize=16,color="green",shape="box"];1831[label="vwx2211",fontsize=16,color="green",shape="box"];1832[label="vwx2411",fontsize=16,color="green",shape="box"];1833[label="vwx2211",fontsize=16,color="green",shape="box"];1834[label="vwx2411",fontsize=16,color="green",shape="box"];1835[label="vwx2211",fontsize=16,color="green",shape="box"];1836[label="vwx2411",fontsize=16,color="green",shape="box"];1837[label="vwx2211",fontsize=16,color="green",shape="box"];1838[label="vwx2411",fontsize=16,color="green",shape="box"];1839[label="vwx2211",fontsize=16,color="green",shape="box"];1840[label="vwx2411",fontsize=16,color="green",shape="box"];1841[label="vwx2211",fontsize=16,color="green",shape="box"];1842[label="vwx2411",fontsize=16,color="green",shape="box"];1843[label="vwx2211",fontsize=16,color="green",shape="box"];1844[label="vwx2411",fontsize=16,color="green",shape="box"];1845[label="vwx2210",fontsize=16,color="green",shape="box"];1846[label="vwx2410",fontsize=16,color="green",shape="box"];1847[label="vwx2210",fontsize=16,color="green",shape="box"];1848[label="vwx2410",fontsize=16,color="green",shape="box"];1849[label="vwx2210",fontsize=16,color="green",shape="box"];1850[label="vwx2410",fontsize=16,color="green",shape="box"];1851[label="vwx2210",fontsize=16,color="green",shape="box"];1852[label="vwx2410",fontsize=16,color="green",shape="box"];1853[label="vwx2210",fontsize=16,color="green",shape="box"];1854[label="vwx2410",fontsize=16,color="green",shape="box"];1855[label="vwx2210",fontsize=16,color="green",shape="box"];1856[label="vwx2410",fontsize=16,color="green",shape="box"];1857[label="vwx2210",fontsize=16,color="green",shape="box"];1858[label="vwx2410",fontsize=16,color="green",shape="box"];1859[label="vwx2210",fontsize=16,color="green",shape="box"];1860[label="vwx2410",fontsize=16,color="green",shape="box"];1861[label="vwx2210",fontsize=16,color="green",shape="box"];1862[label="vwx2410",fontsize=16,color="green",shape="box"];1863[label="vwx2210",fontsize=16,color="green",shape="box"];1864[label="vwx2410",fontsize=16,color="green",shape="box"];1865[label="vwx2210",fontsize=16,color="green",shape="box"];1866[label="vwx2410",fontsize=16,color="green",shape="box"];1867[label="vwx2210",fontsize=16,color="green",shape="box"];1868[label="vwx2410",fontsize=16,color="green",shape="box"];1869[label="vwx2210",fontsize=16,color="green",shape="box"];1870[label="vwx2410",fontsize=16,color="green",shape="box"];1871[label="vwx2210",fontsize=16,color="green",shape="box"];1872[label="vwx2410",fontsize=16,color="green",shape="box"];1873 -> 1092[label="",style="dashed", color="red", weight=0]; 1873[label="vwx2211 < vwx2411",fontsize=16,color="magenta"];1873 -> 1951[label="",style="dashed", color="magenta", weight=3]; 1873 -> 1952[label="",style="dashed", color="magenta", weight=3]; 1874 -> 1093[label="",style="dashed", color="red", weight=0]; 1874[label="vwx2211 < vwx2411",fontsize=16,color="magenta"];1874 -> 1953[label="",style="dashed", color="magenta", weight=3]; 1874 -> 1954[label="",style="dashed", color="magenta", weight=3]; 1875 -> 1094[label="",style="dashed", color="red", weight=0]; 1875[label="vwx2211 < vwx2411",fontsize=16,color="magenta"];1875 -> 1955[label="",style="dashed", color="magenta", weight=3]; 1875 -> 1956[label="",style="dashed", color="magenta", weight=3]; 1876 -> 1095[label="",style="dashed", color="red", weight=0]; 1876[label="vwx2211 < vwx2411",fontsize=16,color="magenta"];1876 -> 1957[label="",style="dashed", color="magenta", weight=3]; 1876 -> 1958[label="",style="dashed", color="magenta", weight=3]; 1877 -> 1096[label="",style="dashed", color="red", weight=0]; 1877[label="vwx2211 < vwx2411",fontsize=16,color="magenta"];1877 -> 1959[label="",style="dashed", color="magenta", weight=3]; 1877 -> 1960[label="",style="dashed", color="magenta", weight=3]; 1878 -> 1097[label="",style="dashed", color="red", weight=0]; 1878[label="vwx2211 < vwx2411",fontsize=16,color="magenta"];1878 -> 1961[label="",style="dashed", color="magenta", weight=3]; 1878 -> 1962[label="",style="dashed", color="magenta", weight=3]; 1879 -> 1098[label="",style="dashed", color="red", weight=0]; 1879[label="vwx2211 < vwx2411",fontsize=16,color="magenta"];1879 -> 1963[label="",style="dashed", color="magenta", weight=3]; 1879 -> 1964[label="",style="dashed", color="magenta", weight=3]; 1880 -> 1099[label="",style="dashed", color="red", weight=0]; 1880[label="vwx2211 < vwx2411",fontsize=16,color="magenta"];1880 -> 1965[label="",style="dashed", color="magenta", weight=3]; 1880 -> 1966[label="",style="dashed", color="magenta", weight=3]; 1881 -> 1100[label="",style="dashed", color="red", weight=0]; 1881[label="vwx2211 < vwx2411",fontsize=16,color="magenta"];1881 -> 1967[label="",style="dashed", color="magenta", weight=3]; 1881 -> 1968[label="",style="dashed", color="magenta", weight=3]; 1882 -> 1101[label="",style="dashed", color="red", weight=0]; 1882[label="vwx2211 < vwx2411",fontsize=16,color="magenta"];1882 -> 1969[label="",style="dashed", color="magenta", weight=3]; 1882 -> 1970[label="",style="dashed", color="magenta", weight=3]; 1883 -> 1102[label="",style="dashed", color="red", weight=0]; 1883[label="vwx2211 < vwx2411",fontsize=16,color="magenta"];1883 -> 1971[label="",style="dashed", color="magenta", weight=3]; 1883 -> 1972[label="",style="dashed", color="magenta", weight=3]; 1884 -> 1103[label="",style="dashed", color="red", weight=0]; 1884[label="vwx2211 < vwx2411",fontsize=16,color="magenta"];1884 -> 1973[label="",style="dashed", color="magenta", weight=3]; 1884 -> 1974[label="",style="dashed", color="magenta", weight=3]; 1885 -> 1104[label="",style="dashed", color="red", weight=0]; 1885[label="vwx2211 < vwx2411",fontsize=16,color="magenta"];1885 -> 1975[label="",style="dashed", color="magenta", weight=3]; 1885 -> 1976[label="",style="dashed", color="magenta", weight=3]; 1886 -> 1105[label="",style="dashed", color="red", weight=0]; 1886[label="vwx2211 < vwx2411",fontsize=16,color="magenta"];1886 -> 1977[label="",style="dashed", color="magenta", weight=3]; 1886 -> 1978[label="",style="dashed", color="magenta", weight=3]; 1887[label="vwx2211 == vwx2411",fontsize=16,color="blue",shape="box"];2735[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1887 -> 2735[label="",style="solid", color="blue", weight=9]; 2735 -> 1979[label="",style="solid", color="blue", weight=3]; 2736[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1887 -> 2736[label="",style="solid", color="blue", weight=9]; 2736 -> 1980[label="",style="solid", color="blue", weight=3]; 2737[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1887 -> 2737[label="",style="solid", color="blue", weight=9]; 2737 -> 1981[label="",style="solid", color="blue", weight=3]; 2738[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1887 -> 2738[label="",style="solid", color="blue", weight=9]; 2738 -> 1982[label="",style="solid", color="blue", weight=3]; 2739[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1887 -> 2739[label="",style="solid", color="blue", weight=9]; 2739 -> 1983[label="",style="solid", color="blue", weight=3]; 2740[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1887 -> 2740[label="",style="solid", color="blue", weight=9]; 2740 -> 1984[label="",style="solid", color="blue", weight=3]; 2741[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1887 -> 2741[label="",style="solid", color="blue", weight=9]; 2741 -> 1985[label="",style="solid", color="blue", weight=3]; 2742[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1887 -> 2742[label="",style="solid", color="blue", weight=9]; 2742 -> 1986[label="",style="solid", color="blue", weight=3]; 2743[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1887 -> 2743[label="",style="solid", color="blue", weight=9]; 2743 -> 1987[label="",style="solid", color="blue", weight=3]; 2744[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1887 -> 2744[label="",style="solid", color="blue", weight=9]; 2744 -> 1988[label="",style="solid", color="blue", weight=3]; 2745[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1887 -> 2745[label="",style="solid", color="blue", weight=9]; 2745 -> 1989[label="",style="solid", color="blue", weight=3]; 2746[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1887 -> 2746[label="",style="solid", color="blue", weight=9]; 2746 -> 1990[label="",style="solid", color="blue", weight=3]; 2747[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1887 -> 2747[label="",style="solid", color="blue", weight=9]; 2747 -> 1991[label="",style="solid", color="blue", weight=3]; 2748[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1887 -> 2748[label="",style="solid", color="blue", weight=9]; 2748 -> 1992[label="",style="solid", color="blue", weight=3]; 1888[label="vwx2212 <= vwx2412",fontsize=16,color="blue",shape="box"];2749[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1888 -> 2749[label="",style="solid", color="blue", weight=9]; 2749 -> 1993[label="",style="solid", color="blue", weight=3]; 2750[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1888 -> 2750[label="",style="solid", color="blue", weight=9]; 2750 -> 1994[label="",style="solid", color="blue", weight=3]; 2751[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1888 -> 2751[label="",style="solid", color="blue", weight=9]; 2751 -> 1995[label="",style="solid", color="blue", weight=3]; 2752[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1888 -> 2752[label="",style="solid", color="blue", weight=9]; 2752 -> 1996[label="",style="solid", color="blue", weight=3]; 2753[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1888 -> 2753[label="",style="solid", color="blue", weight=9]; 2753 -> 1997[label="",style="solid", color="blue", weight=3]; 2754[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1888 -> 2754[label="",style="solid", color="blue", weight=9]; 2754 -> 1998[label="",style="solid", color="blue", weight=3]; 2755[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1888 -> 2755[label="",style="solid", color="blue", weight=9]; 2755 -> 1999[label="",style="solid", color="blue", weight=3]; 2756[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1888 -> 2756[label="",style="solid", color="blue", weight=9]; 2756 -> 2000[label="",style="solid", color="blue", weight=3]; 2757[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1888 -> 2757[label="",style="solid", color="blue", weight=9]; 2757 -> 2001[label="",style="solid", color="blue", weight=3]; 2758[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1888 -> 2758[label="",style="solid", color="blue", weight=9]; 2758 -> 2002[label="",style="solid", color="blue", weight=3]; 2759[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1888 -> 2759[label="",style="solid", color="blue", weight=9]; 2759 -> 2003[label="",style="solid", color="blue", weight=3]; 2760[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1888 -> 2760[label="",style="solid", color="blue", weight=9]; 2760 -> 2004[label="",style="solid", color="blue", weight=3]; 2761[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1888 -> 2761[label="",style="solid", color="blue", weight=9]; 2761 -> 2005[label="",style="solid", color="blue", weight=3]; 2762[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1888 -> 2762[label="",style="solid", color="blue", weight=9]; 2762 -> 2006[label="",style="solid", color="blue", weight=3]; 1110[label="primPlusNat (Succ vwx5600) (Succ vwx401000)",fontsize=16,color="black",shape="box"];1110 -> 1158[label="",style="solid", color="black", weight=3]; 1111[label="primPlusNat (Succ vwx5600) Zero",fontsize=16,color="black",shape="box"];1111 -> 1159[label="",style="solid", color="black", weight=3]; 1112[label="primPlusNat Zero (Succ vwx401000)",fontsize=16,color="black",shape="box"];1112 -> 1160[label="",style="solid", color="black", weight=3]; 1113[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];1113 -> 1161[label="",style="solid", color="black", weight=3]; 1889 -> 235[label="",style="dashed", color="red", weight=0]; 1889[label="Pos vwx22010 * vwx2400",fontsize=16,color="magenta"];1889 -> 2007[label="",style="dashed", color="magenta", weight=3]; 1889 -> 2008[label="",style="dashed", color="magenta", weight=3]; 1890 -> 235[label="",style="dashed", color="red", weight=0]; 1890[label="vwx2200 * Pos vwx24010",fontsize=16,color="magenta"];1890 -> 2009[label="",style="dashed", color="magenta", weight=3]; 1890 -> 2010[label="",style="dashed", color="magenta", weight=3]; 1891 -> 235[label="",style="dashed", color="red", weight=0]; 1891[label="Neg vwx22010 * vwx2400",fontsize=16,color="magenta"];1891 -> 2011[label="",style="dashed", color="magenta", weight=3]; 1891 -> 2012[label="",style="dashed", color="magenta", weight=3]; 1892 -> 235[label="",style="dashed", color="red", weight=0]; 1892[label="vwx2200 * Pos vwx24010",fontsize=16,color="magenta"];1892 -> 2013[label="",style="dashed", color="magenta", weight=3]; 1892 -> 2014[label="",style="dashed", color="magenta", weight=3]; 1893 -> 235[label="",style="dashed", color="red", weight=0]; 1893[label="Pos vwx22010 * vwx2400",fontsize=16,color="magenta"];1893 -> 2015[label="",style="dashed", color="magenta", weight=3]; 1893 -> 2016[label="",style="dashed", color="magenta", weight=3]; 1894 -> 235[label="",style="dashed", color="red", weight=0]; 1894[label="vwx2200 * Neg vwx24010",fontsize=16,color="magenta"];1894 -> 2017[label="",style="dashed", color="magenta", weight=3]; 1894 -> 2018[label="",style="dashed", color="magenta", weight=3]; 1895 -> 235[label="",style="dashed", color="red", weight=0]; 1895[label="Neg vwx22010 * vwx2400",fontsize=16,color="magenta"];1895 -> 2019[label="",style="dashed", color="magenta", weight=3]; 1895 -> 2020[label="",style="dashed", color="magenta", weight=3]; 1896 -> 235[label="",style="dashed", color="red", weight=0]; 1896[label="vwx2200 * Neg vwx24010",fontsize=16,color="magenta"];1896 -> 2021[label="",style="dashed", color="magenta", weight=3]; 1896 -> 2022[label="",style="dashed", color="magenta", weight=3]; 1897 -> 235[label="",style="dashed", color="red", weight=0]; 1897[label="Pos vwx22010 * vwx2400",fontsize=16,color="magenta"];1897 -> 2023[label="",style="dashed", color="magenta", weight=3]; 1897 -> 2024[label="",style="dashed", color="magenta", weight=3]; 1898 -> 235[label="",style="dashed", color="red", weight=0]; 1898[label="vwx2200 * Pos vwx24010",fontsize=16,color="magenta"];1898 -> 2025[label="",style="dashed", color="magenta", weight=3]; 1898 -> 2026[label="",style="dashed", color="magenta", weight=3]; 1899 -> 235[label="",style="dashed", color="red", weight=0]; 1899[label="Neg vwx22010 * vwx2400",fontsize=16,color="magenta"];1899 -> 2027[label="",style="dashed", color="magenta", weight=3]; 1899 -> 2028[label="",style="dashed", color="magenta", weight=3]; 1900 -> 235[label="",style="dashed", color="red", weight=0]; 1900[label="vwx2200 * Pos vwx24010",fontsize=16,color="magenta"];1900 -> 2029[label="",style="dashed", color="magenta", weight=3]; 1900 -> 2030[label="",style="dashed", color="magenta", weight=3]; 1901 -> 235[label="",style="dashed", color="red", weight=0]; 1901[label="Pos vwx22010 * vwx2400",fontsize=16,color="magenta"];1901 -> 2031[label="",style="dashed", color="magenta", weight=3]; 1901 -> 2032[label="",style="dashed", color="magenta", weight=3]; 1902 -> 235[label="",style="dashed", color="red", weight=0]; 1902[label="vwx2200 * Neg vwx24010",fontsize=16,color="magenta"];1902 -> 2033[label="",style="dashed", color="magenta", weight=3]; 1902 -> 2034[label="",style="dashed", color="magenta", weight=3]; 1903 -> 235[label="",style="dashed", color="red", weight=0]; 1903[label="Neg vwx22010 * vwx2400",fontsize=16,color="magenta"];1903 -> 2035[label="",style="dashed", color="magenta", weight=3]; 1903 -> 2036[label="",style="dashed", color="magenta", weight=3]; 1904 -> 235[label="",style="dashed", color="red", weight=0]; 1904[label="vwx2200 * Neg vwx24010",fontsize=16,color="magenta"];1904 -> 2037[label="",style="dashed", color="magenta", weight=3]; 1904 -> 2038[label="",style="dashed", color="magenta", weight=3]; 1905[label="Integer vwx24000 * Integer vwx22010",fontsize=16,color="black",shape="box"];1905 -> 2039[label="",style="solid", color="black", weight=3]; 1906 -> 1162[label="",style="dashed", color="red", weight=0]; 1906[label="compare vwx2200 vwx2400",fontsize=16,color="magenta"];1906 -> 2040[label="",style="dashed", color="magenta", weight=3]; 1906 -> 2041[label="",style="dashed", color="magenta", weight=3]; 1907 -> 1164[label="",style="dashed", color="red", weight=0]; 1907[label="compare vwx2200 vwx2400",fontsize=16,color="magenta"];1907 -> 2042[label="",style="dashed", color="magenta", weight=3]; 1907 -> 2043[label="",style="dashed", color="magenta", weight=3]; 1908 -> 1166[label="",style="dashed", color="red", weight=0]; 1908[label="compare vwx2200 vwx2400",fontsize=16,color="magenta"];1908 -> 2044[label="",style="dashed", color="magenta", weight=3]; 1908 -> 2045[label="",style="dashed", color="magenta", weight=3]; 1909 -> 1168[label="",style="dashed", color="red", weight=0]; 1909[label="compare vwx2200 vwx2400",fontsize=16,color="magenta"];1909 -> 2046[label="",style="dashed", color="magenta", weight=3]; 1909 -> 2047[label="",style="dashed", color="magenta", weight=3]; 1910 -> 1170[label="",style="dashed", color="red", weight=0]; 1910[label="compare vwx2200 vwx2400",fontsize=16,color="magenta"];1910 -> 2048[label="",style="dashed", color="magenta", weight=3]; 1910 -> 2049[label="",style="dashed", color="magenta", weight=3]; 1911 -> 1172[label="",style="dashed", color="red", weight=0]; 1911[label="compare vwx2200 vwx2400",fontsize=16,color="magenta"];1911 -> 2050[label="",style="dashed", color="magenta", weight=3]; 1911 -> 2051[label="",style="dashed", color="magenta", weight=3]; 1912 -> 1174[label="",style="dashed", color="red", weight=0]; 1912[label="compare vwx2200 vwx2400",fontsize=16,color="magenta"];1912 -> 2052[label="",style="dashed", color="magenta", weight=3]; 1912 -> 2053[label="",style="dashed", color="magenta", weight=3]; 1913 -> 1176[label="",style="dashed", color="red", weight=0]; 1913[label="compare vwx2200 vwx2400",fontsize=16,color="magenta"];1913 -> 2054[label="",style="dashed", color="magenta", weight=3]; 1913 -> 2055[label="",style="dashed", color="magenta", weight=3]; 1914 -> 1178[label="",style="dashed", color="red", weight=0]; 1914[label="compare vwx2200 vwx2400",fontsize=16,color="magenta"];1914 -> 2056[label="",style="dashed", color="magenta", weight=3]; 1914 -> 2057[label="",style="dashed", color="magenta", weight=3]; 1915 -> 1180[label="",style="dashed", color="red", weight=0]; 1915[label="compare vwx2200 vwx2400",fontsize=16,color="magenta"];1915 -> 2058[label="",style="dashed", color="magenta", weight=3]; 1915 -> 2059[label="",style="dashed", color="magenta", weight=3]; 1916 -> 1182[label="",style="dashed", color="red", weight=0]; 1916[label="compare vwx2200 vwx2400",fontsize=16,color="magenta"];1916 -> 2060[label="",style="dashed", color="magenta", weight=3]; 1916 -> 2061[label="",style="dashed", color="magenta", weight=3]; 1917 -> 1184[label="",style="dashed", color="red", weight=0]; 1917[label="compare vwx2200 vwx2400",fontsize=16,color="magenta"];1917 -> 2062[label="",style="dashed", color="magenta", weight=3]; 1917 -> 2063[label="",style="dashed", color="magenta", weight=3]; 1918 -> 1186[label="",style="dashed", color="red", weight=0]; 1918[label="compare vwx2200 vwx2400",fontsize=16,color="magenta"];1918 -> 2064[label="",style="dashed", color="magenta", weight=3]; 1918 -> 2065[label="",style="dashed", color="magenta", weight=3]; 1919 -> 1188[label="",style="dashed", color="red", weight=0]; 1919[label="compare vwx2200 vwx2400",fontsize=16,color="magenta"];1919 -> 2066[label="",style="dashed", color="magenta", weight=3]; 1919 -> 2067[label="",style="dashed", color="magenta", weight=3]; 1920[label="primCompAux0 vwx88 LT",fontsize=16,color="black",shape="box"];1920 -> 2068[label="",style="solid", color="black", weight=3]; 1921[label="primCompAux0 vwx88 EQ",fontsize=16,color="black",shape="box"];1921 -> 2069[label="",style="solid", color="black", weight=3]; 1922[label="primCompAux0 vwx88 GT",fontsize=16,color="black",shape="box"];1922 -> 2070[label="",style="solid", color="black", weight=3]; 1923 -> 1442[label="",style="dashed", color="red", weight=0]; 1923[label="primCmpNat vwx22000 vwx24000",fontsize=16,color="magenta"];1923 -> 2071[label="",style="dashed", color="magenta", weight=3]; 1923 -> 2072[label="",style="dashed", color="magenta", weight=3]; 1924[label="GT",fontsize=16,color="green",shape="box"];1925[label="LT",fontsize=16,color="green",shape="box"];1926[label="EQ",fontsize=16,color="green",shape="box"];1927[label="vwx220",fontsize=16,color="green",shape="box"];1928[label="vwx240",fontsize=16,color="green",shape="box"];1929[label="compare1 vwx220 vwx240 False",fontsize=16,color="black",shape="box"];1929 -> 2073[label="",style="solid", color="black", weight=3]; 1930[label="compare1 vwx220 vwx240 True",fontsize=16,color="black",shape="box"];1930 -> 2074[label="",style="solid", color="black", weight=3]; 1931[label="vwx220",fontsize=16,color="green",shape="box"];1932[label="vwx240",fontsize=16,color="green",shape="box"];1933[label="compare1 vwx220 vwx240 False",fontsize=16,color="black",shape="box"];1933 -> 2075[label="",style="solid", color="black", weight=3]; 1934[label="compare1 vwx220 vwx240 True",fontsize=16,color="black",shape="box"];1934 -> 2076[label="",style="solid", color="black", weight=3]; 1935[label="vwx220",fontsize=16,color="green",shape="box"];1936[label="vwx240",fontsize=16,color="green",shape="box"];1937[label="compare1 vwx220 vwx240 False",fontsize=16,color="black",shape="box"];1937 -> 2077[label="",style="solid", color="black", weight=3]; 1938[label="compare1 vwx220 vwx240 True",fontsize=16,color="black",shape="box"];1938 -> 2078[label="",style="solid", color="black", weight=3]; 1939[label="vwx220",fontsize=16,color="green",shape="box"];1940[label="vwx240",fontsize=16,color="green",shape="box"];1941[label="compare1 vwx220 vwx240 False",fontsize=16,color="black",shape="box"];1941 -> 2079[label="",style="solid", color="black", weight=3]; 1942[label="compare1 vwx220 vwx240 True",fontsize=16,color="black",shape="box"];1942 -> 2080[label="",style="solid", color="black", weight=3]; 1943[label="vwx220",fontsize=16,color="green",shape="box"];1944[label="vwx240",fontsize=16,color="green",shape="box"];1945[label="compare1 vwx220 vwx240 False",fontsize=16,color="black",shape="box"];1945 -> 2081[label="",style="solid", color="black", weight=3]; 1946[label="compare1 vwx220 vwx240 True",fontsize=16,color="black",shape="box"];1946 -> 2082[label="",style="solid", color="black", weight=3]; 1947[label="Zero",fontsize=16,color="green",shape="box"];1948[label="Succ vwx24000",fontsize=16,color="green",shape="box"];1949[label="Succ vwx24000",fontsize=16,color="green",shape="box"];1950[label="Zero",fontsize=16,color="green",shape="box"];1951[label="vwx2411",fontsize=16,color="green",shape="box"];1952[label="vwx2211",fontsize=16,color="green",shape="box"];1953[label="vwx2411",fontsize=16,color="green",shape="box"];1954[label="vwx2211",fontsize=16,color="green",shape="box"];1955[label="vwx2411",fontsize=16,color="green",shape="box"];1956[label="vwx2211",fontsize=16,color="green",shape="box"];1957[label="vwx2411",fontsize=16,color="green",shape="box"];1958[label="vwx2211",fontsize=16,color="green",shape="box"];1959[label="vwx2411",fontsize=16,color="green",shape="box"];1960[label="vwx2211",fontsize=16,color="green",shape="box"];1961[label="vwx2411",fontsize=16,color="green",shape="box"];1962[label="vwx2211",fontsize=16,color="green",shape="box"];1963[label="vwx2411",fontsize=16,color="green",shape="box"];1964[label="vwx2211",fontsize=16,color="green",shape="box"];1965[label="vwx2411",fontsize=16,color="green",shape="box"];1966[label="vwx2211",fontsize=16,color="green",shape="box"];1967[label="vwx2411",fontsize=16,color="green",shape="box"];1968[label="vwx2211",fontsize=16,color="green",shape="box"];1969[label="vwx2411",fontsize=16,color="green",shape="box"];1970[label="vwx2211",fontsize=16,color="green",shape="box"];1971[label="vwx2411",fontsize=16,color="green",shape="box"];1972[label="vwx2211",fontsize=16,color="green",shape="box"];1973[label="vwx2411",fontsize=16,color="green",shape="box"];1974[label="vwx2211",fontsize=16,color="green",shape="box"];1975[label="vwx2411",fontsize=16,color="green",shape="box"];1976[label="vwx2211",fontsize=16,color="green",shape="box"];1977[label="vwx2411",fontsize=16,color="green",shape="box"];1978[label="vwx2211",fontsize=16,color="green",shape="box"];1979 -> 18[label="",style="dashed", color="red", weight=0]; 1979[label="vwx2211 == vwx2411",fontsize=16,color="magenta"];1979 -> 2083[label="",style="dashed", color="magenta", weight=3]; 1979 -> 2084[label="",style="dashed", color="magenta", weight=3]; 1980 -> 25[label="",style="dashed", color="red", weight=0]; 1980[label="vwx2211 == vwx2411",fontsize=16,color="magenta"];1980 -> 2085[label="",style="dashed", color="magenta", weight=3]; 1980 -> 2086[label="",style="dashed", color="magenta", weight=3]; 1981 -> 22[label="",style="dashed", color="red", weight=0]; 1981[label="vwx2211 == vwx2411",fontsize=16,color="magenta"];1981 -> 2087[label="",style="dashed", color="magenta", weight=3]; 1981 -> 2088[label="",style="dashed", color="magenta", weight=3]; 1982 -> 29[label="",style="dashed", color="red", weight=0]; 1982[label="vwx2211 == vwx2411",fontsize=16,color="magenta"];1982 -> 2089[label="",style="dashed", color="magenta", weight=3]; 1982 -> 2090[label="",style="dashed", color="magenta", weight=3]; 1983 -> 20[label="",style="dashed", color="red", weight=0]; 1983[label="vwx2211 == vwx2411",fontsize=16,color="magenta"];1983 -> 2091[label="",style="dashed", color="magenta", weight=3]; 1983 -> 2092[label="",style="dashed", color="magenta", weight=3]; 1984 -> 19[label="",style="dashed", color="red", weight=0]; 1984[label="vwx2211 == vwx2411",fontsize=16,color="magenta"];1984 -> 2093[label="",style="dashed", color="magenta", weight=3]; 1984 -> 2094[label="",style="dashed", color="magenta", weight=3]; 1985 -> 27[label="",style="dashed", color="red", weight=0]; 1985[label="vwx2211 == vwx2411",fontsize=16,color="magenta"];1985 -> 2095[label="",style="dashed", color="magenta", weight=3]; 1985 -> 2096[label="",style="dashed", color="magenta", weight=3]; 1986 -> 23[label="",style="dashed", color="red", weight=0]; 1986[label="vwx2211 == vwx2411",fontsize=16,color="magenta"];1986 -> 2097[label="",style="dashed", color="magenta", weight=3]; 1986 -> 2098[label="",style="dashed", color="magenta", weight=3]; 1987 -> 30[label="",style="dashed", color="red", weight=0]; 1987[label="vwx2211 == vwx2411",fontsize=16,color="magenta"];1987 -> 2099[label="",style="dashed", color="magenta", weight=3]; 1987 -> 2100[label="",style="dashed", color="magenta", weight=3]; 1988 -> 28[label="",style="dashed", color="red", weight=0]; 1988[label="vwx2211 == vwx2411",fontsize=16,color="magenta"];1988 -> 2101[label="",style="dashed", color="magenta", weight=3]; 1988 -> 2102[label="",style="dashed", color="magenta", weight=3]; 1989 -> 17[label="",style="dashed", color="red", weight=0]; 1989[label="vwx2211 == vwx2411",fontsize=16,color="magenta"];1989 -> 2103[label="",style="dashed", color="magenta", weight=3]; 1989 -> 2104[label="",style="dashed", color="magenta", weight=3]; 1990 -> 24[label="",style="dashed", color="red", weight=0]; 1990[label="vwx2211 == vwx2411",fontsize=16,color="magenta"];1990 -> 2105[label="",style="dashed", color="magenta", weight=3]; 1990 -> 2106[label="",style="dashed", color="magenta", weight=3]; 1991 -> 21[label="",style="dashed", color="red", weight=0]; 1991[label="vwx2211 == vwx2411",fontsize=16,color="magenta"];1991 -> 2107[label="",style="dashed", color="magenta", weight=3]; 1991 -> 2108[label="",style="dashed", color="magenta", weight=3]; 1992 -> 26[label="",style="dashed", color="red", weight=0]; 1992[label="vwx2211 == vwx2411",fontsize=16,color="magenta"];1992 -> 2109[label="",style="dashed", color="magenta", weight=3]; 1992 -> 2110[label="",style="dashed", color="magenta", weight=3]; 1993 -> 1142[label="",style="dashed", color="red", weight=0]; 1993[label="vwx2212 <= vwx2412",fontsize=16,color="magenta"];1993 -> 2111[label="",style="dashed", color="magenta", weight=3]; 1993 -> 2112[label="",style="dashed", color="magenta", weight=3]; 1994 -> 1143[label="",style="dashed", color="red", weight=0]; 1994[label="vwx2212 <= vwx2412",fontsize=16,color="magenta"];1994 -> 2113[label="",style="dashed", color="magenta", weight=3]; 1994 -> 2114[label="",style="dashed", color="magenta", weight=3]; 1995 -> 1144[label="",style="dashed", color="red", weight=0]; 1995[label="vwx2212 <= vwx2412",fontsize=16,color="magenta"];1995 -> 2115[label="",style="dashed", color="magenta", weight=3]; 1995 -> 2116[label="",style="dashed", color="magenta", weight=3]; 1996 -> 1145[label="",style="dashed", color="red", weight=0]; 1996[label="vwx2212 <= vwx2412",fontsize=16,color="magenta"];1996 -> 2117[label="",style="dashed", color="magenta", weight=3]; 1996 -> 2118[label="",style="dashed", color="magenta", weight=3]; 1997 -> 1146[label="",style="dashed", color="red", weight=0]; 1997[label="vwx2212 <= vwx2412",fontsize=16,color="magenta"];1997 -> 2119[label="",style="dashed", color="magenta", weight=3]; 1997 -> 2120[label="",style="dashed", color="magenta", weight=3]; 1998 -> 1147[label="",style="dashed", color="red", weight=0]; 1998[label="vwx2212 <= vwx2412",fontsize=16,color="magenta"];1998 -> 2121[label="",style="dashed", color="magenta", weight=3]; 1998 -> 2122[label="",style="dashed", color="magenta", weight=3]; 1999 -> 1148[label="",style="dashed", color="red", weight=0]; 1999[label="vwx2212 <= vwx2412",fontsize=16,color="magenta"];1999 -> 2123[label="",style="dashed", color="magenta", weight=3]; 1999 -> 2124[label="",style="dashed", color="magenta", weight=3]; 2000 -> 1149[label="",style="dashed", color="red", weight=0]; 2000[label="vwx2212 <= vwx2412",fontsize=16,color="magenta"];2000 -> 2125[label="",style="dashed", color="magenta", weight=3]; 2000 -> 2126[label="",style="dashed", color="magenta", weight=3]; 2001 -> 1150[label="",style="dashed", color="red", weight=0]; 2001[label="vwx2212 <= vwx2412",fontsize=16,color="magenta"];2001 -> 2127[label="",style="dashed", color="magenta", weight=3]; 2001 -> 2128[label="",style="dashed", color="magenta", weight=3]; 2002 -> 1151[label="",style="dashed", color="red", weight=0]; 2002[label="vwx2212 <= vwx2412",fontsize=16,color="magenta"];2002 -> 2129[label="",style="dashed", color="magenta", weight=3]; 2002 -> 2130[label="",style="dashed", color="magenta", weight=3]; 2003 -> 1152[label="",style="dashed", color="red", weight=0]; 2003[label="vwx2212 <= vwx2412",fontsize=16,color="magenta"];2003 -> 2131[label="",style="dashed", color="magenta", weight=3]; 2003 -> 2132[label="",style="dashed", color="magenta", weight=3]; 2004 -> 1153[label="",style="dashed", color="red", weight=0]; 2004[label="vwx2212 <= vwx2412",fontsize=16,color="magenta"];2004 -> 2133[label="",style="dashed", color="magenta", weight=3]; 2004 -> 2134[label="",style="dashed", color="magenta", weight=3]; 2005 -> 1154[label="",style="dashed", color="red", weight=0]; 2005[label="vwx2212 <= vwx2412",fontsize=16,color="magenta"];2005 -> 2135[label="",style="dashed", color="magenta", weight=3]; 2005 -> 2136[label="",style="dashed", color="magenta", weight=3]; 2006 -> 1155[label="",style="dashed", color="red", weight=0]; 2006[label="vwx2212 <= vwx2412",fontsize=16,color="magenta"];2006 -> 2137[label="",style="dashed", color="magenta", weight=3]; 2006 -> 2138[label="",style="dashed", color="magenta", weight=3]; 1158[label="Succ (Succ (primPlusNat vwx5600 vwx401000))",fontsize=16,color="green",shape="box"];1158 -> 1240[label="",style="dashed", color="green", weight=3]; 1159[label="Succ vwx5600",fontsize=16,color="green",shape="box"];1160[label="Succ vwx401000",fontsize=16,color="green",shape="box"];1161[label="Zero",fontsize=16,color="green",shape="box"];2007[label="vwx2400",fontsize=16,color="green",shape="box"];2008[label="Pos vwx22010",fontsize=16,color="green",shape="box"];2009[label="Pos vwx24010",fontsize=16,color="green",shape="box"];2010[label="vwx2200",fontsize=16,color="green",shape="box"];2011[label="vwx2400",fontsize=16,color="green",shape="box"];2012[label="Neg vwx22010",fontsize=16,color="green",shape="box"];2013[label="Pos vwx24010",fontsize=16,color="green",shape="box"];2014[label="vwx2200",fontsize=16,color="green",shape="box"];2015[label="vwx2400",fontsize=16,color="green",shape="box"];2016[label="Pos vwx22010",fontsize=16,color="green",shape="box"];2017[label="Neg vwx24010",fontsize=16,color="green",shape="box"];2018[label="vwx2200",fontsize=16,color="green",shape="box"];2019[label="vwx2400",fontsize=16,color="green",shape="box"];2020[label="Neg vwx22010",fontsize=16,color="green",shape="box"];2021[label="Neg vwx24010",fontsize=16,color="green",shape="box"];2022[label="vwx2200",fontsize=16,color="green",shape="box"];2023[label="vwx2400",fontsize=16,color="green",shape="box"];2024[label="Pos vwx22010",fontsize=16,color="green",shape="box"];2025[label="Pos vwx24010",fontsize=16,color="green",shape="box"];2026[label="vwx2200",fontsize=16,color="green",shape="box"];2027[label="vwx2400",fontsize=16,color="green",shape="box"];2028[label="Neg vwx22010",fontsize=16,color="green",shape="box"];2029[label="Pos vwx24010",fontsize=16,color="green",shape="box"];2030[label="vwx2200",fontsize=16,color="green",shape="box"];2031[label="vwx2400",fontsize=16,color="green",shape="box"];2032[label="Pos vwx22010",fontsize=16,color="green",shape="box"];2033[label="Neg vwx24010",fontsize=16,color="green",shape="box"];2034[label="vwx2200",fontsize=16,color="green",shape="box"];2035[label="vwx2400",fontsize=16,color="green",shape="box"];2036[label="Neg vwx22010",fontsize=16,color="green",shape="box"];2037[label="Neg vwx24010",fontsize=16,color="green",shape="box"];2038[label="vwx2200",fontsize=16,color="green",shape="box"];2039[label="Integer (primMulInt vwx24000 vwx22010)",fontsize=16,color="green",shape="box"];2039 -> 2139[label="",style="dashed", color="green", weight=3]; 2040[label="vwx2400",fontsize=16,color="green",shape="box"];2041[label="vwx2200",fontsize=16,color="green",shape="box"];2042[label="vwx2400",fontsize=16,color="green",shape="box"];2043[label="vwx2200",fontsize=16,color="green",shape="box"];2044[label="vwx2400",fontsize=16,color="green",shape="box"];2045[label="vwx2200",fontsize=16,color="green",shape="box"];2046[label="vwx2400",fontsize=16,color="green",shape="box"];2047[label="vwx2200",fontsize=16,color="green",shape="box"];2048[label="vwx2400",fontsize=16,color="green",shape="box"];2049[label="vwx2200",fontsize=16,color="green",shape="box"];2050[label="vwx2400",fontsize=16,color="green",shape="box"];2051[label="vwx2200",fontsize=16,color="green",shape="box"];2052[label="vwx2400",fontsize=16,color="green",shape="box"];2053[label="vwx2200",fontsize=16,color="green",shape="box"];2054[label="vwx2400",fontsize=16,color="green",shape="box"];2055[label="vwx2200",fontsize=16,color="green",shape="box"];2056[label="vwx2400",fontsize=16,color="green",shape="box"];2057[label="vwx2200",fontsize=16,color="green",shape="box"];2058[label="vwx2400",fontsize=16,color="green",shape="box"];2059[label="vwx2200",fontsize=16,color="green",shape="box"];2060[label="vwx2400",fontsize=16,color="green",shape="box"];2061[label="vwx2200",fontsize=16,color="green",shape="box"];2062[label="vwx2400",fontsize=16,color="green",shape="box"];2063[label="vwx2200",fontsize=16,color="green",shape="box"];2064[label="vwx2400",fontsize=16,color="green",shape="box"];2065[label="vwx2200",fontsize=16,color="green",shape="box"];2066[label="vwx2400",fontsize=16,color="green",shape="box"];2067[label="vwx2200",fontsize=16,color="green",shape="box"];2068[label="LT",fontsize=16,color="green",shape="box"];2069[label="vwx88",fontsize=16,color="green",shape="box"];2070[label="GT",fontsize=16,color="green",shape="box"];2071[label="vwx22000",fontsize=16,color="green",shape="box"];2072[label="vwx24000",fontsize=16,color="green",shape="box"];2073[label="compare0 vwx220 vwx240 otherwise",fontsize=16,color="black",shape="box"];2073 -> 2140[label="",style="solid", color="black", weight=3]; 2074[label="LT",fontsize=16,color="green",shape="box"];2075[label="compare0 vwx220 vwx240 otherwise",fontsize=16,color="black",shape="box"];2075 -> 2141[label="",style="solid", color="black", weight=3]; 2076[label="LT",fontsize=16,color="green",shape="box"];2077[label="compare0 vwx220 vwx240 otherwise",fontsize=16,color="black",shape="box"];2077 -> 2142[label="",style="solid", color="black", weight=3]; 2078[label="LT",fontsize=16,color="green",shape="box"];2079[label="compare0 vwx220 vwx240 otherwise",fontsize=16,color="black",shape="box"];2079 -> 2143[label="",style="solid", color="black", weight=3]; 2080[label="LT",fontsize=16,color="green",shape="box"];2081[label="compare0 vwx220 vwx240 otherwise",fontsize=16,color="black",shape="box"];2081 -> 2144[label="",style="solid", color="black", weight=3]; 2082[label="LT",fontsize=16,color="green",shape="box"];2083[label="vwx2211",fontsize=16,color="green",shape="box"];2084[label="vwx2411",fontsize=16,color="green",shape="box"];2085[label="vwx2211",fontsize=16,color="green",shape="box"];2086[label="vwx2411",fontsize=16,color="green",shape="box"];2087[label="vwx2211",fontsize=16,color="green",shape="box"];2088[label="vwx2411",fontsize=16,color="green",shape="box"];2089[label="vwx2211",fontsize=16,color="green",shape="box"];2090[label="vwx2411",fontsize=16,color="green",shape="box"];2091[label="vwx2211",fontsize=16,color="green",shape="box"];2092[label="vwx2411",fontsize=16,color="green",shape="box"];2093[label="vwx2211",fontsize=16,color="green",shape="box"];2094[label="vwx2411",fontsize=16,color="green",shape="box"];2095[label="vwx2211",fontsize=16,color="green",shape="box"];2096[label="vwx2411",fontsize=16,color="green",shape="box"];2097[label="vwx2211",fontsize=16,color="green",shape="box"];2098[label="vwx2411",fontsize=16,color="green",shape="box"];2099[label="vwx2211",fontsize=16,color="green",shape="box"];2100[label="vwx2411",fontsize=16,color="green",shape="box"];2101[label="vwx2211",fontsize=16,color="green",shape="box"];2102[label="vwx2411",fontsize=16,color="green",shape="box"];2103[label="vwx2211",fontsize=16,color="green",shape="box"];2104[label="vwx2411",fontsize=16,color="green",shape="box"];2105[label="vwx2211",fontsize=16,color="green",shape="box"];2106[label="vwx2411",fontsize=16,color="green",shape="box"];2107[label="vwx2211",fontsize=16,color="green",shape="box"];2108[label="vwx2411",fontsize=16,color="green",shape="box"];2109[label="vwx2211",fontsize=16,color="green",shape="box"];2110[label="vwx2411",fontsize=16,color="green",shape="box"];2111[label="vwx2212",fontsize=16,color="green",shape="box"];2112[label="vwx2412",fontsize=16,color="green",shape="box"];2113[label="vwx2212",fontsize=16,color="green",shape="box"];2114[label="vwx2412",fontsize=16,color="green",shape="box"];2115[label="vwx2212",fontsize=16,color="green",shape="box"];2116[label="vwx2412",fontsize=16,color="green",shape="box"];2117[label="vwx2212",fontsize=16,color="green",shape="box"];2118[label="vwx2412",fontsize=16,color="green",shape="box"];2119[label="vwx2212",fontsize=16,color="green",shape="box"];2120[label="vwx2412",fontsize=16,color="green",shape="box"];2121[label="vwx2212",fontsize=16,color="green",shape="box"];2122[label="vwx2412",fontsize=16,color="green",shape="box"];2123[label="vwx2212",fontsize=16,color="green",shape="box"];2124[label="vwx2412",fontsize=16,color="green",shape="box"];2125[label="vwx2212",fontsize=16,color="green",shape="box"];2126[label="vwx2412",fontsize=16,color="green",shape="box"];2127[label="vwx2212",fontsize=16,color="green",shape="box"];2128[label="vwx2412",fontsize=16,color="green",shape="box"];2129[label="vwx2212",fontsize=16,color="green",shape="box"];2130[label="vwx2412",fontsize=16,color="green",shape="box"];2131[label="vwx2212",fontsize=16,color="green",shape="box"];2132[label="vwx2412",fontsize=16,color="green",shape="box"];2133[label="vwx2212",fontsize=16,color="green",shape="box"];2134[label="vwx2412",fontsize=16,color="green",shape="box"];2135[label="vwx2212",fontsize=16,color="green",shape="box"];2136[label="vwx2412",fontsize=16,color="green",shape="box"];2137[label="vwx2212",fontsize=16,color="green",shape="box"];2138[label="vwx2412",fontsize=16,color="green",shape="box"];1240 -> 1071[label="",style="dashed", color="red", weight=0]; 1240[label="primPlusNat vwx5600 vwx401000",fontsize=16,color="magenta"];1240 -> 1325[label="",style="dashed", color="magenta", weight=3]; 1240 -> 1326[label="",style="dashed", color="magenta", weight=3]; 2139 -> 462[label="",style="dashed", color="red", weight=0]; 2139[label="primMulInt vwx24000 vwx22010",fontsize=16,color="magenta"];2139 -> 2145[label="",style="dashed", color="magenta", weight=3]; 2139 -> 2146[label="",style="dashed", color="magenta", weight=3]; 2140[label="compare0 vwx220 vwx240 True",fontsize=16,color="black",shape="box"];2140 -> 2147[label="",style="solid", color="black", weight=3]; 2141[label="compare0 vwx220 vwx240 True",fontsize=16,color="black",shape="box"];2141 -> 2148[label="",style="solid", color="black", weight=3]; 2142[label="compare0 vwx220 vwx240 True",fontsize=16,color="black",shape="box"];2142 -> 2149[label="",style="solid", color="black", weight=3]; 2143[label="compare0 vwx220 vwx240 True",fontsize=16,color="black",shape="box"];2143 -> 2150[label="",style="solid", color="black", weight=3]; 2144[label="compare0 vwx220 vwx240 True",fontsize=16,color="black",shape="box"];2144 -> 2151[label="",style="solid", color="black", weight=3]; 1325[label="vwx401000",fontsize=16,color="green",shape="box"];1326[label="vwx5600",fontsize=16,color="green",shape="box"];2145[label="vwx22010",fontsize=16,color="green",shape="box"];2146[label="vwx24000",fontsize=16,color="green",shape="box"];2147[label="GT",fontsize=16,color="green",shape="box"];2148[label="GT",fontsize=16,color="green",shape="box"];2149[label="GT",fontsize=16,color="green",shape="box"];2150[label="GT",fontsize=16,color="green",shape="box"];2151[label="GT",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(vwx22000), Succ(vwx24000)) -> new_primCmpNat(vwx22000, vwx24000) 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(vwx22000), Succ(vwx24000)) -> new_primCmpNat(vwx22000, vwx24000) 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_compare20(@2(vwx220, @3(vwx2210, vwx2211, vwx2212)), @2(vwx240, @3(vwx2410, vwx2411, vwx2412)), False, dd, app(app(app(ty_@3, app(app(app(ty_@3, bch), bda), bdb)), bca), bcb)) -> new_lt3(vwx2210, vwx2410, bch, bda, bdb) new_primCompAux(vwx2200, vwx2400, vwx79, app(ty_[], ba)) -> new_compare0(vwx2200, vwx2400, ba) new_compare20(@2(vwx220, @2(vwx2210, vwx2211)), @2(vwx240, @2(vwx2410, vwx2411)), False, dd, app(app(ty_@2, eh), app(app(ty_@2, fb), fc))) -> new_ltEs0(vwx2211, vwx2411, fb, fc) new_ltEs3(@3(vwx2210, vwx2211, vwx2212), @3(vwx2410, vwx2411, vwx2412), app(app(ty_@2, bcc), bcd), bca, bcb) -> new_lt0(vwx2210, vwx2410, bcc, bcd) new_compare20(@2(vwx220, @3(vwx2210, vwx2211, vwx2212)), @2(vwx240, @3(vwx2410, vwx2411, vwx2412)), False, dd, app(app(app(ty_@3, bdc), app(app(app(ty_@3, beb), bec), bed)), bcb)) -> new_lt3(vwx2211, vwx2411, beb, bec, bed) new_compare20(@2(vwx220, vwx221), @2(vwx240, vwx241), False, app(app(app(ty_@3, da), db), dc), cd) -> new_compare23(vwx220, vwx240, new_esEs7(vwx220, vwx240, da, db, dc), da, db, dc) new_compare20(@2(vwx220, @2(vwx2210, vwx2211)), @2(vwx240, @2(vwx2410, vwx2411)), False, dd, app(app(ty_@2, eh), app(app(app(ty_@3, fh), ga), gb))) -> new_ltEs3(vwx2211, vwx2411, fh, ga, gb) new_compare20(@2(vwx220, Right(vwx2210)), @2(vwx240, Right(vwx2410)), False, dd, app(app(ty_Either, he), app(app(ty_Either, baa), bab))) -> new_ltEs1(vwx2210, vwx2410, baa, bab) new_lt2(vwx220, vwx240, cg) -> new_compare22(vwx220, vwx240, new_esEs6(vwx220, vwx240, cg), cg) new_ltEs3(@3(vwx2210, vwx2211, vwx2212), @3(vwx2410, vwx2411, vwx2412), bdc, app(ty_[], bdd), bcb) -> new_lt(vwx2211, vwx2411, bdd) new_compare20(@2(vwx220, Left(vwx2210)), @2(vwx240, Left(vwx2410)), False, dd, app(app(ty_Either, app(app(ty_@2, ge), gf)), gd)) -> new_ltEs0(vwx2210, vwx2410, ge, gf) new_compare20(@2(vwx220, @3(vwx2210, vwx2211, vwx2212)), @2(vwx240, @3(vwx2410, vwx2411, vwx2412)), False, dd, app(app(app(ty_@3, app(ty_Maybe, bcg)), bca), bcb)) -> new_lt2(vwx2210, vwx2410, bcg) new_ltEs3(@3(vwx2210, vwx2211, vwx2212), @3(vwx2410, vwx2411, vwx2412), bdc, bca, app(ty_Maybe, bfb)) -> new_ltEs2(vwx2212, vwx2412, bfb) new_ltEs3(@3(vwx2210, vwx2211, vwx2212), @3(vwx2410, vwx2411, vwx2412), bdc, app(ty_Maybe, bea), bcb) -> new_lt2(vwx2211, vwx2411, bea) new_ltEs2(Just(vwx2210), Just(vwx2410), app(app(ty_@2, bah), bba)) -> new_ltEs0(vwx2210, vwx2410, bah, bba) new_ltEs1(Right(vwx2210), Right(vwx2410), he, app(ty_[], hf)) -> new_ltEs(vwx2210, vwx2410, hf) new_compare20(@2(vwx220, @2(vwx2210, vwx2211)), @2(vwx240, @2(vwx2410, vwx2411)), False, dd, app(app(ty_@2, app(ty_[], df)), dg)) -> new_lt(vwx2210, vwx2410, df) new_ltEs0(@2(vwx2210, vwx2211), @2(vwx2410, vwx2411), eh, app(app(ty_@2, fb), fc)) -> new_ltEs0(vwx2211, vwx2411, fb, fc) new_ltEs1(Left(vwx2210), Left(vwx2410), app(ty_Maybe, ha), gd) -> new_ltEs2(vwx2210, vwx2410, ha) new_ltEs1(Left(vwx2210), Left(vwx2410), app(ty_[], gc), gd) -> new_ltEs(vwx2210, vwx2410, gc) new_compare20(@2(vwx220, @2(vwx2210, vwx2211)), @2(vwx240, @2(vwx2410, vwx2411)), False, dd, app(app(ty_@2, eh), app(ty_[], fa))) -> new_ltEs(vwx2211, vwx2411, fa) new_compare20(@2(vwx220, Just(vwx2210)), @2(vwx240, Just(vwx2410)), False, dd, app(ty_Maybe, app(app(ty_@2, bah), bba))) -> new_ltEs0(vwx2210, vwx2410, bah, bba) new_compare20(@2(vwx220, @3(vwx2210, vwx2211, vwx2212)), @2(vwx240, @3(vwx2410, vwx2411, vwx2412)), False, dd, app(app(app(ty_@3, bdc), bca), app(app(ty_@2, bef), beg))) -> new_ltEs0(vwx2212, vwx2412, bef, beg) new_ltEs1(Right(vwx2210), Right(vwx2410), he, app(app(ty_Either, baa), bab)) -> new_ltEs1(vwx2210, vwx2410, baa, bab) new_compare20(@2(vwx220, Left(vwx2210)), @2(vwx240, Left(vwx2410)), False, dd, app(app(ty_Either, app(app(app(ty_@3, hb), hc), hd)), gd)) -> new_ltEs3(vwx2210, vwx2410, hb, hc, hd) new_ltEs3(@3(vwx2210, vwx2211, vwx2212), @3(vwx2410, vwx2411, vwx2412), bdc, bca, app(app(app(ty_@3, bfc), bfd), bfe)) -> new_ltEs3(vwx2212, vwx2412, bfc, bfd, bfe) new_ltEs2(Just(vwx2210), Just(vwx2410), app(app(app(ty_@3, bbe), bbf), bbg)) -> new_ltEs3(vwx2210, vwx2410, bbe, bbf, bbg) new_ltEs0(@2(vwx2210, vwx2211), @2(vwx2410, vwx2411), app(app(app(ty_@3, ee), ef), eg), dg) -> new_lt3(vwx2210, vwx2410, ee, ef, eg) new_ltEs3(@3(vwx2210, vwx2211, vwx2212), @3(vwx2410, vwx2411, vwx2412), bdc, bca, app(app(ty_@2, bef), beg)) -> new_ltEs0(vwx2212, vwx2412, bef, beg) new_ltEs3(@3(vwx2210, vwx2211, vwx2212), @3(vwx2410, vwx2411, vwx2412), bdc, app(app(ty_@2, bde), bdf), bcb) -> new_lt0(vwx2211, vwx2411, bde, bdf) new_compare20(@2(vwx220, vwx221), @2(vwx240, vwx241), False, app(app(ty_@2, cb), cc), cd) -> new_compare20(vwx220, vwx240, new_esEs4(vwx220, vwx240, cb, cc), cb, cc) new_ltEs3(@3(vwx2210, vwx2211, vwx2212), @3(vwx2410, vwx2411, vwx2412), bdc, bca, app(app(ty_Either, beh), bfa)) -> new_ltEs1(vwx2212, vwx2412, beh, bfa) new_compare20(@2(vwx220, @3(vwx2210, vwx2211, vwx2212)), @2(vwx240, @3(vwx2410, vwx2411, vwx2412)), False, dd, app(app(app(ty_@3, bdc), bca), app(ty_Maybe, bfb))) -> new_ltEs2(vwx2212, vwx2412, bfb) new_compare2(vwx220, vwx240, ce, cf) -> new_compare21(vwx220, vwx240, new_esEs5(vwx220, vwx240, ce, cf), ce, cf) new_ltEs1(Right(vwx2210), Right(vwx2410), he, app(ty_Maybe, bac)) -> new_ltEs2(vwx2210, vwx2410, bac) new_compare20(@2(vwx220, @3(vwx2210, vwx2211, vwx2212)), @2(vwx240, @3(vwx2410, vwx2411, vwx2412)), False, dd, app(app(app(ty_@3, app(app(ty_Either, bce), bcf)), bca), bcb)) -> new_lt1(vwx2210, vwx2410, bce, bcf) new_ltEs0(@2(vwx2210, vwx2211), @2(vwx2410, vwx2411), eh, app(app(ty_Either, fd), ff)) -> new_ltEs1(vwx2211, vwx2411, fd, ff) new_ltEs1(Left(vwx2210), Left(vwx2410), app(app(app(ty_@3, hb), hc), hd), gd) -> new_ltEs3(vwx2210, vwx2410, hb, hc, hd) new_ltEs0(@2(vwx2210, vwx2211), @2(vwx2410, vwx2411), app(app(ty_@2, dh), ea), dg) -> new_lt0(vwx2210, vwx2410, dh, ea) new_compare22(vwx220, vwx240, False, cg) -> new_ltEs2(vwx220, vwx240, cg) new_compare20(@2(vwx220, @2(vwx2210, vwx2211)), @2(vwx240, @2(vwx2410, vwx2411)), False, dd, app(app(ty_@2, eh), app(ty_Maybe, fg))) -> new_ltEs2(vwx2211, vwx2411, fg) new_compare20(@2(vwx220, @2(vwx2210, vwx2211)), @2(vwx240, @2(vwx2410, vwx2411)), False, dd, app(app(ty_@2, eh), app(app(ty_Either, fd), ff))) -> new_ltEs1(vwx2211, vwx2411, fd, ff) new_ltEs0(@2(vwx2210, vwx2211), @2(vwx2410, vwx2411), eh, app(app(app(ty_@3, fh), ga), gb)) -> new_ltEs3(vwx2211, vwx2411, fh, ga, gb) new_compare20(@2(vwx220, Just(vwx2210)), @2(vwx240, Just(vwx2410)), False, dd, app(ty_Maybe, app(app(app(ty_@3, bbe), bbf), bbg))) -> new_ltEs3(vwx2210, vwx2410, bbe, bbf, bbg) new_ltEs3(@3(vwx2210, vwx2211, vwx2212), @3(vwx2410, vwx2411, vwx2412), app(app(app(ty_@3, bch), bda), bdb), bca, bcb) -> new_lt3(vwx2210, vwx2410, bch, bda, bdb) new_compare20(@2(:(vwx2200, vwx2201), vwx221), @2(:(vwx2400, vwx2401), vwx241), False, app(ty_[], h), cd) -> new_primCompAux(vwx2200, vwx2400, new_compare(vwx2201, vwx2401, h), h) new_compare0(:(vwx2200, vwx2201), :(vwx2400, vwx2401), h) -> new_compare0(vwx2201, vwx2401, h) new_compare20(@2(vwx220, Right(vwx2210)), @2(vwx240, Right(vwx2410)), False, dd, app(app(ty_Either, he), app(ty_[], hf))) -> new_ltEs(vwx2210, vwx2410, hf) new_ltEs2(Just(vwx2210), Just(vwx2410), app(ty_[], bag)) -> new_ltEs(vwx2210, vwx2410, bag) new_compare20(@2(vwx220, Just(vwx2210)), @2(vwx240, Just(vwx2410)), False, dd, app(ty_Maybe, app(ty_Maybe, bbd))) -> new_ltEs2(vwx2210, vwx2410, bbd) new_ltEs2(Just(vwx2210), Just(vwx2410), app(ty_Maybe, bbd)) -> new_ltEs2(vwx2210, vwx2410, bbd) new_compare20(@2(vwx220, Left(vwx2210)), @2(vwx240, Left(vwx2410)), False, dd, app(app(ty_Either, app(ty_Maybe, ha)), gd)) -> new_ltEs2(vwx2210, vwx2410, ha) new_compare20(@2(vwx220, vwx221), @2(vwx240, vwx241), False, app(app(ty_Either, ce), cf), cd) -> new_compare21(vwx220, vwx240, new_esEs5(vwx220, vwx240, ce, cf), ce, cf) new_ltEs0(@2(vwx2210, vwx2211), @2(vwx2410, vwx2411), eh, app(ty_Maybe, fg)) -> new_ltEs2(vwx2211, vwx2411, fg) new_compare20(@2(vwx220, @3(vwx2210, vwx2211, vwx2212)), @2(vwx240, @3(vwx2410, vwx2411, vwx2412)), False, dd, app(app(app(ty_@3, bdc), app(ty_Maybe, bea)), bcb)) -> new_lt2(vwx2211, vwx2411, bea) new_compare21(vwx220, vwx240, False, ce, cf) -> new_ltEs1(vwx220, vwx240, ce, cf) new_primCompAux(vwx2200, vwx2400, vwx79, app(ty_Maybe, bf)) -> new_compare3(vwx2200, vwx2400, bf) new_compare20(@2(vwx220, @3(vwx2210, vwx2211, vwx2212)), @2(vwx240, @3(vwx2410, vwx2411, vwx2412)), False, dd, app(app(app(ty_@3, bdc), bca), app(app(app(ty_@3, bfc), bfd), bfe))) -> new_ltEs3(vwx2212, vwx2412, bfc, bfd, bfe) new_ltEs0(@2(vwx2210, vwx2211), @2(vwx2410, vwx2411), app(ty_[], df), dg) -> new_lt(vwx2210, vwx2410, df) new_ltEs3(@3(vwx2210, vwx2211, vwx2212), @3(vwx2410, vwx2411, vwx2412), app(ty_[], bbh), bca, bcb) -> new_lt(vwx2210, vwx2410, bbh) new_compare20(@2(vwx220, @2(vwx2210, vwx2211)), @2(vwx240, @2(vwx2410, vwx2411)), False, dd, app(app(ty_@2, app(app(app(ty_@3, ee), ef), eg)), dg)) -> new_lt3(vwx2210, vwx2410, ee, ef, eg) new_compare20(@2(vwx220, Left(vwx2210)), @2(vwx240, Left(vwx2410)), False, dd, app(app(ty_Either, app(ty_[], gc)), gd)) -> new_ltEs(vwx2210, vwx2410, gc) new_lt0(vwx220, vwx240, cb, cc) -> new_compare20(vwx220, vwx240, new_esEs4(vwx220, vwx240, cb, cc), cb, cc) new_compare20(@2(vwx220, vwx221), @2(vwx240, vwx241), False, app(ty_Maybe, cg), cd) -> new_compare22(vwx220, vwx240, new_esEs6(vwx220, vwx240, cg), cg) new_compare20(@2(vwx220, @3(vwx2210, vwx2211, vwx2212)), @2(vwx240, @3(vwx2410, vwx2411, vwx2412)), False, dd, app(app(app(ty_@3, bdc), bca), app(app(ty_Either, beh), bfa))) -> new_ltEs1(vwx2212, vwx2412, beh, bfa) new_ltEs1(Left(vwx2210), Left(vwx2410), app(app(ty_@2, ge), gf), gd) -> new_ltEs0(vwx2210, vwx2410, ge, gf) new_lt(:(vwx2200, vwx2201), :(vwx2400, vwx2401), h) -> new_compare0(vwx2201, vwx2401, h) new_primCompAux(vwx2200, vwx2400, vwx79, app(app(app(ty_@3, bg), bh), ca)) -> new_compare4(vwx2200, vwx2400, bg, bh, ca) new_ltEs1(Right(vwx2210), Right(vwx2410), he, app(app(ty_@2, hg), hh)) -> new_ltEs0(vwx2210, vwx2410, hg, hh) new_ltEs3(@3(vwx2210, vwx2211, vwx2212), @3(vwx2410, vwx2411, vwx2412), app(ty_Maybe, bcg), bca, bcb) -> new_lt2(vwx2210, vwx2410, bcg) new_lt(:(vwx2200, vwx2201), :(vwx2400, vwx2401), h) -> new_primCompAux(vwx2200, vwx2400, new_compare(vwx2201, vwx2401, h), h) new_compare20(@2(vwx220, @2(vwx2210, vwx2211)), @2(vwx240, @2(vwx2410, vwx2411)), False, dd, app(app(ty_@2, app(app(ty_Either, eb), ec)), dg)) -> new_lt1(vwx2210, vwx2410, eb, ec) new_ltEs2(Just(vwx2210), Just(vwx2410), app(app(ty_Either, bbb), bbc)) -> new_ltEs1(vwx2210, vwx2410, bbb, bbc) new_primCompAux(vwx2200, vwx2400, vwx79, app(app(ty_Either, bd), be)) -> new_compare2(vwx2200, vwx2400, bd, be) new_compare20(@2(vwx220, @2(vwx2210, vwx2211)), @2(vwx240, @2(vwx2410, vwx2411)), False, dd, app(app(ty_@2, app(ty_Maybe, ed)), dg)) -> new_lt2(vwx2210, vwx2410, ed) new_compare3(vwx220, vwx240, cg) -> new_compare22(vwx220, vwx240, new_esEs6(vwx220, vwx240, cg), cg) new_compare20(@2(vwx220, Right(vwx2210)), @2(vwx240, Right(vwx2410)), False, dd, app(app(ty_Either, he), app(ty_Maybe, bac))) -> new_ltEs2(vwx2210, vwx2410, bac) new_ltEs3(@3(vwx2210, vwx2211, vwx2212), @3(vwx2410, vwx2411, vwx2412), app(app(ty_Either, bce), bcf), bca, bcb) -> new_lt1(vwx2210, vwx2410, bce, bcf) new_compare20(@2(vwx220, @3(vwx2210, vwx2211, vwx2212)), @2(vwx240, @3(vwx2410, vwx2411, vwx2412)), False, dd, app(app(app(ty_@3, app(ty_[], bbh)), bca), bcb)) -> new_lt(vwx2210, vwx2410, bbh) new_compare4(vwx220, vwx240, da, db, dc) -> new_compare23(vwx220, vwx240, new_esEs7(vwx220, vwx240, da, db, dc), da, db, dc) new_compare20(@2(vwx220, Just(vwx2210)), @2(vwx240, Just(vwx2410)), False, dd, app(ty_Maybe, app(ty_[], bag))) -> new_ltEs(vwx2210, vwx2410, bag) new_compare20(@2(vwx220, vwx221), @2(vwx240, vwx241), False, dd, app(ty_[], de)) -> new_compare0(vwx221, vwx241, de) new_lt3(vwx220, vwx240, da, db, dc) -> new_compare23(vwx220, vwx240, new_esEs7(vwx220, vwx240, da, db, dc), da, db, dc) new_compare20(@2(vwx220, Right(vwx2210)), @2(vwx240, Right(vwx2410)), False, dd, app(app(ty_Either, he), app(app(ty_@2, hg), hh))) -> new_ltEs0(vwx2210, vwx2410, hg, hh) new_compare0(:(vwx2200, vwx2201), :(vwx2400, vwx2401), h) -> new_primCompAux(vwx2200, vwx2400, new_compare(vwx2201, vwx2401, h), h) new_compare20(@2(vwx220, @3(vwx2210, vwx2211, vwx2212)), @2(vwx240, @3(vwx2410, vwx2411, vwx2412)), False, dd, app(app(app(ty_@3, bdc), bca), app(ty_[], bee))) -> new_ltEs(vwx2212, vwx2412, bee) new_ltEs0(@2(vwx2210, vwx2211), @2(vwx2410, vwx2411), eh, app(ty_[], fa)) -> new_ltEs(vwx2211, vwx2411, fa) new_ltEs1(Left(vwx2210), Left(vwx2410), app(app(ty_Either, gg), gh), gd) -> new_ltEs1(vwx2210, vwx2410, gg, gh) new_ltEs(vwx221, vwx241, de) -> new_compare0(vwx221, vwx241, de) new_compare20(@2(vwx220, @3(vwx2210, vwx2211, vwx2212)), @2(vwx240, @3(vwx2410, vwx2411, vwx2412)), False, dd, app(app(app(ty_@3, bdc), app(app(ty_Either, bdg), bdh)), bcb)) -> new_lt1(vwx2211, vwx2411, bdg, bdh) new_compare20(@2(vwx220, Right(vwx2210)), @2(vwx240, Right(vwx2410)), False, dd, app(app(ty_Either, he), app(app(app(ty_@3, bad), bae), baf))) -> new_ltEs3(vwx2210, vwx2410, bad, bae, baf) new_ltEs3(@3(vwx2210, vwx2211, vwx2212), @3(vwx2410, vwx2411, vwx2412), bdc, bca, app(ty_[], bee)) -> new_ltEs(vwx2212, vwx2412, bee) new_compare20(@2(vwx220, Left(vwx2210)), @2(vwx240, Left(vwx2410)), False, dd, app(app(ty_Either, app(app(ty_Either, gg), gh)), gd)) -> new_ltEs1(vwx2210, vwx2410, gg, gh) new_ltEs0(@2(vwx2210, vwx2211), @2(vwx2410, vwx2411), app(app(ty_Either, eb), ec), dg) -> new_lt1(vwx2210, vwx2410, eb, ec) new_compare1(vwx220, vwx240, cb, cc) -> new_compare20(vwx220, vwx240, new_esEs4(vwx220, vwx240, cb, cc), cb, cc) new_ltEs3(@3(vwx2210, vwx2211, vwx2212), @3(vwx2410, vwx2411, vwx2412), bdc, app(app(ty_Either, bdg), bdh), bcb) -> new_lt1(vwx2211, vwx2411, bdg, bdh) new_ltEs0(@2(vwx2210, vwx2211), @2(vwx2410, vwx2411), app(ty_Maybe, ed), dg) -> new_lt2(vwx2210, vwx2410, ed) new_lt1(vwx220, vwx240, ce, cf) -> new_compare21(vwx220, vwx240, new_esEs5(vwx220, vwx240, ce, cf), ce, cf) new_compare20(@2(vwx220, Just(vwx2210)), @2(vwx240, Just(vwx2410)), False, dd, app(ty_Maybe, app(app(ty_Either, bbb), bbc))) -> new_ltEs1(vwx2210, vwx2410, bbb, bbc) new_primCompAux(vwx2200, vwx2400, vwx79, app(app(ty_@2, bb), bc)) -> new_compare1(vwx2200, vwx2400, bb, bc) new_ltEs1(Right(vwx2210), Right(vwx2410), he, app(app(app(ty_@3, bad), bae), baf)) -> new_ltEs3(vwx2210, vwx2410, bad, bae, baf) new_compare20(@2(vwx220, @3(vwx2210, vwx2211, vwx2212)), @2(vwx240, @3(vwx2410, vwx2411, vwx2412)), False, dd, app(app(app(ty_@3, app(app(ty_@2, bcc), bcd)), bca), bcb)) -> new_lt0(vwx2210, vwx2410, bcc, bcd) new_compare20(@2(vwx220, @3(vwx2210, vwx2211, vwx2212)), @2(vwx240, @3(vwx2410, vwx2411, vwx2412)), False, dd, app(app(app(ty_@3, bdc), app(ty_[], bdd)), bcb)) -> new_lt(vwx2211, vwx2411, bdd) new_compare20(@2(vwx220, @3(vwx2210, vwx2211, vwx2212)), @2(vwx240, @3(vwx2410, vwx2411, vwx2412)), False, dd, app(app(app(ty_@3, bdc), app(app(ty_@2, bde), bdf)), bcb)) -> new_lt0(vwx2211, vwx2411, bde, bdf) new_compare20(@2(:(vwx2200, vwx2201), vwx221), @2(:(vwx2400, vwx2401), vwx241), False, app(ty_[], h), cd) -> new_compare0(vwx2201, vwx2401, h) new_compare20(@2(vwx220, @2(vwx2210, vwx2211)), @2(vwx240, @2(vwx2410, vwx2411)), False, dd, app(app(ty_@2, app(app(ty_@2, dh), ea)), dg)) -> new_lt0(vwx2210, vwx2410, dh, ea) new_compare23(vwx220, vwx240, False, da, db, dc) -> new_ltEs3(vwx220, vwx240, da, db, dc) new_ltEs3(@3(vwx2210, vwx2211, vwx2212), @3(vwx2410, vwx2411, vwx2412), bdc, app(app(app(ty_@3, beb), bec), bed), bcb) -> new_lt3(vwx2211, vwx2411, beb, bec, bed) The TRS R consists of the following rules: new_ltEs7(vwx2212, vwx2412, app(ty_[], bee)) -> new_ltEs11(vwx2212, vwx2412, bee) new_ltEs20(vwx2211, vwx2411, app(ty_[], fa)) -> new_ltEs11(vwx2211, vwx2411, fa) new_esEs22(vwx302, vwx402, ty_@0) -> new_esEs15(vwx302, vwx402) new_lt9(vwx2211, vwx2411, ty_Bool) -> new_lt7(vwx2211, vwx2411) new_ltEs7(vwx2212, vwx2412, ty_Ordering) -> new_ltEs15(vwx2212, vwx2412) new_primCmpInt(Neg(Succ(vwx22000)), Pos(vwx2400)) -> LT new_lt8(vwx2210, vwx2410, app(ty_Ratio, bhc)) -> new_lt11(vwx2210, vwx2410, bhc) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_esEs27(vwx301, vwx401, ty_Int) -> new_esEs9(vwx301, vwx401) new_primPlusNat0(Zero, Zero) -> Zero new_compare17(Double(vwx2200, Pos(vwx22010)), Double(vwx2400, Pos(vwx24010))) -> new_compare7(new_sr(vwx2200, Pos(vwx24010)), new_sr(Pos(vwx22010), vwx2400)) new_esEs23(vwx220, vwx240, app(ty_[], h)) -> new_esEs17(vwx220, vwx240, h) new_lt8(vwx2210, vwx2410, ty_Char) -> new_lt14(vwx2210, vwx2410) new_pePe(True, vwx84) -> True new_esEs23(vwx220, vwx240, app(ty_Maybe, cg)) -> new_esEs6(vwx220, vwx240, cg) new_esEs5(Left(vwx300), Left(vwx400), ty_Ordering, ceg) -> new_esEs8(vwx300, vwx400) new_esEs5(Left(vwx300), Left(vwx400), ty_Float, ceg) -> new_esEs13(vwx300, vwx400) new_esEs27(vwx301, vwx401, ty_Char) -> new_esEs16(vwx301, vwx401) new_ltEs20(vwx2211, vwx2411, ty_Ordering) -> new_ltEs15(vwx2211, vwx2411) new_esEs21(vwx301, vwx401, app(app(app(ty_@3, cca), ccb), ccc)) -> new_esEs7(vwx301, vwx401, cca, ccb, ccc) new_lt14(vwx220, vwx240) -> new_esEs8(new_compare28(vwx220, vwx240), LT) new_compare16(vwx2200, vwx2400, app(app(ty_@2, bb), bc)) -> new_compare6(vwx2200, vwx2400, bb, bc) new_ltEs4(Right(vwx2210), Right(vwx2410), he, ty_Integer) -> new_ltEs13(vwx2210, vwx2410) new_compare(:(vwx2200, vwx2201), [], h) -> GT new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_ltEs20(vwx2211, vwx2411, app(app(app(ty_@3, fh), ga), gb)) -> new_ltEs5(vwx2211, vwx2411, fh, ga, gb) new_esEs27(vwx301, vwx401, app(app(ty_Either, dbd), dbe)) -> new_esEs5(vwx301, vwx401, dbd, dbe) new_compare110(vwx220, vwx240, False, cg) -> GT new_primCmpInt(Pos(Zero), Neg(Succ(vwx24000))) -> GT new_ltEs16(Nothing, Nothing, cdh) -> True new_compare(:(vwx2200, vwx2201), :(vwx2400, vwx2401), h) -> new_primCompAux0(vwx2200, vwx2400, new_compare(vwx2201, vwx2401, h), h) new_esEs9(vwx30, vwx40) -> new_primEqInt(vwx30, vwx40) new_ltEs4(Left(vwx2210), Left(vwx2410), app(app(ty_@2, ge), gf), gd) -> new_ltEs12(vwx2210, vwx2410, ge, gf) new_ltEs8(vwx221, vwx241) -> new_fsEs(new_compare5(vwx221, vwx241)) new_ltEs16(Just(vwx2210), Nothing, cdh) -> False new_ltEs19(vwx221, vwx241, app(app(ty_@2, eh), dg)) -> new_ltEs12(vwx221, vwx241, eh, dg) new_primCmpInt(Neg(Succ(vwx22000)), Neg(vwx2400)) -> new_primCmpNat0(vwx2400, Succ(vwx22000)) new_esEs28(vwx2210, vwx2410, ty_Bool) -> new_esEs12(vwx2210, vwx2410) new_esEs18(vwx2210, vwx2410, ty_Float) -> new_esEs13(vwx2210, vwx2410) new_compare211(vwx220, vwx240, True, cg) -> EQ new_esEs6(Just(vwx300), Just(vwx400), ty_Int) -> new_esEs9(vwx300, vwx400) new_ltEs16(Just(vwx2210), Just(vwx2410), ty_Char) -> new_ltEs14(vwx2210, vwx2410) new_primMulNat0(Succ(vwx30000), Succ(vwx40100)) -> new_primPlusNat1(new_primMulNat0(vwx30000, Succ(vwx40100)), vwx40100) new_esEs18(vwx2210, vwx2410, ty_Bool) -> new_esEs12(vwx2210, vwx2410) new_ltEs19(vwx221, vwx241, app(ty_Maybe, cdh)) -> new_ltEs16(vwx221, vwx241, cdh) new_esEs6(Just(vwx300), Just(vwx400), app(app(ty_Either, bgb), bgc)) -> new_esEs5(vwx300, vwx400, bgb, bgc) new_ltEs20(vwx2211, vwx2411, ty_@0) -> new_ltEs18(vwx2211, vwx2411) new_esEs18(vwx2210, vwx2410, app(app(ty_@2, bcc), bcd)) -> new_esEs4(vwx2210, vwx2410, bcc, bcd) new_ltEs15(EQ, LT) -> False new_compare24(@2(vwx220, vwx221), @2(vwx240, vwx241), False, dd, cd) -> new_compare12(vwx220, vwx221, vwx240, vwx241, new_lt20(vwx220, vwx240, dd), new_asAs(new_esEs23(vwx220, vwx240, dd), new_ltEs19(vwx221, vwx241, cd)), dd, cd) new_esEs18(vwx2210, vwx2410, ty_Ordering) -> new_esEs8(vwx2210, vwx2410) new_lt15(vwx220, vwx240, ce, cf) -> new_esEs8(new_compare9(vwx220, vwx240, ce, cf), LT) new_esEs23(vwx220, vwx240, app(app(ty_Either, ce), cf)) -> new_esEs5(vwx220, vwx240, ce, cf) new_ltEs19(vwx221, vwx241, ty_Ordering) -> new_ltEs15(vwx221, vwx241) new_lt9(vwx2211, vwx2411, app(ty_[], bdd)) -> new_lt6(vwx2211, vwx2411, bdd) new_compare26(vwx220, vwx240, True) -> EQ new_esEs5(Left(vwx300), Left(vwx400), ty_Integer, ceg) -> new_esEs11(vwx300, vwx400) new_esEs8(GT, GT) -> True new_primEqInt(Pos(Succ(vwx3000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(vwx4000))) -> False new_ltEs19(vwx221, vwx241, app(ty_[], de)) -> new_ltEs11(vwx221, vwx241, de) new_ltEs15(GT, LT) -> False new_esEs24(vwx300, vwx400, ty_Integer) -> new_esEs11(vwx300, vwx400) new_compare25(vwx220, vwx240, False, ce, cf) -> new_compare11(vwx220, vwx240, new_ltEs4(vwx220, vwx240, ce, cf), ce, cf) new_fsEs(vwx71) -> new_not(new_esEs8(vwx71, GT)) new_esEs27(vwx301, vwx401, app(ty_[], dcb)) -> new_esEs17(vwx301, vwx401, dcb) new_esEs28(vwx2210, vwx2410, app(ty_Ratio, dcc)) -> new_esEs14(vwx2210, vwx2410, dcc) new_esEs8(EQ, EQ) -> True new_compare16(vwx2200, vwx2400, app(ty_Ratio, bhf)) -> new_compare18(vwx2200, vwx2400, bhf) new_esEs5(Left(vwx300), Left(vwx400), app(ty_Maybe, cfh), ceg) -> new_esEs6(vwx300, vwx400, cfh) new_primEqNat0(Succ(vwx3000), Succ(vwx4000)) -> new_primEqNat0(vwx3000, vwx4000) new_esEs23(vwx220, vwx240, app(ty_Ratio, ced)) -> new_esEs14(vwx220, vwx240, ced) new_ltEs20(vwx2211, vwx2411, ty_Bool) -> new_ltEs6(vwx2211, vwx2411) new_esEs29(vwx300, vwx400, ty_Float) -> new_esEs13(vwx300, vwx400) new_esEs5(Right(vwx300), Right(vwx400), cgb, app(app(ty_@2, cgc), cgd)) -> new_esEs4(vwx300, vwx400, cgc, cgd) new_esEs18(vwx2210, vwx2410, ty_Double) -> new_esEs10(vwx2210, vwx2410) new_esEs29(vwx300, vwx400, ty_Integer) -> new_esEs11(vwx300, vwx400) new_esEs6(Just(vwx300), Just(vwx400), app(ty_Ratio, bga)) -> new_esEs14(vwx300, vwx400, bga) new_esEs5(Left(vwx300), Left(vwx400), ty_Double, ceg) -> new_esEs10(vwx300, vwx400) new_not(True) -> False new_ltEs19(vwx221, vwx241, app(app(app(ty_@3, bdc), bca), bcb)) -> new_ltEs5(vwx221, vwx241, bdc, bca, bcb) new_ltEs19(vwx221, vwx241, ty_@0) -> new_ltEs18(vwx221, vwx241) new_esEs28(vwx2210, vwx2410, ty_Double) -> new_esEs10(vwx2210, vwx2410) new_ltEs7(vwx2212, vwx2412, app(app(ty_@2, bef), beg)) -> new_ltEs12(vwx2212, vwx2412, bef, beg) new_primCompAux00(vwx88, LT) -> LT new_primCmpNat0(Zero, Zero) -> EQ new_ltEs19(vwx221, vwx241, ty_Bool) -> new_ltEs6(vwx221, vwx241) new_esEs28(vwx2210, vwx2410, ty_Float) -> new_esEs13(vwx2210, vwx2410) new_esEs5(Left(vwx300), Left(vwx400), app(ty_Ratio, cfb), ceg) -> new_esEs14(vwx300, vwx400, cfb) new_esEs5(Right(vwx300), Right(vwx400), cgb, app(ty_Ratio, cge)) -> new_esEs14(vwx300, vwx400, cge) new_ltEs4(Left(vwx2210), Left(vwx2410), ty_Int, gd) -> new_ltEs17(vwx2210, vwx2410) new_esEs27(vwx301, vwx401, ty_@0) -> new_esEs15(vwx301, vwx401) new_ltEs4(Left(vwx2210), Left(vwx2410), app(app(app(ty_@3, hb), hc), hd), gd) -> new_ltEs5(vwx2210, vwx2410, hb, hc, hd) new_ltEs4(Left(vwx2210), Left(vwx2410), ty_Double, gd) -> new_ltEs9(vwx2210, vwx2410) new_esEs23(vwx220, vwx240, ty_Bool) -> new_esEs12(vwx220, vwx240) new_compare14(vwx220, vwx240, True, da, db, dc) -> LT new_ltEs19(vwx221, vwx241, ty_Float) -> new_ltEs8(vwx221, vwx241) new_lt21(vwx2210, vwx2410, ty_Char) -> new_lt14(vwx2210, vwx2410) new_compare16(vwx2200, vwx2400, ty_Int) -> new_compare7(vwx2200, vwx2400) new_lt20(vwx220, vwx240, ty_Ordering) -> new_lt16(vwx220, vwx240) new_esEs19(vwx2211, vwx2411, ty_Ordering) -> new_esEs8(vwx2211, vwx2411) new_lt8(vwx2210, vwx2410, app(ty_Maybe, bcg)) -> new_lt17(vwx2210, vwx2410, bcg) new_lt8(vwx2210, vwx2410, ty_Int) -> new_lt5(vwx2210, vwx2410) new_esEs19(vwx2211, vwx2411, app(app(ty_@2, bde), bdf)) -> new_esEs4(vwx2211, vwx2411, bde, bdf) new_ltEs16(Just(vwx2210), Just(vwx2410), ty_Integer) -> new_ltEs13(vwx2210, vwx2410) new_esEs29(vwx300, vwx400, ty_Double) -> new_esEs10(vwx300, vwx400) new_primEqNat0(Succ(vwx3000), Zero) -> False new_primEqNat0(Zero, Succ(vwx4000)) -> False new_esEs19(vwx2211, vwx2411, app(app(app(ty_@3, beb), bec), bed)) -> new_esEs7(vwx2211, vwx2411, beb, bec, bed) new_esEs26(vwx300, vwx400, ty_@0) -> new_esEs15(vwx300, vwx400) new_esEs23(vwx220, vwx240, ty_Int) -> new_esEs9(vwx220, vwx240) new_compare210(vwx220, vwx240, False) -> new_compare10(vwx220, vwx240, new_ltEs15(vwx220, vwx240)) new_ltEs15(GT, EQ) -> False new_lt20(vwx220, vwx240, app(app(ty_@2, cb), cc)) -> new_lt12(vwx220, vwx240, cb, cc) new_primCompAux00(vwx88, GT) -> GT new_esEs14(:%(vwx300, vwx301), :%(vwx400, vwx401), cef) -> new_asAs(new_esEs24(vwx300, vwx400, cef), new_esEs25(vwx301, vwx401, cef)) new_esEs20(vwx300, vwx400, ty_Ordering) -> new_esEs8(vwx300, vwx400) new_compare16(vwx2200, vwx2400, app(app(ty_Either, bd), be)) -> new_compare9(vwx2200, vwx2400, bd, be) new_ltEs6(True, True) -> True new_esEs18(vwx2210, vwx2410, app(ty_Ratio, bhc)) -> new_esEs14(vwx2210, vwx2410, bhc) new_lt20(vwx220, vwx240, ty_Integer) -> new_lt13(vwx220, vwx240) new_lt20(vwx220, vwx240, ty_@0) -> new_lt19(vwx220, vwx240) new_compare12(vwx65, vwx66, vwx67, vwx68, True, vwx70, bha, bhb) -> new_compare13(vwx65, vwx66, vwx67, vwx68, True, bha, bhb) new_primCmpInt(Pos(Succ(vwx22000)), Neg(vwx2400)) -> GT new_ltEs7(vwx2212, vwx2412, ty_@0) -> new_ltEs18(vwx2212, vwx2412) new_esEs20(vwx300, vwx400, app(app(ty_@2, cab), cac)) -> new_esEs4(vwx300, vwx400, cab, cac) new_esEs28(vwx2210, vwx2410, ty_Integer) -> new_esEs11(vwx2210, vwx2410) new_lt9(vwx2211, vwx2411, ty_Int) -> new_lt5(vwx2211, vwx2411) new_compare16(vwx2200, vwx2400, app(ty_Maybe, bf)) -> new_compare30(vwx2200, vwx2400, bf) new_lt20(vwx220, vwx240, ty_Float) -> new_lt4(vwx220, vwx240) new_lt8(vwx2210, vwx2410, ty_Bool) -> new_lt7(vwx2210, vwx2410) new_ltEs4(Right(vwx2210), Right(vwx2410), he, app(ty_Ratio, cec)) -> new_ltEs10(vwx2210, vwx2410, cec) new_ltEs4(Left(vwx2210), Left(vwx2410), ty_Bool, gd) -> new_ltEs6(vwx2210, vwx2410) new_esEs21(vwx301, vwx401, ty_@0) -> new_esEs15(vwx301, vwx401) new_esEs26(vwx300, vwx400, ty_Char) -> new_esEs16(vwx300, vwx400) new_primCmpNat0(Zero, Succ(vwx24000)) -> LT new_lt7(vwx220, vwx240) -> new_esEs8(new_compare8(vwx220, vwx240), LT) new_esEs26(vwx300, vwx400, app(app(app(ty_@3, dad), dae), daf)) -> new_esEs7(vwx300, vwx400, dad, dae, daf) new_lt20(vwx220, vwx240, ty_Char) -> new_lt14(vwx220, vwx240) new_ltEs4(Right(vwx2210), Right(vwx2410), he, ty_Float) -> new_ltEs8(vwx2210, vwx2410) new_compare210(vwx220, vwx240, True) -> EQ new_lt13(vwx220, vwx240) -> new_esEs8(new_compare19(vwx220, vwx240), LT) new_compare18(:%(vwx2200, vwx2201), :%(vwx2400, vwx2401), ty_Integer) -> new_compare19(new_sr0(vwx2200, vwx2401), new_sr0(vwx2400, vwx2201)) new_primCmpNat0(Succ(vwx22000), Zero) -> GT new_compare13(vwx65, vwx66, vwx67, vwx68, False, bha, bhb) -> GT new_pePe(False, vwx84) -> vwx84 new_ltEs4(Left(vwx2210), Left(vwx2410), app(ty_Ratio, ceb), gd) -> new_ltEs10(vwx2210, vwx2410, ceb) new_compare16(vwx2200, vwx2400, ty_Integer) -> new_compare19(vwx2200, vwx2400) new_lt20(vwx220, vwx240, ty_Double) -> new_lt10(vwx220, vwx240) new_esEs22(vwx302, vwx402, app(ty_Ratio, cch)) -> new_esEs14(vwx302, vwx402, cch) new_ltEs18(vwx221, vwx241) -> new_fsEs(new_compare32(vwx221, vwx241)) new_esEs12(False, False) -> True new_ltEs20(vwx2211, vwx2411, ty_Double) -> new_ltEs9(vwx2211, vwx2411) new_compare25(vwx220, vwx240, True, ce, cf) -> EQ new_esEs27(vwx301, vwx401, ty_Bool) -> new_esEs12(vwx301, vwx401) new_compare211(vwx220, vwx240, False, cg) -> new_compare110(vwx220, vwx240, new_ltEs16(vwx220, vwx240, cg), cg) new_esEs23(vwx220, vwx240, ty_Double) -> new_esEs10(vwx220, vwx240) new_ltEs7(vwx2212, vwx2412, app(ty_Ratio, bhe)) -> new_ltEs10(vwx2212, vwx2412, bhe) new_esEs17([], [], dce) -> True new_esEs8(LT, EQ) -> False new_esEs8(EQ, LT) -> False new_compare11(vwx220, vwx240, False, ce, cf) -> GT new_esEs22(vwx302, vwx402, app(ty_Maybe, cdf)) -> new_esEs6(vwx302, vwx402, cdf) new_esEs5(Left(vwx300), Left(vwx400), app(app(ty_@2, ceh), cfa), ceg) -> new_esEs4(vwx300, vwx400, ceh, cfa) new_esEs21(vwx301, vwx401, app(app(ty_@2, cbd), cbe)) -> new_esEs4(vwx301, vwx401, cbd, cbe) new_esEs28(vwx2210, vwx2410, ty_Char) -> new_esEs16(vwx2210, vwx2410) new_ltEs20(vwx2211, vwx2411, ty_Float) -> new_ltEs8(vwx2211, vwx2411) new_primEqInt(Pos(Zero), Neg(Succ(vwx4000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(vwx4000))) -> False new_lt8(vwx2210, vwx2410, app(ty_[], bbh)) -> new_lt6(vwx2210, vwx2410, bbh) new_esEs21(vwx301, vwx401, ty_Ordering) -> new_esEs8(vwx301, vwx401) new_ltEs7(vwx2212, vwx2412, ty_Double) -> new_ltEs9(vwx2212, vwx2412) new_esEs23(vwx220, vwx240, ty_Integer) -> new_esEs11(vwx220, vwx240) new_ltEs20(vwx2211, vwx2411, app(ty_Ratio, dcd)) -> new_ltEs10(vwx2211, vwx2411, dcd) new_esEs5(Right(vwx300), Right(vwx400), cgb, ty_Int) -> new_esEs9(vwx300, vwx400) new_esEs20(vwx300, vwx400, app(ty_Ratio, cad)) -> new_esEs14(vwx300, vwx400, cad) new_esEs6(Just(vwx300), Just(vwx400), ty_Bool) -> new_esEs12(vwx300, vwx400) new_esEs21(vwx301, vwx401, ty_Float) -> new_esEs13(vwx301, vwx401) new_esEs18(vwx2210, vwx2410, ty_Char) -> new_esEs16(vwx2210, vwx2410) new_ltEs6(False, False) -> True new_compare17(Double(vwx2200, Neg(vwx22010)), Double(vwx2400, Neg(vwx24010))) -> new_compare7(new_sr(vwx2200, Neg(vwx24010)), new_sr(Neg(vwx22010), vwx2400)) new_lt9(vwx2211, vwx2411, app(app(app(ty_@3, beb), bec), bed)) -> new_lt18(vwx2211, vwx2411, beb, bec, bed) new_primEqInt(Neg(Succ(vwx3000)), Neg(Succ(vwx4000))) -> new_primEqNat0(vwx3000, vwx4000) new_esEs18(vwx2210, vwx2410, app(ty_[], bbh)) -> new_esEs17(vwx2210, vwx2410, bbh) new_primCmpInt(Neg(Zero), Pos(Succ(vwx24000))) -> LT new_ltEs7(vwx2212, vwx2412, ty_Float) -> new_ltEs8(vwx2212, vwx2412) new_ltEs19(vwx221, vwx241, ty_Char) -> new_ltEs14(vwx221, vwx241) new_lt9(vwx2211, vwx2411, ty_Integer) -> new_lt13(vwx2211, vwx2411) new_primMulInt(Pos(vwx3000), Pos(vwx4010)) -> Pos(new_primMulNat0(vwx3000, vwx4010)) new_ltEs19(vwx221, vwx241, app(ty_Ratio, cee)) -> new_ltEs10(vwx221, vwx241, cee) new_lt9(vwx2211, vwx2411, app(ty_Ratio, bhd)) -> new_lt11(vwx2211, vwx2411, bhd) new_lt9(vwx2211, vwx2411, ty_Char) -> new_lt14(vwx2211, vwx2411) new_esEs22(vwx302, vwx402, app(app(app(ty_@3, cdc), cdd), cde)) -> new_esEs7(vwx302, vwx402, cdc, cdd, cde) new_compare15(vwx220, vwx240, True) -> LT new_primMulNat0(Succ(vwx30000), Zero) -> Zero new_primMulNat0(Zero, Succ(vwx40100)) -> Zero new_lt20(vwx220, vwx240, ty_Int) -> new_lt5(vwx220, vwx240) new_lt21(vwx2210, vwx2410, ty_Integer) -> new_lt13(vwx2210, vwx2410) new_ltEs16(Just(vwx2210), Just(vwx2410), ty_Float) -> new_ltEs8(vwx2210, vwx2410) new_ltEs16(Just(vwx2210), Just(vwx2410), app(app(ty_@2, bah), bba)) -> new_ltEs12(vwx2210, vwx2410, bah, bba) new_ltEs19(vwx221, vwx241, ty_Integer) -> new_ltEs13(vwx221, vwx241) new_esEs28(vwx2210, vwx2410, ty_@0) -> new_esEs15(vwx2210, vwx2410) new_primPlusNat1(Succ(vwx560), vwx40100) -> Succ(Succ(new_primPlusNat0(vwx560, vwx40100))) new_esEs5(Right(vwx300), Right(vwx400), cgb, ty_Char) -> new_esEs16(vwx300, vwx400) new_ltEs17(vwx221, vwx241) -> new_fsEs(new_compare7(vwx221, vwx241)) new_esEs26(vwx300, vwx400, ty_Integer) -> new_esEs11(vwx300, vwx400) new_ltEs7(vwx2212, vwx2412, app(ty_Maybe, bfb)) -> new_ltEs16(vwx2212, vwx2412, bfb) new_esEs5(Left(vwx300), Left(vwx400), app(app(ty_Either, cfc), cfd), ceg) -> new_esEs5(vwx300, vwx400, cfc, cfd) new_compare27(vwx220, vwx240, True, da, db, dc) -> EQ new_primPlusNat0(Succ(vwx5600), Zero) -> Succ(vwx5600) new_primPlusNat0(Zero, Succ(vwx401000)) -> Succ(vwx401000) new_lt9(vwx2211, vwx2411, app(ty_Maybe, bea)) -> new_lt17(vwx2211, vwx2411, bea) new_esEs28(vwx2210, vwx2410, app(ty_[], df)) -> new_esEs17(vwx2210, vwx2410, df) new_esEs5(Right(vwx300), Right(vwx400), cgb, app(ty_Maybe, chc)) -> new_esEs6(vwx300, vwx400, chc) new_compare16(vwx2200, vwx2400, ty_@0) -> new_compare32(vwx2200, vwx2400) new_esEs5(Left(vwx300), Left(vwx400), ty_Bool, ceg) -> new_esEs12(vwx300, vwx400) new_esEs5(Right(vwx300), Right(vwx400), cgb, app(app(app(ty_@3, cgh), cha), chb)) -> new_esEs7(vwx300, vwx400, cgh, cha, chb) new_ltEs20(vwx2211, vwx2411, app(app(ty_@2, fb), fc)) -> new_ltEs12(vwx2211, vwx2411, fb, fc) new_esEs21(vwx301, vwx401, app(app(ty_Either, cbg), cbh)) -> new_esEs5(vwx301, vwx401, cbg, cbh) new_esEs22(vwx302, vwx402, ty_Int) -> new_esEs9(vwx302, vwx402) new_primPlusNat1(Zero, vwx40100) -> Succ(vwx40100) new_ltEs6(True, False) -> False new_lt17(vwx220, vwx240, cg) -> new_esEs8(new_compare30(vwx220, vwx240, cg), LT) new_compare7(vwx220, vwx240) -> new_primCmpInt(vwx220, vwx240) new_esEs19(vwx2211, vwx2411, ty_@0) -> new_esEs15(vwx2211, vwx2411) new_esEs8(LT, LT) -> True new_lt8(vwx2210, vwx2410, app(app(ty_Either, bce), bcf)) -> new_lt15(vwx2210, vwx2410, bce, bcf) new_compare19(Integer(vwx2200), Integer(vwx2400)) -> new_primCmpInt(vwx2200, vwx2400) new_esEs6(Just(vwx300), Just(vwx400), app(app(app(ty_@3, bgd), bge), bgf)) -> new_esEs7(vwx300, vwx400, bgd, bge, bgf) new_compare16(vwx2200, vwx2400, ty_Char) -> new_compare28(vwx2200, vwx2400) new_ltEs20(vwx2211, vwx2411, app(ty_Maybe, fg)) -> new_ltEs16(vwx2211, vwx2411, fg) new_esEs20(vwx300, vwx400, ty_Float) -> new_esEs13(vwx300, vwx400) new_esEs29(vwx300, vwx400, app(ty_[], ddg)) -> new_esEs17(vwx300, vwx400, ddg) new_ltEs19(vwx221, vwx241, ty_Double) -> new_ltEs9(vwx221, vwx241) new_esEs5(Left(vwx300), Left(vwx400), app(ty_[], cga), ceg) -> new_esEs17(vwx300, vwx400, cga) new_ltEs4(Right(vwx2210), Right(vwx2410), he, ty_Ordering) -> new_ltEs15(vwx2210, vwx2410) new_compare5(Float(vwx2200, Pos(vwx22010)), Float(vwx2400, Neg(vwx24010))) -> new_compare7(new_sr(vwx2200, Pos(vwx24010)), new_sr(Neg(vwx22010), vwx2400)) new_compare5(Float(vwx2200, Neg(vwx22010)), Float(vwx2400, Pos(vwx24010))) -> new_compare7(new_sr(vwx2200, Neg(vwx24010)), new_sr(Pos(vwx22010), vwx2400)) new_ltEs4(Right(vwx2210), Right(vwx2410), he, ty_Char) -> new_ltEs14(vwx2210, vwx2410) new_ltEs4(Left(vwx2210), Left(vwx2410), ty_@0, gd) -> new_ltEs18(vwx2210, vwx2410) new_lt8(vwx2210, vwx2410, ty_Integer) -> new_lt13(vwx2210, vwx2410) new_esEs5(Right(vwx300), Right(vwx400), cgb, ty_@0) -> new_esEs15(vwx300, vwx400) new_esEs26(vwx300, vwx400, ty_Double) -> new_esEs10(vwx300, vwx400) new_esEs6(Just(vwx300), Just(vwx400), ty_Ordering) -> new_esEs8(vwx300, vwx400) new_esEs6(Just(vwx300), Just(vwx400), app(app(ty_@2, bfg), bfh)) -> new_esEs4(vwx300, vwx400, bfg, bfh) new_esEs19(vwx2211, vwx2411, ty_Float) -> new_esEs13(vwx2211, vwx2411) new_esEs23(vwx220, vwx240, app(app(app(ty_@3, da), db), dc)) -> new_esEs7(vwx220, vwx240, da, db, dc) new_ltEs16(Just(vwx2210), Just(vwx2410), app(ty_Maybe, bbd)) -> new_ltEs16(vwx2210, vwx2410, bbd) new_lt21(vwx2210, vwx2410, ty_Int) -> new_lt5(vwx2210, vwx2410) new_primMulInt(Neg(vwx3000), Neg(vwx4010)) -> Pos(new_primMulNat0(vwx3000, vwx4010)) new_primCompAux0(vwx2200, vwx2400, vwx79, h) -> new_primCompAux00(vwx79, new_compare16(vwx2200, vwx2400, h)) new_primCmpInt(Pos(Zero), Pos(Succ(vwx24000))) -> new_primCmpNat0(Zero, Succ(vwx24000)) new_compare16(vwx2200, vwx2400, ty_Ordering) -> new_compare29(vwx2200, vwx2400) new_compare([], :(vwx2400, vwx2401), h) -> LT new_esEs29(vwx300, vwx400, ty_@0) -> new_esEs15(vwx300, vwx400) new_esEs6(Just(vwx300), Just(vwx400), app(ty_Maybe, bgg)) -> new_esEs6(vwx300, vwx400, bgg) new_esEs5(Right(vwx300), Right(vwx400), cgb, ty_Float) -> new_esEs13(vwx300, vwx400) new_esEs6(Nothing, Just(vwx400), bff) -> False new_esEs6(Just(vwx300), Nothing, bff) -> False new_ltEs15(EQ, GT) -> True new_esEs6(Nothing, Nothing, bff) -> True new_lt8(vwx2210, vwx2410, app(app(ty_@2, bcc), bcd)) -> new_lt12(vwx2210, vwx2410, bcc, bcd) new_lt8(vwx2210, vwx2410, ty_Ordering) -> new_lt16(vwx2210, vwx2410) new_esEs18(vwx2210, vwx2410, ty_@0) -> new_esEs15(vwx2210, vwx2410) new_ltEs16(Just(vwx2210), Just(vwx2410), app(ty_Ratio, cea)) -> new_ltEs10(vwx2210, vwx2410, cea) new_esEs22(vwx302, vwx402, app(app(ty_Either, cda), cdb)) -> new_esEs5(vwx302, vwx402, cda, cdb) new_esEs21(vwx301, vwx401, ty_Int) -> new_esEs9(vwx301, vwx401) new_esEs23(vwx220, vwx240, ty_Ordering) -> new_esEs8(vwx220, vwx240) new_lt9(vwx2211, vwx2411, app(app(ty_Either, bdg), bdh)) -> new_lt15(vwx2211, vwx2411, bdg, bdh) new_ltEs16(Just(vwx2210), Just(vwx2410), ty_Double) -> new_ltEs9(vwx2210, vwx2410) new_ltEs5(@3(vwx2210, vwx2211, vwx2212), @3(vwx2410, vwx2411, vwx2412), bdc, bca, bcb) -> new_pePe(new_lt8(vwx2210, vwx2410, bdc), new_asAs(new_esEs18(vwx2210, vwx2410, bdc), new_pePe(new_lt9(vwx2211, vwx2411, bca), new_asAs(new_esEs19(vwx2211, vwx2411, bca), new_ltEs7(vwx2212, vwx2412, bcb))))) new_esEs23(vwx220, vwx240, app(app(ty_@2, cb), cc)) -> new_esEs4(vwx220, vwx240, cb, cc) new_esEs25(vwx301, vwx401, ty_Integer) -> new_esEs11(vwx301, vwx401) new_ltEs10(vwx221, vwx241, cee) -> new_fsEs(new_compare18(vwx221, vwx241, cee)) new_compare31(vwx220, vwx240, da, db, dc) -> new_compare27(vwx220, vwx240, new_esEs7(vwx220, vwx240, da, db, dc), da, db, dc) new_lt9(vwx2211, vwx2411, ty_Ordering) -> new_lt16(vwx2211, vwx2411) new_lt9(vwx2211, vwx2411, app(app(ty_@2, bde), bdf)) -> new_lt12(vwx2211, vwx2411, bde, bdf) new_primMulInt(Pos(vwx3000), Neg(vwx4010)) -> Neg(new_primMulNat0(vwx3000, vwx4010)) new_primMulInt(Neg(vwx3000), Pos(vwx4010)) -> Neg(new_primMulNat0(vwx3000, vwx4010)) new_esEs19(vwx2211, vwx2411, app(app(ty_Either, bdg), bdh)) -> new_esEs5(vwx2211, vwx2411, bdg, bdh) new_esEs22(vwx302, vwx402, ty_Ordering) -> new_esEs8(vwx302, vwx402) new_lt21(vwx2210, vwx2410, ty_Double) -> new_lt10(vwx2210, vwx2410) new_esEs22(vwx302, vwx402, app(app(ty_@2, ccf), ccg)) -> new_esEs4(vwx302, vwx402, ccf, ccg) new_ltEs4(Right(vwx2210), Right(vwx2410), he, app(app(ty_Either, baa), bab)) -> new_ltEs4(vwx2210, vwx2410, baa, bab) new_compare18(:%(vwx2200, vwx2201), :%(vwx2400, vwx2401), ty_Int) -> new_compare7(new_sr(vwx2200, vwx2401), new_sr(vwx2400, vwx2201)) new_esEs22(vwx302, vwx402, ty_Integer) -> new_esEs11(vwx302, vwx402) new_ltEs16(Just(vwx2210), Just(vwx2410), app(app(app(ty_@3, bbe), bbf), bbg)) -> new_ltEs5(vwx2210, vwx2410, bbe, bbf, bbg) new_esEs22(vwx302, vwx402, ty_Double) -> new_esEs10(vwx302, vwx402) new_esEs19(vwx2211, vwx2411, ty_Char) -> new_esEs16(vwx2211, vwx2411) new_ltEs4(Left(vwx2210), Left(vwx2410), ty_Integer, gd) -> new_ltEs13(vwx2210, vwx2410) new_ltEs16(Just(vwx2210), Just(vwx2410), ty_Bool) -> new_ltEs6(vwx2210, vwx2410) new_sr0(Integer(vwx24000), Integer(vwx22010)) -> Integer(new_primMulInt(vwx24000, vwx22010)) new_ltEs9(vwx221, vwx241) -> new_fsEs(new_compare17(vwx221, vwx241)) new_ltEs4(Left(vwx2210), Left(vwx2410), app(ty_[], gc), gd) -> new_ltEs11(vwx2210, vwx2410, gc) new_esEs21(vwx301, vwx401, app(ty_Ratio, cbf)) -> new_esEs14(vwx301, vwx401, cbf) new_lt21(vwx2210, vwx2410, app(app(ty_Either, eb), ec)) -> new_lt15(vwx2210, vwx2410, eb, ec) new_esEs29(vwx300, vwx400, ty_Char) -> new_esEs16(vwx300, vwx400) new_esEs5(Right(vwx300), Right(vwx400), cgb, ty_Double) -> new_esEs10(vwx300, vwx400) new_ltEs15(LT, GT) -> True new_ltEs20(vwx2211, vwx2411, app(app(ty_Either, fd), ff)) -> new_ltEs4(vwx2211, vwx2411, fd, ff) new_lt20(vwx220, vwx240, app(app(app(ty_@3, da), db), dc)) -> new_lt18(vwx220, vwx240, da, db, dc) new_lt16(vwx220, vwx240) -> new_esEs8(new_compare29(vwx220, vwx240), LT) new_esEs28(vwx2210, vwx2410, app(app(app(ty_@3, ee), ef), eg)) -> new_esEs7(vwx2210, vwx2410, ee, ef, eg) new_compare6(vwx220, vwx240, cb, cc) -> new_compare24(vwx220, vwx240, new_esEs4(vwx220, vwx240, cb, cc), cb, cc) new_esEs20(vwx300, vwx400, ty_Int) -> new_esEs9(vwx300, vwx400) new_esEs25(vwx301, vwx401, ty_Int) -> new_esEs9(vwx301, vwx401) new_asAs(True, vwx39) -> vwx39 new_esEs26(vwx300, vwx400, ty_Float) -> new_esEs13(vwx300, vwx400) new_esEs20(vwx300, vwx400, ty_@0) -> new_esEs15(vwx300, vwx400) new_esEs21(vwx301, vwx401, app(ty_Maybe, ccd)) -> new_esEs6(vwx301, vwx401, ccd) new_esEs19(vwx2211, vwx2411, app(ty_[], bdd)) -> new_esEs17(vwx2211, vwx2411, bdd) new_esEs17(:(vwx300, vwx301), :(vwx400, vwx401), dce) -> new_asAs(new_esEs29(vwx300, vwx400, dce), new_esEs17(vwx301, vwx401, dce)) new_esEs21(vwx301, vwx401, ty_Bool) -> new_esEs12(vwx301, vwx401) new_compare17(Double(vwx2200, Pos(vwx22010)), Double(vwx2400, Neg(vwx24010))) -> new_compare7(new_sr(vwx2200, Pos(vwx24010)), new_sr(Neg(vwx22010), vwx2400)) new_compare17(Double(vwx2200, Neg(vwx22010)), Double(vwx2400, Pos(vwx24010))) -> new_compare7(new_sr(vwx2200, Neg(vwx24010)), new_sr(Pos(vwx22010), vwx2400)) new_esEs16(Char(vwx300), Char(vwx400)) -> new_primEqNat0(vwx300, vwx400) new_esEs26(vwx300, vwx400, ty_Bool) -> new_esEs12(vwx300, vwx400) new_ltEs4(Right(vwx2210), Right(vwx2410), he, ty_Double) -> new_ltEs9(vwx2210, vwx2410) new_ltEs20(vwx2211, vwx2411, ty_Char) -> new_ltEs14(vwx2211, vwx2411) new_esEs19(vwx2211, vwx2411, ty_Int) -> new_esEs9(vwx2211, vwx2411) new_compare24(vwx22, vwx24, True, dd, cd) -> EQ new_lt9(vwx2211, vwx2411, ty_Float) -> new_lt4(vwx2211, vwx2411) new_lt6(vwx220, vwx240, h) -> new_esEs8(new_compare(vwx220, vwx240, h), LT) new_primCmpInt(Pos(Succ(vwx22000)), Pos(vwx2400)) -> new_primCmpNat0(Succ(vwx22000), vwx2400) new_lt9(vwx2211, vwx2411, ty_@0) -> new_lt19(vwx2211, vwx2411) new_ltEs4(Right(vwx2210), Right(vwx2410), he, app(app(app(ty_@3, bad), bae), baf)) -> new_ltEs5(vwx2210, vwx2410, bad, bae, baf) new_esEs29(vwx300, vwx400, app(app(ty_Either, dda), ddb)) -> new_esEs5(vwx300, vwx400, dda, ddb) new_esEs5(Right(vwx300), Right(vwx400), cgb, ty_Ordering) -> new_esEs8(vwx300, vwx400) new_primCompAux00(vwx88, EQ) -> vwx88 new_sr(vwx300, vwx401) -> new_primMulInt(vwx300, vwx401) new_esEs12(False, True) -> False new_esEs12(True, False) -> False new_compare16(vwx2200, vwx2400, app(app(app(ty_@3, bg), bh), ca)) -> new_compare31(vwx2200, vwx2400, bg, bh, ca) new_ltEs4(Right(vwx2210), Right(vwx2410), he, app(ty_Maybe, bac)) -> new_ltEs16(vwx2210, vwx2410, bac) new_esEs10(Double(vwx300, vwx301), Double(vwx400, vwx401)) -> new_esEs9(new_sr(vwx300, vwx401), new_sr(vwx301, vwx400)) new_ltEs11(vwx221, vwx241, de) -> new_fsEs(new_compare(vwx221, vwx241, de)) new_primMulNat0(Zero, Zero) -> Zero new_lt21(vwx2210, vwx2410, ty_Ordering) -> new_lt16(vwx2210, vwx2410) new_esEs12(True, True) -> True new_compare10(vwx220, vwx240, False) -> GT new_ltEs4(Right(vwx2210), Right(vwx2410), he, ty_Bool) -> new_ltEs6(vwx2210, vwx2410) new_esEs27(vwx301, vwx401, ty_Ordering) -> new_esEs8(vwx301, vwx401) new_esEs5(Left(vwx300), Left(vwx400), ty_Int, ceg) -> new_esEs9(vwx300, vwx400) new_lt9(vwx2211, vwx2411, ty_Double) -> new_lt10(vwx2211, vwx2411) new_compare14(vwx220, vwx240, False, da, db, dc) -> GT new_esEs27(vwx301, vwx401, ty_Double) -> new_esEs10(vwx301, vwx401) new_lt21(vwx2210, vwx2410, app(app(ty_@2, dh), ea)) -> new_lt12(vwx2210, vwx2410, dh, ea) new_esEs27(vwx301, vwx401, ty_Float) -> new_esEs13(vwx301, vwx401) new_ltEs20(vwx2211, vwx2411, ty_Integer) -> new_ltEs13(vwx2211, vwx2411) new_esEs20(vwx300, vwx400, app(app(ty_Either, cae), caf)) -> new_esEs5(vwx300, vwx400, cae, caf) new_esEs27(vwx301, vwx401, ty_Integer) -> new_esEs11(vwx301, vwx401) new_lt11(vwx220, vwx240, ced) -> new_esEs8(new_compare18(vwx220, vwx240, ced), LT) new_esEs5(Right(vwx300), Right(vwx400), cgb, app(app(ty_Either, cgf), cgg)) -> new_esEs5(vwx300, vwx400, cgf, cgg) new_esEs20(vwx300, vwx400, app(ty_[], cbc)) -> new_esEs17(vwx300, vwx400, cbc) new_ltEs4(Left(vwx2210), Left(vwx2410), app(ty_Maybe, ha), gd) -> new_ltEs16(vwx2210, vwx2410, ha) new_ltEs15(EQ, EQ) -> True new_esEs6(Just(vwx300), Just(vwx400), ty_Integer) -> new_esEs11(vwx300, vwx400) new_esEs19(vwx2211, vwx2411, app(ty_Ratio, bhd)) -> new_esEs14(vwx2211, vwx2411, bhd) new_ltEs16(Just(vwx2210), Just(vwx2410), ty_Int) -> new_ltEs17(vwx2210, vwx2410) new_esEs26(vwx300, vwx400, app(ty_Maybe, dag)) -> new_esEs6(vwx300, vwx400, dag) new_ltEs4(Left(vwx2210), Left(vwx2410), ty_Float, gd) -> new_ltEs8(vwx2210, vwx2410) new_esEs21(vwx301, vwx401, ty_Char) -> new_esEs16(vwx301, vwx401) new_lt8(vwx2210, vwx2410, ty_Double) -> new_lt10(vwx2210, vwx2410) new_ltEs16(Just(vwx2210), Just(vwx2410), ty_Ordering) -> new_ltEs15(vwx2210, vwx2410) new_compare32(@0, @0) -> EQ new_esEs29(vwx300, vwx400, app(ty_Ratio, dch)) -> new_esEs14(vwx300, vwx400, dch) new_lt21(vwx2210, vwx2410, ty_@0) -> new_lt19(vwx2210, vwx2410) new_compare29(vwx220, vwx240) -> new_compare210(vwx220, vwx240, new_esEs8(vwx220, vwx240)) new_ltEs6(False, True) -> True new_ltEs4(Right(vwx2210), Right(vwx2410), he, ty_Int) -> new_ltEs17(vwx2210, vwx2410) new_ltEs19(vwx221, vwx241, ty_Int) -> new_ltEs17(vwx221, vwx241) new_esEs15(@0, @0) -> True new_esEs21(vwx301, vwx401, app(ty_[], cce)) -> new_esEs17(vwx301, vwx401, cce) new_lt12(vwx220, vwx240, cb, cc) -> new_esEs8(new_compare6(vwx220, vwx240, cb, cc), LT) new_esEs18(vwx2210, vwx2410, ty_Int) -> new_esEs9(vwx2210, vwx2410) new_lt5(vwx220, vwx240) -> new_esEs8(new_compare7(vwx220, vwx240), LT) new_esEs6(Just(vwx300), Just(vwx400), ty_Double) -> new_esEs10(vwx300, vwx400) new_primEqInt(Neg(Succ(vwx3000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(vwx4000))) -> False new_esEs11(Integer(vwx300), Integer(vwx400)) -> new_primEqInt(vwx300, vwx400) new_esEs24(vwx300, vwx400, ty_Int) -> new_esEs9(vwx300, vwx400) new_compare([], [], h) -> EQ new_ltEs15(LT, EQ) -> True new_esEs20(vwx300, vwx400, ty_Char) -> new_esEs16(vwx300, vwx400) new_primEqInt(Pos(Succ(vwx3000)), Pos(Succ(vwx4000))) -> new_primEqNat0(vwx3000, vwx4000) new_compare16(vwx2200, vwx2400, ty_Double) -> new_compare17(vwx2200, vwx2400) new_esEs26(vwx300, vwx400, app(app(ty_@2, chg), chh)) -> new_esEs4(vwx300, vwx400, chg, chh) new_ltEs7(vwx2212, vwx2412, ty_Integer) -> new_ltEs13(vwx2212, vwx2412) new_ltEs4(Left(vwx2210), Left(vwx2410), app(app(ty_Either, gg), gh), gd) -> new_ltEs4(vwx2210, vwx2410, gg, gh) new_ltEs7(vwx2212, vwx2412, ty_Char) -> new_ltEs14(vwx2212, vwx2412) new_esEs7(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bhg, bhh, caa) -> new_asAs(new_esEs20(vwx300, vwx400, bhg), new_asAs(new_esEs21(vwx301, vwx401, bhh), new_esEs22(vwx302, vwx402, caa))) new_ltEs16(Just(vwx2210), Just(vwx2410), ty_@0) -> new_ltEs18(vwx2210, vwx2410) new_ltEs16(Nothing, Just(vwx2410), cdh) -> True new_esEs20(vwx300, vwx400, app(ty_Maybe, cbb)) -> new_esEs6(vwx300, vwx400, cbb) new_lt8(vwx2210, vwx2410, app(app(app(ty_@3, bch), bda), bdb)) -> new_lt18(vwx2210, vwx2410, bch, bda, bdb) new_primEqInt(Pos(Succ(vwx3000)), Neg(vwx400)) -> False new_primEqInt(Neg(Succ(vwx3000)), Pos(vwx400)) -> False new_esEs26(vwx300, vwx400, ty_Ordering) -> new_esEs8(vwx300, vwx400) new_esEs19(vwx2211, vwx2411, app(ty_Maybe, bea)) -> new_esEs6(vwx2211, vwx2411, bea) new_primCmpInt(Neg(Zero), Neg(Succ(vwx24000))) -> new_primCmpNat0(Succ(vwx24000), Zero) new_lt10(vwx220, vwx240) -> new_esEs8(new_compare17(vwx220, vwx240), LT) new_esEs26(vwx300, vwx400, app(ty_[], dah)) -> new_esEs17(vwx300, vwx400, dah) new_esEs22(vwx302, vwx402, ty_Float) -> new_esEs13(vwx302, vwx402) new_esEs13(Float(vwx300, vwx301), Float(vwx400, vwx401)) -> new_esEs9(new_sr(vwx300, vwx401), new_sr(vwx301, vwx400)) new_esEs29(vwx300, vwx400, ty_Int) -> new_esEs9(vwx300, vwx400) new_ltEs4(Right(vwx2210), Right(vwx2410), he, app(ty_[], hf)) -> new_ltEs11(vwx2210, vwx2410, hf) new_esEs22(vwx302, vwx402, ty_Bool) -> new_esEs12(vwx302, vwx402) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_compare16(vwx2200, vwx2400, ty_Float) -> new_compare5(vwx2200, vwx2400) new_ltEs15(GT, GT) -> True new_esEs26(vwx300, vwx400, app(app(ty_Either, dab), dac)) -> new_esEs5(vwx300, vwx400, dab, dac) new_compare15(vwx220, vwx240, False) -> GT new_compare8(vwx220, vwx240) -> new_compare26(vwx220, vwx240, new_esEs12(vwx220, vwx240)) new_compare30(vwx220, vwx240, cg) -> new_compare211(vwx220, vwx240, new_esEs6(vwx220, vwx240, cg), cg) new_ltEs20(vwx2211, vwx2411, ty_Int) -> new_ltEs17(vwx2211, vwx2411) new_ltEs13(vwx221, vwx241) -> new_fsEs(new_compare19(vwx221, vwx241)) new_esEs23(vwx220, vwx240, ty_Float) -> new_esEs13(vwx220, vwx240) new_compare13(vwx65, vwx66, vwx67, vwx68, True, bha, bhb) -> LT new_lt21(vwx2210, vwx2410, app(ty_Maybe, ed)) -> new_lt17(vwx2210, vwx2410, ed) new_esEs29(vwx300, vwx400, app(app(app(ty_@3, ddc), ddd), dde)) -> new_esEs7(vwx300, vwx400, ddc, ddd, dde) new_esEs23(vwx220, vwx240, ty_@0) -> new_esEs15(vwx220, vwx240) new_not(False) -> True new_esEs28(vwx2210, vwx2410, ty_Int) -> new_esEs9(vwx2210, vwx2410) new_esEs6(Just(vwx300), Just(vwx400), ty_Float) -> new_esEs13(vwx300, vwx400) new_esEs18(vwx2210, vwx2410, app(app(ty_Either, bce), bcf)) -> new_esEs5(vwx2210, vwx2410, bce, bcf) new_esEs20(vwx300, vwx400, app(app(app(ty_@3, cag), cah), cba)) -> new_esEs7(vwx300, vwx400, cag, cah, cba) new_esEs4(@2(vwx300, vwx301), @2(vwx400, vwx401), che, chf) -> new_asAs(new_esEs26(vwx300, vwx400, che), new_esEs27(vwx301, vwx401, chf)) new_compare16(vwx2200, vwx2400, app(ty_[], ba)) -> new_compare(vwx2200, vwx2400, ba) new_esEs8(LT, GT) -> False new_esEs8(GT, LT) -> False new_primPlusNat0(Succ(vwx5600), Succ(vwx401000)) -> Succ(Succ(new_primPlusNat0(vwx5600, vwx401000))) new_compare28(Char(vwx2200), Char(vwx2400)) -> new_primCmpNat0(vwx2200, vwx2400) new_esEs20(vwx300, vwx400, ty_Bool) -> new_esEs12(vwx300, vwx400) new_esEs5(Left(vwx300), Right(vwx400), cgb, ceg) -> False new_esEs5(Right(vwx300), Left(vwx400), cgb, ceg) -> False new_lt21(vwx2210, vwx2410, ty_Float) -> new_lt4(vwx2210, vwx2410) new_esEs21(vwx301, vwx401, ty_Double) -> new_esEs10(vwx301, vwx401) new_esEs18(vwx2210, vwx2410, app(ty_Maybe, bcg)) -> new_esEs6(vwx2210, vwx2410, bcg) new_ltEs4(Left(vwx2210), Right(vwx2410), he, gd) -> True new_lt21(vwx2210, vwx2410, app(ty_[], df)) -> new_lt6(vwx2210, vwx2410, df) new_esEs27(vwx301, vwx401, app(app(app(ty_@3, dbf), dbg), dbh)) -> new_esEs7(vwx301, vwx401, dbf, dbg, dbh) new_esEs29(vwx300, vwx400, ty_Bool) -> new_esEs12(vwx300, vwx400) new_esEs6(Just(vwx300), Just(vwx400), ty_@0) -> new_esEs15(vwx300, vwx400) new_compare11(vwx220, vwx240, True, ce, cf) -> LT new_compare5(Float(vwx2200, Pos(vwx22010)), Float(vwx2400, Pos(vwx24010))) -> new_compare7(new_sr(vwx2200, Pos(vwx24010)), new_sr(Pos(vwx22010), vwx2400)) new_esEs29(vwx300, vwx400, app(ty_Maybe, ddf)) -> new_esEs6(vwx300, vwx400, ddf) new_compare10(vwx220, vwx240, True) -> LT new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs22(vwx302, vwx402, app(ty_[], cdg)) -> new_esEs17(vwx302, vwx402, cdg) new_lt20(vwx220, vwx240, app(app(ty_Either, ce), cf)) -> new_lt15(vwx220, vwx240, ce, cf) new_ltEs7(vwx2212, vwx2412, ty_Int) -> new_ltEs17(vwx2212, vwx2412) new_lt19(vwx220, vwx240) -> new_esEs8(new_compare32(vwx220, vwx240), LT) new_esEs21(vwx301, vwx401, ty_Integer) -> new_esEs11(vwx301, vwx401) new_esEs27(vwx301, vwx401, app(app(ty_@2, dba), dbb)) -> new_esEs4(vwx301, vwx401, dba, dbb) new_ltEs15(LT, LT) -> True new_esEs27(vwx301, vwx401, app(ty_Ratio, dbc)) -> new_esEs14(vwx301, vwx401, dbc) new_ltEs4(Right(vwx2210), Right(vwx2410), he, ty_@0) -> new_ltEs18(vwx2210, vwx2410) new_lt20(vwx220, vwx240, app(ty_Ratio, ced)) -> new_lt11(vwx220, vwx240, ced) new_esEs18(vwx2210, vwx2410, app(app(app(ty_@3, bch), bda), bdb)) -> new_esEs7(vwx2210, vwx2410, bch, bda, bdb) new_lt4(vwx220, vwx240) -> new_esEs8(new_compare5(vwx220, vwx240), LT) new_ltEs4(Left(vwx2210), Left(vwx2410), ty_Ordering, gd) -> new_ltEs15(vwx2210, vwx2410) new_ltEs19(vwx221, vwx241, app(app(ty_Either, he), gd)) -> new_ltEs4(vwx221, vwx241, he, gd) new_esEs28(vwx2210, vwx2410, app(ty_Maybe, ed)) -> new_esEs6(vwx2210, vwx2410, ed) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs23(vwx220, vwx240, ty_Char) -> new_esEs16(vwx220, vwx240) new_esEs5(Left(vwx300), Left(vwx400), ty_Char, ceg) -> new_esEs16(vwx300, vwx400) new_lt21(vwx2210, vwx2410, ty_Bool) -> new_lt7(vwx2210, vwx2410) new_compare12(vwx65, vwx66, vwx67, vwx68, False, vwx70, bha, bhb) -> new_compare13(vwx65, vwx66, vwx67, vwx68, vwx70, bha, bhb) new_esEs28(vwx2210, vwx2410, app(app(ty_@2, dh), ea)) -> new_esEs4(vwx2210, vwx2410, dh, ea) new_esEs22(vwx302, vwx402, ty_Char) -> new_esEs16(vwx302, vwx402) new_esEs18(vwx2210, vwx2410, ty_Integer) -> new_esEs11(vwx2210, vwx2410) new_primCmpNat0(Succ(vwx22000), Succ(vwx24000)) -> new_primCmpNat0(vwx22000, vwx24000) new_esEs26(vwx300, vwx400, app(ty_Ratio, daa)) -> new_esEs14(vwx300, vwx400, daa) new_esEs27(vwx301, vwx401, app(ty_Maybe, dca)) -> new_esEs6(vwx301, vwx401, dca) new_esEs5(Right(vwx300), Right(vwx400), cgb, ty_Integer) -> new_esEs11(vwx300, vwx400) new_esEs28(vwx2210, vwx2410, ty_Ordering) -> new_esEs8(vwx2210, vwx2410) new_lt20(vwx220, vwx240, ty_Bool) -> new_lt7(vwx220, vwx240) new_ltEs12(@2(vwx2210, vwx2211), @2(vwx2410, vwx2411), eh, dg) -> new_pePe(new_lt21(vwx2210, vwx2410, eh), new_asAs(new_esEs28(vwx2210, vwx2410, eh), new_ltEs20(vwx2211, vwx2411, dg))) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs29(vwx300, vwx400, app(app(ty_@2, dcf), dcg)) -> new_esEs4(vwx300, vwx400, dcf, dcg) new_ltEs14(vwx221, vwx241) -> new_fsEs(new_compare28(vwx221, vwx241)) new_lt21(vwx2210, vwx2410, app(ty_Ratio, dcc)) -> new_lt11(vwx2210, vwx2410, dcc) new_lt21(vwx2210, vwx2410, app(app(app(ty_@3, ee), ef), eg)) -> new_lt18(vwx2210, vwx2410, ee, ef, eg) new_esEs6(Just(vwx300), Just(vwx400), ty_Char) -> new_esEs16(vwx300, vwx400) new_primEqNat0(Zero, Zero) -> True new_esEs28(vwx2210, vwx2410, app(app(ty_Either, eb), ec)) -> new_esEs5(vwx2210, vwx2410, eb, ec) new_esEs5(Right(vwx300), Right(vwx400), cgb, ty_Bool) -> new_esEs12(vwx300, vwx400) new_compare16(vwx2200, vwx2400, ty_Bool) -> new_compare8(vwx2200, vwx2400) new_ltEs16(Just(vwx2210), Just(vwx2410), app(ty_[], bag)) -> new_ltEs11(vwx2210, vwx2410, bag) new_esEs29(vwx300, vwx400, ty_Ordering) -> new_esEs8(vwx300, vwx400) new_esEs6(Just(vwx300), Just(vwx400), app(ty_[], bgh)) -> new_esEs17(vwx300, vwx400, bgh) new_ltEs7(vwx2212, vwx2412, app(app(ty_Either, beh), bfa)) -> new_ltEs4(vwx2212, vwx2412, beh, bfa) new_lt20(vwx220, vwx240, app(ty_[], h)) -> new_lt6(vwx220, vwx240, h) new_esEs19(vwx2211, vwx2411, ty_Double) -> new_esEs10(vwx2211, vwx2411) new_compare27(vwx220, vwx240, False, da, db, dc) -> new_compare14(vwx220, vwx240, new_ltEs5(vwx220, vwx240, da, db, dc), da, db, dc) new_compare110(vwx220, vwx240, True, cg) -> LT new_lt8(vwx2210, vwx2410, ty_Float) -> new_lt4(vwx2210, vwx2410) new_lt8(vwx2210, vwx2410, ty_@0) -> new_lt19(vwx2210, vwx2410) new_asAs(False, vwx39) -> False new_esEs17(:(vwx300, vwx301), [], dce) -> False new_esEs17([], :(vwx400, vwx401), dce) -> False new_esEs20(vwx300, vwx400, ty_Integer) -> new_esEs11(vwx300, vwx400) new_esEs19(vwx2211, vwx2411, ty_Bool) -> new_esEs12(vwx2211, vwx2411) new_lt20(vwx220, vwx240, app(ty_Maybe, cg)) -> new_lt17(vwx220, vwx240, cg) new_ltEs4(Left(vwx2210), Left(vwx2410), ty_Char, gd) -> new_ltEs14(vwx2210, vwx2410) new_esEs5(Left(vwx300), Left(vwx400), ty_@0, ceg) -> new_esEs15(vwx300, vwx400) new_compare9(vwx220, vwx240, ce, cf) -> new_compare25(vwx220, vwx240, new_esEs5(vwx220, vwx240, ce, cf), ce, cf) new_ltEs7(vwx2212, vwx2412, ty_Bool) -> new_ltEs6(vwx2212, vwx2412) new_lt18(vwx220, vwx240, da, db, dc) -> new_esEs8(new_compare31(vwx220, vwx240, da, db, dc), LT) new_esEs26(vwx300, vwx400, ty_Int) -> new_esEs9(vwx300, vwx400) new_compare26(vwx220, vwx240, False) -> new_compare15(vwx220, vwx240, new_ltEs6(vwx220, vwx240)) new_ltEs7(vwx2212, vwx2412, app(app(app(ty_@3, bfc), bfd), bfe)) -> new_ltEs5(vwx2212, vwx2412, bfc, bfd, bfe) new_ltEs16(Just(vwx2210), Just(vwx2410), app(app(ty_Either, bbb), bbc)) -> new_ltEs4(vwx2210, vwx2410, bbb, bbc) new_esEs8(EQ, GT) -> False new_esEs8(GT, EQ) -> False new_ltEs4(Right(vwx2210), Left(vwx2410), he, gd) -> False new_esEs5(Right(vwx300), Right(vwx400), cgb, app(ty_[], chd)) -> new_esEs17(vwx300, vwx400, chd) new_compare5(Float(vwx2200, Neg(vwx22010)), Float(vwx2400, Neg(vwx24010))) -> new_compare7(new_sr(vwx2200, Neg(vwx24010)), new_sr(Neg(vwx22010), vwx2400)) new_esEs20(vwx300, vwx400, ty_Double) -> new_esEs10(vwx300, vwx400) new_ltEs4(Right(vwx2210), Right(vwx2410), he, app(app(ty_@2, hg), hh)) -> new_ltEs12(vwx2210, vwx2410, hg, hh) new_esEs5(Left(vwx300), Left(vwx400), app(app(app(ty_@3, cfe), cff), cfg), ceg) -> new_esEs7(vwx300, vwx400, cfe, cff, cfg) new_esEs19(vwx2211, vwx2411, ty_Integer) -> new_esEs11(vwx2211, vwx2411) The set Q consists of the following terms: new_esEs5(Right(x0), Right(x1), x2, ty_Double) new_esEs8(EQ, EQ) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs7(x0, x1, ty_@0) new_lt20(x0, x1, ty_Float) new_esEs28(x0, x1, ty_Char) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_compare5(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_compare5(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_compare5(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare5(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, app(ty_[], x2)) new_ltEs16(Just(x0), Just(x1), ty_Char) new_lt21(x0, x1, ty_Int) new_lt19(x0, x1) new_esEs27(x0, x1, ty_Int) new_compare110(x0, x1, False, x2) new_esEs29(x0, x1, ty_Float) new_compare14(x0, x1, True, x2, x3, x4) new_esEs18(x0, x1, ty_Double) new_esEs22(x0, x1, ty_Bool) new_esEs18(x0, x1, app(ty_Maybe, x2)) new_esEs5(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs19(x0, x1, ty_Float) new_ltEs20(x0, x1, ty_Integer) new_ltEs7(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_lt21(x0, x1, ty_Char) new_esEs26(x0, x1, ty_Double) new_esEs19(x0, x1, ty_Double) new_esEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt9(x0, x1, ty_Float) new_esEs6(Nothing, Nothing, x0) new_esEs27(x0, x1, ty_Char) new_esEs22(x0, x1, ty_@0) new_esEs20(x0, x1, ty_Int) new_esEs27(x0, x1, ty_Ordering) new_esEs19(x0, x1, app(ty_[], x2)) new_esEs26(x0, x1, ty_Int) new_ltEs16(Just(x0), Just(x1), ty_Int) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs20(x0, x1, ty_Ordering) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_lt13(x0, x1) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_lt8(x0, x1, app(app(ty_@2, x2), x3)) new_lt8(x0, x1, ty_Integer) new_esEs23(x0, x1, ty_Float) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs28(x0, x1, ty_Int) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_Ordering) new_ltEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_primEqInt(Neg(Zero), Neg(Zero)) new_lt21(x0, x1, ty_Ordering) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, ty_@0) new_ltEs4(Right(x0), Right(x1), x2, ty_Float) new_ltEs7(x0, x1, ty_Bool) new_esEs26(x0, x1, ty_Ordering) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_primEqNat0(Zero, Succ(x0)) new_esEs12(False, True) new_esEs12(True, False) new_lt5(x0, x1) new_ltEs16(Just(x0), Just(x1), ty_Bool) new_ltEs7(x0, x1, ty_Char) new_esEs28(x0, x1, ty_@0) new_ltEs16(Just(x0), Just(x1), ty_Ordering) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_pePe(False, x0) new_esEs22(x0, x1, ty_Integer) new_esEs21(x0, x1, ty_Bool) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare7(x0, x1) new_ltEs16(Just(x0), Just(x1), ty_Double) new_ltEs4(Left(x0), Left(x1), ty_Integer, x2) new_lt7(x0, x1) new_esEs21(x0, x1, app(ty_[], x2)) new_ltEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_compare(:(x0, x1), [], x2) new_esEs27(x0, x1, ty_Double) new_lt20(x0, x1, ty_Integer) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs18(x0, x1, ty_Char) new_ltEs7(x0, x1, ty_Int) new_lt9(x0, x1, app(ty_Maybe, x2)) new_compare18(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs21(x0, x1, ty_@0) new_compare211(x0, x1, False, x2) new_esEs21(x0, x1, ty_Int) new_lt21(x0, x1, ty_Double) new_ltEs16(Just(x0), Just(x1), app(ty_[], x2)) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_lt11(x0, x1, x2) new_compare210(x0, x1, False) new_ltEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_compare16(x0, x1, app(ty_[], x2)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_primMulInt(Pos(x0), Pos(x1)) new_esEs6(Nothing, Just(x0), x1) new_compare16(x0, x1, ty_Float) new_lt21(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Bool) new_primPlusNat0(Zero, Succ(x0)) new_compare19(Integer(x0), Integer(x1)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs9(x0, x1) new_esEs6(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(x0, x1, ty_Double) new_esEs24(x0, x1, ty_Int) new_esEs21(x0, x1, ty_Char) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs18(x0, x1, ty_Int) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs18(x0, x1, app(ty_Ratio, x2)) new_esEs19(x0, x1, ty_Ordering) new_esEs10(Double(x0, x1), Double(x2, x3)) new_compare([], [], x0) new_esEs5(Left(x0), Left(x1), ty_Float, x2) new_ltEs17(x0, x1) new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs15(EQ, EQ) new_ltEs19(x0, x1, ty_@0) new_primCompAux00(x0, LT) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_esEs27(x0, x1, ty_Integer) new_compare11(x0, x1, False, x2, x3) new_ltEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs23(x0, x1, ty_Integer) new_ltEs16(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs7(x0, x1, ty_Double) new_compare16(x0, x1, ty_Integer) new_esEs23(x0, x1, app(ty_[], x2)) new_esEs5(Right(x0), Right(x1), x2, ty_@0) new_esEs15(@0, @0) new_esEs13(Float(x0, x1), Float(x2, x3)) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs22(x0, x1, ty_Float) new_ltEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs4(Left(x0), Left(x1), ty_Bool, x2) new_lt15(x0, x1, x2, x3) new_esEs28(x0, x1, ty_Integer) new_compare14(x0, x1, False, x2, x3, x4) new_esEs29(x0, x1, ty_Bool) new_lt20(x0, x1, ty_@0) new_esEs25(x0, x1, ty_Integer) new_esEs24(x0, x1, ty_Integer) new_primPlusNat0(Succ(x0), Zero) new_esEs6(Just(x0), Nothing, x1) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_compare210(x0, x1, True) new_esEs22(x0, x1, ty_Ordering) new_ltEs20(x0, x1, ty_Double) new_primPlusNat1(Zero, x0) new_compare16(x0, x1, ty_Bool) new_compare12(x0, x1, x2, x3, False, x4, x5, x6) new_ltEs8(x0, x1) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_ltEs15(GT, LT) new_ltEs15(LT, GT) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, ty_Integer) new_esEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, ty_@0) new_lt21(x0, x1, app(ty_[], x2)) new_esEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs11(Integer(x0), Integer(x1)) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(Left(x0), Left(x1), ty_Char, x2) new_esEs8(GT, GT) new_lt4(x0, x1) new_esEs19(x0, x1, app(ty_Maybe, x2)) new_esEs8(LT, EQ) new_esEs8(EQ, LT) new_ltEs7(x0, x1, app(app(ty_Either, x2), x3)) new_lt9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, ty_@0) new_ltEs4(Right(x0), Right(x1), x2, ty_Integer) new_primCmpInt(Neg(Zero), Neg(Zero)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, app(ty_[], x2)) new_sr(x0, x1) new_esEs21(x0, x1, ty_Ordering) new_esEs17(:(x0, x1), [], x2) new_lt10(x0, x1) new_esEs8(LT, LT) new_compare([], :(x0, x1), x2) new_primMulNat0(Succ(x0), Succ(x1)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_ltEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt9(x0, x1, app(ty_Ratio, x2)) new_compare16(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, ty_Char) new_esEs20(x0, x1, ty_@0) new_esEs22(x0, x1, ty_Int) new_compare26(x0, x1, True) new_compare25(x0, x1, False, x2, x3) new_ltEs4(Left(x0), Left(x1), ty_Int, x2) new_esEs28(x0, x1, ty_Bool) new_lt8(x0, x1, ty_Bool) new_ltEs4(Right(x0), Right(x1), x2, ty_Char) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt8(x0, x1, ty_Float) new_lt8(x0, x1, app(ty_[], x2)) new_ltEs6(False, False) new_ltEs4(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs29(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs4(Right(x0), Right(x1), x2, ty_Int) new_compare17(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs14(:%(x0, x1), :%(x2, x3), x4) new_lt21(x0, x1, app(ty_Ratio, x2)) new_lt9(x0, x1, app(ty_[], x2)) new_ltEs16(Just(x0), Just(x1), ty_Float) new_esEs6(Just(x0), Just(x1), ty_@0) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs19(x0, x1, ty_@0) new_lt8(x0, x1, ty_Char) new_esEs9(x0, x1) new_lt21(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(Just(x0), Just(x1), ty_Double) new_esEs20(x0, x1, ty_Double) new_esEs23(x0, x1, ty_Bool) new_esEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs5(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs4(Left(x0), Left(x1), ty_Float, x2) new_esEs5(Left(x0), Left(x1), ty_Integer, x2) new_esEs16(Char(x0), Char(x1)) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_lt8(x0, x1, ty_Int) new_pePe(True, x0) new_compare10(x0, x1, False) new_compare16(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs22(x0, x1, ty_Char) new_compare16(x0, x1, ty_Ordering) new_ltEs4(Right(x0), Right(x1), x2, ty_Bool) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_compare(:(x0, x1), :(x2, x3), x4) new_sr0(Integer(x0), Integer(x1)) new_esEs25(x0, x1, ty_Int) new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare11(x0, x1, True, x2, x3) new_lt20(x0, x1, ty_Double) new_compare16(x0, x1, ty_Int) new_esEs6(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_compare24(@2(x0, x1), @2(x2, x3), False, x4, x5) new_lt9(x0, x1, ty_Double) new_compare29(x0, x1) new_lt12(x0, x1, x2, x3) new_ltEs19(x0, x1, ty_Double) new_esEs23(x0, x1, ty_Int) new_esEs17([], :(x0, x1), x2) new_asAs(True, x0) new_esEs29(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Float) new_compare24(x0, x1, True, x2, x3) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt9(x0, x1, ty_Ordering) new_ltEs4(Right(x0), Right(x1), x2, ty_Double) new_primMulNat0(Zero, Succ(x0)) new_esEs23(x0, x1, ty_Char) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_primMulNat0(Zero, Zero) new_lt20(x0, x1, app(ty_Maybe, x2)) new_compare30(x0, x1, x2) new_esEs18(x0, x1, ty_Float) new_compare16(x0, x1, ty_Char) new_lt20(x0, x1, ty_Ordering) new_lt9(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, ty_Ordering) new_ltEs4(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs23(x0, x1, ty_Ordering) new_lt21(x0, x1, ty_Float) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_primCompAux00(x0, EQ) new_compare27(x0, x1, True, x2, x3, x4) new_lt8(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, ty_Ordering) new_esEs27(x0, x1, ty_Float) new_esEs6(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs5(Left(x0), Left(x1), ty_Char, x2) new_compare9(x0, x1, x2, x3) new_esEs27(x0, x1, app(ty_[], x2)) new_ltEs4(Right(x0), Right(x1), x2, ty_Ordering) new_compare17(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_compare15(x0, x1, False) new_esEs5(Left(x0), Right(x1), x2, x3) new_esEs5(Right(x0), Left(x1), x2, x3) new_ltEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs19(x0, x1, ty_Int) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs19(x0, x1, app(ty_Ratio, x2)) new_esEs5(Left(x0), Left(x1), ty_Bool, x2) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_compare13(x0, x1, x2, x3, True, x4, x5) new_esEs20(x0, x1, ty_Float) new_compare31(x0, x1, x2, x3, x4) new_lt16(x0, x1) new_lt8(x0, x1, app(ty_Maybe, x2)) new_esEs18(x0, x1, app(ty_[], x2)) new_primPlusNat0(Zero, Zero) new_ltEs4(Left(x0), Left(x1), ty_Double, x2) new_esEs29(x0, x1, ty_Int) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_not(True) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_lt9(x0, x1, ty_Char) new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(x0, x1, app(ty_[], x2)) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_ltEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) new_primPlusNat0(Succ(x0), Succ(x1)) new_esEs8(EQ, GT) new_esEs8(GT, EQ) new_ltEs16(Nothing, Nothing, x0) new_esEs12(False, False) new_esEs6(Just(x0), Just(x1), ty_Ordering) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_primCmpNat0(Succ(x0), Zero) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, ty_Float) new_lt8(x0, x1, ty_Ordering) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_ltEs15(GT, EQ) new_ltEs15(EQ, GT) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare16(x0, x1, ty_Double) new_ltEs12(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_esEs5(Left(x0), Left(x1), ty_Int, x2) new_esEs6(Just(x0), Just(x1), ty_Integer) new_esEs6(Just(x0), Just(x1), app(ty_[], x2)) new_esEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_compare6(x0, x1, x2, x3) new_lt14(x0, x1) new_esEs17(:(x0, x1), :(x2, x3), x4) new_lt9(x0, x1, ty_Int) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_compare27(x0, x1, False, x2, x3, x4) new_ltEs14(x0, x1) new_esEs7(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_compare28(Char(x0), Char(x1)) new_compare16(x0, x1, app(app(ty_Either, x2), x3)) new_esEs17([], [], x0) new_esEs5(Left(x0), Left(x1), ty_@0, x2) new_compare12(x0, x1, x2, x3, True, x4, x5, x6) new_compare25(x0, x1, True, x2, x3) new_esEs19(x0, x1, ty_Integer) new_ltEs16(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_compare16(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs6(True, True) new_compare16(x0, x1, ty_@0) new_ltEs10(x0, x1, x2) new_ltEs11(x0, x1, x2) new_ltEs7(x0, x1, ty_Float) new_esEs18(x0, x1, ty_@0) new_lt6(x0, x1, x2) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs5(Right(x0), Right(x1), x2, ty_Integer) new_ltEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, ty_Bool) new_ltEs18(x0, x1) new_esEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_ltEs20(x0, x1, ty_Int) new_ltEs16(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs5(Right(x0), Right(x1), x2, ty_Bool) new_primEqNat0(Succ(x0), Zero) new_lt21(x0, x1, ty_Integer) new_esEs29(x0, x1, ty_@0) new_lt9(x0, x1, ty_@0) new_ltEs19(x0, x1, app(ty_[], x2)) new_ltEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs4(Right(x0), Right(x1), x2, ty_@0) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_lt9(x0, x1, ty_Bool) new_ltEs4(Left(x0), Left(x1), ty_@0, x2) new_lt20(x0, x1, ty_Bool) new_primCompAux0(x0, x1, x2, x3) new_esEs8(LT, GT) new_esEs8(GT, LT) new_primPlusNat1(Succ(x0), x1) new_compare110(x0, x1, True, x2) new_ltEs19(x0, x1, ty_Bool) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_ltEs16(Just(x0), Just(x1), ty_Integer) new_esEs5(Left(x0), Left(x1), ty_Double, x2) new_esEs28(x0, x1, app(ty_[], x2)) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_lt17(x0, x1, x2) new_ltEs20(x0, x1, ty_Float) new_ltEs20(x0, x1, ty_Char) new_ltEs15(EQ, LT) new_esEs26(x0, x1, ty_Integer) new_ltEs15(LT, EQ) new_esEs18(x0, x1, ty_Bool) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_lt18(x0, x1, x2, x3, x4) new_ltEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(x0, x1, app(app(ty_@2, x2), x3)) new_compare16(x0, x1, app(ty_Ratio, x2)) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs19(x0, x1, ty_Bool) new_ltEs15(GT, GT) new_ltEs20(x0, x1, ty_Ordering) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_asAs(False, x0) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_esEs26(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, ty_Float) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt21(x0, x1, ty_@0) new_esEs20(x0, x1, ty_Integer) new_esEs23(x0, x1, ty_@0) new_compare10(x0, x1, True) new_lt20(x0, x1, app(ty_[], x2)) new_compare8(x0, x1) new_fsEs(x0) new_primCmpNat0(Zero, Succ(x0)) new_ltEs4(Left(x0), Right(x1), x2, x3) new_primEqNat0(Zero, Zero) new_ltEs4(Right(x0), Left(x1), x2, x3) new_ltEs19(x0, x1, ty_Char) new_esEs18(x0, x1, ty_Integer) new_lt8(x0, x1, app(ty_Ratio, x2)) new_ltEs16(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(x0, x1, app(ty_Maybe, x2)) new_ltEs16(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs12(True, True) new_not(False) new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs28(x0, x1, ty_Double) new_lt20(x0, x1, app(ty_Ratio, x2)) new_compare18(:%(x0, x1), :%(x2, x3), ty_Integer) new_compare17(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare17(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_ltEs16(Just(x0), Just(x1), ty_@0) new_ltEs16(Nothing, Just(x0), x1) new_esEs5(Right(x0), Right(x1), x2, ty_Char) new_lt9(x0, x1, ty_Integer) new_primCompAux00(x0, GT) new_esEs6(Just(x0), Just(x1), ty_Bool) new_compare26(x0, x1, False) new_lt9(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(x0, x1, ty_Double) new_esEs5(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs19(x0, x1, ty_Integer) new_ltEs6(True, False) new_ltEs6(False, True) new_primMulNat0(Succ(x0), Zero) new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(Just(x0), Just(x1), ty_Float) new_esEs26(x0, x1, ty_Char) new_ltEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs19(x0, x1, ty_Char) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(Right(x0), Right(x1), x2, ty_Int) new_ltEs15(LT, LT) new_esEs22(x0, x1, app(ty_[], x2)) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_ltEs13(x0, x1) new_esEs20(x0, x1, ty_Bool) new_esEs6(Just(x0), Just(x1), ty_Char) new_ltEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_compare211(x0, x1, True, x2) new_lt8(x0, x1, ty_@0) new_compare13(x0, x1, x2, x3, False, x4, x5) new_esEs19(x0, x1, ty_Float) new_lt20(x0, x1, ty_Int) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, ty_Bool) new_esEs19(x0, x1, ty_Int) new_esEs20(x0, x1, ty_Char) new_esEs6(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs7(x0, x1, ty_Ordering) new_esEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs7(x0, x1, ty_Integer) new_esEs6(Just(x0), Just(x1), ty_Int) new_lt8(x0, x1, ty_Double) new_esEs22(x0, x1, ty_Double) new_compare32(@0, @0) new_lt20(x0, x1, ty_Char) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_primCmpNat0(Zero, Zero) new_esEs18(x0, x1, ty_Ordering) new_ltEs16(Just(x0), Nothing, x1) new_esEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_compare15(x0, x1, True) new_esEs5(Right(x0), Right(x1), x2, ty_Float) new_primMulInt(Neg(x0), Neg(x1)) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (19) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_lt3(vwx220, vwx240, da, db, dc) -> new_compare23(vwx220, vwx240, new_esEs7(vwx220, vwx240, da, db, dc), da, db, dc) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 *new_compare0(:(vwx2200, vwx2201), :(vwx2400, vwx2401), h) -> new_primCompAux(vwx2200, vwx2400, new_compare(vwx2201, vwx2401, h), h) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_compare0(:(vwx2200, vwx2201), :(vwx2400, vwx2401), h) -> new_compare0(vwx2201, vwx2401, h) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_lt0(vwx220, vwx240, cb, cc) -> new_compare20(vwx220, vwx240, new_esEs4(vwx220, vwx240, cb, cc), cb, cc) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_ltEs0(@2(vwx2210, vwx2211), @2(vwx2410, vwx2411), eh, app(app(app(ty_@3, fh), ga), gb)) -> new_ltEs3(vwx2211, vwx2411, fh, ga, gb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare23(vwx220, vwx240, False, da, db, dc) -> new_ltEs3(vwx220, vwx240, da, db, dc) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4, 6 >= 5 *new_ltEs3(@3(vwx2210, vwx2211, vwx2212), @3(vwx2410, vwx2411, vwx2412), bdc, bca, app(app(app(ty_@3, bfc), bfd), bfe)) -> new_ltEs3(vwx2212, vwx2412, bfc, bfd, bfe) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_ltEs0(@2(vwx2210, vwx2211), @2(vwx2410, vwx2411), app(ty_Maybe, ed), dg) -> new_lt2(vwx2210, vwx2410, ed) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_compare22(vwx220, vwx240, False, cg) -> new_ltEs2(vwx220, vwx240, cg) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3 *new_lt(:(vwx2200, vwx2201), :(vwx2400, vwx2401), h) -> new_primCompAux(vwx2200, vwx2400, new_compare(vwx2201, vwx2401, h), h) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_compare20(@2(:(vwx2200, vwx2201), vwx221), @2(:(vwx2400, vwx2401), vwx241), False, app(ty_[], h), cd) -> new_primCompAux(vwx2200, vwx2400, new_compare(vwx2201, vwx2401, h), h) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 *new_lt(:(vwx2200, vwx2201), :(vwx2400, vwx2401), h) -> new_compare0(vwx2201, vwx2401, h) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_lt2(vwx220, vwx240, cg) -> new_compare22(vwx220, vwx240, new_esEs6(vwx220, vwx240, cg), cg) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 *new_ltEs2(Just(vwx2210), Just(vwx2410), app(app(app(ty_@3, bbe), bbf), bbg)) -> new_ltEs3(vwx2210, vwx2410, bbe, bbf, bbg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs0(@2(vwx2210, vwx2211), @2(vwx2410, vwx2411), eh, app(ty_Maybe, fg)) -> new_ltEs2(vwx2211, vwx2411, fg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs3(@3(vwx2210, vwx2211, vwx2212), @3(vwx2410, vwx2411, vwx2412), bdc, bca, app(ty_Maybe, bfb)) -> new_ltEs2(vwx2212, vwx2412, bfb) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_ltEs2(Just(vwx2210), Just(vwx2410), app(ty_Maybe, bbd)) -> new_ltEs2(vwx2210, vwx2410, bbd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs0(@2(vwx2210, vwx2211), @2(vwx2410, vwx2411), eh, app(app(ty_Either, fd), ff)) -> new_ltEs1(vwx2211, vwx2411, fd, ff) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs3(@3(vwx2210, vwx2211, vwx2212), @3(vwx2410, vwx2411, vwx2412), bdc, bca, app(app(ty_Either, beh), bfa)) -> new_ltEs1(vwx2212, vwx2412, beh, bfa) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs2(Just(vwx2210), Just(vwx2410), app(app(ty_Either, bbb), bbc)) -> new_ltEs1(vwx2210, vwx2410, bbb, bbc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs(vwx221, vwx241, de) -> new_compare0(vwx221, vwx241, de) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_ltEs0(@2(vwx2210, vwx2211), @2(vwx2410, vwx2411), eh, app(app(ty_@2, fb), fc)) -> new_ltEs0(vwx2211, vwx2411, fb, fc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs3(@3(vwx2210, vwx2211, vwx2212), @3(vwx2410, vwx2411, vwx2412), bdc, bca, app(app(ty_@2, bef), beg)) -> new_ltEs0(vwx2212, vwx2412, bef, beg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs2(Just(vwx2210), Just(vwx2410), app(app(ty_@2, bah), bba)) -> new_ltEs0(vwx2210, vwx2410, bah, bba) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs2(Just(vwx2210), Just(vwx2410), app(ty_[], bag)) -> new_ltEs(vwx2210, vwx2410, bag) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_compare20(@2(vwx220, vwx221), @2(vwx240, vwx241), False, app(app(ty_@2, cb), cc), cd) -> new_compare20(vwx220, vwx240, new_esEs4(vwx220, vwx240, cb, cc), cb, cc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 *new_compare1(vwx220, vwx240, cb, cc) -> new_compare20(vwx220, vwx240, new_esEs4(vwx220, vwx240, cb, cc), cb, cc) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_compare21(vwx220, vwx240, False, ce, cf) -> new_ltEs1(vwx220, vwx240, ce, cf) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4 *new_primCompAux(vwx2200, vwx2400, vwx79, app(app(ty_Either, bd), be)) -> new_compare2(vwx2200, vwx2400, bd, be) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_lt1(vwx220, vwx240, ce, cf) -> new_compare21(vwx220, vwx240, new_esEs5(vwx220, vwx240, ce, cf), ce, cf) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_compare20(@2(vwx220, vwx221), @2(vwx240, vwx241), False, app(ty_Maybe, cg), cd) -> new_compare22(vwx220, vwx240, new_esEs6(vwx220, vwx240, cg), cg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 *new_compare3(vwx220, vwx240, cg) -> new_compare22(vwx220, vwx240, new_esEs6(vwx220, vwx240, cg), cg) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 *new_primCompAux(vwx2200, vwx2400, vwx79, app(ty_[], ba)) -> new_compare0(vwx2200, vwx2400, ba) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_compare20(@2(vwx220, vwx221), @2(vwx240, vwx241), False, app(app(ty_Either, ce), cf), cd) -> new_compare21(vwx220, vwx240, new_esEs5(vwx220, vwx240, ce, cf), ce, cf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 *new_compare2(vwx220, vwx240, ce, cf) -> new_compare21(vwx220, vwx240, new_esEs5(vwx220, vwx240, ce, cf), ce, cf) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_compare4(vwx220, vwx240, da, db, dc) -> new_compare23(vwx220, vwx240, new_esEs7(vwx220, vwx240, da, db, dc), da, db, dc) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 *new_ltEs0(@2(vwx2210, vwx2211), @2(vwx2410, vwx2411), app(app(ty_@2, dh), ea), dg) -> new_lt0(vwx2210, vwx2410, dh, ea) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs0(@2(vwx2210, vwx2211), @2(vwx2410, vwx2411), app(ty_[], df), dg) -> new_lt(vwx2210, vwx2410, df) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_primCompAux(vwx2200, vwx2400, vwx79, app(ty_Maybe, bf)) -> new_compare3(vwx2200, vwx2400, bf) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_primCompAux(vwx2200, vwx2400, vwx79, app(app(app(ty_@3, bg), bh), ca)) -> new_compare4(vwx2200, vwx2400, bg, bh, ca) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 *new_primCompAux(vwx2200, vwx2400, vwx79, app(app(ty_@2, bb), bc)) -> new_compare1(vwx2200, vwx2400, bb, bc) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_ltEs0(@2(vwx2210, vwx2211), @2(vwx2410, vwx2411), app(app(app(ty_@3, ee), ef), eg), dg) -> new_lt3(vwx2210, vwx2410, ee, ef, eg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs0(@2(vwx2210, vwx2211), @2(vwx2410, vwx2411), eh, app(ty_[], fa)) -> new_ltEs(vwx2211, vwx2411, fa) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs0(@2(vwx2210, vwx2211), @2(vwx2410, vwx2411), app(app(ty_Either, eb), ec), dg) -> new_lt1(vwx2210, vwx2410, eb, ec) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs3(@3(vwx2210, vwx2211, vwx2212), @3(vwx2410, vwx2411, vwx2412), bdc, bca, app(ty_[], bee)) -> new_ltEs(vwx2212, vwx2412, bee) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare20(@2(vwx220, vwx221), @2(vwx240, vwx241), False, app(app(app(ty_@3, da), db), dc), cd) -> new_compare23(vwx220, vwx240, new_esEs7(vwx220, vwx240, da, db, dc), da, db, dc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5, 4 > 6 *new_ltEs1(Left(vwx2210), Left(vwx2410), app(app(app(ty_@3, hb), hc), hd), gd) -> new_ltEs3(vwx2210, vwx2410, hb, hc, hd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs1(Right(vwx2210), Right(vwx2410), he, app(app(app(ty_@3, bad), bae), baf)) -> new_ltEs3(vwx2210, vwx2410, bad, bae, baf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(@2(vwx220, @2(vwx2210, vwx2211)), @2(vwx240, @2(vwx2410, vwx2411)), False, dd, app(app(ty_@2, eh), app(app(app(ty_@3, fh), ga), gb))) -> new_ltEs3(vwx2211, vwx2411, fh, ga, gb) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_compare20(@2(vwx220, Left(vwx2210)), @2(vwx240, Left(vwx2410)), False, dd, app(app(ty_Either, app(app(app(ty_@3, hb), hc), hd)), gd)) -> new_ltEs3(vwx2210, vwx2410, hb, hc, hd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_compare20(@2(vwx220, Just(vwx2210)), @2(vwx240, Just(vwx2410)), False, dd, app(ty_Maybe, app(app(app(ty_@3, bbe), bbf), bbg))) -> new_ltEs3(vwx2210, vwx2410, bbe, bbf, bbg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_compare20(@2(vwx220, @3(vwx2210, vwx2211, vwx2212)), @2(vwx240, @3(vwx2410, vwx2411, vwx2412)), False, dd, app(app(app(ty_@3, bdc), bca), app(app(app(ty_@3, bfc), bfd), bfe))) -> new_ltEs3(vwx2212, vwx2412, bfc, bfd, bfe) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_compare20(@2(vwx220, Right(vwx2210)), @2(vwx240, Right(vwx2410)), False, dd, app(app(ty_Either, he), app(app(app(ty_@3, bad), bae), baf))) -> new_ltEs3(vwx2210, vwx2410, bad, bae, baf) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_ltEs3(@3(vwx2210, vwx2211, vwx2212), @3(vwx2410, vwx2411, vwx2412), bdc, app(ty_Maybe, bea), bcb) -> new_lt2(vwx2211, vwx2411, bea) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs3(@3(vwx2210, vwx2211, vwx2212), @3(vwx2410, vwx2411, vwx2412), app(ty_Maybe, bcg), bca, bcb) -> new_lt2(vwx2210, vwx2410, bcg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs3(@3(vwx2210, vwx2211, vwx2212), @3(vwx2410, vwx2411, vwx2412), app(app(ty_@2, bcc), bcd), bca, bcb) -> new_lt0(vwx2210, vwx2410, bcc, bcd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs3(@3(vwx2210, vwx2211, vwx2212), @3(vwx2410, vwx2411, vwx2412), bdc, app(app(ty_@2, bde), bdf), bcb) -> new_lt0(vwx2211, vwx2411, bde, bdf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs3(@3(vwx2210, vwx2211, vwx2212), @3(vwx2410, vwx2411, vwx2412), bdc, app(ty_[], bdd), bcb) -> new_lt(vwx2211, vwx2411, bdd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs3(@3(vwx2210, vwx2211, vwx2212), @3(vwx2410, vwx2411, vwx2412), app(ty_[], bbh), bca, bcb) -> new_lt(vwx2210, vwx2410, bbh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs3(@3(vwx2210, vwx2211, vwx2212), @3(vwx2410, vwx2411, vwx2412), app(app(app(ty_@3, bch), bda), bdb), bca, bcb) -> new_lt3(vwx2210, vwx2410, bch, bda, bdb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs3(@3(vwx2210, vwx2211, vwx2212), @3(vwx2410, vwx2411, vwx2412), bdc, app(app(app(ty_@3, beb), bec), bed), bcb) -> new_lt3(vwx2211, vwx2411, beb, bec, bed) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs3(@3(vwx2210, vwx2211, vwx2212), @3(vwx2410, vwx2411, vwx2412), app(app(ty_Either, bce), bcf), bca, bcb) -> new_lt1(vwx2210, vwx2410, bce, bcf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs3(@3(vwx2210, vwx2211, vwx2212), @3(vwx2410, vwx2411, vwx2412), bdc, app(app(ty_Either, bdg), bdh), bcb) -> new_lt1(vwx2211, vwx2411, bdg, bdh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs1(Left(vwx2210), Left(vwx2410), app(ty_Maybe, ha), gd) -> new_ltEs2(vwx2210, vwx2410, ha) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs1(Right(vwx2210), Right(vwx2410), he, app(ty_Maybe, bac)) -> new_ltEs2(vwx2210, vwx2410, bac) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs1(Right(vwx2210), Right(vwx2410), he, app(app(ty_Either, baa), bab)) -> new_ltEs1(vwx2210, vwx2410, baa, bab) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs1(Left(vwx2210), Left(vwx2410), app(app(ty_Either, gg), gh), gd) -> new_ltEs1(vwx2210, vwx2410, gg, gh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs1(Left(vwx2210), Left(vwx2410), app(app(ty_@2, ge), gf), gd) -> new_ltEs0(vwx2210, vwx2410, ge, gf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs1(Right(vwx2210), Right(vwx2410), he, app(app(ty_@2, hg), hh)) -> new_ltEs0(vwx2210, vwx2410, hg, hh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs1(Right(vwx2210), Right(vwx2410), he, app(ty_[], hf)) -> new_ltEs(vwx2210, vwx2410, hf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs1(Left(vwx2210), Left(vwx2410), app(ty_[], gc), gd) -> new_ltEs(vwx2210, vwx2410, gc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_compare20(@2(vwx220, @3(vwx2210, vwx2211, vwx2212)), @2(vwx240, @3(vwx2410, vwx2411, vwx2412)), False, dd, app(app(app(ty_@3, app(ty_Maybe, bcg)), bca), bcb)) -> new_lt2(vwx2210, vwx2410, bcg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare20(@2(vwx220, @3(vwx2210, vwx2211, vwx2212)), @2(vwx240, @3(vwx2410, vwx2411, vwx2412)), False, dd, app(app(app(ty_@3, bdc), app(ty_Maybe, bea)), bcb)) -> new_lt2(vwx2211, vwx2411, bea) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare20(@2(vwx220, @2(vwx2210, vwx2211)), @2(vwx240, @2(vwx2410, vwx2411)), False, dd, app(app(ty_@2, app(ty_Maybe, ed)), dg)) -> new_lt2(vwx2210, vwx2410, ed) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare20(@2(vwx220, @3(vwx2210, vwx2211, vwx2212)), @2(vwx240, @3(vwx2410, vwx2411, vwx2412)), False, dd, app(app(app(ty_@3, bdc), bca), app(ty_Maybe, bfb))) -> new_ltEs2(vwx2212, vwx2412, bfb) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare20(@2(vwx220, @2(vwx2210, vwx2211)), @2(vwx240, @2(vwx2410, vwx2411)), False, dd, app(app(ty_@2, eh), app(ty_Maybe, fg))) -> new_ltEs2(vwx2211, vwx2411, fg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare20(@2(vwx220, Just(vwx2210)), @2(vwx240, Just(vwx2410)), False, dd, app(ty_Maybe, app(ty_Maybe, bbd))) -> new_ltEs2(vwx2210, vwx2410, bbd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare20(@2(vwx220, Left(vwx2210)), @2(vwx240, Left(vwx2410)), False, dd, app(app(ty_Either, app(ty_Maybe, ha)), gd)) -> new_ltEs2(vwx2210, vwx2410, ha) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare20(@2(vwx220, Right(vwx2210)), @2(vwx240, Right(vwx2410)), False, dd, app(app(ty_Either, he), app(ty_Maybe, bac))) -> new_ltEs2(vwx2210, vwx2410, bac) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare20(@2(vwx220, Right(vwx2210)), @2(vwx240, Right(vwx2410)), False, dd, app(app(ty_Either, he), app(app(ty_Either, baa), bab))) -> new_ltEs1(vwx2210, vwx2410, baa, bab) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare20(@2(vwx220, @2(vwx2210, vwx2211)), @2(vwx240, @2(vwx2410, vwx2411)), False, dd, app(app(ty_@2, eh), app(app(ty_Either, fd), ff))) -> new_ltEs1(vwx2211, vwx2411, fd, ff) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare20(@2(vwx220, @3(vwx2210, vwx2211, vwx2212)), @2(vwx240, @3(vwx2410, vwx2411, vwx2412)), False, dd, app(app(app(ty_@3, bdc), bca), app(app(ty_Either, beh), bfa))) -> new_ltEs1(vwx2212, vwx2412, beh, bfa) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare20(@2(vwx220, Left(vwx2210)), @2(vwx240, Left(vwx2410)), False, dd, app(app(ty_Either, app(app(ty_Either, gg), gh)), gd)) -> new_ltEs1(vwx2210, vwx2410, gg, gh) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare20(@2(vwx220, Just(vwx2210)), @2(vwx240, Just(vwx2410)), False, dd, app(ty_Maybe, app(app(ty_Either, bbb), bbc))) -> new_ltEs1(vwx2210, vwx2410, bbb, bbc) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare20(@2(vwx220, @2(vwx2210, vwx2211)), @2(vwx240, @2(vwx2410, vwx2411)), False, dd, app(app(ty_@2, eh), app(app(ty_@2, fb), fc))) -> new_ltEs0(vwx2211, vwx2411, fb, fc) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare20(@2(vwx220, Left(vwx2210)), @2(vwx240, Left(vwx2410)), False, dd, app(app(ty_Either, app(app(ty_@2, ge), gf)), gd)) -> new_ltEs0(vwx2210, vwx2410, ge, gf) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare20(@2(vwx220, Just(vwx2210)), @2(vwx240, Just(vwx2410)), False, dd, app(ty_Maybe, app(app(ty_@2, bah), bba))) -> new_ltEs0(vwx2210, vwx2410, bah, bba) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare20(@2(vwx220, @3(vwx2210, vwx2211, vwx2212)), @2(vwx240, @3(vwx2410, vwx2411, vwx2412)), False, dd, app(app(app(ty_@3, bdc), bca), app(app(ty_@2, bef), beg))) -> new_ltEs0(vwx2212, vwx2412, bef, beg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare20(@2(vwx220, Right(vwx2210)), @2(vwx240, Right(vwx2410)), False, dd, app(app(ty_Either, he), app(app(ty_@2, hg), hh))) -> new_ltEs0(vwx2210, vwx2410, hg, hh) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare20(@2(vwx220, vwx221), @2(vwx240, vwx241), False, dd, app(ty_[], de)) -> new_compare0(vwx221, vwx241, de) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare20(@2(:(vwx2200, vwx2201), vwx221), @2(:(vwx2400, vwx2401), vwx241), False, app(ty_[], h), cd) -> new_compare0(vwx2201, vwx2401, h) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@2(vwx220, @3(vwx2210, vwx2211, vwx2212)), @2(vwx240, @3(vwx2410, vwx2411, vwx2412)), False, dd, app(app(app(ty_@3, app(app(ty_@2, bcc), bcd)), bca), bcb)) -> new_lt0(vwx2210, vwx2410, bcc, bcd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare20(@2(vwx220, @3(vwx2210, vwx2211, vwx2212)), @2(vwx240, @3(vwx2410, vwx2411, vwx2412)), False, dd, app(app(app(ty_@3, bdc), app(app(ty_@2, bde), bdf)), bcb)) -> new_lt0(vwx2211, vwx2411, bde, bdf) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare20(@2(vwx220, @2(vwx2210, vwx2211)), @2(vwx240, @2(vwx2410, vwx2411)), False, dd, app(app(ty_@2, app(app(ty_@2, dh), ea)), dg)) -> new_lt0(vwx2210, vwx2410, dh, ea) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare20(@2(vwx220, @2(vwx2210, vwx2211)), @2(vwx240, @2(vwx2410, vwx2411)), False, dd, app(app(ty_@2, app(ty_[], df)), dg)) -> new_lt(vwx2210, vwx2410, df) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare20(@2(vwx220, @3(vwx2210, vwx2211, vwx2212)), @2(vwx240, @3(vwx2410, vwx2411, vwx2412)), False, dd, app(app(app(ty_@3, app(ty_[], bbh)), bca), bcb)) -> new_lt(vwx2210, vwx2410, bbh) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare20(@2(vwx220, @3(vwx2210, vwx2211, vwx2212)), @2(vwx240, @3(vwx2410, vwx2411, vwx2412)), False, dd, app(app(app(ty_@3, bdc), app(ty_[], bdd)), bcb)) -> new_lt(vwx2211, vwx2411, bdd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare20(@2(vwx220, @3(vwx2210, vwx2211, vwx2212)), @2(vwx240, @3(vwx2410, vwx2411, vwx2412)), False, dd, app(app(app(ty_@3, app(app(app(ty_@3, bch), bda), bdb)), bca), bcb)) -> new_lt3(vwx2210, vwx2410, bch, bda, bdb) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_compare20(@2(vwx220, @3(vwx2210, vwx2211, vwx2212)), @2(vwx240, @3(vwx2410, vwx2411, vwx2412)), False, dd, app(app(app(ty_@3, bdc), app(app(app(ty_@3, beb), bec), bed)), bcb)) -> new_lt3(vwx2211, vwx2411, beb, bec, bed) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_compare20(@2(vwx220, @2(vwx2210, vwx2211)), @2(vwx240, @2(vwx2410, vwx2411)), False, dd, app(app(ty_@2, app(app(app(ty_@3, ee), ef), eg)), dg)) -> new_lt3(vwx2210, vwx2410, ee, ef, eg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_compare20(@2(vwx220, @2(vwx2210, vwx2211)), @2(vwx240, @2(vwx2410, vwx2411)), False, dd, app(app(ty_@2, eh), app(ty_[], fa))) -> new_ltEs(vwx2211, vwx2411, fa) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare20(@2(vwx220, Right(vwx2210)), @2(vwx240, Right(vwx2410)), False, dd, app(app(ty_Either, he), app(ty_[], hf))) -> new_ltEs(vwx2210, vwx2410, hf) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare20(@2(vwx220, Left(vwx2210)), @2(vwx240, Left(vwx2410)), False, dd, app(app(ty_Either, app(ty_[], gc)), gd)) -> new_ltEs(vwx2210, vwx2410, gc) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare20(@2(vwx220, Just(vwx2210)), @2(vwx240, Just(vwx2410)), False, dd, app(ty_Maybe, app(ty_[], bag))) -> new_ltEs(vwx2210, vwx2410, bag) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare20(@2(vwx220, @3(vwx2210, vwx2211, vwx2212)), @2(vwx240, @3(vwx2410, vwx2411, vwx2412)), False, dd, app(app(app(ty_@3, bdc), bca), app(ty_[], bee))) -> new_ltEs(vwx2212, vwx2412, bee) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare20(@2(vwx220, @3(vwx2210, vwx2211, vwx2212)), @2(vwx240, @3(vwx2410, vwx2411, vwx2412)), False, dd, app(app(app(ty_@3, app(app(ty_Either, bce), bcf)), bca), bcb)) -> new_lt1(vwx2210, vwx2410, bce, bcf) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare20(@2(vwx220, @2(vwx2210, vwx2211)), @2(vwx240, @2(vwx2410, vwx2411)), False, dd, app(app(ty_@2, app(app(ty_Either, eb), ec)), dg)) -> new_lt1(vwx2210, vwx2410, eb, ec) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare20(@2(vwx220, @3(vwx2210, vwx2211, vwx2212)), @2(vwx240, @3(vwx2410, vwx2411, vwx2412)), False, dd, app(app(app(ty_@3, bdc), app(app(ty_Either, bdg), bdh)), bcb)) -> new_lt1(vwx2211, vwx2411, bdg, bdh) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 ---------------------------------------- (20) YES ---------------------------------------- (21) Obligation: Q DP problem: The TRS P consists of the following rules: new_primMulNat(Succ(vwx30000), Succ(vwx40100)) -> new_primMulNat(vwx30000, Succ(vwx40100)) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (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(vwx30000), Succ(vwx40100)) -> new_primMulNat(vwx30000, Succ(vwx40100)) 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_esEs1(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), he, gd, app(app(ty_Either, bba), bbb)) -> new_esEs0(vwx302, vwx402, bba, bbb) new_esEs1(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), he, app(app(ty_Either, hh), baa), ge) -> new_esEs0(vwx301, vwx401, hh, baa) new_esEs1(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(app(ty_Either, gf), gg), gd, ge) -> new_esEs0(vwx300, vwx400, gf, gg) new_esEs1(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), he, app(ty_[], baf), ge) -> new_esEs3(vwx301, vwx401, baf) new_esEs2(Just(vwx300), Just(vwx400), app(app(ty_@2, bbh), bca)) -> new_esEs(vwx300, vwx400, bbh, bca) new_esEs0(Left(vwx300), Left(vwx400), app(ty_Maybe, ee), dg) -> new_esEs2(vwx300, vwx400, ee) new_esEs0(Right(vwx300), Right(vwx400), eg, app(ty_[], ga)) -> new_esEs3(vwx300, vwx400, ga) new_esEs(@2(vwx300, vwx301), @2(vwx400, vwx401), app(app(ty_@2, h), ba), bb) -> new_esEs(vwx300, vwx400, h, ba) new_esEs3(:(vwx300, vwx301), :(vwx400, vwx401), app(ty_Maybe, bdh)) -> new_esEs2(vwx300, vwx400, bdh) new_esEs(@2(vwx300, vwx301), @2(vwx400, vwx401), cb, app(ty_[], dd)) -> new_esEs3(vwx301, vwx401, dd) new_esEs0(Right(vwx300), Right(vwx400), eg, app(app(ty_Either, fb), fc)) -> new_esEs0(vwx300, vwx400, fb, fc) new_esEs1(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(app(app(ty_@3, gh), ha), hb), gd, ge) -> new_esEs1(vwx300, vwx400, gh, ha, hb) new_esEs1(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(ty_[], hd), gd, ge) -> new_esEs3(vwx300, vwx400, hd) new_esEs0(Left(vwx300), Left(vwx400), app(app(ty_@2, de), df), dg) -> new_esEs(vwx300, vwx400, de, df) new_esEs(@2(vwx300, vwx301), @2(vwx400, vwx401), cb, app(ty_Maybe, dc)) -> new_esEs2(vwx301, vwx401, dc) new_esEs3(:(vwx300, vwx301), :(vwx400, vwx401), app(ty_[], bea)) -> new_esEs3(vwx300, vwx400, bea) new_esEs(@2(vwx300, vwx301), @2(vwx400, vwx401), app(app(app(ty_@3, be), bf), bg), bb) -> new_esEs1(vwx300, vwx400, be, bf, bg) new_esEs2(Just(vwx300), Just(vwx400), app(ty_Maybe, bcg)) -> new_esEs2(vwx300, vwx400, bcg) new_esEs(@2(vwx300, vwx301), @2(vwx400, vwx401), app(ty_Maybe, bh), bb) -> new_esEs2(vwx300, vwx400, bh) new_esEs1(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), he, app(app(ty_@2, hf), hg), ge) -> new_esEs(vwx301, vwx401, hf, hg) new_esEs1(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), he, gd, app(app(ty_@2, bag), bah)) -> new_esEs(vwx302, vwx402, bag, bah) new_esEs2(Just(vwx300), Just(vwx400), app(ty_[], bch)) -> new_esEs3(vwx300, vwx400, bch) new_esEs0(Right(vwx300), Right(vwx400), eg, app(ty_Maybe, fh)) -> new_esEs2(vwx300, vwx400, fh) new_esEs(@2(vwx300, vwx301), @2(vwx400, vwx401), cb, app(app(ty_@2, cc), cd)) -> new_esEs(vwx301, vwx401, cc, cd) new_esEs0(Right(vwx300), Right(vwx400), eg, app(app(ty_@2, eh), fa)) -> new_esEs(vwx300, vwx400, eh, fa) new_esEs(@2(vwx300, vwx301), @2(vwx400, vwx401), cb, app(app(app(ty_@3, cg), da), db)) -> new_esEs1(vwx301, vwx401, cg, da, db) new_esEs1(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(ty_Maybe, hc), gd, ge) -> new_esEs2(vwx300, vwx400, hc) new_esEs3(:(vwx300, vwx301), :(vwx400, vwx401), app(app(ty_@2, bda), bdb)) -> new_esEs(vwx300, vwx400, bda, bdb) new_esEs3(:(vwx300, vwx301), :(vwx400, vwx401), app(app(app(ty_@3, bde), bdf), bdg)) -> new_esEs1(vwx300, vwx400, bde, bdf, bdg) new_esEs(@2(vwx300, vwx301), @2(vwx400, vwx401), app(app(ty_Either, bc), bd), bb) -> new_esEs0(vwx300, vwx400, bc, bd) new_esEs0(Left(vwx300), Left(vwx400), app(ty_[], ef), dg) -> new_esEs3(vwx300, vwx400, ef) new_esEs0(Left(vwx300), Left(vwx400), app(app(ty_Either, dh), ea), dg) -> new_esEs0(vwx300, vwx400, dh, ea) new_esEs(@2(vwx300, vwx301), @2(vwx400, vwx401), cb, app(app(ty_Either, ce), cf)) -> new_esEs0(vwx301, vwx401, ce, cf) new_esEs3(:(vwx300, vwx301), :(vwx400, vwx401), beb) -> new_esEs3(vwx301, vwx401, beb) new_esEs2(Just(vwx300), Just(vwx400), app(app(ty_Either, bcb), bcc)) -> new_esEs0(vwx300, vwx400, bcb, bcc) new_esEs1(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), he, gd, app(app(app(ty_@3, bbc), bbd), bbe)) -> new_esEs1(vwx302, vwx402, bbc, bbd, bbe) new_esEs2(Just(vwx300), Just(vwx400), app(app(app(ty_@3, bcd), bce), bcf)) -> new_esEs1(vwx300, vwx400, bcd, bce, bcf) new_esEs(@2(vwx300, vwx301), @2(vwx400, vwx401), app(ty_[], ca), bb) -> new_esEs3(vwx300, vwx400, ca) new_esEs1(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(app(ty_@2, gb), gc), gd, ge) -> new_esEs(vwx300, vwx400, gb, gc) new_esEs0(Left(vwx300), Left(vwx400), app(app(app(ty_@3, eb), ec), ed), dg) -> new_esEs1(vwx300, vwx400, eb, ec, ed) new_esEs0(Right(vwx300), Right(vwx400), eg, app(app(app(ty_@3, fd), ff), fg)) -> new_esEs1(vwx300, vwx400, fd, ff, fg) new_esEs1(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), he, gd, app(ty_[], bbg)) -> new_esEs3(vwx302, vwx402, bbg) new_esEs1(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), he, app(app(app(ty_@3, bab), bac), bad), ge) -> new_esEs1(vwx301, vwx401, bab, bac, bad) new_esEs1(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), he, gd, app(ty_Maybe, bbf)) -> new_esEs2(vwx302, vwx402, bbf) new_esEs3(:(vwx300, vwx301), :(vwx400, vwx401), app(app(ty_Either, bdc), bdd)) -> new_esEs0(vwx300, vwx400, bdc, bdd) new_esEs1(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), he, app(ty_Maybe, bae), ge) -> new_esEs2(vwx301, vwx401, bae) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (25) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_esEs3(:(vwx300, vwx301), :(vwx400, vwx401), app(app(app(ty_@3, bde), bdf), bdg)) -> new_esEs1(vwx300, vwx400, bde, bdf, bdg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs3(:(vwx300, vwx301), :(vwx400, vwx401), app(ty_Maybe, bdh)) -> new_esEs2(vwx300, vwx400, bdh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(Just(vwx300), Just(vwx400), app(app(app(ty_@3, bcd), bce), bcf)) -> new_esEs1(vwx300, vwx400, bcd, bce, bcf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs3(:(vwx300, vwx301), :(vwx400, vwx401), app(app(ty_Either, bdc), bdd)) -> new_esEs0(vwx300, vwx400, bdc, bdd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(Just(vwx300), Just(vwx400), app(ty_Maybe, bcg)) -> new_esEs2(vwx300, vwx400, bcg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(Just(vwx300), Just(vwx400), app(app(ty_Either, bcb), bcc)) -> new_esEs0(vwx300, vwx400, bcb, bcc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(:(vwx300, vwx301), :(vwx400, vwx401), app(app(ty_@2, bda), bdb)) -> new_esEs(vwx300, vwx400, bda, bdb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(Just(vwx300), Just(vwx400), app(app(ty_@2, bbh), bca)) -> new_esEs(vwx300, vwx400, bbh, bca) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(Just(vwx300), Just(vwx400), app(ty_[], bch)) -> new_esEs3(vwx300, vwx400, bch) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(Left(vwx300), Left(vwx400), app(app(app(ty_@3, eb), ec), ed), dg) -> new_esEs1(vwx300, vwx400, eb, ec, ed) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs0(Right(vwx300), Right(vwx400), eg, app(app(app(ty_@3, fd), ff), fg)) -> new_esEs1(vwx300, vwx400, fd, ff, fg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs0(Left(vwx300), Left(vwx400), app(ty_Maybe, ee), dg) -> new_esEs2(vwx300, vwx400, ee) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(Right(vwx300), Right(vwx400), eg, app(ty_Maybe, fh)) -> new_esEs2(vwx300, vwx400, fh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs0(Right(vwx300), Right(vwx400), eg, app(app(ty_Either, fb), fc)) -> new_esEs0(vwx300, vwx400, fb, fc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs0(Left(vwx300), Left(vwx400), app(app(ty_Either, dh), ea), dg) -> new_esEs0(vwx300, vwx400, dh, ea) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(Left(vwx300), Left(vwx400), app(app(ty_@2, de), df), dg) -> new_esEs(vwx300, vwx400, de, df) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(Right(vwx300), Right(vwx400), eg, app(app(ty_@2, eh), fa)) -> new_esEs(vwx300, vwx400, eh, fa) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs0(Right(vwx300), Right(vwx400), eg, app(ty_[], ga)) -> new_esEs3(vwx300, vwx400, ga) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs0(Left(vwx300), Left(vwx400), app(ty_[], ef), dg) -> new_esEs3(vwx300, vwx400, ef) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(@2(vwx300, vwx301), @2(vwx400, vwx401), app(app(app(ty_@3, be), bf), bg), bb) -> new_esEs1(vwx300, vwx400, be, bf, bg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs(@2(vwx300, vwx301), @2(vwx400, vwx401), cb, app(app(app(ty_@3, cg), da), db)) -> new_esEs1(vwx301, vwx401, cg, da, db) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs1(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(app(app(ty_@3, gh), ha), hb), gd, ge) -> new_esEs1(vwx300, vwx400, gh, ha, hb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs1(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), he, gd, app(app(app(ty_@3, bbc), bbd), bbe)) -> new_esEs1(vwx302, vwx402, bbc, bbd, bbe) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_esEs1(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), he, app(app(app(ty_@3, bab), bac), bad), ge) -> new_esEs1(vwx301, vwx401, bab, bac, bad) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs3(:(vwx300, vwx301), :(vwx400, vwx401), app(ty_[], bea)) -> new_esEs3(vwx300, vwx400, bea) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(:(vwx300, vwx301), :(vwx400, vwx401), beb) -> new_esEs3(vwx301, vwx401, beb) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_esEs(@2(vwx300, vwx301), @2(vwx400, vwx401), cb, app(ty_Maybe, dc)) -> new_esEs2(vwx301, vwx401, dc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs(@2(vwx300, vwx301), @2(vwx400, vwx401), app(ty_Maybe, bh), bb) -> new_esEs2(vwx300, vwx400, bh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(@2(vwx300, vwx301), @2(vwx400, vwx401), app(app(ty_Either, bc), bd), bb) -> new_esEs0(vwx300, vwx400, bc, bd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(@2(vwx300, vwx301), @2(vwx400, vwx401), cb, app(app(ty_Either, ce), cf)) -> new_esEs0(vwx301, vwx401, ce, cf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs(@2(vwx300, vwx301), @2(vwx400, vwx401), app(app(ty_@2, h), ba), bb) -> new_esEs(vwx300, vwx400, h, ba) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(@2(vwx300, vwx301), @2(vwx400, vwx401), cb, app(app(ty_@2, cc), cd)) -> new_esEs(vwx301, vwx401, cc, cd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs(@2(vwx300, vwx301), @2(vwx400, vwx401), cb, app(ty_[], dd)) -> new_esEs3(vwx301, vwx401, dd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs(@2(vwx300, vwx301), @2(vwx400, vwx401), app(ty_[], ca), bb) -> new_esEs3(vwx300, vwx400, ca) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(ty_Maybe, hc), gd, ge) -> new_esEs2(vwx300, vwx400, hc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), he, gd, app(ty_Maybe, bbf)) -> new_esEs2(vwx302, vwx402, bbf) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs1(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), he, app(ty_Maybe, bae), ge) -> new_esEs2(vwx301, vwx401, bae) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs1(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), he, gd, app(app(ty_Either, bba), bbb)) -> new_esEs0(vwx302, vwx402, bba, bbb) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs1(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), he, app(app(ty_Either, hh), baa), ge) -> new_esEs0(vwx301, vwx401, hh, baa) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs1(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(app(ty_Either, gf), gg), gd, ge) -> new_esEs0(vwx300, vwx400, gf, gg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), he, app(app(ty_@2, hf), hg), ge) -> new_esEs(vwx301, vwx401, hf, hg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs1(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), he, gd, app(app(ty_@2, bag), bah)) -> new_esEs(vwx302, vwx402, bag, bah) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs1(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(app(ty_@2, gb), gc), gd, ge) -> new_esEs(vwx300, vwx400, gb, gc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), he, app(ty_[], baf), ge) -> new_esEs3(vwx301, vwx401, baf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs1(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(ty_[], hd), gd, ge) -> new_esEs3(vwx300, vwx400, hd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), he, gd, app(ty_[], bbg)) -> new_esEs3(vwx302, vwx402, bbg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 ---------------------------------------- (26) YES ---------------------------------------- (27) Obligation: Q DP problem: The TRS P consists of the following rules: new_primEqNat(Succ(vwx3000), Succ(vwx4000)) -> new_primEqNat(vwx3000, vwx4000) 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(vwx3000), Succ(vwx4000)) -> new_primEqNat(vwx3000, vwx4000) 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(vwx5600), Succ(vwx401000)) -> new_primPlusNat(vwx5600, vwx401000) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (31) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_primPlusNat(Succ(vwx5600), Succ(vwx401000)) -> new_primPlusNat(vwx5600, vwx401000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (32) YES