/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, 17 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, 239 ms] (20) YES (21) QDP (22) QDPSizeChangeProof [EQUIVALENT, 0 ms] (23) YES (24) QDP (25) QDPSizeChangeProof [EQUIVALENT, 0 ms] (26) YES (27) QDP (28) QDPSizeChangeProof [EQUIVALENT, 0 ms] (29) YES (30) QDP (31) QDPSizeChangeProof [EQUIVALENT, 0 ms] (32) YES ---------------------------------------- (0) Obligation: mainModule Main module Main where { import qualified Prelude; } ---------------------------------------- (1) CR (EQUIVALENT) Case Reductions: The following Case expression "case compare x y of { EQ -> o; LT -> LT; GT -> GT} " is transformed to "primCompAux0 o EQ = o; primCompAux0 o LT = LT; primCompAux0 o GT = GT; " ---------------------------------------- (2) Obligation: mainModule Main module Main where { import qualified Prelude; } ---------------------------------------- (3) IFR (EQUIVALENT) If Reductions: The following If expression "if primGEqNatS x y then Succ (primDivNatS (primMinusNatS x y) (Succ y)) else Zero" is transformed to "primDivNatS0 x y True = Succ (primDivNatS (primMinusNatS x y) (Succ y)); primDivNatS0 x y False = Zero; " The following If expression "if primGEqNatS x y then primModNatS (primMinusNatS x y) (Succ y) else Succ x" is transformed to "primModNatS0 x y True = primModNatS (primMinusNatS x y) (Succ y); primModNatS0 x y False = Succ x; " ---------------------------------------- (4) Obligation: mainModule Main module Main where { import qualified Prelude; } ---------------------------------------- (5) BR (EQUIVALENT) Replaced joker patterns by fresh variables and removed binding patterns. ---------------------------------------- (6) Obligation: mainModule Main module Main where { import qualified Prelude; } ---------------------------------------- (7) COR (EQUIVALENT) Cond Reductions: The following Function with conditions "absReal x|x >= 0x|otherwise`negate` x; " is transformed to "absReal x = absReal2 x; " "absReal0 x True = `negate` x; " "absReal1 x True = x; absReal1 x False = absReal0 x otherwise; " "absReal2 x = absReal1 x (x >= 0); " The following Function with conditions "gcd' x 0 = x; gcd' x y = gcd' y (x `rem` y); " is transformed to "gcd' x zx = gcd'2 x zx; gcd' x y = gcd'0 x y; " "gcd'0 x y = gcd' y (x `rem` y); " "gcd'1 True x zx = x; gcd'1 zy zz vuu = gcd'0 zz vuu; " "gcd'2 x zx = gcd'1 (zx == 0) x zx; gcd'2 vuv vuw = gcd'0 vuv vuw; " The following Function with conditions "gcd 0 0 = error []; gcd x y = gcd' (abs x) (abs y) where { gcd' x 0 = x; gcd' x y = gcd' y (x `rem` y); } ; " is transformed to "gcd vux vuy = gcd3 vux vuy; gcd x y = gcd0 x y; " "gcd0 x y = gcd' (abs x) (abs y) where { gcd' x zx = gcd'2 x zx; gcd' x y = gcd'0 x y; ; gcd'0 x y = gcd' y (x `rem` y); ; gcd'1 True x zx = x; gcd'1 zy zz vuu = gcd'0 zz vuu; ; gcd'2 x zx = gcd'1 (zx == 0) x zx; gcd'2 vuv vuw = gcd'0 vuv vuw; } ; " "gcd1 True vux vuy = error []; gcd1 vuz vvu vvv = gcd0 vvu vvv; " "gcd2 True vux vuy = gcd1 (vuy == 0) vux vuy; gcd2 vvw vvx vvy = gcd0 vvx vvy; " "gcd3 vux vuy = gcd2 (vux == 0) vux vuy; gcd3 vvz vwu = gcd0 vvz vwu; " The following Function with conditions "undefined |Falseundefined; " is transformed to "undefined = undefined1; " "undefined0 True = undefined; " "undefined1 = undefined0 False; " The following Function with conditions "reduce x y|y == 0error []|otherwisex `quot` d :% (y `quot` d) where { d = gcd x y; } ; " is transformed to "reduce x y = reduce2 x y; " "reduce2 x y = reduce1 x y (y == 0) where { d = gcd x y; ; reduce0 x y True = x `quot` d :% (y `quot` d); ; reduce1 x y True = error []; reduce1 x y False = reduce0 x y otherwise; } ; " The following Function with conditions "compare x y|x == yEQ|x <= yLT|otherwiseGT; " is transformed to "compare x y = compare3 x y; " "compare1 x y True = LT; compare1 x y False = compare0 x y otherwise; " "compare2 x y True = EQ; compare2 x y False = compare1 x y (x <= y); " "compare0 x y True = GT; " "compare3 x y = compare2 x y (x == y); " ---------------------------------------- (8) Obligation: mainModule Main module Main where { import qualified Prelude; } ---------------------------------------- (9) LetRed (EQUIVALENT) Let/Where Reductions: The bindings of the following Let/Where expression "gcd' (abs x) (abs y) where { gcd' x zx = gcd'2 x zx; gcd' x y = gcd'0 x y; ; gcd'0 x y = gcd' y (x `rem` y); ; gcd'1 True x zx = x; gcd'1 zy zz vuu = gcd'0 zz vuu; ; gcd'2 x zx = gcd'1 (zx == 0) x zx; gcd'2 vuv vuw = gcd'0 vuv vuw; } " are unpacked to the following functions on top level "gcd0Gcd'1 True x zx = x; gcd0Gcd'1 zy zz vuu = gcd0Gcd'0 zz vuu; " "gcd0Gcd'0 x y = gcd0Gcd' y (x `rem` y); " "gcd0Gcd' x zx = gcd0Gcd'2 x zx; gcd0Gcd' x y = gcd0Gcd'0 x y; " "gcd0Gcd'2 x zx = gcd0Gcd'1 (zx == 0) x zx; gcd0Gcd'2 vuv vuw = gcd0Gcd'0 vuv vuw; " The bindings of the following Let/Where expression "reduce1 x y (y == 0) where { d = gcd x y; ; reduce0 x y True = x `quot` d :% (y `quot` d); ; reduce1 x y True = error []; reduce1 x y False = reduce0 x y otherwise; } " are unpacked to the following functions on top level "reduce2D vwv vww = gcd vwv vww; " "reduce2Reduce0 vwv vww x y True = x `quot` reduce2D vwv vww :% (y `quot` reduce2D vwv vww); " "reduce2Reduce1 vwv vww x y True = error []; reduce2Reduce1 vwv vww x y False = reduce2Reduce0 vwv vww x y otherwise; " ---------------------------------------- (10) Obligation: mainModule Main module Main where { import qualified Prelude; } ---------------------------------------- (11) NumRed (SOUND) Num Reduction:All numbers are transformed to their corresponding representation with Succ, Pred and Zero. ---------------------------------------- (12) Obligation: mainModule Main module Main where { import qualified Prelude; } ---------------------------------------- (13) Narrow (SOUND) Haskell To QDPs digraph dp_graph { node [outthreshold=100, inthreshold=100];1[label="(<=)",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 -> 1883[label="",style="dashed", color="red", weight=0]; 5[label="compare vwx3 vwx4 /= GT",fontsize=16,color="magenta"];5 -> 1884[label="",style="dashed", color="magenta", weight=3]; 1884[label="compare vwx3 vwx4",fontsize=16,color="burlywood",shape="triangle"];4610[label="vwx3/vwx30 : vwx31",fontsize=10,color="white",style="solid",shape="box"];1884 -> 4610[label="",style="solid", color="burlywood", weight=9]; 4610 -> 1892[label="",style="solid", color="burlywood", weight=3]; 4611[label="vwx3/[]",fontsize=10,color="white",style="solid",shape="box"];1884 -> 4611[label="",style="solid", color="burlywood", weight=9]; 4611 -> 1893[label="",style="solid", color="burlywood", weight=3]; 1883[label="vwx163 /= GT",fontsize=16,color="black",shape="triangle"];1883 -> 1894[label="",style="solid", color="black", weight=3]; 1892[label="compare (vwx30 : vwx31) vwx4",fontsize=16,color="burlywood",shape="box"];4612[label="vwx4/vwx40 : vwx41",fontsize=10,color="white",style="solid",shape="box"];1892 -> 4612[label="",style="solid", color="burlywood", weight=9]; 4612 -> 1895[label="",style="solid", color="burlywood", weight=3]; 4613[label="vwx4/[]",fontsize=10,color="white",style="solid",shape="box"];1892 -> 4613[label="",style="solid", color="burlywood", weight=9]; 4613 -> 1896[label="",style="solid", color="burlywood", weight=3]; 1893[label="compare [] vwx4",fontsize=16,color="burlywood",shape="box"];4614[label="vwx4/vwx40 : vwx41",fontsize=10,color="white",style="solid",shape="box"];1893 -> 4614[label="",style="solid", color="burlywood", weight=9]; 4614 -> 1897[label="",style="solid", color="burlywood", weight=3]; 4615[label="vwx4/[]",fontsize=10,color="white",style="solid",shape="box"];1893 -> 4615[label="",style="solid", color="burlywood", weight=9]; 4615 -> 1898[label="",style="solid", color="burlywood", weight=3]; 1894[label="not (vwx163 == GT)",fontsize=16,color="burlywood",shape="box"];4616[label="vwx163/LT",fontsize=10,color="white",style="solid",shape="box"];1894 -> 4616[label="",style="solid", color="burlywood", weight=9]; 4616 -> 1899[label="",style="solid", color="burlywood", weight=3]; 4617[label="vwx163/EQ",fontsize=10,color="white",style="solid",shape="box"];1894 -> 4617[label="",style="solid", color="burlywood", weight=9]; 4617 -> 1900[label="",style="solid", color="burlywood", weight=3]; 4618[label="vwx163/GT",fontsize=10,color="white",style="solid",shape="box"];1894 -> 4618[label="",style="solid", color="burlywood", weight=9]; 4618 -> 1901[label="",style="solid", color="burlywood", weight=3]; 1895[label="compare (vwx30 : vwx31) (vwx40 : vwx41)",fontsize=16,color="black",shape="box"];1895 -> 1902[label="",style="solid", color="black", weight=3]; 1896[label="compare (vwx30 : vwx31) []",fontsize=16,color="black",shape="box"];1896 -> 1903[label="",style="solid", color="black", weight=3]; 1897[label="compare [] (vwx40 : vwx41)",fontsize=16,color="black",shape="box"];1897 -> 1904[label="",style="solid", color="black", weight=3]; 1898[label="compare [] []",fontsize=16,color="black",shape="box"];1898 -> 1905[label="",style="solid", color="black", weight=3]; 1899[label="not (LT == GT)",fontsize=16,color="black",shape="box"];1899 -> 1906[label="",style="solid", color="black", weight=3]; 1900[label="not (EQ == GT)",fontsize=16,color="black",shape="box"];1900 -> 1907[label="",style="solid", color="black", weight=3]; 1901[label="not (GT == GT)",fontsize=16,color="black",shape="box"];1901 -> 1908[label="",style="solid", color="black", weight=3]; 1902 -> 1909[label="",style="dashed", color="red", weight=0]; 1902[label="primCompAux vwx30 vwx40 (compare vwx31 vwx41)",fontsize=16,color="magenta"];1902 -> 1910[label="",style="dashed", color="magenta", weight=3]; 1903[label="GT",fontsize=16,color="green",shape="box"];1904[label="LT",fontsize=16,color="green",shape="box"];1905[label="EQ",fontsize=16,color="green",shape="box"];1906[label="not False",fontsize=16,color="black",shape="triangle"];1906 -> 1911[label="",style="solid", color="black", weight=3]; 1907 -> 1906[label="",style="dashed", color="red", weight=0]; 1907[label="not False",fontsize=16,color="magenta"];1908[label="not True",fontsize=16,color="black",shape="box"];1908 -> 1912[label="",style="solid", color="black", weight=3]; 1910 -> 1884[label="",style="dashed", color="red", weight=0]; 1910[label="compare vwx31 vwx41",fontsize=16,color="magenta"];1910 -> 1913[label="",style="dashed", color="magenta", weight=3]; 1910 -> 1914[label="",style="dashed", color="magenta", weight=3]; 1909[label="primCompAux vwx30 vwx40 vwx164",fontsize=16,color="black",shape="triangle"];1909 -> 1915[label="",style="solid", color="black", weight=3]; 1911[label="True",fontsize=16,color="green",shape="box"];1912[label="False",fontsize=16,color="green",shape="box"];1913[label="vwx31",fontsize=16,color="green",shape="box"];1914[label="vwx41",fontsize=16,color="green",shape="box"];1915 -> 1916[label="",style="dashed", color="red", weight=0]; 1915[label="primCompAux0 vwx164 (compare vwx30 vwx40)",fontsize=16,color="magenta"];1915 -> 1917[label="",style="dashed", color="magenta", weight=3]; 1915 -> 1918[label="",style="dashed", color="magenta", weight=3]; 1917[label="vwx164",fontsize=16,color="green",shape="box"];1918[label="compare vwx30 vwx40",fontsize=16,color="blue",shape="box"];4619[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1918 -> 4619[label="",style="solid", color="blue", weight=9]; 4619 -> 1919[label="",style="solid", color="blue", weight=3]; 4620[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1918 -> 4620[label="",style="solid", color="blue", weight=9]; 4620 -> 1920[label="",style="solid", color="blue", weight=3]; 4621[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1918 -> 4621[label="",style="solid", color="blue", weight=9]; 4621 -> 1921[label="",style="solid", color="blue", weight=3]; 4622[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1918 -> 4622[label="",style="solid", color="blue", weight=9]; 4622 -> 1922[label="",style="solid", color="blue", weight=3]; 4623[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1918 -> 4623[label="",style="solid", color="blue", weight=9]; 4623 -> 1923[label="",style="solid", color="blue", weight=3]; 4624[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1918 -> 4624[label="",style="solid", color="blue", weight=9]; 4624 -> 1924[label="",style="solid", color="blue", weight=3]; 4625[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1918 -> 4625[label="",style="solid", color="blue", weight=9]; 4625 -> 1925[label="",style="solid", color="blue", weight=3]; 4626[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1918 -> 4626[label="",style="solid", color="blue", weight=9]; 4626 -> 1926[label="",style="solid", color="blue", weight=3]; 4627[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1918 -> 4627[label="",style="solid", color="blue", weight=9]; 4627 -> 1927[label="",style="solid", color="blue", weight=3]; 4628[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1918 -> 4628[label="",style="solid", color="blue", weight=9]; 4628 -> 1928[label="",style="solid", color="blue", weight=3]; 4629[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1918 -> 4629[label="",style="solid", color="blue", weight=9]; 4629 -> 1929[label="",style="solid", color="blue", weight=3]; 4630[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1918 -> 4630[label="",style="solid", color="blue", weight=9]; 4630 -> 1930[label="",style="solid", color="blue", weight=3]; 4631[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1918 -> 4631[label="",style="solid", color="blue", weight=9]; 4631 -> 1931[label="",style="solid", color="blue", weight=3]; 4632[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1918 -> 4632[label="",style="solid", color="blue", weight=9]; 4632 -> 1932[label="",style="solid", color="blue", weight=3]; 1916[label="primCompAux0 vwx168 vwx169",fontsize=16,color="burlywood",shape="triangle"];4633[label="vwx169/LT",fontsize=10,color="white",style="solid",shape="box"];1916 -> 4633[label="",style="solid", color="burlywood", weight=9]; 4633 -> 1933[label="",style="solid", color="burlywood", weight=3]; 4634[label="vwx169/EQ",fontsize=10,color="white",style="solid",shape="box"];1916 -> 4634[label="",style="solid", color="burlywood", weight=9]; 4634 -> 1934[label="",style="solid", color="burlywood", weight=3]; 4635[label="vwx169/GT",fontsize=10,color="white",style="solid",shape="box"];1916 -> 4635[label="",style="solid", color="burlywood", weight=9]; 4635 -> 1935[label="",style="solid", color="burlywood", weight=3]; 1919[label="compare vwx30 vwx40",fontsize=16,color="burlywood",shape="triangle"];4636[label="vwx30/vwx300 :% vwx301",fontsize=10,color="white",style="solid",shape="box"];1919 -> 4636[label="",style="solid", color="burlywood", weight=9]; 4636 -> 1936[label="",style="solid", color="burlywood", weight=3]; 1920[label="compare vwx30 vwx40",fontsize=16,color="black",shape="triangle"];1920 -> 1937[label="",style="solid", color="black", weight=3]; 1921[label="compare vwx30 vwx40",fontsize=16,color="black",shape="triangle"];1921 -> 1938[label="",style="solid", color="black", weight=3]; 1922[label="compare vwx30 vwx40",fontsize=16,color="black",shape="triangle"];1922 -> 1939[label="",style="solid", color="black", weight=3]; 1923[label="compare vwx30 vwx40",fontsize=16,color="black",shape="triangle"];1923 -> 1940[label="",style="solid", color="black", weight=3]; 1924[label="compare vwx30 vwx40",fontsize=16,color="black",shape="triangle"];1924 -> 1941[label="",style="solid", color="black", weight=3]; 1925 -> 1884[label="",style="dashed", color="red", weight=0]; 1925[label="compare vwx30 vwx40",fontsize=16,color="magenta"];1925 -> 1942[label="",style="dashed", color="magenta", weight=3]; 1925 -> 1943[label="",style="dashed", color="magenta", weight=3]; 1926[label="compare vwx30 vwx40",fontsize=16,color="black",shape="triangle"];1926 -> 1944[label="",style="solid", color="black", weight=3]; 1927[label="compare vwx30 vwx40",fontsize=16,color="black",shape="triangle"];1927 -> 1945[label="",style="solid", color="black", weight=3]; 1928[label="compare vwx30 vwx40",fontsize=16,color="black",shape="triangle"];1928 -> 1946[label="",style="solid", color="black", weight=3]; 1929[label="compare vwx30 vwx40",fontsize=16,color="burlywood",shape="triangle"];4637[label="vwx30/Integer vwx300",fontsize=10,color="white",style="solid",shape="box"];1929 -> 4637[label="",style="solid", color="burlywood", weight=9]; 4637 -> 1947[label="",style="solid", color="burlywood", weight=3]; 1930[label="compare vwx30 vwx40",fontsize=16,color="burlywood",shape="triangle"];4638[label="vwx30/()",fontsize=10,color="white",style="solid",shape="box"];1930 -> 4638[label="",style="solid", color="burlywood", weight=9]; 4638 -> 1948[label="",style="solid", color="burlywood", weight=3]; 1931[label="compare vwx30 vwx40",fontsize=16,color="black",shape="triangle"];1931 -> 1949[label="",style="solid", color="black", weight=3]; 1932[label="compare vwx30 vwx40",fontsize=16,color="black",shape="triangle"];1932 -> 1950[label="",style="solid", color="black", weight=3]; 1933[label="primCompAux0 vwx168 LT",fontsize=16,color="black",shape="box"];1933 -> 1951[label="",style="solid", color="black", weight=3]; 1934[label="primCompAux0 vwx168 EQ",fontsize=16,color="black",shape="box"];1934 -> 1952[label="",style="solid", color="black", weight=3]; 1935[label="primCompAux0 vwx168 GT",fontsize=16,color="black",shape="box"];1935 -> 1953[label="",style="solid", color="black", weight=3]; 1936[label="compare (vwx300 :% vwx301) vwx40",fontsize=16,color="burlywood",shape="box"];4639[label="vwx40/vwx400 :% vwx401",fontsize=10,color="white",style="solid",shape="box"];1936 -> 4639[label="",style="solid", color="burlywood", weight=9]; 4639 -> 1954[label="",style="solid", color="burlywood", weight=3]; 1937[label="primCmpFloat vwx30 vwx40",fontsize=16,color="burlywood",shape="box"];4640[label="vwx30/Float vwx300 vwx301",fontsize=10,color="white",style="solid",shape="box"];1937 -> 4640[label="",style="solid", color="burlywood", weight=9]; 4640 -> 1955[label="",style="solid", color="burlywood", weight=3]; 1938[label="primCmpDouble vwx30 vwx40",fontsize=16,color="burlywood",shape="box"];4641[label="vwx30/Double vwx300 vwx301",fontsize=10,color="white",style="solid",shape="box"];1938 -> 4641[label="",style="solid", color="burlywood", weight=9]; 4641 -> 1956[label="",style="solid", color="burlywood", weight=3]; 1939[label="compare3 vwx30 vwx40",fontsize=16,color="black",shape="box"];1939 -> 1957[label="",style="solid", color="black", weight=3]; 1940[label="compare3 vwx30 vwx40",fontsize=16,color="black",shape="box"];1940 -> 1958[label="",style="solid", color="black", weight=3]; 1941[label="compare3 vwx30 vwx40",fontsize=16,color="black",shape="box"];1941 -> 1959[label="",style="solid", color="black", weight=3]; 1942[label="vwx30",fontsize=16,color="green",shape="box"];1943[label="vwx40",fontsize=16,color="green",shape="box"];1944[label="primCmpInt vwx30 vwx40",fontsize=16,color="burlywood",shape="triangle"];4642[label="vwx30/Pos vwx300",fontsize=10,color="white",style="solid",shape="box"];1944 -> 4642[label="",style="solid", color="burlywood", weight=9]; 4642 -> 1960[label="",style="solid", color="burlywood", weight=3]; 4643[label="vwx30/Neg vwx300",fontsize=10,color="white",style="solid",shape="box"];1944 -> 4643[label="",style="solid", color="burlywood", weight=9]; 4643 -> 1961[label="",style="solid", color="burlywood", weight=3]; 1945[label="primCmpChar vwx30 vwx40",fontsize=16,color="burlywood",shape="box"];4644[label="vwx30/Char vwx300",fontsize=10,color="white",style="solid",shape="box"];1945 -> 4644[label="",style="solid", color="burlywood", weight=9]; 4644 -> 1962[label="",style="solid", color="burlywood", weight=3]; 1946[label="compare3 vwx30 vwx40",fontsize=16,color="black",shape="box"];1946 -> 1963[label="",style="solid", color="black", weight=3]; 1947[label="compare (Integer vwx300) vwx40",fontsize=16,color="burlywood",shape="box"];4645[label="vwx40/Integer vwx400",fontsize=10,color="white",style="solid",shape="box"];1947 -> 4645[label="",style="solid", color="burlywood", weight=9]; 4645 -> 1964[label="",style="solid", color="burlywood", weight=3]; 1948[label="compare () vwx40",fontsize=16,color="burlywood",shape="box"];4646[label="vwx40/()",fontsize=10,color="white",style="solid",shape="box"];1948 -> 4646[label="",style="solid", color="burlywood", weight=9]; 4646 -> 1965[label="",style="solid", color="burlywood", weight=3]; 1949[label="compare3 vwx30 vwx40",fontsize=16,color="black",shape="box"];1949 -> 1966[label="",style="solid", color="black", weight=3]; 1950[label="compare3 vwx30 vwx40",fontsize=16,color="black",shape="box"];1950 -> 1967[label="",style="solid", color="black", weight=3]; 1951[label="LT",fontsize=16,color="green",shape="box"];1952[label="vwx168",fontsize=16,color="green",shape="box"];1953[label="GT",fontsize=16,color="green",shape="box"];1954[label="compare (vwx300 :% vwx301) (vwx400 :% vwx401)",fontsize=16,color="black",shape="box"];1954 -> 1968[label="",style="solid", color="black", weight=3]; 1955[label="primCmpFloat (Float vwx300 vwx301) vwx40",fontsize=16,color="burlywood",shape="box"];4647[label="vwx301/Pos vwx3010",fontsize=10,color="white",style="solid",shape="box"];1955 -> 4647[label="",style="solid", color="burlywood", weight=9]; 4647 -> 1969[label="",style="solid", color="burlywood", weight=3]; 4648[label="vwx301/Neg vwx3010",fontsize=10,color="white",style="solid",shape="box"];1955 -> 4648[label="",style="solid", color="burlywood", weight=9]; 4648 -> 1970[label="",style="solid", color="burlywood", weight=3]; 1956[label="primCmpDouble (Double vwx300 vwx301) vwx40",fontsize=16,color="burlywood",shape="box"];4649[label="vwx301/Pos vwx3010",fontsize=10,color="white",style="solid",shape="box"];1956 -> 4649[label="",style="solid", color="burlywood", weight=9]; 4649 -> 1971[label="",style="solid", color="burlywood", weight=3]; 4650[label="vwx301/Neg vwx3010",fontsize=10,color="white",style="solid",shape="box"];1956 -> 4650[label="",style="solid", color="burlywood", weight=9]; 4650 -> 1972[label="",style="solid", color="burlywood", weight=3]; 1957[label="compare2 vwx30 vwx40 (vwx30 == vwx40)",fontsize=16,color="burlywood",shape="box"];4651[label="vwx30/Left vwx300",fontsize=10,color="white",style="solid",shape="box"];1957 -> 4651[label="",style="solid", color="burlywood", weight=9]; 4651 -> 1973[label="",style="solid", color="burlywood", weight=3]; 4652[label="vwx30/Right vwx300",fontsize=10,color="white",style="solid",shape="box"];1957 -> 4652[label="",style="solid", color="burlywood", weight=9]; 4652 -> 1974[label="",style="solid", color="burlywood", weight=3]; 1958[label="compare2 vwx30 vwx40 (vwx30 == vwx40)",fontsize=16,color="burlywood",shape="box"];4653[label="vwx30/(vwx300,vwx301,vwx302)",fontsize=10,color="white",style="solid",shape="box"];1958 -> 4653[label="",style="solid", color="burlywood", weight=9]; 4653 -> 1975[label="",style="solid", color="burlywood", weight=3]; 1959[label="compare2 vwx30 vwx40 (vwx30 == vwx40)",fontsize=16,color="burlywood",shape="box"];4654[label="vwx30/Nothing",fontsize=10,color="white",style="solid",shape="box"];1959 -> 4654[label="",style="solid", color="burlywood", weight=9]; 4654 -> 1976[label="",style="solid", color="burlywood", weight=3]; 4655[label="vwx30/Just vwx300",fontsize=10,color="white",style="solid",shape="box"];1959 -> 4655[label="",style="solid", color="burlywood", weight=9]; 4655 -> 1977[label="",style="solid", color="burlywood", weight=3]; 1960[label="primCmpInt (Pos vwx300) vwx40",fontsize=16,color="burlywood",shape="box"];4656[label="vwx300/Succ vwx3000",fontsize=10,color="white",style="solid",shape="box"];1960 -> 4656[label="",style="solid", color="burlywood", weight=9]; 4656 -> 1978[label="",style="solid", color="burlywood", weight=3]; 4657[label="vwx300/Zero",fontsize=10,color="white",style="solid",shape="box"];1960 -> 4657[label="",style="solid", color="burlywood", weight=9]; 4657 -> 1979[label="",style="solid", color="burlywood", weight=3]; 1961[label="primCmpInt (Neg vwx300) vwx40",fontsize=16,color="burlywood",shape="box"];4658[label="vwx300/Succ vwx3000",fontsize=10,color="white",style="solid",shape="box"];1961 -> 4658[label="",style="solid", color="burlywood", weight=9]; 4658 -> 1980[label="",style="solid", color="burlywood", weight=3]; 4659[label="vwx300/Zero",fontsize=10,color="white",style="solid",shape="box"];1961 -> 4659[label="",style="solid", color="burlywood", weight=9]; 4659 -> 1981[label="",style="solid", color="burlywood", weight=3]; 1962[label="primCmpChar (Char vwx300) vwx40",fontsize=16,color="burlywood",shape="box"];4660[label="vwx40/Char vwx400",fontsize=10,color="white",style="solid",shape="box"];1962 -> 4660[label="",style="solid", color="burlywood", weight=9]; 4660 -> 1982[label="",style="solid", color="burlywood", weight=3]; 1963[label="compare2 vwx30 vwx40 (vwx30 == vwx40)",fontsize=16,color="burlywood",shape="box"];4661[label="vwx30/(vwx300,vwx301)",fontsize=10,color="white",style="solid",shape="box"];1963 -> 4661[label="",style="solid", color="burlywood", weight=9]; 4661 -> 1983[label="",style="solid", color="burlywood", weight=3]; 1964[label="compare (Integer vwx300) (Integer vwx400)",fontsize=16,color="black",shape="box"];1964 -> 1984[label="",style="solid", color="black", weight=3]; 1965[label="compare () ()",fontsize=16,color="black",shape="box"];1965 -> 1985[label="",style="solid", color="black", weight=3]; 1966[label="compare2 vwx30 vwx40 (vwx30 == vwx40)",fontsize=16,color="burlywood",shape="box"];4662[label="vwx30/LT",fontsize=10,color="white",style="solid",shape="box"];1966 -> 4662[label="",style="solid", color="burlywood", weight=9]; 4662 -> 1986[label="",style="solid", color="burlywood", weight=3]; 4663[label="vwx30/EQ",fontsize=10,color="white",style="solid",shape="box"];1966 -> 4663[label="",style="solid", color="burlywood", weight=9]; 4663 -> 1987[label="",style="solid", color="burlywood", weight=3]; 4664[label="vwx30/GT",fontsize=10,color="white",style="solid",shape="box"];1966 -> 4664[label="",style="solid", color="burlywood", weight=9]; 4664 -> 1988[label="",style="solid", color="burlywood", weight=3]; 1967[label="compare2 vwx30 vwx40 (vwx30 == vwx40)",fontsize=16,color="burlywood",shape="box"];4665[label="vwx30/False",fontsize=10,color="white",style="solid",shape="box"];1967 -> 4665[label="",style="solid", color="burlywood", weight=9]; 4665 -> 1989[label="",style="solid", color="burlywood", weight=3]; 4666[label="vwx30/True",fontsize=10,color="white",style="solid",shape="box"];1967 -> 4666[label="",style="solid", color="burlywood", weight=9]; 4666 -> 1990[label="",style="solid", color="burlywood", weight=3]; 1968[label="compare (vwx300 * vwx401) (vwx400 * vwx301)",fontsize=16,color="blue",shape="box"];4667[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1968 -> 4667[label="",style="solid", color="blue", weight=9]; 4667 -> 1991[label="",style="solid", color="blue", weight=3]; 4668[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1968 -> 4668[label="",style="solid", color="blue", weight=9]; 4668 -> 1992[label="",style="solid", color="blue", weight=3]; 1969[label="primCmpFloat (Float vwx300 (Pos vwx3010)) vwx40",fontsize=16,color="burlywood",shape="box"];4669[label="vwx40/Float vwx400 vwx401",fontsize=10,color="white",style="solid",shape="box"];1969 -> 4669[label="",style="solid", color="burlywood", weight=9]; 4669 -> 1993[label="",style="solid", color="burlywood", weight=3]; 1970[label="primCmpFloat (Float vwx300 (Neg vwx3010)) vwx40",fontsize=16,color="burlywood",shape="box"];4670[label="vwx40/Float vwx400 vwx401",fontsize=10,color="white",style="solid",shape="box"];1970 -> 4670[label="",style="solid", color="burlywood", weight=9]; 4670 -> 1994[label="",style="solid", color="burlywood", weight=3]; 1971[label="primCmpDouble (Double vwx300 (Pos vwx3010)) vwx40",fontsize=16,color="burlywood",shape="box"];4671[label="vwx40/Double vwx400 vwx401",fontsize=10,color="white",style="solid",shape="box"];1971 -> 4671[label="",style="solid", color="burlywood", weight=9]; 4671 -> 1995[label="",style="solid", color="burlywood", weight=3]; 1972[label="primCmpDouble (Double vwx300 (Neg vwx3010)) vwx40",fontsize=16,color="burlywood",shape="box"];4672[label="vwx40/Double vwx400 vwx401",fontsize=10,color="white",style="solid",shape="box"];1972 -> 4672[label="",style="solid", color="burlywood", weight=9]; 4672 -> 1996[label="",style="solid", color="burlywood", weight=3]; 1973[label="compare2 (Left vwx300) vwx40 (Left vwx300 == vwx40)",fontsize=16,color="burlywood",shape="box"];4673[label="vwx40/Left vwx400",fontsize=10,color="white",style="solid",shape="box"];1973 -> 4673[label="",style="solid", color="burlywood", weight=9]; 4673 -> 1997[label="",style="solid", color="burlywood", weight=3]; 4674[label="vwx40/Right vwx400",fontsize=10,color="white",style="solid",shape="box"];1973 -> 4674[label="",style="solid", color="burlywood", weight=9]; 4674 -> 1998[label="",style="solid", color="burlywood", weight=3]; 1974[label="compare2 (Right vwx300) vwx40 (Right vwx300 == vwx40)",fontsize=16,color="burlywood",shape="box"];4675[label="vwx40/Left vwx400",fontsize=10,color="white",style="solid",shape="box"];1974 -> 4675[label="",style="solid", color="burlywood", weight=9]; 4675 -> 1999[label="",style="solid", color="burlywood", weight=3]; 4676[label="vwx40/Right vwx400",fontsize=10,color="white",style="solid",shape="box"];1974 -> 4676[label="",style="solid", color="burlywood", weight=9]; 4676 -> 2000[label="",style="solid", color="burlywood", weight=3]; 1975[label="compare2 (vwx300,vwx301,vwx302) vwx40 ((vwx300,vwx301,vwx302) == vwx40)",fontsize=16,color="burlywood",shape="box"];4677[label="vwx40/(vwx400,vwx401,vwx402)",fontsize=10,color="white",style="solid",shape="box"];1975 -> 4677[label="",style="solid", color="burlywood", weight=9]; 4677 -> 2001[label="",style="solid", color="burlywood", weight=3]; 1976[label="compare2 Nothing vwx40 (Nothing == vwx40)",fontsize=16,color="burlywood",shape="box"];4678[label="vwx40/Nothing",fontsize=10,color="white",style="solid",shape="box"];1976 -> 4678[label="",style="solid", color="burlywood", weight=9]; 4678 -> 2002[label="",style="solid", color="burlywood", weight=3]; 4679[label="vwx40/Just vwx400",fontsize=10,color="white",style="solid",shape="box"];1976 -> 4679[label="",style="solid", color="burlywood", weight=9]; 4679 -> 2003[label="",style="solid", color="burlywood", weight=3]; 1977[label="compare2 (Just vwx300) vwx40 (Just vwx300 == vwx40)",fontsize=16,color="burlywood",shape="box"];4680[label="vwx40/Nothing",fontsize=10,color="white",style="solid",shape="box"];1977 -> 4680[label="",style="solid", color="burlywood", weight=9]; 4680 -> 2004[label="",style="solid", color="burlywood", weight=3]; 4681[label="vwx40/Just vwx400",fontsize=10,color="white",style="solid",shape="box"];1977 -> 4681[label="",style="solid", color="burlywood", weight=9]; 4681 -> 2005[label="",style="solid", color="burlywood", weight=3]; 1978[label="primCmpInt (Pos (Succ vwx3000)) vwx40",fontsize=16,color="burlywood",shape="box"];4682[label="vwx40/Pos vwx400",fontsize=10,color="white",style="solid",shape="box"];1978 -> 4682[label="",style="solid", color="burlywood", weight=9]; 4682 -> 2006[label="",style="solid", color="burlywood", weight=3]; 4683[label="vwx40/Neg vwx400",fontsize=10,color="white",style="solid",shape="box"];1978 -> 4683[label="",style="solid", color="burlywood", weight=9]; 4683 -> 2007[label="",style="solid", color="burlywood", weight=3]; 1979[label="primCmpInt (Pos Zero) vwx40",fontsize=16,color="burlywood",shape="box"];4684[label="vwx40/Pos vwx400",fontsize=10,color="white",style="solid",shape="box"];1979 -> 4684[label="",style="solid", color="burlywood", weight=9]; 4684 -> 2008[label="",style="solid", color="burlywood", weight=3]; 4685[label="vwx40/Neg vwx400",fontsize=10,color="white",style="solid",shape="box"];1979 -> 4685[label="",style="solid", color="burlywood", weight=9]; 4685 -> 2009[label="",style="solid", color="burlywood", weight=3]; 1980[label="primCmpInt (Neg (Succ vwx3000)) vwx40",fontsize=16,color="burlywood",shape="box"];4686[label="vwx40/Pos vwx400",fontsize=10,color="white",style="solid",shape="box"];1980 -> 4686[label="",style="solid", color="burlywood", weight=9]; 4686 -> 2010[label="",style="solid", color="burlywood", weight=3]; 4687[label="vwx40/Neg vwx400",fontsize=10,color="white",style="solid",shape="box"];1980 -> 4687[label="",style="solid", color="burlywood", weight=9]; 4687 -> 2011[label="",style="solid", color="burlywood", weight=3]; 1981[label="primCmpInt (Neg Zero) vwx40",fontsize=16,color="burlywood",shape="box"];4688[label="vwx40/Pos vwx400",fontsize=10,color="white",style="solid",shape="box"];1981 -> 4688[label="",style="solid", color="burlywood", weight=9]; 4688 -> 2012[label="",style="solid", color="burlywood", weight=3]; 4689[label="vwx40/Neg vwx400",fontsize=10,color="white",style="solid",shape="box"];1981 -> 4689[label="",style="solid", color="burlywood", weight=9]; 4689 -> 2013[label="",style="solid", color="burlywood", weight=3]; 1982[label="primCmpChar (Char vwx300) (Char vwx400)",fontsize=16,color="black",shape="box"];1982 -> 2014[label="",style="solid", color="black", weight=3]; 1983[label="compare2 (vwx300,vwx301) vwx40 ((vwx300,vwx301) == vwx40)",fontsize=16,color="burlywood",shape="box"];4690[label="vwx40/(vwx400,vwx401)",fontsize=10,color="white",style="solid",shape="box"];1983 -> 4690[label="",style="solid", color="burlywood", weight=9]; 4690 -> 2015[label="",style="solid", color="burlywood", weight=3]; 1984 -> 1944[label="",style="dashed", color="red", weight=0]; 1984[label="primCmpInt vwx300 vwx400",fontsize=16,color="magenta"];1984 -> 2016[label="",style="dashed", color="magenta", weight=3]; 1984 -> 2017[label="",style="dashed", color="magenta", weight=3]; 1985[label="EQ",fontsize=16,color="green",shape="box"];1986[label="compare2 LT vwx40 (LT == vwx40)",fontsize=16,color="burlywood",shape="box"];4691[label="vwx40/LT",fontsize=10,color="white",style="solid",shape="box"];1986 -> 4691[label="",style="solid", color="burlywood", weight=9]; 4691 -> 2018[label="",style="solid", color="burlywood", weight=3]; 4692[label="vwx40/EQ",fontsize=10,color="white",style="solid",shape="box"];1986 -> 4692[label="",style="solid", color="burlywood", weight=9]; 4692 -> 2019[label="",style="solid", color="burlywood", weight=3]; 4693[label="vwx40/GT",fontsize=10,color="white",style="solid",shape="box"];1986 -> 4693[label="",style="solid", color="burlywood", weight=9]; 4693 -> 2020[label="",style="solid", color="burlywood", weight=3]; 1987[label="compare2 EQ vwx40 (EQ == vwx40)",fontsize=16,color="burlywood",shape="box"];4694[label="vwx40/LT",fontsize=10,color="white",style="solid",shape="box"];1987 -> 4694[label="",style="solid", color="burlywood", weight=9]; 4694 -> 2021[label="",style="solid", color="burlywood", weight=3]; 4695[label="vwx40/EQ",fontsize=10,color="white",style="solid",shape="box"];1987 -> 4695[label="",style="solid", color="burlywood", weight=9]; 4695 -> 2022[label="",style="solid", color="burlywood", weight=3]; 4696[label="vwx40/GT",fontsize=10,color="white",style="solid",shape="box"];1987 -> 4696[label="",style="solid", color="burlywood", weight=9]; 4696 -> 2023[label="",style="solid", color="burlywood", weight=3]; 1988[label="compare2 GT vwx40 (GT == vwx40)",fontsize=16,color="burlywood",shape="box"];4697[label="vwx40/LT",fontsize=10,color="white",style="solid",shape="box"];1988 -> 4697[label="",style="solid", color="burlywood", weight=9]; 4697 -> 2024[label="",style="solid", color="burlywood", weight=3]; 4698[label="vwx40/EQ",fontsize=10,color="white",style="solid",shape="box"];1988 -> 4698[label="",style="solid", color="burlywood", weight=9]; 4698 -> 2025[label="",style="solid", color="burlywood", weight=3]; 4699[label="vwx40/GT",fontsize=10,color="white",style="solid",shape="box"];1988 -> 4699[label="",style="solid", color="burlywood", weight=9]; 4699 -> 2026[label="",style="solid", color="burlywood", weight=3]; 1989[label="compare2 False vwx40 (False == vwx40)",fontsize=16,color="burlywood",shape="box"];4700[label="vwx40/False",fontsize=10,color="white",style="solid",shape="box"];1989 -> 4700[label="",style="solid", color="burlywood", weight=9]; 4700 -> 2027[label="",style="solid", color="burlywood", weight=3]; 4701[label="vwx40/True",fontsize=10,color="white",style="solid",shape="box"];1989 -> 4701[label="",style="solid", color="burlywood", weight=9]; 4701 -> 2028[label="",style="solid", color="burlywood", weight=3]; 1990[label="compare2 True vwx40 (True == vwx40)",fontsize=16,color="burlywood",shape="box"];4702[label="vwx40/False",fontsize=10,color="white",style="solid",shape="box"];1990 -> 4702[label="",style="solid", color="burlywood", weight=9]; 4702 -> 2029[label="",style="solid", color="burlywood", weight=3]; 4703[label="vwx40/True",fontsize=10,color="white",style="solid",shape="box"];1990 -> 4703[label="",style="solid", color="burlywood", weight=9]; 4703 -> 2030[label="",style="solid", color="burlywood", weight=3]; 1991 -> 1926[label="",style="dashed", color="red", weight=0]; 1991[label="compare (vwx300 * vwx401) (vwx400 * vwx301)",fontsize=16,color="magenta"];1991 -> 2031[label="",style="dashed", color="magenta", weight=3]; 1991 -> 2032[label="",style="dashed", color="magenta", weight=3]; 1992 -> 1929[label="",style="dashed", color="red", weight=0]; 1992[label="compare (vwx300 * vwx401) (vwx400 * vwx301)",fontsize=16,color="magenta"];1992 -> 2033[label="",style="dashed", color="magenta", weight=3]; 1992 -> 2034[label="",style="dashed", color="magenta", weight=3]; 1993[label="primCmpFloat (Float vwx300 (Pos vwx3010)) (Float vwx400 vwx401)",fontsize=16,color="burlywood",shape="box"];4704[label="vwx401/Pos vwx4010",fontsize=10,color="white",style="solid",shape="box"];1993 -> 4704[label="",style="solid", color="burlywood", weight=9]; 4704 -> 2035[label="",style="solid", color="burlywood", weight=3]; 4705[label="vwx401/Neg vwx4010",fontsize=10,color="white",style="solid",shape="box"];1993 -> 4705[label="",style="solid", color="burlywood", weight=9]; 4705 -> 2036[label="",style="solid", color="burlywood", weight=3]; 1994[label="primCmpFloat (Float vwx300 (Neg vwx3010)) (Float vwx400 vwx401)",fontsize=16,color="burlywood",shape="box"];4706[label="vwx401/Pos vwx4010",fontsize=10,color="white",style="solid",shape="box"];1994 -> 4706[label="",style="solid", color="burlywood", weight=9]; 4706 -> 2037[label="",style="solid", color="burlywood", weight=3]; 4707[label="vwx401/Neg vwx4010",fontsize=10,color="white",style="solid",shape="box"];1994 -> 4707[label="",style="solid", color="burlywood", weight=9]; 4707 -> 2038[label="",style="solid", color="burlywood", weight=3]; 1995[label="primCmpDouble (Double vwx300 (Pos vwx3010)) (Double vwx400 vwx401)",fontsize=16,color="burlywood",shape="box"];4708[label="vwx401/Pos vwx4010",fontsize=10,color="white",style="solid",shape="box"];1995 -> 4708[label="",style="solid", color="burlywood", weight=9]; 4708 -> 2039[label="",style="solid", color="burlywood", weight=3]; 4709[label="vwx401/Neg vwx4010",fontsize=10,color="white",style="solid",shape="box"];1995 -> 4709[label="",style="solid", color="burlywood", weight=9]; 4709 -> 2040[label="",style="solid", color="burlywood", weight=3]; 1996[label="primCmpDouble (Double vwx300 (Neg vwx3010)) (Double vwx400 vwx401)",fontsize=16,color="burlywood",shape="box"];4710[label="vwx401/Pos vwx4010",fontsize=10,color="white",style="solid",shape="box"];1996 -> 4710[label="",style="solid", color="burlywood", weight=9]; 4710 -> 2041[label="",style="solid", color="burlywood", weight=3]; 4711[label="vwx401/Neg vwx4010",fontsize=10,color="white",style="solid",shape="box"];1996 -> 4711[label="",style="solid", color="burlywood", weight=9]; 4711 -> 2042[label="",style="solid", color="burlywood", weight=3]; 1997[label="compare2 (Left vwx300) (Left vwx400) (Left vwx300 == Left vwx400)",fontsize=16,color="black",shape="box"];1997 -> 2043[label="",style="solid", color="black", weight=3]; 1998[label="compare2 (Left vwx300) (Right vwx400) (Left vwx300 == Right vwx400)",fontsize=16,color="black",shape="box"];1998 -> 2044[label="",style="solid", color="black", weight=3]; 1999[label="compare2 (Right vwx300) (Left vwx400) (Right vwx300 == Left vwx400)",fontsize=16,color="black",shape="box"];1999 -> 2045[label="",style="solid", color="black", weight=3]; 2000[label="compare2 (Right vwx300) (Right vwx400) (Right vwx300 == Right vwx400)",fontsize=16,color="black",shape="box"];2000 -> 2046[label="",style="solid", color="black", weight=3]; 2001[label="compare2 (vwx300,vwx301,vwx302) (vwx400,vwx401,vwx402) ((vwx300,vwx301,vwx302) == (vwx400,vwx401,vwx402))",fontsize=16,color="black",shape="box"];2001 -> 2047[label="",style="solid", color="black", weight=3]; 2002[label="compare2 Nothing Nothing (Nothing == Nothing)",fontsize=16,color="black",shape="box"];2002 -> 2048[label="",style="solid", color="black", weight=3]; 2003[label="compare2 Nothing (Just vwx400) (Nothing == Just vwx400)",fontsize=16,color="black",shape="box"];2003 -> 2049[label="",style="solid", color="black", weight=3]; 2004[label="compare2 (Just vwx300) Nothing (Just vwx300 == Nothing)",fontsize=16,color="black",shape="box"];2004 -> 2050[label="",style="solid", color="black", weight=3]; 2005[label="compare2 (Just vwx300) (Just vwx400) (Just vwx300 == Just vwx400)",fontsize=16,color="black",shape="box"];2005 -> 2051[label="",style="solid", color="black", weight=3]; 2006[label="primCmpInt (Pos (Succ vwx3000)) (Pos vwx400)",fontsize=16,color="black",shape="box"];2006 -> 2052[label="",style="solid", color="black", weight=3]; 2007[label="primCmpInt (Pos (Succ vwx3000)) (Neg vwx400)",fontsize=16,color="black",shape="box"];2007 -> 2053[label="",style="solid", color="black", weight=3]; 2008[label="primCmpInt (Pos Zero) (Pos vwx400)",fontsize=16,color="burlywood",shape="box"];4712[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];2008 -> 4712[label="",style="solid", color="burlywood", weight=9]; 4712 -> 2054[label="",style="solid", color="burlywood", weight=3]; 4713[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];2008 -> 4713[label="",style="solid", color="burlywood", weight=9]; 4713 -> 2055[label="",style="solid", color="burlywood", weight=3]; 2009[label="primCmpInt (Pos Zero) (Neg vwx400)",fontsize=16,color="burlywood",shape="box"];4714[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];2009 -> 4714[label="",style="solid", color="burlywood", weight=9]; 4714 -> 2056[label="",style="solid", color="burlywood", weight=3]; 4715[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];2009 -> 4715[label="",style="solid", color="burlywood", weight=9]; 4715 -> 2057[label="",style="solid", color="burlywood", weight=3]; 2010[label="primCmpInt (Neg (Succ vwx3000)) (Pos vwx400)",fontsize=16,color="black",shape="box"];2010 -> 2058[label="",style="solid", color="black", weight=3]; 2011[label="primCmpInt (Neg (Succ vwx3000)) (Neg vwx400)",fontsize=16,color="black",shape="box"];2011 -> 2059[label="",style="solid", color="black", weight=3]; 2012[label="primCmpInt (Neg Zero) (Pos vwx400)",fontsize=16,color="burlywood",shape="box"];4716[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];2012 -> 4716[label="",style="solid", color="burlywood", weight=9]; 4716 -> 2060[label="",style="solid", color="burlywood", weight=3]; 4717[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];2012 -> 4717[label="",style="solid", color="burlywood", weight=9]; 4717 -> 2061[label="",style="solid", color="burlywood", weight=3]; 2013[label="primCmpInt (Neg Zero) (Neg vwx400)",fontsize=16,color="burlywood",shape="box"];4718[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];2013 -> 4718[label="",style="solid", color="burlywood", weight=9]; 4718 -> 2062[label="",style="solid", color="burlywood", weight=3]; 4719[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];2013 -> 4719[label="",style="solid", color="burlywood", weight=9]; 4719 -> 2063[label="",style="solid", color="burlywood", weight=3]; 2014[label="primCmpNat vwx300 vwx400",fontsize=16,color="burlywood",shape="triangle"];4720[label="vwx300/Succ vwx3000",fontsize=10,color="white",style="solid",shape="box"];2014 -> 4720[label="",style="solid", color="burlywood", weight=9]; 4720 -> 2064[label="",style="solid", color="burlywood", weight=3]; 4721[label="vwx300/Zero",fontsize=10,color="white",style="solid",shape="box"];2014 -> 4721[label="",style="solid", color="burlywood", weight=9]; 4721 -> 2065[label="",style="solid", color="burlywood", weight=3]; 2015[label="compare2 (vwx300,vwx301) (vwx400,vwx401) ((vwx300,vwx301) == (vwx400,vwx401))",fontsize=16,color="black",shape="box"];2015 -> 2066[label="",style="solid", color="black", weight=3]; 2016[label="vwx300",fontsize=16,color="green",shape="box"];2017[label="vwx400",fontsize=16,color="green",shape="box"];2018[label="compare2 LT LT (LT == LT)",fontsize=16,color="black",shape="box"];2018 -> 2067[label="",style="solid", color="black", weight=3]; 2019[label="compare2 LT EQ (LT == EQ)",fontsize=16,color="black",shape="box"];2019 -> 2068[label="",style="solid", color="black", weight=3]; 2020[label="compare2 LT GT (LT == GT)",fontsize=16,color="black",shape="box"];2020 -> 2069[label="",style="solid", color="black", weight=3]; 2021[label="compare2 EQ LT (EQ == LT)",fontsize=16,color="black",shape="box"];2021 -> 2070[label="",style="solid", color="black", weight=3]; 2022[label="compare2 EQ EQ (EQ == EQ)",fontsize=16,color="black",shape="box"];2022 -> 2071[label="",style="solid", color="black", weight=3]; 2023[label="compare2 EQ GT (EQ == GT)",fontsize=16,color="black",shape="box"];2023 -> 2072[label="",style="solid", color="black", weight=3]; 2024[label="compare2 GT LT (GT == LT)",fontsize=16,color="black",shape="box"];2024 -> 2073[label="",style="solid", color="black", weight=3]; 2025[label="compare2 GT EQ (GT == EQ)",fontsize=16,color="black",shape="box"];2025 -> 2074[label="",style="solid", color="black", weight=3]; 2026[label="compare2 GT GT (GT == GT)",fontsize=16,color="black",shape="box"];2026 -> 2075[label="",style="solid", color="black", weight=3]; 2027[label="compare2 False False (False == False)",fontsize=16,color="black",shape="box"];2027 -> 2076[label="",style="solid", color="black", weight=3]; 2028[label="compare2 False True (False == True)",fontsize=16,color="black",shape="box"];2028 -> 2077[label="",style="solid", color="black", weight=3]; 2029[label="compare2 True False (True == False)",fontsize=16,color="black",shape="box"];2029 -> 2078[label="",style="solid", color="black", weight=3]; 2030[label="compare2 True True (True == True)",fontsize=16,color="black",shape="box"];2030 -> 2079[label="",style="solid", color="black", weight=3]; 2031[label="vwx300 * vwx401",fontsize=16,color="black",shape="triangle"];2031 -> 2080[label="",style="solid", color="black", weight=3]; 2032 -> 2031[label="",style="dashed", color="red", weight=0]; 2032[label="vwx400 * vwx301",fontsize=16,color="magenta"];2032 -> 2081[label="",style="dashed", color="magenta", weight=3]; 2032 -> 2082[label="",style="dashed", color="magenta", weight=3]; 2033[label="vwx300 * vwx401",fontsize=16,color="burlywood",shape="triangle"];4722[label="vwx300/Integer vwx3000",fontsize=10,color="white",style="solid",shape="box"];2033 -> 4722[label="",style="solid", color="burlywood", weight=9]; 4722 -> 2083[label="",style="solid", color="burlywood", weight=3]; 2034 -> 2033[label="",style="dashed", color="red", weight=0]; 2034[label="vwx400 * vwx301",fontsize=16,color="magenta"];2034 -> 2084[label="",style="dashed", color="magenta", weight=3]; 2034 -> 2085[label="",style="dashed", color="magenta", weight=3]; 2035[label="primCmpFloat (Float vwx300 (Pos vwx3010)) (Float vwx400 (Pos vwx4010))",fontsize=16,color="black",shape="box"];2035 -> 2086[label="",style="solid", color="black", weight=3]; 2036[label="primCmpFloat (Float vwx300 (Pos vwx3010)) (Float vwx400 (Neg vwx4010))",fontsize=16,color="black",shape="box"];2036 -> 2087[label="",style="solid", color="black", weight=3]; 2037[label="primCmpFloat (Float vwx300 (Neg vwx3010)) (Float vwx400 (Pos vwx4010))",fontsize=16,color="black",shape="box"];2037 -> 2088[label="",style="solid", color="black", weight=3]; 2038[label="primCmpFloat (Float vwx300 (Neg vwx3010)) (Float vwx400 (Neg vwx4010))",fontsize=16,color="black",shape="box"];2038 -> 2089[label="",style="solid", color="black", weight=3]; 2039[label="primCmpDouble (Double vwx300 (Pos vwx3010)) (Double vwx400 (Pos vwx4010))",fontsize=16,color="black",shape="box"];2039 -> 2090[label="",style="solid", color="black", weight=3]; 2040[label="primCmpDouble (Double vwx300 (Pos vwx3010)) (Double vwx400 (Neg vwx4010))",fontsize=16,color="black",shape="box"];2040 -> 2091[label="",style="solid", color="black", weight=3]; 2041[label="primCmpDouble (Double vwx300 (Neg vwx3010)) (Double vwx400 (Pos vwx4010))",fontsize=16,color="black",shape="box"];2041 -> 2092[label="",style="solid", color="black", weight=3]; 2042[label="primCmpDouble (Double vwx300 (Neg vwx3010)) (Double vwx400 (Neg vwx4010))",fontsize=16,color="black",shape="box"];2042 -> 2093[label="",style="solid", color="black", weight=3]; 2043 -> 2094[label="",style="dashed", color="red", weight=0]; 2043[label="compare2 (Left vwx300) (Left vwx400) (vwx300 == vwx400)",fontsize=16,color="magenta"];2043 -> 2095[label="",style="dashed", color="magenta", weight=3]; 2043 -> 2096[label="",style="dashed", color="magenta", weight=3]; 2043 -> 2097[label="",style="dashed", color="magenta", weight=3]; 2044[label="compare2 (Left vwx300) (Right vwx400) False",fontsize=16,color="black",shape="box"];2044 -> 2098[label="",style="solid", color="black", weight=3]; 2045[label="compare2 (Right vwx300) (Left vwx400) False",fontsize=16,color="black",shape="box"];2045 -> 2099[label="",style="solid", color="black", weight=3]; 2046 -> 2100[label="",style="dashed", color="red", weight=0]; 2046[label="compare2 (Right vwx300) (Right vwx400) (vwx300 == vwx400)",fontsize=16,color="magenta"];2046 -> 2101[label="",style="dashed", color="magenta", weight=3]; 2046 -> 2102[label="",style="dashed", color="magenta", weight=3]; 2046 -> 2103[label="",style="dashed", color="magenta", weight=3]; 2047 -> 2680[label="",style="dashed", color="red", weight=0]; 2047[label="compare2 (vwx300,vwx301,vwx302) (vwx400,vwx401,vwx402) (vwx300 == vwx400 && vwx301 == vwx401 && vwx302 == vwx402)",fontsize=16,color="magenta"];2047 -> 2681[label="",style="dashed", color="magenta", weight=3]; 2047 -> 2682[label="",style="dashed", color="magenta", weight=3]; 2047 -> 2683[label="",style="dashed", color="magenta", weight=3]; 2047 -> 2684[label="",style="dashed", color="magenta", weight=3]; 2047 -> 2685[label="",style="dashed", color="magenta", weight=3]; 2047 -> 2686[label="",style="dashed", color="magenta", weight=3]; 2047 -> 2687[label="",style="dashed", color="magenta", weight=3]; 2048[label="compare2 Nothing Nothing True",fontsize=16,color="black",shape="box"];2048 -> 2112[label="",style="solid", color="black", weight=3]; 2049[label="compare2 Nothing (Just vwx400) False",fontsize=16,color="black",shape="box"];2049 -> 2113[label="",style="solid", color="black", weight=3]; 2050[label="compare2 (Just vwx300) Nothing False",fontsize=16,color="black",shape="box"];2050 -> 2114[label="",style="solid", color="black", weight=3]; 2051 -> 2115[label="",style="dashed", color="red", weight=0]; 2051[label="compare2 (Just vwx300) (Just vwx400) (vwx300 == vwx400)",fontsize=16,color="magenta"];2051 -> 2116[label="",style="dashed", color="magenta", weight=3]; 2051 -> 2117[label="",style="dashed", color="magenta", weight=3]; 2051 -> 2118[label="",style="dashed", color="magenta", weight=3]; 2052 -> 2014[label="",style="dashed", color="red", weight=0]; 2052[label="primCmpNat (Succ vwx3000) vwx400",fontsize=16,color="magenta"];2052 -> 2119[label="",style="dashed", color="magenta", weight=3]; 2052 -> 2120[label="",style="dashed", color="magenta", weight=3]; 2053[label="GT",fontsize=16,color="green",shape="box"];2054[label="primCmpInt (Pos Zero) (Pos (Succ vwx4000))",fontsize=16,color="black",shape="box"];2054 -> 2121[label="",style="solid", color="black", weight=3]; 2055[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2055 -> 2122[label="",style="solid", color="black", weight=3]; 2056[label="primCmpInt (Pos Zero) (Neg (Succ vwx4000))",fontsize=16,color="black",shape="box"];2056 -> 2123[label="",style="solid", color="black", weight=3]; 2057[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2057 -> 2124[label="",style="solid", color="black", weight=3]; 2058[label="LT",fontsize=16,color="green",shape="box"];2059 -> 2014[label="",style="dashed", color="red", weight=0]; 2059[label="primCmpNat vwx400 (Succ vwx3000)",fontsize=16,color="magenta"];2059 -> 2125[label="",style="dashed", color="magenta", weight=3]; 2059 -> 2126[label="",style="dashed", color="magenta", weight=3]; 2060[label="primCmpInt (Neg Zero) (Pos (Succ vwx4000))",fontsize=16,color="black",shape="box"];2060 -> 2127[label="",style="solid", color="black", weight=3]; 2061[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2061 -> 2128[label="",style="solid", color="black", weight=3]; 2062[label="primCmpInt (Neg Zero) (Neg (Succ vwx4000))",fontsize=16,color="black",shape="box"];2062 -> 2129[label="",style="solid", color="black", weight=3]; 2063[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2063 -> 2130[label="",style="solid", color="black", weight=3]; 2064[label="primCmpNat (Succ vwx3000) vwx400",fontsize=16,color="burlywood",shape="box"];4723[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];2064 -> 4723[label="",style="solid", color="burlywood", weight=9]; 4723 -> 2131[label="",style="solid", color="burlywood", weight=3]; 4724[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];2064 -> 4724[label="",style="solid", color="burlywood", weight=9]; 4724 -> 2132[label="",style="solid", color="burlywood", weight=3]; 2065[label="primCmpNat Zero vwx400",fontsize=16,color="burlywood",shape="box"];4725[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];2065 -> 4725[label="",style="solid", color="burlywood", weight=9]; 4725 -> 2133[label="",style="solid", color="burlywood", weight=3]; 4726[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];2065 -> 4726[label="",style="solid", color="burlywood", weight=9]; 4726 -> 2134[label="",style="solid", color="burlywood", weight=3]; 2066 -> 2521[label="",style="dashed", color="red", weight=0]; 2066[label="compare2 (vwx300,vwx301) (vwx400,vwx401) (vwx300 == vwx400 && vwx301 == vwx401)",fontsize=16,color="magenta"];2066 -> 2522[label="",style="dashed", color="magenta", weight=3]; 2066 -> 2523[label="",style="dashed", color="magenta", weight=3]; 2066 -> 2524[label="",style="dashed", color="magenta", weight=3]; 2066 -> 2525[label="",style="dashed", color="magenta", weight=3]; 2066 -> 2526[label="",style="dashed", color="magenta", weight=3]; 2067[label="compare2 LT LT True",fontsize=16,color="black",shape="box"];2067 -> 2141[label="",style="solid", color="black", weight=3]; 2068[label="compare2 LT EQ False",fontsize=16,color="black",shape="box"];2068 -> 2142[label="",style="solid", color="black", weight=3]; 2069[label="compare2 LT GT False",fontsize=16,color="black",shape="box"];2069 -> 2143[label="",style="solid", color="black", weight=3]; 2070[label="compare2 EQ LT False",fontsize=16,color="black",shape="box"];2070 -> 2144[label="",style="solid", color="black", weight=3]; 2071[label="compare2 EQ EQ True",fontsize=16,color="black",shape="box"];2071 -> 2145[label="",style="solid", color="black", weight=3]; 2072[label="compare2 EQ GT False",fontsize=16,color="black",shape="box"];2072 -> 2146[label="",style="solid", color="black", weight=3]; 2073[label="compare2 GT LT False",fontsize=16,color="black",shape="box"];2073 -> 2147[label="",style="solid", color="black", weight=3]; 2074[label="compare2 GT EQ False",fontsize=16,color="black",shape="box"];2074 -> 2148[label="",style="solid", color="black", weight=3]; 2075[label="compare2 GT GT True",fontsize=16,color="black",shape="box"];2075 -> 2149[label="",style="solid", color="black", weight=3]; 2076[label="compare2 False False True",fontsize=16,color="black",shape="box"];2076 -> 2150[label="",style="solid", color="black", weight=3]; 2077[label="compare2 False True False",fontsize=16,color="black",shape="box"];2077 -> 2151[label="",style="solid", color="black", weight=3]; 2078[label="compare2 True False False",fontsize=16,color="black",shape="box"];2078 -> 2152[label="",style="solid", color="black", weight=3]; 2079[label="compare2 True True True",fontsize=16,color="black",shape="box"];2079 -> 2153[label="",style="solid", color="black", weight=3]; 2080[label="primMulInt vwx300 vwx401",fontsize=16,color="burlywood",shape="triangle"];4727[label="vwx300/Pos vwx3000",fontsize=10,color="white",style="solid",shape="box"];2080 -> 4727[label="",style="solid", color="burlywood", weight=9]; 4727 -> 2154[label="",style="solid", color="burlywood", weight=3]; 4728[label="vwx300/Neg vwx3000",fontsize=10,color="white",style="solid",shape="box"];2080 -> 4728[label="",style="solid", color="burlywood", weight=9]; 4728 -> 2155[label="",style="solid", color="burlywood", weight=3]; 2081[label="vwx400",fontsize=16,color="green",shape="box"];2082[label="vwx301",fontsize=16,color="green",shape="box"];2083[label="Integer vwx3000 * vwx401",fontsize=16,color="burlywood",shape="box"];4729[label="vwx401/Integer vwx4010",fontsize=10,color="white",style="solid",shape="box"];2083 -> 4729[label="",style="solid", color="burlywood", weight=9]; 4729 -> 2156[label="",style="solid", color="burlywood", weight=3]; 2084[label="vwx400",fontsize=16,color="green",shape="box"];2085[label="vwx301",fontsize=16,color="green",shape="box"];2086 -> 1926[label="",style="dashed", color="red", weight=0]; 2086[label="compare (vwx300 * Pos vwx4010) (Pos vwx3010 * vwx400)",fontsize=16,color="magenta"];2086 -> 2157[label="",style="dashed", color="magenta", weight=3]; 2086 -> 2158[label="",style="dashed", color="magenta", weight=3]; 2087 -> 1926[label="",style="dashed", color="red", weight=0]; 2087[label="compare (vwx300 * Pos vwx4010) (Neg vwx3010 * vwx400)",fontsize=16,color="magenta"];2087 -> 2159[label="",style="dashed", color="magenta", weight=3]; 2087 -> 2160[label="",style="dashed", color="magenta", weight=3]; 2088 -> 1926[label="",style="dashed", color="red", weight=0]; 2088[label="compare (vwx300 * Neg vwx4010) (Pos vwx3010 * vwx400)",fontsize=16,color="magenta"];2088 -> 2161[label="",style="dashed", color="magenta", weight=3]; 2088 -> 2162[label="",style="dashed", color="magenta", weight=3]; 2089 -> 1926[label="",style="dashed", color="red", weight=0]; 2089[label="compare (vwx300 * Neg vwx4010) (Neg vwx3010 * vwx400)",fontsize=16,color="magenta"];2089 -> 2163[label="",style="dashed", color="magenta", weight=3]; 2089 -> 2164[label="",style="dashed", color="magenta", weight=3]; 2090 -> 1926[label="",style="dashed", color="red", weight=0]; 2090[label="compare (vwx300 * Pos vwx4010) (Pos vwx3010 * vwx400)",fontsize=16,color="magenta"];2090 -> 2165[label="",style="dashed", color="magenta", weight=3]; 2090 -> 2166[label="",style="dashed", color="magenta", weight=3]; 2091 -> 1926[label="",style="dashed", color="red", weight=0]; 2091[label="compare (vwx300 * Pos vwx4010) (Neg vwx3010 * vwx400)",fontsize=16,color="magenta"];2091 -> 2167[label="",style="dashed", color="magenta", weight=3]; 2091 -> 2168[label="",style="dashed", color="magenta", weight=3]; 2092 -> 1926[label="",style="dashed", color="red", weight=0]; 2092[label="compare (vwx300 * Neg vwx4010) (Pos vwx3010 * vwx400)",fontsize=16,color="magenta"];2092 -> 2169[label="",style="dashed", color="magenta", weight=3]; 2092 -> 2170[label="",style="dashed", color="magenta", weight=3]; 2093 -> 1926[label="",style="dashed", color="red", weight=0]; 2093[label="compare (vwx300 * Neg vwx4010) (Neg vwx3010 * vwx400)",fontsize=16,color="magenta"];2093 -> 2171[label="",style="dashed", color="magenta", weight=3]; 2093 -> 2172[label="",style="dashed", color="magenta", weight=3]; 2095[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];4730[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2095 -> 4730[label="",style="solid", color="blue", weight=9]; 4730 -> 2173[label="",style="solid", color="blue", weight=3]; 4731[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2095 -> 4731[label="",style="solid", color="blue", weight=9]; 4731 -> 2174[label="",style="solid", color="blue", weight=3]; 4732[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2095 -> 4732[label="",style="solid", color="blue", weight=9]; 4732 -> 2175[label="",style="solid", color="blue", weight=3]; 4733[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2095 -> 4733[label="",style="solid", color="blue", weight=9]; 4733 -> 2176[label="",style="solid", color="blue", weight=3]; 4734[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2095 -> 4734[label="",style="solid", color="blue", weight=9]; 4734 -> 2177[label="",style="solid", color="blue", weight=3]; 4735[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2095 -> 4735[label="",style="solid", color="blue", weight=9]; 4735 -> 2178[label="",style="solid", color="blue", weight=3]; 4736[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2095 -> 4736[label="",style="solid", color="blue", weight=9]; 4736 -> 2179[label="",style="solid", color="blue", weight=3]; 4737[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2095 -> 4737[label="",style="solid", color="blue", weight=9]; 4737 -> 2180[label="",style="solid", color="blue", weight=3]; 4738[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2095 -> 4738[label="",style="solid", color="blue", weight=9]; 4738 -> 2181[label="",style="solid", color="blue", weight=3]; 4739[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2095 -> 4739[label="",style="solid", color="blue", weight=9]; 4739 -> 2182[label="",style="solid", color="blue", weight=3]; 4740[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2095 -> 4740[label="",style="solid", color="blue", weight=9]; 4740 -> 2183[label="",style="solid", color="blue", weight=3]; 4741[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2095 -> 4741[label="",style="solid", color="blue", weight=9]; 4741 -> 2184[label="",style="solid", color="blue", weight=3]; 4742[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2095 -> 4742[label="",style="solid", color="blue", weight=9]; 4742 -> 2185[label="",style="solid", color="blue", weight=3]; 4743[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2095 -> 4743[label="",style="solid", color="blue", weight=9]; 4743 -> 2186[label="",style="solid", color="blue", weight=3]; 2096[label="vwx300",fontsize=16,color="green",shape="box"];2097[label="vwx400",fontsize=16,color="green",shape="box"];2094[label="compare2 (Left vwx174) (Left vwx175) vwx176",fontsize=16,color="burlywood",shape="triangle"];4744[label="vwx176/False",fontsize=10,color="white",style="solid",shape="box"];2094 -> 4744[label="",style="solid", color="burlywood", weight=9]; 4744 -> 2187[label="",style="solid", color="burlywood", weight=3]; 4745[label="vwx176/True",fontsize=10,color="white",style="solid",shape="box"];2094 -> 4745[label="",style="solid", color="burlywood", weight=9]; 4745 -> 2188[label="",style="solid", color="burlywood", weight=3]; 2098[label="compare1 (Left vwx300) (Right vwx400) (Left vwx300 <= Right vwx400)",fontsize=16,color="black",shape="box"];2098 -> 2189[label="",style="solid", color="black", weight=3]; 2099[label="compare1 (Right vwx300) (Left vwx400) (Right vwx300 <= Left vwx400)",fontsize=16,color="black",shape="box"];2099 -> 2190[label="",style="solid", color="black", weight=3]; 2101[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];4746[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2101 -> 4746[label="",style="solid", color="blue", weight=9]; 4746 -> 2191[label="",style="solid", color="blue", weight=3]; 4747[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2101 -> 4747[label="",style="solid", color="blue", weight=9]; 4747 -> 2192[label="",style="solid", color="blue", weight=3]; 4748[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2101 -> 4748[label="",style="solid", color="blue", weight=9]; 4748 -> 2193[label="",style="solid", color="blue", weight=3]; 4749[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2101 -> 4749[label="",style="solid", color="blue", weight=9]; 4749 -> 2194[label="",style="solid", color="blue", weight=3]; 4750[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2101 -> 4750[label="",style="solid", color="blue", weight=9]; 4750 -> 2195[label="",style="solid", color="blue", weight=3]; 4751[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2101 -> 4751[label="",style="solid", color="blue", weight=9]; 4751 -> 2196[label="",style="solid", color="blue", weight=3]; 4752[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2101 -> 4752[label="",style="solid", color="blue", weight=9]; 4752 -> 2197[label="",style="solid", color="blue", weight=3]; 4753[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2101 -> 4753[label="",style="solid", color="blue", weight=9]; 4753 -> 2198[label="",style="solid", color="blue", weight=3]; 4754[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2101 -> 4754[label="",style="solid", color="blue", weight=9]; 4754 -> 2199[label="",style="solid", color="blue", weight=3]; 4755[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2101 -> 4755[label="",style="solid", color="blue", weight=9]; 4755 -> 2200[label="",style="solid", color="blue", weight=3]; 4756[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2101 -> 4756[label="",style="solid", color="blue", weight=9]; 4756 -> 2201[label="",style="solid", color="blue", weight=3]; 4757[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2101 -> 4757[label="",style="solid", color="blue", weight=9]; 4757 -> 2202[label="",style="solid", color="blue", weight=3]; 4758[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2101 -> 4758[label="",style="solid", color="blue", weight=9]; 4758 -> 2203[label="",style="solid", color="blue", weight=3]; 4759[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2101 -> 4759[label="",style="solid", color="blue", weight=9]; 4759 -> 2204[label="",style="solid", color="blue", weight=3]; 2102[label="vwx300",fontsize=16,color="green",shape="box"];2103[label="vwx400",fontsize=16,color="green",shape="box"];2100[label="compare2 (Right vwx181) (Right vwx182) vwx183",fontsize=16,color="burlywood",shape="triangle"];4760[label="vwx183/False",fontsize=10,color="white",style="solid",shape="box"];2100 -> 4760[label="",style="solid", color="burlywood", weight=9]; 4760 -> 2205[label="",style="solid", color="burlywood", weight=3]; 4761[label="vwx183/True",fontsize=10,color="white",style="solid",shape="box"];2100 -> 4761[label="",style="solid", color="burlywood", weight=9]; 4761 -> 2206[label="",style="solid", color="burlywood", weight=3]; 2681[label="vwx301",fontsize=16,color="green",shape="box"];2682[label="vwx400",fontsize=16,color="green",shape="box"];2683[label="vwx402",fontsize=16,color="green",shape="box"];2684[label="vwx300",fontsize=16,color="green",shape="box"];2685[label="vwx401",fontsize=16,color="green",shape="box"];2686 -> 2732[label="",style="dashed", color="red", weight=0]; 2686[label="vwx300 == vwx400 && vwx301 == vwx401 && vwx302 == vwx402",fontsize=16,color="magenta"];2686 -> 2733[label="",style="dashed", color="magenta", weight=3]; 2686 -> 2734[label="",style="dashed", color="magenta", weight=3]; 2687[label="vwx302",fontsize=16,color="green",shape="box"];2680[label="compare2 (vwx225,vwx226,vwx227) (vwx228,vwx229,vwx230) vwx264",fontsize=16,color="burlywood",shape="triangle"];4762[label="vwx264/False",fontsize=10,color="white",style="solid",shape="box"];2680 -> 4762[label="",style="solid", color="burlywood", weight=9]; 4762 -> 2727[label="",style="solid", color="burlywood", weight=3]; 4763[label="vwx264/True",fontsize=10,color="white",style="solid",shape="box"];2680 -> 4763[label="",style="solid", color="burlywood", weight=9]; 4763 -> 2728[label="",style="solid", color="burlywood", weight=3]; 2112[label="EQ",fontsize=16,color="green",shape="box"];2113[label="compare1 Nothing (Just vwx400) (Nothing <= Just vwx400)",fontsize=16,color="black",shape="box"];2113 -> 2223[label="",style="solid", color="black", weight=3]; 2114[label="compare1 (Just vwx300) Nothing (Just vwx300 <= Nothing)",fontsize=16,color="black",shape="box"];2114 -> 2224[label="",style="solid", color="black", weight=3]; 2116[label="vwx400",fontsize=16,color="green",shape="box"];2117[label="vwx300",fontsize=16,color="green",shape="box"];2118[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];4764[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2118 -> 4764[label="",style="solid", color="blue", weight=9]; 4764 -> 2225[label="",style="solid", color="blue", weight=3]; 4765[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2118 -> 4765[label="",style="solid", color="blue", weight=9]; 4765 -> 2226[label="",style="solid", color="blue", weight=3]; 4766[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2118 -> 4766[label="",style="solid", color="blue", weight=9]; 4766 -> 2227[label="",style="solid", color="blue", weight=3]; 4767[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2118 -> 4767[label="",style="solid", color="blue", weight=9]; 4767 -> 2228[label="",style="solid", color="blue", weight=3]; 4768[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2118 -> 4768[label="",style="solid", color="blue", weight=9]; 4768 -> 2229[label="",style="solid", color="blue", weight=3]; 4769[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2118 -> 4769[label="",style="solid", color="blue", weight=9]; 4769 -> 2230[label="",style="solid", color="blue", weight=3]; 4770[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2118 -> 4770[label="",style="solid", color="blue", weight=9]; 4770 -> 2231[label="",style="solid", color="blue", weight=3]; 4771[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2118 -> 4771[label="",style="solid", color="blue", weight=9]; 4771 -> 2232[label="",style="solid", color="blue", weight=3]; 4772[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2118 -> 4772[label="",style="solid", color="blue", weight=9]; 4772 -> 2233[label="",style="solid", color="blue", weight=3]; 4773[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2118 -> 4773[label="",style="solid", color="blue", weight=9]; 4773 -> 2234[label="",style="solid", color="blue", weight=3]; 4774[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2118 -> 4774[label="",style="solid", color="blue", weight=9]; 4774 -> 2235[label="",style="solid", color="blue", weight=3]; 4775[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2118 -> 4775[label="",style="solid", color="blue", weight=9]; 4775 -> 2236[label="",style="solid", color="blue", weight=3]; 4776[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2118 -> 4776[label="",style="solid", color="blue", weight=9]; 4776 -> 2237[label="",style="solid", color="blue", weight=3]; 4777[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2118 -> 4777[label="",style="solid", color="blue", weight=9]; 4777 -> 2238[label="",style="solid", color="blue", weight=3]; 2115[label="compare2 (Just vwx203) (Just vwx204) vwx205",fontsize=16,color="burlywood",shape="triangle"];4778[label="vwx205/False",fontsize=10,color="white",style="solid",shape="box"];2115 -> 4778[label="",style="solid", color="burlywood", weight=9]; 4778 -> 2239[label="",style="solid", color="burlywood", weight=3]; 4779[label="vwx205/True",fontsize=10,color="white",style="solid",shape="box"];2115 -> 4779[label="",style="solid", color="burlywood", weight=9]; 4779 -> 2240[label="",style="solid", color="burlywood", weight=3]; 2119[label="Succ vwx3000",fontsize=16,color="green",shape="box"];2120[label="vwx400",fontsize=16,color="green",shape="box"];2121 -> 2014[label="",style="dashed", color="red", weight=0]; 2121[label="primCmpNat Zero (Succ vwx4000)",fontsize=16,color="magenta"];2121 -> 2241[label="",style="dashed", color="magenta", weight=3]; 2121 -> 2242[label="",style="dashed", color="magenta", weight=3]; 2122[label="EQ",fontsize=16,color="green",shape="box"];2123[label="GT",fontsize=16,color="green",shape="box"];2124[label="EQ",fontsize=16,color="green",shape="box"];2125[label="vwx400",fontsize=16,color="green",shape="box"];2126[label="Succ vwx3000",fontsize=16,color="green",shape="box"];2127[label="LT",fontsize=16,color="green",shape="box"];2128[label="EQ",fontsize=16,color="green",shape="box"];2129 -> 2014[label="",style="dashed", color="red", weight=0]; 2129[label="primCmpNat (Succ vwx4000) Zero",fontsize=16,color="magenta"];2129 -> 2243[label="",style="dashed", color="magenta", weight=3]; 2129 -> 2244[label="",style="dashed", color="magenta", weight=3]; 2130[label="EQ",fontsize=16,color="green",shape="box"];2131[label="primCmpNat (Succ vwx3000) (Succ vwx4000)",fontsize=16,color="black",shape="box"];2131 -> 2245[label="",style="solid", color="black", weight=3]; 2132[label="primCmpNat (Succ vwx3000) Zero",fontsize=16,color="black",shape="box"];2132 -> 2246[label="",style="solid", color="black", weight=3]; 2133[label="primCmpNat Zero (Succ vwx4000)",fontsize=16,color="black",shape="box"];2133 -> 2247[label="",style="solid", color="black", weight=3]; 2134[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];2134 -> 2248[label="",style="solid", color="black", weight=3]; 2522[label="vwx401",fontsize=16,color="green",shape="box"];2523[label="vwx301",fontsize=16,color="green",shape="box"];2524[label="vwx400",fontsize=16,color="green",shape="box"];2525[label="vwx300",fontsize=16,color="green",shape="box"];2526 -> 2732[label="",style="dashed", color="red", weight=0]; 2526[label="vwx300 == vwx400 && vwx301 == vwx401",fontsize=16,color="magenta"];2526 -> 2735[label="",style="dashed", color="magenta", weight=3]; 2526 -> 2736[label="",style="dashed", color="magenta", weight=3]; 2521[label="compare2 (vwx238,vwx239) (vwx240,vwx241) vwx242",fontsize=16,color="burlywood",shape="triangle"];4780[label="vwx242/False",fontsize=10,color="white",style="solid",shape="box"];2521 -> 4780[label="",style="solid", color="burlywood", weight=9]; 4780 -> 2546[label="",style="solid", color="burlywood", weight=3]; 4781[label="vwx242/True",fontsize=10,color="white",style="solid",shape="box"];2521 -> 4781[label="",style="solid", color="burlywood", weight=9]; 4781 -> 2547[label="",style="solid", color="burlywood", weight=3]; 2141[label="EQ",fontsize=16,color="green",shape="box"];2142[label="compare1 LT EQ (LT <= EQ)",fontsize=16,color="black",shape="box"];2142 -> 2265[label="",style="solid", color="black", weight=3]; 2143[label="compare1 LT GT (LT <= GT)",fontsize=16,color="black",shape="box"];2143 -> 2266[label="",style="solid", color="black", weight=3]; 2144[label="compare1 EQ LT (EQ <= LT)",fontsize=16,color="black",shape="box"];2144 -> 2267[label="",style="solid", color="black", weight=3]; 2145[label="EQ",fontsize=16,color="green",shape="box"];2146[label="compare1 EQ GT (EQ <= GT)",fontsize=16,color="black",shape="box"];2146 -> 2268[label="",style="solid", color="black", weight=3]; 2147[label="compare1 GT LT (GT <= LT)",fontsize=16,color="black",shape="box"];2147 -> 2269[label="",style="solid", color="black", weight=3]; 2148[label="compare1 GT EQ (GT <= EQ)",fontsize=16,color="black",shape="box"];2148 -> 2270[label="",style="solid", color="black", weight=3]; 2149[label="EQ",fontsize=16,color="green",shape="box"];2150[label="EQ",fontsize=16,color="green",shape="box"];2151[label="compare1 False True (False <= True)",fontsize=16,color="black",shape="box"];2151 -> 2271[label="",style="solid", color="black", weight=3]; 2152[label="compare1 True False (True <= False)",fontsize=16,color="black",shape="box"];2152 -> 2272[label="",style="solid", color="black", weight=3]; 2153[label="EQ",fontsize=16,color="green",shape="box"];2154[label="primMulInt (Pos vwx3000) vwx401",fontsize=16,color="burlywood",shape="box"];4782[label="vwx401/Pos vwx4010",fontsize=10,color="white",style="solid",shape="box"];2154 -> 4782[label="",style="solid", color="burlywood", weight=9]; 4782 -> 2273[label="",style="solid", color="burlywood", weight=3]; 4783[label="vwx401/Neg vwx4010",fontsize=10,color="white",style="solid",shape="box"];2154 -> 4783[label="",style="solid", color="burlywood", weight=9]; 4783 -> 2274[label="",style="solid", color="burlywood", weight=3]; 2155[label="primMulInt (Neg vwx3000) vwx401",fontsize=16,color="burlywood",shape="box"];4784[label="vwx401/Pos vwx4010",fontsize=10,color="white",style="solid",shape="box"];2155 -> 4784[label="",style="solid", color="burlywood", weight=9]; 4784 -> 2275[label="",style="solid", color="burlywood", weight=3]; 4785[label="vwx401/Neg vwx4010",fontsize=10,color="white",style="solid",shape="box"];2155 -> 4785[label="",style="solid", color="burlywood", weight=9]; 4785 -> 2276[label="",style="solid", color="burlywood", weight=3]; 2156[label="Integer vwx3000 * Integer vwx4010",fontsize=16,color="black",shape="box"];2156 -> 2277[label="",style="solid", color="black", weight=3]; 2157 -> 2031[label="",style="dashed", color="red", weight=0]; 2157[label="vwx300 * Pos vwx4010",fontsize=16,color="magenta"];2157 -> 2278[label="",style="dashed", color="magenta", weight=3]; 2157 -> 2279[label="",style="dashed", color="magenta", weight=3]; 2158 -> 2031[label="",style="dashed", color="red", weight=0]; 2158[label="Pos vwx3010 * vwx400",fontsize=16,color="magenta"];2158 -> 2280[label="",style="dashed", color="magenta", weight=3]; 2158 -> 2281[label="",style="dashed", color="magenta", weight=3]; 2159 -> 2031[label="",style="dashed", color="red", weight=0]; 2159[label="vwx300 * Pos vwx4010",fontsize=16,color="magenta"];2159 -> 2282[label="",style="dashed", color="magenta", weight=3]; 2159 -> 2283[label="",style="dashed", color="magenta", weight=3]; 2160 -> 2031[label="",style="dashed", color="red", weight=0]; 2160[label="Neg vwx3010 * vwx400",fontsize=16,color="magenta"];2160 -> 2284[label="",style="dashed", color="magenta", weight=3]; 2160 -> 2285[label="",style="dashed", color="magenta", weight=3]; 2161 -> 2031[label="",style="dashed", color="red", weight=0]; 2161[label="vwx300 * Neg vwx4010",fontsize=16,color="magenta"];2161 -> 2286[label="",style="dashed", color="magenta", weight=3]; 2161 -> 2287[label="",style="dashed", color="magenta", weight=3]; 2162 -> 2031[label="",style="dashed", color="red", weight=0]; 2162[label="Pos vwx3010 * vwx400",fontsize=16,color="magenta"];2162 -> 2288[label="",style="dashed", color="magenta", weight=3]; 2162 -> 2289[label="",style="dashed", color="magenta", weight=3]; 2163 -> 2031[label="",style="dashed", color="red", weight=0]; 2163[label="vwx300 * Neg vwx4010",fontsize=16,color="magenta"];2163 -> 2290[label="",style="dashed", color="magenta", weight=3]; 2163 -> 2291[label="",style="dashed", color="magenta", weight=3]; 2164 -> 2031[label="",style="dashed", color="red", weight=0]; 2164[label="Neg vwx3010 * vwx400",fontsize=16,color="magenta"];2164 -> 2292[label="",style="dashed", color="magenta", weight=3]; 2164 -> 2293[label="",style="dashed", color="magenta", weight=3]; 2165 -> 2031[label="",style="dashed", color="red", weight=0]; 2165[label="vwx300 * Pos vwx4010",fontsize=16,color="magenta"];2165 -> 2294[label="",style="dashed", color="magenta", weight=3]; 2165 -> 2295[label="",style="dashed", color="magenta", weight=3]; 2166 -> 2031[label="",style="dashed", color="red", weight=0]; 2166[label="Pos vwx3010 * vwx400",fontsize=16,color="magenta"];2166 -> 2296[label="",style="dashed", color="magenta", weight=3]; 2166 -> 2297[label="",style="dashed", color="magenta", weight=3]; 2167 -> 2031[label="",style="dashed", color="red", weight=0]; 2167[label="vwx300 * Pos vwx4010",fontsize=16,color="magenta"];2167 -> 2298[label="",style="dashed", color="magenta", weight=3]; 2167 -> 2299[label="",style="dashed", color="magenta", weight=3]; 2168 -> 2031[label="",style="dashed", color="red", weight=0]; 2168[label="Neg vwx3010 * vwx400",fontsize=16,color="magenta"];2168 -> 2300[label="",style="dashed", color="magenta", weight=3]; 2168 -> 2301[label="",style="dashed", color="magenta", weight=3]; 2169 -> 2031[label="",style="dashed", color="red", weight=0]; 2169[label="vwx300 * Neg vwx4010",fontsize=16,color="magenta"];2169 -> 2302[label="",style="dashed", color="magenta", weight=3]; 2169 -> 2303[label="",style="dashed", color="magenta", weight=3]; 2170 -> 2031[label="",style="dashed", color="red", weight=0]; 2170[label="Pos vwx3010 * vwx400",fontsize=16,color="magenta"];2170 -> 2304[label="",style="dashed", color="magenta", weight=3]; 2170 -> 2305[label="",style="dashed", color="magenta", weight=3]; 2171 -> 2031[label="",style="dashed", color="red", weight=0]; 2171[label="vwx300 * Neg vwx4010",fontsize=16,color="magenta"];2171 -> 2306[label="",style="dashed", color="magenta", weight=3]; 2171 -> 2307[label="",style="dashed", color="magenta", weight=3]; 2172 -> 2031[label="",style="dashed", color="red", weight=0]; 2172[label="Neg vwx3010 * vwx400",fontsize=16,color="magenta"];2172 -> 2308[label="",style="dashed", color="magenta", weight=3]; 2172 -> 2309[label="",style="dashed", color="magenta", weight=3]; 2173[label="vwx300 == vwx400",fontsize=16,color="burlywood",shape="triangle"];4786[label="vwx300/(vwx3000,vwx3001,vwx3002)",fontsize=10,color="white",style="solid",shape="box"];2173 -> 4786[label="",style="solid", color="burlywood", weight=9]; 4786 -> 2310[label="",style="solid", color="burlywood", weight=3]; 2174[label="vwx300 == vwx400",fontsize=16,color="burlywood",shape="triangle"];4787[label="vwx300/False",fontsize=10,color="white",style="solid",shape="box"];2174 -> 4787[label="",style="solid", color="burlywood", weight=9]; 4787 -> 2311[label="",style="solid", color="burlywood", weight=3]; 4788[label="vwx300/True",fontsize=10,color="white",style="solid",shape="box"];2174 -> 4788[label="",style="solid", color="burlywood", weight=9]; 4788 -> 2312[label="",style="solid", color="burlywood", weight=3]; 2175[label="vwx300 == vwx400",fontsize=16,color="black",shape="triangle"];2175 -> 2313[label="",style="solid", color="black", weight=3]; 2176[label="vwx300 == vwx400",fontsize=16,color="black",shape="triangle"];2176 -> 2314[label="",style="solid", color="black", weight=3]; 2177[label="vwx300 == vwx400",fontsize=16,color="black",shape="triangle"];2177 -> 2315[label="",style="solid", color="black", weight=3]; 2178[label="vwx300 == vwx400",fontsize=16,color="burlywood",shape="triangle"];4789[label="vwx300/vwx3000 : vwx3001",fontsize=10,color="white",style="solid",shape="box"];2178 -> 4789[label="",style="solid", color="burlywood", weight=9]; 4789 -> 2316[label="",style="solid", color="burlywood", weight=3]; 4790[label="vwx300/[]",fontsize=10,color="white",style="solid",shape="box"];2178 -> 4790[label="",style="solid", color="burlywood", weight=9]; 4790 -> 2317[label="",style="solid", color="burlywood", weight=3]; 2179[label="vwx300 == vwx400",fontsize=16,color="burlywood",shape="triangle"];4791[label="vwx300/Left vwx3000",fontsize=10,color="white",style="solid",shape="box"];2179 -> 4791[label="",style="solid", color="burlywood", weight=9]; 4791 -> 2318[label="",style="solid", color="burlywood", weight=3]; 4792[label="vwx300/Right vwx3000",fontsize=10,color="white",style="solid",shape="box"];2179 -> 4792[label="",style="solid", color="burlywood", weight=9]; 4792 -> 2319[label="",style="solid", color="burlywood", weight=3]; 2180[label="vwx300 == vwx400",fontsize=16,color="burlywood",shape="triangle"];4793[label="vwx300/Nothing",fontsize=10,color="white",style="solid",shape="box"];2180 -> 4793[label="",style="solid", color="burlywood", weight=9]; 4793 -> 2320[label="",style="solid", color="burlywood", weight=3]; 4794[label="vwx300/Just vwx3000",fontsize=10,color="white",style="solid",shape="box"];2180 -> 4794[label="",style="solid", color="burlywood", weight=9]; 4794 -> 2321[label="",style="solid", color="burlywood", weight=3]; 2181[label="vwx300 == vwx400",fontsize=16,color="burlywood",shape="triangle"];4795[label="vwx300/vwx3000 :% vwx3001",fontsize=10,color="white",style="solid",shape="box"];2181 -> 4795[label="",style="solid", color="burlywood", weight=9]; 4795 -> 2322[label="",style="solid", color="burlywood", weight=3]; 2182[label="vwx300 == vwx400",fontsize=16,color="burlywood",shape="triangle"];4796[label="vwx300/LT",fontsize=10,color="white",style="solid",shape="box"];2182 -> 4796[label="",style="solid", color="burlywood", weight=9]; 4796 -> 2323[label="",style="solid", color="burlywood", weight=3]; 4797[label="vwx300/EQ",fontsize=10,color="white",style="solid",shape="box"];2182 -> 4797[label="",style="solid", color="burlywood", weight=9]; 4797 -> 2324[label="",style="solid", color="burlywood", weight=3]; 4798[label="vwx300/GT",fontsize=10,color="white",style="solid",shape="box"];2182 -> 4798[label="",style="solid", color="burlywood", weight=9]; 4798 -> 2325[label="",style="solid", color="burlywood", weight=3]; 2183[label="vwx300 == vwx400",fontsize=16,color="burlywood",shape="triangle"];4799[label="vwx300/()",fontsize=10,color="white",style="solid",shape="box"];2183 -> 4799[label="",style="solid", color="burlywood", weight=9]; 4799 -> 2326[label="",style="solid", color="burlywood", weight=3]; 2184[label="vwx300 == vwx400",fontsize=16,color="burlywood",shape="triangle"];4800[label="vwx300/(vwx3000,vwx3001)",fontsize=10,color="white",style="solid",shape="box"];2184 -> 4800[label="",style="solid", color="burlywood", weight=9]; 4800 -> 2327[label="",style="solid", color="burlywood", weight=3]; 2185[label="vwx300 == vwx400",fontsize=16,color="burlywood",shape="triangle"];4801[label="vwx300/Integer vwx3000",fontsize=10,color="white",style="solid",shape="box"];2185 -> 4801[label="",style="solid", color="burlywood", weight=9]; 4801 -> 2328[label="",style="solid", color="burlywood", weight=3]; 2186[label="vwx300 == vwx400",fontsize=16,color="black",shape="triangle"];2186 -> 2329[label="",style="solid", color="black", weight=3]; 2187[label="compare2 (Left vwx174) (Left vwx175) False",fontsize=16,color="black",shape="box"];2187 -> 2330[label="",style="solid", color="black", weight=3]; 2188[label="compare2 (Left vwx174) (Left vwx175) True",fontsize=16,color="black",shape="box"];2188 -> 2331[label="",style="solid", color="black", weight=3]; 2189[label="compare1 (Left vwx300) (Right vwx400) True",fontsize=16,color="black",shape="box"];2189 -> 2332[label="",style="solid", color="black", weight=3]; 2190[label="compare1 (Right vwx300) (Left vwx400) False",fontsize=16,color="black",shape="box"];2190 -> 2333[label="",style="solid", color="black", weight=3]; 2191 -> 2173[label="",style="dashed", color="red", weight=0]; 2191[label="vwx300 == vwx400",fontsize=16,color="magenta"];2191 -> 2334[label="",style="dashed", color="magenta", weight=3]; 2191 -> 2335[label="",style="dashed", color="magenta", weight=3]; 2192 -> 2174[label="",style="dashed", color="red", weight=0]; 2192[label="vwx300 == vwx400",fontsize=16,color="magenta"];2192 -> 2336[label="",style="dashed", color="magenta", weight=3]; 2192 -> 2337[label="",style="dashed", color="magenta", weight=3]; 2193 -> 2175[label="",style="dashed", color="red", weight=0]; 2193[label="vwx300 == vwx400",fontsize=16,color="magenta"];2193 -> 2338[label="",style="dashed", color="magenta", weight=3]; 2193 -> 2339[label="",style="dashed", color="magenta", weight=3]; 2194 -> 2176[label="",style="dashed", color="red", weight=0]; 2194[label="vwx300 == vwx400",fontsize=16,color="magenta"];2194 -> 2340[label="",style="dashed", color="magenta", weight=3]; 2194 -> 2341[label="",style="dashed", color="magenta", weight=3]; 2195 -> 2177[label="",style="dashed", color="red", weight=0]; 2195[label="vwx300 == vwx400",fontsize=16,color="magenta"];2195 -> 2342[label="",style="dashed", color="magenta", weight=3]; 2195 -> 2343[label="",style="dashed", color="magenta", weight=3]; 2196 -> 2178[label="",style="dashed", color="red", weight=0]; 2196[label="vwx300 == vwx400",fontsize=16,color="magenta"];2196 -> 2344[label="",style="dashed", color="magenta", weight=3]; 2196 -> 2345[label="",style="dashed", color="magenta", weight=3]; 2197 -> 2179[label="",style="dashed", color="red", weight=0]; 2197[label="vwx300 == vwx400",fontsize=16,color="magenta"];2197 -> 2346[label="",style="dashed", color="magenta", weight=3]; 2197 -> 2347[label="",style="dashed", color="magenta", weight=3]; 2198 -> 2180[label="",style="dashed", color="red", weight=0]; 2198[label="vwx300 == vwx400",fontsize=16,color="magenta"];2198 -> 2348[label="",style="dashed", color="magenta", weight=3]; 2198 -> 2349[label="",style="dashed", color="magenta", weight=3]; 2199 -> 2181[label="",style="dashed", color="red", weight=0]; 2199[label="vwx300 == vwx400",fontsize=16,color="magenta"];2199 -> 2350[label="",style="dashed", color="magenta", weight=3]; 2199 -> 2351[label="",style="dashed", color="magenta", weight=3]; 2200 -> 2182[label="",style="dashed", color="red", weight=0]; 2200[label="vwx300 == vwx400",fontsize=16,color="magenta"];2200 -> 2352[label="",style="dashed", color="magenta", weight=3]; 2200 -> 2353[label="",style="dashed", color="magenta", weight=3]; 2201 -> 2183[label="",style="dashed", color="red", weight=0]; 2201[label="vwx300 == vwx400",fontsize=16,color="magenta"];2201 -> 2354[label="",style="dashed", color="magenta", weight=3]; 2201 -> 2355[label="",style="dashed", color="magenta", weight=3]; 2202 -> 2184[label="",style="dashed", color="red", weight=0]; 2202[label="vwx300 == vwx400",fontsize=16,color="magenta"];2202 -> 2356[label="",style="dashed", color="magenta", weight=3]; 2202 -> 2357[label="",style="dashed", color="magenta", weight=3]; 2203 -> 2185[label="",style="dashed", color="red", weight=0]; 2203[label="vwx300 == vwx400",fontsize=16,color="magenta"];2203 -> 2358[label="",style="dashed", color="magenta", weight=3]; 2203 -> 2359[label="",style="dashed", color="magenta", weight=3]; 2204 -> 2186[label="",style="dashed", color="red", weight=0]; 2204[label="vwx300 == vwx400",fontsize=16,color="magenta"];2204 -> 2360[label="",style="dashed", color="magenta", weight=3]; 2204 -> 2361[label="",style="dashed", color="magenta", weight=3]; 2205[label="compare2 (Right vwx181) (Right vwx182) False",fontsize=16,color="black",shape="box"];2205 -> 2362[label="",style="solid", color="black", weight=3]; 2206[label="compare2 (Right vwx181) (Right vwx182) True",fontsize=16,color="black",shape="box"];2206 -> 2363[label="",style="solid", color="black", weight=3]; 2733[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];4802[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2733 -> 4802[label="",style="solid", color="blue", weight=9]; 4802 -> 2751[label="",style="solid", color="blue", weight=3]; 4803[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2733 -> 4803[label="",style="solid", color="blue", weight=9]; 4803 -> 2752[label="",style="solid", color="blue", weight=3]; 4804[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2733 -> 4804[label="",style="solid", color="blue", weight=9]; 4804 -> 2753[label="",style="solid", color="blue", weight=3]; 4805[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2733 -> 4805[label="",style="solid", color="blue", weight=9]; 4805 -> 2754[label="",style="solid", color="blue", weight=3]; 4806[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2733 -> 4806[label="",style="solid", color="blue", weight=9]; 4806 -> 2755[label="",style="solid", color="blue", weight=3]; 4807[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2733 -> 4807[label="",style="solid", color="blue", weight=9]; 4807 -> 2756[label="",style="solid", color="blue", weight=3]; 4808[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2733 -> 4808[label="",style="solid", color="blue", weight=9]; 4808 -> 2757[label="",style="solid", color="blue", weight=3]; 4809[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2733 -> 4809[label="",style="solid", color="blue", weight=9]; 4809 -> 2758[label="",style="solid", color="blue", weight=3]; 4810[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2733 -> 4810[label="",style="solid", color="blue", weight=9]; 4810 -> 2759[label="",style="solid", color="blue", weight=3]; 4811[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2733 -> 4811[label="",style="solid", color="blue", weight=9]; 4811 -> 2760[label="",style="solid", color="blue", weight=3]; 4812[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2733 -> 4812[label="",style="solid", color="blue", weight=9]; 4812 -> 2761[label="",style="solid", color="blue", weight=3]; 4813[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2733 -> 4813[label="",style="solid", color="blue", weight=9]; 4813 -> 2762[label="",style="solid", color="blue", weight=3]; 4814[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2733 -> 4814[label="",style="solid", color="blue", weight=9]; 4814 -> 2763[label="",style="solid", color="blue", weight=3]; 4815[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2733 -> 4815[label="",style="solid", color="blue", weight=9]; 4815 -> 2764[label="",style="solid", color="blue", weight=3]; 2734 -> 2732[label="",style="dashed", color="red", weight=0]; 2734[label="vwx301 == vwx401 && vwx302 == vwx402",fontsize=16,color="magenta"];2734 -> 2765[label="",style="dashed", color="magenta", weight=3]; 2734 -> 2766[label="",style="dashed", color="magenta", weight=3]; 2732[label="vwx269 && vwx270",fontsize=16,color="burlywood",shape="triangle"];4816[label="vwx269/False",fontsize=10,color="white",style="solid",shape="box"];2732 -> 4816[label="",style="solid", color="burlywood", weight=9]; 4816 -> 2767[label="",style="solid", color="burlywood", weight=3]; 4817[label="vwx269/True",fontsize=10,color="white",style="solid",shape="box"];2732 -> 4817[label="",style="solid", color="burlywood", weight=9]; 4817 -> 2768[label="",style="solid", color="burlywood", weight=3]; 2727[label="compare2 (vwx225,vwx226,vwx227) (vwx228,vwx229,vwx230) False",fontsize=16,color="black",shape="box"];2727 -> 2769[label="",style="solid", color="black", weight=3]; 2728[label="compare2 (vwx225,vwx226,vwx227) (vwx228,vwx229,vwx230) True",fontsize=16,color="black",shape="box"];2728 -> 2770[label="",style="solid", color="black", weight=3]; 2223[label="compare1 Nothing (Just vwx400) True",fontsize=16,color="black",shape="box"];2223 -> 2394[label="",style="solid", color="black", weight=3]; 2224[label="compare1 (Just vwx300) Nothing False",fontsize=16,color="black",shape="box"];2224 -> 2395[label="",style="solid", color="black", weight=3]; 2225 -> 2173[label="",style="dashed", color="red", weight=0]; 2225[label="vwx300 == vwx400",fontsize=16,color="magenta"];2225 -> 2396[label="",style="dashed", color="magenta", weight=3]; 2225 -> 2397[label="",style="dashed", color="magenta", weight=3]; 2226 -> 2174[label="",style="dashed", color="red", weight=0]; 2226[label="vwx300 == vwx400",fontsize=16,color="magenta"];2226 -> 2398[label="",style="dashed", color="magenta", weight=3]; 2226 -> 2399[label="",style="dashed", color="magenta", weight=3]; 2227 -> 2175[label="",style="dashed", color="red", weight=0]; 2227[label="vwx300 == vwx400",fontsize=16,color="magenta"];2227 -> 2400[label="",style="dashed", color="magenta", weight=3]; 2227 -> 2401[label="",style="dashed", color="magenta", weight=3]; 2228 -> 2176[label="",style="dashed", color="red", weight=0]; 2228[label="vwx300 == vwx400",fontsize=16,color="magenta"];2228 -> 2402[label="",style="dashed", color="magenta", weight=3]; 2228 -> 2403[label="",style="dashed", color="magenta", weight=3]; 2229 -> 2177[label="",style="dashed", color="red", weight=0]; 2229[label="vwx300 == vwx400",fontsize=16,color="magenta"];2229 -> 2404[label="",style="dashed", color="magenta", weight=3]; 2229 -> 2405[label="",style="dashed", color="magenta", weight=3]; 2230 -> 2178[label="",style="dashed", color="red", weight=0]; 2230[label="vwx300 == vwx400",fontsize=16,color="magenta"];2230 -> 2406[label="",style="dashed", color="magenta", weight=3]; 2230 -> 2407[label="",style="dashed", color="magenta", weight=3]; 2231 -> 2179[label="",style="dashed", color="red", weight=0]; 2231[label="vwx300 == vwx400",fontsize=16,color="magenta"];2231 -> 2408[label="",style="dashed", color="magenta", weight=3]; 2231 -> 2409[label="",style="dashed", color="magenta", weight=3]; 2232 -> 2180[label="",style="dashed", color="red", weight=0]; 2232[label="vwx300 == vwx400",fontsize=16,color="magenta"];2232 -> 2410[label="",style="dashed", color="magenta", weight=3]; 2232 -> 2411[label="",style="dashed", color="magenta", weight=3]; 2233 -> 2181[label="",style="dashed", color="red", weight=0]; 2233[label="vwx300 == vwx400",fontsize=16,color="magenta"];2233 -> 2412[label="",style="dashed", color="magenta", weight=3]; 2233 -> 2413[label="",style="dashed", color="magenta", weight=3]; 2234 -> 2182[label="",style="dashed", color="red", weight=0]; 2234[label="vwx300 == vwx400",fontsize=16,color="magenta"];2234 -> 2414[label="",style="dashed", color="magenta", weight=3]; 2234 -> 2415[label="",style="dashed", color="magenta", weight=3]; 2235 -> 2183[label="",style="dashed", color="red", weight=0]; 2235[label="vwx300 == vwx400",fontsize=16,color="magenta"];2235 -> 2416[label="",style="dashed", color="magenta", weight=3]; 2235 -> 2417[label="",style="dashed", color="magenta", weight=3]; 2236 -> 2184[label="",style="dashed", color="red", weight=0]; 2236[label="vwx300 == vwx400",fontsize=16,color="magenta"];2236 -> 2418[label="",style="dashed", color="magenta", weight=3]; 2236 -> 2419[label="",style="dashed", color="magenta", weight=3]; 2237 -> 2185[label="",style="dashed", color="red", weight=0]; 2237[label="vwx300 == vwx400",fontsize=16,color="magenta"];2237 -> 2420[label="",style="dashed", color="magenta", weight=3]; 2237 -> 2421[label="",style="dashed", color="magenta", weight=3]; 2238 -> 2186[label="",style="dashed", color="red", weight=0]; 2238[label="vwx300 == vwx400",fontsize=16,color="magenta"];2238 -> 2422[label="",style="dashed", color="magenta", weight=3]; 2238 -> 2423[label="",style="dashed", color="magenta", weight=3]; 2239[label="compare2 (Just vwx203) (Just vwx204) False",fontsize=16,color="black",shape="box"];2239 -> 2424[label="",style="solid", color="black", weight=3]; 2240[label="compare2 (Just vwx203) (Just vwx204) True",fontsize=16,color="black",shape="box"];2240 -> 2425[label="",style="solid", color="black", weight=3]; 2241[label="Zero",fontsize=16,color="green",shape="box"];2242[label="Succ vwx4000",fontsize=16,color="green",shape="box"];2243[label="Succ vwx4000",fontsize=16,color="green",shape="box"];2244[label="Zero",fontsize=16,color="green",shape="box"];2245 -> 2014[label="",style="dashed", color="red", weight=0]; 2245[label="primCmpNat vwx3000 vwx4000",fontsize=16,color="magenta"];2245 -> 2426[label="",style="dashed", color="magenta", weight=3]; 2245 -> 2427[label="",style="dashed", color="magenta", weight=3]; 2246[label="GT",fontsize=16,color="green",shape="box"];2247[label="LT",fontsize=16,color="green",shape="box"];2248[label="EQ",fontsize=16,color="green",shape="box"];2735[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];4818[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2735 -> 4818[label="",style="solid", color="blue", weight=9]; 4818 -> 2771[label="",style="solid", color="blue", weight=3]; 4819[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2735 -> 4819[label="",style="solid", color="blue", weight=9]; 4819 -> 2772[label="",style="solid", color="blue", weight=3]; 4820[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2735 -> 4820[label="",style="solid", color="blue", weight=9]; 4820 -> 2773[label="",style="solid", color="blue", weight=3]; 4821[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2735 -> 4821[label="",style="solid", color="blue", weight=9]; 4821 -> 2774[label="",style="solid", color="blue", weight=3]; 4822[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2735 -> 4822[label="",style="solid", color="blue", weight=9]; 4822 -> 2775[label="",style="solid", color="blue", weight=3]; 4823[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2735 -> 4823[label="",style="solid", color="blue", weight=9]; 4823 -> 2776[label="",style="solid", color="blue", weight=3]; 4824[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2735 -> 4824[label="",style="solid", color="blue", weight=9]; 4824 -> 2777[label="",style="solid", color="blue", weight=3]; 4825[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2735 -> 4825[label="",style="solid", color="blue", weight=9]; 4825 -> 2778[label="",style="solid", color="blue", weight=3]; 4826[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2735 -> 4826[label="",style="solid", color="blue", weight=9]; 4826 -> 2779[label="",style="solid", color="blue", weight=3]; 4827[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2735 -> 4827[label="",style="solid", color="blue", weight=9]; 4827 -> 2780[label="",style="solid", color="blue", weight=3]; 4828[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2735 -> 4828[label="",style="solid", color="blue", weight=9]; 4828 -> 2781[label="",style="solid", color="blue", weight=3]; 4829[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2735 -> 4829[label="",style="solid", color="blue", weight=9]; 4829 -> 2782[label="",style="solid", color="blue", weight=3]; 4830[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2735 -> 4830[label="",style="solid", color="blue", weight=9]; 4830 -> 2783[label="",style="solid", color="blue", weight=3]; 4831[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2735 -> 4831[label="",style="solid", color="blue", weight=9]; 4831 -> 2784[label="",style="solid", color="blue", weight=3]; 2736[label="vwx301 == vwx401",fontsize=16,color="blue",shape="box"];4832[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2736 -> 4832[label="",style="solid", color="blue", weight=9]; 4832 -> 2785[label="",style="solid", color="blue", weight=3]; 4833[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2736 -> 4833[label="",style="solid", color="blue", weight=9]; 4833 -> 2786[label="",style="solid", color="blue", weight=3]; 4834[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2736 -> 4834[label="",style="solid", color="blue", weight=9]; 4834 -> 2787[label="",style="solid", color="blue", weight=3]; 4835[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2736 -> 4835[label="",style="solid", color="blue", weight=9]; 4835 -> 2788[label="",style="solid", color="blue", weight=3]; 4836[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2736 -> 4836[label="",style="solid", color="blue", weight=9]; 4836 -> 2789[label="",style="solid", color="blue", weight=3]; 4837[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2736 -> 4837[label="",style="solid", color="blue", weight=9]; 4837 -> 2790[label="",style="solid", color="blue", weight=3]; 4838[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2736 -> 4838[label="",style="solid", color="blue", weight=9]; 4838 -> 2791[label="",style="solid", color="blue", weight=3]; 4839[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2736 -> 4839[label="",style="solid", color="blue", weight=9]; 4839 -> 2792[label="",style="solid", color="blue", weight=3]; 4840[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2736 -> 4840[label="",style="solid", color="blue", weight=9]; 4840 -> 2793[label="",style="solid", color="blue", weight=3]; 4841[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2736 -> 4841[label="",style="solid", color="blue", weight=9]; 4841 -> 2794[label="",style="solid", color="blue", weight=3]; 4842[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2736 -> 4842[label="",style="solid", color="blue", weight=9]; 4842 -> 2795[label="",style="solid", color="blue", weight=3]; 4843[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2736 -> 4843[label="",style="solid", color="blue", weight=9]; 4843 -> 2796[label="",style="solid", color="blue", weight=3]; 4844[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2736 -> 4844[label="",style="solid", color="blue", weight=9]; 4844 -> 2797[label="",style="solid", color="blue", weight=3]; 4845[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2736 -> 4845[label="",style="solid", color="blue", weight=9]; 4845 -> 2798[label="",style="solid", color="blue", weight=3]; 2546[label="compare2 (vwx238,vwx239) (vwx240,vwx241) False",fontsize=16,color="black",shape="box"];2546 -> 2618[label="",style="solid", color="black", weight=3]; 2547[label="compare2 (vwx238,vwx239) (vwx240,vwx241) True",fontsize=16,color="black",shape="box"];2547 -> 2619[label="",style="solid", color="black", weight=3]; 2265[label="compare1 LT EQ True",fontsize=16,color="black",shape="box"];2265 -> 2458[label="",style="solid", color="black", weight=3]; 2266[label="compare1 LT GT True",fontsize=16,color="black",shape="box"];2266 -> 2459[label="",style="solid", color="black", weight=3]; 2267[label="compare1 EQ LT False",fontsize=16,color="black",shape="box"];2267 -> 2460[label="",style="solid", color="black", weight=3]; 2268[label="compare1 EQ GT True",fontsize=16,color="black",shape="box"];2268 -> 2461[label="",style="solid", color="black", weight=3]; 2269[label="compare1 GT LT False",fontsize=16,color="black",shape="box"];2269 -> 2462[label="",style="solid", color="black", weight=3]; 2270[label="compare1 GT EQ False",fontsize=16,color="black",shape="box"];2270 -> 2463[label="",style="solid", color="black", weight=3]; 2271[label="compare1 False True True",fontsize=16,color="black",shape="box"];2271 -> 2464[label="",style="solid", color="black", weight=3]; 2272[label="compare1 True False False",fontsize=16,color="black",shape="box"];2272 -> 2465[label="",style="solid", color="black", weight=3]; 2273[label="primMulInt (Pos vwx3000) (Pos vwx4010)",fontsize=16,color="black",shape="box"];2273 -> 2466[label="",style="solid", color="black", weight=3]; 2274[label="primMulInt (Pos vwx3000) (Neg vwx4010)",fontsize=16,color="black",shape="box"];2274 -> 2467[label="",style="solid", color="black", weight=3]; 2275[label="primMulInt (Neg vwx3000) (Pos vwx4010)",fontsize=16,color="black",shape="box"];2275 -> 2468[label="",style="solid", color="black", weight=3]; 2276[label="primMulInt (Neg vwx3000) (Neg vwx4010)",fontsize=16,color="black",shape="box"];2276 -> 2469[label="",style="solid", color="black", weight=3]; 2277[label="Integer (primMulInt vwx3000 vwx4010)",fontsize=16,color="green",shape="box"];2277 -> 2470[label="",style="dashed", color="green", weight=3]; 2278[label="vwx300",fontsize=16,color="green",shape="box"];2279[label="Pos vwx4010",fontsize=16,color="green",shape="box"];2280[label="Pos vwx3010",fontsize=16,color="green",shape="box"];2281[label="vwx400",fontsize=16,color="green",shape="box"];2282[label="vwx300",fontsize=16,color="green",shape="box"];2283[label="Pos vwx4010",fontsize=16,color="green",shape="box"];2284[label="Neg vwx3010",fontsize=16,color="green",shape="box"];2285[label="vwx400",fontsize=16,color="green",shape="box"];2286[label="vwx300",fontsize=16,color="green",shape="box"];2287[label="Neg vwx4010",fontsize=16,color="green",shape="box"];2288[label="Pos vwx3010",fontsize=16,color="green",shape="box"];2289[label="vwx400",fontsize=16,color="green",shape="box"];2290[label="vwx300",fontsize=16,color="green",shape="box"];2291[label="Neg vwx4010",fontsize=16,color="green",shape="box"];2292[label="Neg vwx3010",fontsize=16,color="green",shape="box"];2293[label="vwx400",fontsize=16,color="green",shape="box"];2294[label="vwx300",fontsize=16,color="green",shape="box"];2295[label="Pos vwx4010",fontsize=16,color="green",shape="box"];2296[label="Pos vwx3010",fontsize=16,color="green",shape="box"];2297[label="vwx400",fontsize=16,color="green",shape="box"];2298[label="vwx300",fontsize=16,color="green",shape="box"];2299[label="Pos vwx4010",fontsize=16,color="green",shape="box"];2300[label="Neg vwx3010",fontsize=16,color="green",shape="box"];2301[label="vwx400",fontsize=16,color="green",shape="box"];2302[label="vwx300",fontsize=16,color="green",shape="box"];2303[label="Neg vwx4010",fontsize=16,color="green",shape="box"];2304[label="Pos vwx3010",fontsize=16,color="green",shape="box"];2305[label="vwx400",fontsize=16,color="green",shape="box"];2306[label="vwx300",fontsize=16,color="green",shape="box"];2307[label="Neg vwx4010",fontsize=16,color="green",shape="box"];2308[label="Neg vwx3010",fontsize=16,color="green",shape="box"];2309[label="vwx400",fontsize=16,color="green",shape="box"];2310[label="(vwx3000,vwx3001,vwx3002) == vwx400",fontsize=16,color="burlywood",shape="box"];4846[label="vwx400/(vwx4000,vwx4001,vwx4002)",fontsize=10,color="white",style="solid",shape="box"];2310 -> 4846[label="",style="solid", color="burlywood", weight=9]; 4846 -> 2471[label="",style="solid", color="burlywood", weight=3]; 2311[label="False == vwx400",fontsize=16,color="burlywood",shape="box"];4847[label="vwx400/False",fontsize=10,color="white",style="solid",shape="box"];2311 -> 4847[label="",style="solid", color="burlywood", weight=9]; 4847 -> 2472[label="",style="solid", color="burlywood", weight=3]; 4848[label="vwx400/True",fontsize=10,color="white",style="solid",shape="box"];2311 -> 4848[label="",style="solid", color="burlywood", weight=9]; 4848 -> 2473[label="",style="solid", color="burlywood", weight=3]; 2312[label="True == vwx400",fontsize=16,color="burlywood",shape="box"];4849[label="vwx400/False",fontsize=10,color="white",style="solid",shape="box"];2312 -> 4849[label="",style="solid", color="burlywood", weight=9]; 4849 -> 2474[label="",style="solid", color="burlywood", weight=3]; 4850[label="vwx400/True",fontsize=10,color="white",style="solid",shape="box"];2312 -> 4850[label="",style="solid", color="burlywood", weight=9]; 4850 -> 2475[label="",style="solid", color="burlywood", weight=3]; 2313[label="primEqInt vwx300 vwx400",fontsize=16,color="burlywood",shape="triangle"];4851[label="vwx300/Pos vwx3000",fontsize=10,color="white",style="solid",shape="box"];2313 -> 4851[label="",style="solid", color="burlywood", weight=9]; 4851 -> 2476[label="",style="solid", color="burlywood", weight=3]; 4852[label="vwx300/Neg vwx3000",fontsize=10,color="white",style="solid",shape="box"];2313 -> 4852[label="",style="solid", color="burlywood", weight=9]; 4852 -> 2477[label="",style="solid", color="burlywood", weight=3]; 2314[label="primEqDouble vwx300 vwx400",fontsize=16,color="burlywood",shape="box"];4853[label="vwx300/Double vwx3000 vwx3001",fontsize=10,color="white",style="solid",shape="box"];2314 -> 4853[label="",style="solid", color="burlywood", weight=9]; 4853 -> 2478[label="",style="solid", color="burlywood", weight=3]; 2315[label="primEqChar vwx300 vwx400",fontsize=16,color="burlywood",shape="box"];4854[label="vwx300/Char vwx3000",fontsize=10,color="white",style="solid",shape="box"];2315 -> 4854[label="",style="solid", color="burlywood", weight=9]; 4854 -> 2479[label="",style="solid", color="burlywood", weight=3]; 2316[label="vwx3000 : vwx3001 == vwx400",fontsize=16,color="burlywood",shape="box"];4855[label="vwx400/vwx4000 : vwx4001",fontsize=10,color="white",style="solid",shape="box"];2316 -> 4855[label="",style="solid", color="burlywood", weight=9]; 4855 -> 2480[label="",style="solid", color="burlywood", weight=3]; 4856[label="vwx400/[]",fontsize=10,color="white",style="solid",shape="box"];2316 -> 4856[label="",style="solid", color="burlywood", weight=9]; 4856 -> 2481[label="",style="solid", color="burlywood", weight=3]; 2317[label="[] == vwx400",fontsize=16,color="burlywood",shape="box"];4857[label="vwx400/vwx4000 : vwx4001",fontsize=10,color="white",style="solid",shape="box"];2317 -> 4857[label="",style="solid", color="burlywood", weight=9]; 4857 -> 2482[label="",style="solid", color="burlywood", weight=3]; 4858[label="vwx400/[]",fontsize=10,color="white",style="solid",shape="box"];2317 -> 4858[label="",style="solid", color="burlywood", weight=9]; 4858 -> 2483[label="",style="solid", color="burlywood", weight=3]; 2318[label="Left vwx3000 == vwx400",fontsize=16,color="burlywood",shape="box"];4859[label="vwx400/Left vwx4000",fontsize=10,color="white",style="solid",shape="box"];2318 -> 4859[label="",style="solid", color="burlywood", weight=9]; 4859 -> 2484[label="",style="solid", color="burlywood", weight=3]; 4860[label="vwx400/Right vwx4000",fontsize=10,color="white",style="solid",shape="box"];2318 -> 4860[label="",style="solid", color="burlywood", weight=9]; 4860 -> 2485[label="",style="solid", color="burlywood", weight=3]; 2319[label="Right vwx3000 == vwx400",fontsize=16,color="burlywood",shape="box"];4861[label="vwx400/Left vwx4000",fontsize=10,color="white",style="solid",shape="box"];2319 -> 4861[label="",style="solid", color="burlywood", weight=9]; 4861 -> 2486[label="",style="solid", color="burlywood", weight=3]; 4862[label="vwx400/Right vwx4000",fontsize=10,color="white",style="solid",shape="box"];2319 -> 4862[label="",style="solid", color="burlywood", weight=9]; 4862 -> 2487[label="",style="solid", color="burlywood", weight=3]; 2320[label="Nothing == vwx400",fontsize=16,color="burlywood",shape="box"];4863[label="vwx400/Nothing",fontsize=10,color="white",style="solid",shape="box"];2320 -> 4863[label="",style="solid", color="burlywood", weight=9]; 4863 -> 2488[label="",style="solid", color="burlywood", weight=3]; 4864[label="vwx400/Just vwx4000",fontsize=10,color="white",style="solid",shape="box"];2320 -> 4864[label="",style="solid", color="burlywood", weight=9]; 4864 -> 2489[label="",style="solid", color="burlywood", weight=3]; 2321[label="Just vwx3000 == vwx400",fontsize=16,color="burlywood",shape="box"];4865[label="vwx400/Nothing",fontsize=10,color="white",style="solid",shape="box"];2321 -> 4865[label="",style="solid", color="burlywood", weight=9]; 4865 -> 2490[label="",style="solid", color="burlywood", weight=3]; 4866[label="vwx400/Just vwx4000",fontsize=10,color="white",style="solid",shape="box"];2321 -> 4866[label="",style="solid", color="burlywood", weight=9]; 4866 -> 2491[label="",style="solid", color="burlywood", weight=3]; 2322[label="vwx3000 :% vwx3001 == vwx400",fontsize=16,color="burlywood",shape="box"];4867[label="vwx400/vwx4000 :% vwx4001",fontsize=10,color="white",style="solid",shape="box"];2322 -> 4867[label="",style="solid", color="burlywood", weight=9]; 4867 -> 2492[label="",style="solid", color="burlywood", weight=3]; 2323[label="LT == vwx400",fontsize=16,color="burlywood",shape="box"];4868[label="vwx400/LT",fontsize=10,color="white",style="solid",shape="box"];2323 -> 4868[label="",style="solid", color="burlywood", weight=9]; 4868 -> 2493[label="",style="solid", color="burlywood", weight=3]; 4869[label="vwx400/EQ",fontsize=10,color="white",style="solid",shape="box"];2323 -> 4869[label="",style="solid", color="burlywood", weight=9]; 4869 -> 2494[label="",style="solid", color="burlywood", weight=3]; 4870[label="vwx400/GT",fontsize=10,color="white",style="solid",shape="box"];2323 -> 4870[label="",style="solid", color="burlywood", weight=9]; 4870 -> 2495[label="",style="solid", color="burlywood", weight=3]; 2324[label="EQ == vwx400",fontsize=16,color="burlywood",shape="box"];4871[label="vwx400/LT",fontsize=10,color="white",style="solid",shape="box"];2324 -> 4871[label="",style="solid", color="burlywood", weight=9]; 4871 -> 2496[label="",style="solid", color="burlywood", weight=3]; 4872[label="vwx400/EQ",fontsize=10,color="white",style="solid",shape="box"];2324 -> 4872[label="",style="solid", color="burlywood", weight=9]; 4872 -> 2497[label="",style="solid", color="burlywood", weight=3]; 4873[label="vwx400/GT",fontsize=10,color="white",style="solid",shape="box"];2324 -> 4873[label="",style="solid", color="burlywood", weight=9]; 4873 -> 2498[label="",style="solid", color="burlywood", weight=3]; 2325[label="GT == vwx400",fontsize=16,color="burlywood",shape="box"];4874[label="vwx400/LT",fontsize=10,color="white",style="solid",shape="box"];2325 -> 4874[label="",style="solid", color="burlywood", weight=9]; 4874 -> 2499[label="",style="solid", color="burlywood", weight=3]; 4875[label="vwx400/EQ",fontsize=10,color="white",style="solid",shape="box"];2325 -> 4875[label="",style="solid", color="burlywood", weight=9]; 4875 -> 2500[label="",style="solid", color="burlywood", weight=3]; 4876[label="vwx400/GT",fontsize=10,color="white",style="solid",shape="box"];2325 -> 4876[label="",style="solid", color="burlywood", weight=9]; 4876 -> 2501[label="",style="solid", color="burlywood", weight=3]; 2326[label="() == vwx400",fontsize=16,color="burlywood",shape="box"];4877[label="vwx400/()",fontsize=10,color="white",style="solid",shape="box"];2326 -> 4877[label="",style="solid", color="burlywood", weight=9]; 4877 -> 2502[label="",style="solid", color="burlywood", weight=3]; 2327[label="(vwx3000,vwx3001) == vwx400",fontsize=16,color="burlywood",shape="box"];4878[label="vwx400/(vwx4000,vwx4001)",fontsize=10,color="white",style="solid",shape="box"];2327 -> 4878[label="",style="solid", color="burlywood", weight=9]; 4878 -> 2503[label="",style="solid", color="burlywood", weight=3]; 2328[label="Integer vwx3000 == vwx400",fontsize=16,color="burlywood",shape="box"];4879[label="vwx400/Integer vwx4000",fontsize=10,color="white",style="solid",shape="box"];2328 -> 4879[label="",style="solid", color="burlywood", weight=9]; 4879 -> 2504[label="",style="solid", color="burlywood", weight=3]; 2329[label="primEqFloat vwx300 vwx400",fontsize=16,color="burlywood",shape="box"];4880[label="vwx300/Float vwx3000 vwx3001",fontsize=10,color="white",style="solid",shape="box"];2329 -> 4880[label="",style="solid", color="burlywood", weight=9]; 4880 -> 2505[label="",style="solid", color="burlywood", weight=3]; 2330 -> 2611[label="",style="dashed", color="red", weight=0]; 2330[label="compare1 (Left vwx174) (Left vwx175) (Left vwx174 <= Left vwx175)",fontsize=16,color="magenta"];2330 -> 2612[label="",style="dashed", color="magenta", weight=3]; 2330 -> 2613[label="",style="dashed", color="magenta", weight=3]; 2330 -> 2614[label="",style="dashed", color="magenta", weight=3]; 2331[label="EQ",fontsize=16,color="green",shape="box"];2332[label="LT",fontsize=16,color="green",shape="box"];2333[label="compare0 (Right vwx300) (Left vwx400) otherwise",fontsize=16,color="black",shape="box"];2333 -> 2507[label="",style="solid", color="black", weight=3]; 2334[label="vwx300",fontsize=16,color="green",shape="box"];2335[label="vwx400",fontsize=16,color="green",shape="box"];2336[label="vwx300",fontsize=16,color="green",shape="box"];2337[label="vwx400",fontsize=16,color="green",shape="box"];2338[label="vwx300",fontsize=16,color="green",shape="box"];2339[label="vwx400",fontsize=16,color="green",shape="box"];2340[label="vwx300",fontsize=16,color="green",shape="box"];2341[label="vwx400",fontsize=16,color="green",shape="box"];2342[label="vwx300",fontsize=16,color="green",shape="box"];2343[label="vwx400",fontsize=16,color="green",shape="box"];2344[label="vwx300",fontsize=16,color="green",shape="box"];2345[label="vwx400",fontsize=16,color="green",shape="box"];2346[label="vwx300",fontsize=16,color="green",shape="box"];2347[label="vwx400",fontsize=16,color="green",shape="box"];2348[label="vwx300",fontsize=16,color="green",shape="box"];2349[label="vwx400",fontsize=16,color="green",shape="box"];2350[label="vwx300",fontsize=16,color="green",shape="box"];2351[label="vwx400",fontsize=16,color="green",shape="box"];2352[label="vwx300",fontsize=16,color="green",shape="box"];2353[label="vwx400",fontsize=16,color="green",shape="box"];2354[label="vwx300",fontsize=16,color="green",shape="box"];2355[label="vwx400",fontsize=16,color="green",shape="box"];2356[label="vwx300",fontsize=16,color="green",shape="box"];2357[label="vwx400",fontsize=16,color="green",shape="box"];2358[label="vwx300",fontsize=16,color="green",shape="box"];2359[label="vwx400",fontsize=16,color="green",shape="box"];2360[label="vwx300",fontsize=16,color="green",shape="box"];2361[label="vwx400",fontsize=16,color="green",shape="box"];2362 -> 2654[label="",style="dashed", color="red", weight=0]; 2362[label="compare1 (Right vwx181) (Right vwx182) (Right vwx181 <= Right vwx182)",fontsize=16,color="magenta"];2362 -> 2655[label="",style="dashed", color="magenta", weight=3]; 2362 -> 2656[label="",style="dashed", color="magenta", weight=3]; 2362 -> 2657[label="",style="dashed", color="magenta", weight=3]; 2363[label="EQ",fontsize=16,color="green",shape="box"];2751 -> 2173[label="",style="dashed", color="red", weight=0]; 2751[label="vwx300 == vwx400",fontsize=16,color="magenta"];2751 -> 2807[label="",style="dashed", color="magenta", weight=3]; 2751 -> 2808[label="",style="dashed", color="magenta", weight=3]; 2752 -> 2174[label="",style="dashed", color="red", weight=0]; 2752[label="vwx300 == vwx400",fontsize=16,color="magenta"];2752 -> 2809[label="",style="dashed", color="magenta", weight=3]; 2752 -> 2810[label="",style="dashed", color="magenta", weight=3]; 2753 -> 2175[label="",style="dashed", color="red", weight=0]; 2753[label="vwx300 == vwx400",fontsize=16,color="magenta"];2753 -> 2811[label="",style="dashed", color="magenta", weight=3]; 2753 -> 2812[label="",style="dashed", color="magenta", weight=3]; 2754 -> 2176[label="",style="dashed", color="red", weight=0]; 2754[label="vwx300 == vwx400",fontsize=16,color="magenta"];2754 -> 2813[label="",style="dashed", color="magenta", weight=3]; 2754 -> 2814[label="",style="dashed", color="magenta", weight=3]; 2755 -> 2177[label="",style="dashed", color="red", weight=0]; 2755[label="vwx300 == vwx400",fontsize=16,color="magenta"];2755 -> 2815[label="",style="dashed", color="magenta", weight=3]; 2755 -> 2816[label="",style="dashed", color="magenta", weight=3]; 2756 -> 2178[label="",style="dashed", color="red", weight=0]; 2756[label="vwx300 == vwx400",fontsize=16,color="magenta"];2756 -> 2817[label="",style="dashed", color="magenta", weight=3]; 2756 -> 2818[label="",style="dashed", color="magenta", weight=3]; 2757 -> 2179[label="",style="dashed", color="red", weight=0]; 2757[label="vwx300 == vwx400",fontsize=16,color="magenta"];2757 -> 2819[label="",style="dashed", color="magenta", weight=3]; 2757 -> 2820[label="",style="dashed", color="magenta", weight=3]; 2758 -> 2180[label="",style="dashed", color="red", weight=0]; 2758[label="vwx300 == vwx400",fontsize=16,color="magenta"];2758 -> 2821[label="",style="dashed", color="magenta", weight=3]; 2758 -> 2822[label="",style="dashed", color="magenta", weight=3]; 2759 -> 2181[label="",style="dashed", color="red", weight=0]; 2759[label="vwx300 == vwx400",fontsize=16,color="magenta"];2759 -> 2823[label="",style="dashed", color="magenta", weight=3]; 2759 -> 2824[label="",style="dashed", color="magenta", weight=3]; 2760 -> 2182[label="",style="dashed", color="red", weight=0]; 2760[label="vwx300 == vwx400",fontsize=16,color="magenta"];2760 -> 2825[label="",style="dashed", color="magenta", weight=3]; 2760 -> 2826[label="",style="dashed", color="magenta", weight=3]; 2761 -> 2183[label="",style="dashed", color="red", weight=0]; 2761[label="vwx300 == vwx400",fontsize=16,color="magenta"];2761 -> 2827[label="",style="dashed", color="magenta", weight=3]; 2761 -> 2828[label="",style="dashed", color="magenta", weight=3]; 2762 -> 2184[label="",style="dashed", color="red", weight=0]; 2762[label="vwx300 == vwx400",fontsize=16,color="magenta"];2762 -> 2829[label="",style="dashed", color="magenta", weight=3]; 2762 -> 2830[label="",style="dashed", color="magenta", weight=3]; 2763 -> 2185[label="",style="dashed", color="red", weight=0]; 2763[label="vwx300 == vwx400",fontsize=16,color="magenta"];2763 -> 2831[label="",style="dashed", color="magenta", weight=3]; 2763 -> 2832[label="",style="dashed", color="magenta", weight=3]; 2764 -> 2186[label="",style="dashed", color="red", weight=0]; 2764[label="vwx300 == vwx400",fontsize=16,color="magenta"];2764 -> 2833[label="",style="dashed", color="magenta", weight=3]; 2764 -> 2834[label="",style="dashed", color="magenta", weight=3]; 2765[label="vwx301 == vwx401",fontsize=16,color="blue",shape="box"];4881[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2765 -> 4881[label="",style="solid", color="blue", weight=9]; 4881 -> 2835[label="",style="solid", color="blue", weight=3]; 4882[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2765 -> 4882[label="",style="solid", color="blue", weight=9]; 4882 -> 2836[label="",style="solid", color="blue", weight=3]; 4883[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2765 -> 4883[label="",style="solid", color="blue", weight=9]; 4883 -> 2837[label="",style="solid", color="blue", weight=3]; 4884[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2765 -> 4884[label="",style="solid", color="blue", weight=9]; 4884 -> 2838[label="",style="solid", color="blue", weight=3]; 4885[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2765 -> 4885[label="",style="solid", color="blue", weight=9]; 4885 -> 2839[label="",style="solid", color="blue", weight=3]; 4886[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2765 -> 4886[label="",style="solid", color="blue", weight=9]; 4886 -> 2840[label="",style="solid", color="blue", weight=3]; 4887[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2765 -> 4887[label="",style="solid", color="blue", weight=9]; 4887 -> 2841[label="",style="solid", color="blue", weight=3]; 4888[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2765 -> 4888[label="",style="solid", color="blue", weight=9]; 4888 -> 2842[label="",style="solid", color="blue", weight=3]; 4889[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2765 -> 4889[label="",style="solid", color="blue", weight=9]; 4889 -> 2843[label="",style="solid", color="blue", weight=3]; 4890[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2765 -> 4890[label="",style="solid", color="blue", weight=9]; 4890 -> 2844[label="",style="solid", color="blue", weight=3]; 4891[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2765 -> 4891[label="",style="solid", color="blue", weight=9]; 4891 -> 2845[label="",style="solid", color="blue", weight=3]; 4892[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2765 -> 4892[label="",style="solid", color="blue", weight=9]; 4892 -> 2846[label="",style="solid", color="blue", weight=3]; 4893[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2765 -> 4893[label="",style="solid", color="blue", weight=9]; 4893 -> 2847[label="",style="solid", color="blue", weight=3]; 4894[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2765 -> 4894[label="",style="solid", color="blue", weight=9]; 4894 -> 2848[label="",style="solid", color="blue", weight=3]; 2766[label="vwx302 == vwx402",fontsize=16,color="blue",shape="box"];4895[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2766 -> 4895[label="",style="solid", color="blue", weight=9]; 4895 -> 2849[label="",style="solid", color="blue", weight=3]; 4896[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2766 -> 4896[label="",style="solid", color="blue", weight=9]; 4896 -> 2850[label="",style="solid", color="blue", weight=3]; 4897[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2766 -> 4897[label="",style="solid", color="blue", weight=9]; 4897 -> 2851[label="",style="solid", color="blue", weight=3]; 4898[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2766 -> 4898[label="",style="solid", color="blue", weight=9]; 4898 -> 2852[label="",style="solid", color="blue", weight=3]; 4899[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2766 -> 4899[label="",style="solid", color="blue", weight=9]; 4899 -> 2853[label="",style="solid", color="blue", weight=3]; 4900[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2766 -> 4900[label="",style="solid", color="blue", weight=9]; 4900 -> 2854[label="",style="solid", color="blue", weight=3]; 4901[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2766 -> 4901[label="",style="solid", color="blue", weight=9]; 4901 -> 2855[label="",style="solid", color="blue", weight=3]; 4902[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2766 -> 4902[label="",style="solid", color="blue", weight=9]; 4902 -> 2856[label="",style="solid", color="blue", weight=3]; 4903[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2766 -> 4903[label="",style="solid", color="blue", weight=9]; 4903 -> 2857[label="",style="solid", color="blue", weight=3]; 4904[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2766 -> 4904[label="",style="solid", color="blue", weight=9]; 4904 -> 2858[label="",style="solid", color="blue", weight=3]; 4905[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2766 -> 4905[label="",style="solid", color="blue", weight=9]; 4905 -> 2859[label="",style="solid", color="blue", weight=3]; 4906[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2766 -> 4906[label="",style="solid", color="blue", weight=9]; 4906 -> 2860[label="",style="solid", color="blue", weight=3]; 4907[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2766 -> 4907[label="",style="solid", color="blue", weight=9]; 4907 -> 2861[label="",style="solid", color="blue", weight=3]; 4908[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2766 -> 4908[label="",style="solid", color="blue", weight=9]; 4908 -> 2862[label="",style="solid", color="blue", weight=3]; 2767[label="False && vwx270",fontsize=16,color="black",shape="box"];2767 -> 2863[label="",style="solid", color="black", weight=3]; 2768[label="True && vwx270",fontsize=16,color="black",shape="box"];2768 -> 2864[label="",style="solid", color="black", weight=3]; 2769[label="compare1 (vwx225,vwx226,vwx227) (vwx228,vwx229,vwx230) ((vwx225,vwx226,vwx227) <= (vwx228,vwx229,vwx230))",fontsize=16,color="black",shape="box"];2769 -> 2865[label="",style="solid", color="black", weight=3]; 2770[label="EQ",fontsize=16,color="green",shape="box"];2394[label="LT",fontsize=16,color="green",shape="box"];2395[label="compare0 (Just vwx300) Nothing otherwise",fontsize=16,color="black",shape="box"];2395 -> 2518[label="",style="solid", color="black", weight=3]; 2396[label="vwx300",fontsize=16,color="green",shape="box"];2397[label="vwx400",fontsize=16,color="green",shape="box"];2398[label="vwx300",fontsize=16,color="green",shape="box"];2399[label="vwx400",fontsize=16,color="green",shape="box"];2400[label="vwx300",fontsize=16,color="green",shape="box"];2401[label="vwx400",fontsize=16,color="green",shape="box"];2402[label="vwx300",fontsize=16,color="green",shape="box"];2403[label="vwx400",fontsize=16,color="green",shape="box"];2404[label="vwx300",fontsize=16,color="green",shape="box"];2405[label="vwx400",fontsize=16,color="green",shape="box"];2406[label="vwx300",fontsize=16,color="green",shape="box"];2407[label="vwx400",fontsize=16,color="green",shape="box"];2408[label="vwx300",fontsize=16,color="green",shape="box"];2409[label="vwx400",fontsize=16,color="green",shape="box"];2410[label="vwx300",fontsize=16,color="green",shape="box"];2411[label="vwx400",fontsize=16,color="green",shape="box"];2412[label="vwx300",fontsize=16,color="green",shape="box"];2413[label="vwx400",fontsize=16,color="green",shape="box"];2414[label="vwx300",fontsize=16,color="green",shape="box"];2415[label="vwx400",fontsize=16,color="green",shape="box"];2416[label="vwx300",fontsize=16,color="green",shape="box"];2417[label="vwx400",fontsize=16,color="green",shape="box"];2418[label="vwx300",fontsize=16,color="green",shape="box"];2419[label="vwx400",fontsize=16,color="green",shape="box"];2420[label="vwx300",fontsize=16,color="green",shape="box"];2421[label="vwx400",fontsize=16,color="green",shape="box"];2422[label="vwx300",fontsize=16,color="green",shape="box"];2423[label="vwx400",fontsize=16,color="green",shape="box"];2424 -> 2800[label="",style="dashed", color="red", weight=0]; 2424[label="compare1 (Just vwx203) (Just vwx204) (Just vwx203 <= Just vwx204)",fontsize=16,color="magenta"];2424 -> 2801[label="",style="dashed", color="magenta", weight=3]; 2424 -> 2802[label="",style="dashed", color="magenta", weight=3]; 2424 -> 2803[label="",style="dashed", color="magenta", weight=3]; 2425[label="EQ",fontsize=16,color="green",shape="box"];2426[label="vwx3000",fontsize=16,color="green",shape="box"];2427[label="vwx4000",fontsize=16,color="green",shape="box"];2771 -> 2173[label="",style="dashed", color="red", weight=0]; 2771[label="vwx300 == vwx400",fontsize=16,color="magenta"];2771 -> 2866[label="",style="dashed", color="magenta", weight=3]; 2771 -> 2867[label="",style="dashed", color="magenta", weight=3]; 2772 -> 2174[label="",style="dashed", color="red", weight=0]; 2772[label="vwx300 == vwx400",fontsize=16,color="magenta"];2772 -> 2868[label="",style="dashed", color="magenta", weight=3]; 2772 -> 2869[label="",style="dashed", color="magenta", weight=3]; 2773 -> 2175[label="",style="dashed", color="red", weight=0]; 2773[label="vwx300 == vwx400",fontsize=16,color="magenta"];2773 -> 2870[label="",style="dashed", color="magenta", weight=3]; 2773 -> 2871[label="",style="dashed", color="magenta", weight=3]; 2774 -> 2176[label="",style="dashed", color="red", weight=0]; 2774[label="vwx300 == vwx400",fontsize=16,color="magenta"];2774 -> 2872[label="",style="dashed", color="magenta", weight=3]; 2774 -> 2873[label="",style="dashed", color="magenta", weight=3]; 2775 -> 2177[label="",style="dashed", color="red", weight=0]; 2775[label="vwx300 == vwx400",fontsize=16,color="magenta"];2775 -> 2874[label="",style="dashed", color="magenta", weight=3]; 2775 -> 2875[label="",style="dashed", color="magenta", weight=3]; 2776 -> 2178[label="",style="dashed", color="red", weight=0]; 2776[label="vwx300 == vwx400",fontsize=16,color="magenta"];2776 -> 2876[label="",style="dashed", color="magenta", weight=3]; 2776 -> 2877[label="",style="dashed", color="magenta", weight=3]; 2777 -> 2179[label="",style="dashed", color="red", weight=0]; 2777[label="vwx300 == vwx400",fontsize=16,color="magenta"];2777 -> 2878[label="",style="dashed", color="magenta", weight=3]; 2777 -> 2879[label="",style="dashed", color="magenta", weight=3]; 2778 -> 2180[label="",style="dashed", color="red", weight=0]; 2778[label="vwx300 == vwx400",fontsize=16,color="magenta"];2778 -> 2880[label="",style="dashed", color="magenta", weight=3]; 2778 -> 2881[label="",style="dashed", color="magenta", weight=3]; 2779 -> 2181[label="",style="dashed", color="red", weight=0]; 2779[label="vwx300 == vwx400",fontsize=16,color="magenta"];2779 -> 2882[label="",style="dashed", color="magenta", weight=3]; 2779 -> 2883[label="",style="dashed", color="magenta", weight=3]; 2780 -> 2182[label="",style="dashed", color="red", weight=0]; 2780[label="vwx300 == vwx400",fontsize=16,color="magenta"];2780 -> 2884[label="",style="dashed", color="magenta", weight=3]; 2780 -> 2885[label="",style="dashed", color="magenta", weight=3]; 2781 -> 2183[label="",style="dashed", color="red", weight=0]; 2781[label="vwx300 == vwx400",fontsize=16,color="magenta"];2781 -> 2886[label="",style="dashed", color="magenta", weight=3]; 2781 -> 2887[label="",style="dashed", color="magenta", weight=3]; 2782 -> 2184[label="",style="dashed", color="red", weight=0]; 2782[label="vwx300 == vwx400",fontsize=16,color="magenta"];2782 -> 2888[label="",style="dashed", color="magenta", weight=3]; 2782 -> 2889[label="",style="dashed", color="magenta", weight=3]; 2783 -> 2185[label="",style="dashed", color="red", weight=0]; 2783[label="vwx300 == vwx400",fontsize=16,color="magenta"];2783 -> 2890[label="",style="dashed", color="magenta", weight=3]; 2783 -> 2891[label="",style="dashed", color="magenta", weight=3]; 2784 -> 2186[label="",style="dashed", color="red", weight=0]; 2784[label="vwx300 == vwx400",fontsize=16,color="magenta"];2784 -> 2892[label="",style="dashed", color="magenta", weight=3]; 2784 -> 2893[label="",style="dashed", color="magenta", weight=3]; 2785 -> 2173[label="",style="dashed", color="red", weight=0]; 2785[label="vwx301 == vwx401",fontsize=16,color="magenta"];2785 -> 2894[label="",style="dashed", color="magenta", weight=3]; 2785 -> 2895[label="",style="dashed", color="magenta", weight=3]; 2786 -> 2174[label="",style="dashed", color="red", weight=0]; 2786[label="vwx301 == vwx401",fontsize=16,color="magenta"];2786 -> 2896[label="",style="dashed", color="magenta", weight=3]; 2786 -> 2897[label="",style="dashed", color="magenta", weight=3]; 2787 -> 2175[label="",style="dashed", color="red", weight=0]; 2787[label="vwx301 == vwx401",fontsize=16,color="magenta"];2787 -> 2898[label="",style="dashed", color="magenta", weight=3]; 2787 -> 2899[label="",style="dashed", color="magenta", weight=3]; 2788 -> 2176[label="",style="dashed", color="red", weight=0]; 2788[label="vwx301 == vwx401",fontsize=16,color="magenta"];2788 -> 2900[label="",style="dashed", color="magenta", weight=3]; 2788 -> 2901[label="",style="dashed", color="magenta", weight=3]; 2789 -> 2177[label="",style="dashed", color="red", weight=0]; 2789[label="vwx301 == vwx401",fontsize=16,color="magenta"];2789 -> 2902[label="",style="dashed", color="magenta", weight=3]; 2789 -> 2903[label="",style="dashed", color="magenta", weight=3]; 2790 -> 2178[label="",style="dashed", color="red", weight=0]; 2790[label="vwx301 == vwx401",fontsize=16,color="magenta"];2790 -> 2904[label="",style="dashed", color="magenta", weight=3]; 2790 -> 2905[label="",style="dashed", color="magenta", weight=3]; 2791 -> 2179[label="",style="dashed", color="red", weight=0]; 2791[label="vwx301 == vwx401",fontsize=16,color="magenta"];2791 -> 2906[label="",style="dashed", color="magenta", weight=3]; 2791 -> 2907[label="",style="dashed", color="magenta", weight=3]; 2792 -> 2180[label="",style="dashed", color="red", weight=0]; 2792[label="vwx301 == vwx401",fontsize=16,color="magenta"];2792 -> 2908[label="",style="dashed", color="magenta", weight=3]; 2792 -> 2909[label="",style="dashed", color="magenta", weight=3]; 2793 -> 2181[label="",style="dashed", color="red", weight=0]; 2793[label="vwx301 == vwx401",fontsize=16,color="magenta"];2793 -> 2910[label="",style="dashed", color="magenta", weight=3]; 2793 -> 2911[label="",style="dashed", color="magenta", weight=3]; 2794 -> 2182[label="",style="dashed", color="red", weight=0]; 2794[label="vwx301 == vwx401",fontsize=16,color="magenta"];2794 -> 2912[label="",style="dashed", color="magenta", weight=3]; 2794 -> 2913[label="",style="dashed", color="magenta", weight=3]; 2795 -> 2183[label="",style="dashed", color="red", weight=0]; 2795[label="vwx301 == vwx401",fontsize=16,color="magenta"];2795 -> 2914[label="",style="dashed", color="magenta", weight=3]; 2795 -> 2915[label="",style="dashed", color="magenta", weight=3]; 2796 -> 2184[label="",style="dashed", color="red", weight=0]; 2796[label="vwx301 == vwx401",fontsize=16,color="magenta"];2796 -> 2916[label="",style="dashed", color="magenta", weight=3]; 2796 -> 2917[label="",style="dashed", color="magenta", weight=3]; 2797 -> 2185[label="",style="dashed", color="red", weight=0]; 2797[label="vwx301 == vwx401",fontsize=16,color="magenta"];2797 -> 2918[label="",style="dashed", color="magenta", weight=3]; 2797 -> 2919[label="",style="dashed", color="magenta", weight=3]; 2798 -> 2186[label="",style="dashed", color="red", weight=0]; 2798[label="vwx301 == vwx401",fontsize=16,color="magenta"];2798 -> 2920[label="",style="dashed", color="magenta", weight=3]; 2798 -> 2921[label="",style="dashed", color="magenta", weight=3]; 2618[label="compare1 (vwx238,vwx239) (vwx240,vwx241) ((vwx238,vwx239) <= (vwx240,vwx241))",fontsize=16,color="black",shape="box"];2618 -> 2661[label="",style="solid", color="black", weight=3]; 2619[label="EQ",fontsize=16,color="green",shape="box"];2458[label="LT",fontsize=16,color="green",shape="box"];2459[label="LT",fontsize=16,color="green",shape="box"];2460[label="compare0 EQ LT otherwise",fontsize=16,color="black",shape="box"];2460 -> 2564[label="",style="solid", color="black", weight=3]; 2461[label="LT",fontsize=16,color="green",shape="box"];2462[label="compare0 GT LT otherwise",fontsize=16,color="black",shape="box"];2462 -> 2565[label="",style="solid", color="black", weight=3]; 2463[label="compare0 GT EQ otherwise",fontsize=16,color="black",shape="box"];2463 -> 2566[label="",style="solid", color="black", weight=3]; 2464[label="LT",fontsize=16,color="green",shape="box"];2465[label="compare0 True False otherwise",fontsize=16,color="black",shape="box"];2465 -> 2567[label="",style="solid", color="black", weight=3]; 2466[label="Pos (primMulNat vwx3000 vwx4010)",fontsize=16,color="green",shape="box"];2466 -> 2568[label="",style="dashed", color="green", weight=3]; 2467[label="Neg (primMulNat vwx3000 vwx4010)",fontsize=16,color="green",shape="box"];2467 -> 2569[label="",style="dashed", color="green", weight=3]; 2468[label="Neg (primMulNat vwx3000 vwx4010)",fontsize=16,color="green",shape="box"];2468 -> 2570[label="",style="dashed", color="green", weight=3]; 2469[label="Pos (primMulNat vwx3000 vwx4010)",fontsize=16,color="green",shape="box"];2469 -> 2571[label="",style="dashed", color="green", weight=3]; 2470 -> 2080[label="",style="dashed", color="red", weight=0]; 2470[label="primMulInt vwx3000 vwx4010",fontsize=16,color="magenta"];2470 -> 2572[label="",style="dashed", color="magenta", weight=3]; 2470 -> 2573[label="",style="dashed", color="magenta", weight=3]; 2471[label="(vwx3000,vwx3001,vwx3002) == (vwx4000,vwx4001,vwx4002)",fontsize=16,color="black",shape="box"];2471 -> 2574[label="",style="solid", color="black", weight=3]; 2472[label="False == False",fontsize=16,color="black",shape="box"];2472 -> 2575[label="",style="solid", color="black", weight=3]; 2473[label="False == True",fontsize=16,color="black",shape="box"];2473 -> 2576[label="",style="solid", color="black", weight=3]; 2474[label="True == False",fontsize=16,color="black",shape="box"];2474 -> 2577[label="",style="solid", color="black", weight=3]; 2475[label="True == True",fontsize=16,color="black",shape="box"];2475 -> 2578[label="",style="solid", color="black", weight=3]; 2476[label="primEqInt (Pos vwx3000) vwx400",fontsize=16,color="burlywood",shape="box"];4909[label="vwx3000/Succ vwx30000",fontsize=10,color="white",style="solid",shape="box"];2476 -> 4909[label="",style="solid", color="burlywood", weight=9]; 4909 -> 2579[label="",style="solid", color="burlywood", weight=3]; 4910[label="vwx3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2476 -> 4910[label="",style="solid", color="burlywood", weight=9]; 4910 -> 2580[label="",style="solid", color="burlywood", weight=3]; 2477[label="primEqInt (Neg vwx3000) vwx400",fontsize=16,color="burlywood",shape="box"];4911[label="vwx3000/Succ vwx30000",fontsize=10,color="white",style="solid",shape="box"];2477 -> 4911[label="",style="solid", color="burlywood", weight=9]; 4911 -> 2581[label="",style="solid", color="burlywood", weight=3]; 4912[label="vwx3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2477 -> 4912[label="",style="solid", color="burlywood", weight=9]; 4912 -> 2582[label="",style="solid", color="burlywood", weight=3]; 2478[label="primEqDouble (Double vwx3000 vwx3001) vwx400",fontsize=16,color="burlywood",shape="box"];4913[label="vwx400/Double vwx4000 vwx4001",fontsize=10,color="white",style="solid",shape="box"];2478 -> 4913[label="",style="solid", color="burlywood", weight=9]; 4913 -> 2583[label="",style="solid", color="burlywood", weight=3]; 2479[label="primEqChar (Char vwx3000) vwx400",fontsize=16,color="burlywood",shape="box"];4914[label="vwx400/Char vwx4000",fontsize=10,color="white",style="solid",shape="box"];2479 -> 4914[label="",style="solid", color="burlywood", weight=9]; 4914 -> 2584[label="",style="solid", color="burlywood", weight=3]; 2480[label="vwx3000 : vwx3001 == vwx4000 : vwx4001",fontsize=16,color="black",shape="box"];2480 -> 2585[label="",style="solid", color="black", weight=3]; 2481[label="vwx3000 : vwx3001 == []",fontsize=16,color="black",shape="box"];2481 -> 2586[label="",style="solid", color="black", weight=3]; 2482[label="[] == vwx4000 : vwx4001",fontsize=16,color="black",shape="box"];2482 -> 2587[label="",style="solid", color="black", weight=3]; 2483[label="[] == []",fontsize=16,color="black",shape="box"];2483 -> 2588[label="",style="solid", color="black", weight=3]; 2484[label="Left vwx3000 == Left vwx4000",fontsize=16,color="black",shape="box"];2484 -> 2589[label="",style="solid", color="black", weight=3]; 2485[label="Left vwx3000 == Right vwx4000",fontsize=16,color="black",shape="box"];2485 -> 2590[label="",style="solid", color="black", weight=3]; 2486[label="Right vwx3000 == Left vwx4000",fontsize=16,color="black",shape="box"];2486 -> 2591[label="",style="solid", color="black", weight=3]; 2487[label="Right vwx3000 == Right vwx4000",fontsize=16,color="black",shape="box"];2487 -> 2592[label="",style="solid", color="black", weight=3]; 2488[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];2488 -> 2593[label="",style="solid", color="black", weight=3]; 2489[label="Nothing == Just vwx4000",fontsize=16,color="black",shape="box"];2489 -> 2594[label="",style="solid", color="black", weight=3]; 2490[label="Just vwx3000 == Nothing",fontsize=16,color="black",shape="box"];2490 -> 2595[label="",style="solid", color="black", weight=3]; 2491[label="Just vwx3000 == Just vwx4000",fontsize=16,color="black",shape="box"];2491 -> 2596[label="",style="solid", color="black", weight=3]; 2492[label="vwx3000 :% vwx3001 == vwx4000 :% vwx4001",fontsize=16,color="black",shape="box"];2492 -> 2597[label="",style="solid", color="black", weight=3]; 2493[label="LT == LT",fontsize=16,color="black",shape="box"];2493 -> 2598[label="",style="solid", color="black", weight=3]; 2494[label="LT == EQ",fontsize=16,color="black",shape="box"];2494 -> 2599[label="",style="solid", color="black", weight=3]; 2495[label="LT == GT",fontsize=16,color="black",shape="box"];2495 -> 2600[label="",style="solid", color="black", weight=3]; 2496[label="EQ == LT",fontsize=16,color="black",shape="box"];2496 -> 2601[label="",style="solid", color="black", weight=3]; 2497[label="EQ == EQ",fontsize=16,color="black",shape="box"];2497 -> 2602[label="",style="solid", color="black", weight=3]; 2498[label="EQ == GT",fontsize=16,color="black",shape="box"];2498 -> 2603[label="",style="solid", color="black", weight=3]; 2499[label="GT == LT",fontsize=16,color="black",shape="box"];2499 -> 2604[label="",style="solid", color="black", weight=3]; 2500[label="GT == EQ",fontsize=16,color="black",shape="box"];2500 -> 2605[label="",style="solid", color="black", weight=3]; 2501[label="GT == GT",fontsize=16,color="black",shape="box"];2501 -> 2606[label="",style="solid", color="black", weight=3]; 2502[label="() == ()",fontsize=16,color="black",shape="box"];2502 -> 2607[label="",style="solid", color="black", weight=3]; 2503[label="(vwx3000,vwx3001) == (vwx4000,vwx4001)",fontsize=16,color="black",shape="box"];2503 -> 2608[label="",style="solid", color="black", weight=3]; 2504[label="Integer vwx3000 == Integer vwx4000",fontsize=16,color="black",shape="box"];2504 -> 2609[label="",style="solid", color="black", weight=3]; 2505[label="primEqFloat (Float vwx3000 vwx3001) vwx400",fontsize=16,color="burlywood",shape="box"];4915[label="vwx400/Float vwx4000 vwx4001",fontsize=10,color="white",style="solid",shape="box"];2505 -> 4915[label="",style="solid", color="burlywood", weight=9]; 4915 -> 2610[label="",style="solid", color="burlywood", weight=3]; 2612[label="vwx174",fontsize=16,color="green",shape="box"];2613[label="vwx175",fontsize=16,color="green",shape="box"];2614[label="Left vwx174 <= Left vwx175",fontsize=16,color="black",shape="box"];2614 -> 2650[label="",style="solid", color="black", weight=3]; 2611[label="compare1 (Left vwx254) (Left vwx255) vwx256",fontsize=16,color="burlywood",shape="triangle"];4916[label="vwx256/False",fontsize=10,color="white",style="solid",shape="box"];2611 -> 4916[label="",style="solid", color="burlywood", weight=9]; 4916 -> 2651[label="",style="solid", color="burlywood", weight=3]; 4917[label="vwx256/True",fontsize=10,color="white",style="solid",shape="box"];2611 -> 4917[label="",style="solid", color="burlywood", weight=9]; 4917 -> 2652[label="",style="solid", color="burlywood", weight=3]; 2507[label="compare0 (Right vwx300) (Left vwx400) True",fontsize=16,color="black",shape="box"];2507 -> 2653[label="",style="solid", color="black", weight=3]; 2655[label="vwx182",fontsize=16,color="green",shape="box"];2656[label="vwx181",fontsize=16,color="green",shape="box"];2657[label="Right vwx181 <= Right vwx182",fontsize=16,color="black",shape="box"];2657 -> 2662[label="",style="solid", color="black", weight=3]; 2654[label="compare1 (Right vwx261) (Right vwx262) vwx263",fontsize=16,color="burlywood",shape="triangle"];4918[label="vwx263/False",fontsize=10,color="white",style="solid",shape="box"];2654 -> 4918[label="",style="solid", color="burlywood", weight=9]; 4918 -> 2663[label="",style="solid", color="burlywood", weight=3]; 4919[label="vwx263/True",fontsize=10,color="white",style="solid",shape="box"];2654 -> 4919[label="",style="solid", color="burlywood", weight=9]; 4919 -> 2664[label="",style="solid", color="burlywood", weight=3]; 2807[label="vwx300",fontsize=16,color="green",shape="box"];2808[label="vwx400",fontsize=16,color="green",shape="box"];2809[label="vwx300",fontsize=16,color="green",shape="box"];2810[label="vwx400",fontsize=16,color="green",shape="box"];2811[label="vwx300",fontsize=16,color="green",shape="box"];2812[label="vwx400",fontsize=16,color="green",shape="box"];2813[label="vwx300",fontsize=16,color="green",shape="box"];2814[label="vwx400",fontsize=16,color="green",shape="box"];2815[label="vwx300",fontsize=16,color="green",shape="box"];2816[label="vwx400",fontsize=16,color="green",shape="box"];2817[label="vwx300",fontsize=16,color="green",shape="box"];2818[label="vwx400",fontsize=16,color="green",shape="box"];2819[label="vwx300",fontsize=16,color="green",shape="box"];2820[label="vwx400",fontsize=16,color="green",shape="box"];2821[label="vwx300",fontsize=16,color="green",shape="box"];2822[label="vwx400",fontsize=16,color="green",shape="box"];2823[label="vwx300",fontsize=16,color="green",shape="box"];2824[label="vwx400",fontsize=16,color="green",shape="box"];2825[label="vwx300",fontsize=16,color="green",shape="box"];2826[label="vwx400",fontsize=16,color="green",shape="box"];2827[label="vwx300",fontsize=16,color="green",shape="box"];2828[label="vwx400",fontsize=16,color="green",shape="box"];2829[label="vwx300",fontsize=16,color="green",shape="box"];2830[label="vwx400",fontsize=16,color="green",shape="box"];2831[label="vwx300",fontsize=16,color="green",shape="box"];2832[label="vwx400",fontsize=16,color="green",shape="box"];2833[label="vwx300",fontsize=16,color="green",shape="box"];2834[label="vwx400",fontsize=16,color="green",shape="box"];2835 -> 2173[label="",style="dashed", color="red", weight=0]; 2835[label="vwx301 == vwx401",fontsize=16,color="magenta"];2835 -> 2927[label="",style="dashed", color="magenta", weight=3]; 2835 -> 2928[label="",style="dashed", color="magenta", weight=3]; 2836 -> 2174[label="",style="dashed", color="red", weight=0]; 2836[label="vwx301 == vwx401",fontsize=16,color="magenta"];2836 -> 2929[label="",style="dashed", color="magenta", weight=3]; 2836 -> 2930[label="",style="dashed", color="magenta", weight=3]; 2837 -> 2175[label="",style="dashed", color="red", weight=0]; 2837[label="vwx301 == vwx401",fontsize=16,color="magenta"];2837 -> 2931[label="",style="dashed", color="magenta", weight=3]; 2837 -> 2932[label="",style="dashed", color="magenta", weight=3]; 2838 -> 2176[label="",style="dashed", color="red", weight=0]; 2838[label="vwx301 == vwx401",fontsize=16,color="magenta"];2838 -> 2933[label="",style="dashed", color="magenta", weight=3]; 2838 -> 2934[label="",style="dashed", color="magenta", weight=3]; 2839 -> 2177[label="",style="dashed", color="red", weight=0]; 2839[label="vwx301 == vwx401",fontsize=16,color="magenta"];2839 -> 2935[label="",style="dashed", color="magenta", weight=3]; 2839 -> 2936[label="",style="dashed", color="magenta", weight=3]; 2840 -> 2178[label="",style="dashed", color="red", weight=0]; 2840[label="vwx301 == vwx401",fontsize=16,color="magenta"];2840 -> 2937[label="",style="dashed", color="magenta", weight=3]; 2840 -> 2938[label="",style="dashed", color="magenta", weight=3]; 2841 -> 2179[label="",style="dashed", color="red", weight=0]; 2841[label="vwx301 == vwx401",fontsize=16,color="magenta"];2841 -> 2939[label="",style="dashed", color="magenta", weight=3]; 2841 -> 2940[label="",style="dashed", color="magenta", weight=3]; 2842 -> 2180[label="",style="dashed", color="red", weight=0]; 2842[label="vwx301 == vwx401",fontsize=16,color="magenta"];2842 -> 2941[label="",style="dashed", color="magenta", weight=3]; 2842 -> 2942[label="",style="dashed", color="magenta", weight=3]; 2843 -> 2181[label="",style="dashed", color="red", weight=0]; 2843[label="vwx301 == vwx401",fontsize=16,color="magenta"];2843 -> 2943[label="",style="dashed", color="magenta", weight=3]; 2843 -> 2944[label="",style="dashed", color="magenta", weight=3]; 2844 -> 2182[label="",style="dashed", color="red", weight=0]; 2844[label="vwx301 == vwx401",fontsize=16,color="magenta"];2844 -> 2945[label="",style="dashed", color="magenta", weight=3]; 2844 -> 2946[label="",style="dashed", color="magenta", weight=3]; 2845 -> 2183[label="",style="dashed", color="red", weight=0]; 2845[label="vwx301 == vwx401",fontsize=16,color="magenta"];2845 -> 2947[label="",style="dashed", color="magenta", weight=3]; 2845 -> 2948[label="",style="dashed", color="magenta", weight=3]; 2846 -> 2184[label="",style="dashed", color="red", weight=0]; 2846[label="vwx301 == vwx401",fontsize=16,color="magenta"];2846 -> 2949[label="",style="dashed", color="magenta", weight=3]; 2846 -> 2950[label="",style="dashed", color="magenta", weight=3]; 2847 -> 2185[label="",style="dashed", color="red", weight=0]; 2847[label="vwx301 == vwx401",fontsize=16,color="magenta"];2847 -> 2951[label="",style="dashed", color="magenta", weight=3]; 2847 -> 2952[label="",style="dashed", color="magenta", weight=3]; 2848 -> 2186[label="",style="dashed", color="red", weight=0]; 2848[label="vwx301 == vwx401",fontsize=16,color="magenta"];2848 -> 2953[label="",style="dashed", color="magenta", weight=3]; 2848 -> 2954[label="",style="dashed", color="magenta", weight=3]; 2849 -> 2173[label="",style="dashed", color="red", weight=0]; 2849[label="vwx302 == vwx402",fontsize=16,color="magenta"];2849 -> 2955[label="",style="dashed", color="magenta", weight=3]; 2849 -> 2956[label="",style="dashed", color="magenta", weight=3]; 2850 -> 2174[label="",style="dashed", color="red", weight=0]; 2850[label="vwx302 == vwx402",fontsize=16,color="magenta"];2850 -> 2957[label="",style="dashed", color="magenta", weight=3]; 2850 -> 2958[label="",style="dashed", color="magenta", weight=3]; 2851 -> 2175[label="",style="dashed", color="red", weight=0]; 2851[label="vwx302 == vwx402",fontsize=16,color="magenta"];2851 -> 2959[label="",style="dashed", color="magenta", weight=3]; 2851 -> 2960[label="",style="dashed", color="magenta", weight=3]; 2852 -> 2176[label="",style="dashed", color="red", weight=0]; 2852[label="vwx302 == vwx402",fontsize=16,color="magenta"];2852 -> 2961[label="",style="dashed", color="magenta", weight=3]; 2852 -> 2962[label="",style="dashed", color="magenta", weight=3]; 2853 -> 2177[label="",style="dashed", color="red", weight=0]; 2853[label="vwx302 == vwx402",fontsize=16,color="magenta"];2853 -> 2963[label="",style="dashed", color="magenta", weight=3]; 2853 -> 2964[label="",style="dashed", color="magenta", weight=3]; 2854 -> 2178[label="",style="dashed", color="red", weight=0]; 2854[label="vwx302 == vwx402",fontsize=16,color="magenta"];2854 -> 2965[label="",style="dashed", color="magenta", weight=3]; 2854 -> 2966[label="",style="dashed", color="magenta", weight=3]; 2855 -> 2179[label="",style="dashed", color="red", weight=0]; 2855[label="vwx302 == vwx402",fontsize=16,color="magenta"];2855 -> 2967[label="",style="dashed", color="magenta", weight=3]; 2855 -> 2968[label="",style="dashed", color="magenta", weight=3]; 2856 -> 2180[label="",style="dashed", color="red", weight=0]; 2856[label="vwx302 == vwx402",fontsize=16,color="magenta"];2856 -> 2969[label="",style="dashed", color="magenta", weight=3]; 2856 -> 2970[label="",style="dashed", color="magenta", weight=3]; 2857 -> 2181[label="",style="dashed", color="red", weight=0]; 2857[label="vwx302 == vwx402",fontsize=16,color="magenta"];2857 -> 2971[label="",style="dashed", color="magenta", weight=3]; 2857 -> 2972[label="",style="dashed", color="magenta", weight=3]; 2858 -> 2182[label="",style="dashed", color="red", weight=0]; 2858[label="vwx302 == vwx402",fontsize=16,color="magenta"];2858 -> 2973[label="",style="dashed", color="magenta", weight=3]; 2858 -> 2974[label="",style="dashed", color="magenta", weight=3]; 2859 -> 2183[label="",style="dashed", color="red", weight=0]; 2859[label="vwx302 == vwx402",fontsize=16,color="magenta"];2859 -> 2975[label="",style="dashed", color="magenta", weight=3]; 2859 -> 2976[label="",style="dashed", color="magenta", weight=3]; 2860 -> 2184[label="",style="dashed", color="red", weight=0]; 2860[label="vwx302 == vwx402",fontsize=16,color="magenta"];2860 -> 2977[label="",style="dashed", color="magenta", weight=3]; 2860 -> 2978[label="",style="dashed", color="magenta", weight=3]; 2861 -> 2185[label="",style="dashed", color="red", weight=0]; 2861[label="vwx302 == vwx402",fontsize=16,color="magenta"];2861 -> 2979[label="",style="dashed", color="magenta", weight=3]; 2861 -> 2980[label="",style="dashed", color="magenta", weight=3]; 2862 -> 2186[label="",style="dashed", color="red", weight=0]; 2862[label="vwx302 == vwx402",fontsize=16,color="magenta"];2862 -> 2981[label="",style="dashed", color="magenta", weight=3]; 2862 -> 2982[label="",style="dashed", color="magenta", weight=3]; 2863[label="False",fontsize=16,color="green",shape="box"];2864[label="vwx270",fontsize=16,color="green",shape="box"];2865 -> 3084[label="",style="dashed", color="red", weight=0]; 2865[label="compare1 (vwx225,vwx226,vwx227) (vwx228,vwx229,vwx230) (vwx225 < vwx228 || vwx225 == vwx228 && (vwx226 < vwx229 || vwx226 == vwx229 && vwx227 <= vwx230))",fontsize=16,color="magenta"];2865 -> 3085[label="",style="dashed", color="magenta", weight=3]; 2865 -> 3086[label="",style="dashed", color="magenta", weight=3]; 2865 -> 3087[label="",style="dashed", color="magenta", weight=3]; 2865 -> 3088[label="",style="dashed", color="magenta", weight=3]; 2865 -> 3089[label="",style="dashed", color="magenta", weight=3]; 2865 -> 3090[label="",style="dashed", color="magenta", weight=3]; 2865 -> 3091[label="",style="dashed", color="magenta", weight=3]; 2865 -> 3092[label="",style="dashed", color="magenta", weight=3]; 2518[label="compare0 (Just vwx300) Nothing True",fontsize=16,color="black",shape="box"];2518 -> 2799[label="",style="solid", color="black", weight=3]; 2801[label="vwx203",fontsize=16,color="green",shape="box"];2802[label="vwx204",fontsize=16,color="green",shape="box"];2803[label="Just vwx203 <= Just vwx204",fontsize=16,color="black",shape="box"];2803 -> 2922[label="",style="solid", color="black", weight=3]; 2800[label="compare1 (Just vwx275) (Just vwx276) vwx277",fontsize=16,color="burlywood",shape="triangle"];4920[label="vwx277/False",fontsize=10,color="white",style="solid",shape="box"];2800 -> 4920[label="",style="solid", color="burlywood", weight=9]; 4920 -> 2923[label="",style="solid", color="burlywood", weight=3]; 4921[label="vwx277/True",fontsize=10,color="white",style="solid",shape="box"];2800 -> 4921[label="",style="solid", color="burlywood", weight=9]; 4921 -> 2924[label="",style="solid", color="burlywood", weight=3]; 2866[label="vwx300",fontsize=16,color="green",shape="box"];2867[label="vwx400",fontsize=16,color="green",shape="box"];2868[label="vwx300",fontsize=16,color="green",shape="box"];2869[label="vwx400",fontsize=16,color="green",shape="box"];2870[label="vwx300",fontsize=16,color="green",shape="box"];2871[label="vwx400",fontsize=16,color="green",shape="box"];2872[label="vwx300",fontsize=16,color="green",shape="box"];2873[label="vwx400",fontsize=16,color="green",shape="box"];2874[label="vwx300",fontsize=16,color="green",shape="box"];2875[label="vwx400",fontsize=16,color="green",shape="box"];2876[label="vwx300",fontsize=16,color="green",shape="box"];2877[label="vwx400",fontsize=16,color="green",shape="box"];2878[label="vwx300",fontsize=16,color="green",shape="box"];2879[label="vwx400",fontsize=16,color="green",shape="box"];2880[label="vwx300",fontsize=16,color="green",shape="box"];2881[label="vwx400",fontsize=16,color="green",shape="box"];2882[label="vwx300",fontsize=16,color="green",shape="box"];2883[label="vwx400",fontsize=16,color="green",shape="box"];2884[label="vwx300",fontsize=16,color="green",shape="box"];2885[label="vwx400",fontsize=16,color="green",shape="box"];2886[label="vwx300",fontsize=16,color="green",shape="box"];2887[label="vwx400",fontsize=16,color="green",shape="box"];2888[label="vwx300",fontsize=16,color="green",shape="box"];2889[label="vwx400",fontsize=16,color="green",shape="box"];2890[label="vwx300",fontsize=16,color="green",shape="box"];2891[label="vwx400",fontsize=16,color="green",shape="box"];2892[label="vwx300",fontsize=16,color="green",shape="box"];2893[label="vwx400",fontsize=16,color="green",shape="box"];2894[label="vwx301",fontsize=16,color="green",shape="box"];2895[label="vwx401",fontsize=16,color="green",shape="box"];2896[label="vwx301",fontsize=16,color="green",shape="box"];2897[label="vwx401",fontsize=16,color="green",shape="box"];2898[label="vwx301",fontsize=16,color="green",shape="box"];2899[label="vwx401",fontsize=16,color="green",shape="box"];2900[label="vwx301",fontsize=16,color="green",shape="box"];2901[label="vwx401",fontsize=16,color="green",shape="box"];2902[label="vwx301",fontsize=16,color="green",shape="box"];2903[label="vwx401",fontsize=16,color="green",shape="box"];2904[label="vwx301",fontsize=16,color="green",shape="box"];2905[label="vwx401",fontsize=16,color="green",shape="box"];2906[label="vwx301",fontsize=16,color="green",shape="box"];2907[label="vwx401",fontsize=16,color="green",shape="box"];2908[label="vwx301",fontsize=16,color="green",shape="box"];2909[label="vwx401",fontsize=16,color="green",shape="box"];2910[label="vwx301",fontsize=16,color="green",shape="box"];2911[label="vwx401",fontsize=16,color="green",shape="box"];2912[label="vwx301",fontsize=16,color="green",shape="box"];2913[label="vwx401",fontsize=16,color="green",shape="box"];2914[label="vwx301",fontsize=16,color="green",shape="box"];2915[label="vwx401",fontsize=16,color="green",shape="box"];2916[label="vwx301",fontsize=16,color="green",shape="box"];2917[label="vwx401",fontsize=16,color="green",shape="box"];2918[label="vwx301",fontsize=16,color="green",shape="box"];2919[label="vwx401",fontsize=16,color="green",shape="box"];2920[label="vwx301",fontsize=16,color="green",shape="box"];2921[label="vwx401",fontsize=16,color="green",shape="box"];2661 -> 3137[label="",style="dashed", color="red", weight=0]; 2661[label="compare1 (vwx238,vwx239) (vwx240,vwx241) (vwx238 < vwx240 || vwx238 == vwx240 && vwx239 <= vwx241)",fontsize=16,color="magenta"];2661 -> 3138[label="",style="dashed", color="magenta", weight=3]; 2661 -> 3139[label="",style="dashed", color="magenta", weight=3]; 2661 -> 3140[label="",style="dashed", color="magenta", weight=3]; 2661 -> 3141[label="",style="dashed", color="magenta", weight=3]; 2661 -> 3142[label="",style="dashed", color="magenta", weight=3]; 2661 -> 3143[label="",style="dashed", color="magenta", weight=3]; 2564[label="compare0 EQ LT True",fontsize=16,color="black",shape="box"];2564 -> 2985[label="",style="solid", color="black", weight=3]; 2565[label="compare0 GT LT True",fontsize=16,color="black",shape="box"];2565 -> 2986[label="",style="solid", color="black", weight=3]; 2566[label="compare0 GT EQ True",fontsize=16,color="black",shape="box"];2566 -> 2987[label="",style="solid", color="black", weight=3]; 2567[label="compare0 True False True",fontsize=16,color="black",shape="box"];2567 -> 2988[label="",style="solid", color="black", weight=3]; 2568[label="primMulNat vwx3000 vwx4010",fontsize=16,color="burlywood",shape="triangle"];4922[label="vwx3000/Succ vwx30000",fontsize=10,color="white",style="solid",shape="box"];2568 -> 4922[label="",style="solid", color="burlywood", weight=9]; 4922 -> 2989[label="",style="solid", color="burlywood", weight=3]; 4923[label="vwx3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2568 -> 4923[label="",style="solid", color="burlywood", weight=9]; 4923 -> 2990[label="",style="solid", color="burlywood", weight=3]; 2569 -> 2568[label="",style="dashed", color="red", weight=0]; 2569[label="primMulNat vwx3000 vwx4010",fontsize=16,color="magenta"];2569 -> 2991[label="",style="dashed", color="magenta", weight=3]; 2570 -> 2568[label="",style="dashed", color="red", weight=0]; 2570[label="primMulNat vwx3000 vwx4010",fontsize=16,color="magenta"];2570 -> 2992[label="",style="dashed", color="magenta", weight=3]; 2571 -> 2568[label="",style="dashed", color="red", weight=0]; 2571[label="primMulNat vwx3000 vwx4010",fontsize=16,color="magenta"];2571 -> 2993[label="",style="dashed", color="magenta", weight=3]; 2571 -> 2994[label="",style="dashed", color="magenta", weight=3]; 2572[label="vwx3000",fontsize=16,color="green",shape="box"];2573[label="vwx4010",fontsize=16,color="green",shape="box"];2574 -> 2732[label="",style="dashed", color="red", weight=0]; 2574[label="vwx3000 == vwx4000 && vwx3001 == vwx4001 && vwx3002 == vwx4002",fontsize=16,color="magenta"];2574 -> 2741[label="",style="dashed", color="magenta", weight=3]; 2574 -> 2742[label="",style="dashed", color="magenta", weight=3]; 2575[label="True",fontsize=16,color="green",shape="box"];2576[label="False",fontsize=16,color="green",shape="box"];2577[label="False",fontsize=16,color="green",shape="box"];2578[label="True",fontsize=16,color="green",shape="box"];2579[label="primEqInt (Pos (Succ vwx30000)) vwx400",fontsize=16,color="burlywood",shape="box"];4924[label="vwx400/Pos vwx4000",fontsize=10,color="white",style="solid",shape="box"];2579 -> 4924[label="",style="solid", color="burlywood", weight=9]; 4924 -> 2995[label="",style="solid", color="burlywood", weight=3]; 4925[label="vwx400/Neg vwx4000",fontsize=10,color="white",style="solid",shape="box"];2579 -> 4925[label="",style="solid", color="burlywood", weight=9]; 4925 -> 2996[label="",style="solid", color="burlywood", weight=3]; 2580[label="primEqInt (Pos Zero) vwx400",fontsize=16,color="burlywood",shape="box"];4926[label="vwx400/Pos vwx4000",fontsize=10,color="white",style="solid",shape="box"];2580 -> 4926[label="",style="solid", color="burlywood", weight=9]; 4926 -> 2997[label="",style="solid", color="burlywood", weight=3]; 4927[label="vwx400/Neg vwx4000",fontsize=10,color="white",style="solid",shape="box"];2580 -> 4927[label="",style="solid", color="burlywood", weight=9]; 4927 -> 2998[label="",style="solid", color="burlywood", weight=3]; 2581[label="primEqInt (Neg (Succ vwx30000)) vwx400",fontsize=16,color="burlywood",shape="box"];4928[label="vwx400/Pos vwx4000",fontsize=10,color="white",style="solid",shape="box"];2581 -> 4928[label="",style="solid", color="burlywood", weight=9]; 4928 -> 2999[label="",style="solid", color="burlywood", weight=3]; 4929[label="vwx400/Neg vwx4000",fontsize=10,color="white",style="solid",shape="box"];2581 -> 4929[label="",style="solid", color="burlywood", weight=9]; 4929 -> 3000[label="",style="solid", color="burlywood", weight=3]; 2582[label="primEqInt (Neg Zero) vwx400",fontsize=16,color="burlywood",shape="box"];4930[label="vwx400/Pos vwx4000",fontsize=10,color="white",style="solid",shape="box"];2582 -> 4930[label="",style="solid", color="burlywood", weight=9]; 4930 -> 3001[label="",style="solid", color="burlywood", weight=3]; 4931[label="vwx400/Neg vwx4000",fontsize=10,color="white",style="solid",shape="box"];2582 -> 4931[label="",style="solid", color="burlywood", weight=9]; 4931 -> 3002[label="",style="solid", color="burlywood", weight=3]; 2583[label="primEqDouble (Double vwx3000 vwx3001) (Double vwx4000 vwx4001)",fontsize=16,color="black",shape="box"];2583 -> 3003[label="",style="solid", color="black", weight=3]; 2584[label="primEqChar (Char vwx3000) (Char vwx4000)",fontsize=16,color="black",shape="box"];2584 -> 3004[label="",style="solid", color="black", weight=3]; 2585 -> 2732[label="",style="dashed", color="red", weight=0]; 2585[label="vwx3000 == vwx4000 && vwx3001 == vwx4001",fontsize=16,color="magenta"];2585 -> 2743[label="",style="dashed", color="magenta", weight=3]; 2585 -> 2744[label="",style="dashed", color="magenta", weight=3]; 2586[label="False",fontsize=16,color="green",shape="box"];2587[label="False",fontsize=16,color="green",shape="box"];2588[label="True",fontsize=16,color="green",shape="box"];2589[label="vwx3000 == vwx4000",fontsize=16,color="blue",shape="box"];4932[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2589 -> 4932[label="",style="solid", color="blue", weight=9]; 4932 -> 3005[label="",style="solid", color="blue", weight=3]; 4933[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2589 -> 4933[label="",style="solid", color="blue", weight=9]; 4933 -> 3006[label="",style="solid", color="blue", weight=3]; 4934[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2589 -> 4934[label="",style="solid", color="blue", weight=9]; 4934 -> 3007[label="",style="solid", color="blue", weight=3]; 4935[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2589 -> 4935[label="",style="solid", color="blue", weight=9]; 4935 -> 3008[label="",style="solid", color="blue", weight=3]; 4936[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2589 -> 4936[label="",style="solid", color="blue", weight=9]; 4936 -> 3009[label="",style="solid", color="blue", weight=3]; 4937[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2589 -> 4937[label="",style="solid", color="blue", weight=9]; 4937 -> 3010[label="",style="solid", color="blue", weight=3]; 4938[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2589 -> 4938[label="",style="solid", color="blue", weight=9]; 4938 -> 3011[label="",style="solid", color="blue", weight=3]; 4939[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2589 -> 4939[label="",style="solid", color="blue", weight=9]; 4939 -> 3012[label="",style="solid", color="blue", weight=3]; 4940[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2589 -> 4940[label="",style="solid", color="blue", weight=9]; 4940 -> 3013[label="",style="solid", color="blue", weight=3]; 4941[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2589 -> 4941[label="",style="solid", color="blue", weight=9]; 4941 -> 3014[label="",style="solid", color="blue", weight=3]; 4942[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2589 -> 4942[label="",style="solid", color="blue", weight=9]; 4942 -> 3015[label="",style="solid", color="blue", weight=3]; 4943[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2589 -> 4943[label="",style="solid", color="blue", weight=9]; 4943 -> 3016[label="",style="solid", color="blue", weight=3]; 4944[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2589 -> 4944[label="",style="solid", color="blue", weight=9]; 4944 -> 3017[label="",style="solid", color="blue", weight=3]; 4945[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2589 -> 4945[label="",style="solid", color="blue", weight=9]; 4945 -> 3018[label="",style="solid", color="blue", weight=3]; 2590[label="False",fontsize=16,color="green",shape="box"];2591[label="False",fontsize=16,color="green",shape="box"];2592[label="vwx3000 == vwx4000",fontsize=16,color="blue",shape="box"];4946[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2592 -> 4946[label="",style="solid", color="blue", weight=9]; 4946 -> 3019[label="",style="solid", color="blue", weight=3]; 4947[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2592 -> 4947[label="",style="solid", color="blue", weight=9]; 4947 -> 3020[label="",style="solid", color="blue", weight=3]; 4948[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2592 -> 4948[label="",style="solid", color="blue", weight=9]; 4948 -> 3021[label="",style="solid", color="blue", weight=3]; 4949[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2592 -> 4949[label="",style="solid", color="blue", weight=9]; 4949 -> 3022[label="",style="solid", color="blue", weight=3]; 4950[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2592 -> 4950[label="",style="solid", color="blue", weight=9]; 4950 -> 3023[label="",style="solid", color="blue", weight=3]; 4951[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2592 -> 4951[label="",style="solid", color="blue", weight=9]; 4951 -> 3024[label="",style="solid", color="blue", weight=3]; 4952[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2592 -> 4952[label="",style="solid", color="blue", weight=9]; 4952 -> 3025[label="",style="solid", color="blue", weight=3]; 4953[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2592 -> 4953[label="",style="solid", color="blue", weight=9]; 4953 -> 3026[label="",style="solid", color="blue", weight=3]; 4954[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2592 -> 4954[label="",style="solid", color="blue", weight=9]; 4954 -> 3027[label="",style="solid", color="blue", weight=3]; 4955[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2592 -> 4955[label="",style="solid", color="blue", weight=9]; 4955 -> 3028[label="",style="solid", color="blue", weight=3]; 4956[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2592 -> 4956[label="",style="solid", color="blue", weight=9]; 4956 -> 3029[label="",style="solid", color="blue", weight=3]; 4957[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2592 -> 4957[label="",style="solid", color="blue", weight=9]; 4957 -> 3030[label="",style="solid", color="blue", weight=3]; 4958[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2592 -> 4958[label="",style="solid", color="blue", weight=9]; 4958 -> 3031[label="",style="solid", color="blue", weight=3]; 4959[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2592 -> 4959[label="",style="solid", color="blue", weight=9]; 4959 -> 3032[label="",style="solid", color="blue", weight=3]; 2593[label="True",fontsize=16,color="green",shape="box"];2594[label="False",fontsize=16,color="green",shape="box"];2595[label="False",fontsize=16,color="green",shape="box"];2596[label="vwx3000 == vwx4000",fontsize=16,color="blue",shape="box"];4960[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2596 -> 4960[label="",style="solid", color="blue", weight=9]; 4960 -> 3033[label="",style="solid", color="blue", weight=3]; 4961[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2596 -> 4961[label="",style="solid", color="blue", weight=9]; 4961 -> 3034[label="",style="solid", color="blue", weight=3]; 4962[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2596 -> 4962[label="",style="solid", color="blue", weight=9]; 4962 -> 3035[label="",style="solid", color="blue", weight=3]; 4963[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2596 -> 4963[label="",style="solid", color="blue", weight=9]; 4963 -> 3036[label="",style="solid", color="blue", weight=3]; 4964[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2596 -> 4964[label="",style="solid", color="blue", weight=9]; 4964 -> 3037[label="",style="solid", color="blue", weight=3]; 4965[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2596 -> 4965[label="",style="solid", color="blue", weight=9]; 4965 -> 3038[label="",style="solid", color="blue", weight=3]; 4966[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2596 -> 4966[label="",style="solid", color="blue", weight=9]; 4966 -> 3039[label="",style="solid", color="blue", weight=3]; 4967[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2596 -> 4967[label="",style="solid", color="blue", weight=9]; 4967 -> 3040[label="",style="solid", color="blue", weight=3]; 4968[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2596 -> 4968[label="",style="solid", color="blue", weight=9]; 4968 -> 3041[label="",style="solid", color="blue", weight=3]; 4969[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2596 -> 4969[label="",style="solid", color="blue", weight=9]; 4969 -> 3042[label="",style="solid", color="blue", weight=3]; 4970[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2596 -> 4970[label="",style="solid", color="blue", weight=9]; 4970 -> 3043[label="",style="solid", color="blue", weight=3]; 4971[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2596 -> 4971[label="",style="solid", color="blue", weight=9]; 4971 -> 3044[label="",style="solid", color="blue", weight=3]; 4972[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2596 -> 4972[label="",style="solid", color="blue", weight=9]; 4972 -> 3045[label="",style="solid", color="blue", weight=3]; 4973[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2596 -> 4973[label="",style="solid", color="blue", weight=9]; 4973 -> 3046[label="",style="solid", color="blue", weight=3]; 2597 -> 2732[label="",style="dashed", color="red", weight=0]; 2597[label="vwx3000 == vwx4000 && vwx3001 == vwx4001",fontsize=16,color="magenta"];2597 -> 2745[label="",style="dashed", color="magenta", weight=3]; 2597 -> 2746[label="",style="dashed", color="magenta", weight=3]; 2598[label="True",fontsize=16,color="green",shape="box"];2599[label="False",fontsize=16,color="green",shape="box"];2600[label="False",fontsize=16,color="green",shape="box"];2601[label="False",fontsize=16,color="green",shape="box"];2602[label="True",fontsize=16,color="green",shape="box"];2603[label="False",fontsize=16,color="green",shape="box"];2604[label="False",fontsize=16,color="green",shape="box"];2605[label="False",fontsize=16,color="green",shape="box"];2606[label="True",fontsize=16,color="green",shape="box"];2607[label="True",fontsize=16,color="green",shape="box"];2608 -> 2732[label="",style="dashed", color="red", weight=0]; 2608[label="vwx3000 == vwx4000 && vwx3001 == vwx4001",fontsize=16,color="magenta"];2608 -> 2747[label="",style="dashed", color="magenta", weight=3]; 2608 -> 2748[label="",style="dashed", color="magenta", weight=3]; 2609 -> 2313[label="",style="dashed", color="red", weight=0]; 2609[label="primEqInt vwx3000 vwx4000",fontsize=16,color="magenta"];2609 -> 3047[label="",style="dashed", color="magenta", weight=3]; 2609 -> 3048[label="",style="dashed", color="magenta", weight=3]; 2610[label="primEqFloat (Float vwx3000 vwx3001) (Float vwx4000 vwx4001)",fontsize=16,color="black",shape="box"];2610 -> 3049[label="",style="solid", color="black", weight=3]; 2650[label="vwx174 <= vwx175",fontsize=16,color="blue",shape="box"];4974[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2650 -> 4974[label="",style="solid", color="blue", weight=9]; 4974 -> 3050[label="",style="solid", color="blue", weight=3]; 4975[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2650 -> 4975[label="",style="solid", color="blue", weight=9]; 4975 -> 3051[label="",style="solid", color="blue", weight=3]; 4976[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2650 -> 4976[label="",style="solid", color="blue", weight=9]; 4976 -> 3052[label="",style="solid", color="blue", weight=3]; 4977[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2650 -> 4977[label="",style="solid", color="blue", weight=9]; 4977 -> 3053[label="",style="solid", color="blue", weight=3]; 4978[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2650 -> 4978[label="",style="solid", color="blue", weight=9]; 4978 -> 3054[label="",style="solid", color="blue", weight=3]; 4979[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2650 -> 4979[label="",style="solid", color="blue", weight=9]; 4979 -> 3055[label="",style="solid", color="blue", weight=3]; 4980[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2650 -> 4980[label="",style="solid", color="blue", weight=9]; 4980 -> 3056[label="",style="solid", color="blue", weight=3]; 4981[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2650 -> 4981[label="",style="solid", color="blue", weight=9]; 4981 -> 3057[label="",style="solid", color="blue", weight=3]; 4982[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2650 -> 4982[label="",style="solid", color="blue", weight=9]; 4982 -> 3058[label="",style="solid", color="blue", weight=3]; 4983[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2650 -> 4983[label="",style="solid", color="blue", weight=9]; 4983 -> 3059[label="",style="solid", color="blue", weight=3]; 4984[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2650 -> 4984[label="",style="solid", color="blue", weight=9]; 4984 -> 3060[label="",style="solid", color="blue", weight=3]; 4985[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2650 -> 4985[label="",style="solid", color="blue", weight=9]; 4985 -> 3061[label="",style="solid", color="blue", weight=3]; 4986[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2650 -> 4986[label="",style="solid", color="blue", weight=9]; 4986 -> 3062[label="",style="solid", color="blue", weight=3]; 4987[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2650 -> 4987[label="",style="solid", color="blue", weight=9]; 4987 -> 3063[label="",style="solid", color="blue", weight=3]; 2651[label="compare1 (Left vwx254) (Left vwx255) False",fontsize=16,color="black",shape="box"];2651 -> 3064[label="",style="solid", color="black", weight=3]; 2652[label="compare1 (Left vwx254) (Left vwx255) True",fontsize=16,color="black",shape="box"];2652 -> 3065[label="",style="solid", color="black", weight=3]; 2653[label="GT",fontsize=16,color="green",shape="box"];2662[label="vwx181 <= vwx182",fontsize=16,color="blue",shape="box"];4988[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2662 -> 4988[label="",style="solid", color="blue", weight=9]; 4988 -> 3066[label="",style="solid", color="blue", weight=3]; 4989[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2662 -> 4989[label="",style="solid", color="blue", weight=9]; 4989 -> 3067[label="",style="solid", color="blue", weight=3]; 4990[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2662 -> 4990[label="",style="solid", color="blue", weight=9]; 4990 -> 3068[label="",style="solid", color="blue", weight=3]; 4991[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2662 -> 4991[label="",style="solid", color="blue", weight=9]; 4991 -> 3069[label="",style="solid", color="blue", weight=3]; 4992[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2662 -> 4992[label="",style="solid", color="blue", weight=9]; 4992 -> 3070[label="",style="solid", color="blue", weight=3]; 4993[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2662 -> 4993[label="",style="solid", color="blue", weight=9]; 4993 -> 3071[label="",style="solid", color="blue", weight=3]; 4994[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2662 -> 4994[label="",style="solid", color="blue", weight=9]; 4994 -> 3072[label="",style="solid", color="blue", weight=3]; 4995[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2662 -> 4995[label="",style="solid", color="blue", weight=9]; 4995 -> 3073[label="",style="solid", color="blue", weight=3]; 4996[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2662 -> 4996[label="",style="solid", color="blue", weight=9]; 4996 -> 3074[label="",style="solid", color="blue", weight=3]; 4997[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2662 -> 4997[label="",style="solid", color="blue", weight=9]; 4997 -> 3075[label="",style="solid", color="blue", weight=3]; 4998[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2662 -> 4998[label="",style="solid", color="blue", weight=9]; 4998 -> 3076[label="",style="solid", color="blue", weight=3]; 4999[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2662 -> 4999[label="",style="solid", color="blue", weight=9]; 4999 -> 3077[label="",style="solid", color="blue", weight=3]; 5000[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2662 -> 5000[label="",style="solid", color="blue", weight=9]; 5000 -> 3078[label="",style="solid", color="blue", weight=3]; 5001[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2662 -> 5001[label="",style="solid", color="blue", weight=9]; 5001 -> 3079[label="",style="solid", color="blue", weight=3]; 2663[label="compare1 (Right vwx261) (Right vwx262) False",fontsize=16,color="black",shape="box"];2663 -> 3080[label="",style="solid", color="black", weight=3]; 2664[label="compare1 (Right vwx261) (Right vwx262) True",fontsize=16,color="black",shape="box"];2664 -> 3081[label="",style="solid", color="black", weight=3]; 2927[label="vwx301",fontsize=16,color="green",shape="box"];2928[label="vwx401",fontsize=16,color="green",shape="box"];2929[label="vwx301",fontsize=16,color="green",shape="box"];2930[label="vwx401",fontsize=16,color="green",shape="box"];2931[label="vwx301",fontsize=16,color="green",shape="box"];2932[label="vwx401",fontsize=16,color="green",shape="box"];2933[label="vwx301",fontsize=16,color="green",shape="box"];2934[label="vwx401",fontsize=16,color="green",shape="box"];2935[label="vwx301",fontsize=16,color="green",shape="box"];2936[label="vwx401",fontsize=16,color="green",shape="box"];2937[label="vwx301",fontsize=16,color="green",shape="box"];2938[label="vwx401",fontsize=16,color="green",shape="box"];2939[label="vwx301",fontsize=16,color="green",shape="box"];2940[label="vwx401",fontsize=16,color="green",shape="box"];2941[label="vwx301",fontsize=16,color="green",shape="box"];2942[label="vwx401",fontsize=16,color="green",shape="box"];2943[label="vwx301",fontsize=16,color="green",shape="box"];2944[label="vwx401",fontsize=16,color="green",shape="box"];2945[label="vwx301",fontsize=16,color="green",shape="box"];2946[label="vwx401",fontsize=16,color="green",shape="box"];2947[label="vwx301",fontsize=16,color="green",shape="box"];2948[label="vwx401",fontsize=16,color="green",shape="box"];2949[label="vwx301",fontsize=16,color="green",shape="box"];2950[label="vwx401",fontsize=16,color="green",shape="box"];2951[label="vwx301",fontsize=16,color="green",shape="box"];2952[label="vwx401",fontsize=16,color="green",shape="box"];2953[label="vwx301",fontsize=16,color="green",shape="box"];2954[label="vwx401",fontsize=16,color="green",shape="box"];2955[label="vwx302",fontsize=16,color="green",shape="box"];2956[label="vwx402",fontsize=16,color="green",shape="box"];2957[label="vwx302",fontsize=16,color="green",shape="box"];2958[label="vwx402",fontsize=16,color="green",shape="box"];2959[label="vwx302",fontsize=16,color="green",shape="box"];2960[label="vwx402",fontsize=16,color="green",shape="box"];2961[label="vwx302",fontsize=16,color="green",shape="box"];2962[label="vwx402",fontsize=16,color="green",shape="box"];2963[label="vwx302",fontsize=16,color="green",shape="box"];2964[label="vwx402",fontsize=16,color="green",shape="box"];2965[label="vwx302",fontsize=16,color="green",shape="box"];2966[label="vwx402",fontsize=16,color="green",shape="box"];2967[label="vwx302",fontsize=16,color="green",shape="box"];2968[label="vwx402",fontsize=16,color="green",shape="box"];2969[label="vwx302",fontsize=16,color="green",shape="box"];2970[label="vwx402",fontsize=16,color="green",shape="box"];2971[label="vwx302",fontsize=16,color="green",shape="box"];2972[label="vwx402",fontsize=16,color="green",shape="box"];2973[label="vwx302",fontsize=16,color="green",shape="box"];2974[label="vwx402",fontsize=16,color="green",shape="box"];2975[label="vwx302",fontsize=16,color="green",shape="box"];2976[label="vwx402",fontsize=16,color="green",shape="box"];2977[label="vwx302",fontsize=16,color="green",shape="box"];2978[label="vwx402",fontsize=16,color="green",shape="box"];2979[label="vwx302",fontsize=16,color="green",shape="box"];2980[label="vwx402",fontsize=16,color="green",shape="box"];2981[label="vwx302",fontsize=16,color="green",shape="box"];2982[label="vwx402",fontsize=16,color="green",shape="box"];3085[label="vwx226",fontsize=16,color="green",shape="box"];3086[label="vwx225",fontsize=16,color="green",shape="box"];3087[label="vwx230",fontsize=16,color="green",shape="box"];3088[label="vwx228",fontsize=16,color="green",shape="box"];3089[label="vwx229",fontsize=16,color="green",shape="box"];3090[label="vwx227",fontsize=16,color="green",shape="box"];3091 -> 2732[label="",style="dashed", color="red", weight=0]; 3091[label="vwx225 == vwx228 && (vwx226 < vwx229 || vwx226 == vwx229 && vwx227 <= vwx230)",fontsize=16,color="magenta"];3091 -> 3101[label="",style="dashed", color="magenta", weight=3]; 3091 -> 3102[label="",style="dashed", color="magenta", weight=3]; 3092[label="vwx225 < vwx228",fontsize=16,color="blue",shape="box"];5002[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3092 -> 5002[label="",style="solid", color="blue", weight=9]; 5002 -> 3103[label="",style="solid", color="blue", weight=3]; 5003[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3092 -> 5003[label="",style="solid", color="blue", weight=9]; 5003 -> 3104[label="",style="solid", color="blue", weight=3]; 5004[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3092 -> 5004[label="",style="solid", color="blue", weight=9]; 5004 -> 3105[label="",style="solid", color="blue", weight=3]; 5005[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3092 -> 5005[label="",style="solid", color="blue", weight=9]; 5005 -> 3106[label="",style="solid", color="blue", weight=3]; 5006[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3092 -> 5006[label="",style="solid", color="blue", weight=9]; 5006 -> 3107[label="",style="solid", color="blue", weight=3]; 5007[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3092 -> 5007[label="",style="solid", color="blue", weight=9]; 5007 -> 3108[label="",style="solid", color="blue", weight=3]; 5008[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3092 -> 5008[label="",style="solid", color="blue", weight=9]; 5008 -> 3109[label="",style="solid", color="blue", weight=3]; 5009[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3092 -> 5009[label="",style="solid", color="blue", weight=9]; 5009 -> 3110[label="",style="solid", color="blue", weight=3]; 5010[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3092 -> 5010[label="",style="solid", color="blue", weight=9]; 5010 -> 3111[label="",style="solid", color="blue", weight=3]; 5011[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3092 -> 5011[label="",style="solid", color="blue", weight=9]; 5011 -> 3112[label="",style="solid", color="blue", weight=3]; 5012[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3092 -> 5012[label="",style="solid", color="blue", weight=9]; 5012 -> 3113[label="",style="solid", color="blue", weight=3]; 5013[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3092 -> 5013[label="",style="solid", color="blue", weight=9]; 5013 -> 3114[label="",style="solid", color="blue", weight=3]; 5014[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3092 -> 5014[label="",style="solid", color="blue", weight=9]; 5014 -> 3115[label="",style="solid", color="blue", weight=3]; 5015[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3092 -> 5015[label="",style="solid", color="blue", weight=9]; 5015 -> 3116[label="",style="solid", color="blue", weight=3]; 3084[label="compare1 (vwx290,vwx291,vwx292) (vwx293,vwx294,vwx295) (vwx296 || vwx297)",fontsize=16,color="burlywood",shape="triangle"];5016[label="vwx296/False",fontsize=10,color="white",style="solid",shape="box"];3084 -> 5016[label="",style="solid", color="burlywood", weight=9]; 5016 -> 3117[label="",style="solid", color="burlywood", weight=3]; 5017[label="vwx296/True",fontsize=10,color="white",style="solid",shape="box"];3084 -> 5017[label="",style="solid", color="burlywood", weight=9]; 5017 -> 3118[label="",style="solid", color="burlywood", weight=3]; 2799[label="GT",fontsize=16,color="green",shape="box"];2922[label="vwx203 <= vwx204",fontsize=16,color="blue",shape="box"];5018[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2922 -> 5018[label="",style="solid", color="blue", weight=9]; 5018 -> 3119[label="",style="solid", color="blue", weight=3]; 5019[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2922 -> 5019[label="",style="solid", color="blue", weight=9]; 5019 -> 3120[label="",style="solid", color="blue", weight=3]; 5020[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2922 -> 5020[label="",style="solid", color="blue", weight=9]; 5020 -> 3121[label="",style="solid", color="blue", weight=3]; 5021[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2922 -> 5021[label="",style="solid", color="blue", weight=9]; 5021 -> 3122[label="",style="solid", color="blue", weight=3]; 5022[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2922 -> 5022[label="",style="solid", color="blue", weight=9]; 5022 -> 3123[label="",style="solid", color="blue", weight=3]; 5023[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2922 -> 5023[label="",style="solid", color="blue", weight=9]; 5023 -> 3124[label="",style="solid", color="blue", weight=3]; 5024[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2922 -> 5024[label="",style="solid", color="blue", weight=9]; 5024 -> 3125[label="",style="solid", color="blue", weight=3]; 5025[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2922 -> 5025[label="",style="solid", color="blue", weight=9]; 5025 -> 3126[label="",style="solid", color="blue", weight=3]; 5026[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2922 -> 5026[label="",style="solid", color="blue", weight=9]; 5026 -> 3127[label="",style="solid", color="blue", weight=3]; 5027[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2922 -> 5027[label="",style="solid", color="blue", weight=9]; 5027 -> 3128[label="",style="solid", color="blue", weight=3]; 5028[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2922 -> 5028[label="",style="solid", color="blue", weight=9]; 5028 -> 3129[label="",style="solid", color="blue", weight=3]; 5029[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2922 -> 5029[label="",style="solid", color="blue", weight=9]; 5029 -> 3130[label="",style="solid", color="blue", weight=3]; 5030[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2922 -> 5030[label="",style="solid", color="blue", weight=9]; 5030 -> 3131[label="",style="solid", color="blue", weight=3]; 5031[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2922 -> 5031[label="",style="solid", color="blue", weight=9]; 5031 -> 3132[label="",style="solid", color="blue", weight=3]; 2923[label="compare1 (Just vwx275) (Just vwx276) False",fontsize=16,color="black",shape="box"];2923 -> 3133[label="",style="solid", color="black", weight=3]; 2924[label="compare1 (Just vwx275) (Just vwx276) True",fontsize=16,color="black",shape="box"];2924 -> 3134[label="",style="solid", color="black", weight=3]; 3138[label="vwx241",fontsize=16,color="green",shape="box"];3139[label="vwx240",fontsize=16,color="green",shape="box"];3140[label="vwx238",fontsize=16,color="green",shape="box"];3141 -> 2732[label="",style="dashed", color="red", weight=0]; 3141[label="vwx238 == vwx240 && vwx239 <= vwx241",fontsize=16,color="magenta"];3141 -> 3150[label="",style="dashed", color="magenta", weight=3]; 3141 -> 3151[label="",style="dashed", color="magenta", weight=3]; 3142[label="vwx238 < vwx240",fontsize=16,color="blue",shape="box"];5032[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3142 -> 5032[label="",style="solid", color="blue", weight=9]; 5032 -> 3152[label="",style="solid", color="blue", weight=3]; 5033[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3142 -> 5033[label="",style="solid", color="blue", weight=9]; 5033 -> 3153[label="",style="solid", color="blue", weight=3]; 5034[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3142 -> 5034[label="",style="solid", color="blue", weight=9]; 5034 -> 3154[label="",style="solid", color="blue", weight=3]; 5035[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3142 -> 5035[label="",style="solid", color="blue", weight=9]; 5035 -> 3155[label="",style="solid", color="blue", weight=3]; 5036[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3142 -> 5036[label="",style="solid", color="blue", weight=9]; 5036 -> 3156[label="",style="solid", color="blue", weight=3]; 5037[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3142 -> 5037[label="",style="solid", color="blue", weight=9]; 5037 -> 3157[label="",style="solid", color="blue", weight=3]; 5038[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3142 -> 5038[label="",style="solid", color="blue", weight=9]; 5038 -> 3158[label="",style="solid", color="blue", weight=3]; 5039[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3142 -> 5039[label="",style="solid", color="blue", weight=9]; 5039 -> 3159[label="",style="solid", color="blue", weight=3]; 5040[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3142 -> 5040[label="",style="solid", color="blue", weight=9]; 5040 -> 3160[label="",style="solid", color="blue", weight=3]; 5041[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3142 -> 5041[label="",style="solid", color="blue", weight=9]; 5041 -> 3161[label="",style="solid", color="blue", weight=3]; 5042[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3142 -> 5042[label="",style="solid", color="blue", weight=9]; 5042 -> 3162[label="",style="solid", color="blue", weight=3]; 5043[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3142 -> 5043[label="",style="solid", color="blue", weight=9]; 5043 -> 3163[label="",style="solid", color="blue", weight=3]; 5044[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3142 -> 5044[label="",style="solid", color="blue", weight=9]; 5044 -> 3164[label="",style="solid", color="blue", weight=3]; 5045[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3142 -> 5045[label="",style="solid", color="blue", weight=9]; 5045 -> 3165[label="",style="solid", color="blue", weight=3]; 3143[label="vwx239",fontsize=16,color="green",shape="box"];3137[label="compare1 (vwx305,vwx306) (vwx307,vwx308) (vwx309 || vwx310)",fontsize=16,color="burlywood",shape="triangle"];5046[label="vwx309/False",fontsize=10,color="white",style="solid",shape="box"];3137 -> 5046[label="",style="solid", color="burlywood", weight=9]; 5046 -> 3166[label="",style="solid", color="burlywood", weight=3]; 5047[label="vwx309/True",fontsize=10,color="white",style="solid",shape="box"];3137 -> 5047[label="",style="solid", color="burlywood", weight=9]; 5047 -> 3167[label="",style="solid", color="burlywood", weight=3]; 2985[label="GT",fontsize=16,color="green",shape="box"];2986[label="GT",fontsize=16,color="green",shape="box"];2987[label="GT",fontsize=16,color="green",shape="box"];2988[label="GT",fontsize=16,color="green",shape="box"];2989[label="primMulNat (Succ vwx30000) vwx4010",fontsize=16,color="burlywood",shape="box"];5048[label="vwx4010/Succ vwx40100",fontsize=10,color="white",style="solid",shape="box"];2989 -> 5048[label="",style="solid", color="burlywood", weight=9]; 5048 -> 3168[label="",style="solid", color="burlywood", weight=3]; 5049[label="vwx4010/Zero",fontsize=10,color="white",style="solid",shape="box"];2989 -> 5049[label="",style="solid", color="burlywood", weight=9]; 5049 -> 3169[label="",style="solid", color="burlywood", weight=3]; 2990[label="primMulNat Zero vwx4010",fontsize=16,color="burlywood",shape="box"];5050[label="vwx4010/Succ vwx40100",fontsize=10,color="white",style="solid",shape="box"];2990 -> 5050[label="",style="solid", color="burlywood", weight=9]; 5050 -> 3170[label="",style="solid", color="burlywood", weight=3]; 5051[label="vwx4010/Zero",fontsize=10,color="white",style="solid",shape="box"];2990 -> 5051[label="",style="solid", color="burlywood", weight=9]; 5051 -> 3171[label="",style="solid", color="burlywood", weight=3]; 2991[label="vwx4010",fontsize=16,color="green",shape="box"];2992[label="vwx3000",fontsize=16,color="green",shape="box"];2993[label="vwx3000",fontsize=16,color="green",shape="box"];2994[label="vwx4010",fontsize=16,color="green",shape="box"];2741[label="vwx3000 == vwx4000",fontsize=16,color="blue",shape="box"];5052[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2741 -> 5052[label="",style="solid", color="blue", weight=9]; 5052 -> 3172[label="",style="solid", color="blue", weight=3]; 5053[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2741 -> 5053[label="",style="solid", color="blue", weight=9]; 5053 -> 3173[label="",style="solid", color="blue", weight=3]; 5054[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2741 -> 5054[label="",style="solid", color="blue", weight=9]; 5054 -> 3174[label="",style="solid", color="blue", weight=3]; 5055[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2741 -> 5055[label="",style="solid", color="blue", weight=9]; 5055 -> 3175[label="",style="solid", color="blue", weight=3]; 5056[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2741 -> 5056[label="",style="solid", color="blue", weight=9]; 5056 -> 3176[label="",style="solid", color="blue", weight=3]; 5057[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2741 -> 5057[label="",style="solid", color="blue", weight=9]; 5057 -> 3177[label="",style="solid", color="blue", weight=3]; 5058[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2741 -> 5058[label="",style="solid", color="blue", weight=9]; 5058 -> 3178[label="",style="solid", color="blue", weight=3]; 5059[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2741 -> 5059[label="",style="solid", color="blue", weight=9]; 5059 -> 3179[label="",style="solid", color="blue", weight=3]; 5060[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2741 -> 5060[label="",style="solid", color="blue", weight=9]; 5060 -> 3180[label="",style="solid", color="blue", weight=3]; 5061[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2741 -> 5061[label="",style="solid", color="blue", weight=9]; 5061 -> 3181[label="",style="solid", color="blue", weight=3]; 5062[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2741 -> 5062[label="",style="solid", color="blue", weight=9]; 5062 -> 3182[label="",style="solid", color="blue", weight=3]; 5063[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2741 -> 5063[label="",style="solid", color="blue", weight=9]; 5063 -> 3183[label="",style="solid", color="blue", weight=3]; 5064[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2741 -> 5064[label="",style="solid", color="blue", weight=9]; 5064 -> 3184[label="",style="solid", color="blue", weight=3]; 5065[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2741 -> 5065[label="",style="solid", color="blue", weight=9]; 5065 -> 3185[label="",style="solid", color="blue", weight=3]; 2742 -> 2732[label="",style="dashed", color="red", weight=0]; 2742[label="vwx3001 == vwx4001 && vwx3002 == vwx4002",fontsize=16,color="magenta"];2742 -> 3186[label="",style="dashed", color="magenta", weight=3]; 2742 -> 3187[label="",style="dashed", color="magenta", weight=3]; 2995[label="primEqInt (Pos (Succ vwx30000)) (Pos vwx4000)",fontsize=16,color="burlywood",shape="box"];5066[label="vwx4000/Succ vwx40000",fontsize=10,color="white",style="solid",shape="box"];2995 -> 5066[label="",style="solid", color="burlywood", weight=9]; 5066 -> 3188[label="",style="solid", color="burlywood", weight=3]; 5067[label="vwx4000/Zero",fontsize=10,color="white",style="solid",shape="box"];2995 -> 5067[label="",style="solid", color="burlywood", weight=9]; 5067 -> 3189[label="",style="solid", color="burlywood", weight=3]; 2996[label="primEqInt (Pos (Succ vwx30000)) (Neg vwx4000)",fontsize=16,color="black",shape="box"];2996 -> 3190[label="",style="solid", color="black", weight=3]; 2997[label="primEqInt (Pos Zero) (Pos vwx4000)",fontsize=16,color="burlywood",shape="box"];5068[label="vwx4000/Succ vwx40000",fontsize=10,color="white",style="solid",shape="box"];2997 -> 5068[label="",style="solid", color="burlywood", weight=9]; 5068 -> 3191[label="",style="solid", color="burlywood", weight=3]; 5069[label="vwx4000/Zero",fontsize=10,color="white",style="solid",shape="box"];2997 -> 5069[label="",style="solid", color="burlywood", weight=9]; 5069 -> 3192[label="",style="solid", color="burlywood", weight=3]; 2998[label="primEqInt (Pos Zero) (Neg vwx4000)",fontsize=16,color="burlywood",shape="box"];5070[label="vwx4000/Succ vwx40000",fontsize=10,color="white",style="solid",shape="box"];2998 -> 5070[label="",style="solid", color="burlywood", weight=9]; 5070 -> 3193[label="",style="solid", color="burlywood", weight=3]; 5071[label="vwx4000/Zero",fontsize=10,color="white",style="solid",shape="box"];2998 -> 5071[label="",style="solid", color="burlywood", weight=9]; 5071 -> 3194[label="",style="solid", color="burlywood", weight=3]; 2999[label="primEqInt (Neg (Succ vwx30000)) (Pos vwx4000)",fontsize=16,color="black",shape="box"];2999 -> 3195[label="",style="solid", color="black", weight=3]; 3000[label="primEqInt (Neg (Succ vwx30000)) (Neg vwx4000)",fontsize=16,color="burlywood",shape="box"];5072[label="vwx4000/Succ vwx40000",fontsize=10,color="white",style="solid",shape="box"];3000 -> 5072[label="",style="solid", color="burlywood", weight=9]; 5072 -> 3196[label="",style="solid", color="burlywood", weight=3]; 5073[label="vwx4000/Zero",fontsize=10,color="white",style="solid",shape="box"];3000 -> 5073[label="",style="solid", color="burlywood", weight=9]; 5073 -> 3197[label="",style="solid", color="burlywood", weight=3]; 3001[label="primEqInt (Neg Zero) (Pos vwx4000)",fontsize=16,color="burlywood",shape="box"];5074[label="vwx4000/Succ vwx40000",fontsize=10,color="white",style="solid",shape="box"];3001 -> 5074[label="",style="solid", color="burlywood", weight=9]; 5074 -> 3198[label="",style="solid", color="burlywood", weight=3]; 5075[label="vwx4000/Zero",fontsize=10,color="white",style="solid",shape="box"];3001 -> 5075[label="",style="solid", color="burlywood", weight=9]; 5075 -> 3199[label="",style="solid", color="burlywood", weight=3]; 3002[label="primEqInt (Neg Zero) (Neg vwx4000)",fontsize=16,color="burlywood",shape="box"];5076[label="vwx4000/Succ vwx40000",fontsize=10,color="white",style="solid",shape="box"];3002 -> 5076[label="",style="solid", color="burlywood", weight=9]; 5076 -> 3200[label="",style="solid", color="burlywood", weight=3]; 5077[label="vwx4000/Zero",fontsize=10,color="white",style="solid",shape="box"];3002 -> 5077[label="",style="solid", color="burlywood", weight=9]; 5077 -> 3201[label="",style="solid", color="burlywood", weight=3]; 3003 -> 2175[label="",style="dashed", color="red", weight=0]; 3003[label="vwx3000 * vwx4001 == vwx3001 * vwx4000",fontsize=16,color="magenta"];3003 -> 3202[label="",style="dashed", color="magenta", weight=3]; 3003 -> 3203[label="",style="dashed", color="magenta", weight=3]; 3004[label="primEqNat vwx3000 vwx4000",fontsize=16,color="burlywood",shape="triangle"];5078[label="vwx3000/Succ vwx30000",fontsize=10,color="white",style="solid",shape="box"];3004 -> 5078[label="",style="solid", color="burlywood", weight=9]; 5078 -> 3204[label="",style="solid", color="burlywood", weight=3]; 5079[label="vwx3000/Zero",fontsize=10,color="white",style="solid",shape="box"];3004 -> 5079[label="",style="solid", color="burlywood", weight=9]; 5079 -> 3205[label="",style="solid", color="burlywood", weight=3]; 2743[label="vwx3000 == vwx4000",fontsize=16,color="blue",shape="box"];5080[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2743 -> 5080[label="",style="solid", color="blue", weight=9]; 5080 -> 3206[label="",style="solid", color="blue", weight=3]; 5081[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2743 -> 5081[label="",style="solid", color="blue", weight=9]; 5081 -> 3207[label="",style="solid", color="blue", weight=3]; 5082[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2743 -> 5082[label="",style="solid", color="blue", weight=9]; 5082 -> 3208[label="",style="solid", color="blue", weight=3]; 5083[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2743 -> 5083[label="",style="solid", color="blue", weight=9]; 5083 -> 3209[label="",style="solid", color="blue", weight=3]; 5084[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2743 -> 5084[label="",style="solid", color="blue", weight=9]; 5084 -> 3210[label="",style="solid", color="blue", weight=3]; 5085[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2743 -> 5085[label="",style="solid", color="blue", weight=9]; 5085 -> 3211[label="",style="solid", color="blue", weight=3]; 5086[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2743 -> 5086[label="",style="solid", color="blue", weight=9]; 5086 -> 3212[label="",style="solid", color="blue", weight=3]; 5087[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2743 -> 5087[label="",style="solid", color="blue", weight=9]; 5087 -> 3213[label="",style="solid", color="blue", weight=3]; 5088[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2743 -> 5088[label="",style="solid", color="blue", weight=9]; 5088 -> 3214[label="",style="solid", color="blue", weight=3]; 5089[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2743 -> 5089[label="",style="solid", color="blue", weight=9]; 5089 -> 3215[label="",style="solid", color="blue", weight=3]; 5090[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2743 -> 5090[label="",style="solid", color="blue", weight=9]; 5090 -> 3216[label="",style="solid", color="blue", weight=3]; 5091[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2743 -> 5091[label="",style="solid", color="blue", weight=9]; 5091 -> 3217[label="",style="solid", color="blue", weight=3]; 5092[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2743 -> 5092[label="",style="solid", color="blue", weight=9]; 5092 -> 3218[label="",style="solid", color="blue", weight=3]; 5093[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2743 -> 5093[label="",style="solid", color="blue", weight=9]; 5093 -> 3219[label="",style="solid", color="blue", weight=3]; 2744 -> 2178[label="",style="dashed", color="red", weight=0]; 2744[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];2744 -> 3220[label="",style="dashed", color="magenta", weight=3]; 2744 -> 3221[label="",style="dashed", color="magenta", weight=3]; 3005 -> 2173[label="",style="dashed", color="red", weight=0]; 3005[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3005 -> 3222[label="",style="dashed", color="magenta", weight=3]; 3005 -> 3223[label="",style="dashed", color="magenta", weight=3]; 3006 -> 2174[label="",style="dashed", color="red", weight=0]; 3006[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3006 -> 3224[label="",style="dashed", color="magenta", weight=3]; 3006 -> 3225[label="",style="dashed", color="magenta", weight=3]; 3007 -> 2175[label="",style="dashed", color="red", weight=0]; 3007[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3007 -> 3226[label="",style="dashed", color="magenta", weight=3]; 3007 -> 3227[label="",style="dashed", color="magenta", weight=3]; 3008 -> 2176[label="",style="dashed", color="red", weight=0]; 3008[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3008 -> 3228[label="",style="dashed", color="magenta", weight=3]; 3008 -> 3229[label="",style="dashed", color="magenta", weight=3]; 3009 -> 2177[label="",style="dashed", color="red", weight=0]; 3009[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3009 -> 3230[label="",style="dashed", color="magenta", weight=3]; 3009 -> 3231[label="",style="dashed", color="magenta", weight=3]; 3010 -> 2178[label="",style="dashed", color="red", weight=0]; 3010[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3010 -> 3232[label="",style="dashed", color="magenta", weight=3]; 3010 -> 3233[label="",style="dashed", color="magenta", weight=3]; 3011 -> 2179[label="",style="dashed", color="red", weight=0]; 3011[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3011 -> 3234[label="",style="dashed", color="magenta", weight=3]; 3011 -> 3235[label="",style="dashed", color="magenta", weight=3]; 3012 -> 2180[label="",style="dashed", color="red", weight=0]; 3012[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3012 -> 3236[label="",style="dashed", color="magenta", weight=3]; 3012 -> 3237[label="",style="dashed", color="magenta", weight=3]; 3013 -> 2181[label="",style="dashed", color="red", weight=0]; 3013[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3013 -> 3238[label="",style="dashed", color="magenta", weight=3]; 3013 -> 3239[label="",style="dashed", color="magenta", weight=3]; 3014 -> 2182[label="",style="dashed", color="red", weight=0]; 3014[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3014 -> 3240[label="",style="dashed", color="magenta", weight=3]; 3014 -> 3241[label="",style="dashed", color="magenta", weight=3]; 3015 -> 2183[label="",style="dashed", color="red", weight=0]; 3015[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3015 -> 3242[label="",style="dashed", color="magenta", weight=3]; 3015 -> 3243[label="",style="dashed", color="magenta", weight=3]; 3016 -> 2184[label="",style="dashed", color="red", weight=0]; 3016[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3016 -> 3244[label="",style="dashed", color="magenta", weight=3]; 3016 -> 3245[label="",style="dashed", color="magenta", weight=3]; 3017 -> 2185[label="",style="dashed", color="red", weight=0]; 3017[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3017 -> 3246[label="",style="dashed", color="magenta", weight=3]; 3017 -> 3247[label="",style="dashed", color="magenta", weight=3]; 3018 -> 2186[label="",style="dashed", color="red", weight=0]; 3018[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3018 -> 3248[label="",style="dashed", color="magenta", weight=3]; 3018 -> 3249[label="",style="dashed", color="magenta", weight=3]; 3019 -> 2173[label="",style="dashed", color="red", weight=0]; 3019[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3019 -> 3250[label="",style="dashed", color="magenta", weight=3]; 3019 -> 3251[label="",style="dashed", color="magenta", weight=3]; 3020 -> 2174[label="",style="dashed", color="red", weight=0]; 3020[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3020 -> 3252[label="",style="dashed", color="magenta", weight=3]; 3020 -> 3253[label="",style="dashed", color="magenta", weight=3]; 3021 -> 2175[label="",style="dashed", color="red", weight=0]; 3021[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3021 -> 3254[label="",style="dashed", color="magenta", weight=3]; 3021 -> 3255[label="",style="dashed", color="magenta", weight=3]; 3022 -> 2176[label="",style="dashed", color="red", weight=0]; 3022[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3022 -> 3256[label="",style="dashed", color="magenta", weight=3]; 3022 -> 3257[label="",style="dashed", color="magenta", weight=3]; 3023 -> 2177[label="",style="dashed", color="red", weight=0]; 3023[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3023 -> 3258[label="",style="dashed", color="magenta", weight=3]; 3023 -> 3259[label="",style="dashed", color="magenta", weight=3]; 3024 -> 2178[label="",style="dashed", color="red", weight=0]; 3024[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3024 -> 3260[label="",style="dashed", color="magenta", weight=3]; 3024 -> 3261[label="",style="dashed", color="magenta", weight=3]; 3025 -> 2179[label="",style="dashed", color="red", weight=0]; 3025[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3025 -> 3262[label="",style="dashed", color="magenta", weight=3]; 3025 -> 3263[label="",style="dashed", color="magenta", weight=3]; 3026 -> 2180[label="",style="dashed", color="red", weight=0]; 3026[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3026 -> 3264[label="",style="dashed", color="magenta", weight=3]; 3026 -> 3265[label="",style="dashed", color="magenta", weight=3]; 3027 -> 2181[label="",style="dashed", color="red", weight=0]; 3027[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3027 -> 3266[label="",style="dashed", color="magenta", weight=3]; 3027 -> 3267[label="",style="dashed", color="magenta", weight=3]; 3028 -> 2182[label="",style="dashed", color="red", weight=0]; 3028[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3028 -> 3268[label="",style="dashed", color="magenta", weight=3]; 3028 -> 3269[label="",style="dashed", color="magenta", weight=3]; 3029 -> 2183[label="",style="dashed", color="red", weight=0]; 3029[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3029 -> 3270[label="",style="dashed", color="magenta", weight=3]; 3029 -> 3271[label="",style="dashed", color="magenta", weight=3]; 3030 -> 2184[label="",style="dashed", color="red", weight=0]; 3030[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3030 -> 3272[label="",style="dashed", color="magenta", weight=3]; 3030 -> 3273[label="",style="dashed", color="magenta", weight=3]; 3031 -> 2185[label="",style="dashed", color="red", weight=0]; 3031[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3031 -> 3274[label="",style="dashed", color="magenta", weight=3]; 3031 -> 3275[label="",style="dashed", color="magenta", weight=3]; 3032 -> 2186[label="",style="dashed", color="red", weight=0]; 3032[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3032 -> 3276[label="",style="dashed", color="magenta", weight=3]; 3032 -> 3277[label="",style="dashed", color="magenta", weight=3]; 3033 -> 2173[label="",style="dashed", color="red", weight=0]; 3033[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3033 -> 3278[label="",style="dashed", color="magenta", weight=3]; 3033 -> 3279[label="",style="dashed", color="magenta", weight=3]; 3034 -> 2174[label="",style="dashed", color="red", weight=0]; 3034[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3034 -> 3280[label="",style="dashed", color="magenta", weight=3]; 3034 -> 3281[label="",style="dashed", color="magenta", weight=3]; 3035 -> 2175[label="",style="dashed", color="red", weight=0]; 3035[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3035 -> 3282[label="",style="dashed", color="magenta", weight=3]; 3035 -> 3283[label="",style="dashed", color="magenta", weight=3]; 3036 -> 2176[label="",style="dashed", color="red", weight=0]; 3036[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3036 -> 3284[label="",style="dashed", color="magenta", weight=3]; 3036 -> 3285[label="",style="dashed", color="magenta", weight=3]; 3037 -> 2177[label="",style="dashed", color="red", weight=0]; 3037[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3037 -> 3286[label="",style="dashed", color="magenta", weight=3]; 3037 -> 3287[label="",style="dashed", color="magenta", weight=3]; 3038 -> 2178[label="",style="dashed", color="red", weight=0]; 3038[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3038 -> 3288[label="",style="dashed", color="magenta", weight=3]; 3038 -> 3289[label="",style="dashed", color="magenta", weight=3]; 3039 -> 2179[label="",style="dashed", color="red", weight=0]; 3039[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3039 -> 3290[label="",style="dashed", color="magenta", weight=3]; 3039 -> 3291[label="",style="dashed", color="magenta", weight=3]; 3040 -> 2180[label="",style="dashed", color="red", weight=0]; 3040[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3040 -> 3292[label="",style="dashed", color="magenta", weight=3]; 3040 -> 3293[label="",style="dashed", color="magenta", weight=3]; 3041 -> 2181[label="",style="dashed", color="red", weight=0]; 3041[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3041 -> 3294[label="",style="dashed", color="magenta", weight=3]; 3041 -> 3295[label="",style="dashed", color="magenta", weight=3]; 3042 -> 2182[label="",style="dashed", color="red", weight=0]; 3042[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3042 -> 3296[label="",style="dashed", color="magenta", weight=3]; 3042 -> 3297[label="",style="dashed", color="magenta", weight=3]; 3043 -> 2183[label="",style="dashed", color="red", weight=0]; 3043[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3043 -> 3298[label="",style="dashed", color="magenta", weight=3]; 3043 -> 3299[label="",style="dashed", color="magenta", weight=3]; 3044 -> 2184[label="",style="dashed", color="red", weight=0]; 3044[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3044 -> 3300[label="",style="dashed", color="magenta", weight=3]; 3044 -> 3301[label="",style="dashed", color="magenta", weight=3]; 3045 -> 2185[label="",style="dashed", color="red", weight=0]; 3045[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3045 -> 3302[label="",style="dashed", color="magenta", weight=3]; 3045 -> 3303[label="",style="dashed", color="magenta", weight=3]; 3046 -> 2186[label="",style="dashed", color="red", weight=0]; 3046[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3046 -> 3304[label="",style="dashed", color="magenta", weight=3]; 3046 -> 3305[label="",style="dashed", color="magenta", weight=3]; 2745[label="vwx3000 == vwx4000",fontsize=16,color="blue",shape="box"];5094[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2745 -> 5094[label="",style="solid", color="blue", weight=9]; 5094 -> 3306[label="",style="solid", color="blue", weight=3]; 5095[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2745 -> 5095[label="",style="solid", color="blue", weight=9]; 5095 -> 3307[label="",style="solid", color="blue", weight=3]; 2746[label="vwx3001 == vwx4001",fontsize=16,color="blue",shape="box"];5096[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2746 -> 5096[label="",style="solid", color="blue", weight=9]; 5096 -> 3308[label="",style="solid", color="blue", weight=3]; 5097[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2746 -> 5097[label="",style="solid", color="blue", weight=9]; 5097 -> 3309[label="",style="solid", color="blue", weight=3]; 2747[label="vwx3000 == vwx4000",fontsize=16,color="blue",shape="box"];5098[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2747 -> 5098[label="",style="solid", color="blue", weight=9]; 5098 -> 3310[label="",style="solid", color="blue", weight=3]; 5099[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2747 -> 5099[label="",style="solid", color="blue", weight=9]; 5099 -> 3311[label="",style="solid", color="blue", weight=3]; 5100[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2747 -> 5100[label="",style="solid", color="blue", weight=9]; 5100 -> 3312[label="",style="solid", color="blue", weight=3]; 5101[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2747 -> 5101[label="",style="solid", color="blue", weight=9]; 5101 -> 3313[label="",style="solid", color="blue", weight=3]; 5102[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2747 -> 5102[label="",style="solid", color="blue", weight=9]; 5102 -> 3314[label="",style="solid", color="blue", weight=3]; 5103[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2747 -> 5103[label="",style="solid", color="blue", weight=9]; 5103 -> 3315[label="",style="solid", color="blue", weight=3]; 5104[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2747 -> 5104[label="",style="solid", color="blue", weight=9]; 5104 -> 3316[label="",style="solid", color="blue", weight=3]; 5105[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2747 -> 5105[label="",style="solid", color="blue", weight=9]; 5105 -> 3317[label="",style="solid", color="blue", weight=3]; 5106[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2747 -> 5106[label="",style="solid", color="blue", weight=9]; 5106 -> 3318[label="",style="solid", color="blue", weight=3]; 5107[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2747 -> 5107[label="",style="solid", color="blue", weight=9]; 5107 -> 3319[label="",style="solid", color="blue", weight=3]; 5108[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2747 -> 5108[label="",style="solid", color="blue", weight=9]; 5108 -> 3320[label="",style="solid", color="blue", weight=3]; 5109[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2747 -> 5109[label="",style="solid", color="blue", weight=9]; 5109 -> 3321[label="",style="solid", color="blue", weight=3]; 5110[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2747 -> 5110[label="",style="solid", color="blue", weight=9]; 5110 -> 3322[label="",style="solid", color="blue", weight=3]; 5111[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2747 -> 5111[label="",style="solid", color="blue", weight=9]; 5111 -> 3323[label="",style="solid", color="blue", weight=3]; 2748[label="vwx3001 == vwx4001",fontsize=16,color="blue",shape="box"];5112[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2748 -> 5112[label="",style="solid", color="blue", weight=9]; 5112 -> 3324[label="",style="solid", color="blue", weight=3]; 5113[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2748 -> 5113[label="",style="solid", color="blue", weight=9]; 5113 -> 3325[label="",style="solid", color="blue", weight=3]; 5114[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2748 -> 5114[label="",style="solid", color="blue", weight=9]; 5114 -> 3326[label="",style="solid", color="blue", weight=3]; 5115[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2748 -> 5115[label="",style="solid", color="blue", weight=9]; 5115 -> 3327[label="",style="solid", color="blue", weight=3]; 5116[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2748 -> 5116[label="",style="solid", color="blue", weight=9]; 5116 -> 3328[label="",style="solid", color="blue", weight=3]; 5117[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2748 -> 5117[label="",style="solid", color="blue", weight=9]; 5117 -> 3329[label="",style="solid", color="blue", weight=3]; 5118[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2748 -> 5118[label="",style="solid", color="blue", weight=9]; 5118 -> 3330[label="",style="solid", color="blue", weight=3]; 5119[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2748 -> 5119[label="",style="solid", color="blue", weight=9]; 5119 -> 3331[label="",style="solid", color="blue", weight=3]; 5120[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2748 -> 5120[label="",style="solid", color="blue", weight=9]; 5120 -> 3332[label="",style="solid", color="blue", weight=3]; 5121[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2748 -> 5121[label="",style="solid", color="blue", weight=9]; 5121 -> 3333[label="",style="solid", color="blue", weight=3]; 5122[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2748 -> 5122[label="",style="solid", color="blue", weight=9]; 5122 -> 3334[label="",style="solid", color="blue", weight=3]; 5123[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2748 -> 5123[label="",style="solid", color="blue", weight=9]; 5123 -> 3335[label="",style="solid", color="blue", weight=3]; 5124[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2748 -> 5124[label="",style="solid", color="blue", weight=9]; 5124 -> 3336[label="",style="solid", color="blue", weight=3]; 5125[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2748 -> 5125[label="",style="solid", color="blue", weight=9]; 5125 -> 3337[label="",style="solid", color="blue", weight=3]; 3047[label="vwx3000",fontsize=16,color="green",shape="box"];3048[label="vwx4000",fontsize=16,color="green",shape="box"];3049 -> 2175[label="",style="dashed", color="red", weight=0]; 3049[label="vwx3000 * vwx4001 == vwx3001 * vwx4000",fontsize=16,color="magenta"];3049 -> 3338[label="",style="dashed", color="magenta", weight=3]; 3049 -> 3339[label="",style="dashed", color="magenta", weight=3]; 3050[label="vwx174 <= vwx175",fontsize=16,color="black",shape="triangle"];3050 -> 3340[label="",style="solid", color="black", weight=3]; 3051[label="vwx174 <= vwx175",fontsize=16,color="black",shape="triangle"];3051 -> 3341[label="",style="solid", color="black", weight=3]; 3052[label="vwx174 <= vwx175",fontsize=16,color="black",shape="triangle"];3052 -> 3342[label="",style="solid", color="black", weight=3]; 3053[label="vwx174 <= vwx175",fontsize=16,color="burlywood",shape="triangle"];5126[label="vwx174/Left vwx1740",fontsize=10,color="white",style="solid",shape="box"];3053 -> 5126[label="",style="solid", color="burlywood", weight=9]; 5126 -> 3343[label="",style="solid", color="burlywood", weight=3]; 5127[label="vwx174/Right vwx1740",fontsize=10,color="white",style="solid",shape="box"];3053 -> 5127[label="",style="solid", color="burlywood", weight=9]; 5127 -> 3344[label="",style="solid", color="burlywood", weight=3]; 3054[label="vwx174 <= vwx175",fontsize=16,color="burlywood",shape="triangle"];5128[label="vwx174/(vwx1740,vwx1741,vwx1742)",fontsize=10,color="white",style="solid",shape="box"];3054 -> 5128[label="",style="solid", color="burlywood", weight=9]; 5128 -> 3345[label="",style="solid", color="burlywood", weight=3]; 3055[label="vwx174 <= vwx175",fontsize=16,color="burlywood",shape="triangle"];5129[label="vwx174/Nothing",fontsize=10,color="white",style="solid",shape="box"];3055 -> 5129[label="",style="solid", color="burlywood", weight=9]; 5129 -> 3346[label="",style="solid", color="burlywood", weight=3]; 5130[label="vwx174/Just vwx1740",fontsize=10,color="white",style="solid",shape="box"];3055 -> 5130[label="",style="solid", color="burlywood", weight=9]; 5130 -> 3347[label="",style="solid", color="burlywood", weight=3]; 3056 -> 4[label="",style="dashed", color="red", weight=0]; 3056[label="vwx174 <= vwx175",fontsize=16,color="magenta"];3056 -> 3348[label="",style="dashed", color="magenta", weight=3]; 3056 -> 3349[label="",style="dashed", color="magenta", weight=3]; 3057[label="vwx174 <= vwx175",fontsize=16,color="black",shape="triangle"];3057 -> 3350[label="",style="solid", color="black", weight=3]; 3058[label="vwx174 <= vwx175",fontsize=16,color="black",shape="triangle"];3058 -> 3351[label="",style="solid", color="black", weight=3]; 3059[label="vwx174 <= vwx175",fontsize=16,color="burlywood",shape="triangle"];5131[label="vwx174/(vwx1740,vwx1741)",fontsize=10,color="white",style="solid",shape="box"];3059 -> 5131[label="",style="solid", color="burlywood", weight=9]; 5131 -> 3352[label="",style="solid", color="burlywood", weight=3]; 3060[label="vwx174 <= vwx175",fontsize=16,color="black",shape="triangle"];3060 -> 3353[label="",style="solid", color="black", weight=3]; 3061[label="vwx174 <= vwx175",fontsize=16,color="black",shape="triangle"];3061 -> 3354[label="",style="solid", color="black", weight=3]; 3062[label="vwx174 <= vwx175",fontsize=16,color="burlywood",shape="triangle"];5132[label="vwx174/LT",fontsize=10,color="white",style="solid",shape="box"];3062 -> 5132[label="",style="solid", color="burlywood", weight=9]; 5132 -> 3355[label="",style="solid", color="burlywood", weight=3]; 5133[label="vwx174/EQ",fontsize=10,color="white",style="solid",shape="box"];3062 -> 5133[label="",style="solid", color="burlywood", weight=9]; 5133 -> 3356[label="",style="solid", color="burlywood", weight=3]; 5134[label="vwx174/GT",fontsize=10,color="white",style="solid",shape="box"];3062 -> 5134[label="",style="solid", color="burlywood", weight=9]; 5134 -> 3357[label="",style="solid", color="burlywood", weight=3]; 3063[label="vwx174 <= vwx175",fontsize=16,color="burlywood",shape="triangle"];5135[label="vwx174/False",fontsize=10,color="white",style="solid",shape="box"];3063 -> 5135[label="",style="solid", color="burlywood", weight=9]; 5135 -> 3358[label="",style="solid", color="burlywood", weight=3]; 5136[label="vwx174/True",fontsize=10,color="white",style="solid",shape="box"];3063 -> 5136[label="",style="solid", color="burlywood", weight=9]; 5136 -> 3359[label="",style="solid", color="burlywood", weight=3]; 3064[label="compare0 (Left vwx254) (Left vwx255) otherwise",fontsize=16,color="black",shape="box"];3064 -> 3360[label="",style="solid", color="black", weight=3]; 3065[label="LT",fontsize=16,color="green",shape="box"];3066 -> 3050[label="",style="dashed", color="red", weight=0]; 3066[label="vwx181 <= vwx182",fontsize=16,color="magenta"];3066 -> 3361[label="",style="dashed", color="magenta", weight=3]; 3066 -> 3362[label="",style="dashed", color="magenta", weight=3]; 3067 -> 3051[label="",style="dashed", color="red", weight=0]; 3067[label="vwx181 <= vwx182",fontsize=16,color="magenta"];3067 -> 3363[label="",style="dashed", color="magenta", weight=3]; 3067 -> 3364[label="",style="dashed", color="magenta", weight=3]; 3068 -> 3052[label="",style="dashed", color="red", weight=0]; 3068[label="vwx181 <= vwx182",fontsize=16,color="magenta"];3068 -> 3365[label="",style="dashed", color="magenta", weight=3]; 3068 -> 3366[label="",style="dashed", color="magenta", weight=3]; 3069 -> 3053[label="",style="dashed", color="red", weight=0]; 3069[label="vwx181 <= vwx182",fontsize=16,color="magenta"];3069 -> 3367[label="",style="dashed", color="magenta", weight=3]; 3069 -> 3368[label="",style="dashed", color="magenta", weight=3]; 3070 -> 3054[label="",style="dashed", color="red", weight=0]; 3070[label="vwx181 <= vwx182",fontsize=16,color="magenta"];3070 -> 3369[label="",style="dashed", color="magenta", weight=3]; 3070 -> 3370[label="",style="dashed", color="magenta", weight=3]; 3071 -> 3055[label="",style="dashed", color="red", weight=0]; 3071[label="vwx181 <= vwx182",fontsize=16,color="magenta"];3071 -> 3371[label="",style="dashed", color="magenta", weight=3]; 3071 -> 3372[label="",style="dashed", color="magenta", weight=3]; 3072 -> 4[label="",style="dashed", color="red", weight=0]; 3072[label="vwx181 <= vwx182",fontsize=16,color="magenta"];3072 -> 3373[label="",style="dashed", color="magenta", weight=3]; 3072 -> 3374[label="",style="dashed", color="magenta", weight=3]; 3073 -> 3057[label="",style="dashed", color="red", weight=0]; 3073[label="vwx181 <= vwx182",fontsize=16,color="magenta"];3073 -> 3375[label="",style="dashed", color="magenta", weight=3]; 3073 -> 3376[label="",style="dashed", color="magenta", weight=3]; 3074 -> 3058[label="",style="dashed", color="red", weight=0]; 3074[label="vwx181 <= vwx182",fontsize=16,color="magenta"];3074 -> 3377[label="",style="dashed", color="magenta", weight=3]; 3074 -> 3378[label="",style="dashed", color="magenta", weight=3]; 3075 -> 3059[label="",style="dashed", color="red", weight=0]; 3075[label="vwx181 <= vwx182",fontsize=16,color="magenta"];3075 -> 3379[label="",style="dashed", color="magenta", weight=3]; 3075 -> 3380[label="",style="dashed", color="magenta", weight=3]; 3076 -> 3060[label="",style="dashed", color="red", weight=0]; 3076[label="vwx181 <= vwx182",fontsize=16,color="magenta"];3076 -> 3381[label="",style="dashed", color="magenta", weight=3]; 3076 -> 3382[label="",style="dashed", color="magenta", weight=3]; 3077 -> 3061[label="",style="dashed", color="red", weight=0]; 3077[label="vwx181 <= vwx182",fontsize=16,color="magenta"];3077 -> 3383[label="",style="dashed", color="magenta", weight=3]; 3077 -> 3384[label="",style="dashed", color="magenta", weight=3]; 3078 -> 3062[label="",style="dashed", color="red", weight=0]; 3078[label="vwx181 <= vwx182",fontsize=16,color="magenta"];3078 -> 3385[label="",style="dashed", color="magenta", weight=3]; 3078 -> 3386[label="",style="dashed", color="magenta", weight=3]; 3079 -> 3063[label="",style="dashed", color="red", weight=0]; 3079[label="vwx181 <= vwx182",fontsize=16,color="magenta"];3079 -> 3387[label="",style="dashed", color="magenta", weight=3]; 3079 -> 3388[label="",style="dashed", color="magenta", weight=3]; 3080[label="compare0 (Right vwx261) (Right vwx262) otherwise",fontsize=16,color="black",shape="box"];3080 -> 3389[label="",style="solid", color="black", weight=3]; 3081[label="LT",fontsize=16,color="green",shape="box"];3101[label="vwx225 == vwx228",fontsize=16,color="blue",shape="box"];5137[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3101 -> 5137[label="",style="solid", color="blue", weight=9]; 5137 -> 3390[label="",style="solid", color="blue", weight=3]; 5138[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3101 -> 5138[label="",style="solid", color="blue", weight=9]; 5138 -> 3391[label="",style="solid", color="blue", weight=3]; 5139[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3101 -> 5139[label="",style="solid", color="blue", weight=9]; 5139 -> 3392[label="",style="solid", color="blue", weight=3]; 5140[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3101 -> 5140[label="",style="solid", color="blue", weight=9]; 5140 -> 3393[label="",style="solid", color="blue", weight=3]; 5141[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3101 -> 5141[label="",style="solid", color="blue", weight=9]; 5141 -> 3394[label="",style="solid", color="blue", weight=3]; 5142[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3101 -> 5142[label="",style="solid", color="blue", weight=9]; 5142 -> 3395[label="",style="solid", color="blue", weight=3]; 5143[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3101 -> 5143[label="",style="solid", color="blue", weight=9]; 5143 -> 3396[label="",style="solid", color="blue", weight=3]; 5144[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3101 -> 5144[label="",style="solid", color="blue", weight=9]; 5144 -> 3397[label="",style="solid", color="blue", weight=3]; 5145[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3101 -> 5145[label="",style="solid", color="blue", weight=9]; 5145 -> 3398[label="",style="solid", color="blue", weight=3]; 5146[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3101 -> 5146[label="",style="solid", color="blue", weight=9]; 5146 -> 3399[label="",style="solid", color="blue", weight=3]; 5147[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3101 -> 5147[label="",style="solid", color="blue", weight=9]; 5147 -> 3400[label="",style="solid", color="blue", weight=3]; 5148[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3101 -> 5148[label="",style="solid", color="blue", weight=9]; 5148 -> 3401[label="",style="solid", color="blue", weight=3]; 5149[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3101 -> 5149[label="",style="solid", color="blue", weight=9]; 5149 -> 3402[label="",style="solid", color="blue", weight=3]; 5150[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3101 -> 5150[label="",style="solid", color="blue", weight=9]; 5150 -> 3403[label="",style="solid", color="blue", weight=3]; 3102 -> 3747[label="",style="dashed", color="red", weight=0]; 3102[label="vwx226 < vwx229 || vwx226 == vwx229 && vwx227 <= vwx230",fontsize=16,color="magenta"];3102 -> 3748[label="",style="dashed", color="magenta", weight=3]; 3102 -> 3749[label="",style="dashed", color="magenta", weight=3]; 3103[label="vwx225 < vwx228",fontsize=16,color="black",shape="triangle"];3103 -> 3406[label="",style="solid", color="black", weight=3]; 3104[label="vwx225 < vwx228",fontsize=16,color="black",shape="triangle"];3104 -> 3407[label="",style="solid", color="black", weight=3]; 3105[label="vwx225 < vwx228",fontsize=16,color="black",shape="triangle"];3105 -> 3408[label="",style="solid", color="black", weight=3]; 3106[label="vwx225 < vwx228",fontsize=16,color="black",shape="triangle"];3106 -> 3409[label="",style="solid", color="black", weight=3]; 3107[label="vwx225 < vwx228",fontsize=16,color="black",shape="triangle"];3107 -> 3410[label="",style="solid", color="black", weight=3]; 3108[label="vwx225 < vwx228",fontsize=16,color="black",shape="triangle"];3108 -> 3411[label="",style="solid", color="black", weight=3]; 3109[label="vwx225 < vwx228",fontsize=16,color="black",shape="triangle"];3109 -> 3412[label="",style="solid", color="black", weight=3]; 3110[label="vwx225 < vwx228",fontsize=16,color="black",shape="triangle"];3110 -> 3413[label="",style="solid", color="black", weight=3]; 3111[label="vwx225 < vwx228",fontsize=16,color="black",shape="triangle"];3111 -> 3414[label="",style="solid", color="black", weight=3]; 3112[label="vwx225 < vwx228",fontsize=16,color="black",shape="triangle"];3112 -> 3415[label="",style="solid", color="black", weight=3]; 3113[label="vwx225 < vwx228",fontsize=16,color="black",shape="triangle"];3113 -> 3416[label="",style="solid", color="black", weight=3]; 3114[label="vwx225 < vwx228",fontsize=16,color="black",shape="triangle"];3114 -> 3417[label="",style="solid", color="black", weight=3]; 3115[label="vwx225 < vwx228",fontsize=16,color="black",shape="triangle"];3115 -> 3418[label="",style="solid", color="black", weight=3]; 3116[label="vwx225 < vwx228",fontsize=16,color="black",shape="triangle"];3116 -> 3419[label="",style="solid", color="black", weight=3]; 3117[label="compare1 (vwx290,vwx291,vwx292) (vwx293,vwx294,vwx295) (False || vwx297)",fontsize=16,color="black",shape="box"];3117 -> 3420[label="",style="solid", color="black", weight=3]; 3118[label="compare1 (vwx290,vwx291,vwx292) (vwx293,vwx294,vwx295) (True || vwx297)",fontsize=16,color="black",shape="box"];3118 -> 3421[label="",style="solid", color="black", weight=3]; 3119 -> 3050[label="",style="dashed", color="red", weight=0]; 3119[label="vwx203 <= vwx204",fontsize=16,color="magenta"];3119 -> 3422[label="",style="dashed", color="magenta", weight=3]; 3119 -> 3423[label="",style="dashed", color="magenta", weight=3]; 3120 -> 3051[label="",style="dashed", color="red", weight=0]; 3120[label="vwx203 <= vwx204",fontsize=16,color="magenta"];3120 -> 3424[label="",style="dashed", color="magenta", weight=3]; 3120 -> 3425[label="",style="dashed", color="magenta", weight=3]; 3121 -> 3052[label="",style="dashed", color="red", weight=0]; 3121[label="vwx203 <= vwx204",fontsize=16,color="magenta"];3121 -> 3426[label="",style="dashed", color="magenta", weight=3]; 3121 -> 3427[label="",style="dashed", color="magenta", weight=3]; 3122 -> 3053[label="",style="dashed", color="red", weight=0]; 3122[label="vwx203 <= vwx204",fontsize=16,color="magenta"];3122 -> 3428[label="",style="dashed", color="magenta", weight=3]; 3122 -> 3429[label="",style="dashed", color="magenta", weight=3]; 3123 -> 3054[label="",style="dashed", color="red", weight=0]; 3123[label="vwx203 <= vwx204",fontsize=16,color="magenta"];3123 -> 3430[label="",style="dashed", color="magenta", weight=3]; 3123 -> 3431[label="",style="dashed", color="magenta", weight=3]; 3124 -> 3055[label="",style="dashed", color="red", weight=0]; 3124[label="vwx203 <= vwx204",fontsize=16,color="magenta"];3124 -> 3432[label="",style="dashed", color="magenta", weight=3]; 3124 -> 3433[label="",style="dashed", color="magenta", weight=3]; 3125 -> 4[label="",style="dashed", color="red", weight=0]; 3125[label="vwx203 <= vwx204",fontsize=16,color="magenta"];3125 -> 3434[label="",style="dashed", color="magenta", weight=3]; 3125 -> 3435[label="",style="dashed", color="magenta", weight=3]; 3126 -> 3057[label="",style="dashed", color="red", weight=0]; 3126[label="vwx203 <= vwx204",fontsize=16,color="magenta"];3126 -> 3436[label="",style="dashed", color="magenta", weight=3]; 3126 -> 3437[label="",style="dashed", color="magenta", weight=3]; 3127 -> 3058[label="",style="dashed", color="red", weight=0]; 3127[label="vwx203 <= vwx204",fontsize=16,color="magenta"];3127 -> 3438[label="",style="dashed", color="magenta", weight=3]; 3127 -> 3439[label="",style="dashed", color="magenta", weight=3]; 3128 -> 3059[label="",style="dashed", color="red", weight=0]; 3128[label="vwx203 <= vwx204",fontsize=16,color="magenta"];3128 -> 3440[label="",style="dashed", color="magenta", weight=3]; 3128 -> 3441[label="",style="dashed", color="magenta", weight=3]; 3129 -> 3060[label="",style="dashed", color="red", weight=0]; 3129[label="vwx203 <= vwx204",fontsize=16,color="magenta"];3129 -> 3442[label="",style="dashed", color="magenta", weight=3]; 3129 -> 3443[label="",style="dashed", color="magenta", weight=3]; 3130 -> 3061[label="",style="dashed", color="red", weight=0]; 3130[label="vwx203 <= vwx204",fontsize=16,color="magenta"];3130 -> 3444[label="",style="dashed", color="magenta", weight=3]; 3130 -> 3445[label="",style="dashed", color="magenta", weight=3]; 3131 -> 3062[label="",style="dashed", color="red", weight=0]; 3131[label="vwx203 <= vwx204",fontsize=16,color="magenta"];3131 -> 3446[label="",style="dashed", color="magenta", weight=3]; 3131 -> 3447[label="",style="dashed", color="magenta", weight=3]; 3132 -> 3063[label="",style="dashed", color="red", weight=0]; 3132[label="vwx203 <= vwx204",fontsize=16,color="magenta"];3132 -> 3448[label="",style="dashed", color="magenta", weight=3]; 3132 -> 3449[label="",style="dashed", color="magenta", weight=3]; 3133[label="compare0 (Just vwx275) (Just vwx276) otherwise",fontsize=16,color="black",shape="box"];3133 -> 3450[label="",style="solid", color="black", weight=3]; 3134[label="LT",fontsize=16,color="green",shape="box"];3150[label="vwx238 == vwx240",fontsize=16,color="blue",shape="box"];5151[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3150 -> 5151[label="",style="solid", color="blue", weight=9]; 5151 -> 3451[label="",style="solid", color="blue", weight=3]; 5152[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3150 -> 5152[label="",style="solid", color="blue", weight=9]; 5152 -> 3452[label="",style="solid", color="blue", weight=3]; 5153[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3150 -> 5153[label="",style="solid", color="blue", weight=9]; 5153 -> 3453[label="",style="solid", color="blue", weight=3]; 5154[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3150 -> 5154[label="",style="solid", color="blue", weight=9]; 5154 -> 3454[label="",style="solid", color="blue", weight=3]; 5155[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3150 -> 5155[label="",style="solid", color="blue", weight=9]; 5155 -> 3455[label="",style="solid", color="blue", weight=3]; 5156[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3150 -> 5156[label="",style="solid", color="blue", weight=9]; 5156 -> 3456[label="",style="solid", color="blue", weight=3]; 5157[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3150 -> 5157[label="",style="solid", color="blue", weight=9]; 5157 -> 3457[label="",style="solid", color="blue", weight=3]; 5158[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3150 -> 5158[label="",style="solid", color="blue", weight=9]; 5158 -> 3458[label="",style="solid", color="blue", weight=3]; 5159[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3150 -> 5159[label="",style="solid", color="blue", weight=9]; 5159 -> 3459[label="",style="solid", color="blue", weight=3]; 5160[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3150 -> 5160[label="",style="solid", color="blue", weight=9]; 5160 -> 3460[label="",style="solid", color="blue", weight=3]; 5161[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3150 -> 5161[label="",style="solid", color="blue", weight=9]; 5161 -> 3461[label="",style="solid", color="blue", weight=3]; 5162[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3150 -> 5162[label="",style="solid", color="blue", weight=9]; 5162 -> 3462[label="",style="solid", color="blue", weight=3]; 5163[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3150 -> 5163[label="",style="solid", color="blue", weight=9]; 5163 -> 3463[label="",style="solid", color="blue", weight=3]; 5164[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3150 -> 5164[label="",style="solid", color="blue", weight=9]; 5164 -> 3464[label="",style="solid", color="blue", weight=3]; 3151[label="vwx239 <= vwx241",fontsize=16,color="blue",shape="box"];5165[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3151 -> 5165[label="",style="solid", color="blue", weight=9]; 5165 -> 3465[label="",style="solid", color="blue", weight=3]; 5166[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3151 -> 5166[label="",style="solid", color="blue", weight=9]; 5166 -> 3466[label="",style="solid", color="blue", weight=3]; 5167[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3151 -> 5167[label="",style="solid", color="blue", weight=9]; 5167 -> 3467[label="",style="solid", color="blue", weight=3]; 5168[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3151 -> 5168[label="",style="solid", color="blue", weight=9]; 5168 -> 3468[label="",style="solid", color="blue", weight=3]; 5169[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3151 -> 5169[label="",style="solid", color="blue", weight=9]; 5169 -> 3469[label="",style="solid", color="blue", weight=3]; 5170[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3151 -> 5170[label="",style="solid", color="blue", weight=9]; 5170 -> 3470[label="",style="solid", color="blue", weight=3]; 5171[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3151 -> 5171[label="",style="solid", color="blue", weight=9]; 5171 -> 3471[label="",style="solid", color="blue", weight=3]; 5172[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3151 -> 5172[label="",style="solid", color="blue", weight=9]; 5172 -> 3472[label="",style="solid", color="blue", weight=3]; 5173[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3151 -> 5173[label="",style="solid", color="blue", weight=9]; 5173 -> 3473[label="",style="solid", color="blue", weight=3]; 5174[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3151 -> 5174[label="",style="solid", color="blue", weight=9]; 5174 -> 3474[label="",style="solid", color="blue", weight=3]; 5175[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3151 -> 5175[label="",style="solid", color="blue", weight=9]; 5175 -> 3475[label="",style="solid", color="blue", weight=3]; 5176[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3151 -> 5176[label="",style="solid", color="blue", weight=9]; 5176 -> 3476[label="",style="solid", color="blue", weight=3]; 5177[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3151 -> 5177[label="",style="solid", color="blue", weight=9]; 5177 -> 3477[label="",style="solid", color="blue", weight=3]; 5178[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3151 -> 5178[label="",style="solid", color="blue", weight=9]; 5178 -> 3478[label="",style="solid", color="blue", weight=3]; 3152 -> 3103[label="",style="dashed", color="red", weight=0]; 3152[label="vwx238 < vwx240",fontsize=16,color="magenta"];3152 -> 3479[label="",style="dashed", color="magenta", weight=3]; 3152 -> 3480[label="",style="dashed", color="magenta", weight=3]; 3153 -> 3104[label="",style="dashed", color="red", weight=0]; 3153[label="vwx238 < vwx240",fontsize=16,color="magenta"];3153 -> 3481[label="",style="dashed", color="magenta", weight=3]; 3153 -> 3482[label="",style="dashed", color="magenta", weight=3]; 3154 -> 3105[label="",style="dashed", color="red", weight=0]; 3154[label="vwx238 < vwx240",fontsize=16,color="magenta"];3154 -> 3483[label="",style="dashed", color="magenta", weight=3]; 3154 -> 3484[label="",style="dashed", color="magenta", weight=3]; 3155 -> 3106[label="",style="dashed", color="red", weight=0]; 3155[label="vwx238 < vwx240",fontsize=16,color="magenta"];3155 -> 3485[label="",style="dashed", color="magenta", weight=3]; 3155 -> 3486[label="",style="dashed", color="magenta", weight=3]; 3156 -> 3107[label="",style="dashed", color="red", weight=0]; 3156[label="vwx238 < vwx240",fontsize=16,color="magenta"];3156 -> 3487[label="",style="dashed", color="magenta", weight=3]; 3156 -> 3488[label="",style="dashed", color="magenta", weight=3]; 3157 -> 3108[label="",style="dashed", color="red", weight=0]; 3157[label="vwx238 < vwx240",fontsize=16,color="magenta"];3157 -> 3489[label="",style="dashed", color="magenta", weight=3]; 3157 -> 3490[label="",style="dashed", color="magenta", weight=3]; 3158 -> 3109[label="",style="dashed", color="red", weight=0]; 3158[label="vwx238 < vwx240",fontsize=16,color="magenta"];3158 -> 3491[label="",style="dashed", color="magenta", weight=3]; 3158 -> 3492[label="",style="dashed", color="magenta", weight=3]; 3159 -> 3110[label="",style="dashed", color="red", weight=0]; 3159[label="vwx238 < vwx240",fontsize=16,color="magenta"];3159 -> 3493[label="",style="dashed", color="magenta", weight=3]; 3159 -> 3494[label="",style="dashed", color="magenta", weight=3]; 3160 -> 3111[label="",style="dashed", color="red", weight=0]; 3160[label="vwx238 < vwx240",fontsize=16,color="magenta"];3160 -> 3495[label="",style="dashed", color="magenta", weight=3]; 3160 -> 3496[label="",style="dashed", color="magenta", weight=3]; 3161 -> 3112[label="",style="dashed", color="red", weight=0]; 3161[label="vwx238 < vwx240",fontsize=16,color="magenta"];3161 -> 3497[label="",style="dashed", color="magenta", weight=3]; 3161 -> 3498[label="",style="dashed", color="magenta", weight=3]; 3162 -> 3113[label="",style="dashed", color="red", weight=0]; 3162[label="vwx238 < vwx240",fontsize=16,color="magenta"];3162 -> 3499[label="",style="dashed", color="magenta", weight=3]; 3162 -> 3500[label="",style="dashed", color="magenta", weight=3]; 3163 -> 3114[label="",style="dashed", color="red", weight=0]; 3163[label="vwx238 < vwx240",fontsize=16,color="magenta"];3163 -> 3501[label="",style="dashed", color="magenta", weight=3]; 3163 -> 3502[label="",style="dashed", color="magenta", weight=3]; 3164 -> 3115[label="",style="dashed", color="red", weight=0]; 3164[label="vwx238 < vwx240",fontsize=16,color="magenta"];3164 -> 3503[label="",style="dashed", color="magenta", weight=3]; 3164 -> 3504[label="",style="dashed", color="magenta", weight=3]; 3165 -> 3116[label="",style="dashed", color="red", weight=0]; 3165[label="vwx238 < vwx240",fontsize=16,color="magenta"];3165 -> 3505[label="",style="dashed", color="magenta", weight=3]; 3165 -> 3506[label="",style="dashed", color="magenta", weight=3]; 3166[label="compare1 (vwx305,vwx306) (vwx307,vwx308) (False || vwx310)",fontsize=16,color="black",shape="box"];3166 -> 3507[label="",style="solid", color="black", weight=3]; 3167[label="compare1 (vwx305,vwx306) (vwx307,vwx308) (True || vwx310)",fontsize=16,color="black",shape="box"];3167 -> 3508[label="",style="solid", color="black", weight=3]; 3168[label="primMulNat (Succ vwx30000) (Succ vwx40100)",fontsize=16,color="black",shape="box"];3168 -> 3509[label="",style="solid", color="black", weight=3]; 3169[label="primMulNat (Succ vwx30000) Zero",fontsize=16,color="black",shape="box"];3169 -> 3510[label="",style="solid", color="black", weight=3]; 3170[label="primMulNat Zero (Succ vwx40100)",fontsize=16,color="black",shape="box"];3170 -> 3511[label="",style="solid", color="black", weight=3]; 3171[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];3171 -> 3512[label="",style="solid", color="black", weight=3]; 3172 -> 2173[label="",style="dashed", color="red", weight=0]; 3172[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3172 -> 3513[label="",style="dashed", color="magenta", weight=3]; 3172 -> 3514[label="",style="dashed", color="magenta", weight=3]; 3173 -> 2174[label="",style="dashed", color="red", weight=0]; 3173[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3173 -> 3515[label="",style="dashed", color="magenta", weight=3]; 3173 -> 3516[label="",style="dashed", color="magenta", weight=3]; 3174 -> 2175[label="",style="dashed", color="red", weight=0]; 3174[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3174 -> 3517[label="",style="dashed", color="magenta", weight=3]; 3174 -> 3518[label="",style="dashed", color="magenta", weight=3]; 3175 -> 2176[label="",style="dashed", color="red", weight=0]; 3175[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3175 -> 3519[label="",style="dashed", color="magenta", weight=3]; 3175 -> 3520[label="",style="dashed", color="magenta", weight=3]; 3176 -> 2177[label="",style="dashed", color="red", weight=0]; 3176[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3176 -> 3521[label="",style="dashed", color="magenta", weight=3]; 3176 -> 3522[label="",style="dashed", color="magenta", weight=3]; 3177 -> 2178[label="",style="dashed", color="red", weight=0]; 3177[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3177 -> 3523[label="",style="dashed", color="magenta", weight=3]; 3177 -> 3524[label="",style="dashed", color="magenta", weight=3]; 3178 -> 2179[label="",style="dashed", color="red", weight=0]; 3178[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3178 -> 3525[label="",style="dashed", color="magenta", weight=3]; 3178 -> 3526[label="",style="dashed", color="magenta", weight=3]; 3179 -> 2180[label="",style="dashed", color="red", weight=0]; 3179[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3179 -> 3527[label="",style="dashed", color="magenta", weight=3]; 3179 -> 3528[label="",style="dashed", color="magenta", weight=3]; 3180 -> 2181[label="",style="dashed", color="red", weight=0]; 3180[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3180 -> 3529[label="",style="dashed", color="magenta", weight=3]; 3180 -> 3530[label="",style="dashed", color="magenta", weight=3]; 3181 -> 2182[label="",style="dashed", color="red", weight=0]; 3181[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3181 -> 3531[label="",style="dashed", color="magenta", weight=3]; 3181 -> 3532[label="",style="dashed", color="magenta", weight=3]; 3182 -> 2183[label="",style="dashed", color="red", weight=0]; 3182[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3182 -> 3533[label="",style="dashed", color="magenta", weight=3]; 3182 -> 3534[label="",style="dashed", color="magenta", weight=3]; 3183 -> 2184[label="",style="dashed", color="red", weight=0]; 3183[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3183 -> 3535[label="",style="dashed", color="magenta", weight=3]; 3183 -> 3536[label="",style="dashed", color="magenta", weight=3]; 3184 -> 2185[label="",style="dashed", color="red", weight=0]; 3184[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3184 -> 3537[label="",style="dashed", color="magenta", weight=3]; 3184 -> 3538[label="",style="dashed", color="magenta", weight=3]; 3185 -> 2186[label="",style="dashed", color="red", weight=0]; 3185[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3185 -> 3539[label="",style="dashed", color="magenta", weight=3]; 3185 -> 3540[label="",style="dashed", color="magenta", weight=3]; 3186[label="vwx3001 == vwx4001",fontsize=16,color="blue",shape="box"];5179[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3186 -> 5179[label="",style="solid", color="blue", weight=9]; 5179 -> 3541[label="",style="solid", color="blue", weight=3]; 5180[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3186 -> 5180[label="",style="solid", color="blue", weight=9]; 5180 -> 3542[label="",style="solid", color="blue", weight=3]; 5181[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3186 -> 5181[label="",style="solid", color="blue", weight=9]; 5181 -> 3543[label="",style="solid", color="blue", weight=3]; 5182[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3186 -> 5182[label="",style="solid", color="blue", weight=9]; 5182 -> 3544[label="",style="solid", color="blue", weight=3]; 5183[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3186 -> 5183[label="",style="solid", color="blue", weight=9]; 5183 -> 3545[label="",style="solid", color="blue", weight=3]; 5184[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3186 -> 5184[label="",style="solid", color="blue", weight=9]; 5184 -> 3546[label="",style="solid", color="blue", weight=3]; 5185[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3186 -> 5185[label="",style="solid", color="blue", weight=9]; 5185 -> 3547[label="",style="solid", color="blue", weight=3]; 5186[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3186 -> 5186[label="",style="solid", color="blue", weight=9]; 5186 -> 3548[label="",style="solid", color="blue", weight=3]; 5187[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3186 -> 5187[label="",style="solid", color="blue", weight=9]; 5187 -> 3549[label="",style="solid", color="blue", weight=3]; 5188[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3186 -> 5188[label="",style="solid", color="blue", weight=9]; 5188 -> 3550[label="",style="solid", color="blue", weight=3]; 5189[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3186 -> 5189[label="",style="solid", color="blue", weight=9]; 5189 -> 3551[label="",style="solid", color="blue", weight=3]; 5190[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3186 -> 5190[label="",style="solid", color="blue", weight=9]; 5190 -> 3552[label="",style="solid", color="blue", weight=3]; 5191[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3186 -> 5191[label="",style="solid", color="blue", weight=9]; 5191 -> 3553[label="",style="solid", color="blue", weight=3]; 5192[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3186 -> 5192[label="",style="solid", color="blue", weight=9]; 5192 -> 3554[label="",style="solid", color="blue", weight=3]; 3187[label="vwx3002 == vwx4002",fontsize=16,color="blue",shape="box"];5193[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3187 -> 5193[label="",style="solid", color="blue", weight=9]; 5193 -> 3555[label="",style="solid", color="blue", weight=3]; 5194[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3187 -> 5194[label="",style="solid", color="blue", weight=9]; 5194 -> 3556[label="",style="solid", color="blue", weight=3]; 5195[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3187 -> 5195[label="",style="solid", color="blue", weight=9]; 5195 -> 3557[label="",style="solid", color="blue", weight=3]; 5196[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3187 -> 5196[label="",style="solid", color="blue", weight=9]; 5196 -> 3558[label="",style="solid", color="blue", weight=3]; 5197[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3187 -> 5197[label="",style="solid", color="blue", weight=9]; 5197 -> 3559[label="",style="solid", color="blue", weight=3]; 5198[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3187 -> 5198[label="",style="solid", color="blue", weight=9]; 5198 -> 3560[label="",style="solid", color="blue", weight=3]; 5199[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3187 -> 5199[label="",style="solid", color="blue", weight=9]; 5199 -> 3561[label="",style="solid", color="blue", weight=3]; 5200[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3187 -> 5200[label="",style="solid", color="blue", weight=9]; 5200 -> 3562[label="",style="solid", color="blue", weight=3]; 5201[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3187 -> 5201[label="",style="solid", color="blue", weight=9]; 5201 -> 3563[label="",style="solid", color="blue", weight=3]; 5202[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3187 -> 5202[label="",style="solid", color="blue", weight=9]; 5202 -> 3564[label="",style="solid", color="blue", weight=3]; 5203[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3187 -> 5203[label="",style="solid", color="blue", weight=9]; 5203 -> 3565[label="",style="solid", color="blue", weight=3]; 5204[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3187 -> 5204[label="",style="solid", color="blue", weight=9]; 5204 -> 3566[label="",style="solid", color="blue", weight=3]; 5205[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3187 -> 5205[label="",style="solid", color="blue", weight=9]; 5205 -> 3567[label="",style="solid", color="blue", weight=3]; 5206[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3187 -> 5206[label="",style="solid", color="blue", weight=9]; 5206 -> 3568[label="",style="solid", color="blue", weight=3]; 3188[label="primEqInt (Pos (Succ vwx30000)) (Pos (Succ vwx40000))",fontsize=16,color="black",shape="box"];3188 -> 3569[label="",style="solid", color="black", weight=3]; 3189[label="primEqInt (Pos (Succ vwx30000)) (Pos Zero)",fontsize=16,color="black",shape="box"];3189 -> 3570[label="",style="solid", color="black", weight=3]; 3190[label="False",fontsize=16,color="green",shape="box"];3191[label="primEqInt (Pos Zero) (Pos (Succ vwx40000))",fontsize=16,color="black",shape="box"];3191 -> 3571[label="",style="solid", color="black", weight=3]; 3192[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];3192 -> 3572[label="",style="solid", color="black", weight=3]; 3193[label="primEqInt (Pos Zero) (Neg (Succ vwx40000))",fontsize=16,color="black",shape="box"];3193 -> 3573[label="",style="solid", color="black", weight=3]; 3194[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];3194 -> 3574[label="",style="solid", color="black", weight=3]; 3195[label="False",fontsize=16,color="green",shape="box"];3196[label="primEqInt (Neg (Succ vwx30000)) (Neg (Succ vwx40000))",fontsize=16,color="black",shape="box"];3196 -> 3575[label="",style="solid", color="black", weight=3]; 3197[label="primEqInt (Neg (Succ vwx30000)) (Neg Zero)",fontsize=16,color="black",shape="box"];3197 -> 3576[label="",style="solid", color="black", weight=3]; 3198[label="primEqInt (Neg Zero) (Pos (Succ vwx40000))",fontsize=16,color="black",shape="box"];3198 -> 3577[label="",style="solid", color="black", weight=3]; 3199[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];3199 -> 3578[label="",style="solid", color="black", weight=3]; 3200[label="primEqInt (Neg Zero) (Neg (Succ vwx40000))",fontsize=16,color="black",shape="box"];3200 -> 3579[label="",style="solid", color="black", weight=3]; 3201[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];3201 -> 3580[label="",style="solid", color="black", weight=3]; 3202 -> 2031[label="",style="dashed", color="red", weight=0]; 3202[label="vwx3000 * vwx4001",fontsize=16,color="magenta"];3202 -> 3581[label="",style="dashed", color="magenta", weight=3]; 3202 -> 3582[label="",style="dashed", color="magenta", weight=3]; 3203 -> 2031[label="",style="dashed", color="red", weight=0]; 3203[label="vwx3001 * vwx4000",fontsize=16,color="magenta"];3203 -> 3583[label="",style="dashed", color="magenta", weight=3]; 3203 -> 3584[label="",style="dashed", color="magenta", weight=3]; 3204[label="primEqNat (Succ vwx30000) vwx4000",fontsize=16,color="burlywood",shape="box"];5207[label="vwx4000/Succ vwx40000",fontsize=10,color="white",style="solid",shape="box"];3204 -> 5207[label="",style="solid", color="burlywood", weight=9]; 5207 -> 3585[label="",style="solid", color="burlywood", weight=3]; 5208[label="vwx4000/Zero",fontsize=10,color="white",style="solid",shape="box"];3204 -> 5208[label="",style="solid", color="burlywood", weight=9]; 5208 -> 3586[label="",style="solid", color="burlywood", weight=3]; 3205[label="primEqNat Zero vwx4000",fontsize=16,color="burlywood",shape="box"];5209[label="vwx4000/Succ vwx40000",fontsize=10,color="white",style="solid",shape="box"];3205 -> 5209[label="",style="solid", color="burlywood", weight=9]; 5209 -> 3587[label="",style="solid", color="burlywood", weight=3]; 5210[label="vwx4000/Zero",fontsize=10,color="white",style="solid",shape="box"];3205 -> 5210[label="",style="solid", color="burlywood", weight=9]; 5210 -> 3588[label="",style="solid", color="burlywood", weight=3]; 3206 -> 2173[label="",style="dashed", color="red", weight=0]; 3206[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3206 -> 3589[label="",style="dashed", color="magenta", weight=3]; 3206 -> 3590[label="",style="dashed", color="magenta", weight=3]; 3207 -> 2174[label="",style="dashed", color="red", weight=0]; 3207[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3207 -> 3591[label="",style="dashed", color="magenta", weight=3]; 3207 -> 3592[label="",style="dashed", color="magenta", weight=3]; 3208 -> 2175[label="",style="dashed", color="red", weight=0]; 3208[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3208 -> 3593[label="",style="dashed", color="magenta", weight=3]; 3208 -> 3594[label="",style="dashed", color="magenta", weight=3]; 3209 -> 2176[label="",style="dashed", color="red", weight=0]; 3209[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3209 -> 3595[label="",style="dashed", color="magenta", weight=3]; 3209 -> 3596[label="",style="dashed", color="magenta", weight=3]; 3210 -> 2177[label="",style="dashed", color="red", weight=0]; 3210[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3210 -> 3597[label="",style="dashed", color="magenta", weight=3]; 3210 -> 3598[label="",style="dashed", color="magenta", weight=3]; 3211 -> 2178[label="",style="dashed", color="red", weight=0]; 3211[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3211 -> 3599[label="",style="dashed", color="magenta", weight=3]; 3211 -> 3600[label="",style="dashed", color="magenta", weight=3]; 3212 -> 2179[label="",style="dashed", color="red", weight=0]; 3212[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3212 -> 3601[label="",style="dashed", color="magenta", weight=3]; 3212 -> 3602[label="",style="dashed", color="magenta", weight=3]; 3213 -> 2180[label="",style="dashed", color="red", weight=0]; 3213[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3213 -> 3603[label="",style="dashed", color="magenta", weight=3]; 3213 -> 3604[label="",style="dashed", color="magenta", weight=3]; 3214 -> 2181[label="",style="dashed", color="red", weight=0]; 3214[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3214 -> 3605[label="",style="dashed", color="magenta", weight=3]; 3214 -> 3606[label="",style="dashed", color="magenta", weight=3]; 3215 -> 2182[label="",style="dashed", color="red", weight=0]; 3215[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3215 -> 3607[label="",style="dashed", color="magenta", weight=3]; 3215 -> 3608[label="",style="dashed", color="magenta", weight=3]; 3216 -> 2183[label="",style="dashed", color="red", weight=0]; 3216[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3216 -> 3609[label="",style="dashed", color="magenta", weight=3]; 3216 -> 3610[label="",style="dashed", color="magenta", weight=3]; 3217 -> 2184[label="",style="dashed", color="red", weight=0]; 3217[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3217 -> 3611[label="",style="dashed", color="magenta", weight=3]; 3217 -> 3612[label="",style="dashed", color="magenta", weight=3]; 3218 -> 2185[label="",style="dashed", color="red", weight=0]; 3218[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3218 -> 3613[label="",style="dashed", color="magenta", weight=3]; 3218 -> 3614[label="",style="dashed", color="magenta", weight=3]; 3219 -> 2186[label="",style="dashed", color="red", weight=0]; 3219[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3219 -> 3615[label="",style="dashed", color="magenta", weight=3]; 3219 -> 3616[label="",style="dashed", color="magenta", weight=3]; 3220[label="vwx3001",fontsize=16,color="green",shape="box"];3221[label="vwx4001",fontsize=16,color="green",shape="box"];3222[label="vwx3000",fontsize=16,color="green",shape="box"];3223[label="vwx4000",fontsize=16,color="green",shape="box"];3224[label="vwx3000",fontsize=16,color="green",shape="box"];3225[label="vwx4000",fontsize=16,color="green",shape="box"];3226[label="vwx3000",fontsize=16,color="green",shape="box"];3227[label="vwx4000",fontsize=16,color="green",shape="box"];3228[label="vwx3000",fontsize=16,color="green",shape="box"];3229[label="vwx4000",fontsize=16,color="green",shape="box"];3230[label="vwx3000",fontsize=16,color="green",shape="box"];3231[label="vwx4000",fontsize=16,color="green",shape="box"];3232[label="vwx3000",fontsize=16,color="green",shape="box"];3233[label="vwx4000",fontsize=16,color="green",shape="box"];3234[label="vwx3000",fontsize=16,color="green",shape="box"];3235[label="vwx4000",fontsize=16,color="green",shape="box"];3236[label="vwx3000",fontsize=16,color="green",shape="box"];3237[label="vwx4000",fontsize=16,color="green",shape="box"];3238[label="vwx3000",fontsize=16,color="green",shape="box"];3239[label="vwx4000",fontsize=16,color="green",shape="box"];3240[label="vwx3000",fontsize=16,color="green",shape="box"];3241[label="vwx4000",fontsize=16,color="green",shape="box"];3242[label="vwx3000",fontsize=16,color="green",shape="box"];3243[label="vwx4000",fontsize=16,color="green",shape="box"];3244[label="vwx3000",fontsize=16,color="green",shape="box"];3245[label="vwx4000",fontsize=16,color="green",shape="box"];3246[label="vwx3000",fontsize=16,color="green",shape="box"];3247[label="vwx4000",fontsize=16,color="green",shape="box"];3248[label="vwx3000",fontsize=16,color="green",shape="box"];3249[label="vwx4000",fontsize=16,color="green",shape="box"];3250[label="vwx3000",fontsize=16,color="green",shape="box"];3251[label="vwx4000",fontsize=16,color="green",shape="box"];3252[label="vwx3000",fontsize=16,color="green",shape="box"];3253[label="vwx4000",fontsize=16,color="green",shape="box"];3254[label="vwx3000",fontsize=16,color="green",shape="box"];3255[label="vwx4000",fontsize=16,color="green",shape="box"];3256[label="vwx3000",fontsize=16,color="green",shape="box"];3257[label="vwx4000",fontsize=16,color="green",shape="box"];3258[label="vwx3000",fontsize=16,color="green",shape="box"];3259[label="vwx4000",fontsize=16,color="green",shape="box"];3260[label="vwx3000",fontsize=16,color="green",shape="box"];3261[label="vwx4000",fontsize=16,color="green",shape="box"];3262[label="vwx3000",fontsize=16,color="green",shape="box"];3263[label="vwx4000",fontsize=16,color="green",shape="box"];3264[label="vwx3000",fontsize=16,color="green",shape="box"];3265[label="vwx4000",fontsize=16,color="green",shape="box"];3266[label="vwx3000",fontsize=16,color="green",shape="box"];3267[label="vwx4000",fontsize=16,color="green",shape="box"];3268[label="vwx3000",fontsize=16,color="green",shape="box"];3269[label="vwx4000",fontsize=16,color="green",shape="box"];3270[label="vwx3000",fontsize=16,color="green",shape="box"];3271[label="vwx4000",fontsize=16,color="green",shape="box"];3272[label="vwx3000",fontsize=16,color="green",shape="box"];3273[label="vwx4000",fontsize=16,color="green",shape="box"];3274[label="vwx3000",fontsize=16,color="green",shape="box"];3275[label="vwx4000",fontsize=16,color="green",shape="box"];3276[label="vwx3000",fontsize=16,color="green",shape="box"];3277[label="vwx4000",fontsize=16,color="green",shape="box"];3278[label="vwx3000",fontsize=16,color="green",shape="box"];3279[label="vwx4000",fontsize=16,color="green",shape="box"];3280[label="vwx3000",fontsize=16,color="green",shape="box"];3281[label="vwx4000",fontsize=16,color="green",shape="box"];3282[label="vwx3000",fontsize=16,color="green",shape="box"];3283[label="vwx4000",fontsize=16,color="green",shape="box"];3284[label="vwx3000",fontsize=16,color="green",shape="box"];3285[label="vwx4000",fontsize=16,color="green",shape="box"];3286[label="vwx3000",fontsize=16,color="green",shape="box"];3287[label="vwx4000",fontsize=16,color="green",shape="box"];3288[label="vwx3000",fontsize=16,color="green",shape="box"];3289[label="vwx4000",fontsize=16,color="green",shape="box"];3290[label="vwx3000",fontsize=16,color="green",shape="box"];3291[label="vwx4000",fontsize=16,color="green",shape="box"];3292[label="vwx3000",fontsize=16,color="green",shape="box"];3293[label="vwx4000",fontsize=16,color="green",shape="box"];3294[label="vwx3000",fontsize=16,color="green",shape="box"];3295[label="vwx4000",fontsize=16,color="green",shape="box"];3296[label="vwx3000",fontsize=16,color="green",shape="box"];3297[label="vwx4000",fontsize=16,color="green",shape="box"];3298[label="vwx3000",fontsize=16,color="green",shape="box"];3299[label="vwx4000",fontsize=16,color="green",shape="box"];3300[label="vwx3000",fontsize=16,color="green",shape="box"];3301[label="vwx4000",fontsize=16,color="green",shape="box"];3302[label="vwx3000",fontsize=16,color="green",shape="box"];3303[label="vwx4000",fontsize=16,color="green",shape="box"];3304[label="vwx3000",fontsize=16,color="green",shape="box"];3305[label="vwx4000",fontsize=16,color="green",shape="box"];3306 -> 2175[label="",style="dashed", color="red", weight=0]; 3306[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3306 -> 3617[label="",style="dashed", color="magenta", weight=3]; 3306 -> 3618[label="",style="dashed", color="magenta", weight=3]; 3307 -> 2185[label="",style="dashed", color="red", weight=0]; 3307[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3307 -> 3619[label="",style="dashed", color="magenta", weight=3]; 3307 -> 3620[label="",style="dashed", color="magenta", weight=3]; 3308 -> 2175[label="",style="dashed", color="red", weight=0]; 3308[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];3308 -> 3621[label="",style="dashed", color="magenta", weight=3]; 3308 -> 3622[label="",style="dashed", color="magenta", weight=3]; 3309 -> 2185[label="",style="dashed", color="red", weight=0]; 3309[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];3309 -> 3623[label="",style="dashed", color="magenta", weight=3]; 3309 -> 3624[label="",style="dashed", color="magenta", weight=3]; 3310 -> 2173[label="",style="dashed", color="red", weight=0]; 3310[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3310 -> 3625[label="",style="dashed", color="magenta", weight=3]; 3310 -> 3626[label="",style="dashed", color="magenta", weight=3]; 3311 -> 2174[label="",style="dashed", color="red", weight=0]; 3311[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3311 -> 3627[label="",style="dashed", color="magenta", weight=3]; 3311 -> 3628[label="",style="dashed", color="magenta", weight=3]; 3312 -> 2175[label="",style="dashed", color="red", weight=0]; 3312[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3312 -> 3629[label="",style="dashed", color="magenta", weight=3]; 3312 -> 3630[label="",style="dashed", color="magenta", weight=3]; 3313 -> 2176[label="",style="dashed", color="red", weight=0]; 3313[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3313 -> 3631[label="",style="dashed", color="magenta", weight=3]; 3313 -> 3632[label="",style="dashed", color="magenta", weight=3]; 3314 -> 2177[label="",style="dashed", color="red", weight=0]; 3314[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3314 -> 3633[label="",style="dashed", color="magenta", weight=3]; 3314 -> 3634[label="",style="dashed", color="magenta", weight=3]; 3315 -> 2178[label="",style="dashed", color="red", weight=0]; 3315[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3315 -> 3635[label="",style="dashed", color="magenta", weight=3]; 3315 -> 3636[label="",style="dashed", color="magenta", weight=3]; 3316 -> 2179[label="",style="dashed", color="red", weight=0]; 3316[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3316 -> 3637[label="",style="dashed", color="magenta", weight=3]; 3316 -> 3638[label="",style="dashed", color="magenta", weight=3]; 3317 -> 2180[label="",style="dashed", color="red", weight=0]; 3317[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3317 -> 3639[label="",style="dashed", color="magenta", weight=3]; 3317 -> 3640[label="",style="dashed", color="magenta", weight=3]; 3318 -> 2181[label="",style="dashed", color="red", weight=0]; 3318[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3318 -> 3641[label="",style="dashed", color="magenta", weight=3]; 3318 -> 3642[label="",style="dashed", color="magenta", weight=3]; 3319 -> 2182[label="",style="dashed", color="red", weight=0]; 3319[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3319 -> 3643[label="",style="dashed", color="magenta", weight=3]; 3319 -> 3644[label="",style="dashed", color="magenta", weight=3]; 3320 -> 2183[label="",style="dashed", color="red", weight=0]; 3320[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3320 -> 3645[label="",style="dashed", color="magenta", weight=3]; 3320 -> 3646[label="",style="dashed", color="magenta", weight=3]; 3321 -> 2184[label="",style="dashed", color="red", weight=0]; 3321[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3321 -> 3647[label="",style="dashed", color="magenta", weight=3]; 3321 -> 3648[label="",style="dashed", color="magenta", weight=3]; 3322 -> 2185[label="",style="dashed", color="red", weight=0]; 3322[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3322 -> 3649[label="",style="dashed", color="magenta", weight=3]; 3322 -> 3650[label="",style="dashed", color="magenta", weight=3]; 3323 -> 2186[label="",style="dashed", color="red", weight=0]; 3323[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];3323 -> 3651[label="",style="dashed", color="magenta", weight=3]; 3323 -> 3652[label="",style="dashed", color="magenta", weight=3]; 3324 -> 2173[label="",style="dashed", color="red", weight=0]; 3324[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];3324 -> 3653[label="",style="dashed", color="magenta", weight=3]; 3324 -> 3654[label="",style="dashed", color="magenta", weight=3]; 3325 -> 2174[label="",style="dashed", color="red", weight=0]; 3325[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];3325 -> 3655[label="",style="dashed", color="magenta", weight=3]; 3325 -> 3656[label="",style="dashed", color="magenta", weight=3]; 3326 -> 2175[label="",style="dashed", color="red", weight=0]; 3326[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];3326 -> 3657[label="",style="dashed", color="magenta", weight=3]; 3326 -> 3658[label="",style="dashed", color="magenta", weight=3]; 3327 -> 2176[label="",style="dashed", color="red", weight=0]; 3327[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];3327 -> 3659[label="",style="dashed", color="magenta", weight=3]; 3327 -> 3660[label="",style="dashed", color="magenta", weight=3]; 3328 -> 2177[label="",style="dashed", color="red", weight=0]; 3328[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];3328 -> 3661[label="",style="dashed", color="magenta", weight=3]; 3328 -> 3662[label="",style="dashed", color="magenta", weight=3]; 3329 -> 2178[label="",style="dashed", color="red", weight=0]; 3329[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];3329 -> 3663[label="",style="dashed", color="magenta", weight=3]; 3329 -> 3664[label="",style="dashed", color="magenta", weight=3]; 3330 -> 2179[label="",style="dashed", color="red", weight=0]; 3330[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];3330 -> 3665[label="",style="dashed", color="magenta", weight=3]; 3330 -> 3666[label="",style="dashed", color="magenta", weight=3]; 3331 -> 2180[label="",style="dashed", color="red", weight=0]; 3331[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];3331 -> 3667[label="",style="dashed", color="magenta", weight=3]; 3331 -> 3668[label="",style="dashed", color="magenta", weight=3]; 3332 -> 2181[label="",style="dashed", color="red", weight=0]; 3332[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];3332 -> 3669[label="",style="dashed", color="magenta", weight=3]; 3332 -> 3670[label="",style="dashed", color="magenta", weight=3]; 3333 -> 2182[label="",style="dashed", color="red", weight=0]; 3333[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];3333 -> 3671[label="",style="dashed", color="magenta", weight=3]; 3333 -> 3672[label="",style="dashed", color="magenta", weight=3]; 3334 -> 2183[label="",style="dashed", color="red", weight=0]; 3334[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];3334 -> 3673[label="",style="dashed", color="magenta", weight=3]; 3334 -> 3674[label="",style="dashed", color="magenta", weight=3]; 3335 -> 2184[label="",style="dashed", color="red", weight=0]; 3335[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];3335 -> 3675[label="",style="dashed", color="magenta", weight=3]; 3335 -> 3676[label="",style="dashed", color="magenta", weight=3]; 3336 -> 2185[label="",style="dashed", color="red", weight=0]; 3336[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];3336 -> 3677[label="",style="dashed", color="magenta", weight=3]; 3336 -> 3678[label="",style="dashed", color="magenta", weight=3]; 3337 -> 2186[label="",style="dashed", color="red", weight=0]; 3337[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];3337 -> 3679[label="",style="dashed", color="magenta", weight=3]; 3337 -> 3680[label="",style="dashed", color="magenta", weight=3]; 3338 -> 2031[label="",style="dashed", color="red", weight=0]; 3338[label="vwx3000 * vwx4001",fontsize=16,color="magenta"];3338 -> 3681[label="",style="dashed", color="magenta", weight=3]; 3338 -> 3682[label="",style="dashed", color="magenta", weight=3]; 3339 -> 2031[label="",style="dashed", color="red", weight=0]; 3339[label="vwx3001 * vwx4000",fontsize=16,color="magenta"];3339 -> 3683[label="",style="dashed", color="magenta", weight=3]; 3339 -> 3684[label="",style="dashed", color="magenta", weight=3]; 3340 -> 1883[label="",style="dashed", color="red", weight=0]; 3340[label="compare vwx174 vwx175 /= GT",fontsize=16,color="magenta"];3340 -> 3685[label="",style="dashed", color="magenta", weight=3]; 3341 -> 1883[label="",style="dashed", color="red", weight=0]; 3341[label="compare vwx174 vwx175 /= GT",fontsize=16,color="magenta"];3341 -> 3686[label="",style="dashed", color="magenta", weight=3]; 3342 -> 1883[label="",style="dashed", color="red", weight=0]; 3342[label="compare vwx174 vwx175 /= GT",fontsize=16,color="magenta"];3342 -> 3687[label="",style="dashed", color="magenta", weight=3]; 3343[label="Left vwx1740 <= vwx175",fontsize=16,color="burlywood",shape="box"];5211[label="vwx175/Left vwx1750",fontsize=10,color="white",style="solid",shape="box"];3343 -> 5211[label="",style="solid", color="burlywood", weight=9]; 5211 -> 3688[label="",style="solid", color="burlywood", weight=3]; 5212[label="vwx175/Right vwx1750",fontsize=10,color="white",style="solid",shape="box"];3343 -> 5212[label="",style="solid", color="burlywood", weight=9]; 5212 -> 3689[label="",style="solid", color="burlywood", weight=3]; 3344[label="Right vwx1740 <= vwx175",fontsize=16,color="burlywood",shape="box"];5213[label="vwx175/Left vwx1750",fontsize=10,color="white",style="solid",shape="box"];3344 -> 5213[label="",style="solid", color="burlywood", weight=9]; 5213 -> 3690[label="",style="solid", color="burlywood", weight=3]; 5214[label="vwx175/Right vwx1750",fontsize=10,color="white",style="solid",shape="box"];3344 -> 5214[label="",style="solid", color="burlywood", weight=9]; 5214 -> 3691[label="",style="solid", color="burlywood", weight=3]; 3345[label="(vwx1740,vwx1741,vwx1742) <= vwx175",fontsize=16,color="burlywood",shape="box"];5215[label="vwx175/(vwx1750,vwx1751,vwx1752)",fontsize=10,color="white",style="solid",shape="box"];3345 -> 5215[label="",style="solid", color="burlywood", weight=9]; 5215 -> 3692[label="",style="solid", color="burlywood", weight=3]; 3346[label="Nothing <= vwx175",fontsize=16,color="burlywood",shape="box"];5216[label="vwx175/Nothing",fontsize=10,color="white",style="solid",shape="box"];3346 -> 5216[label="",style="solid", color="burlywood", weight=9]; 5216 -> 3693[label="",style="solid", color="burlywood", weight=3]; 5217[label="vwx175/Just vwx1750",fontsize=10,color="white",style="solid",shape="box"];3346 -> 5217[label="",style="solid", color="burlywood", weight=9]; 5217 -> 3694[label="",style="solid", color="burlywood", weight=3]; 3347[label="Just vwx1740 <= vwx175",fontsize=16,color="burlywood",shape="box"];5218[label="vwx175/Nothing",fontsize=10,color="white",style="solid",shape="box"];3347 -> 5218[label="",style="solid", color="burlywood", weight=9]; 5218 -> 3695[label="",style="solid", color="burlywood", weight=3]; 5219[label="vwx175/Just vwx1750",fontsize=10,color="white",style="solid",shape="box"];3347 -> 5219[label="",style="solid", color="burlywood", weight=9]; 5219 -> 3696[label="",style="solid", color="burlywood", weight=3]; 3348[label="vwx174",fontsize=16,color="green",shape="box"];3349[label="vwx175",fontsize=16,color="green",shape="box"];3350 -> 1883[label="",style="dashed", color="red", weight=0]; 3350[label="compare vwx174 vwx175 /= GT",fontsize=16,color="magenta"];3350 -> 3697[label="",style="dashed", color="magenta", weight=3]; 3351 -> 1883[label="",style="dashed", color="red", weight=0]; 3351[label="compare vwx174 vwx175 /= GT",fontsize=16,color="magenta"];3351 -> 3698[label="",style="dashed", color="magenta", weight=3]; 3352[label="(vwx1740,vwx1741) <= vwx175",fontsize=16,color="burlywood",shape="box"];5220[label="vwx175/(vwx1750,vwx1751)",fontsize=10,color="white",style="solid",shape="box"];3352 -> 5220[label="",style="solid", color="burlywood", weight=9]; 5220 -> 3699[label="",style="solid", color="burlywood", weight=3]; 3353 -> 1883[label="",style="dashed", color="red", weight=0]; 3353[label="compare vwx174 vwx175 /= GT",fontsize=16,color="magenta"];3353 -> 3700[label="",style="dashed", color="magenta", weight=3]; 3354 -> 1883[label="",style="dashed", color="red", weight=0]; 3354[label="compare vwx174 vwx175 /= GT",fontsize=16,color="magenta"];3354 -> 3701[label="",style="dashed", color="magenta", weight=3]; 3355[label="LT <= vwx175",fontsize=16,color="burlywood",shape="box"];5221[label="vwx175/LT",fontsize=10,color="white",style="solid",shape="box"];3355 -> 5221[label="",style="solid", color="burlywood", weight=9]; 5221 -> 3702[label="",style="solid", color="burlywood", weight=3]; 5222[label="vwx175/EQ",fontsize=10,color="white",style="solid",shape="box"];3355 -> 5222[label="",style="solid", color="burlywood", weight=9]; 5222 -> 3703[label="",style="solid", color="burlywood", weight=3]; 5223[label="vwx175/GT",fontsize=10,color="white",style="solid",shape="box"];3355 -> 5223[label="",style="solid", color="burlywood", weight=9]; 5223 -> 3704[label="",style="solid", color="burlywood", weight=3]; 3356[label="EQ <= vwx175",fontsize=16,color="burlywood",shape="box"];5224[label="vwx175/LT",fontsize=10,color="white",style="solid",shape="box"];3356 -> 5224[label="",style="solid", color="burlywood", weight=9]; 5224 -> 3705[label="",style="solid", color="burlywood", weight=3]; 5225[label="vwx175/EQ",fontsize=10,color="white",style="solid",shape="box"];3356 -> 5225[label="",style="solid", color="burlywood", weight=9]; 5225 -> 3706[label="",style="solid", color="burlywood", weight=3]; 5226[label="vwx175/GT",fontsize=10,color="white",style="solid",shape="box"];3356 -> 5226[label="",style="solid", color="burlywood", weight=9]; 5226 -> 3707[label="",style="solid", color="burlywood", weight=3]; 3357[label="GT <= vwx175",fontsize=16,color="burlywood",shape="box"];5227[label="vwx175/LT",fontsize=10,color="white",style="solid",shape="box"];3357 -> 5227[label="",style="solid", color="burlywood", weight=9]; 5227 -> 3708[label="",style="solid", color="burlywood", weight=3]; 5228[label="vwx175/EQ",fontsize=10,color="white",style="solid",shape="box"];3357 -> 5228[label="",style="solid", color="burlywood", weight=9]; 5228 -> 3709[label="",style="solid", color="burlywood", weight=3]; 5229[label="vwx175/GT",fontsize=10,color="white",style="solid",shape="box"];3357 -> 5229[label="",style="solid", color="burlywood", weight=9]; 5229 -> 3710[label="",style="solid", color="burlywood", weight=3]; 3358[label="False <= vwx175",fontsize=16,color="burlywood",shape="box"];5230[label="vwx175/False",fontsize=10,color="white",style="solid",shape="box"];3358 -> 5230[label="",style="solid", color="burlywood", weight=9]; 5230 -> 3711[label="",style="solid", color="burlywood", weight=3]; 5231[label="vwx175/True",fontsize=10,color="white",style="solid",shape="box"];3358 -> 5231[label="",style="solid", color="burlywood", weight=9]; 5231 -> 3712[label="",style="solid", color="burlywood", weight=3]; 3359[label="True <= vwx175",fontsize=16,color="burlywood",shape="box"];5232[label="vwx175/False",fontsize=10,color="white",style="solid",shape="box"];3359 -> 5232[label="",style="solid", color="burlywood", weight=9]; 5232 -> 3713[label="",style="solid", color="burlywood", weight=3]; 5233[label="vwx175/True",fontsize=10,color="white",style="solid",shape="box"];3359 -> 5233[label="",style="solid", color="burlywood", weight=9]; 5233 -> 3714[label="",style="solid", color="burlywood", weight=3]; 3360[label="compare0 (Left vwx254) (Left vwx255) True",fontsize=16,color="black",shape="box"];3360 -> 3715[label="",style="solid", color="black", weight=3]; 3361[label="vwx181",fontsize=16,color="green",shape="box"];3362[label="vwx182",fontsize=16,color="green",shape="box"];3363[label="vwx181",fontsize=16,color="green",shape="box"];3364[label="vwx182",fontsize=16,color="green",shape="box"];3365[label="vwx181",fontsize=16,color="green",shape="box"];3366[label="vwx182",fontsize=16,color="green",shape="box"];3367[label="vwx181",fontsize=16,color="green",shape="box"];3368[label="vwx182",fontsize=16,color="green",shape="box"];3369[label="vwx181",fontsize=16,color="green",shape="box"];3370[label="vwx182",fontsize=16,color="green",shape="box"];3371[label="vwx181",fontsize=16,color="green",shape="box"];3372[label="vwx182",fontsize=16,color="green",shape="box"];3373[label="vwx181",fontsize=16,color="green",shape="box"];3374[label="vwx182",fontsize=16,color="green",shape="box"];3375[label="vwx181",fontsize=16,color="green",shape="box"];3376[label="vwx182",fontsize=16,color="green",shape="box"];3377[label="vwx181",fontsize=16,color="green",shape="box"];3378[label="vwx182",fontsize=16,color="green",shape="box"];3379[label="vwx181",fontsize=16,color="green",shape="box"];3380[label="vwx182",fontsize=16,color="green",shape="box"];3381[label="vwx181",fontsize=16,color="green",shape="box"];3382[label="vwx182",fontsize=16,color="green",shape="box"];3383[label="vwx181",fontsize=16,color="green",shape="box"];3384[label="vwx182",fontsize=16,color="green",shape="box"];3385[label="vwx181",fontsize=16,color="green",shape="box"];3386[label="vwx182",fontsize=16,color="green",shape="box"];3387[label="vwx181",fontsize=16,color="green",shape="box"];3388[label="vwx182",fontsize=16,color="green",shape="box"];3389[label="compare0 (Right vwx261) (Right vwx262) True",fontsize=16,color="black",shape="box"];3389 -> 3716[label="",style="solid", color="black", weight=3]; 3390 -> 2181[label="",style="dashed", color="red", weight=0]; 3390[label="vwx225 == vwx228",fontsize=16,color="magenta"];3390 -> 3717[label="",style="dashed", color="magenta", weight=3]; 3390 -> 3718[label="",style="dashed", color="magenta", weight=3]; 3391 -> 2186[label="",style="dashed", color="red", weight=0]; 3391[label="vwx225 == vwx228",fontsize=16,color="magenta"];3391 -> 3719[label="",style="dashed", color="magenta", weight=3]; 3391 -> 3720[label="",style="dashed", color="magenta", weight=3]; 3392 -> 2176[label="",style="dashed", color="red", weight=0]; 3392[label="vwx225 == vwx228",fontsize=16,color="magenta"];3392 -> 3721[label="",style="dashed", color="magenta", weight=3]; 3392 -> 3722[label="",style="dashed", color="magenta", weight=3]; 3393 -> 2179[label="",style="dashed", color="red", weight=0]; 3393[label="vwx225 == vwx228",fontsize=16,color="magenta"];3393 -> 3723[label="",style="dashed", color="magenta", weight=3]; 3393 -> 3724[label="",style="dashed", color="magenta", weight=3]; 3394 -> 2173[label="",style="dashed", color="red", weight=0]; 3394[label="vwx225 == vwx228",fontsize=16,color="magenta"];3394 -> 3725[label="",style="dashed", color="magenta", weight=3]; 3394 -> 3726[label="",style="dashed", color="magenta", weight=3]; 3395 -> 2180[label="",style="dashed", color="red", weight=0]; 3395[label="vwx225 == vwx228",fontsize=16,color="magenta"];3395 -> 3727[label="",style="dashed", color="magenta", weight=3]; 3395 -> 3728[label="",style="dashed", color="magenta", weight=3]; 3396 -> 2178[label="",style="dashed", color="red", weight=0]; 3396[label="vwx225 == vwx228",fontsize=16,color="magenta"];3396 -> 3729[label="",style="dashed", color="magenta", weight=3]; 3396 -> 3730[label="",style="dashed", color="magenta", weight=3]; 3397 -> 2175[label="",style="dashed", color="red", weight=0]; 3397[label="vwx225 == vwx228",fontsize=16,color="magenta"];3397 -> 3731[label="",style="dashed", color="magenta", weight=3]; 3397 -> 3732[label="",style="dashed", color="magenta", weight=3]; 3398 -> 2177[label="",style="dashed", color="red", weight=0]; 3398[label="vwx225 == vwx228",fontsize=16,color="magenta"];3398 -> 3733[label="",style="dashed", color="magenta", weight=3]; 3398 -> 3734[label="",style="dashed", color="magenta", weight=3]; 3399 -> 2184[label="",style="dashed", color="red", weight=0]; 3399[label="vwx225 == vwx228",fontsize=16,color="magenta"];3399 -> 3735[label="",style="dashed", color="magenta", weight=3]; 3399 -> 3736[label="",style="dashed", color="magenta", weight=3]; 3400 -> 2185[label="",style="dashed", color="red", weight=0]; 3400[label="vwx225 == vwx228",fontsize=16,color="magenta"];3400 -> 3737[label="",style="dashed", color="magenta", weight=3]; 3400 -> 3738[label="",style="dashed", color="magenta", weight=3]; 3401 -> 2183[label="",style="dashed", color="red", weight=0]; 3401[label="vwx225 == vwx228",fontsize=16,color="magenta"];3401 -> 3739[label="",style="dashed", color="magenta", weight=3]; 3401 -> 3740[label="",style="dashed", color="magenta", weight=3]; 3402 -> 2182[label="",style="dashed", color="red", weight=0]; 3402[label="vwx225 == vwx228",fontsize=16,color="magenta"];3402 -> 3741[label="",style="dashed", color="magenta", weight=3]; 3402 -> 3742[label="",style="dashed", color="magenta", weight=3]; 3403 -> 2174[label="",style="dashed", color="red", weight=0]; 3403[label="vwx225 == vwx228",fontsize=16,color="magenta"];3403 -> 3743[label="",style="dashed", color="magenta", weight=3]; 3403 -> 3744[label="",style="dashed", color="magenta", weight=3]; 3748 -> 2732[label="",style="dashed", color="red", weight=0]; 3748[label="vwx226 == vwx229 && vwx227 <= vwx230",fontsize=16,color="magenta"];3748 -> 3752[label="",style="dashed", color="magenta", weight=3]; 3748 -> 3753[label="",style="dashed", color="magenta", weight=3]; 3749[label="vwx226 < vwx229",fontsize=16,color="blue",shape="box"];5234[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3749 -> 5234[label="",style="solid", color="blue", weight=9]; 5234 -> 3754[label="",style="solid", color="blue", weight=3]; 5235[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3749 -> 5235[label="",style="solid", color="blue", weight=9]; 5235 -> 3755[label="",style="solid", color="blue", weight=3]; 5236[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3749 -> 5236[label="",style="solid", color="blue", weight=9]; 5236 -> 3756[label="",style="solid", color="blue", weight=3]; 5237[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3749 -> 5237[label="",style="solid", color="blue", weight=9]; 5237 -> 3757[label="",style="solid", color="blue", weight=3]; 5238[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3749 -> 5238[label="",style="solid", color="blue", weight=9]; 5238 -> 3758[label="",style="solid", color="blue", weight=3]; 5239[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3749 -> 5239[label="",style="solid", color="blue", weight=9]; 5239 -> 3759[label="",style="solid", color="blue", weight=3]; 5240[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3749 -> 5240[label="",style="solid", color="blue", weight=9]; 5240 -> 3760[label="",style="solid", color="blue", weight=3]; 5241[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3749 -> 5241[label="",style="solid", color="blue", weight=9]; 5241 -> 3761[label="",style="solid", color="blue", weight=3]; 5242[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3749 -> 5242[label="",style="solid", color="blue", weight=9]; 5242 -> 3762[label="",style="solid", color="blue", weight=3]; 5243[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3749 -> 5243[label="",style="solid", color="blue", weight=9]; 5243 -> 3763[label="",style="solid", color="blue", weight=3]; 5244[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3749 -> 5244[label="",style="solid", color="blue", weight=9]; 5244 -> 3764[label="",style="solid", color="blue", weight=3]; 5245[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3749 -> 5245[label="",style="solid", color="blue", weight=9]; 5245 -> 3765[label="",style="solid", color="blue", weight=3]; 5246[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3749 -> 5246[label="",style="solid", color="blue", weight=9]; 5246 -> 3766[label="",style="solid", color="blue", weight=3]; 5247[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3749 -> 5247[label="",style="solid", color="blue", weight=9]; 5247 -> 3767[label="",style="solid", color="blue", weight=3]; 3747[label="vwx315 || vwx316",fontsize=16,color="burlywood",shape="triangle"];5248[label="vwx315/False",fontsize=10,color="white",style="solid",shape="box"];3747 -> 5248[label="",style="solid", color="burlywood", weight=9]; 5248 -> 3768[label="",style="solid", color="burlywood", weight=3]; 5249[label="vwx315/True",fontsize=10,color="white",style="solid",shape="box"];3747 -> 5249[label="",style="solid", color="burlywood", weight=9]; 5249 -> 3769[label="",style="solid", color="burlywood", weight=3]; 3406 -> 2182[label="",style="dashed", color="red", weight=0]; 3406[label="compare vwx225 vwx228 == LT",fontsize=16,color="magenta"];3406 -> 3770[label="",style="dashed", color="magenta", weight=3]; 3406 -> 3771[label="",style="dashed", color="magenta", weight=3]; 3407 -> 2182[label="",style="dashed", color="red", weight=0]; 3407[label="compare vwx225 vwx228 == LT",fontsize=16,color="magenta"];3407 -> 3772[label="",style="dashed", color="magenta", weight=3]; 3407 -> 3773[label="",style="dashed", color="magenta", weight=3]; 3408 -> 2182[label="",style="dashed", color="red", weight=0]; 3408[label="compare vwx225 vwx228 == LT",fontsize=16,color="magenta"];3408 -> 3774[label="",style="dashed", color="magenta", weight=3]; 3408 -> 3775[label="",style="dashed", color="magenta", weight=3]; 3409 -> 2182[label="",style="dashed", color="red", weight=0]; 3409[label="compare vwx225 vwx228 == LT",fontsize=16,color="magenta"];3409 -> 3776[label="",style="dashed", color="magenta", weight=3]; 3409 -> 3777[label="",style="dashed", color="magenta", weight=3]; 3410 -> 2182[label="",style="dashed", color="red", weight=0]; 3410[label="compare vwx225 vwx228 == LT",fontsize=16,color="magenta"];3410 -> 3778[label="",style="dashed", color="magenta", weight=3]; 3410 -> 3779[label="",style="dashed", color="magenta", weight=3]; 3411 -> 2182[label="",style="dashed", color="red", weight=0]; 3411[label="compare vwx225 vwx228 == LT",fontsize=16,color="magenta"];3411 -> 3780[label="",style="dashed", color="magenta", weight=3]; 3411 -> 3781[label="",style="dashed", color="magenta", weight=3]; 3412 -> 2182[label="",style="dashed", color="red", weight=0]; 3412[label="compare vwx225 vwx228 == LT",fontsize=16,color="magenta"];3412 -> 3782[label="",style="dashed", color="magenta", weight=3]; 3412 -> 3783[label="",style="dashed", color="magenta", weight=3]; 3413 -> 2182[label="",style="dashed", color="red", weight=0]; 3413[label="compare vwx225 vwx228 == LT",fontsize=16,color="magenta"];3413 -> 3784[label="",style="dashed", color="magenta", weight=3]; 3413 -> 3785[label="",style="dashed", color="magenta", weight=3]; 3414 -> 2182[label="",style="dashed", color="red", weight=0]; 3414[label="compare vwx225 vwx228 == LT",fontsize=16,color="magenta"];3414 -> 3786[label="",style="dashed", color="magenta", weight=3]; 3414 -> 3787[label="",style="dashed", color="magenta", weight=3]; 3415 -> 2182[label="",style="dashed", color="red", weight=0]; 3415[label="compare vwx225 vwx228 == LT",fontsize=16,color="magenta"];3415 -> 3788[label="",style="dashed", color="magenta", weight=3]; 3415 -> 3789[label="",style="dashed", color="magenta", weight=3]; 3416 -> 2182[label="",style="dashed", color="red", weight=0]; 3416[label="compare vwx225 vwx228 == LT",fontsize=16,color="magenta"];3416 -> 3790[label="",style="dashed", color="magenta", weight=3]; 3416 -> 3791[label="",style="dashed", color="magenta", weight=3]; 3417 -> 2182[label="",style="dashed", color="red", weight=0]; 3417[label="compare vwx225 vwx228 == LT",fontsize=16,color="magenta"];3417 -> 3792[label="",style="dashed", color="magenta", weight=3]; 3417 -> 3793[label="",style="dashed", color="magenta", weight=3]; 3418 -> 2182[label="",style="dashed", color="red", weight=0]; 3418[label="compare vwx225 vwx228 == LT",fontsize=16,color="magenta"];3418 -> 3794[label="",style="dashed", color="magenta", weight=3]; 3418 -> 3795[label="",style="dashed", color="magenta", weight=3]; 3419 -> 2182[label="",style="dashed", color="red", weight=0]; 3419[label="compare vwx225 vwx228 == LT",fontsize=16,color="magenta"];3419 -> 3796[label="",style="dashed", color="magenta", weight=3]; 3419 -> 3797[label="",style="dashed", color="magenta", weight=3]; 3420[label="compare1 (vwx290,vwx291,vwx292) (vwx293,vwx294,vwx295) vwx297",fontsize=16,color="burlywood",shape="triangle"];5250[label="vwx297/False",fontsize=10,color="white",style="solid",shape="box"];3420 -> 5250[label="",style="solid", color="burlywood", weight=9]; 5250 -> 3798[label="",style="solid", color="burlywood", weight=3]; 5251[label="vwx297/True",fontsize=10,color="white",style="solid",shape="box"];3420 -> 5251[label="",style="solid", color="burlywood", weight=9]; 5251 -> 3799[label="",style="solid", color="burlywood", weight=3]; 3421 -> 3420[label="",style="dashed", color="red", weight=0]; 3421[label="compare1 (vwx290,vwx291,vwx292) (vwx293,vwx294,vwx295) True",fontsize=16,color="magenta"];3421 -> 3800[label="",style="dashed", color="magenta", weight=3]; 3422[label="vwx203",fontsize=16,color="green",shape="box"];3423[label="vwx204",fontsize=16,color="green",shape="box"];3424[label="vwx203",fontsize=16,color="green",shape="box"];3425[label="vwx204",fontsize=16,color="green",shape="box"];3426[label="vwx203",fontsize=16,color="green",shape="box"];3427[label="vwx204",fontsize=16,color="green",shape="box"];3428[label="vwx203",fontsize=16,color="green",shape="box"];3429[label="vwx204",fontsize=16,color="green",shape="box"];3430[label="vwx203",fontsize=16,color="green",shape="box"];3431[label="vwx204",fontsize=16,color="green",shape="box"];3432[label="vwx203",fontsize=16,color="green",shape="box"];3433[label="vwx204",fontsize=16,color="green",shape="box"];3434[label="vwx203",fontsize=16,color="green",shape="box"];3435[label="vwx204",fontsize=16,color="green",shape="box"];3436[label="vwx203",fontsize=16,color="green",shape="box"];3437[label="vwx204",fontsize=16,color="green",shape="box"];3438[label="vwx203",fontsize=16,color="green",shape="box"];3439[label="vwx204",fontsize=16,color="green",shape="box"];3440[label="vwx203",fontsize=16,color="green",shape="box"];3441[label="vwx204",fontsize=16,color="green",shape="box"];3442[label="vwx203",fontsize=16,color="green",shape="box"];3443[label="vwx204",fontsize=16,color="green",shape="box"];3444[label="vwx203",fontsize=16,color="green",shape="box"];3445[label="vwx204",fontsize=16,color="green",shape="box"];3446[label="vwx203",fontsize=16,color="green",shape="box"];3447[label="vwx204",fontsize=16,color="green",shape="box"];3448[label="vwx203",fontsize=16,color="green",shape="box"];3449[label="vwx204",fontsize=16,color="green",shape="box"];3450[label="compare0 (Just vwx275) (Just vwx276) True",fontsize=16,color="black",shape="box"];3450 -> 3801[label="",style="solid", color="black", weight=3]; 3451 -> 2181[label="",style="dashed", color="red", weight=0]; 3451[label="vwx238 == vwx240",fontsize=16,color="magenta"];3451 -> 3802[label="",style="dashed", color="magenta", weight=3]; 3451 -> 3803[label="",style="dashed", color="magenta", weight=3]; 3452 -> 2186[label="",style="dashed", color="red", weight=0]; 3452[label="vwx238 == vwx240",fontsize=16,color="magenta"];3452 -> 3804[label="",style="dashed", color="magenta", weight=3]; 3452 -> 3805[label="",style="dashed", color="magenta", weight=3]; 3453 -> 2176[label="",style="dashed", color="red", weight=0]; 3453[label="vwx238 == vwx240",fontsize=16,color="magenta"];3453 -> 3806[label="",style="dashed", color="magenta", weight=3]; 3453 -> 3807[label="",style="dashed", color="magenta", weight=3]; 3454 -> 2179[label="",style="dashed", color="red", weight=0]; 3454[label="vwx238 == vwx240",fontsize=16,color="magenta"];3454 -> 3808[label="",style="dashed", color="magenta", weight=3]; 3454 -> 3809[label="",style="dashed", color="magenta", weight=3]; 3455 -> 2173[label="",style="dashed", color="red", weight=0]; 3455[label="vwx238 == vwx240",fontsize=16,color="magenta"];3455 -> 3810[label="",style="dashed", color="magenta", weight=3]; 3455 -> 3811[label="",style="dashed", color="magenta", weight=3]; 3456 -> 2180[label="",style="dashed", color="red", weight=0]; 3456[label="vwx238 == vwx240",fontsize=16,color="magenta"];3456 -> 3812[label="",style="dashed", color="magenta", weight=3]; 3456 -> 3813[label="",style="dashed", color="magenta", weight=3]; 3457 -> 2178[label="",style="dashed", color="red", weight=0]; 3457[label="vwx238 == vwx240",fontsize=16,color="magenta"];3457 -> 3814[label="",style="dashed", color="magenta", weight=3]; 3457 -> 3815[label="",style="dashed", color="magenta", weight=3]; 3458 -> 2175[label="",style="dashed", color="red", weight=0]; 3458[label="vwx238 == vwx240",fontsize=16,color="magenta"];3458 -> 3816[label="",style="dashed", color="magenta", weight=3]; 3458 -> 3817[label="",style="dashed", color="magenta", weight=3]; 3459 -> 2177[label="",style="dashed", color="red", weight=0]; 3459[label="vwx238 == vwx240",fontsize=16,color="magenta"];3459 -> 3818[label="",style="dashed", color="magenta", weight=3]; 3459 -> 3819[label="",style="dashed", color="magenta", weight=3]; 3460 -> 2184[label="",style="dashed", color="red", weight=0]; 3460[label="vwx238 == vwx240",fontsize=16,color="magenta"];3460 -> 3820[label="",style="dashed", color="magenta", weight=3]; 3460 -> 3821[label="",style="dashed", color="magenta", weight=3]; 3461 -> 2185[label="",style="dashed", color="red", weight=0]; 3461[label="vwx238 == vwx240",fontsize=16,color="magenta"];3461 -> 3822[label="",style="dashed", color="magenta", weight=3]; 3461 -> 3823[label="",style="dashed", color="magenta", weight=3]; 3462 -> 2183[label="",style="dashed", color="red", weight=0]; 3462[label="vwx238 == vwx240",fontsize=16,color="magenta"];3462 -> 3824[label="",style="dashed", color="magenta", weight=3]; 3462 -> 3825[label="",style="dashed", color="magenta", weight=3]; 3463 -> 2182[label="",style="dashed", color="red", weight=0]; 3463[label="vwx238 == vwx240",fontsize=16,color="magenta"];3463 -> 3826[label="",style="dashed", color="magenta", weight=3]; 3463 -> 3827[label="",style="dashed", color="magenta", weight=3]; 3464 -> 2174[label="",style="dashed", color="red", weight=0]; 3464[label="vwx238 == vwx240",fontsize=16,color="magenta"];3464 -> 3828[label="",style="dashed", color="magenta", weight=3]; 3464 -> 3829[label="",style="dashed", color="magenta", weight=3]; 3465 -> 3050[label="",style="dashed", color="red", weight=0]; 3465[label="vwx239 <= vwx241",fontsize=16,color="magenta"];3465 -> 3830[label="",style="dashed", color="magenta", weight=3]; 3465 -> 3831[label="",style="dashed", color="magenta", weight=3]; 3466 -> 3051[label="",style="dashed", color="red", weight=0]; 3466[label="vwx239 <= vwx241",fontsize=16,color="magenta"];3466 -> 3832[label="",style="dashed", color="magenta", weight=3]; 3466 -> 3833[label="",style="dashed", color="magenta", weight=3]; 3467 -> 3052[label="",style="dashed", color="red", weight=0]; 3467[label="vwx239 <= vwx241",fontsize=16,color="magenta"];3467 -> 3834[label="",style="dashed", color="magenta", weight=3]; 3467 -> 3835[label="",style="dashed", color="magenta", weight=3]; 3468 -> 3053[label="",style="dashed", color="red", weight=0]; 3468[label="vwx239 <= vwx241",fontsize=16,color="magenta"];3468 -> 3836[label="",style="dashed", color="magenta", weight=3]; 3468 -> 3837[label="",style="dashed", color="magenta", weight=3]; 3469 -> 3054[label="",style="dashed", color="red", weight=0]; 3469[label="vwx239 <= vwx241",fontsize=16,color="magenta"];3469 -> 3838[label="",style="dashed", color="magenta", weight=3]; 3469 -> 3839[label="",style="dashed", color="magenta", weight=3]; 3470 -> 3055[label="",style="dashed", color="red", weight=0]; 3470[label="vwx239 <= vwx241",fontsize=16,color="magenta"];3470 -> 3840[label="",style="dashed", color="magenta", weight=3]; 3470 -> 3841[label="",style="dashed", color="magenta", weight=3]; 3471 -> 4[label="",style="dashed", color="red", weight=0]; 3471[label="vwx239 <= vwx241",fontsize=16,color="magenta"];3471 -> 3842[label="",style="dashed", color="magenta", weight=3]; 3471 -> 3843[label="",style="dashed", color="magenta", weight=3]; 3472 -> 3057[label="",style="dashed", color="red", weight=0]; 3472[label="vwx239 <= vwx241",fontsize=16,color="magenta"];3472 -> 3844[label="",style="dashed", color="magenta", weight=3]; 3472 -> 3845[label="",style="dashed", color="magenta", weight=3]; 3473 -> 3058[label="",style="dashed", color="red", weight=0]; 3473[label="vwx239 <= vwx241",fontsize=16,color="magenta"];3473 -> 3846[label="",style="dashed", color="magenta", weight=3]; 3473 -> 3847[label="",style="dashed", color="magenta", weight=3]; 3474 -> 3059[label="",style="dashed", color="red", weight=0]; 3474[label="vwx239 <= vwx241",fontsize=16,color="magenta"];3474 -> 3848[label="",style="dashed", color="magenta", weight=3]; 3474 -> 3849[label="",style="dashed", color="magenta", weight=3]; 3475 -> 3060[label="",style="dashed", color="red", weight=0]; 3475[label="vwx239 <= vwx241",fontsize=16,color="magenta"];3475 -> 3850[label="",style="dashed", color="magenta", weight=3]; 3475 -> 3851[label="",style="dashed", color="magenta", weight=3]; 3476 -> 3061[label="",style="dashed", color="red", weight=0]; 3476[label="vwx239 <= vwx241",fontsize=16,color="magenta"];3476 -> 3852[label="",style="dashed", color="magenta", weight=3]; 3476 -> 3853[label="",style="dashed", color="magenta", weight=3]; 3477 -> 3062[label="",style="dashed", color="red", weight=0]; 3477[label="vwx239 <= vwx241",fontsize=16,color="magenta"];3477 -> 3854[label="",style="dashed", color="magenta", weight=3]; 3477 -> 3855[label="",style="dashed", color="magenta", weight=3]; 3478 -> 3063[label="",style="dashed", color="red", weight=0]; 3478[label="vwx239 <= vwx241",fontsize=16,color="magenta"];3478 -> 3856[label="",style="dashed", color="magenta", weight=3]; 3478 -> 3857[label="",style="dashed", color="magenta", weight=3]; 3479[label="vwx240",fontsize=16,color="green",shape="box"];3480[label="vwx238",fontsize=16,color="green",shape="box"];3481[label="vwx240",fontsize=16,color="green",shape="box"];3482[label="vwx238",fontsize=16,color="green",shape="box"];3483[label="vwx240",fontsize=16,color="green",shape="box"];3484[label="vwx238",fontsize=16,color="green",shape="box"];3485[label="vwx240",fontsize=16,color="green",shape="box"];3486[label="vwx238",fontsize=16,color="green",shape="box"];3487[label="vwx240",fontsize=16,color="green",shape="box"];3488[label="vwx238",fontsize=16,color="green",shape="box"];3489[label="vwx240",fontsize=16,color="green",shape="box"];3490[label="vwx238",fontsize=16,color="green",shape="box"];3491[label="vwx240",fontsize=16,color="green",shape="box"];3492[label="vwx238",fontsize=16,color="green",shape="box"];3493[label="vwx240",fontsize=16,color="green",shape="box"];3494[label="vwx238",fontsize=16,color="green",shape="box"];3495[label="vwx240",fontsize=16,color="green",shape="box"];3496[label="vwx238",fontsize=16,color="green",shape="box"];3497[label="vwx240",fontsize=16,color="green",shape="box"];3498[label="vwx238",fontsize=16,color="green",shape="box"];3499[label="vwx240",fontsize=16,color="green",shape="box"];3500[label="vwx238",fontsize=16,color="green",shape="box"];3501[label="vwx240",fontsize=16,color="green",shape="box"];3502[label="vwx238",fontsize=16,color="green",shape="box"];3503[label="vwx240",fontsize=16,color="green",shape="box"];3504[label="vwx238",fontsize=16,color="green",shape="box"];3505[label="vwx240",fontsize=16,color="green",shape="box"];3506[label="vwx238",fontsize=16,color="green",shape="box"];3507[label="compare1 (vwx305,vwx306) (vwx307,vwx308) vwx310",fontsize=16,color="burlywood",shape="triangle"];5252[label="vwx310/False",fontsize=10,color="white",style="solid",shape="box"];3507 -> 5252[label="",style="solid", color="burlywood", weight=9]; 5252 -> 3858[label="",style="solid", color="burlywood", weight=3]; 5253[label="vwx310/True",fontsize=10,color="white",style="solid",shape="box"];3507 -> 5253[label="",style="solid", color="burlywood", weight=9]; 5253 -> 3859[label="",style="solid", color="burlywood", weight=3]; 3508 -> 3507[label="",style="dashed", color="red", weight=0]; 3508[label="compare1 (vwx305,vwx306) (vwx307,vwx308) True",fontsize=16,color="magenta"];3508 -> 3860[label="",style="dashed", color="magenta", weight=3]; 3509 -> 3861[label="",style="dashed", color="red", weight=0]; 3509[label="primPlusNat (primMulNat vwx30000 (Succ vwx40100)) (Succ vwx40100)",fontsize=16,color="magenta"];3509 -> 3862[label="",style="dashed", color="magenta", weight=3]; 3510[label="Zero",fontsize=16,color="green",shape="box"];3511[label="Zero",fontsize=16,color="green",shape="box"];3512[label="Zero",fontsize=16,color="green",shape="box"];3513[label="vwx3000",fontsize=16,color="green",shape="box"];3514[label="vwx4000",fontsize=16,color="green",shape="box"];3515[label="vwx3000",fontsize=16,color="green",shape="box"];3516[label="vwx4000",fontsize=16,color="green",shape="box"];3517[label="vwx3000",fontsize=16,color="green",shape="box"];3518[label="vwx4000",fontsize=16,color="green",shape="box"];3519[label="vwx3000",fontsize=16,color="green",shape="box"];3520[label="vwx4000",fontsize=16,color="green",shape="box"];3521[label="vwx3000",fontsize=16,color="green",shape="box"];3522[label="vwx4000",fontsize=16,color="green",shape="box"];3523[label="vwx3000",fontsize=16,color="green",shape="box"];3524[label="vwx4000",fontsize=16,color="green",shape="box"];3525[label="vwx3000",fontsize=16,color="green",shape="box"];3526[label="vwx4000",fontsize=16,color="green",shape="box"];3527[label="vwx3000",fontsize=16,color="green",shape="box"];3528[label="vwx4000",fontsize=16,color="green",shape="box"];3529[label="vwx3000",fontsize=16,color="green",shape="box"];3530[label="vwx4000",fontsize=16,color="green",shape="box"];3531[label="vwx3000",fontsize=16,color="green",shape="box"];3532[label="vwx4000",fontsize=16,color="green",shape="box"];3533[label="vwx3000",fontsize=16,color="green",shape="box"];3534[label="vwx4000",fontsize=16,color="green",shape="box"];3535[label="vwx3000",fontsize=16,color="green",shape="box"];3536[label="vwx4000",fontsize=16,color="green",shape="box"];3537[label="vwx3000",fontsize=16,color="green",shape="box"];3538[label="vwx4000",fontsize=16,color="green",shape="box"];3539[label="vwx3000",fontsize=16,color="green",shape="box"];3540[label="vwx4000",fontsize=16,color="green",shape="box"];3541 -> 2173[label="",style="dashed", color="red", weight=0]; 3541[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];3541 -> 3863[label="",style="dashed", color="magenta", weight=3]; 3541 -> 3864[label="",style="dashed", color="magenta", weight=3]; 3542 -> 2174[label="",style="dashed", color="red", weight=0]; 3542[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];3542 -> 3865[label="",style="dashed", color="magenta", weight=3]; 3542 -> 3866[label="",style="dashed", color="magenta", weight=3]; 3543 -> 2175[label="",style="dashed", color="red", weight=0]; 3543[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];3543 -> 3867[label="",style="dashed", color="magenta", weight=3]; 3543 -> 3868[label="",style="dashed", color="magenta", weight=3]; 3544 -> 2176[label="",style="dashed", color="red", weight=0]; 3544[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];3544 -> 3869[label="",style="dashed", color="magenta", weight=3]; 3544 -> 3870[label="",style="dashed", color="magenta", weight=3]; 3545 -> 2177[label="",style="dashed", color="red", weight=0]; 3545[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];3545 -> 3871[label="",style="dashed", color="magenta", weight=3]; 3545 -> 3872[label="",style="dashed", color="magenta", weight=3]; 3546 -> 2178[label="",style="dashed", color="red", weight=0]; 3546[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];3546 -> 3873[label="",style="dashed", color="magenta", weight=3]; 3546 -> 3874[label="",style="dashed", color="magenta", weight=3]; 3547 -> 2179[label="",style="dashed", color="red", weight=0]; 3547[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];3547 -> 3875[label="",style="dashed", color="magenta", weight=3]; 3547 -> 3876[label="",style="dashed", color="magenta", weight=3]; 3548 -> 2180[label="",style="dashed", color="red", weight=0]; 3548[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];3548 -> 3877[label="",style="dashed", color="magenta", weight=3]; 3548 -> 3878[label="",style="dashed", color="magenta", weight=3]; 3549 -> 2181[label="",style="dashed", color="red", weight=0]; 3549[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];3549 -> 3879[label="",style="dashed", color="magenta", weight=3]; 3549 -> 3880[label="",style="dashed", color="magenta", weight=3]; 3550 -> 2182[label="",style="dashed", color="red", weight=0]; 3550[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];3550 -> 3881[label="",style="dashed", color="magenta", weight=3]; 3550 -> 3882[label="",style="dashed", color="magenta", weight=3]; 3551 -> 2183[label="",style="dashed", color="red", weight=0]; 3551[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];3551 -> 3883[label="",style="dashed", color="magenta", weight=3]; 3551 -> 3884[label="",style="dashed", color="magenta", weight=3]; 3552 -> 2184[label="",style="dashed", color="red", weight=0]; 3552[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];3552 -> 3885[label="",style="dashed", color="magenta", weight=3]; 3552 -> 3886[label="",style="dashed", color="magenta", weight=3]; 3553 -> 2185[label="",style="dashed", color="red", weight=0]; 3553[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];3553 -> 3887[label="",style="dashed", color="magenta", weight=3]; 3553 -> 3888[label="",style="dashed", color="magenta", weight=3]; 3554 -> 2186[label="",style="dashed", color="red", weight=0]; 3554[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];3554 -> 3889[label="",style="dashed", color="magenta", weight=3]; 3554 -> 3890[label="",style="dashed", color="magenta", weight=3]; 3555 -> 2173[label="",style="dashed", color="red", weight=0]; 3555[label="vwx3002 == vwx4002",fontsize=16,color="magenta"];3555 -> 3891[label="",style="dashed", color="magenta", weight=3]; 3555 -> 3892[label="",style="dashed", color="magenta", weight=3]; 3556 -> 2174[label="",style="dashed", color="red", weight=0]; 3556[label="vwx3002 == vwx4002",fontsize=16,color="magenta"];3556 -> 3893[label="",style="dashed", color="magenta", weight=3]; 3556 -> 3894[label="",style="dashed", color="magenta", weight=3]; 3557 -> 2175[label="",style="dashed", color="red", weight=0]; 3557[label="vwx3002 == vwx4002",fontsize=16,color="magenta"];3557 -> 3895[label="",style="dashed", color="magenta", weight=3]; 3557 -> 3896[label="",style="dashed", color="magenta", weight=3]; 3558 -> 2176[label="",style="dashed", color="red", weight=0]; 3558[label="vwx3002 == vwx4002",fontsize=16,color="magenta"];3558 -> 3897[label="",style="dashed", color="magenta", weight=3]; 3558 -> 3898[label="",style="dashed", color="magenta", weight=3]; 3559 -> 2177[label="",style="dashed", color="red", weight=0]; 3559[label="vwx3002 == vwx4002",fontsize=16,color="magenta"];3559 -> 3899[label="",style="dashed", color="magenta", weight=3]; 3559 -> 3900[label="",style="dashed", color="magenta", weight=3]; 3560 -> 2178[label="",style="dashed", color="red", weight=0]; 3560[label="vwx3002 == vwx4002",fontsize=16,color="magenta"];3560 -> 3901[label="",style="dashed", color="magenta", weight=3]; 3560 -> 3902[label="",style="dashed", color="magenta", weight=3]; 3561 -> 2179[label="",style="dashed", color="red", weight=0]; 3561[label="vwx3002 == vwx4002",fontsize=16,color="magenta"];3561 -> 3903[label="",style="dashed", color="magenta", weight=3]; 3561 -> 3904[label="",style="dashed", color="magenta", weight=3]; 3562 -> 2180[label="",style="dashed", color="red", weight=0]; 3562[label="vwx3002 == vwx4002",fontsize=16,color="magenta"];3562 -> 3905[label="",style="dashed", color="magenta", weight=3]; 3562 -> 3906[label="",style="dashed", color="magenta", weight=3]; 3563 -> 2181[label="",style="dashed", color="red", weight=0]; 3563[label="vwx3002 == vwx4002",fontsize=16,color="magenta"];3563 -> 3907[label="",style="dashed", color="magenta", weight=3]; 3563 -> 3908[label="",style="dashed", color="magenta", weight=3]; 3564 -> 2182[label="",style="dashed", color="red", weight=0]; 3564[label="vwx3002 == vwx4002",fontsize=16,color="magenta"];3564 -> 3909[label="",style="dashed", color="magenta", weight=3]; 3564 -> 3910[label="",style="dashed", color="magenta", weight=3]; 3565 -> 2183[label="",style="dashed", color="red", weight=0]; 3565[label="vwx3002 == vwx4002",fontsize=16,color="magenta"];3565 -> 3911[label="",style="dashed", color="magenta", weight=3]; 3565 -> 3912[label="",style="dashed", color="magenta", weight=3]; 3566 -> 2184[label="",style="dashed", color="red", weight=0]; 3566[label="vwx3002 == vwx4002",fontsize=16,color="magenta"];3566 -> 3913[label="",style="dashed", color="magenta", weight=3]; 3566 -> 3914[label="",style="dashed", color="magenta", weight=3]; 3567 -> 2185[label="",style="dashed", color="red", weight=0]; 3567[label="vwx3002 == vwx4002",fontsize=16,color="magenta"];3567 -> 3915[label="",style="dashed", color="magenta", weight=3]; 3567 -> 3916[label="",style="dashed", color="magenta", weight=3]; 3568 -> 2186[label="",style="dashed", color="red", weight=0]; 3568[label="vwx3002 == vwx4002",fontsize=16,color="magenta"];3568 -> 3917[label="",style="dashed", color="magenta", weight=3]; 3568 -> 3918[label="",style="dashed", color="magenta", weight=3]; 3569 -> 3004[label="",style="dashed", color="red", weight=0]; 3569[label="primEqNat vwx30000 vwx40000",fontsize=16,color="magenta"];3569 -> 3919[label="",style="dashed", color="magenta", weight=3]; 3569 -> 3920[label="",style="dashed", color="magenta", weight=3]; 3570[label="False",fontsize=16,color="green",shape="box"];3571[label="False",fontsize=16,color="green",shape="box"];3572[label="True",fontsize=16,color="green",shape="box"];3573[label="False",fontsize=16,color="green",shape="box"];3574[label="True",fontsize=16,color="green",shape="box"];3575 -> 3004[label="",style="dashed", color="red", weight=0]; 3575[label="primEqNat vwx30000 vwx40000",fontsize=16,color="magenta"];3575 -> 3921[label="",style="dashed", color="magenta", weight=3]; 3575 -> 3922[label="",style="dashed", color="magenta", weight=3]; 3576[label="False",fontsize=16,color="green",shape="box"];3577[label="False",fontsize=16,color="green",shape="box"];3578[label="True",fontsize=16,color="green",shape="box"];3579[label="False",fontsize=16,color="green",shape="box"];3580[label="True",fontsize=16,color="green",shape="box"];3581[label="vwx3000",fontsize=16,color="green",shape="box"];3582[label="vwx4001",fontsize=16,color="green",shape="box"];3583[label="vwx3001",fontsize=16,color="green",shape="box"];3584[label="vwx4000",fontsize=16,color="green",shape="box"];3585[label="primEqNat (Succ vwx30000) (Succ vwx40000)",fontsize=16,color="black",shape="box"];3585 -> 3923[label="",style="solid", color="black", weight=3]; 3586[label="primEqNat (Succ vwx30000) Zero",fontsize=16,color="black",shape="box"];3586 -> 3924[label="",style="solid", color="black", weight=3]; 3587[label="primEqNat Zero (Succ vwx40000)",fontsize=16,color="black",shape="box"];3587 -> 3925[label="",style="solid", color="black", weight=3]; 3588[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];3588 -> 3926[label="",style="solid", color="black", weight=3]; 3589[label="vwx3000",fontsize=16,color="green",shape="box"];3590[label="vwx4000",fontsize=16,color="green",shape="box"];3591[label="vwx3000",fontsize=16,color="green",shape="box"];3592[label="vwx4000",fontsize=16,color="green",shape="box"];3593[label="vwx3000",fontsize=16,color="green",shape="box"];3594[label="vwx4000",fontsize=16,color="green",shape="box"];3595[label="vwx3000",fontsize=16,color="green",shape="box"];3596[label="vwx4000",fontsize=16,color="green",shape="box"];3597[label="vwx3000",fontsize=16,color="green",shape="box"];3598[label="vwx4000",fontsize=16,color="green",shape="box"];3599[label="vwx3000",fontsize=16,color="green",shape="box"];3600[label="vwx4000",fontsize=16,color="green",shape="box"];3601[label="vwx3000",fontsize=16,color="green",shape="box"];3602[label="vwx4000",fontsize=16,color="green",shape="box"];3603[label="vwx3000",fontsize=16,color="green",shape="box"];3604[label="vwx4000",fontsize=16,color="green",shape="box"];3605[label="vwx3000",fontsize=16,color="green",shape="box"];3606[label="vwx4000",fontsize=16,color="green",shape="box"];3607[label="vwx3000",fontsize=16,color="green",shape="box"];3608[label="vwx4000",fontsize=16,color="green",shape="box"];3609[label="vwx3000",fontsize=16,color="green",shape="box"];3610[label="vwx4000",fontsize=16,color="green",shape="box"];3611[label="vwx3000",fontsize=16,color="green",shape="box"];3612[label="vwx4000",fontsize=16,color="green",shape="box"];3613[label="vwx3000",fontsize=16,color="green",shape="box"];3614[label="vwx4000",fontsize=16,color="green",shape="box"];3615[label="vwx3000",fontsize=16,color="green",shape="box"];3616[label="vwx4000",fontsize=16,color="green",shape="box"];3617[label="vwx3000",fontsize=16,color="green",shape="box"];3618[label="vwx4000",fontsize=16,color="green",shape="box"];3619[label="vwx3000",fontsize=16,color="green",shape="box"];3620[label="vwx4000",fontsize=16,color="green",shape="box"];3621[label="vwx3001",fontsize=16,color="green",shape="box"];3622[label="vwx4001",fontsize=16,color="green",shape="box"];3623[label="vwx3001",fontsize=16,color="green",shape="box"];3624[label="vwx4001",fontsize=16,color="green",shape="box"];3625[label="vwx3000",fontsize=16,color="green",shape="box"];3626[label="vwx4000",fontsize=16,color="green",shape="box"];3627[label="vwx3000",fontsize=16,color="green",shape="box"];3628[label="vwx4000",fontsize=16,color="green",shape="box"];3629[label="vwx3000",fontsize=16,color="green",shape="box"];3630[label="vwx4000",fontsize=16,color="green",shape="box"];3631[label="vwx3000",fontsize=16,color="green",shape="box"];3632[label="vwx4000",fontsize=16,color="green",shape="box"];3633[label="vwx3000",fontsize=16,color="green",shape="box"];3634[label="vwx4000",fontsize=16,color="green",shape="box"];3635[label="vwx3000",fontsize=16,color="green",shape="box"];3636[label="vwx4000",fontsize=16,color="green",shape="box"];3637[label="vwx3000",fontsize=16,color="green",shape="box"];3638[label="vwx4000",fontsize=16,color="green",shape="box"];3639[label="vwx3000",fontsize=16,color="green",shape="box"];3640[label="vwx4000",fontsize=16,color="green",shape="box"];3641[label="vwx3000",fontsize=16,color="green",shape="box"];3642[label="vwx4000",fontsize=16,color="green",shape="box"];3643[label="vwx3000",fontsize=16,color="green",shape="box"];3644[label="vwx4000",fontsize=16,color="green",shape="box"];3645[label="vwx3000",fontsize=16,color="green",shape="box"];3646[label="vwx4000",fontsize=16,color="green",shape="box"];3647[label="vwx3000",fontsize=16,color="green",shape="box"];3648[label="vwx4000",fontsize=16,color="green",shape="box"];3649[label="vwx3000",fontsize=16,color="green",shape="box"];3650[label="vwx4000",fontsize=16,color="green",shape="box"];3651[label="vwx3000",fontsize=16,color="green",shape="box"];3652[label="vwx4000",fontsize=16,color="green",shape="box"];3653[label="vwx3001",fontsize=16,color="green",shape="box"];3654[label="vwx4001",fontsize=16,color="green",shape="box"];3655[label="vwx3001",fontsize=16,color="green",shape="box"];3656[label="vwx4001",fontsize=16,color="green",shape="box"];3657[label="vwx3001",fontsize=16,color="green",shape="box"];3658[label="vwx4001",fontsize=16,color="green",shape="box"];3659[label="vwx3001",fontsize=16,color="green",shape="box"];3660[label="vwx4001",fontsize=16,color="green",shape="box"];3661[label="vwx3001",fontsize=16,color="green",shape="box"];3662[label="vwx4001",fontsize=16,color="green",shape="box"];3663[label="vwx3001",fontsize=16,color="green",shape="box"];3664[label="vwx4001",fontsize=16,color="green",shape="box"];3665[label="vwx3001",fontsize=16,color="green",shape="box"];3666[label="vwx4001",fontsize=16,color="green",shape="box"];3667[label="vwx3001",fontsize=16,color="green",shape="box"];3668[label="vwx4001",fontsize=16,color="green",shape="box"];3669[label="vwx3001",fontsize=16,color="green",shape="box"];3670[label="vwx4001",fontsize=16,color="green",shape="box"];3671[label="vwx3001",fontsize=16,color="green",shape="box"];3672[label="vwx4001",fontsize=16,color="green",shape="box"];3673[label="vwx3001",fontsize=16,color="green",shape="box"];3674[label="vwx4001",fontsize=16,color="green",shape="box"];3675[label="vwx3001",fontsize=16,color="green",shape="box"];3676[label="vwx4001",fontsize=16,color="green",shape="box"];3677[label="vwx3001",fontsize=16,color="green",shape="box"];3678[label="vwx4001",fontsize=16,color="green",shape="box"];3679[label="vwx3001",fontsize=16,color="green",shape="box"];3680[label="vwx4001",fontsize=16,color="green",shape="box"];3681[label="vwx3000",fontsize=16,color="green",shape="box"];3682[label="vwx4001",fontsize=16,color="green",shape="box"];3683[label="vwx3001",fontsize=16,color="green",shape="box"];3684[label="vwx4000",fontsize=16,color="green",shape="box"];3685 -> 1919[label="",style="dashed", color="red", weight=0]; 3685[label="compare vwx174 vwx175",fontsize=16,color="magenta"];3685 -> 3927[label="",style="dashed", color="magenta", weight=3]; 3685 -> 3928[label="",style="dashed", color="magenta", weight=3]; 3686 -> 1920[label="",style="dashed", color="red", weight=0]; 3686[label="compare vwx174 vwx175",fontsize=16,color="magenta"];3686 -> 3929[label="",style="dashed", color="magenta", weight=3]; 3686 -> 3930[label="",style="dashed", color="magenta", weight=3]; 3687 -> 1921[label="",style="dashed", color="red", weight=0]; 3687[label="compare vwx174 vwx175",fontsize=16,color="magenta"];3687 -> 3931[label="",style="dashed", color="magenta", weight=3]; 3687 -> 3932[label="",style="dashed", color="magenta", weight=3]; 3688[label="Left vwx1740 <= Left vwx1750",fontsize=16,color="black",shape="box"];3688 -> 3933[label="",style="solid", color="black", weight=3]; 3689[label="Left vwx1740 <= Right vwx1750",fontsize=16,color="black",shape="box"];3689 -> 3934[label="",style="solid", color="black", weight=3]; 3690[label="Right vwx1740 <= Left vwx1750",fontsize=16,color="black",shape="box"];3690 -> 3935[label="",style="solid", color="black", weight=3]; 3691[label="Right vwx1740 <= Right vwx1750",fontsize=16,color="black",shape="box"];3691 -> 3936[label="",style="solid", color="black", weight=3]; 3692[label="(vwx1740,vwx1741,vwx1742) <= (vwx1750,vwx1751,vwx1752)",fontsize=16,color="black",shape="box"];3692 -> 3937[label="",style="solid", color="black", weight=3]; 3693[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];3693 -> 3938[label="",style="solid", color="black", weight=3]; 3694[label="Nothing <= Just vwx1750",fontsize=16,color="black",shape="box"];3694 -> 3939[label="",style="solid", color="black", weight=3]; 3695[label="Just vwx1740 <= Nothing",fontsize=16,color="black",shape="box"];3695 -> 3940[label="",style="solid", color="black", weight=3]; 3696[label="Just vwx1740 <= Just vwx1750",fontsize=16,color="black",shape="box"];3696 -> 3941[label="",style="solid", color="black", weight=3]; 3697 -> 1926[label="",style="dashed", color="red", weight=0]; 3697[label="compare vwx174 vwx175",fontsize=16,color="magenta"];3697 -> 3942[label="",style="dashed", color="magenta", weight=3]; 3697 -> 3943[label="",style="dashed", color="magenta", weight=3]; 3698 -> 1927[label="",style="dashed", color="red", weight=0]; 3698[label="compare vwx174 vwx175",fontsize=16,color="magenta"];3698 -> 3944[label="",style="dashed", color="magenta", weight=3]; 3698 -> 3945[label="",style="dashed", color="magenta", weight=3]; 3699[label="(vwx1740,vwx1741) <= (vwx1750,vwx1751)",fontsize=16,color="black",shape="box"];3699 -> 3946[label="",style="solid", color="black", weight=3]; 3700 -> 1929[label="",style="dashed", color="red", weight=0]; 3700[label="compare vwx174 vwx175",fontsize=16,color="magenta"];3700 -> 3947[label="",style="dashed", color="magenta", weight=3]; 3700 -> 3948[label="",style="dashed", color="magenta", weight=3]; 3701 -> 1930[label="",style="dashed", color="red", weight=0]; 3701[label="compare vwx174 vwx175",fontsize=16,color="magenta"];3701 -> 3949[label="",style="dashed", color="magenta", weight=3]; 3701 -> 3950[label="",style="dashed", color="magenta", weight=3]; 3702[label="LT <= LT",fontsize=16,color="black",shape="box"];3702 -> 3951[label="",style="solid", color="black", weight=3]; 3703[label="LT <= EQ",fontsize=16,color="black",shape="box"];3703 -> 3952[label="",style="solid", color="black", weight=3]; 3704[label="LT <= GT",fontsize=16,color="black",shape="box"];3704 -> 3953[label="",style="solid", color="black", weight=3]; 3705[label="EQ <= LT",fontsize=16,color="black",shape="box"];3705 -> 3954[label="",style="solid", color="black", weight=3]; 3706[label="EQ <= EQ",fontsize=16,color="black",shape="box"];3706 -> 3955[label="",style="solid", color="black", weight=3]; 3707[label="EQ <= GT",fontsize=16,color="black",shape="box"];3707 -> 3956[label="",style="solid", color="black", weight=3]; 3708[label="GT <= LT",fontsize=16,color="black",shape="box"];3708 -> 3957[label="",style="solid", color="black", weight=3]; 3709[label="GT <= EQ",fontsize=16,color="black",shape="box"];3709 -> 3958[label="",style="solid", color="black", weight=3]; 3710[label="GT <= GT",fontsize=16,color="black",shape="box"];3710 -> 3959[label="",style="solid", color="black", weight=3]; 3711[label="False <= False",fontsize=16,color="black",shape="box"];3711 -> 3960[label="",style="solid", color="black", weight=3]; 3712[label="False <= True",fontsize=16,color="black",shape="box"];3712 -> 3961[label="",style="solid", color="black", weight=3]; 3713[label="True <= False",fontsize=16,color="black",shape="box"];3713 -> 3962[label="",style="solid", color="black", weight=3]; 3714[label="True <= True",fontsize=16,color="black",shape="box"];3714 -> 3963[label="",style="solid", color="black", weight=3]; 3715[label="GT",fontsize=16,color="green",shape="box"];3716[label="GT",fontsize=16,color="green",shape="box"];3717[label="vwx225",fontsize=16,color="green",shape="box"];3718[label="vwx228",fontsize=16,color="green",shape="box"];3719[label="vwx225",fontsize=16,color="green",shape="box"];3720[label="vwx228",fontsize=16,color="green",shape="box"];3721[label="vwx225",fontsize=16,color="green",shape="box"];3722[label="vwx228",fontsize=16,color="green",shape="box"];3723[label="vwx225",fontsize=16,color="green",shape="box"];3724[label="vwx228",fontsize=16,color="green",shape="box"];3725[label="vwx225",fontsize=16,color="green",shape="box"];3726[label="vwx228",fontsize=16,color="green",shape="box"];3727[label="vwx225",fontsize=16,color="green",shape="box"];3728[label="vwx228",fontsize=16,color="green",shape="box"];3729[label="vwx225",fontsize=16,color="green",shape="box"];3730[label="vwx228",fontsize=16,color="green",shape="box"];3731[label="vwx225",fontsize=16,color="green",shape="box"];3732[label="vwx228",fontsize=16,color="green",shape="box"];3733[label="vwx225",fontsize=16,color="green",shape="box"];3734[label="vwx228",fontsize=16,color="green",shape="box"];3735[label="vwx225",fontsize=16,color="green",shape="box"];3736[label="vwx228",fontsize=16,color="green",shape="box"];3737[label="vwx225",fontsize=16,color="green",shape="box"];3738[label="vwx228",fontsize=16,color="green",shape="box"];3739[label="vwx225",fontsize=16,color="green",shape="box"];3740[label="vwx228",fontsize=16,color="green",shape="box"];3741[label="vwx225",fontsize=16,color="green",shape="box"];3742[label="vwx228",fontsize=16,color="green",shape="box"];3743[label="vwx225",fontsize=16,color="green",shape="box"];3744[label="vwx228",fontsize=16,color="green",shape="box"];3752[label="vwx226 == vwx229",fontsize=16,color="blue",shape="box"];5254[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3752 -> 5254[label="",style="solid", color="blue", weight=9]; 5254 -> 3964[label="",style="solid", color="blue", weight=3]; 5255[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3752 -> 5255[label="",style="solid", color="blue", weight=9]; 5255 -> 3965[label="",style="solid", color="blue", weight=3]; 5256[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3752 -> 5256[label="",style="solid", color="blue", weight=9]; 5256 -> 3966[label="",style="solid", color="blue", weight=3]; 5257[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3752 -> 5257[label="",style="solid", color="blue", weight=9]; 5257 -> 3967[label="",style="solid", color="blue", weight=3]; 5258[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3752 -> 5258[label="",style="solid", color="blue", weight=9]; 5258 -> 3968[label="",style="solid", color="blue", weight=3]; 5259[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3752 -> 5259[label="",style="solid", color="blue", weight=9]; 5259 -> 3969[label="",style="solid", color="blue", weight=3]; 5260[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3752 -> 5260[label="",style="solid", color="blue", weight=9]; 5260 -> 3970[label="",style="solid", color="blue", weight=3]; 5261[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3752 -> 5261[label="",style="solid", color="blue", weight=9]; 5261 -> 3971[label="",style="solid", color="blue", weight=3]; 5262[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3752 -> 5262[label="",style="solid", color="blue", weight=9]; 5262 -> 3972[label="",style="solid", color="blue", weight=3]; 5263[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3752 -> 5263[label="",style="solid", color="blue", weight=9]; 5263 -> 3973[label="",style="solid", color="blue", weight=3]; 5264[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3752 -> 5264[label="",style="solid", color="blue", weight=9]; 5264 -> 3974[label="",style="solid", color="blue", weight=3]; 5265[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3752 -> 5265[label="",style="solid", color="blue", weight=9]; 5265 -> 3975[label="",style="solid", color="blue", weight=3]; 5266[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3752 -> 5266[label="",style="solid", color="blue", weight=9]; 5266 -> 3976[label="",style="solid", color="blue", weight=3]; 5267[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3752 -> 5267[label="",style="solid", color="blue", weight=9]; 5267 -> 3977[label="",style="solid", color="blue", weight=3]; 3753[label="vwx227 <= vwx230",fontsize=16,color="blue",shape="box"];5268[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3753 -> 5268[label="",style="solid", color="blue", weight=9]; 5268 -> 3978[label="",style="solid", color="blue", weight=3]; 5269[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3753 -> 5269[label="",style="solid", color="blue", weight=9]; 5269 -> 3979[label="",style="solid", color="blue", weight=3]; 5270[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3753 -> 5270[label="",style="solid", color="blue", weight=9]; 5270 -> 3980[label="",style="solid", color="blue", weight=3]; 5271[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3753 -> 5271[label="",style="solid", color="blue", weight=9]; 5271 -> 3981[label="",style="solid", color="blue", weight=3]; 5272[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3753 -> 5272[label="",style="solid", color="blue", weight=9]; 5272 -> 3982[label="",style="solid", color="blue", weight=3]; 5273[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3753 -> 5273[label="",style="solid", color="blue", weight=9]; 5273 -> 3983[label="",style="solid", color="blue", weight=3]; 5274[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3753 -> 5274[label="",style="solid", color="blue", weight=9]; 5274 -> 3984[label="",style="solid", color="blue", weight=3]; 5275[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3753 -> 5275[label="",style="solid", color="blue", weight=9]; 5275 -> 3985[label="",style="solid", color="blue", weight=3]; 5276[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3753 -> 5276[label="",style="solid", color="blue", weight=9]; 5276 -> 3986[label="",style="solid", color="blue", weight=3]; 5277[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3753 -> 5277[label="",style="solid", color="blue", weight=9]; 5277 -> 3987[label="",style="solid", color="blue", weight=3]; 5278[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3753 -> 5278[label="",style="solid", color="blue", weight=9]; 5278 -> 3988[label="",style="solid", color="blue", weight=3]; 5279[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3753 -> 5279[label="",style="solid", color="blue", weight=9]; 5279 -> 3989[label="",style="solid", color="blue", weight=3]; 5280[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3753 -> 5280[label="",style="solid", color="blue", weight=9]; 5280 -> 3990[label="",style="solid", color="blue", weight=3]; 5281[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3753 -> 5281[label="",style="solid", color="blue", weight=9]; 5281 -> 3991[label="",style="solid", color="blue", weight=3]; 3754 -> 3103[label="",style="dashed", color="red", weight=0]; 3754[label="vwx226 < vwx229",fontsize=16,color="magenta"];3754 -> 3992[label="",style="dashed", color="magenta", weight=3]; 3754 -> 3993[label="",style="dashed", color="magenta", weight=3]; 3755 -> 3104[label="",style="dashed", color="red", weight=0]; 3755[label="vwx226 < vwx229",fontsize=16,color="magenta"];3755 -> 3994[label="",style="dashed", color="magenta", weight=3]; 3755 -> 3995[label="",style="dashed", color="magenta", weight=3]; 3756 -> 3105[label="",style="dashed", color="red", weight=0]; 3756[label="vwx226 < vwx229",fontsize=16,color="magenta"];3756 -> 3996[label="",style="dashed", color="magenta", weight=3]; 3756 -> 3997[label="",style="dashed", color="magenta", weight=3]; 3757 -> 3106[label="",style="dashed", color="red", weight=0]; 3757[label="vwx226 < vwx229",fontsize=16,color="magenta"];3757 -> 3998[label="",style="dashed", color="magenta", weight=3]; 3757 -> 3999[label="",style="dashed", color="magenta", weight=3]; 3758 -> 3107[label="",style="dashed", color="red", weight=0]; 3758[label="vwx226 < vwx229",fontsize=16,color="magenta"];3758 -> 4000[label="",style="dashed", color="magenta", weight=3]; 3758 -> 4001[label="",style="dashed", color="magenta", weight=3]; 3759 -> 3108[label="",style="dashed", color="red", weight=0]; 3759[label="vwx226 < vwx229",fontsize=16,color="magenta"];3759 -> 4002[label="",style="dashed", color="magenta", weight=3]; 3759 -> 4003[label="",style="dashed", color="magenta", weight=3]; 3760 -> 3109[label="",style="dashed", color="red", weight=0]; 3760[label="vwx226 < vwx229",fontsize=16,color="magenta"];3760 -> 4004[label="",style="dashed", color="magenta", weight=3]; 3760 -> 4005[label="",style="dashed", color="magenta", weight=3]; 3761 -> 3110[label="",style="dashed", color="red", weight=0]; 3761[label="vwx226 < vwx229",fontsize=16,color="magenta"];3761 -> 4006[label="",style="dashed", color="magenta", weight=3]; 3761 -> 4007[label="",style="dashed", color="magenta", weight=3]; 3762 -> 3111[label="",style="dashed", color="red", weight=0]; 3762[label="vwx226 < vwx229",fontsize=16,color="magenta"];3762 -> 4008[label="",style="dashed", color="magenta", weight=3]; 3762 -> 4009[label="",style="dashed", color="magenta", weight=3]; 3763 -> 3112[label="",style="dashed", color="red", weight=0]; 3763[label="vwx226 < vwx229",fontsize=16,color="magenta"];3763 -> 4010[label="",style="dashed", color="magenta", weight=3]; 3763 -> 4011[label="",style="dashed", color="magenta", weight=3]; 3764 -> 3113[label="",style="dashed", color="red", weight=0]; 3764[label="vwx226 < vwx229",fontsize=16,color="magenta"];3764 -> 4012[label="",style="dashed", color="magenta", weight=3]; 3764 -> 4013[label="",style="dashed", color="magenta", weight=3]; 3765 -> 3114[label="",style="dashed", color="red", weight=0]; 3765[label="vwx226 < vwx229",fontsize=16,color="magenta"];3765 -> 4014[label="",style="dashed", color="magenta", weight=3]; 3765 -> 4015[label="",style="dashed", color="magenta", weight=3]; 3766 -> 3115[label="",style="dashed", color="red", weight=0]; 3766[label="vwx226 < vwx229",fontsize=16,color="magenta"];3766 -> 4016[label="",style="dashed", color="magenta", weight=3]; 3766 -> 4017[label="",style="dashed", color="magenta", weight=3]; 3767 -> 3116[label="",style="dashed", color="red", weight=0]; 3767[label="vwx226 < vwx229",fontsize=16,color="magenta"];3767 -> 4018[label="",style="dashed", color="magenta", weight=3]; 3767 -> 4019[label="",style="dashed", color="magenta", weight=3]; 3768[label="False || vwx316",fontsize=16,color="black",shape="box"];3768 -> 4020[label="",style="solid", color="black", weight=3]; 3769[label="True || vwx316",fontsize=16,color="black",shape="box"];3769 -> 4021[label="",style="solid", color="black", weight=3]; 3770 -> 1919[label="",style="dashed", color="red", weight=0]; 3770[label="compare vwx225 vwx228",fontsize=16,color="magenta"];3770 -> 4022[label="",style="dashed", color="magenta", weight=3]; 3770 -> 4023[label="",style="dashed", color="magenta", weight=3]; 3771[label="LT",fontsize=16,color="green",shape="box"];3772 -> 1920[label="",style="dashed", color="red", weight=0]; 3772[label="compare vwx225 vwx228",fontsize=16,color="magenta"];3772 -> 4024[label="",style="dashed", color="magenta", weight=3]; 3772 -> 4025[label="",style="dashed", color="magenta", weight=3]; 3773[label="LT",fontsize=16,color="green",shape="box"];3774 -> 1921[label="",style="dashed", color="red", weight=0]; 3774[label="compare vwx225 vwx228",fontsize=16,color="magenta"];3774 -> 4026[label="",style="dashed", color="magenta", weight=3]; 3774 -> 4027[label="",style="dashed", color="magenta", weight=3]; 3775[label="LT",fontsize=16,color="green",shape="box"];3776 -> 1922[label="",style="dashed", color="red", weight=0]; 3776[label="compare vwx225 vwx228",fontsize=16,color="magenta"];3776 -> 4028[label="",style="dashed", color="magenta", weight=3]; 3776 -> 4029[label="",style="dashed", color="magenta", weight=3]; 3777[label="LT",fontsize=16,color="green",shape="box"];3778 -> 1923[label="",style="dashed", color="red", weight=0]; 3778[label="compare vwx225 vwx228",fontsize=16,color="magenta"];3778 -> 4030[label="",style="dashed", color="magenta", weight=3]; 3778 -> 4031[label="",style="dashed", color="magenta", weight=3]; 3779[label="LT",fontsize=16,color="green",shape="box"];3780 -> 1924[label="",style="dashed", color="red", weight=0]; 3780[label="compare vwx225 vwx228",fontsize=16,color="magenta"];3780 -> 4032[label="",style="dashed", color="magenta", weight=3]; 3780 -> 4033[label="",style="dashed", color="magenta", weight=3]; 3781[label="LT",fontsize=16,color="green",shape="box"];3782 -> 1884[label="",style="dashed", color="red", weight=0]; 3782[label="compare vwx225 vwx228",fontsize=16,color="magenta"];3782 -> 4034[label="",style="dashed", color="magenta", weight=3]; 3782 -> 4035[label="",style="dashed", color="magenta", weight=3]; 3783[label="LT",fontsize=16,color="green",shape="box"];3784 -> 1926[label="",style="dashed", color="red", weight=0]; 3784[label="compare vwx225 vwx228",fontsize=16,color="magenta"];3784 -> 4036[label="",style="dashed", color="magenta", weight=3]; 3784 -> 4037[label="",style="dashed", color="magenta", weight=3]; 3785[label="LT",fontsize=16,color="green",shape="box"];3786 -> 1927[label="",style="dashed", color="red", weight=0]; 3786[label="compare vwx225 vwx228",fontsize=16,color="magenta"];3786 -> 4038[label="",style="dashed", color="magenta", weight=3]; 3786 -> 4039[label="",style="dashed", color="magenta", weight=3]; 3787[label="LT",fontsize=16,color="green",shape="box"];3788 -> 1928[label="",style="dashed", color="red", weight=0]; 3788[label="compare vwx225 vwx228",fontsize=16,color="magenta"];3788 -> 4040[label="",style="dashed", color="magenta", weight=3]; 3788 -> 4041[label="",style="dashed", color="magenta", weight=3]; 3789[label="LT",fontsize=16,color="green",shape="box"];3790 -> 1929[label="",style="dashed", color="red", weight=0]; 3790[label="compare vwx225 vwx228",fontsize=16,color="magenta"];3790 -> 4042[label="",style="dashed", color="magenta", weight=3]; 3790 -> 4043[label="",style="dashed", color="magenta", weight=3]; 3791[label="LT",fontsize=16,color="green",shape="box"];3792 -> 1930[label="",style="dashed", color="red", weight=0]; 3792[label="compare vwx225 vwx228",fontsize=16,color="magenta"];3792 -> 4044[label="",style="dashed", color="magenta", weight=3]; 3792 -> 4045[label="",style="dashed", color="magenta", weight=3]; 3793[label="LT",fontsize=16,color="green",shape="box"];3794 -> 1931[label="",style="dashed", color="red", weight=0]; 3794[label="compare vwx225 vwx228",fontsize=16,color="magenta"];3794 -> 4046[label="",style="dashed", color="magenta", weight=3]; 3794 -> 4047[label="",style="dashed", color="magenta", weight=3]; 3795[label="LT",fontsize=16,color="green",shape="box"];3796 -> 1932[label="",style="dashed", color="red", weight=0]; 3796[label="compare vwx225 vwx228",fontsize=16,color="magenta"];3796 -> 4048[label="",style="dashed", color="magenta", weight=3]; 3796 -> 4049[label="",style="dashed", color="magenta", weight=3]; 3797[label="LT",fontsize=16,color="green",shape="box"];3798[label="compare1 (vwx290,vwx291,vwx292) (vwx293,vwx294,vwx295) False",fontsize=16,color="black",shape="box"];3798 -> 4050[label="",style="solid", color="black", weight=3]; 3799[label="compare1 (vwx290,vwx291,vwx292) (vwx293,vwx294,vwx295) True",fontsize=16,color="black",shape="box"];3799 -> 4051[label="",style="solid", color="black", weight=3]; 3800[label="True",fontsize=16,color="green",shape="box"];3801[label="GT",fontsize=16,color="green",shape="box"];3802[label="vwx238",fontsize=16,color="green",shape="box"];3803[label="vwx240",fontsize=16,color="green",shape="box"];3804[label="vwx238",fontsize=16,color="green",shape="box"];3805[label="vwx240",fontsize=16,color="green",shape="box"];3806[label="vwx238",fontsize=16,color="green",shape="box"];3807[label="vwx240",fontsize=16,color="green",shape="box"];3808[label="vwx238",fontsize=16,color="green",shape="box"];3809[label="vwx240",fontsize=16,color="green",shape="box"];3810[label="vwx238",fontsize=16,color="green",shape="box"];3811[label="vwx240",fontsize=16,color="green",shape="box"];3812[label="vwx238",fontsize=16,color="green",shape="box"];3813[label="vwx240",fontsize=16,color="green",shape="box"];3814[label="vwx238",fontsize=16,color="green",shape="box"];3815[label="vwx240",fontsize=16,color="green",shape="box"];3816[label="vwx238",fontsize=16,color="green",shape="box"];3817[label="vwx240",fontsize=16,color="green",shape="box"];3818[label="vwx238",fontsize=16,color="green",shape="box"];3819[label="vwx240",fontsize=16,color="green",shape="box"];3820[label="vwx238",fontsize=16,color="green",shape="box"];3821[label="vwx240",fontsize=16,color="green",shape="box"];3822[label="vwx238",fontsize=16,color="green",shape="box"];3823[label="vwx240",fontsize=16,color="green",shape="box"];3824[label="vwx238",fontsize=16,color="green",shape="box"];3825[label="vwx240",fontsize=16,color="green",shape="box"];3826[label="vwx238",fontsize=16,color="green",shape="box"];3827[label="vwx240",fontsize=16,color="green",shape="box"];3828[label="vwx238",fontsize=16,color="green",shape="box"];3829[label="vwx240",fontsize=16,color="green",shape="box"];3830[label="vwx239",fontsize=16,color="green",shape="box"];3831[label="vwx241",fontsize=16,color="green",shape="box"];3832[label="vwx239",fontsize=16,color="green",shape="box"];3833[label="vwx241",fontsize=16,color="green",shape="box"];3834[label="vwx239",fontsize=16,color="green",shape="box"];3835[label="vwx241",fontsize=16,color="green",shape="box"];3836[label="vwx239",fontsize=16,color="green",shape="box"];3837[label="vwx241",fontsize=16,color="green",shape="box"];3838[label="vwx239",fontsize=16,color="green",shape="box"];3839[label="vwx241",fontsize=16,color="green",shape="box"];3840[label="vwx239",fontsize=16,color="green",shape="box"];3841[label="vwx241",fontsize=16,color="green",shape="box"];3842[label="vwx239",fontsize=16,color="green",shape="box"];3843[label="vwx241",fontsize=16,color="green",shape="box"];3844[label="vwx239",fontsize=16,color="green",shape="box"];3845[label="vwx241",fontsize=16,color="green",shape="box"];3846[label="vwx239",fontsize=16,color="green",shape="box"];3847[label="vwx241",fontsize=16,color="green",shape="box"];3848[label="vwx239",fontsize=16,color="green",shape="box"];3849[label="vwx241",fontsize=16,color="green",shape="box"];3850[label="vwx239",fontsize=16,color="green",shape="box"];3851[label="vwx241",fontsize=16,color="green",shape="box"];3852[label="vwx239",fontsize=16,color="green",shape="box"];3853[label="vwx241",fontsize=16,color="green",shape="box"];3854[label="vwx239",fontsize=16,color="green",shape="box"];3855[label="vwx241",fontsize=16,color="green",shape="box"];3856[label="vwx239",fontsize=16,color="green",shape="box"];3857[label="vwx241",fontsize=16,color="green",shape="box"];3858[label="compare1 (vwx305,vwx306) (vwx307,vwx308) False",fontsize=16,color="black",shape="box"];3858 -> 4052[label="",style="solid", color="black", weight=3]; 3859[label="compare1 (vwx305,vwx306) (vwx307,vwx308) True",fontsize=16,color="black",shape="box"];3859 -> 4053[label="",style="solid", color="black", weight=3]; 3860[label="True",fontsize=16,color="green",shape="box"];3862 -> 2568[label="",style="dashed", color="red", weight=0]; 3862[label="primMulNat vwx30000 (Succ vwx40100)",fontsize=16,color="magenta"];3862 -> 4054[label="",style="dashed", color="magenta", weight=3]; 3862 -> 4055[label="",style="dashed", color="magenta", weight=3]; 3861[label="primPlusNat vwx317 (Succ vwx40100)",fontsize=16,color="burlywood",shape="triangle"];5282[label="vwx317/Succ vwx3170",fontsize=10,color="white",style="solid",shape="box"];3861 -> 5282[label="",style="solid", color="burlywood", weight=9]; 5282 -> 4056[label="",style="solid", color="burlywood", weight=3]; 5283[label="vwx317/Zero",fontsize=10,color="white",style="solid",shape="box"];3861 -> 5283[label="",style="solid", color="burlywood", weight=9]; 5283 -> 4057[label="",style="solid", color="burlywood", weight=3]; 3863[label="vwx3001",fontsize=16,color="green",shape="box"];3864[label="vwx4001",fontsize=16,color="green",shape="box"];3865[label="vwx3001",fontsize=16,color="green",shape="box"];3866[label="vwx4001",fontsize=16,color="green",shape="box"];3867[label="vwx3001",fontsize=16,color="green",shape="box"];3868[label="vwx4001",fontsize=16,color="green",shape="box"];3869[label="vwx3001",fontsize=16,color="green",shape="box"];3870[label="vwx4001",fontsize=16,color="green",shape="box"];3871[label="vwx3001",fontsize=16,color="green",shape="box"];3872[label="vwx4001",fontsize=16,color="green",shape="box"];3873[label="vwx3001",fontsize=16,color="green",shape="box"];3874[label="vwx4001",fontsize=16,color="green",shape="box"];3875[label="vwx3001",fontsize=16,color="green",shape="box"];3876[label="vwx4001",fontsize=16,color="green",shape="box"];3877[label="vwx3001",fontsize=16,color="green",shape="box"];3878[label="vwx4001",fontsize=16,color="green",shape="box"];3879[label="vwx3001",fontsize=16,color="green",shape="box"];3880[label="vwx4001",fontsize=16,color="green",shape="box"];3881[label="vwx3001",fontsize=16,color="green",shape="box"];3882[label="vwx4001",fontsize=16,color="green",shape="box"];3883[label="vwx3001",fontsize=16,color="green",shape="box"];3884[label="vwx4001",fontsize=16,color="green",shape="box"];3885[label="vwx3001",fontsize=16,color="green",shape="box"];3886[label="vwx4001",fontsize=16,color="green",shape="box"];3887[label="vwx3001",fontsize=16,color="green",shape="box"];3888[label="vwx4001",fontsize=16,color="green",shape="box"];3889[label="vwx3001",fontsize=16,color="green",shape="box"];3890[label="vwx4001",fontsize=16,color="green",shape="box"];3891[label="vwx3002",fontsize=16,color="green",shape="box"];3892[label="vwx4002",fontsize=16,color="green",shape="box"];3893[label="vwx3002",fontsize=16,color="green",shape="box"];3894[label="vwx4002",fontsize=16,color="green",shape="box"];3895[label="vwx3002",fontsize=16,color="green",shape="box"];3896[label="vwx4002",fontsize=16,color="green",shape="box"];3897[label="vwx3002",fontsize=16,color="green",shape="box"];3898[label="vwx4002",fontsize=16,color="green",shape="box"];3899[label="vwx3002",fontsize=16,color="green",shape="box"];3900[label="vwx4002",fontsize=16,color="green",shape="box"];3901[label="vwx3002",fontsize=16,color="green",shape="box"];3902[label="vwx4002",fontsize=16,color="green",shape="box"];3903[label="vwx3002",fontsize=16,color="green",shape="box"];3904[label="vwx4002",fontsize=16,color="green",shape="box"];3905[label="vwx3002",fontsize=16,color="green",shape="box"];3906[label="vwx4002",fontsize=16,color="green",shape="box"];3907[label="vwx3002",fontsize=16,color="green",shape="box"];3908[label="vwx4002",fontsize=16,color="green",shape="box"];3909[label="vwx3002",fontsize=16,color="green",shape="box"];3910[label="vwx4002",fontsize=16,color="green",shape="box"];3911[label="vwx3002",fontsize=16,color="green",shape="box"];3912[label="vwx4002",fontsize=16,color="green",shape="box"];3913[label="vwx3002",fontsize=16,color="green",shape="box"];3914[label="vwx4002",fontsize=16,color="green",shape="box"];3915[label="vwx3002",fontsize=16,color="green",shape="box"];3916[label="vwx4002",fontsize=16,color="green",shape="box"];3917[label="vwx3002",fontsize=16,color="green",shape="box"];3918[label="vwx4002",fontsize=16,color="green",shape="box"];3919[label="vwx40000",fontsize=16,color="green",shape="box"];3920[label="vwx30000",fontsize=16,color="green",shape="box"];3921[label="vwx40000",fontsize=16,color="green",shape="box"];3922[label="vwx30000",fontsize=16,color="green",shape="box"];3923 -> 3004[label="",style="dashed", color="red", weight=0]; 3923[label="primEqNat vwx30000 vwx40000",fontsize=16,color="magenta"];3923 -> 4058[label="",style="dashed", color="magenta", weight=3]; 3923 -> 4059[label="",style="dashed", color="magenta", weight=3]; 3924[label="False",fontsize=16,color="green",shape="box"];3925[label="False",fontsize=16,color="green",shape="box"];3926[label="True",fontsize=16,color="green",shape="box"];3927[label="vwx174",fontsize=16,color="green",shape="box"];3928[label="vwx175",fontsize=16,color="green",shape="box"];3929[label="vwx174",fontsize=16,color="green",shape="box"];3930[label="vwx175",fontsize=16,color="green",shape="box"];3931[label="vwx174",fontsize=16,color="green",shape="box"];3932[label="vwx175",fontsize=16,color="green",shape="box"];3933[label="vwx1740 <= vwx1750",fontsize=16,color="blue",shape="box"];5284[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3933 -> 5284[label="",style="solid", color="blue", weight=9]; 5284 -> 4060[label="",style="solid", color="blue", weight=3]; 5285[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3933 -> 5285[label="",style="solid", color="blue", weight=9]; 5285 -> 4061[label="",style="solid", color="blue", weight=3]; 5286[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3933 -> 5286[label="",style="solid", color="blue", weight=9]; 5286 -> 4062[label="",style="solid", color="blue", weight=3]; 5287[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3933 -> 5287[label="",style="solid", color="blue", weight=9]; 5287 -> 4063[label="",style="solid", color="blue", weight=3]; 5288[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3933 -> 5288[label="",style="solid", color="blue", weight=9]; 5288 -> 4064[label="",style="solid", color="blue", weight=3]; 5289[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3933 -> 5289[label="",style="solid", color="blue", weight=9]; 5289 -> 4065[label="",style="solid", color="blue", weight=3]; 5290[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3933 -> 5290[label="",style="solid", color="blue", weight=9]; 5290 -> 4066[label="",style="solid", color="blue", weight=3]; 5291[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3933 -> 5291[label="",style="solid", color="blue", weight=9]; 5291 -> 4067[label="",style="solid", color="blue", weight=3]; 5292[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3933 -> 5292[label="",style="solid", color="blue", weight=9]; 5292 -> 4068[label="",style="solid", color="blue", weight=3]; 5293[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3933 -> 5293[label="",style="solid", color="blue", weight=9]; 5293 -> 4069[label="",style="solid", color="blue", weight=3]; 5294[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3933 -> 5294[label="",style="solid", color="blue", weight=9]; 5294 -> 4070[label="",style="solid", color="blue", weight=3]; 5295[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3933 -> 5295[label="",style="solid", color="blue", weight=9]; 5295 -> 4071[label="",style="solid", color="blue", weight=3]; 5296[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3933 -> 5296[label="",style="solid", color="blue", weight=9]; 5296 -> 4072[label="",style="solid", color="blue", weight=3]; 5297[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3933 -> 5297[label="",style="solid", color="blue", weight=9]; 5297 -> 4073[label="",style="solid", color="blue", weight=3]; 3934[label="True",fontsize=16,color="green",shape="box"];3935[label="False",fontsize=16,color="green",shape="box"];3936[label="vwx1740 <= vwx1750",fontsize=16,color="blue",shape="box"];5298[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3936 -> 5298[label="",style="solid", color="blue", weight=9]; 5298 -> 4074[label="",style="solid", color="blue", weight=3]; 5299[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3936 -> 5299[label="",style="solid", color="blue", weight=9]; 5299 -> 4075[label="",style="solid", color="blue", weight=3]; 5300[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3936 -> 5300[label="",style="solid", color="blue", weight=9]; 5300 -> 4076[label="",style="solid", color="blue", weight=3]; 5301[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3936 -> 5301[label="",style="solid", color="blue", weight=9]; 5301 -> 4077[label="",style="solid", color="blue", weight=3]; 5302[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3936 -> 5302[label="",style="solid", color="blue", weight=9]; 5302 -> 4078[label="",style="solid", color="blue", weight=3]; 5303[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3936 -> 5303[label="",style="solid", color="blue", weight=9]; 5303 -> 4079[label="",style="solid", color="blue", weight=3]; 5304[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3936 -> 5304[label="",style="solid", color="blue", weight=9]; 5304 -> 4080[label="",style="solid", color="blue", weight=3]; 5305[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3936 -> 5305[label="",style="solid", color="blue", weight=9]; 5305 -> 4081[label="",style="solid", color="blue", weight=3]; 5306[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3936 -> 5306[label="",style="solid", color="blue", weight=9]; 5306 -> 4082[label="",style="solid", color="blue", weight=3]; 5307[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3936 -> 5307[label="",style="solid", color="blue", weight=9]; 5307 -> 4083[label="",style="solid", color="blue", weight=3]; 5308[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3936 -> 5308[label="",style="solid", color="blue", weight=9]; 5308 -> 4084[label="",style="solid", color="blue", weight=3]; 5309[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3936 -> 5309[label="",style="solid", color="blue", weight=9]; 5309 -> 4085[label="",style="solid", color="blue", weight=3]; 5310[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3936 -> 5310[label="",style="solid", color="blue", weight=9]; 5310 -> 4086[label="",style="solid", color="blue", weight=3]; 5311[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3936 -> 5311[label="",style="solid", color="blue", weight=9]; 5311 -> 4087[label="",style="solid", color="blue", weight=3]; 3937 -> 3747[label="",style="dashed", color="red", weight=0]; 3937[label="vwx1740 < vwx1750 || vwx1740 == vwx1750 && (vwx1741 < vwx1751 || vwx1741 == vwx1751 && vwx1742 <= vwx1752)",fontsize=16,color="magenta"];3937 -> 4088[label="",style="dashed", color="magenta", weight=3]; 3937 -> 4089[label="",style="dashed", color="magenta", weight=3]; 3938[label="True",fontsize=16,color="green",shape="box"];3939[label="True",fontsize=16,color="green",shape="box"];3940[label="False",fontsize=16,color="green",shape="box"];3941[label="vwx1740 <= vwx1750",fontsize=16,color="blue",shape="box"];5312[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3941 -> 5312[label="",style="solid", color="blue", weight=9]; 5312 -> 4090[label="",style="solid", color="blue", weight=3]; 5313[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3941 -> 5313[label="",style="solid", color="blue", weight=9]; 5313 -> 4091[label="",style="solid", color="blue", weight=3]; 5314[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3941 -> 5314[label="",style="solid", color="blue", weight=9]; 5314 -> 4092[label="",style="solid", color="blue", weight=3]; 5315[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3941 -> 5315[label="",style="solid", color="blue", weight=9]; 5315 -> 4093[label="",style="solid", color="blue", weight=3]; 5316[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3941 -> 5316[label="",style="solid", color="blue", weight=9]; 5316 -> 4094[label="",style="solid", color="blue", weight=3]; 5317[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3941 -> 5317[label="",style="solid", color="blue", weight=9]; 5317 -> 4095[label="",style="solid", color="blue", weight=3]; 5318[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3941 -> 5318[label="",style="solid", color="blue", weight=9]; 5318 -> 4096[label="",style="solid", color="blue", weight=3]; 5319[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3941 -> 5319[label="",style="solid", color="blue", weight=9]; 5319 -> 4097[label="",style="solid", color="blue", weight=3]; 5320[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3941 -> 5320[label="",style="solid", color="blue", weight=9]; 5320 -> 4098[label="",style="solid", color="blue", weight=3]; 5321[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3941 -> 5321[label="",style="solid", color="blue", weight=9]; 5321 -> 4099[label="",style="solid", color="blue", weight=3]; 5322[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3941 -> 5322[label="",style="solid", color="blue", weight=9]; 5322 -> 4100[label="",style="solid", color="blue", weight=3]; 5323[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3941 -> 5323[label="",style="solid", color="blue", weight=9]; 5323 -> 4101[label="",style="solid", color="blue", weight=3]; 5324[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3941 -> 5324[label="",style="solid", color="blue", weight=9]; 5324 -> 4102[label="",style="solid", color="blue", weight=3]; 5325[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3941 -> 5325[label="",style="solid", color="blue", weight=9]; 5325 -> 4103[label="",style="solid", color="blue", weight=3]; 3942[label="vwx174",fontsize=16,color="green",shape="box"];3943[label="vwx175",fontsize=16,color="green",shape="box"];3944[label="vwx174",fontsize=16,color="green",shape="box"];3945[label="vwx175",fontsize=16,color="green",shape="box"];3946 -> 3747[label="",style="dashed", color="red", weight=0]; 3946[label="vwx1740 < vwx1750 || vwx1740 == vwx1750 && vwx1741 <= vwx1751",fontsize=16,color="magenta"];3946 -> 4104[label="",style="dashed", color="magenta", weight=3]; 3946 -> 4105[label="",style="dashed", color="magenta", weight=3]; 3947[label="vwx174",fontsize=16,color="green",shape="box"];3948[label="vwx175",fontsize=16,color="green",shape="box"];3949[label="vwx174",fontsize=16,color="green",shape="box"];3950[label="vwx175",fontsize=16,color="green",shape="box"];3951[label="True",fontsize=16,color="green",shape="box"];3952[label="True",fontsize=16,color="green",shape="box"];3953[label="True",fontsize=16,color="green",shape="box"];3954[label="False",fontsize=16,color="green",shape="box"];3955[label="True",fontsize=16,color="green",shape="box"];3956[label="True",fontsize=16,color="green",shape="box"];3957[label="False",fontsize=16,color="green",shape="box"];3958[label="False",fontsize=16,color="green",shape="box"];3959[label="True",fontsize=16,color="green",shape="box"];3960[label="True",fontsize=16,color="green",shape="box"];3961[label="True",fontsize=16,color="green",shape="box"];3962[label="False",fontsize=16,color="green",shape="box"];3963[label="True",fontsize=16,color="green",shape="box"];3964 -> 2181[label="",style="dashed", color="red", weight=0]; 3964[label="vwx226 == vwx229",fontsize=16,color="magenta"];3964 -> 4106[label="",style="dashed", color="magenta", weight=3]; 3964 -> 4107[label="",style="dashed", color="magenta", weight=3]; 3965 -> 2186[label="",style="dashed", color="red", weight=0]; 3965[label="vwx226 == vwx229",fontsize=16,color="magenta"];3965 -> 4108[label="",style="dashed", color="magenta", weight=3]; 3965 -> 4109[label="",style="dashed", color="magenta", weight=3]; 3966 -> 2176[label="",style="dashed", color="red", weight=0]; 3966[label="vwx226 == vwx229",fontsize=16,color="magenta"];3966 -> 4110[label="",style="dashed", color="magenta", weight=3]; 3966 -> 4111[label="",style="dashed", color="magenta", weight=3]; 3967 -> 2179[label="",style="dashed", color="red", weight=0]; 3967[label="vwx226 == vwx229",fontsize=16,color="magenta"];3967 -> 4112[label="",style="dashed", color="magenta", weight=3]; 3967 -> 4113[label="",style="dashed", color="magenta", weight=3]; 3968 -> 2173[label="",style="dashed", color="red", weight=0]; 3968[label="vwx226 == vwx229",fontsize=16,color="magenta"];3968 -> 4114[label="",style="dashed", color="magenta", weight=3]; 3968 -> 4115[label="",style="dashed", color="magenta", weight=3]; 3969 -> 2180[label="",style="dashed", color="red", weight=0]; 3969[label="vwx226 == vwx229",fontsize=16,color="magenta"];3969 -> 4116[label="",style="dashed", color="magenta", weight=3]; 3969 -> 4117[label="",style="dashed", color="magenta", weight=3]; 3970 -> 2178[label="",style="dashed", color="red", weight=0]; 3970[label="vwx226 == vwx229",fontsize=16,color="magenta"];3970 -> 4118[label="",style="dashed", color="magenta", weight=3]; 3970 -> 4119[label="",style="dashed", color="magenta", weight=3]; 3971 -> 2175[label="",style="dashed", color="red", weight=0]; 3971[label="vwx226 == vwx229",fontsize=16,color="magenta"];3971 -> 4120[label="",style="dashed", color="magenta", weight=3]; 3971 -> 4121[label="",style="dashed", color="magenta", weight=3]; 3972 -> 2177[label="",style="dashed", color="red", weight=0]; 3972[label="vwx226 == vwx229",fontsize=16,color="magenta"];3972 -> 4122[label="",style="dashed", color="magenta", weight=3]; 3972 -> 4123[label="",style="dashed", color="magenta", weight=3]; 3973 -> 2184[label="",style="dashed", color="red", weight=0]; 3973[label="vwx226 == vwx229",fontsize=16,color="magenta"];3973 -> 4124[label="",style="dashed", color="magenta", weight=3]; 3973 -> 4125[label="",style="dashed", color="magenta", weight=3]; 3974 -> 2185[label="",style="dashed", color="red", weight=0]; 3974[label="vwx226 == vwx229",fontsize=16,color="magenta"];3974 -> 4126[label="",style="dashed", color="magenta", weight=3]; 3974 -> 4127[label="",style="dashed", color="magenta", weight=3]; 3975 -> 2183[label="",style="dashed", color="red", weight=0]; 3975[label="vwx226 == vwx229",fontsize=16,color="magenta"];3975 -> 4128[label="",style="dashed", color="magenta", weight=3]; 3975 -> 4129[label="",style="dashed", color="magenta", weight=3]; 3976 -> 2182[label="",style="dashed", color="red", weight=0]; 3976[label="vwx226 == vwx229",fontsize=16,color="magenta"];3976 -> 4130[label="",style="dashed", color="magenta", weight=3]; 3976 -> 4131[label="",style="dashed", color="magenta", weight=3]; 3977 -> 2174[label="",style="dashed", color="red", weight=0]; 3977[label="vwx226 == vwx229",fontsize=16,color="magenta"];3977 -> 4132[label="",style="dashed", color="magenta", weight=3]; 3977 -> 4133[label="",style="dashed", color="magenta", weight=3]; 3978 -> 3050[label="",style="dashed", color="red", weight=0]; 3978[label="vwx227 <= vwx230",fontsize=16,color="magenta"];3978 -> 4134[label="",style="dashed", color="magenta", weight=3]; 3978 -> 4135[label="",style="dashed", color="magenta", weight=3]; 3979 -> 3051[label="",style="dashed", color="red", weight=0]; 3979[label="vwx227 <= vwx230",fontsize=16,color="magenta"];3979 -> 4136[label="",style="dashed", color="magenta", weight=3]; 3979 -> 4137[label="",style="dashed", color="magenta", weight=3]; 3980 -> 3052[label="",style="dashed", color="red", weight=0]; 3980[label="vwx227 <= vwx230",fontsize=16,color="magenta"];3980 -> 4138[label="",style="dashed", color="magenta", weight=3]; 3980 -> 4139[label="",style="dashed", color="magenta", weight=3]; 3981 -> 3053[label="",style="dashed", color="red", weight=0]; 3981[label="vwx227 <= vwx230",fontsize=16,color="magenta"];3981 -> 4140[label="",style="dashed", color="magenta", weight=3]; 3981 -> 4141[label="",style="dashed", color="magenta", weight=3]; 3982 -> 3054[label="",style="dashed", color="red", weight=0]; 3982[label="vwx227 <= vwx230",fontsize=16,color="magenta"];3982 -> 4142[label="",style="dashed", color="magenta", weight=3]; 3982 -> 4143[label="",style="dashed", color="magenta", weight=3]; 3983 -> 3055[label="",style="dashed", color="red", weight=0]; 3983[label="vwx227 <= vwx230",fontsize=16,color="magenta"];3983 -> 4144[label="",style="dashed", color="magenta", weight=3]; 3983 -> 4145[label="",style="dashed", color="magenta", weight=3]; 3984 -> 4[label="",style="dashed", color="red", weight=0]; 3984[label="vwx227 <= vwx230",fontsize=16,color="magenta"];3984 -> 4146[label="",style="dashed", color="magenta", weight=3]; 3984 -> 4147[label="",style="dashed", color="magenta", weight=3]; 3985 -> 3057[label="",style="dashed", color="red", weight=0]; 3985[label="vwx227 <= vwx230",fontsize=16,color="magenta"];3985 -> 4148[label="",style="dashed", color="magenta", weight=3]; 3985 -> 4149[label="",style="dashed", color="magenta", weight=3]; 3986 -> 3058[label="",style="dashed", color="red", weight=0]; 3986[label="vwx227 <= vwx230",fontsize=16,color="magenta"];3986 -> 4150[label="",style="dashed", color="magenta", weight=3]; 3986 -> 4151[label="",style="dashed", color="magenta", weight=3]; 3987 -> 3059[label="",style="dashed", color="red", weight=0]; 3987[label="vwx227 <= vwx230",fontsize=16,color="magenta"];3987 -> 4152[label="",style="dashed", color="magenta", weight=3]; 3987 -> 4153[label="",style="dashed", color="magenta", weight=3]; 3988 -> 3060[label="",style="dashed", color="red", weight=0]; 3988[label="vwx227 <= vwx230",fontsize=16,color="magenta"];3988 -> 4154[label="",style="dashed", color="magenta", weight=3]; 3988 -> 4155[label="",style="dashed", color="magenta", weight=3]; 3989 -> 3061[label="",style="dashed", color="red", weight=0]; 3989[label="vwx227 <= vwx230",fontsize=16,color="magenta"];3989 -> 4156[label="",style="dashed", color="magenta", weight=3]; 3989 -> 4157[label="",style="dashed", color="magenta", weight=3]; 3990 -> 3062[label="",style="dashed", color="red", weight=0]; 3990[label="vwx227 <= vwx230",fontsize=16,color="magenta"];3990 -> 4158[label="",style="dashed", color="magenta", weight=3]; 3990 -> 4159[label="",style="dashed", color="magenta", weight=3]; 3991 -> 3063[label="",style="dashed", color="red", weight=0]; 3991[label="vwx227 <= vwx230",fontsize=16,color="magenta"];3991 -> 4160[label="",style="dashed", color="magenta", weight=3]; 3991 -> 4161[label="",style="dashed", color="magenta", weight=3]; 3992[label="vwx229",fontsize=16,color="green",shape="box"];3993[label="vwx226",fontsize=16,color="green",shape="box"];3994[label="vwx229",fontsize=16,color="green",shape="box"];3995[label="vwx226",fontsize=16,color="green",shape="box"];3996[label="vwx229",fontsize=16,color="green",shape="box"];3997[label="vwx226",fontsize=16,color="green",shape="box"];3998[label="vwx229",fontsize=16,color="green",shape="box"];3999[label="vwx226",fontsize=16,color="green",shape="box"];4000[label="vwx229",fontsize=16,color="green",shape="box"];4001[label="vwx226",fontsize=16,color="green",shape="box"];4002[label="vwx229",fontsize=16,color="green",shape="box"];4003[label="vwx226",fontsize=16,color="green",shape="box"];4004[label="vwx229",fontsize=16,color="green",shape="box"];4005[label="vwx226",fontsize=16,color="green",shape="box"];4006[label="vwx229",fontsize=16,color="green",shape="box"];4007[label="vwx226",fontsize=16,color="green",shape="box"];4008[label="vwx229",fontsize=16,color="green",shape="box"];4009[label="vwx226",fontsize=16,color="green",shape="box"];4010[label="vwx229",fontsize=16,color="green",shape="box"];4011[label="vwx226",fontsize=16,color="green",shape="box"];4012[label="vwx229",fontsize=16,color="green",shape="box"];4013[label="vwx226",fontsize=16,color="green",shape="box"];4014[label="vwx229",fontsize=16,color="green",shape="box"];4015[label="vwx226",fontsize=16,color="green",shape="box"];4016[label="vwx229",fontsize=16,color="green",shape="box"];4017[label="vwx226",fontsize=16,color="green",shape="box"];4018[label="vwx229",fontsize=16,color="green",shape="box"];4019[label="vwx226",fontsize=16,color="green",shape="box"];4020[label="vwx316",fontsize=16,color="green",shape="box"];4021[label="True",fontsize=16,color="green",shape="box"];4022[label="vwx225",fontsize=16,color="green",shape="box"];4023[label="vwx228",fontsize=16,color="green",shape="box"];4024[label="vwx225",fontsize=16,color="green",shape="box"];4025[label="vwx228",fontsize=16,color="green",shape="box"];4026[label="vwx225",fontsize=16,color="green",shape="box"];4027[label="vwx228",fontsize=16,color="green",shape="box"];4028[label="vwx225",fontsize=16,color="green",shape="box"];4029[label="vwx228",fontsize=16,color="green",shape="box"];4030[label="vwx225",fontsize=16,color="green",shape="box"];4031[label="vwx228",fontsize=16,color="green",shape="box"];4032[label="vwx225",fontsize=16,color="green",shape="box"];4033[label="vwx228",fontsize=16,color="green",shape="box"];4034[label="vwx225",fontsize=16,color="green",shape="box"];4035[label="vwx228",fontsize=16,color="green",shape="box"];4036[label="vwx225",fontsize=16,color="green",shape="box"];4037[label="vwx228",fontsize=16,color="green",shape="box"];4038[label="vwx225",fontsize=16,color="green",shape="box"];4039[label="vwx228",fontsize=16,color="green",shape="box"];4040[label="vwx225",fontsize=16,color="green",shape="box"];4041[label="vwx228",fontsize=16,color="green",shape="box"];4042[label="vwx225",fontsize=16,color="green",shape="box"];4043[label="vwx228",fontsize=16,color="green",shape="box"];4044[label="vwx225",fontsize=16,color="green",shape="box"];4045[label="vwx228",fontsize=16,color="green",shape="box"];4046[label="vwx225",fontsize=16,color="green",shape="box"];4047[label="vwx228",fontsize=16,color="green",shape="box"];4048[label="vwx225",fontsize=16,color="green",shape="box"];4049[label="vwx228",fontsize=16,color="green",shape="box"];4050[label="compare0 (vwx290,vwx291,vwx292) (vwx293,vwx294,vwx295) otherwise",fontsize=16,color="black",shape="box"];4050 -> 4162[label="",style="solid", color="black", weight=3]; 4051[label="LT",fontsize=16,color="green",shape="box"];4052[label="compare0 (vwx305,vwx306) (vwx307,vwx308) otherwise",fontsize=16,color="black",shape="box"];4052 -> 4163[label="",style="solid", color="black", weight=3]; 4053[label="LT",fontsize=16,color="green",shape="box"];4054[label="vwx30000",fontsize=16,color="green",shape="box"];4055[label="Succ vwx40100",fontsize=16,color="green",shape="box"];4056[label="primPlusNat (Succ vwx3170) (Succ vwx40100)",fontsize=16,color="black",shape="box"];4056 -> 4164[label="",style="solid", color="black", weight=3]; 4057[label="primPlusNat Zero (Succ vwx40100)",fontsize=16,color="black",shape="box"];4057 -> 4165[label="",style="solid", color="black", weight=3]; 4058[label="vwx40000",fontsize=16,color="green",shape="box"];4059[label="vwx30000",fontsize=16,color="green",shape="box"];4060 -> 3050[label="",style="dashed", color="red", weight=0]; 4060[label="vwx1740 <= vwx1750",fontsize=16,color="magenta"];4060 -> 4166[label="",style="dashed", color="magenta", weight=3]; 4060 -> 4167[label="",style="dashed", color="magenta", weight=3]; 4061 -> 3051[label="",style="dashed", color="red", weight=0]; 4061[label="vwx1740 <= vwx1750",fontsize=16,color="magenta"];4061 -> 4168[label="",style="dashed", color="magenta", weight=3]; 4061 -> 4169[label="",style="dashed", color="magenta", weight=3]; 4062 -> 3052[label="",style="dashed", color="red", weight=0]; 4062[label="vwx1740 <= vwx1750",fontsize=16,color="magenta"];4062 -> 4170[label="",style="dashed", color="magenta", weight=3]; 4062 -> 4171[label="",style="dashed", color="magenta", weight=3]; 4063 -> 3053[label="",style="dashed", color="red", weight=0]; 4063[label="vwx1740 <= vwx1750",fontsize=16,color="magenta"];4063 -> 4172[label="",style="dashed", color="magenta", weight=3]; 4063 -> 4173[label="",style="dashed", color="magenta", weight=3]; 4064 -> 3054[label="",style="dashed", color="red", weight=0]; 4064[label="vwx1740 <= vwx1750",fontsize=16,color="magenta"];4064 -> 4174[label="",style="dashed", color="magenta", weight=3]; 4064 -> 4175[label="",style="dashed", color="magenta", weight=3]; 4065 -> 3055[label="",style="dashed", color="red", weight=0]; 4065[label="vwx1740 <= vwx1750",fontsize=16,color="magenta"];4065 -> 4176[label="",style="dashed", color="magenta", weight=3]; 4065 -> 4177[label="",style="dashed", color="magenta", weight=3]; 4066 -> 4[label="",style="dashed", color="red", weight=0]; 4066[label="vwx1740 <= vwx1750",fontsize=16,color="magenta"];4066 -> 4178[label="",style="dashed", color="magenta", weight=3]; 4066 -> 4179[label="",style="dashed", color="magenta", weight=3]; 4067 -> 3057[label="",style="dashed", color="red", weight=0]; 4067[label="vwx1740 <= vwx1750",fontsize=16,color="magenta"];4067 -> 4180[label="",style="dashed", color="magenta", weight=3]; 4067 -> 4181[label="",style="dashed", color="magenta", weight=3]; 4068 -> 3058[label="",style="dashed", color="red", weight=0]; 4068[label="vwx1740 <= vwx1750",fontsize=16,color="magenta"];4068 -> 4182[label="",style="dashed", color="magenta", weight=3]; 4068 -> 4183[label="",style="dashed", color="magenta", weight=3]; 4069 -> 3059[label="",style="dashed", color="red", weight=0]; 4069[label="vwx1740 <= vwx1750",fontsize=16,color="magenta"];4069 -> 4184[label="",style="dashed", color="magenta", weight=3]; 4069 -> 4185[label="",style="dashed", color="magenta", weight=3]; 4070 -> 3060[label="",style="dashed", color="red", weight=0]; 4070[label="vwx1740 <= vwx1750",fontsize=16,color="magenta"];4070 -> 4186[label="",style="dashed", color="magenta", weight=3]; 4070 -> 4187[label="",style="dashed", color="magenta", weight=3]; 4071 -> 3061[label="",style="dashed", color="red", weight=0]; 4071[label="vwx1740 <= vwx1750",fontsize=16,color="magenta"];4071 -> 4188[label="",style="dashed", color="magenta", weight=3]; 4071 -> 4189[label="",style="dashed", color="magenta", weight=3]; 4072 -> 3062[label="",style="dashed", color="red", weight=0]; 4072[label="vwx1740 <= vwx1750",fontsize=16,color="magenta"];4072 -> 4190[label="",style="dashed", color="magenta", weight=3]; 4072 -> 4191[label="",style="dashed", color="magenta", weight=3]; 4073 -> 3063[label="",style="dashed", color="red", weight=0]; 4073[label="vwx1740 <= vwx1750",fontsize=16,color="magenta"];4073 -> 4192[label="",style="dashed", color="magenta", weight=3]; 4073 -> 4193[label="",style="dashed", color="magenta", weight=3]; 4074 -> 3050[label="",style="dashed", color="red", weight=0]; 4074[label="vwx1740 <= vwx1750",fontsize=16,color="magenta"];4074 -> 4194[label="",style="dashed", color="magenta", weight=3]; 4074 -> 4195[label="",style="dashed", color="magenta", weight=3]; 4075 -> 3051[label="",style="dashed", color="red", weight=0]; 4075[label="vwx1740 <= vwx1750",fontsize=16,color="magenta"];4075 -> 4196[label="",style="dashed", color="magenta", weight=3]; 4075 -> 4197[label="",style="dashed", color="magenta", weight=3]; 4076 -> 3052[label="",style="dashed", color="red", weight=0]; 4076[label="vwx1740 <= vwx1750",fontsize=16,color="magenta"];4076 -> 4198[label="",style="dashed", color="magenta", weight=3]; 4076 -> 4199[label="",style="dashed", color="magenta", weight=3]; 4077 -> 3053[label="",style="dashed", color="red", weight=0]; 4077[label="vwx1740 <= vwx1750",fontsize=16,color="magenta"];4077 -> 4200[label="",style="dashed", color="magenta", weight=3]; 4077 -> 4201[label="",style="dashed", color="magenta", weight=3]; 4078 -> 3054[label="",style="dashed", color="red", weight=0]; 4078[label="vwx1740 <= vwx1750",fontsize=16,color="magenta"];4078 -> 4202[label="",style="dashed", color="magenta", weight=3]; 4078 -> 4203[label="",style="dashed", color="magenta", weight=3]; 4079 -> 3055[label="",style="dashed", color="red", weight=0]; 4079[label="vwx1740 <= vwx1750",fontsize=16,color="magenta"];4079 -> 4204[label="",style="dashed", color="magenta", weight=3]; 4079 -> 4205[label="",style="dashed", color="magenta", weight=3]; 4080 -> 4[label="",style="dashed", color="red", weight=0]; 4080[label="vwx1740 <= vwx1750",fontsize=16,color="magenta"];4080 -> 4206[label="",style="dashed", color="magenta", weight=3]; 4080 -> 4207[label="",style="dashed", color="magenta", weight=3]; 4081 -> 3057[label="",style="dashed", color="red", weight=0]; 4081[label="vwx1740 <= vwx1750",fontsize=16,color="magenta"];4081 -> 4208[label="",style="dashed", color="magenta", weight=3]; 4081 -> 4209[label="",style="dashed", color="magenta", weight=3]; 4082 -> 3058[label="",style="dashed", color="red", weight=0]; 4082[label="vwx1740 <= vwx1750",fontsize=16,color="magenta"];4082 -> 4210[label="",style="dashed", color="magenta", weight=3]; 4082 -> 4211[label="",style="dashed", color="magenta", weight=3]; 4083 -> 3059[label="",style="dashed", color="red", weight=0]; 4083[label="vwx1740 <= vwx1750",fontsize=16,color="magenta"];4083 -> 4212[label="",style="dashed", color="magenta", weight=3]; 4083 -> 4213[label="",style="dashed", color="magenta", weight=3]; 4084 -> 3060[label="",style="dashed", color="red", weight=0]; 4084[label="vwx1740 <= vwx1750",fontsize=16,color="magenta"];4084 -> 4214[label="",style="dashed", color="magenta", weight=3]; 4084 -> 4215[label="",style="dashed", color="magenta", weight=3]; 4085 -> 3061[label="",style="dashed", color="red", weight=0]; 4085[label="vwx1740 <= vwx1750",fontsize=16,color="magenta"];4085 -> 4216[label="",style="dashed", color="magenta", weight=3]; 4085 -> 4217[label="",style="dashed", color="magenta", weight=3]; 4086 -> 3062[label="",style="dashed", color="red", weight=0]; 4086[label="vwx1740 <= vwx1750",fontsize=16,color="magenta"];4086 -> 4218[label="",style="dashed", color="magenta", weight=3]; 4086 -> 4219[label="",style="dashed", color="magenta", weight=3]; 4087 -> 3063[label="",style="dashed", color="red", weight=0]; 4087[label="vwx1740 <= vwx1750",fontsize=16,color="magenta"];4087 -> 4220[label="",style="dashed", color="magenta", weight=3]; 4087 -> 4221[label="",style="dashed", color="magenta", weight=3]; 4088 -> 2732[label="",style="dashed", color="red", weight=0]; 4088[label="vwx1740 == vwx1750 && (vwx1741 < vwx1751 || vwx1741 == vwx1751 && vwx1742 <= vwx1752)",fontsize=16,color="magenta"];4088 -> 4222[label="",style="dashed", color="magenta", weight=3]; 4088 -> 4223[label="",style="dashed", color="magenta", weight=3]; 4089[label="vwx1740 < vwx1750",fontsize=16,color="blue",shape="box"];5326[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4089 -> 5326[label="",style="solid", color="blue", weight=9]; 5326 -> 4224[label="",style="solid", color="blue", weight=3]; 5327[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];4089 -> 5327[label="",style="solid", color="blue", weight=9]; 5327 -> 4225[label="",style="solid", color="blue", weight=3]; 5328[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];4089 -> 5328[label="",style="solid", color="blue", weight=9]; 5328 -> 4226[label="",style="solid", color="blue", weight=3]; 5329[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4089 -> 5329[label="",style="solid", color="blue", weight=9]; 5329 -> 4227[label="",style="solid", color="blue", weight=3]; 5330[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4089 -> 5330[label="",style="solid", color="blue", weight=9]; 5330 -> 4228[label="",style="solid", color="blue", weight=3]; 5331[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4089 -> 5331[label="",style="solid", color="blue", weight=9]; 5331 -> 4229[label="",style="solid", color="blue", weight=3]; 5332[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4089 -> 5332[label="",style="solid", color="blue", weight=9]; 5332 -> 4230[label="",style="solid", color="blue", weight=3]; 5333[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];4089 -> 5333[label="",style="solid", color="blue", weight=9]; 5333 -> 4231[label="",style="solid", color="blue", weight=3]; 5334[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];4089 -> 5334[label="",style="solid", color="blue", weight=9]; 5334 -> 4232[label="",style="solid", color="blue", weight=3]; 5335[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4089 -> 5335[label="",style="solid", color="blue", weight=9]; 5335 -> 4233[label="",style="solid", color="blue", weight=3]; 5336[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];4089 -> 5336[label="",style="solid", color="blue", weight=9]; 5336 -> 4234[label="",style="solid", color="blue", weight=3]; 5337[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];4089 -> 5337[label="",style="solid", color="blue", weight=9]; 5337 -> 4235[label="",style="solid", color="blue", weight=3]; 5338[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];4089 -> 5338[label="",style="solid", color="blue", weight=9]; 5338 -> 4236[label="",style="solid", color="blue", weight=3]; 5339[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];4089 -> 5339[label="",style="solid", color="blue", weight=9]; 5339 -> 4237[label="",style="solid", color="blue", weight=3]; 4090 -> 3050[label="",style="dashed", color="red", weight=0]; 4090[label="vwx1740 <= vwx1750",fontsize=16,color="magenta"];4090 -> 4238[label="",style="dashed", color="magenta", weight=3]; 4090 -> 4239[label="",style="dashed", color="magenta", weight=3]; 4091 -> 3051[label="",style="dashed", color="red", weight=0]; 4091[label="vwx1740 <= vwx1750",fontsize=16,color="magenta"];4091 -> 4240[label="",style="dashed", color="magenta", weight=3]; 4091 -> 4241[label="",style="dashed", color="magenta", weight=3]; 4092 -> 3052[label="",style="dashed", color="red", weight=0]; 4092[label="vwx1740 <= vwx1750",fontsize=16,color="magenta"];4092 -> 4242[label="",style="dashed", color="magenta", weight=3]; 4092 -> 4243[label="",style="dashed", color="magenta", weight=3]; 4093 -> 3053[label="",style="dashed", color="red", weight=0]; 4093[label="vwx1740 <= vwx1750",fontsize=16,color="magenta"];4093 -> 4244[label="",style="dashed", color="magenta", weight=3]; 4093 -> 4245[label="",style="dashed", color="magenta", weight=3]; 4094 -> 3054[label="",style="dashed", color="red", weight=0]; 4094[label="vwx1740 <= vwx1750",fontsize=16,color="magenta"];4094 -> 4246[label="",style="dashed", color="magenta", weight=3]; 4094 -> 4247[label="",style="dashed", color="magenta", weight=3]; 4095 -> 3055[label="",style="dashed", color="red", weight=0]; 4095[label="vwx1740 <= vwx1750",fontsize=16,color="magenta"];4095 -> 4248[label="",style="dashed", color="magenta", weight=3]; 4095 -> 4249[label="",style="dashed", color="magenta", weight=3]; 4096 -> 4[label="",style="dashed", color="red", weight=0]; 4096[label="vwx1740 <= vwx1750",fontsize=16,color="magenta"];4096 -> 4250[label="",style="dashed", color="magenta", weight=3]; 4096 -> 4251[label="",style="dashed", color="magenta", weight=3]; 4097 -> 3057[label="",style="dashed", color="red", weight=0]; 4097[label="vwx1740 <= vwx1750",fontsize=16,color="magenta"];4097 -> 4252[label="",style="dashed", color="magenta", weight=3]; 4097 -> 4253[label="",style="dashed", color="magenta", weight=3]; 4098 -> 3058[label="",style="dashed", color="red", weight=0]; 4098[label="vwx1740 <= vwx1750",fontsize=16,color="magenta"];4098 -> 4254[label="",style="dashed", color="magenta", weight=3]; 4098 -> 4255[label="",style="dashed", color="magenta", weight=3]; 4099 -> 3059[label="",style="dashed", color="red", weight=0]; 4099[label="vwx1740 <= vwx1750",fontsize=16,color="magenta"];4099 -> 4256[label="",style="dashed", color="magenta", weight=3]; 4099 -> 4257[label="",style="dashed", color="magenta", weight=3]; 4100 -> 3060[label="",style="dashed", color="red", weight=0]; 4100[label="vwx1740 <= vwx1750",fontsize=16,color="magenta"];4100 -> 4258[label="",style="dashed", color="magenta", weight=3]; 4100 -> 4259[label="",style="dashed", color="magenta", weight=3]; 4101 -> 3061[label="",style="dashed", color="red", weight=0]; 4101[label="vwx1740 <= vwx1750",fontsize=16,color="magenta"];4101 -> 4260[label="",style="dashed", color="magenta", weight=3]; 4101 -> 4261[label="",style="dashed", color="magenta", weight=3]; 4102 -> 3062[label="",style="dashed", color="red", weight=0]; 4102[label="vwx1740 <= vwx1750",fontsize=16,color="magenta"];4102 -> 4262[label="",style="dashed", color="magenta", weight=3]; 4102 -> 4263[label="",style="dashed", color="magenta", weight=3]; 4103 -> 3063[label="",style="dashed", color="red", weight=0]; 4103[label="vwx1740 <= vwx1750",fontsize=16,color="magenta"];4103 -> 4264[label="",style="dashed", color="magenta", weight=3]; 4103 -> 4265[label="",style="dashed", color="magenta", weight=3]; 4104 -> 2732[label="",style="dashed", color="red", weight=0]; 4104[label="vwx1740 == vwx1750 && vwx1741 <= vwx1751",fontsize=16,color="magenta"];4104 -> 4266[label="",style="dashed", color="magenta", weight=3]; 4104 -> 4267[label="",style="dashed", color="magenta", weight=3]; 4105[label="vwx1740 < vwx1750",fontsize=16,color="blue",shape="box"];5340[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4105 -> 5340[label="",style="solid", color="blue", weight=9]; 5340 -> 4268[label="",style="solid", color="blue", weight=3]; 5341[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];4105 -> 5341[label="",style="solid", color="blue", weight=9]; 5341 -> 4269[label="",style="solid", color="blue", weight=3]; 5342[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];4105 -> 5342[label="",style="solid", color="blue", weight=9]; 5342 -> 4270[label="",style="solid", color="blue", weight=3]; 5343[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4105 -> 5343[label="",style="solid", color="blue", weight=9]; 5343 -> 4271[label="",style="solid", color="blue", weight=3]; 5344[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4105 -> 5344[label="",style="solid", color="blue", weight=9]; 5344 -> 4272[label="",style="solid", color="blue", weight=3]; 5345[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4105 -> 5345[label="",style="solid", color="blue", weight=9]; 5345 -> 4273[label="",style="solid", color="blue", weight=3]; 5346[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4105 -> 5346[label="",style="solid", color="blue", weight=9]; 5346 -> 4274[label="",style="solid", color="blue", weight=3]; 5347[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];4105 -> 5347[label="",style="solid", color="blue", weight=9]; 5347 -> 4275[label="",style="solid", color="blue", weight=3]; 5348[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];4105 -> 5348[label="",style="solid", color="blue", weight=9]; 5348 -> 4276[label="",style="solid", color="blue", weight=3]; 5349[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4105 -> 5349[label="",style="solid", color="blue", weight=9]; 5349 -> 4277[label="",style="solid", color="blue", weight=3]; 5350[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];4105 -> 5350[label="",style="solid", color="blue", weight=9]; 5350 -> 4278[label="",style="solid", color="blue", weight=3]; 5351[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];4105 -> 5351[label="",style="solid", color="blue", weight=9]; 5351 -> 4279[label="",style="solid", color="blue", weight=3]; 5352[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];4105 -> 5352[label="",style="solid", color="blue", weight=9]; 5352 -> 4280[label="",style="solid", color="blue", weight=3]; 5353[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];4105 -> 5353[label="",style="solid", color="blue", weight=9]; 5353 -> 4281[label="",style="solid", color="blue", weight=3]; 4106[label="vwx226",fontsize=16,color="green",shape="box"];4107[label="vwx229",fontsize=16,color="green",shape="box"];4108[label="vwx226",fontsize=16,color="green",shape="box"];4109[label="vwx229",fontsize=16,color="green",shape="box"];4110[label="vwx226",fontsize=16,color="green",shape="box"];4111[label="vwx229",fontsize=16,color="green",shape="box"];4112[label="vwx226",fontsize=16,color="green",shape="box"];4113[label="vwx229",fontsize=16,color="green",shape="box"];4114[label="vwx226",fontsize=16,color="green",shape="box"];4115[label="vwx229",fontsize=16,color="green",shape="box"];4116[label="vwx226",fontsize=16,color="green",shape="box"];4117[label="vwx229",fontsize=16,color="green",shape="box"];4118[label="vwx226",fontsize=16,color="green",shape="box"];4119[label="vwx229",fontsize=16,color="green",shape="box"];4120[label="vwx226",fontsize=16,color="green",shape="box"];4121[label="vwx229",fontsize=16,color="green",shape="box"];4122[label="vwx226",fontsize=16,color="green",shape="box"];4123[label="vwx229",fontsize=16,color="green",shape="box"];4124[label="vwx226",fontsize=16,color="green",shape="box"];4125[label="vwx229",fontsize=16,color="green",shape="box"];4126[label="vwx226",fontsize=16,color="green",shape="box"];4127[label="vwx229",fontsize=16,color="green",shape="box"];4128[label="vwx226",fontsize=16,color="green",shape="box"];4129[label="vwx229",fontsize=16,color="green",shape="box"];4130[label="vwx226",fontsize=16,color="green",shape="box"];4131[label="vwx229",fontsize=16,color="green",shape="box"];4132[label="vwx226",fontsize=16,color="green",shape="box"];4133[label="vwx229",fontsize=16,color="green",shape="box"];4134[label="vwx227",fontsize=16,color="green",shape="box"];4135[label="vwx230",fontsize=16,color="green",shape="box"];4136[label="vwx227",fontsize=16,color="green",shape="box"];4137[label="vwx230",fontsize=16,color="green",shape="box"];4138[label="vwx227",fontsize=16,color="green",shape="box"];4139[label="vwx230",fontsize=16,color="green",shape="box"];4140[label="vwx227",fontsize=16,color="green",shape="box"];4141[label="vwx230",fontsize=16,color="green",shape="box"];4142[label="vwx227",fontsize=16,color="green",shape="box"];4143[label="vwx230",fontsize=16,color="green",shape="box"];4144[label="vwx227",fontsize=16,color="green",shape="box"];4145[label="vwx230",fontsize=16,color="green",shape="box"];4146[label="vwx227",fontsize=16,color="green",shape="box"];4147[label="vwx230",fontsize=16,color="green",shape="box"];4148[label="vwx227",fontsize=16,color="green",shape="box"];4149[label="vwx230",fontsize=16,color="green",shape="box"];4150[label="vwx227",fontsize=16,color="green",shape="box"];4151[label="vwx230",fontsize=16,color="green",shape="box"];4152[label="vwx227",fontsize=16,color="green",shape="box"];4153[label="vwx230",fontsize=16,color="green",shape="box"];4154[label="vwx227",fontsize=16,color="green",shape="box"];4155[label="vwx230",fontsize=16,color="green",shape="box"];4156[label="vwx227",fontsize=16,color="green",shape="box"];4157[label="vwx230",fontsize=16,color="green",shape="box"];4158[label="vwx227",fontsize=16,color="green",shape="box"];4159[label="vwx230",fontsize=16,color="green",shape="box"];4160[label="vwx227",fontsize=16,color="green",shape="box"];4161[label="vwx230",fontsize=16,color="green",shape="box"];4162[label="compare0 (vwx290,vwx291,vwx292) (vwx293,vwx294,vwx295) True",fontsize=16,color="black",shape="box"];4162 -> 4282[label="",style="solid", color="black", weight=3]; 4163[label="compare0 (vwx305,vwx306) (vwx307,vwx308) True",fontsize=16,color="black",shape="box"];4163 -> 4283[label="",style="solid", color="black", weight=3]; 4164[label="Succ (Succ (primPlusNat vwx3170 vwx40100))",fontsize=16,color="green",shape="box"];4164 -> 4284[label="",style="dashed", color="green", weight=3]; 4165[label="Succ vwx40100",fontsize=16,color="green",shape="box"];4166[label="vwx1740",fontsize=16,color="green",shape="box"];4167[label="vwx1750",fontsize=16,color="green",shape="box"];4168[label="vwx1740",fontsize=16,color="green",shape="box"];4169[label="vwx1750",fontsize=16,color="green",shape="box"];4170[label="vwx1740",fontsize=16,color="green",shape="box"];4171[label="vwx1750",fontsize=16,color="green",shape="box"];4172[label="vwx1740",fontsize=16,color="green",shape="box"];4173[label="vwx1750",fontsize=16,color="green",shape="box"];4174[label="vwx1740",fontsize=16,color="green",shape="box"];4175[label="vwx1750",fontsize=16,color="green",shape="box"];4176[label="vwx1740",fontsize=16,color="green",shape="box"];4177[label="vwx1750",fontsize=16,color="green",shape="box"];4178[label="vwx1740",fontsize=16,color="green",shape="box"];4179[label="vwx1750",fontsize=16,color="green",shape="box"];4180[label="vwx1740",fontsize=16,color="green",shape="box"];4181[label="vwx1750",fontsize=16,color="green",shape="box"];4182[label="vwx1740",fontsize=16,color="green",shape="box"];4183[label="vwx1750",fontsize=16,color="green",shape="box"];4184[label="vwx1740",fontsize=16,color="green",shape="box"];4185[label="vwx1750",fontsize=16,color="green",shape="box"];4186[label="vwx1740",fontsize=16,color="green",shape="box"];4187[label="vwx1750",fontsize=16,color="green",shape="box"];4188[label="vwx1740",fontsize=16,color="green",shape="box"];4189[label="vwx1750",fontsize=16,color="green",shape="box"];4190[label="vwx1740",fontsize=16,color="green",shape="box"];4191[label="vwx1750",fontsize=16,color="green",shape="box"];4192[label="vwx1740",fontsize=16,color="green",shape="box"];4193[label="vwx1750",fontsize=16,color="green",shape="box"];4194[label="vwx1740",fontsize=16,color="green",shape="box"];4195[label="vwx1750",fontsize=16,color="green",shape="box"];4196[label="vwx1740",fontsize=16,color="green",shape="box"];4197[label="vwx1750",fontsize=16,color="green",shape="box"];4198[label="vwx1740",fontsize=16,color="green",shape="box"];4199[label="vwx1750",fontsize=16,color="green",shape="box"];4200[label="vwx1740",fontsize=16,color="green",shape="box"];4201[label="vwx1750",fontsize=16,color="green",shape="box"];4202[label="vwx1740",fontsize=16,color="green",shape="box"];4203[label="vwx1750",fontsize=16,color="green",shape="box"];4204[label="vwx1740",fontsize=16,color="green",shape="box"];4205[label="vwx1750",fontsize=16,color="green",shape="box"];4206[label="vwx1740",fontsize=16,color="green",shape="box"];4207[label="vwx1750",fontsize=16,color="green",shape="box"];4208[label="vwx1740",fontsize=16,color="green",shape="box"];4209[label="vwx1750",fontsize=16,color="green",shape="box"];4210[label="vwx1740",fontsize=16,color="green",shape="box"];4211[label="vwx1750",fontsize=16,color="green",shape="box"];4212[label="vwx1740",fontsize=16,color="green",shape="box"];4213[label="vwx1750",fontsize=16,color="green",shape="box"];4214[label="vwx1740",fontsize=16,color="green",shape="box"];4215[label="vwx1750",fontsize=16,color="green",shape="box"];4216[label="vwx1740",fontsize=16,color="green",shape="box"];4217[label="vwx1750",fontsize=16,color="green",shape="box"];4218[label="vwx1740",fontsize=16,color="green",shape="box"];4219[label="vwx1750",fontsize=16,color="green",shape="box"];4220[label="vwx1740",fontsize=16,color="green",shape="box"];4221[label="vwx1750",fontsize=16,color="green",shape="box"];4222[label="vwx1740 == vwx1750",fontsize=16,color="blue",shape="box"];5354[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4222 -> 5354[label="",style="solid", color="blue", weight=9]; 5354 -> 4285[label="",style="solid", color="blue", weight=3]; 5355[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];4222 -> 5355[label="",style="solid", color="blue", weight=9]; 5355 -> 4286[label="",style="solid", color="blue", weight=3]; 5356[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];4222 -> 5356[label="",style="solid", color="blue", weight=9]; 5356 -> 4287[label="",style="solid", color="blue", weight=3]; 5357[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4222 -> 5357[label="",style="solid", color="blue", weight=9]; 5357 -> 4288[label="",style="solid", color="blue", weight=3]; 5358[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4222 -> 5358[label="",style="solid", color="blue", weight=9]; 5358 -> 4289[label="",style="solid", color="blue", weight=3]; 5359[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4222 -> 5359[label="",style="solid", color="blue", weight=9]; 5359 -> 4290[label="",style="solid", color="blue", weight=3]; 5360[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4222 -> 5360[label="",style="solid", color="blue", weight=9]; 5360 -> 4291[label="",style="solid", color="blue", weight=3]; 5361[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];4222 -> 5361[label="",style="solid", color="blue", weight=9]; 5361 -> 4292[label="",style="solid", color="blue", weight=3]; 5362[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];4222 -> 5362[label="",style="solid", color="blue", weight=9]; 5362 -> 4293[label="",style="solid", color="blue", weight=3]; 5363[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4222 -> 5363[label="",style="solid", color="blue", weight=9]; 5363 -> 4294[label="",style="solid", color="blue", weight=3]; 5364[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];4222 -> 5364[label="",style="solid", color="blue", weight=9]; 5364 -> 4295[label="",style="solid", color="blue", weight=3]; 5365[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];4222 -> 5365[label="",style="solid", color="blue", weight=9]; 5365 -> 4296[label="",style="solid", color="blue", weight=3]; 5366[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];4222 -> 5366[label="",style="solid", color="blue", weight=9]; 5366 -> 4297[label="",style="solid", color="blue", weight=3]; 5367[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];4222 -> 5367[label="",style="solid", color="blue", weight=9]; 5367 -> 4298[label="",style="solid", color="blue", weight=3]; 4223 -> 3747[label="",style="dashed", color="red", weight=0]; 4223[label="vwx1741 < vwx1751 || vwx1741 == vwx1751 && vwx1742 <= vwx1752",fontsize=16,color="magenta"];4223 -> 4299[label="",style="dashed", color="magenta", weight=3]; 4223 -> 4300[label="",style="dashed", color="magenta", weight=3]; 4224 -> 3103[label="",style="dashed", color="red", weight=0]; 4224[label="vwx1740 < vwx1750",fontsize=16,color="magenta"];4224 -> 4301[label="",style="dashed", color="magenta", weight=3]; 4224 -> 4302[label="",style="dashed", color="magenta", weight=3]; 4225 -> 3104[label="",style="dashed", color="red", weight=0]; 4225[label="vwx1740 < vwx1750",fontsize=16,color="magenta"];4225 -> 4303[label="",style="dashed", color="magenta", weight=3]; 4225 -> 4304[label="",style="dashed", color="magenta", weight=3]; 4226 -> 3105[label="",style="dashed", color="red", weight=0]; 4226[label="vwx1740 < vwx1750",fontsize=16,color="magenta"];4226 -> 4305[label="",style="dashed", color="magenta", weight=3]; 4226 -> 4306[label="",style="dashed", color="magenta", weight=3]; 4227 -> 3106[label="",style="dashed", color="red", weight=0]; 4227[label="vwx1740 < vwx1750",fontsize=16,color="magenta"];4227 -> 4307[label="",style="dashed", color="magenta", weight=3]; 4227 -> 4308[label="",style="dashed", color="magenta", weight=3]; 4228 -> 3107[label="",style="dashed", color="red", weight=0]; 4228[label="vwx1740 < vwx1750",fontsize=16,color="magenta"];4228 -> 4309[label="",style="dashed", color="magenta", weight=3]; 4228 -> 4310[label="",style="dashed", color="magenta", weight=3]; 4229 -> 3108[label="",style="dashed", color="red", weight=0]; 4229[label="vwx1740 < vwx1750",fontsize=16,color="magenta"];4229 -> 4311[label="",style="dashed", color="magenta", weight=3]; 4229 -> 4312[label="",style="dashed", color="magenta", weight=3]; 4230 -> 3109[label="",style="dashed", color="red", weight=0]; 4230[label="vwx1740 < vwx1750",fontsize=16,color="magenta"];4230 -> 4313[label="",style="dashed", color="magenta", weight=3]; 4230 -> 4314[label="",style="dashed", color="magenta", weight=3]; 4231 -> 3110[label="",style="dashed", color="red", weight=0]; 4231[label="vwx1740 < vwx1750",fontsize=16,color="magenta"];4231 -> 4315[label="",style="dashed", color="magenta", weight=3]; 4231 -> 4316[label="",style="dashed", color="magenta", weight=3]; 4232 -> 3111[label="",style="dashed", color="red", weight=0]; 4232[label="vwx1740 < vwx1750",fontsize=16,color="magenta"];4232 -> 4317[label="",style="dashed", color="magenta", weight=3]; 4232 -> 4318[label="",style="dashed", color="magenta", weight=3]; 4233 -> 3112[label="",style="dashed", color="red", weight=0]; 4233[label="vwx1740 < vwx1750",fontsize=16,color="magenta"];4233 -> 4319[label="",style="dashed", color="magenta", weight=3]; 4233 -> 4320[label="",style="dashed", color="magenta", weight=3]; 4234 -> 3113[label="",style="dashed", color="red", weight=0]; 4234[label="vwx1740 < vwx1750",fontsize=16,color="magenta"];4234 -> 4321[label="",style="dashed", color="magenta", weight=3]; 4234 -> 4322[label="",style="dashed", color="magenta", weight=3]; 4235 -> 3114[label="",style="dashed", color="red", weight=0]; 4235[label="vwx1740 < vwx1750",fontsize=16,color="magenta"];4235 -> 4323[label="",style="dashed", color="magenta", weight=3]; 4235 -> 4324[label="",style="dashed", color="magenta", weight=3]; 4236 -> 3115[label="",style="dashed", color="red", weight=0]; 4236[label="vwx1740 < vwx1750",fontsize=16,color="magenta"];4236 -> 4325[label="",style="dashed", color="magenta", weight=3]; 4236 -> 4326[label="",style="dashed", color="magenta", weight=3]; 4237 -> 3116[label="",style="dashed", color="red", weight=0]; 4237[label="vwx1740 < vwx1750",fontsize=16,color="magenta"];4237 -> 4327[label="",style="dashed", color="magenta", weight=3]; 4237 -> 4328[label="",style="dashed", color="magenta", weight=3]; 4238[label="vwx1740",fontsize=16,color="green",shape="box"];4239[label="vwx1750",fontsize=16,color="green",shape="box"];4240[label="vwx1740",fontsize=16,color="green",shape="box"];4241[label="vwx1750",fontsize=16,color="green",shape="box"];4242[label="vwx1740",fontsize=16,color="green",shape="box"];4243[label="vwx1750",fontsize=16,color="green",shape="box"];4244[label="vwx1740",fontsize=16,color="green",shape="box"];4245[label="vwx1750",fontsize=16,color="green",shape="box"];4246[label="vwx1740",fontsize=16,color="green",shape="box"];4247[label="vwx1750",fontsize=16,color="green",shape="box"];4248[label="vwx1740",fontsize=16,color="green",shape="box"];4249[label="vwx1750",fontsize=16,color="green",shape="box"];4250[label="vwx1740",fontsize=16,color="green",shape="box"];4251[label="vwx1750",fontsize=16,color="green",shape="box"];4252[label="vwx1740",fontsize=16,color="green",shape="box"];4253[label="vwx1750",fontsize=16,color="green",shape="box"];4254[label="vwx1740",fontsize=16,color="green",shape="box"];4255[label="vwx1750",fontsize=16,color="green",shape="box"];4256[label="vwx1740",fontsize=16,color="green",shape="box"];4257[label="vwx1750",fontsize=16,color="green",shape="box"];4258[label="vwx1740",fontsize=16,color="green",shape="box"];4259[label="vwx1750",fontsize=16,color="green",shape="box"];4260[label="vwx1740",fontsize=16,color="green",shape="box"];4261[label="vwx1750",fontsize=16,color="green",shape="box"];4262[label="vwx1740",fontsize=16,color="green",shape="box"];4263[label="vwx1750",fontsize=16,color="green",shape="box"];4264[label="vwx1740",fontsize=16,color="green",shape="box"];4265[label="vwx1750",fontsize=16,color="green",shape="box"];4266[label="vwx1740 == vwx1750",fontsize=16,color="blue",shape="box"];5368[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4266 -> 5368[label="",style="solid", color="blue", weight=9]; 5368 -> 4329[label="",style="solid", color="blue", weight=3]; 5369[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];4266 -> 5369[label="",style="solid", color="blue", weight=9]; 5369 -> 4330[label="",style="solid", color="blue", weight=3]; 5370[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];4266 -> 5370[label="",style="solid", color="blue", weight=9]; 5370 -> 4331[label="",style="solid", color="blue", weight=3]; 5371[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4266 -> 5371[label="",style="solid", color="blue", weight=9]; 5371 -> 4332[label="",style="solid", color="blue", weight=3]; 5372[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4266 -> 5372[label="",style="solid", color="blue", weight=9]; 5372 -> 4333[label="",style="solid", color="blue", weight=3]; 5373[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4266 -> 5373[label="",style="solid", color="blue", weight=9]; 5373 -> 4334[label="",style="solid", color="blue", weight=3]; 5374[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4266 -> 5374[label="",style="solid", color="blue", weight=9]; 5374 -> 4335[label="",style="solid", color="blue", weight=3]; 5375[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];4266 -> 5375[label="",style="solid", color="blue", weight=9]; 5375 -> 4336[label="",style="solid", color="blue", weight=3]; 5376[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];4266 -> 5376[label="",style="solid", color="blue", weight=9]; 5376 -> 4337[label="",style="solid", color="blue", weight=3]; 5377[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4266 -> 5377[label="",style="solid", color="blue", weight=9]; 5377 -> 4338[label="",style="solid", color="blue", weight=3]; 5378[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];4266 -> 5378[label="",style="solid", color="blue", weight=9]; 5378 -> 4339[label="",style="solid", color="blue", weight=3]; 5379[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];4266 -> 5379[label="",style="solid", color="blue", weight=9]; 5379 -> 4340[label="",style="solid", color="blue", weight=3]; 5380[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];4266 -> 5380[label="",style="solid", color="blue", weight=9]; 5380 -> 4341[label="",style="solid", color="blue", weight=3]; 5381[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];4266 -> 5381[label="",style="solid", color="blue", weight=9]; 5381 -> 4342[label="",style="solid", color="blue", weight=3]; 4267[label="vwx1741 <= vwx1751",fontsize=16,color="blue",shape="box"];5382[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4267 -> 5382[label="",style="solid", color="blue", weight=9]; 5382 -> 4343[label="",style="solid", color="blue", weight=3]; 5383[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];4267 -> 5383[label="",style="solid", color="blue", weight=9]; 5383 -> 4344[label="",style="solid", color="blue", weight=3]; 5384[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];4267 -> 5384[label="",style="solid", color="blue", weight=9]; 5384 -> 4345[label="",style="solid", color="blue", weight=3]; 5385[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4267 -> 5385[label="",style="solid", color="blue", weight=9]; 5385 -> 4346[label="",style="solid", color="blue", weight=3]; 5386[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4267 -> 5386[label="",style="solid", color="blue", weight=9]; 5386 -> 4347[label="",style="solid", color="blue", weight=3]; 5387[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4267 -> 5387[label="",style="solid", color="blue", weight=9]; 5387 -> 4348[label="",style="solid", color="blue", weight=3]; 5388[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4267 -> 5388[label="",style="solid", color="blue", weight=9]; 5388 -> 4349[label="",style="solid", color="blue", weight=3]; 5389[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];4267 -> 5389[label="",style="solid", color="blue", weight=9]; 5389 -> 4350[label="",style="solid", color="blue", weight=3]; 5390[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];4267 -> 5390[label="",style="solid", color="blue", weight=9]; 5390 -> 4351[label="",style="solid", color="blue", weight=3]; 5391[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4267 -> 5391[label="",style="solid", color="blue", weight=9]; 5391 -> 4352[label="",style="solid", color="blue", weight=3]; 5392[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];4267 -> 5392[label="",style="solid", color="blue", weight=9]; 5392 -> 4353[label="",style="solid", color="blue", weight=3]; 5393[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];4267 -> 5393[label="",style="solid", color="blue", weight=9]; 5393 -> 4354[label="",style="solid", color="blue", weight=3]; 5394[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];4267 -> 5394[label="",style="solid", color="blue", weight=9]; 5394 -> 4355[label="",style="solid", color="blue", weight=3]; 5395[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];4267 -> 5395[label="",style="solid", color="blue", weight=9]; 5395 -> 4356[label="",style="solid", color="blue", weight=3]; 4268 -> 3103[label="",style="dashed", color="red", weight=0]; 4268[label="vwx1740 < vwx1750",fontsize=16,color="magenta"];4268 -> 4357[label="",style="dashed", color="magenta", weight=3]; 4268 -> 4358[label="",style="dashed", color="magenta", weight=3]; 4269 -> 3104[label="",style="dashed", color="red", weight=0]; 4269[label="vwx1740 < vwx1750",fontsize=16,color="magenta"];4269 -> 4359[label="",style="dashed", color="magenta", weight=3]; 4269 -> 4360[label="",style="dashed", color="magenta", weight=3]; 4270 -> 3105[label="",style="dashed", color="red", weight=0]; 4270[label="vwx1740 < vwx1750",fontsize=16,color="magenta"];4270 -> 4361[label="",style="dashed", color="magenta", weight=3]; 4270 -> 4362[label="",style="dashed", color="magenta", weight=3]; 4271 -> 3106[label="",style="dashed", color="red", weight=0]; 4271[label="vwx1740 < vwx1750",fontsize=16,color="magenta"];4271 -> 4363[label="",style="dashed", color="magenta", weight=3]; 4271 -> 4364[label="",style="dashed", color="magenta", weight=3]; 4272 -> 3107[label="",style="dashed", color="red", weight=0]; 4272[label="vwx1740 < vwx1750",fontsize=16,color="magenta"];4272 -> 4365[label="",style="dashed", color="magenta", weight=3]; 4272 -> 4366[label="",style="dashed", color="magenta", weight=3]; 4273 -> 3108[label="",style="dashed", color="red", weight=0]; 4273[label="vwx1740 < vwx1750",fontsize=16,color="magenta"];4273 -> 4367[label="",style="dashed", color="magenta", weight=3]; 4273 -> 4368[label="",style="dashed", color="magenta", weight=3]; 4274 -> 3109[label="",style="dashed", color="red", weight=0]; 4274[label="vwx1740 < vwx1750",fontsize=16,color="magenta"];4274 -> 4369[label="",style="dashed", color="magenta", weight=3]; 4274 -> 4370[label="",style="dashed", color="magenta", weight=3]; 4275 -> 3110[label="",style="dashed", color="red", weight=0]; 4275[label="vwx1740 < vwx1750",fontsize=16,color="magenta"];4275 -> 4371[label="",style="dashed", color="magenta", weight=3]; 4275 -> 4372[label="",style="dashed", color="magenta", weight=3]; 4276 -> 3111[label="",style="dashed", color="red", weight=0]; 4276[label="vwx1740 < vwx1750",fontsize=16,color="magenta"];4276 -> 4373[label="",style="dashed", color="magenta", weight=3]; 4276 -> 4374[label="",style="dashed", color="magenta", weight=3]; 4277 -> 3112[label="",style="dashed", color="red", weight=0]; 4277[label="vwx1740 < vwx1750",fontsize=16,color="magenta"];4277 -> 4375[label="",style="dashed", color="magenta", weight=3]; 4277 -> 4376[label="",style="dashed", color="magenta", weight=3]; 4278 -> 3113[label="",style="dashed", color="red", weight=0]; 4278[label="vwx1740 < vwx1750",fontsize=16,color="magenta"];4278 -> 4377[label="",style="dashed", color="magenta", weight=3]; 4278 -> 4378[label="",style="dashed", color="magenta", weight=3]; 4279 -> 3114[label="",style="dashed", color="red", weight=0]; 4279[label="vwx1740 < vwx1750",fontsize=16,color="magenta"];4279 -> 4379[label="",style="dashed", color="magenta", weight=3]; 4279 -> 4380[label="",style="dashed", color="magenta", weight=3]; 4280 -> 3115[label="",style="dashed", color="red", weight=0]; 4280[label="vwx1740 < vwx1750",fontsize=16,color="magenta"];4280 -> 4381[label="",style="dashed", color="magenta", weight=3]; 4280 -> 4382[label="",style="dashed", color="magenta", weight=3]; 4281 -> 3116[label="",style="dashed", color="red", weight=0]; 4281[label="vwx1740 < vwx1750",fontsize=16,color="magenta"];4281 -> 4383[label="",style="dashed", color="magenta", weight=3]; 4281 -> 4384[label="",style="dashed", color="magenta", weight=3]; 4282[label="GT",fontsize=16,color="green",shape="box"];4283[label="GT",fontsize=16,color="green",shape="box"];4284[label="primPlusNat vwx3170 vwx40100",fontsize=16,color="burlywood",shape="triangle"];5396[label="vwx3170/Succ vwx31700",fontsize=10,color="white",style="solid",shape="box"];4284 -> 5396[label="",style="solid", color="burlywood", weight=9]; 5396 -> 4385[label="",style="solid", color="burlywood", weight=3]; 5397[label="vwx3170/Zero",fontsize=10,color="white",style="solid",shape="box"];4284 -> 5397[label="",style="solid", color="burlywood", weight=9]; 5397 -> 4386[label="",style="solid", color="burlywood", weight=3]; 4285 -> 2181[label="",style="dashed", color="red", weight=0]; 4285[label="vwx1740 == vwx1750",fontsize=16,color="magenta"];4285 -> 4387[label="",style="dashed", color="magenta", weight=3]; 4285 -> 4388[label="",style="dashed", color="magenta", weight=3]; 4286 -> 2186[label="",style="dashed", color="red", weight=0]; 4286[label="vwx1740 == vwx1750",fontsize=16,color="magenta"];4286 -> 4389[label="",style="dashed", color="magenta", weight=3]; 4286 -> 4390[label="",style="dashed", color="magenta", weight=3]; 4287 -> 2176[label="",style="dashed", color="red", weight=0]; 4287[label="vwx1740 == vwx1750",fontsize=16,color="magenta"];4287 -> 4391[label="",style="dashed", color="magenta", weight=3]; 4287 -> 4392[label="",style="dashed", color="magenta", weight=3]; 4288 -> 2179[label="",style="dashed", color="red", weight=0]; 4288[label="vwx1740 == vwx1750",fontsize=16,color="magenta"];4288 -> 4393[label="",style="dashed", color="magenta", weight=3]; 4288 -> 4394[label="",style="dashed", color="magenta", weight=3]; 4289 -> 2173[label="",style="dashed", color="red", weight=0]; 4289[label="vwx1740 == vwx1750",fontsize=16,color="magenta"];4289 -> 4395[label="",style="dashed", color="magenta", weight=3]; 4289 -> 4396[label="",style="dashed", color="magenta", weight=3]; 4290 -> 2180[label="",style="dashed", color="red", weight=0]; 4290[label="vwx1740 == vwx1750",fontsize=16,color="magenta"];4290 -> 4397[label="",style="dashed", color="magenta", weight=3]; 4290 -> 4398[label="",style="dashed", color="magenta", weight=3]; 4291 -> 2178[label="",style="dashed", color="red", weight=0]; 4291[label="vwx1740 == vwx1750",fontsize=16,color="magenta"];4291 -> 4399[label="",style="dashed", color="magenta", weight=3]; 4291 -> 4400[label="",style="dashed", color="magenta", weight=3]; 4292 -> 2175[label="",style="dashed", color="red", weight=0]; 4292[label="vwx1740 == vwx1750",fontsize=16,color="magenta"];4292 -> 4401[label="",style="dashed", color="magenta", weight=3]; 4292 -> 4402[label="",style="dashed", color="magenta", weight=3]; 4293 -> 2177[label="",style="dashed", color="red", weight=0]; 4293[label="vwx1740 == vwx1750",fontsize=16,color="magenta"];4293 -> 4403[label="",style="dashed", color="magenta", weight=3]; 4293 -> 4404[label="",style="dashed", color="magenta", weight=3]; 4294 -> 2184[label="",style="dashed", color="red", weight=0]; 4294[label="vwx1740 == vwx1750",fontsize=16,color="magenta"];4294 -> 4405[label="",style="dashed", color="magenta", weight=3]; 4294 -> 4406[label="",style="dashed", color="magenta", weight=3]; 4295 -> 2185[label="",style="dashed", color="red", weight=0]; 4295[label="vwx1740 == vwx1750",fontsize=16,color="magenta"];4295 -> 4407[label="",style="dashed", color="magenta", weight=3]; 4295 -> 4408[label="",style="dashed", color="magenta", weight=3]; 4296 -> 2183[label="",style="dashed", color="red", weight=0]; 4296[label="vwx1740 == vwx1750",fontsize=16,color="magenta"];4296 -> 4409[label="",style="dashed", color="magenta", weight=3]; 4296 -> 4410[label="",style="dashed", color="magenta", weight=3]; 4297 -> 2182[label="",style="dashed", color="red", weight=0]; 4297[label="vwx1740 == vwx1750",fontsize=16,color="magenta"];4297 -> 4411[label="",style="dashed", color="magenta", weight=3]; 4297 -> 4412[label="",style="dashed", color="magenta", weight=3]; 4298 -> 2174[label="",style="dashed", color="red", weight=0]; 4298[label="vwx1740 == vwx1750",fontsize=16,color="magenta"];4298 -> 4413[label="",style="dashed", color="magenta", weight=3]; 4298 -> 4414[label="",style="dashed", color="magenta", weight=3]; 4299 -> 2732[label="",style="dashed", color="red", weight=0]; 4299[label="vwx1741 == vwx1751 && vwx1742 <= vwx1752",fontsize=16,color="magenta"];4299 -> 4415[label="",style="dashed", color="magenta", weight=3]; 4299 -> 4416[label="",style="dashed", color="magenta", weight=3]; 4300[label="vwx1741 < vwx1751",fontsize=16,color="blue",shape="box"];5398[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4300 -> 5398[label="",style="solid", color="blue", weight=9]; 5398 -> 4417[label="",style="solid", color="blue", weight=3]; 5399[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];4300 -> 5399[label="",style="solid", color="blue", weight=9]; 5399 -> 4418[label="",style="solid", color="blue", weight=3]; 5400[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];4300 -> 5400[label="",style="solid", color="blue", weight=9]; 5400 -> 4419[label="",style="solid", color="blue", weight=3]; 5401[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4300 -> 5401[label="",style="solid", color="blue", weight=9]; 5401 -> 4420[label="",style="solid", color="blue", weight=3]; 5402[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4300 -> 5402[label="",style="solid", color="blue", weight=9]; 5402 -> 4421[label="",style="solid", color="blue", weight=3]; 5403[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4300 -> 5403[label="",style="solid", color="blue", weight=9]; 5403 -> 4422[label="",style="solid", color="blue", weight=3]; 5404[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4300 -> 5404[label="",style="solid", color="blue", weight=9]; 5404 -> 4423[label="",style="solid", color="blue", weight=3]; 5405[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];4300 -> 5405[label="",style="solid", color="blue", weight=9]; 5405 -> 4424[label="",style="solid", color="blue", weight=3]; 5406[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];4300 -> 5406[label="",style="solid", color="blue", weight=9]; 5406 -> 4425[label="",style="solid", color="blue", weight=3]; 5407[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4300 -> 5407[label="",style="solid", color="blue", weight=9]; 5407 -> 4426[label="",style="solid", color="blue", weight=3]; 5408[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];4300 -> 5408[label="",style="solid", color="blue", weight=9]; 5408 -> 4427[label="",style="solid", color="blue", weight=3]; 5409[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];4300 -> 5409[label="",style="solid", color="blue", weight=9]; 5409 -> 4428[label="",style="solid", color="blue", weight=3]; 5410[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];4300 -> 5410[label="",style="solid", color="blue", weight=9]; 5410 -> 4429[label="",style="solid", color="blue", weight=3]; 5411[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];4300 -> 5411[label="",style="solid", color="blue", weight=9]; 5411 -> 4430[label="",style="solid", color="blue", weight=3]; 4301[label="vwx1750",fontsize=16,color="green",shape="box"];4302[label="vwx1740",fontsize=16,color="green",shape="box"];4303[label="vwx1750",fontsize=16,color="green",shape="box"];4304[label="vwx1740",fontsize=16,color="green",shape="box"];4305[label="vwx1750",fontsize=16,color="green",shape="box"];4306[label="vwx1740",fontsize=16,color="green",shape="box"];4307[label="vwx1750",fontsize=16,color="green",shape="box"];4308[label="vwx1740",fontsize=16,color="green",shape="box"];4309[label="vwx1750",fontsize=16,color="green",shape="box"];4310[label="vwx1740",fontsize=16,color="green",shape="box"];4311[label="vwx1750",fontsize=16,color="green",shape="box"];4312[label="vwx1740",fontsize=16,color="green",shape="box"];4313[label="vwx1750",fontsize=16,color="green",shape="box"];4314[label="vwx1740",fontsize=16,color="green",shape="box"];4315[label="vwx1750",fontsize=16,color="green",shape="box"];4316[label="vwx1740",fontsize=16,color="green",shape="box"];4317[label="vwx1750",fontsize=16,color="green",shape="box"];4318[label="vwx1740",fontsize=16,color="green",shape="box"];4319[label="vwx1750",fontsize=16,color="green",shape="box"];4320[label="vwx1740",fontsize=16,color="green",shape="box"];4321[label="vwx1750",fontsize=16,color="green",shape="box"];4322[label="vwx1740",fontsize=16,color="green",shape="box"];4323[label="vwx1750",fontsize=16,color="green",shape="box"];4324[label="vwx1740",fontsize=16,color="green",shape="box"];4325[label="vwx1750",fontsize=16,color="green",shape="box"];4326[label="vwx1740",fontsize=16,color="green",shape="box"];4327[label="vwx1750",fontsize=16,color="green",shape="box"];4328[label="vwx1740",fontsize=16,color="green",shape="box"];4329 -> 2181[label="",style="dashed", color="red", weight=0]; 4329[label="vwx1740 == vwx1750",fontsize=16,color="magenta"];4329 -> 4431[label="",style="dashed", color="magenta", weight=3]; 4329 -> 4432[label="",style="dashed", color="magenta", weight=3]; 4330 -> 2186[label="",style="dashed", color="red", weight=0]; 4330[label="vwx1740 == vwx1750",fontsize=16,color="magenta"];4330 -> 4433[label="",style="dashed", color="magenta", weight=3]; 4330 -> 4434[label="",style="dashed", color="magenta", weight=3]; 4331 -> 2176[label="",style="dashed", color="red", weight=0]; 4331[label="vwx1740 == vwx1750",fontsize=16,color="magenta"];4331 -> 4435[label="",style="dashed", color="magenta", weight=3]; 4331 -> 4436[label="",style="dashed", color="magenta", weight=3]; 4332 -> 2179[label="",style="dashed", color="red", weight=0]; 4332[label="vwx1740 == vwx1750",fontsize=16,color="magenta"];4332 -> 4437[label="",style="dashed", color="magenta", weight=3]; 4332 -> 4438[label="",style="dashed", color="magenta", weight=3]; 4333 -> 2173[label="",style="dashed", color="red", weight=0]; 4333[label="vwx1740 == vwx1750",fontsize=16,color="magenta"];4333 -> 4439[label="",style="dashed", color="magenta", weight=3]; 4333 -> 4440[label="",style="dashed", color="magenta", weight=3]; 4334 -> 2180[label="",style="dashed", color="red", weight=0]; 4334[label="vwx1740 == vwx1750",fontsize=16,color="magenta"];4334 -> 4441[label="",style="dashed", color="magenta", weight=3]; 4334 -> 4442[label="",style="dashed", color="magenta", weight=3]; 4335 -> 2178[label="",style="dashed", color="red", weight=0]; 4335[label="vwx1740 == vwx1750",fontsize=16,color="magenta"];4335 -> 4443[label="",style="dashed", color="magenta", weight=3]; 4335 -> 4444[label="",style="dashed", color="magenta", weight=3]; 4336 -> 2175[label="",style="dashed", color="red", weight=0]; 4336[label="vwx1740 == vwx1750",fontsize=16,color="magenta"];4336 -> 4445[label="",style="dashed", color="magenta", weight=3]; 4336 -> 4446[label="",style="dashed", color="magenta", weight=3]; 4337 -> 2177[label="",style="dashed", color="red", weight=0]; 4337[label="vwx1740 == vwx1750",fontsize=16,color="magenta"];4337 -> 4447[label="",style="dashed", color="magenta", weight=3]; 4337 -> 4448[label="",style="dashed", color="magenta", weight=3]; 4338 -> 2184[label="",style="dashed", color="red", weight=0]; 4338[label="vwx1740 == vwx1750",fontsize=16,color="magenta"];4338 -> 4449[label="",style="dashed", color="magenta", weight=3]; 4338 -> 4450[label="",style="dashed", color="magenta", weight=3]; 4339 -> 2185[label="",style="dashed", color="red", weight=0]; 4339[label="vwx1740 == vwx1750",fontsize=16,color="magenta"];4339 -> 4451[label="",style="dashed", color="magenta", weight=3]; 4339 -> 4452[label="",style="dashed", color="magenta", weight=3]; 4340 -> 2183[label="",style="dashed", color="red", weight=0]; 4340[label="vwx1740 == vwx1750",fontsize=16,color="magenta"];4340 -> 4453[label="",style="dashed", color="magenta", weight=3]; 4340 -> 4454[label="",style="dashed", color="magenta", weight=3]; 4341 -> 2182[label="",style="dashed", color="red", weight=0]; 4341[label="vwx1740 == vwx1750",fontsize=16,color="magenta"];4341 -> 4455[label="",style="dashed", color="magenta", weight=3]; 4341 -> 4456[label="",style="dashed", color="magenta", weight=3]; 4342 -> 2174[label="",style="dashed", color="red", weight=0]; 4342[label="vwx1740 == vwx1750",fontsize=16,color="magenta"];4342 -> 4457[label="",style="dashed", color="magenta", weight=3]; 4342 -> 4458[label="",style="dashed", color="magenta", weight=3]; 4343 -> 3050[label="",style="dashed", color="red", weight=0]; 4343[label="vwx1741 <= vwx1751",fontsize=16,color="magenta"];4343 -> 4459[label="",style="dashed", color="magenta", weight=3]; 4343 -> 4460[label="",style="dashed", color="magenta", weight=3]; 4344 -> 3051[label="",style="dashed", color="red", weight=0]; 4344[label="vwx1741 <= vwx1751",fontsize=16,color="magenta"];4344 -> 4461[label="",style="dashed", color="magenta", weight=3]; 4344 -> 4462[label="",style="dashed", color="magenta", weight=3]; 4345 -> 3052[label="",style="dashed", color="red", weight=0]; 4345[label="vwx1741 <= vwx1751",fontsize=16,color="magenta"];4345 -> 4463[label="",style="dashed", color="magenta", weight=3]; 4345 -> 4464[label="",style="dashed", color="magenta", weight=3]; 4346 -> 3053[label="",style="dashed", color="red", weight=0]; 4346[label="vwx1741 <= vwx1751",fontsize=16,color="magenta"];4346 -> 4465[label="",style="dashed", color="magenta", weight=3]; 4346 -> 4466[label="",style="dashed", color="magenta", weight=3]; 4347 -> 3054[label="",style="dashed", color="red", weight=0]; 4347[label="vwx1741 <= vwx1751",fontsize=16,color="magenta"];4347 -> 4467[label="",style="dashed", color="magenta", weight=3]; 4347 -> 4468[label="",style="dashed", color="magenta", weight=3]; 4348 -> 3055[label="",style="dashed", color="red", weight=0]; 4348[label="vwx1741 <= vwx1751",fontsize=16,color="magenta"];4348 -> 4469[label="",style="dashed", color="magenta", weight=3]; 4348 -> 4470[label="",style="dashed", color="magenta", weight=3]; 4349 -> 4[label="",style="dashed", color="red", weight=0]; 4349[label="vwx1741 <= vwx1751",fontsize=16,color="magenta"];4349 -> 4471[label="",style="dashed", color="magenta", weight=3]; 4349 -> 4472[label="",style="dashed", color="magenta", weight=3]; 4350 -> 3057[label="",style="dashed", color="red", weight=0]; 4350[label="vwx1741 <= vwx1751",fontsize=16,color="magenta"];4350 -> 4473[label="",style="dashed", color="magenta", weight=3]; 4350 -> 4474[label="",style="dashed", color="magenta", weight=3]; 4351 -> 3058[label="",style="dashed", color="red", weight=0]; 4351[label="vwx1741 <= vwx1751",fontsize=16,color="magenta"];4351 -> 4475[label="",style="dashed", color="magenta", weight=3]; 4351 -> 4476[label="",style="dashed", color="magenta", weight=3]; 4352 -> 3059[label="",style="dashed", color="red", weight=0]; 4352[label="vwx1741 <= vwx1751",fontsize=16,color="magenta"];4352 -> 4477[label="",style="dashed", color="magenta", weight=3]; 4352 -> 4478[label="",style="dashed", color="magenta", weight=3]; 4353 -> 3060[label="",style="dashed", color="red", weight=0]; 4353[label="vwx1741 <= vwx1751",fontsize=16,color="magenta"];4353 -> 4479[label="",style="dashed", color="magenta", weight=3]; 4353 -> 4480[label="",style="dashed", color="magenta", weight=3]; 4354 -> 3061[label="",style="dashed", color="red", weight=0]; 4354[label="vwx1741 <= vwx1751",fontsize=16,color="magenta"];4354 -> 4481[label="",style="dashed", color="magenta", weight=3]; 4354 -> 4482[label="",style="dashed", color="magenta", weight=3]; 4355 -> 3062[label="",style="dashed", color="red", weight=0]; 4355[label="vwx1741 <= vwx1751",fontsize=16,color="magenta"];4355 -> 4483[label="",style="dashed", color="magenta", weight=3]; 4355 -> 4484[label="",style="dashed", color="magenta", weight=3]; 4356 -> 3063[label="",style="dashed", color="red", weight=0]; 4356[label="vwx1741 <= vwx1751",fontsize=16,color="magenta"];4356 -> 4485[label="",style="dashed", color="magenta", weight=3]; 4356 -> 4486[label="",style="dashed", color="magenta", weight=3]; 4357[label="vwx1750",fontsize=16,color="green",shape="box"];4358[label="vwx1740",fontsize=16,color="green",shape="box"];4359[label="vwx1750",fontsize=16,color="green",shape="box"];4360[label="vwx1740",fontsize=16,color="green",shape="box"];4361[label="vwx1750",fontsize=16,color="green",shape="box"];4362[label="vwx1740",fontsize=16,color="green",shape="box"];4363[label="vwx1750",fontsize=16,color="green",shape="box"];4364[label="vwx1740",fontsize=16,color="green",shape="box"];4365[label="vwx1750",fontsize=16,color="green",shape="box"];4366[label="vwx1740",fontsize=16,color="green",shape="box"];4367[label="vwx1750",fontsize=16,color="green",shape="box"];4368[label="vwx1740",fontsize=16,color="green",shape="box"];4369[label="vwx1750",fontsize=16,color="green",shape="box"];4370[label="vwx1740",fontsize=16,color="green",shape="box"];4371[label="vwx1750",fontsize=16,color="green",shape="box"];4372[label="vwx1740",fontsize=16,color="green",shape="box"];4373[label="vwx1750",fontsize=16,color="green",shape="box"];4374[label="vwx1740",fontsize=16,color="green",shape="box"];4375[label="vwx1750",fontsize=16,color="green",shape="box"];4376[label="vwx1740",fontsize=16,color="green",shape="box"];4377[label="vwx1750",fontsize=16,color="green",shape="box"];4378[label="vwx1740",fontsize=16,color="green",shape="box"];4379[label="vwx1750",fontsize=16,color="green",shape="box"];4380[label="vwx1740",fontsize=16,color="green",shape="box"];4381[label="vwx1750",fontsize=16,color="green",shape="box"];4382[label="vwx1740",fontsize=16,color="green",shape="box"];4383[label="vwx1750",fontsize=16,color="green",shape="box"];4384[label="vwx1740",fontsize=16,color="green",shape="box"];4385[label="primPlusNat (Succ vwx31700) vwx40100",fontsize=16,color="burlywood",shape="box"];5412[label="vwx40100/Succ vwx401000",fontsize=10,color="white",style="solid",shape="box"];4385 -> 5412[label="",style="solid", color="burlywood", weight=9]; 5412 -> 4487[label="",style="solid", color="burlywood", weight=3]; 5413[label="vwx40100/Zero",fontsize=10,color="white",style="solid",shape="box"];4385 -> 5413[label="",style="solid", color="burlywood", weight=9]; 5413 -> 4488[label="",style="solid", color="burlywood", weight=3]; 4386[label="primPlusNat Zero vwx40100",fontsize=16,color="burlywood",shape="box"];5414[label="vwx40100/Succ vwx401000",fontsize=10,color="white",style="solid",shape="box"];4386 -> 5414[label="",style="solid", color="burlywood", weight=9]; 5414 -> 4489[label="",style="solid", color="burlywood", weight=3]; 5415[label="vwx40100/Zero",fontsize=10,color="white",style="solid",shape="box"];4386 -> 5415[label="",style="solid", color="burlywood", weight=9]; 5415 -> 4490[label="",style="solid", color="burlywood", weight=3]; 4387[label="vwx1740",fontsize=16,color="green",shape="box"];4388[label="vwx1750",fontsize=16,color="green",shape="box"];4389[label="vwx1740",fontsize=16,color="green",shape="box"];4390[label="vwx1750",fontsize=16,color="green",shape="box"];4391[label="vwx1740",fontsize=16,color="green",shape="box"];4392[label="vwx1750",fontsize=16,color="green",shape="box"];4393[label="vwx1740",fontsize=16,color="green",shape="box"];4394[label="vwx1750",fontsize=16,color="green",shape="box"];4395[label="vwx1740",fontsize=16,color="green",shape="box"];4396[label="vwx1750",fontsize=16,color="green",shape="box"];4397[label="vwx1740",fontsize=16,color="green",shape="box"];4398[label="vwx1750",fontsize=16,color="green",shape="box"];4399[label="vwx1740",fontsize=16,color="green",shape="box"];4400[label="vwx1750",fontsize=16,color="green",shape="box"];4401[label="vwx1740",fontsize=16,color="green",shape="box"];4402[label="vwx1750",fontsize=16,color="green",shape="box"];4403[label="vwx1740",fontsize=16,color="green",shape="box"];4404[label="vwx1750",fontsize=16,color="green",shape="box"];4405[label="vwx1740",fontsize=16,color="green",shape="box"];4406[label="vwx1750",fontsize=16,color="green",shape="box"];4407[label="vwx1740",fontsize=16,color="green",shape="box"];4408[label="vwx1750",fontsize=16,color="green",shape="box"];4409[label="vwx1740",fontsize=16,color="green",shape="box"];4410[label="vwx1750",fontsize=16,color="green",shape="box"];4411[label="vwx1740",fontsize=16,color="green",shape="box"];4412[label="vwx1750",fontsize=16,color="green",shape="box"];4413[label="vwx1740",fontsize=16,color="green",shape="box"];4414[label="vwx1750",fontsize=16,color="green",shape="box"];4415[label="vwx1741 == vwx1751",fontsize=16,color="blue",shape="box"];5416[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4415 -> 5416[label="",style="solid", color="blue", weight=9]; 5416 -> 4491[label="",style="solid", color="blue", weight=3]; 5417[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];4415 -> 5417[label="",style="solid", color="blue", weight=9]; 5417 -> 4492[label="",style="solid", color="blue", weight=3]; 5418[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];4415 -> 5418[label="",style="solid", color="blue", weight=9]; 5418 -> 4493[label="",style="solid", color="blue", weight=3]; 5419[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4415 -> 5419[label="",style="solid", color="blue", weight=9]; 5419 -> 4494[label="",style="solid", color="blue", weight=3]; 5420[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4415 -> 5420[label="",style="solid", color="blue", weight=9]; 5420 -> 4495[label="",style="solid", color="blue", weight=3]; 5421[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4415 -> 5421[label="",style="solid", color="blue", weight=9]; 5421 -> 4496[label="",style="solid", color="blue", weight=3]; 5422[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4415 -> 5422[label="",style="solid", color="blue", weight=9]; 5422 -> 4497[label="",style="solid", color="blue", weight=3]; 5423[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];4415 -> 5423[label="",style="solid", color="blue", weight=9]; 5423 -> 4498[label="",style="solid", color="blue", weight=3]; 5424[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];4415 -> 5424[label="",style="solid", color="blue", weight=9]; 5424 -> 4499[label="",style="solid", color="blue", weight=3]; 5425[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4415 -> 5425[label="",style="solid", color="blue", weight=9]; 5425 -> 4500[label="",style="solid", color="blue", weight=3]; 5426[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];4415 -> 5426[label="",style="solid", color="blue", weight=9]; 5426 -> 4501[label="",style="solid", color="blue", weight=3]; 5427[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];4415 -> 5427[label="",style="solid", color="blue", weight=9]; 5427 -> 4502[label="",style="solid", color="blue", weight=3]; 5428[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];4415 -> 5428[label="",style="solid", color="blue", weight=9]; 5428 -> 4503[label="",style="solid", color="blue", weight=3]; 5429[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];4415 -> 5429[label="",style="solid", color="blue", weight=9]; 5429 -> 4504[label="",style="solid", color="blue", weight=3]; 4416[label="vwx1742 <= vwx1752",fontsize=16,color="blue",shape="box"];5430[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4416 -> 5430[label="",style="solid", color="blue", weight=9]; 5430 -> 4505[label="",style="solid", color="blue", weight=3]; 5431[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];4416 -> 5431[label="",style="solid", color="blue", weight=9]; 5431 -> 4506[label="",style="solid", color="blue", weight=3]; 5432[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];4416 -> 5432[label="",style="solid", color="blue", weight=9]; 5432 -> 4507[label="",style="solid", color="blue", weight=3]; 5433[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4416 -> 5433[label="",style="solid", color="blue", weight=9]; 5433 -> 4508[label="",style="solid", color="blue", weight=3]; 5434[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4416 -> 5434[label="",style="solid", color="blue", weight=9]; 5434 -> 4509[label="",style="solid", color="blue", weight=3]; 5435[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4416 -> 5435[label="",style="solid", color="blue", weight=9]; 5435 -> 4510[label="",style="solid", color="blue", weight=3]; 5436[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4416 -> 5436[label="",style="solid", color="blue", weight=9]; 5436 -> 4511[label="",style="solid", color="blue", weight=3]; 5437[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];4416 -> 5437[label="",style="solid", color="blue", weight=9]; 5437 -> 4512[label="",style="solid", color="blue", weight=3]; 5438[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];4416 -> 5438[label="",style="solid", color="blue", weight=9]; 5438 -> 4513[label="",style="solid", color="blue", weight=3]; 5439[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4416 -> 5439[label="",style="solid", color="blue", weight=9]; 5439 -> 4514[label="",style="solid", color="blue", weight=3]; 5440[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];4416 -> 5440[label="",style="solid", color="blue", weight=9]; 5440 -> 4515[label="",style="solid", color="blue", weight=3]; 5441[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];4416 -> 5441[label="",style="solid", color="blue", weight=9]; 5441 -> 4516[label="",style="solid", color="blue", weight=3]; 5442[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];4416 -> 5442[label="",style="solid", color="blue", weight=9]; 5442 -> 4517[label="",style="solid", color="blue", weight=3]; 5443[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];4416 -> 5443[label="",style="solid", color="blue", weight=9]; 5443 -> 4518[label="",style="solid", color="blue", weight=3]; 4417 -> 3103[label="",style="dashed", color="red", weight=0]; 4417[label="vwx1741 < vwx1751",fontsize=16,color="magenta"];4417 -> 4519[label="",style="dashed", color="magenta", weight=3]; 4417 -> 4520[label="",style="dashed", color="magenta", weight=3]; 4418 -> 3104[label="",style="dashed", color="red", weight=0]; 4418[label="vwx1741 < vwx1751",fontsize=16,color="magenta"];4418 -> 4521[label="",style="dashed", color="magenta", weight=3]; 4418 -> 4522[label="",style="dashed", color="magenta", weight=3]; 4419 -> 3105[label="",style="dashed", color="red", weight=0]; 4419[label="vwx1741 < vwx1751",fontsize=16,color="magenta"];4419 -> 4523[label="",style="dashed", color="magenta", weight=3]; 4419 -> 4524[label="",style="dashed", color="magenta", weight=3]; 4420 -> 3106[label="",style="dashed", color="red", weight=0]; 4420[label="vwx1741 < vwx1751",fontsize=16,color="magenta"];4420 -> 4525[label="",style="dashed", color="magenta", weight=3]; 4420 -> 4526[label="",style="dashed", color="magenta", weight=3]; 4421 -> 3107[label="",style="dashed", color="red", weight=0]; 4421[label="vwx1741 < vwx1751",fontsize=16,color="magenta"];4421 -> 4527[label="",style="dashed", color="magenta", weight=3]; 4421 -> 4528[label="",style="dashed", color="magenta", weight=3]; 4422 -> 3108[label="",style="dashed", color="red", weight=0]; 4422[label="vwx1741 < vwx1751",fontsize=16,color="magenta"];4422 -> 4529[label="",style="dashed", color="magenta", weight=3]; 4422 -> 4530[label="",style="dashed", color="magenta", weight=3]; 4423 -> 3109[label="",style="dashed", color="red", weight=0]; 4423[label="vwx1741 < vwx1751",fontsize=16,color="magenta"];4423 -> 4531[label="",style="dashed", color="magenta", weight=3]; 4423 -> 4532[label="",style="dashed", color="magenta", weight=3]; 4424 -> 3110[label="",style="dashed", color="red", weight=0]; 4424[label="vwx1741 < vwx1751",fontsize=16,color="magenta"];4424 -> 4533[label="",style="dashed", color="magenta", weight=3]; 4424 -> 4534[label="",style="dashed", color="magenta", weight=3]; 4425 -> 3111[label="",style="dashed", color="red", weight=0]; 4425[label="vwx1741 < vwx1751",fontsize=16,color="magenta"];4425 -> 4535[label="",style="dashed", color="magenta", weight=3]; 4425 -> 4536[label="",style="dashed", color="magenta", weight=3]; 4426 -> 3112[label="",style="dashed", color="red", weight=0]; 4426[label="vwx1741 < vwx1751",fontsize=16,color="magenta"];4426 -> 4537[label="",style="dashed", color="magenta", weight=3]; 4426 -> 4538[label="",style="dashed", color="magenta", weight=3]; 4427 -> 3113[label="",style="dashed", color="red", weight=0]; 4427[label="vwx1741 < vwx1751",fontsize=16,color="magenta"];4427 -> 4539[label="",style="dashed", color="magenta", weight=3]; 4427 -> 4540[label="",style="dashed", color="magenta", weight=3]; 4428 -> 3114[label="",style="dashed", color="red", weight=0]; 4428[label="vwx1741 < vwx1751",fontsize=16,color="magenta"];4428 -> 4541[label="",style="dashed", color="magenta", weight=3]; 4428 -> 4542[label="",style="dashed", color="magenta", weight=3]; 4429 -> 3115[label="",style="dashed", color="red", weight=0]; 4429[label="vwx1741 < vwx1751",fontsize=16,color="magenta"];4429 -> 4543[label="",style="dashed", color="magenta", weight=3]; 4429 -> 4544[label="",style="dashed", color="magenta", weight=3]; 4430 -> 3116[label="",style="dashed", color="red", weight=0]; 4430[label="vwx1741 < vwx1751",fontsize=16,color="magenta"];4430 -> 4545[label="",style="dashed", color="magenta", weight=3]; 4430 -> 4546[label="",style="dashed", color="magenta", weight=3]; 4431[label="vwx1740",fontsize=16,color="green",shape="box"];4432[label="vwx1750",fontsize=16,color="green",shape="box"];4433[label="vwx1740",fontsize=16,color="green",shape="box"];4434[label="vwx1750",fontsize=16,color="green",shape="box"];4435[label="vwx1740",fontsize=16,color="green",shape="box"];4436[label="vwx1750",fontsize=16,color="green",shape="box"];4437[label="vwx1740",fontsize=16,color="green",shape="box"];4438[label="vwx1750",fontsize=16,color="green",shape="box"];4439[label="vwx1740",fontsize=16,color="green",shape="box"];4440[label="vwx1750",fontsize=16,color="green",shape="box"];4441[label="vwx1740",fontsize=16,color="green",shape="box"];4442[label="vwx1750",fontsize=16,color="green",shape="box"];4443[label="vwx1740",fontsize=16,color="green",shape="box"];4444[label="vwx1750",fontsize=16,color="green",shape="box"];4445[label="vwx1740",fontsize=16,color="green",shape="box"];4446[label="vwx1750",fontsize=16,color="green",shape="box"];4447[label="vwx1740",fontsize=16,color="green",shape="box"];4448[label="vwx1750",fontsize=16,color="green",shape="box"];4449[label="vwx1740",fontsize=16,color="green",shape="box"];4450[label="vwx1750",fontsize=16,color="green",shape="box"];4451[label="vwx1740",fontsize=16,color="green",shape="box"];4452[label="vwx1750",fontsize=16,color="green",shape="box"];4453[label="vwx1740",fontsize=16,color="green",shape="box"];4454[label="vwx1750",fontsize=16,color="green",shape="box"];4455[label="vwx1740",fontsize=16,color="green",shape="box"];4456[label="vwx1750",fontsize=16,color="green",shape="box"];4457[label="vwx1740",fontsize=16,color="green",shape="box"];4458[label="vwx1750",fontsize=16,color="green",shape="box"];4459[label="vwx1741",fontsize=16,color="green",shape="box"];4460[label="vwx1751",fontsize=16,color="green",shape="box"];4461[label="vwx1741",fontsize=16,color="green",shape="box"];4462[label="vwx1751",fontsize=16,color="green",shape="box"];4463[label="vwx1741",fontsize=16,color="green",shape="box"];4464[label="vwx1751",fontsize=16,color="green",shape="box"];4465[label="vwx1741",fontsize=16,color="green",shape="box"];4466[label="vwx1751",fontsize=16,color="green",shape="box"];4467[label="vwx1741",fontsize=16,color="green",shape="box"];4468[label="vwx1751",fontsize=16,color="green",shape="box"];4469[label="vwx1741",fontsize=16,color="green",shape="box"];4470[label="vwx1751",fontsize=16,color="green",shape="box"];4471[label="vwx1741",fontsize=16,color="green",shape="box"];4472[label="vwx1751",fontsize=16,color="green",shape="box"];4473[label="vwx1741",fontsize=16,color="green",shape="box"];4474[label="vwx1751",fontsize=16,color="green",shape="box"];4475[label="vwx1741",fontsize=16,color="green",shape="box"];4476[label="vwx1751",fontsize=16,color="green",shape="box"];4477[label="vwx1741",fontsize=16,color="green",shape="box"];4478[label="vwx1751",fontsize=16,color="green",shape="box"];4479[label="vwx1741",fontsize=16,color="green",shape="box"];4480[label="vwx1751",fontsize=16,color="green",shape="box"];4481[label="vwx1741",fontsize=16,color="green",shape="box"];4482[label="vwx1751",fontsize=16,color="green",shape="box"];4483[label="vwx1741",fontsize=16,color="green",shape="box"];4484[label="vwx1751",fontsize=16,color="green",shape="box"];4485[label="vwx1741",fontsize=16,color="green",shape="box"];4486[label="vwx1751",fontsize=16,color="green",shape="box"];4487[label="primPlusNat (Succ vwx31700) (Succ vwx401000)",fontsize=16,color="black",shape="box"];4487 -> 4547[label="",style="solid", color="black", weight=3]; 4488[label="primPlusNat (Succ vwx31700) Zero",fontsize=16,color="black",shape="box"];4488 -> 4548[label="",style="solid", color="black", weight=3]; 4489[label="primPlusNat Zero (Succ vwx401000)",fontsize=16,color="black",shape="box"];4489 -> 4549[label="",style="solid", color="black", weight=3]; 4490[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];4490 -> 4550[label="",style="solid", color="black", weight=3]; 4491 -> 2181[label="",style="dashed", color="red", weight=0]; 4491[label="vwx1741 == vwx1751",fontsize=16,color="magenta"];4491 -> 4551[label="",style="dashed", color="magenta", weight=3]; 4491 -> 4552[label="",style="dashed", color="magenta", weight=3]; 4492 -> 2186[label="",style="dashed", color="red", weight=0]; 4492[label="vwx1741 == vwx1751",fontsize=16,color="magenta"];4492 -> 4553[label="",style="dashed", color="magenta", weight=3]; 4492 -> 4554[label="",style="dashed", color="magenta", weight=3]; 4493 -> 2176[label="",style="dashed", color="red", weight=0]; 4493[label="vwx1741 == vwx1751",fontsize=16,color="magenta"];4493 -> 4555[label="",style="dashed", color="magenta", weight=3]; 4493 -> 4556[label="",style="dashed", color="magenta", weight=3]; 4494 -> 2179[label="",style="dashed", color="red", weight=0]; 4494[label="vwx1741 == vwx1751",fontsize=16,color="magenta"];4494 -> 4557[label="",style="dashed", color="magenta", weight=3]; 4494 -> 4558[label="",style="dashed", color="magenta", weight=3]; 4495 -> 2173[label="",style="dashed", color="red", weight=0]; 4495[label="vwx1741 == vwx1751",fontsize=16,color="magenta"];4495 -> 4559[label="",style="dashed", color="magenta", weight=3]; 4495 -> 4560[label="",style="dashed", color="magenta", weight=3]; 4496 -> 2180[label="",style="dashed", color="red", weight=0]; 4496[label="vwx1741 == vwx1751",fontsize=16,color="magenta"];4496 -> 4561[label="",style="dashed", color="magenta", weight=3]; 4496 -> 4562[label="",style="dashed", color="magenta", weight=3]; 4497 -> 2178[label="",style="dashed", color="red", weight=0]; 4497[label="vwx1741 == vwx1751",fontsize=16,color="magenta"];4497 -> 4563[label="",style="dashed", color="magenta", weight=3]; 4497 -> 4564[label="",style="dashed", color="magenta", weight=3]; 4498 -> 2175[label="",style="dashed", color="red", weight=0]; 4498[label="vwx1741 == vwx1751",fontsize=16,color="magenta"];4498 -> 4565[label="",style="dashed", color="magenta", weight=3]; 4498 -> 4566[label="",style="dashed", color="magenta", weight=3]; 4499 -> 2177[label="",style="dashed", color="red", weight=0]; 4499[label="vwx1741 == vwx1751",fontsize=16,color="magenta"];4499 -> 4567[label="",style="dashed", color="magenta", weight=3]; 4499 -> 4568[label="",style="dashed", color="magenta", weight=3]; 4500 -> 2184[label="",style="dashed", color="red", weight=0]; 4500[label="vwx1741 == vwx1751",fontsize=16,color="magenta"];4500 -> 4569[label="",style="dashed", color="magenta", weight=3]; 4500 -> 4570[label="",style="dashed", color="magenta", weight=3]; 4501 -> 2185[label="",style="dashed", color="red", weight=0]; 4501[label="vwx1741 == vwx1751",fontsize=16,color="magenta"];4501 -> 4571[label="",style="dashed", color="magenta", weight=3]; 4501 -> 4572[label="",style="dashed", color="magenta", weight=3]; 4502 -> 2183[label="",style="dashed", color="red", weight=0]; 4502[label="vwx1741 == vwx1751",fontsize=16,color="magenta"];4502 -> 4573[label="",style="dashed", color="magenta", weight=3]; 4502 -> 4574[label="",style="dashed", color="magenta", weight=3]; 4503 -> 2182[label="",style="dashed", color="red", weight=0]; 4503[label="vwx1741 == vwx1751",fontsize=16,color="magenta"];4503 -> 4575[label="",style="dashed", color="magenta", weight=3]; 4503 -> 4576[label="",style="dashed", color="magenta", weight=3]; 4504 -> 2174[label="",style="dashed", color="red", weight=0]; 4504[label="vwx1741 == vwx1751",fontsize=16,color="magenta"];4504 -> 4577[label="",style="dashed", color="magenta", weight=3]; 4504 -> 4578[label="",style="dashed", color="magenta", weight=3]; 4505 -> 3050[label="",style="dashed", color="red", weight=0]; 4505[label="vwx1742 <= vwx1752",fontsize=16,color="magenta"];4505 -> 4579[label="",style="dashed", color="magenta", weight=3]; 4505 -> 4580[label="",style="dashed", color="magenta", weight=3]; 4506 -> 3051[label="",style="dashed", color="red", weight=0]; 4506[label="vwx1742 <= vwx1752",fontsize=16,color="magenta"];4506 -> 4581[label="",style="dashed", color="magenta", weight=3]; 4506 -> 4582[label="",style="dashed", color="magenta", weight=3]; 4507 -> 3052[label="",style="dashed", color="red", weight=0]; 4507[label="vwx1742 <= vwx1752",fontsize=16,color="magenta"];4507 -> 4583[label="",style="dashed", color="magenta", weight=3]; 4507 -> 4584[label="",style="dashed", color="magenta", weight=3]; 4508 -> 3053[label="",style="dashed", color="red", weight=0]; 4508[label="vwx1742 <= vwx1752",fontsize=16,color="magenta"];4508 -> 4585[label="",style="dashed", color="magenta", weight=3]; 4508 -> 4586[label="",style="dashed", color="magenta", weight=3]; 4509 -> 3054[label="",style="dashed", color="red", weight=0]; 4509[label="vwx1742 <= vwx1752",fontsize=16,color="magenta"];4509 -> 4587[label="",style="dashed", color="magenta", weight=3]; 4509 -> 4588[label="",style="dashed", color="magenta", weight=3]; 4510 -> 3055[label="",style="dashed", color="red", weight=0]; 4510[label="vwx1742 <= vwx1752",fontsize=16,color="magenta"];4510 -> 4589[label="",style="dashed", color="magenta", weight=3]; 4510 -> 4590[label="",style="dashed", color="magenta", weight=3]; 4511 -> 4[label="",style="dashed", color="red", weight=0]; 4511[label="vwx1742 <= vwx1752",fontsize=16,color="magenta"];4511 -> 4591[label="",style="dashed", color="magenta", weight=3]; 4511 -> 4592[label="",style="dashed", color="magenta", weight=3]; 4512 -> 3057[label="",style="dashed", color="red", weight=0]; 4512[label="vwx1742 <= vwx1752",fontsize=16,color="magenta"];4512 -> 4593[label="",style="dashed", color="magenta", weight=3]; 4512 -> 4594[label="",style="dashed", color="magenta", weight=3]; 4513 -> 3058[label="",style="dashed", color="red", weight=0]; 4513[label="vwx1742 <= vwx1752",fontsize=16,color="magenta"];4513 -> 4595[label="",style="dashed", color="magenta", weight=3]; 4513 -> 4596[label="",style="dashed", color="magenta", weight=3]; 4514 -> 3059[label="",style="dashed", color="red", weight=0]; 4514[label="vwx1742 <= vwx1752",fontsize=16,color="magenta"];4514 -> 4597[label="",style="dashed", color="magenta", weight=3]; 4514 -> 4598[label="",style="dashed", color="magenta", weight=3]; 4515 -> 3060[label="",style="dashed", color="red", weight=0]; 4515[label="vwx1742 <= vwx1752",fontsize=16,color="magenta"];4515 -> 4599[label="",style="dashed", color="magenta", weight=3]; 4515 -> 4600[label="",style="dashed", color="magenta", weight=3]; 4516 -> 3061[label="",style="dashed", color="red", weight=0]; 4516[label="vwx1742 <= vwx1752",fontsize=16,color="magenta"];4516 -> 4601[label="",style="dashed", color="magenta", weight=3]; 4516 -> 4602[label="",style="dashed", color="magenta", weight=3]; 4517 -> 3062[label="",style="dashed", color="red", weight=0]; 4517[label="vwx1742 <= vwx1752",fontsize=16,color="magenta"];4517 -> 4603[label="",style="dashed", color="magenta", weight=3]; 4517 -> 4604[label="",style="dashed", color="magenta", weight=3]; 4518 -> 3063[label="",style="dashed", color="red", weight=0]; 4518[label="vwx1742 <= vwx1752",fontsize=16,color="magenta"];4518 -> 4605[label="",style="dashed", color="magenta", weight=3]; 4518 -> 4606[label="",style="dashed", color="magenta", weight=3]; 4519[label="vwx1751",fontsize=16,color="green",shape="box"];4520[label="vwx1741",fontsize=16,color="green",shape="box"];4521[label="vwx1751",fontsize=16,color="green",shape="box"];4522[label="vwx1741",fontsize=16,color="green",shape="box"];4523[label="vwx1751",fontsize=16,color="green",shape="box"];4524[label="vwx1741",fontsize=16,color="green",shape="box"];4525[label="vwx1751",fontsize=16,color="green",shape="box"];4526[label="vwx1741",fontsize=16,color="green",shape="box"];4527[label="vwx1751",fontsize=16,color="green",shape="box"];4528[label="vwx1741",fontsize=16,color="green",shape="box"];4529[label="vwx1751",fontsize=16,color="green",shape="box"];4530[label="vwx1741",fontsize=16,color="green",shape="box"];4531[label="vwx1751",fontsize=16,color="green",shape="box"];4532[label="vwx1741",fontsize=16,color="green",shape="box"];4533[label="vwx1751",fontsize=16,color="green",shape="box"];4534[label="vwx1741",fontsize=16,color="green",shape="box"];4535[label="vwx1751",fontsize=16,color="green",shape="box"];4536[label="vwx1741",fontsize=16,color="green",shape="box"];4537[label="vwx1751",fontsize=16,color="green",shape="box"];4538[label="vwx1741",fontsize=16,color="green",shape="box"];4539[label="vwx1751",fontsize=16,color="green",shape="box"];4540[label="vwx1741",fontsize=16,color="green",shape="box"];4541[label="vwx1751",fontsize=16,color="green",shape="box"];4542[label="vwx1741",fontsize=16,color="green",shape="box"];4543[label="vwx1751",fontsize=16,color="green",shape="box"];4544[label="vwx1741",fontsize=16,color="green",shape="box"];4545[label="vwx1751",fontsize=16,color="green",shape="box"];4546[label="vwx1741",fontsize=16,color="green",shape="box"];4547[label="Succ (Succ (primPlusNat vwx31700 vwx401000))",fontsize=16,color="green",shape="box"];4547 -> 4607[label="",style="dashed", color="green", weight=3]; 4548[label="Succ vwx31700",fontsize=16,color="green",shape="box"];4549[label="Succ vwx401000",fontsize=16,color="green",shape="box"];4550[label="Zero",fontsize=16,color="green",shape="box"];4551[label="vwx1741",fontsize=16,color="green",shape="box"];4552[label="vwx1751",fontsize=16,color="green",shape="box"];4553[label="vwx1741",fontsize=16,color="green",shape="box"];4554[label="vwx1751",fontsize=16,color="green",shape="box"];4555[label="vwx1741",fontsize=16,color="green",shape="box"];4556[label="vwx1751",fontsize=16,color="green",shape="box"];4557[label="vwx1741",fontsize=16,color="green",shape="box"];4558[label="vwx1751",fontsize=16,color="green",shape="box"];4559[label="vwx1741",fontsize=16,color="green",shape="box"];4560[label="vwx1751",fontsize=16,color="green",shape="box"];4561[label="vwx1741",fontsize=16,color="green",shape="box"];4562[label="vwx1751",fontsize=16,color="green",shape="box"];4563[label="vwx1741",fontsize=16,color="green",shape="box"];4564[label="vwx1751",fontsize=16,color="green",shape="box"];4565[label="vwx1741",fontsize=16,color="green",shape="box"];4566[label="vwx1751",fontsize=16,color="green",shape="box"];4567[label="vwx1741",fontsize=16,color="green",shape="box"];4568[label="vwx1751",fontsize=16,color="green",shape="box"];4569[label="vwx1741",fontsize=16,color="green",shape="box"];4570[label="vwx1751",fontsize=16,color="green",shape="box"];4571[label="vwx1741",fontsize=16,color="green",shape="box"];4572[label="vwx1751",fontsize=16,color="green",shape="box"];4573[label="vwx1741",fontsize=16,color="green",shape="box"];4574[label="vwx1751",fontsize=16,color="green",shape="box"];4575[label="vwx1741",fontsize=16,color="green",shape="box"];4576[label="vwx1751",fontsize=16,color="green",shape="box"];4577[label="vwx1741",fontsize=16,color="green",shape="box"];4578[label="vwx1751",fontsize=16,color="green",shape="box"];4579[label="vwx1742",fontsize=16,color="green",shape="box"];4580[label="vwx1752",fontsize=16,color="green",shape="box"];4581[label="vwx1742",fontsize=16,color="green",shape="box"];4582[label="vwx1752",fontsize=16,color="green",shape="box"];4583[label="vwx1742",fontsize=16,color="green",shape="box"];4584[label="vwx1752",fontsize=16,color="green",shape="box"];4585[label="vwx1742",fontsize=16,color="green",shape="box"];4586[label="vwx1752",fontsize=16,color="green",shape="box"];4587[label="vwx1742",fontsize=16,color="green",shape="box"];4588[label="vwx1752",fontsize=16,color="green",shape="box"];4589[label="vwx1742",fontsize=16,color="green",shape="box"];4590[label="vwx1752",fontsize=16,color="green",shape="box"];4591[label="vwx1742",fontsize=16,color="green",shape="box"];4592[label="vwx1752",fontsize=16,color="green",shape="box"];4593[label="vwx1742",fontsize=16,color="green",shape="box"];4594[label="vwx1752",fontsize=16,color="green",shape="box"];4595[label="vwx1742",fontsize=16,color="green",shape="box"];4596[label="vwx1752",fontsize=16,color="green",shape="box"];4597[label="vwx1742",fontsize=16,color="green",shape="box"];4598[label="vwx1752",fontsize=16,color="green",shape="box"];4599[label="vwx1742",fontsize=16,color="green",shape="box"];4600[label="vwx1752",fontsize=16,color="green",shape="box"];4601[label="vwx1742",fontsize=16,color="green",shape="box"];4602[label="vwx1752",fontsize=16,color="green",shape="box"];4603[label="vwx1742",fontsize=16,color="green",shape="box"];4604[label="vwx1752",fontsize=16,color="green",shape="box"];4605[label="vwx1742",fontsize=16,color="green",shape="box"];4606[label="vwx1752",fontsize=16,color="green",shape="box"];4607 -> 4284[label="",style="dashed", color="red", weight=0]; 4607[label="primPlusNat vwx31700 vwx401000",fontsize=16,color="magenta"];4607 -> 4608[label="",style="dashed", color="magenta", weight=3]; 4607 -> 4609[label="",style="dashed", color="magenta", weight=3]; 4608[label="vwx31700",fontsize=16,color="green",shape="box"];4609[label="vwx401000",fontsize=16,color="green",shape="box"];} ---------------------------------------- (14) Complex Obligation (AND) ---------------------------------------- (15) Obligation: Q DP problem: The TRS P consists of the following rules: new_primCmpNat(Succ(vwx3000), Succ(vwx4000)) -> new_primCmpNat(vwx3000, vwx4000) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (16) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_primCmpNat(Succ(vwx3000), Succ(vwx4000)) -> new_primCmpNat(vwx3000, vwx4000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (17) YES ---------------------------------------- (18) Obligation: Q DP problem: The TRS P consists of the following rules: new_compare2(Just(vwx1740), Just(vwx1750), False, app(ty_Maybe, app(app(app(ty_@3, bba), bbb), bbc)), ce) -> new_ltEs0(vwx1740, vwx1750, bba, bbb, bbc) new_primCompAux(Just(vwx300), Just(vwx400), vwx164, app(ty_Maybe, bf)) -> new_compare22(vwx300, vwx400, new_esEs9(vwx300, vwx400, bf), bf) new_compare21(vwx225, vwx226, vwx227, vwx228, vwx229, vwx230, False, bfb, bfc, app(ty_[], bgb)) -> new_ltEs2(vwx227, vwx230, bgb) new_ltEs2(:(vwx30, vwx31), :(vwx40, vwx41), h) -> new_compare(vwx31, vwx41, h) new_ltEs0(@3(vwx1740, vwx1741, vwx1742), @3(vwx1750, vwx1751, vwx1752), eh, fa, app(app(app(ty_@3, fd), ff), fg)) -> new_ltEs0(vwx1742, vwx1752, fd, ff, fg) new_compare2(Just(vwx1740), Just(vwx1750), False, app(ty_Maybe, app(ty_[], bbe)), ce) -> new_ltEs2(vwx1740, vwx1750, bbe) new_compare1(Right(vwx300), Right(vwx400), ba, bb) -> new_compare20(vwx300, vwx400, new_esEs5(vwx300, vwx400, bb), ba, bb) new_compare2(Left(vwx1740), Left(vwx1750), False, app(app(ty_Either, app(ty_[], dc)), cd), ce) -> new_ltEs2(vwx1740, vwx1750, dc) new_compare2(@3(vwx1740, vwx1741, vwx1742), @3(vwx1750, vwx1751, vwx1752), False, app(app(app(ty_@3, app(ty_Maybe, bac)), fa), gf), ce) -> new_lt1(vwx1740, vwx1750, bac) new_compare21(vwx225, vwx226, vwx227, vwx228, vwx229, vwx230, False, bfb, app(ty_[], bhd), bgg) -> new_lt2(vwx226, vwx229, bhd) new_compare2(@3(vwx1740, vwx1741, vwx1742), @3(vwx1750, vwx1751, vwx1752), False, app(app(app(ty_@3, eh), fa), app(ty_Maybe, fh)), ce) -> new_ltEs1(vwx1742, vwx1752, fh) new_ltEs0(@3(vwx1740, vwx1741, vwx1742), @3(vwx1750, vwx1751, vwx1752), app(app(app(ty_@3, hh), baa), bab), fa, gf) -> new_lt0(vwx1740, vwx1750, hh, baa, bab) new_compare1(Left(vwx300), Left(vwx400), ba, bb) -> new_compare2(vwx300, vwx400, new_esEs4(vwx300, vwx400, ba), ba, bb) new_compare2(vwx174, vwx175, False, app(ty_[], bbh), ce) -> new_ltEs2(vwx174, vwx175, bbh) new_ltEs(Right(vwx1740), Right(vwx1750), df, app(ty_Maybe, ed)) -> new_ltEs1(vwx1740, vwx1750, ed) new_ltEs(Left(vwx1740), Left(vwx1750), app(ty_Maybe, db), cd) -> new_ltEs1(vwx1740, vwx1750, db) new_ltEs0(@3(vwx1740, vwx1741, vwx1742), @3(vwx1750, vwx1751, vwx1752), eh, app(ty_Maybe, hb), gf) -> new_lt1(vwx1741, vwx1751, hb) new_compare2(Right(vwx1740), Right(vwx1750), False, app(app(ty_Either, df), app(ty_Maybe, ed)), ce) -> new_ltEs1(vwx1740, vwx1750, ed) new_compare2(@3(vwx1740, vwx1741, vwx1742), @3(vwx1750, vwx1751, vwx1752), False, app(app(app(ty_@3, eh), app(app(app(ty_@3, gg), gh), ha)), gf), ce) -> new_lt0(vwx1741, vwx1751, gg, gh, ha) new_compare2(Right(vwx1740), Right(vwx1750), False, app(app(ty_Either, df), app(app(app(ty_@3, ea), eb), ec)), ce) -> new_ltEs0(vwx1740, vwx1750, ea, eb, ec) new_compare2(@2(vwx1740, vwx1741), @2(vwx1750, vwx1751), False, app(app(ty_@2, bca), app(app(ty_Either, bcb), bcc)), ce) -> new_ltEs(vwx1741, vwx1751, bcb, bcc) new_ltEs3(@2(vwx1740, vwx1741), @2(vwx1750, vwx1751), bca, app(app(ty_@2, bda), bdb)) -> new_ltEs3(vwx1741, vwx1751, bda, bdb) new_compare22(vwx203, vwx204, False, app(ty_Maybe, cah)) -> new_ltEs1(vwx203, vwx204, cah) new_compare23(vwx238, vwx239, vwx240, vwx241, False, cbd, app(ty_[], ccc)) -> new_ltEs2(vwx239, vwx241, ccc) new_ltEs3(@2(vwx1740, vwx1741), @2(vwx1750, vwx1751), bca, app(app(ty_Either, bcb), bcc)) -> new_ltEs(vwx1741, vwx1751, bcb, bcc) new_compare2(Right(vwx1740), Right(vwx1750), False, app(app(ty_Either, df), app(app(ty_Either, dg), dh)), ce) -> new_ltEs(vwx1740, vwx1750, dg, dh) new_ltEs3(@2(vwx1740, vwx1741), @2(vwx1750, vwx1751), app(app(ty_@2, bec), bed), bde) -> new_lt3(vwx1740, vwx1750, bec, bed) new_compare2(@3(vwx1740, vwx1741, vwx1742), @3(vwx1750, vwx1751, vwx1752), False, app(app(app(ty_@3, eh), fa), app(app(ty_@2, gb), gc)), ce) -> new_ltEs3(vwx1742, vwx1752, gb, gc) new_compare21(vwx225, vwx226, vwx227, vwx228, vwx229, vwx230, False, bfb, bfc, app(app(ty_Either, bfd), bfe)) -> new_ltEs(vwx227, vwx230, bfd, bfe) new_compare2(Left(vwx1740), Left(vwx1750), False, app(app(ty_Either, app(ty_Maybe, db)), cd), ce) -> new_ltEs1(vwx1740, vwx1750, db) new_ltEs0(@3(vwx1740, vwx1741, vwx1742), @3(vwx1750, vwx1751, vwx1752), eh, app(app(ty_Either, gd), ge), gf) -> new_lt(vwx1741, vwx1751, gd, ge) new_compare23(vwx238, vwx239, vwx240, vwx241, False, cbd, app(app(app(ty_@3, cbg), cbh), cca)) -> new_ltEs0(vwx239, vwx241, cbg, cbh, cca) new_compare23(vwx238, vwx239, vwx240, vwx241, False, app(ty_[], cde), cch) -> new_lt2(vwx238, vwx240, cde) new_compare2(@3(vwx1740, vwx1741, vwx1742), @3(vwx1750, vwx1751, vwx1752), False, app(app(app(ty_@3, eh), app(app(ty_Either, gd), ge)), gf), ce) -> new_lt(vwx1741, vwx1751, gd, ge) new_ltEs0(@3(vwx1740, vwx1741, vwx1742), @3(vwx1750, vwx1751, vwx1752), app(ty_[], bad), fa, gf) -> new_lt2(vwx1740, vwx1750, bad) new_compare2(@2(vwx1740, vwx1741), @2(vwx1750, vwx1751), False, app(app(ty_@2, app(app(app(ty_@3, bdf), bdg), bdh)), bde), ce) -> new_lt0(vwx1740, vwx1750, bdf, bdg, bdh) new_ltEs3(@2(vwx1740, vwx1741), @2(vwx1750, vwx1751), bca, app(ty_Maybe, bcg)) -> new_ltEs1(vwx1741, vwx1751, bcg) new_ltEs0(@3(vwx1740, vwx1741, vwx1742), @3(vwx1750, vwx1751, vwx1752), eh, app(ty_[], hc), gf) -> new_lt2(vwx1741, vwx1751, hc) new_lt3(vwx225, vwx228, caa, cab) -> new_compare5(vwx225, vwx228, caa, cab) new_compare2(@3(vwx1740, vwx1741, vwx1742), @3(vwx1750, vwx1751, vwx1752), False, app(app(app(ty_@3, app(app(ty_@2, bae), baf)), fa), gf), ce) -> new_lt3(vwx1740, vwx1750, bae, baf) new_ltEs(Left(vwx1740), Left(vwx1750), app(app(ty_Either, cb), cc), cd) -> new_ltEs(vwx1740, vwx1750, cb, cc) new_compare21(vwx225, vwx226, vwx227, vwx228, vwx229, vwx230, False, bfb, bfc, app(app(app(ty_@3, bff), bfg), bfh)) -> new_ltEs0(vwx227, vwx230, bff, bfg, bfh) new_compare2(@2(vwx1740, vwx1741), @2(vwx1750, vwx1751), False, app(app(ty_@2, app(ty_[], beb)), bde), ce) -> new_lt2(vwx1740, vwx1750, beb) new_ltEs2(:(vwx30, vwx31), :(vwx40, vwx41), h) -> new_primCompAux(vwx30, vwx40, new_compare0(vwx31, vwx41, h), h) new_compare22(vwx203, vwx204, False, app(app(ty_@2, cbb), cbc)) -> new_ltEs3(vwx203, vwx204, cbb, cbc) new_ltEs1(Just(vwx1740), Just(vwx1750), app(app(ty_Either, bag), bah)) -> new_ltEs(vwx1740, vwx1750, bag, bah) new_compare2(Right(vwx1740), Right(vwx1750), False, app(app(ty_Either, df), app(ty_[], ee)), ce) -> new_ltEs2(vwx1740, vwx1750, ee) new_ltEs0(@3(vwx1740, vwx1741, vwx1742), @3(vwx1750, vwx1751, vwx1752), eh, fa, app(ty_[], ga)) -> new_ltEs2(vwx1742, vwx1752, ga) new_compare2(Just(vwx1740), Just(vwx1750), False, app(ty_Maybe, app(app(ty_Either, bag), bah)), ce) -> new_ltEs(vwx1740, vwx1750, bag, bah) new_compare21(vwx225, vwx226, vwx227, vwx228, vwx229, vwx230, False, app(ty_[], bhh), bfc, bgg) -> new_compare(vwx225, vwx228, bhh) new_lt2(vwx225, vwx228, bhh) -> new_compare(vwx225, vwx228, bhh) new_ltEs0(@3(vwx1740, vwx1741, vwx1742), @3(vwx1750, vwx1751, vwx1752), eh, fa, app(ty_Maybe, fh)) -> new_ltEs1(vwx1742, vwx1752, fh) new_compare2(@2(vwx1740, vwx1741), @2(vwx1750, vwx1751), False, app(app(ty_@2, app(app(ty_Either, bdc), bdd)), bde), ce) -> new_lt(vwx1740, vwx1750, bdc, bdd) new_ltEs0(@3(vwx1740, vwx1741, vwx1742), @3(vwx1750, vwx1751, vwx1752), app(ty_Maybe, bac), fa, gf) -> new_lt1(vwx1740, vwx1750, bac) new_ltEs3(@2(vwx1740, vwx1741), @2(vwx1750, vwx1751), bca, app(ty_[], bch)) -> new_ltEs2(vwx1741, vwx1751, bch) new_compare2(Left(vwx1740), Left(vwx1750), False, app(app(ty_Either, app(app(app(ty_@3, cf), cg), da)), cd), ce) -> new_ltEs0(vwx1740, vwx1750, cf, cg, da) new_compare21(vwx225, vwx226, vwx227, vwx228, vwx229, vwx230, False, app(app(ty_@2, caa), cab), bfc, bgg) -> new_compare5(vwx225, vwx228, caa, cab) new_ltEs0(@3(vwx1740, vwx1741, vwx1742), @3(vwx1750, vwx1751, vwx1752), app(app(ty_Either, hf), hg), fa, gf) -> new_lt(vwx1740, vwx1750, hf, hg) new_compare20(vwx181, vwx182, False, cdh, app(ty_Maybe, cef)) -> new_ltEs1(vwx181, vwx182, cef) new_compare2(@2(vwx1740, vwx1741), @2(vwx1750, vwx1751), False, app(app(ty_@2, app(ty_Maybe, bea)), bde), ce) -> new_lt1(vwx1740, vwx1750, bea) new_ltEs3(@2(vwx1740, vwx1741), @2(vwx1750, vwx1751), bca, app(app(app(ty_@3, bcd), bce), bcf)) -> new_ltEs0(vwx1741, vwx1751, bcd, bce, bcf) new_compare2(Just(vwx1740), Just(vwx1750), False, app(ty_Maybe, app(ty_Maybe, bbd)), ce) -> new_ltEs1(vwx1740, vwx1750, bbd) new_ltEs(Left(vwx1740), Left(vwx1750), app(app(app(ty_@3, cf), cg), da), cd) -> new_ltEs0(vwx1740, vwx1750, cf, cg, da) new_primCompAux(Right(vwx300), Right(vwx400), vwx164, app(app(ty_Either, ba), bb)) -> new_compare20(vwx300, vwx400, new_esEs5(vwx300, vwx400, bb), ba, bb) new_ltEs3(@2(vwx1740, vwx1741), @2(vwx1750, vwx1751), app(ty_[], beb), bde) -> new_lt2(vwx1740, vwx1750, beb) new_compare20(vwx181, vwx182, False, cdh, app(app(ty_@2, ceh), cfa)) -> new_ltEs3(vwx181, vwx182, ceh, cfa) new_compare2(@3(vwx1740, vwx1741, vwx1742), @3(vwx1750, vwx1751, vwx1752), False, app(app(app(ty_@3, app(ty_[], bad)), fa), gf), ce) -> new_lt2(vwx1740, vwx1750, bad) new_compare2(Just(vwx1740), Just(vwx1750), False, app(ty_Maybe, app(app(ty_@2, bbf), bbg)), ce) -> new_ltEs3(vwx1740, vwx1750, bbf, bbg) new_ltEs1(Just(vwx1740), Just(vwx1750), app(ty_Maybe, bbd)) -> new_ltEs1(vwx1740, vwx1750, bbd) new_compare23(vwx238, vwx239, vwx240, vwx241, False, app(app(app(ty_@3, cda), cdb), cdc), cch) -> new_lt0(vwx238, vwx240, cda, cdb, cdc) new_compare23(vwx238, vwx239, vwx240, vwx241, False, app(app(ty_Either, ccf), ccg), cch) -> new_lt(vwx238, vwx240, ccf, ccg) new_compare23(vwx238, vwx239, vwx240, vwx241, False, app(app(ty_@2, cdf), cdg), cch) -> new_lt3(vwx238, vwx240, cdf, cdg) new_ltEs0(@3(vwx1740, vwx1741, vwx1742), @3(vwx1750, vwx1751, vwx1752), app(app(ty_@2, bae), baf), fa, gf) -> new_lt3(vwx1740, vwx1750, bae, baf) new_compare23(vwx238, vwx239, vwx240, vwx241, False, cbd, app(app(ty_Either, cbe), cbf)) -> new_ltEs(vwx239, vwx241, cbe, cbf) new_compare20(vwx181, vwx182, False, cdh, app(ty_[], ceg)) -> new_ltEs2(vwx181, vwx182, ceg) new_ltEs3(@2(vwx1740, vwx1741), @2(vwx1750, vwx1751), app(ty_Maybe, bea), bde) -> new_lt1(vwx1740, vwx1750, bea) new_ltEs1(Just(vwx1740), Just(vwx1750), app(ty_[], bbe)) -> new_ltEs2(vwx1740, vwx1750, bbe) new_compare2(@2(vwx1740, vwx1741), @2(vwx1750, vwx1751), False, app(app(ty_@2, bca), app(ty_[], bch)), ce) -> new_ltEs2(vwx1741, vwx1751, bch) new_compare23(vwx238, vwx239, vwx240, vwx241, False, app(ty_Maybe, cdd), cch) -> new_lt1(vwx238, vwx240, cdd) new_lt0(vwx225, vwx228, beg, beh, bfa) -> new_compare3(vwx225, vwx228, beg, beh, bfa) new_compare22(vwx203, vwx204, False, app(app(ty_Either, cac), cad)) -> new_ltEs(vwx203, vwx204, cac, cad) new_compare2(Left(vwx1740), Left(vwx1750), False, app(app(ty_Either, app(app(ty_Either, cb), cc)), cd), ce) -> new_ltEs(vwx1740, vwx1750, cb, cc) new_compare2(@3(vwx1740, vwx1741, vwx1742), @3(vwx1750, vwx1751, vwx1752), False, app(app(app(ty_@3, eh), app(app(ty_@2, hd), he)), gf), ce) -> new_lt3(vwx1741, vwx1751, hd, he) new_ltEs1(Just(vwx1740), Just(vwx1750), app(app(app(ty_@3, bba), bbb), bbc)) -> new_ltEs0(vwx1740, vwx1750, bba, bbb, bbc) new_ltEs0(@3(vwx1740, vwx1741, vwx1742), @3(vwx1750, vwx1751, vwx1752), eh, app(app(ty_@2, hd), he), gf) -> new_lt3(vwx1741, vwx1751, hd, he) new_ltEs(Left(vwx1740), Left(vwx1750), app(ty_[], dc), cd) -> new_ltEs2(vwx1740, vwx1750, dc) new_compare21(vwx225, vwx226, vwx227, vwx228, vwx229, vwx230, False, bfb, app(app(app(ty_@3, bgh), bha), bhb), bgg) -> new_lt0(vwx226, vwx229, bgh, bha, bhb) new_ltEs(Right(vwx1740), Right(vwx1750), df, app(ty_[], ee)) -> new_ltEs2(vwx1740, vwx1750, ee) new_lt1(vwx225, vwx228, bhg) -> new_compare4(vwx225, vwx228, bhg) new_ltEs(Right(vwx1740), Right(vwx1750), df, app(app(ty_Either, dg), dh)) -> new_ltEs(vwx1740, vwx1750, dg, dh) new_ltEs1(Just(vwx1740), Just(vwx1750), app(app(ty_@2, bbf), bbg)) -> new_ltEs3(vwx1740, vwx1750, bbf, bbg) new_compare2(@3(vwx1740, vwx1741, vwx1742), @3(vwx1750, vwx1751, vwx1752), False, app(app(app(ty_@3, eh), fa), app(app(ty_Either, fb), fc)), ce) -> new_ltEs(vwx1742, vwx1752, fb, fc) new_compare2(@3(vwx1740, vwx1741, vwx1742), @3(vwx1750, vwx1751, vwx1752), False, app(app(app(ty_@3, app(app(ty_Either, hf), hg)), fa), gf), ce) -> new_lt(vwx1740, vwx1750, hf, hg) new_compare20(vwx181, vwx182, False, cdh, app(app(app(ty_@3, cec), ced), cee)) -> new_ltEs0(vwx181, vwx182, cec, ced, cee) new_compare21(vwx225, vwx226, vwx227, vwx228, vwx229, vwx230, False, bfb, bfc, app(ty_Maybe, bga)) -> new_ltEs1(vwx227, vwx230, bga) new_compare2(Left(vwx1740), Left(vwx1750), False, app(app(ty_Either, app(app(ty_@2, dd), de)), cd), ce) -> new_ltEs3(vwx1740, vwx1750, dd, de) new_compare2(@3(vwx1740, vwx1741, vwx1742), @3(vwx1750, vwx1751, vwx1752), False, app(app(app(ty_@3, eh), fa), app(app(app(ty_@3, fd), ff), fg)), ce) -> new_ltEs0(vwx1742, vwx1752, fd, ff, fg) new_compare2(@2(vwx1740, vwx1741), @2(vwx1750, vwx1751), False, app(app(ty_@2, bca), app(ty_Maybe, bcg)), ce) -> new_ltEs1(vwx1741, vwx1751, bcg) new_compare2(@3(vwx1740, vwx1741, vwx1742), @3(vwx1750, vwx1751, vwx1752), False, app(app(app(ty_@3, eh), app(ty_[], hc)), gf), ce) -> new_lt2(vwx1741, vwx1751, hc) new_ltEs0(@3(vwx1740, vwx1741, vwx1742), @3(vwx1750, vwx1751, vwx1752), eh, fa, app(app(ty_Either, fb), fc)) -> new_ltEs(vwx1742, vwx1752, fb, fc) new_compare2(@2(vwx1740, vwx1741), @2(vwx1750, vwx1751), False, app(app(ty_@2, bca), app(app(ty_@2, bda), bdb)), ce) -> new_ltEs3(vwx1741, vwx1751, bda, bdb) new_ltEs(Left(vwx1740), Left(vwx1750), app(app(ty_@2, dd), de), cd) -> new_ltEs3(vwx1740, vwx1750, dd, de) new_primCompAux(Left(vwx300), Left(vwx400), vwx164, app(app(ty_Either, ba), bb)) -> new_compare2(vwx300, vwx400, new_esEs4(vwx300, vwx400, ba), ba, bb) new_ltEs3(@2(vwx1740, vwx1741), @2(vwx1750, vwx1751), app(app(ty_Either, bdc), bdd), bde) -> new_lt(vwx1740, vwx1750, bdc, bdd) new_primCompAux(@2(vwx300, vwx301), @2(vwx400, vwx401), vwx164, app(app(ty_@2, bh), ca)) -> new_compare23(vwx300, vwx301, vwx400, vwx401, new_asAs(new_esEs10(vwx300, vwx400, bh), new_esEs11(vwx301, vwx401, ca)), bh, ca) new_ltEs0(@3(vwx1740, vwx1741, vwx1742), @3(vwx1750, vwx1751, vwx1752), eh, app(app(app(ty_@3, gg), gh), ha), gf) -> new_lt0(vwx1741, vwx1751, gg, gh, ha) new_compare21(vwx225, vwx226, vwx227, vwx228, vwx229, vwx230, False, app(ty_Maybe, bhg), bfc, bgg) -> new_compare4(vwx225, vwx228, bhg) new_ltEs0(@3(vwx1740, vwx1741, vwx1742), @3(vwx1750, vwx1751, vwx1752), eh, fa, app(app(ty_@2, gb), gc)) -> new_ltEs3(vwx1742, vwx1752, gb, gc) new_compare21(vwx225, vwx226, vwx227, vwx228, vwx229, vwx230, False, bfb, app(ty_Maybe, bhc), bgg) -> new_lt1(vwx226, vwx229, bhc) new_compare(:(vwx30, vwx31), :(vwx40, vwx41), h) -> new_primCompAux(vwx30, vwx40, new_compare0(vwx31, vwx41, h), h) new_compare21(vwx225, vwx226, vwx227, vwx228, vwx229, vwx230, False, bfb, app(app(ty_@2, bhe), bhf), bgg) -> new_lt3(vwx226, vwx229, bhe, bhf) new_compare23(vwx238, vwx239, vwx240, vwx241, False, cbd, app(ty_Maybe, ccb)) -> new_ltEs1(vwx239, vwx241, ccb) new_compare21(vwx225, vwx226, vwx227, vwx228, vwx229, vwx230, False, bfb, app(app(ty_Either, bge), bgf), bgg) -> new_lt(vwx226, vwx229, bge, bgf) new_ltEs3(@2(vwx1740, vwx1741), @2(vwx1750, vwx1751), app(app(app(ty_@3, bdf), bdg), bdh), bde) -> new_lt0(vwx1740, vwx1750, bdf, bdg, bdh) new_compare21(vwx225, vwx226, vwx227, vwx228, vwx229, vwx230, False, app(app(ty_Either, bee), bef), bfc, bgg) -> new_compare1(vwx225, vwx228, bee, bef) new_compare21(vwx225, vwx226, vwx227, vwx228, vwx229, vwx230, False, bfb, bfc, app(app(ty_@2, bgc), bgd)) -> new_ltEs3(vwx227, vwx230, bgc, bgd) new_ltEs(Right(vwx1740), Right(vwx1750), df, app(app(ty_@2, ef), eg)) -> new_ltEs3(vwx1740, vwx1750, ef, eg) new_compare3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bc, bd, be) -> new_compare21(vwx300, vwx301, vwx302, vwx400, vwx401, vwx402, new_asAs(new_esEs6(vwx300, vwx400, bc), new_asAs(new_esEs7(vwx301, vwx401, bd), new_esEs8(vwx302, vwx402, be))), bc, bd, be) new_compare2(@3(vwx1740, vwx1741, vwx1742), @3(vwx1750, vwx1751, vwx1752), False, app(app(app(ty_@3, eh), app(ty_Maybe, hb)), gf), ce) -> new_lt1(vwx1741, vwx1751, hb) new_compare2(@2(vwx1740, vwx1741), @2(vwx1750, vwx1751), False, app(app(ty_@2, bca), app(app(app(ty_@3, bcd), bce), bcf)), ce) -> new_ltEs0(vwx1741, vwx1751, bcd, bce, bcf) new_primCompAux(vwx30, vwx40, vwx164, app(ty_[], bg)) -> new_compare(vwx30, vwx40, bg) new_compare20(vwx181, vwx182, False, cdh, app(app(ty_Either, cea), ceb)) -> new_ltEs(vwx181, vwx182, cea, ceb) new_compare22(vwx203, vwx204, False, app(ty_[], cba)) -> new_ltEs2(vwx203, vwx204, cba) new_compare22(vwx203, vwx204, False, app(app(app(ty_@3, cae), caf), cag)) -> new_ltEs0(vwx203, vwx204, cae, caf, cag) new_compare2(@3(vwx1740, vwx1741, vwx1742), @3(vwx1750, vwx1751, vwx1752), False, app(app(app(ty_@3, app(app(app(ty_@3, hh), baa), bab)), fa), gf), ce) -> new_lt0(vwx1740, vwx1750, hh, baa, bab) new_compare5(@2(vwx300, vwx301), @2(vwx400, vwx401), bh, ca) -> new_compare23(vwx300, vwx301, vwx400, vwx401, new_asAs(new_esEs10(vwx300, vwx400, bh), new_esEs11(vwx301, vwx401, ca)), bh, ca) new_compare4(Just(vwx300), Just(vwx400), bf) -> new_compare22(vwx300, vwx400, new_esEs9(vwx300, vwx400, bf), bf) new_lt(vwx225, vwx228, bee, bef) -> new_compare1(vwx225, vwx228, bee, bef) new_compare(:(vwx30, vwx31), :(vwx40, vwx41), h) -> new_compare(vwx31, vwx41, h) new_primCompAux(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), vwx164, app(app(app(ty_@3, bc), bd), be)) -> new_compare21(vwx300, vwx301, vwx302, vwx400, vwx401, vwx402, new_asAs(new_esEs6(vwx300, vwx400, bc), new_asAs(new_esEs7(vwx301, vwx401, bd), new_esEs8(vwx302, vwx402, be))), bc, bd, be) new_compare2(@2(vwx1740, vwx1741), @2(vwx1750, vwx1751), False, app(app(ty_@2, app(app(ty_@2, bec), bed)), bde), ce) -> new_lt3(vwx1740, vwx1750, bec, bed) new_compare2(Right(vwx1740), Right(vwx1750), False, app(app(ty_Either, df), app(app(ty_@2, ef), eg)), ce) -> new_ltEs3(vwx1740, vwx1750, ef, eg) new_compare23(vwx238, vwx239, vwx240, vwx241, False, cbd, app(app(ty_@2, ccd), cce)) -> new_ltEs3(vwx239, vwx241, ccd, cce) new_compare2(@3(vwx1740, vwx1741, vwx1742), @3(vwx1750, vwx1751, vwx1752), False, app(app(app(ty_@3, eh), fa), app(ty_[], ga)), ce) -> new_ltEs2(vwx1742, vwx1752, ga) new_ltEs(Right(vwx1740), Right(vwx1750), df, app(app(app(ty_@3, ea), eb), ec)) -> new_ltEs0(vwx1740, vwx1750, ea, eb, ec) new_compare21(vwx225, vwx226, vwx227, vwx228, vwx229, vwx230, False, app(app(app(ty_@3, beg), beh), bfa), bfc, bgg) -> new_compare3(vwx225, vwx228, beg, beh, bfa) The TRS R consists of the following rules: new_lt20(vwx1741, vwx1751, ty_Double) -> new_lt12(vwx1741, vwx1751) new_lt12(vwx225, vwx228) -> new_esEs12(new_compare29(vwx225, vwx228), LT) new_ltEs20(vwx227, vwx230, app(ty_[], bgb)) -> new_ltEs11(vwx227, vwx230, bgb) new_lt9(vwx225, vwx228, ty_Bool) -> new_lt7(vwx225, vwx228) new_esEs19(Right(vwx3000), Right(vwx4000), eag, app(ty_Maybe, ehb)) -> new_esEs20(vwx3000, vwx4000, ehb) new_ltEs17(LT, EQ) -> True new_esEs19(Right(vwx3000), Right(vwx4000), eag, ty_@0) -> new_esEs22(vwx3000, vwx4000) new_primCmpInt(Neg(Succ(vwx3000)), Pos(vwx400)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_esEs26(vwx225, vwx228, app(ty_Ratio, ddd)) -> new_esEs21(vwx225, vwx228, ddd) new_ltEs9(@3(vwx1740, vwx1741, vwx1742), @3(vwx1750, vwx1751, vwx1752), eh, fa, gf) -> new_pePe(new_lt21(vwx1740, vwx1750, eh), new_asAs(new_esEs31(vwx1740, vwx1750, eh), new_pePe(new_lt20(vwx1741, vwx1751, fa), new_asAs(new_esEs32(vwx1741, vwx1751, fa), new_ltEs22(vwx1742, vwx1752, gf))))) new_lt21(vwx1740, vwx1750, app(ty_[], bad)) -> new_lt15(vwx1740, vwx1750, bad) new_pePe(True, vwx316) -> True new_compare11(vwx275, vwx276, True, ehf) -> LT new_esEs9(vwx300, vwx400, app(ty_Maybe, fae)) -> new_esEs20(vwx300, vwx400, fae) new_compare34(LT, LT) -> EQ new_lt20(vwx1741, vwx1751, app(ty_Ratio, edb)) -> new_lt10(vwx1741, vwx1751, edb) new_esEs10(vwx300, vwx400, ty_Bool) -> new_esEs14(vwx300, vwx400) new_esEs10(vwx300, vwx400, ty_@0) -> new_esEs22(vwx300, vwx400) new_compare33(Char(vwx300), Char(vwx400)) -> new_primCmpNat0(vwx300, vwx400) new_esEs5(vwx300, vwx400, ty_Integer) -> new_esEs24(vwx300, vwx400) new_esEs38(vwx3000, vwx4000, ty_Double) -> new_esEs16(vwx3000, vwx4000) new_esEs5(vwx300, vwx400, ty_Int) -> new_esEs15(vwx300, vwx400) new_esEs32(vwx1741, vwx1751, ty_Integer) -> new_esEs24(vwx1741, vwx1751) new_esEs13(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), dec, ded, dee) -> new_asAs(new_esEs28(vwx3000, vwx4000, dec), new_asAs(new_esEs29(vwx3001, vwx4001, ded), new_esEs30(vwx3002, vwx4002, dee))) new_lt21(vwx1740, vwx1750, ty_Ordering) -> new_lt19(vwx1740, vwx1750) new_ltEs10(Just(vwx1740), Just(vwx1750), ty_Int) -> new_ltEs12(vwx1740, vwx1750) new_lt5(vwx225, vwx228) -> new_esEs12(new_compare7(vwx225, vwx228), LT) new_ltEs22(vwx1742, vwx1752, app(ty_Ratio, edc)) -> new_ltEs5(vwx1742, vwx1752, edc) new_lt22(vwx238, vwx240, ty_Float) -> new_lt11(vwx238, vwx240) new_fsEs(GT) -> False new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_lt23(vwx1740, vwx1750, ty_Integer) -> new_lt18(vwx1740, vwx1750) new_compare32(:%(vwx300, vwx301), :%(vwx400, vwx401), ty_Int) -> new_compare7(new_sr(vwx300, vwx401), new_sr(vwx400, vwx301)) new_primCmpInt(Pos(Zero), Neg(Succ(vwx4000))) -> GT new_esEs11(vwx301, vwx401, app(ty_Maybe, dcf)) -> new_esEs20(vwx301, vwx401, dcf) new_ltEs23(vwx239, vwx241, ty_Bool) -> new_ltEs18(vwx239, vwx241) new_ltEs8(Right(vwx1740), Right(vwx1750), df, ty_Ordering) -> new_ltEs17(vwx1740, vwx1750) new_esEs32(vwx1741, vwx1751, app(ty_Ratio, edb)) -> new_esEs21(vwx1741, vwx1751, edb) new_ltEs22(vwx1742, vwx1752, ty_Double) -> new_ltEs7(vwx1742, vwx1752) new_compare32(:%(vwx300, vwx301), :%(vwx400, vwx401), ty_Integer) -> new_compare9(new_sr0(vwx300, vwx401), new_sr0(vwx400, vwx301)) new_esEs20(Just(vwx3000), Just(vwx4000), app(app(app(ty_@3, fce), fcf), fcg)) -> new_esEs13(vwx3000, vwx4000, fce, fcf, fcg) new_ltEs18(True, False) -> False new_esEs32(vwx1741, vwx1751, ty_Int) -> new_esEs15(vwx1741, vwx1751) new_esEs19(Left(vwx3000), Left(vwx4000), app(ty_Maybe, efh), eah) -> new_esEs20(vwx3000, vwx4000, efh) new_ltEs8(Right(vwx1740), Right(vwx1750), df, app(app(app(ty_@3, ea), eb), ec)) -> new_ltEs9(vwx1740, vwx1750, ea, eb, ec) new_primCmpInt(Neg(Succ(vwx3000)), Neg(vwx400)) -> new_primCmpNat0(vwx400, Succ(vwx3000)) new_compare0(:(vwx30, vwx31), :(vwx40, vwx41), h) -> new_primCompAux1(vwx30, vwx40, new_compare0(vwx31, vwx41, h), h) new_esEs5(vwx300, vwx400, app(ty_Ratio, ecd)) -> new_esEs21(vwx300, vwx400, ecd) new_compare30(Just(vwx300), Just(vwx400), bf) -> new_compare25(vwx300, vwx400, new_esEs9(vwx300, vwx400, bf), bf) new_compare31(vwx30, vwx40, ty_Bool) -> new_compare13(vwx30, vwx40) new_esEs10(vwx300, vwx400, app(app(app(ty_@3, edd), ede), edf)) -> new_esEs13(vwx300, vwx400, edd, ede, edf) new_esEs19(Left(vwx3000), Left(vwx4000), ty_Double, eah) -> new_esEs16(vwx3000, vwx4000) new_esEs9(vwx300, vwx400, app(ty_Ratio, faf)) -> new_esEs21(vwx300, vwx400, faf) new_fsEs(LT) -> new_not new_esEs35(vwx3000, vwx4000, ty_@0) -> new_esEs22(vwx3000, vwx4000) new_ltEs8(Left(vwx1740), Left(vwx1750), ty_Bool, cd) -> new_ltEs18(vwx1740, vwx1750) new_ltEs22(vwx1742, vwx1752, app(app(ty_@2, gb), gc)) -> new_ltEs14(vwx1742, vwx1752, gb, gc) new_esEs20(Just(vwx3000), Just(vwx4000), ty_@0) -> new_esEs22(vwx3000, vwx4000) new_esEs8(vwx302, vwx402, ty_@0) -> new_esEs22(vwx302, vwx402) new_compare14(vwx290, vwx291, vwx292, vwx293, vwx294, vwx295, True, vwx297, dbe, dbf, dbg) -> new_compare15(vwx290, vwx291, vwx292, vwx293, vwx294, vwx295, True, dbe, dbf, dbg) new_ltEs8(Right(vwx1740), Right(vwx1750), df, app(ty_Ratio, eae)) -> new_ltEs5(vwx1740, vwx1750, eae) new_compare28(vwx238, vwx239, vwx240, vwx241, True, cbd, cch) -> EQ new_primCompAux0(vwx168, GT) -> GT new_lt20(vwx1741, vwx1751, app(app(app(ty_@3, gg), gh), ha)) -> new_lt4(vwx1741, vwx1751, gg, gh, ha) new_lt8(vwx226, vwx229, app(app(app(ty_@3, bgh), bha), bhb)) -> new_lt4(vwx226, vwx229, bgh, bha, bhb) new_ltEs21(vwx181, vwx182, ty_Ordering) -> new_ltEs17(vwx181, vwx182) new_ltEs24(vwx1741, vwx1751, ty_Float) -> new_ltEs6(vwx1741, vwx1751) new_esEs19(Left(vwx3000), Left(vwx4000), ty_Char, eah) -> new_esEs17(vwx3000, vwx4000) new_compare34(EQ, GT) -> LT new_ltEs19(vwx203, vwx204, app(ty_[], cba)) -> new_ltEs11(vwx203, vwx204, cba) new_ltEs8(Left(vwx1740), Left(vwx1750), app(ty_Ratio, ead), cd) -> new_ltEs5(vwx1740, vwx1750, ead) new_primEqInt(Pos(Succ(vwx30000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(vwx40000))) -> False new_ltEs8(Left(vwx1740), Left(vwx1750), app(ty_Maybe, db), cd) -> new_ltEs10(vwx1740, vwx1750, db) new_ltEs8(Left(vwx1740), Left(vwx1750), ty_@0, cd) -> new_ltEs16(vwx1740, vwx1750) new_ltEs19(vwx203, vwx204, ty_Int) -> new_ltEs12(vwx203, vwx204) new_esEs31(vwx1740, vwx1750, app(app(ty_@2, bae), baf)) -> new_esEs23(vwx1740, vwx1750, bae, baf) new_ltEs23(vwx239, vwx241, ty_@0) -> new_ltEs16(vwx239, vwx241) new_esEs7(vwx301, vwx401, app(ty_[], daf)) -> new_esEs18(vwx301, vwx401, daf) new_esEs34(vwx1740, vwx1750, app(ty_[], beb)) -> new_esEs18(vwx1740, vwx1750, beb) new_esEs4(vwx300, vwx400, app(app(ty_@2, ebc), ebd)) -> new_esEs23(vwx300, vwx400, ebc, ebd) new_esEs15(vwx300, vwx400) -> new_primEqInt(vwx300, vwx400) new_esEs31(vwx1740, vwx1750, app(app(app(ty_@3, hh), baa), bab)) -> new_esEs13(vwx1740, vwx1750, hh, baa, bab) new_lt22(vwx238, vwx240, ty_Bool) -> new_lt7(vwx238, vwx240) new_esEs4(vwx300, vwx400, app(app(app(ty_@3, dec), ded), dee)) -> new_esEs13(vwx300, vwx400, dec, ded, dee) new_primEqNat0(Succ(vwx30000), Succ(vwx40000)) -> new_primEqNat0(vwx30000, vwx40000) new_esEs29(vwx3001, vwx4001, ty_@0) -> new_esEs22(vwx3001, vwx4001) new_esEs32(vwx1741, vwx1751, app(ty_Maybe, hb)) -> new_esEs20(vwx1741, vwx1751, hb) new_ltEs22(vwx1742, vwx1752, app(ty_Maybe, fh)) -> new_ltEs10(vwx1742, vwx1752, fh) new_esEs5(vwx300, vwx400, app(ty_Maybe, ecc)) -> new_esEs20(vwx300, vwx400, ecc) new_compare30(Nothing, Just(vwx400), bf) -> LT new_esEs31(vwx1740, vwx1750, ty_Bool) -> new_esEs14(vwx1740, vwx1750) new_ltEs14(@2(vwx1740, vwx1741), @2(vwx1750, vwx1751), bca, bde) -> new_pePe(new_lt23(vwx1740, vwx1750, bca), new_asAs(new_esEs34(vwx1740, vwx1750, bca), new_ltEs24(vwx1741, vwx1751, bde))) new_primCompAux0(vwx168, LT) -> LT new_esEs26(vwx225, vwx228, app(ty_Maybe, bhg)) -> new_esEs20(vwx225, vwx228, bhg) new_ltEs8(Right(vwx1740), Right(vwx1750), df, app(ty_Maybe, ed)) -> new_ltEs10(vwx1740, vwx1750, ed) new_esEs18([], [], eaf) -> True new_ltEs20(vwx227, vwx230, app(app(ty_Either, bfd), bfe)) -> new_ltEs8(vwx227, vwx230, bfd, bfe) new_esEs28(vwx3000, vwx4000, app(ty_[], dfa)) -> new_esEs18(vwx3000, vwx4000, dfa) new_ltEs17(LT, GT) -> True new_esEs11(vwx301, vwx401, ty_Int) -> new_esEs15(vwx301, vwx401) new_ltEs10(Just(vwx1740), Just(vwx1750), app(app(ty_Either, bag), bah)) -> new_ltEs8(vwx1740, vwx1750, bag, bah) new_esEs28(vwx3000, vwx4000, ty_Char) -> new_esEs17(vwx3000, vwx4000) new_esEs4(vwx300, vwx400, ty_Bool) -> new_esEs14(vwx300, vwx400) new_lt4(vwx225, vwx228, beg, beh, bfa) -> new_esEs12(new_compare6(vwx225, vwx228, beg, beh, bfa), LT) new_lt8(vwx226, vwx229, app(ty_Ratio, dde)) -> new_lt10(vwx226, vwx229, dde) new_esEs34(vwx1740, vwx1750, ty_Double) -> new_esEs16(vwx1740, vwx1750) new_esEs9(vwx300, vwx400, ty_Integer) -> new_esEs24(vwx300, vwx400) new_ltEs4(vwx174, vwx175, app(ty_Ratio, cfc)) -> new_ltEs5(vwx174, vwx175, cfc) new_primCmpNat0(Zero, Zero) -> EQ new_lt9(vwx225, vwx228, ty_@0) -> new_lt6(vwx225, vwx228) new_lt9(vwx225, vwx228, app(ty_[], bhh)) -> new_lt15(vwx225, vwx228, bhh) new_esEs27(vwx226, vwx229, ty_Double) -> new_esEs16(vwx226, vwx229) new_esEs31(vwx1740, vwx1750, app(ty_Maybe, bac)) -> new_esEs20(vwx1740, vwx1750, bac) new_esEs30(vwx3002, vwx4002, app(app(app(ty_@3, dhb), dhc), dhd)) -> new_esEs13(vwx3002, vwx4002, dhb, dhc, dhd) new_esEs32(vwx1741, vwx1751, ty_Ordering) -> new_esEs12(vwx1741, vwx1751) new_esEs39(vwx3001, vwx4001, app(ty_[], ffd)) -> new_esEs18(vwx3001, vwx4001, ffd) new_esEs10(vwx300, vwx400, ty_Float) -> new_esEs25(vwx300, vwx400) new_esEs9(vwx300, vwx400, ty_Int) -> new_esEs15(vwx300, vwx400) new_esEs30(vwx3002, vwx4002, ty_Bool) -> new_esEs14(vwx3002, vwx4002) new_lt9(vwx225, vwx228, app(app(ty_@2, caa), cab)) -> new_lt17(vwx225, vwx228, caa, cab) new_esEs19(Right(vwx3000), Right(vwx4000), eag, ty_Float) -> new_esEs25(vwx3000, vwx4000) new_ltEs17(EQ, GT) -> True new_compare16(vwx261, vwx262, False, ddg, ddh) -> GT new_ltEs20(vwx227, vwx230, ty_Int) -> new_ltEs12(vwx227, vwx230) new_compare31(vwx30, vwx40, ty_Ordering) -> new_compare34(vwx30, vwx40) new_ltEs5(vwx174, vwx175, cfc) -> new_fsEs(new_compare32(vwx174, vwx175, cfc)) new_esEs27(vwx226, vwx229, ty_Char) -> new_esEs17(vwx226, vwx229) new_lt9(vwx225, vwx228, ty_Ordering) -> new_lt19(vwx225, vwx228) new_esEs35(vwx3000, vwx4000, app(app(ty_@2, fca), fcb)) -> new_esEs23(vwx3000, vwx4000, fca, fcb) new_ltEs8(Left(vwx1740), Left(vwx1750), app(app(ty_Either, cb), cc), cd) -> new_ltEs8(vwx1740, vwx1750, cb, cc) new_lt21(vwx1740, vwx1750, ty_Char) -> new_lt16(vwx1740, vwx1750) new_esEs12(LT, LT) -> True new_esEs28(vwx3000, vwx4000, ty_Double) -> new_esEs16(vwx3000, vwx4000) new_ltEs22(vwx1742, vwx1752, ty_Integer) -> new_ltEs15(vwx1742, vwx1752) new_lt8(vwx226, vwx229, ty_Int) -> new_lt5(vwx226, vwx229) new_esEs37(vwx3001, vwx4001, ty_Int) -> new_esEs15(vwx3001, vwx4001) new_esEs11(vwx301, vwx401, ty_Integer) -> new_esEs24(vwx301, vwx401) new_esEs11(vwx301, vwx401, ty_Float) -> new_esEs25(vwx301, vwx401) new_primEqNat0(Succ(vwx30000), Zero) -> False new_primEqNat0(Zero, Succ(vwx40000)) -> False new_esEs33(vwx238, vwx240, ty_Double) -> new_esEs16(vwx238, vwx240) new_ltEs24(vwx1741, vwx1751, app(ty_[], bch)) -> new_ltEs11(vwx1741, vwx1751, bch) new_esEs6(vwx300, vwx400, app(app(ty_Either, che), chf)) -> new_esEs19(vwx300, vwx400, che, chf) new_compare10(vwx254, vwx255, True, ddb, ddc) -> LT new_lt21(vwx1740, vwx1750, app(app(app(ty_@3, hh), baa), bab)) -> new_lt4(vwx1740, vwx1750, hh, baa, bab) new_compare25(vwx203, vwx204, False, cfe) -> new_compare11(vwx203, vwx204, new_ltEs19(vwx203, vwx204, cfe), cfe) new_ltEs4(vwx174, vwx175, ty_Ordering) -> new_ltEs17(vwx174, vwx175) new_ltEs17(LT, LT) -> True new_esEs14(False, True) -> False new_esEs14(True, False) -> False new_esEs31(vwx1740, vwx1750, app(ty_Ratio, eda)) -> new_esEs21(vwx1740, vwx1750, eda) new_ltEs23(vwx239, vwx241, ty_Integer) -> new_ltEs15(vwx239, vwx241) new_ltEs24(vwx1741, vwx1751, ty_Bool) -> new_ltEs18(vwx1741, vwx1751) new_esEs27(vwx226, vwx229, ty_Ordering) -> new_esEs12(vwx226, vwx229) new_ltEs21(vwx181, vwx182, ty_Char) -> new_ltEs13(vwx181, vwx182) new_ltEs4(vwx174, vwx175, app(app(ty_@2, bca), bde)) -> new_ltEs14(vwx174, vwx175, bca, bde) new_esEs4(vwx300, vwx400, ty_@0) -> new_esEs22(vwx300, vwx400) new_ltEs10(Nothing, Just(vwx1750), cfd) -> True new_ltEs10(Just(vwx1740), Just(vwx1750), ty_Char) -> new_ltEs13(vwx1740, vwx1750) new_ltEs24(vwx1741, vwx1751, ty_@0) -> new_ltEs16(vwx1741, vwx1751) new_esEs27(vwx226, vwx229, ty_Int) -> new_esEs15(vwx226, vwx229) new_ltEs11(vwx3, vwx4, h) -> new_fsEs(new_compare0(vwx3, vwx4, h)) new_esEs9(vwx300, vwx400, ty_@0) -> new_esEs22(vwx300, vwx400) new_esEs33(vwx238, vwx240, ty_Int) -> new_esEs15(vwx238, vwx240) new_ltEs8(Left(vwx1740), Left(vwx1750), ty_Float, cd) -> new_ltEs6(vwx1740, vwx1750) new_primCmpInt(Pos(Succ(vwx3000)), Neg(vwx400)) -> GT new_esEs26(vwx225, vwx228, ty_Int) -> new_esEs15(vwx225, vwx228) new_ltEs22(vwx1742, vwx1752, app(app(app(ty_@3, fd), ff), fg)) -> new_ltEs9(vwx1742, vwx1752, fd, ff, fg) new_esEs20(Just(vwx3000), Just(vwx4000), ty_Bool) -> new_esEs14(vwx3000, vwx4000) new_esEs33(vwx238, vwx240, app(ty_[], cde)) -> new_esEs18(vwx238, vwx240, cde) new_esEs19(Right(vwx3000), Right(vwx4000), eag, app(ty_Ratio, ehc)) -> new_esEs21(vwx3000, vwx4000, ehc) new_lt9(vwx225, vwx228, ty_Int) -> new_lt5(vwx225, vwx228) new_compare15(vwx290, vwx291, vwx292, vwx293, vwx294, vwx295, False, dbe, dbf, dbg) -> GT new_esEs29(vwx3001, vwx4001, app(app(ty_@2, dgh), dha)) -> new_esEs23(vwx3001, vwx4001, dgh, dha) new_esEs33(vwx238, vwx240, ty_Char) -> new_esEs17(vwx238, vwx240) new_esEs4(vwx300, vwx400, ty_Float) -> new_esEs25(vwx300, vwx400) new_lt22(vwx238, vwx240, ty_Char) -> new_lt16(vwx238, vwx240) new_lt8(vwx226, vwx229, ty_Bool) -> new_lt7(vwx226, vwx229) new_compare34(LT, GT) -> LT new_esEs20(Just(vwx3000), Just(vwx4000), app(app(ty_@2, fde), fdf)) -> new_esEs23(vwx3000, vwx4000, fde, fdf) new_esEs39(vwx3001, vwx4001, ty_@0) -> new_esEs22(vwx3001, vwx4001) new_esEs38(vwx3000, vwx4000, ty_Char) -> new_esEs17(vwx3000, vwx4000) new_esEs5(vwx300, vwx400, app(app(ty_Either, eca), ecb)) -> new_esEs19(vwx300, vwx400, eca, ecb) new_esEs35(vwx3000, vwx4000, ty_Bool) -> new_esEs14(vwx3000, vwx4000) new_primPlusNat1(Succ(vwx31700), Succ(vwx401000)) -> Succ(Succ(new_primPlusNat1(vwx31700, vwx401000))) new_esEs9(vwx300, vwx400, ty_Ordering) -> new_esEs12(vwx300, vwx400) new_esEs33(vwx238, vwx240, ty_Ordering) -> new_esEs12(vwx238, vwx240) new_esEs38(vwx3000, vwx4000, app(ty_[], feb)) -> new_esEs18(vwx3000, vwx4000, feb) new_primCmpNat0(Zero, Succ(vwx4000)) -> LT new_ltEs21(vwx181, vwx182, ty_Int) -> new_ltEs12(vwx181, vwx182) new_esEs29(vwx3001, vwx4001, app(app(app(ty_@3, dfh), dga), dgb)) -> new_esEs13(vwx3001, vwx4001, dfh, dga, dgb) new_ltEs8(Left(vwx1740), Left(vwx1750), ty_Integer, cd) -> new_ltEs15(vwx1740, vwx1750) new_lt20(vwx1741, vwx1751, app(ty_[], hc)) -> new_lt15(vwx1741, vwx1751, hc) new_esEs35(vwx3000, vwx4000, app(app(app(ty_@3, fba), fbb), fbc)) -> new_esEs13(vwx3000, vwx4000, fba, fbb, fbc) new_esEs29(vwx3001, vwx4001, ty_Bool) -> new_esEs14(vwx3001, vwx4001) new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_esEs9(vwx300, vwx400, ty_Float) -> new_esEs25(vwx300, vwx400) new_esEs11(vwx301, vwx401, ty_@0) -> new_esEs22(vwx301, vwx401) new_esEs19(Left(vwx3000), Left(vwx4000), app(ty_Ratio, ega), eah) -> new_esEs21(vwx3000, vwx4000, ega) new_esEs39(vwx3001, vwx4001, ty_Double) -> new_esEs16(vwx3001, vwx4001) new_lt8(vwx226, vwx229, ty_Ordering) -> new_lt19(vwx226, vwx229) new_ltEs4(vwx174, vwx175, app(ty_Maybe, cfd)) -> new_ltEs10(vwx174, vwx175, cfd) new_primCompAux1(vwx30, vwx40, vwx164, h) -> new_primCompAux0(vwx164, new_compare31(vwx30, vwx40, h)) new_esEs39(vwx3001, vwx4001, ty_Char) -> new_esEs17(vwx3001, vwx4001) new_esEs8(vwx302, vwx402, app(ty_[], cgb)) -> new_esEs18(vwx302, vwx402, cgb) new_compare34(GT, EQ) -> GT new_ltEs21(vwx181, vwx182, ty_Double) -> new_ltEs7(vwx181, vwx182) new_esEs30(vwx3002, vwx4002, app(app(ty_@2, eab), eac)) -> new_esEs23(vwx3002, vwx4002, eab, eac) new_esEs10(vwx300, vwx400, app(ty_Ratio, eec)) -> new_esEs21(vwx300, vwx400, eec) new_primCmpNat0(Succ(vwx3000), Zero) -> GT new_ltEs21(vwx181, vwx182, app(app(ty_Either, cea), ceb)) -> new_ltEs8(vwx181, vwx182, cea, ceb) new_lt8(vwx226, vwx229, ty_Char) -> new_lt16(vwx226, vwx229) new_ltEs22(vwx1742, vwx1752, ty_@0) -> new_ltEs16(vwx1742, vwx1752) new_ltEs22(vwx1742, vwx1752, ty_Bool) -> new_ltEs18(vwx1742, vwx1752) new_ltEs21(vwx181, vwx182, app(ty_Ratio, deb)) -> new_ltEs5(vwx181, vwx182, deb) new_pePe(False, vwx316) -> vwx316 new_esEs31(vwx1740, vwx1750, ty_Integer) -> new_esEs24(vwx1740, vwx1750) new_esEs19(Left(vwx3000), Left(vwx4000), ty_Int, eah) -> new_esEs15(vwx3000, vwx4000) new_ltEs10(Just(vwx1740), Just(vwx1750), app(ty_Maybe, bbd)) -> new_ltEs10(vwx1740, vwx1750, bbd) new_esEs33(vwx238, vwx240, app(ty_Ratio, eef)) -> new_esEs21(vwx238, vwx240, eef) new_esEs29(vwx3001, vwx4001, app(ty_Maybe, dgf)) -> new_esEs20(vwx3001, vwx4001, dgf) new_esEs27(vwx226, vwx229, app(ty_[], bhd)) -> new_esEs18(vwx226, vwx229, bhd) new_ltEs4(vwx174, vwx175, ty_Integer) -> new_ltEs15(vwx174, vwx175) new_esEs19(Right(vwx3000), Right(vwx4000), eag, app(app(app(ty_@3, egd), ege), egf)) -> new_esEs13(vwx3000, vwx4000, egd, ege, egf) new_esEs26(vwx225, vwx228, ty_Bool) -> new_esEs14(vwx225, vwx228) new_lt10(vwx225, vwx228, ddd) -> new_esEs12(new_compare32(vwx225, vwx228, ddd), LT) new_ltEs20(vwx227, vwx230, ty_Char) -> new_ltEs13(vwx227, vwx230) new_esEs5(vwx300, vwx400, ty_@0) -> new_esEs22(vwx300, vwx400) new_ltEs18(False, False) -> True new_lt22(vwx238, vwx240, app(ty_[], cde)) -> new_lt15(vwx238, vwx240, cde) new_esEs29(vwx3001, vwx4001, app(ty_[], dgc)) -> new_esEs18(vwx3001, vwx4001, dgc) new_compare34(LT, EQ) -> LT new_ltEs21(vwx181, vwx182, ty_Float) -> new_ltEs6(vwx181, vwx182) new_lt13(vwx225, vwx228, bee, bef) -> new_esEs12(new_compare18(vwx225, vwx228, bee, bef), LT) new_esEs38(vwx3000, vwx4000, ty_Ordering) -> new_esEs12(vwx3000, vwx4000) new_esEs8(vwx302, vwx402, app(ty_Ratio, cgf)) -> new_esEs21(vwx302, vwx402, cgf) new_esEs30(vwx3002, vwx4002, ty_Double) -> new_esEs16(vwx3002, vwx4002) new_esEs28(vwx3000, vwx4000, app(app(app(ty_@3, def), deg), deh)) -> new_esEs13(vwx3000, vwx4000, def, deg, deh) new_lt21(vwx1740, vwx1750, ty_Double) -> new_lt12(vwx1740, vwx1750) new_ltEs23(vwx239, vwx241, app(app(ty_@2, ccd), cce)) -> new_ltEs14(vwx239, vwx241, ccd, cce) new_esEs35(vwx3000, vwx4000, app(ty_Ratio, fbh)) -> new_esEs21(vwx3000, vwx4000, fbh) new_esEs32(vwx1741, vwx1751, ty_@0) -> new_esEs22(vwx1741, vwx1751) new_ltEs21(vwx181, vwx182, app(app(app(ty_@3, cec), ced), cee)) -> new_ltEs9(vwx181, vwx182, cec, ced, cee) new_ltEs23(vwx239, vwx241, app(ty_Ratio, eeg)) -> new_ltEs5(vwx239, vwx241, eeg) new_primEqInt(Pos(Zero), Neg(Succ(vwx40000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(vwx40000))) -> False new_compare31(vwx30, vwx40, app(app(app(ty_@3, bc), bd), be)) -> new_compare6(vwx30, vwx40, bc, bd, be) new_esEs11(vwx301, vwx401, ty_Ordering) -> new_esEs12(vwx301, vwx401) new_esEs32(vwx1741, vwx1751, app(app(ty_@2, hd), he)) -> new_esEs23(vwx1741, vwx1751, hd, he) new_esEs20(Just(vwx3000), Just(vwx4000), app(ty_Ratio, fdd)) -> new_esEs21(vwx3000, vwx4000, fdd) new_esEs31(vwx1740, vwx1750, app(app(ty_Either, hf), hg)) -> new_esEs19(vwx1740, vwx1750, hf, hg) new_esEs10(vwx300, vwx400, ty_Integer) -> new_esEs24(vwx300, vwx400) new_compare19(vwx305, vwx306, vwx307, vwx308, False, vwx310, ecg, ech) -> new_compare110(vwx305, vwx306, vwx307, vwx308, vwx310, ecg, ech) new_esEs9(vwx300, vwx400, app(app(ty_Either, fac), fad)) -> new_esEs19(vwx300, vwx400, fac, fad) new_esEs29(vwx3001, vwx4001, ty_Double) -> new_esEs16(vwx3001, vwx4001) new_compare18(Left(vwx300), Left(vwx400), ba, bb) -> new_compare24(vwx300, vwx400, new_esEs4(vwx300, vwx400, ba), ba, bb) new_ltEs19(vwx203, vwx204, ty_Char) -> new_ltEs13(vwx203, vwx204) new_ltEs22(vwx1742, vwx1752, ty_Ordering) -> new_ltEs17(vwx1742, vwx1752) new_ltEs19(vwx203, vwx204, app(app(ty_@2, cbb), cbc)) -> new_ltEs14(vwx203, vwx204, cbb, cbc) new_lt23(vwx1740, vwx1750, app(ty_Ratio, eeh)) -> new_lt10(vwx1740, vwx1750, eeh) new_ltEs8(Left(vwx1740), Left(vwx1750), ty_Double, cd) -> new_ltEs7(vwx1740, vwx1750) new_primEqInt(Neg(Succ(vwx30000)), Neg(Succ(vwx40000))) -> new_primEqNat0(vwx30000, vwx40000) new_esEs34(vwx1740, vwx1750, ty_Ordering) -> new_esEs12(vwx1740, vwx1750) new_esEs5(vwx300, vwx400, ty_Double) -> new_esEs16(vwx300, vwx400) new_compare34(GT, GT) -> EQ new_esEs30(vwx3002, vwx4002, ty_@0) -> new_esEs22(vwx3002, vwx4002) new_ltEs22(vwx1742, vwx1752, ty_Int) -> new_ltEs12(vwx1742, vwx1752) new_primCmpInt(Neg(Zero), Pos(Succ(vwx4000))) -> LT new_compare18(Right(vwx300), Right(vwx400), ba, bb) -> new_compare27(vwx300, vwx400, new_esEs5(vwx300, vwx400, bb), ba, bb) new_ltEs20(vwx227, vwx230, ty_@0) -> new_ltEs16(vwx227, vwx230) new_esEs32(vwx1741, vwx1751, ty_Double) -> new_esEs16(vwx1741, vwx1751) new_primMulInt(Pos(vwx3000), Pos(vwx4010)) -> Pos(new_primMulNat0(vwx3000, vwx4010)) new_lt9(vwx225, vwx228, app(app(ty_Either, bee), bef)) -> new_lt13(vwx225, vwx228, bee, bef) new_compare15(vwx290, vwx291, vwx292, vwx293, vwx294, vwx295, True, dbe, dbf, dbg) -> LT new_esEs26(vwx225, vwx228, ty_Ordering) -> new_esEs12(vwx225, vwx228) new_esEs11(vwx301, vwx401, app(app(ty_Either, dcd), dce)) -> new_esEs19(vwx301, vwx401, dcd, dce) new_lt21(vwx1740, vwx1750, app(app(ty_Either, hf), hg)) -> new_lt13(vwx1740, vwx1750, hf, hg) new_esEs28(vwx3000, vwx4000, ty_Bool) -> new_esEs14(vwx3000, vwx4000) new_esEs35(vwx3000, vwx4000, ty_Float) -> new_esEs25(vwx3000, vwx4000) new_lt9(vwx225, vwx228, ty_Double) -> new_lt12(vwx225, vwx228) new_lt15(vwx225, vwx228, bhh) -> new_esEs12(new_compare0(vwx225, vwx228, bhh), LT) new_ltEs8(Right(vwx1740), Left(vwx1750), df, cd) -> False new_lt11(vwx225, vwx228) -> new_esEs12(new_compare8(vwx225, vwx228), LT) new_lt8(vwx226, vwx229, ty_Float) -> new_lt11(vwx226, vwx229) new_esEs8(vwx302, vwx402, ty_Double) -> new_esEs16(vwx302, vwx402) new_primMulNat0(Succ(vwx30000), Zero) -> Zero new_primMulNat0(Zero, Succ(vwx40100)) -> Zero new_lt20(vwx1741, vwx1751, ty_Int) -> new_lt5(vwx1741, vwx1751) new_primPlusNat0(Zero, vwx40100) -> Succ(vwx40100) new_esEs33(vwx238, vwx240, ty_Integer) -> new_esEs24(vwx238, vwx240) new_esEs26(vwx225, vwx228, ty_Float) -> new_esEs25(vwx225, vwx228) new_ltEs20(vwx227, vwx230, ty_Bool) -> new_ltEs18(vwx227, vwx230) new_esEs34(vwx1740, vwx1750, app(app(ty_@2, bec), bed)) -> new_esEs23(vwx1740, vwx1750, bec, bed) new_esEs7(vwx301, vwx401, ty_Char) -> new_esEs17(vwx301, vwx401) new_esEs7(vwx301, vwx401, app(app(ty_@2, dbc), dbd)) -> new_esEs23(vwx301, vwx401, dbc, dbd) new_esEs19(Left(vwx3000), Left(vwx4000), ty_Ordering, eah) -> new_esEs12(vwx3000, vwx4000) new_esEs6(vwx300, vwx400, ty_Integer) -> new_esEs24(vwx300, vwx400) new_compare6(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bc, bd, be) -> new_compare26(vwx300, vwx301, vwx302, vwx400, vwx401, vwx402, new_asAs(new_esEs6(vwx300, vwx400, bc), new_asAs(new_esEs7(vwx301, vwx401, bd), new_esEs8(vwx302, vwx402, be))), bc, bd, be) new_lt23(vwx1740, vwx1750, ty_Float) -> new_lt11(vwx1740, vwx1750) new_compare8(Float(vwx300, Pos(vwx3010)), Float(vwx400, Pos(vwx4010))) -> new_compare7(new_sr(vwx300, Pos(vwx4010)), new_sr(Pos(vwx3010), vwx400)) new_esEs39(vwx3001, vwx4001, app(app(app(ty_@3, ffa), ffb), ffc)) -> new_esEs13(vwx3001, vwx4001, ffa, ffb, ffc) new_lt9(vwx225, vwx228, app(ty_Maybe, bhg)) -> new_lt14(vwx225, vwx228, bhg) new_lt23(vwx1740, vwx1750, ty_Char) -> new_lt16(vwx1740, vwx1750) new_compare29(Double(vwx300, Neg(vwx3010)), Double(vwx400, Neg(vwx4010))) -> new_compare7(new_sr(vwx300, Neg(vwx4010)), new_sr(Neg(vwx3010), vwx400)) new_esEs11(vwx301, vwx401, app(app(ty_@2, dch), dda)) -> new_esEs23(vwx301, vwx401, dch, dda) new_esEs36(vwx3000, vwx4000, ty_Int) -> new_esEs15(vwx3000, vwx4000) new_compare29(Double(vwx300, Pos(vwx3010)), Double(vwx400, Pos(vwx4010))) -> new_compare7(new_sr(vwx300, Pos(vwx4010)), new_sr(Pos(vwx3010), vwx400)) new_esEs7(vwx301, vwx401, ty_Double) -> new_esEs16(vwx301, vwx401) new_lt9(vwx225, vwx228, ty_Float) -> new_lt11(vwx225, vwx228) new_esEs30(vwx3002, vwx4002, app(ty_[], dhe)) -> new_esEs18(vwx3002, vwx4002, dhe) new_lt8(vwx226, vwx229, ty_Double) -> new_lt12(vwx226, vwx229) new_ltEs19(vwx203, vwx204, app(ty_Ratio, cff)) -> new_ltEs5(vwx203, vwx204, cff) new_lt22(vwx238, vwx240, app(ty_Maybe, cdd)) -> new_lt14(vwx238, vwx240, cdd) new_ltEs19(vwx203, vwx204, ty_Double) -> new_ltEs7(vwx203, vwx204) new_ltEs8(Right(vwx1740), Right(vwx1750), df, app(app(ty_Either, dg), dh)) -> new_ltEs8(vwx1740, vwx1750, dg, dh) new_esEs39(vwx3001, vwx4001, ty_Bool) -> new_esEs14(vwx3001, vwx4001) new_compare34(GT, LT) -> GT new_esEs20(Just(vwx3000), Just(vwx4000), ty_Int) -> new_esEs15(vwx3000, vwx4000) new_ltEs8(Right(vwx1740), Right(vwx1750), df, ty_Int) -> new_ltEs12(vwx1740, vwx1750) new_ltEs4(vwx174, vwx175, app(app(ty_Either, df), cd)) -> new_ltEs8(vwx174, vwx175, df, cd) new_esEs7(vwx301, vwx401, app(app(ty_Either, dag), dah)) -> new_esEs19(vwx301, vwx401, dag, dah) new_ltEs19(vwx203, vwx204, app(app(ty_Either, cac), cad)) -> new_ltEs8(vwx203, vwx204, cac, cad) new_lt8(vwx226, vwx229, app(ty_[], bhd)) -> new_lt15(vwx226, vwx229, bhd) new_compare7(vwx30, vwx40) -> new_primCmpInt(vwx30, vwx40) new_ltEs7(vwx174, vwx175) -> new_fsEs(new_compare29(vwx174, vwx175)) new_esEs4(vwx300, vwx400, app(ty_Maybe, eba)) -> new_esEs20(vwx300, vwx400, eba) new_esEs38(vwx3000, vwx4000, app(app(app(ty_@3, fdg), fdh), fea)) -> new_esEs13(vwx3000, vwx4000, fdg, fdh, fea) new_esEs8(vwx302, vwx402, app(app(ty_@2, cgg), cgh)) -> new_esEs23(vwx302, vwx402, cgg, cgh) new_ltEs21(vwx181, vwx182, ty_Integer) -> new_ltEs15(vwx181, vwx182) new_esEs31(vwx1740, vwx1750, app(ty_[], bad)) -> new_esEs18(vwx1740, vwx1750, bad) new_esEs8(vwx302, vwx402, ty_Integer) -> new_esEs24(vwx302, vwx402) new_ltEs4(vwx174, vwx175, app(app(app(ty_@3, eh), fa), gf)) -> new_ltEs9(vwx174, vwx175, eh, fa, gf) new_compare18(Left(vwx300), Right(vwx400), ba, bb) -> LT new_esEs9(vwx300, vwx400, app(app(ty_@2, fag), fah)) -> new_esEs23(vwx300, vwx400, fag, fah) new_ltEs19(vwx203, vwx204, app(app(app(ty_@3, cae), caf), cag)) -> new_ltEs9(vwx203, vwx204, cae, caf, cag) new_primPlusNat1(Succ(vwx31700), Zero) -> Succ(vwx31700) new_primPlusNat1(Zero, Succ(vwx401000)) -> Succ(vwx401000) new_ltEs10(Just(vwx1740), Just(vwx1750), app(ty_[], bbe)) -> new_ltEs11(vwx1740, vwx1750, bbe) new_lt23(vwx1740, vwx1750, app(app(ty_Either, bdc), bdd)) -> new_lt13(vwx1740, vwx1750, bdc, bdd) new_esEs6(vwx300, vwx400, ty_Double) -> new_esEs16(vwx300, vwx400) new_esEs16(Double(vwx3000, vwx3001), Double(vwx4000, vwx4001)) -> new_esEs15(new_sr(vwx3000, vwx4001), new_sr(vwx3001, vwx4000)) new_lt22(vwx238, vwx240, ty_Int) -> new_lt5(vwx238, vwx240) new_ltEs19(vwx203, vwx204, ty_Float) -> new_ltEs6(vwx203, vwx204) new_ltEs20(vwx227, vwx230, app(app(ty_@2, bgc), bgd)) -> new_ltEs14(vwx227, vwx230, bgc, bgd) new_lt8(vwx226, vwx229, app(app(ty_Either, bge), bgf)) -> new_lt13(vwx226, vwx229, bge, bgf) new_lt9(vwx225, vwx228, app(ty_Ratio, ddd)) -> new_lt10(vwx225, vwx228, ddd) new_esEs33(vwx238, vwx240, app(app(ty_Either, ccf), ccg)) -> new_esEs19(vwx238, vwx240, ccf, ccg) new_esEs10(vwx300, vwx400, app(app(ty_Either, edh), eea)) -> new_esEs19(vwx300, vwx400, edh, eea) new_esEs19(Left(vwx3000), Left(vwx4000), ty_Bool, eah) -> new_esEs14(vwx3000, vwx4000) new_esEs20(Just(vwx3000), Just(vwx4000), ty_Float) -> new_esEs25(vwx3000, vwx4000) new_ltEs4(vwx174, vwx175, ty_Double) -> new_ltEs7(vwx174, vwx175) new_esEs5(vwx300, vwx400, app(ty_[], ebh)) -> new_esEs18(vwx300, vwx400, ebh) new_compare31(vwx30, vwx40, ty_Double) -> new_compare29(vwx30, vwx40) new_compare31(vwx30, vwx40, ty_@0) -> new_compare12(vwx30, vwx40) new_lt22(vwx238, vwx240, app(app(ty_Either, ccf), ccg)) -> new_lt13(vwx238, vwx240, ccf, ccg) new_esEs5(vwx300, vwx400, ty_Char) -> new_esEs17(vwx300, vwx400) new_ltEs20(vwx227, vwx230, ty_Float) -> new_ltEs6(vwx227, vwx230) new_esEs7(vwx301, vwx401, ty_Integer) -> new_esEs24(vwx301, vwx401) new_ltEs19(vwx203, vwx204, ty_Ordering) -> new_ltEs17(vwx203, vwx204) new_lt21(vwx1740, vwx1750, ty_Int) -> new_lt5(vwx1740, vwx1750) new_fsEs(EQ) -> new_not new_lt23(vwx1740, vwx1750, app(ty_[], beb)) -> new_lt15(vwx1740, vwx1750, beb) new_esEs19(Right(vwx3000), Right(vwx4000), eag, ty_Integer) -> new_esEs24(vwx3000, vwx4000) new_esEs31(vwx1740, vwx1750, ty_@0) -> new_esEs22(vwx1740, vwx1750) new_primMulInt(Neg(vwx3000), Neg(vwx4010)) -> Pos(new_primMulNat0(vwx3000, vwx4010)) new_primCmpInt(Pos(Zero), Pos(Succ(vwx4000))) -> new_primCmpNat0(Zero, Succ(vwx4000)) new_compare25(vwx203, vwx204, True, cfe) -> EQ new_esEs27(vwx226, vwx229, app(ty_Maybe, bhc)) -> new_esEs20(vwx226, vwx229, bhc) new_esEs14(True, True) -> True new_ltEs21(vwx181, vwx182, app(app(ty_@2, ceh), cfa)) -> new_ltEs14(vwx181, vwx182, ceh, cfa) new_ltEs4(vwx174, vwx175, ty_Char) -> new_ltEs13(vwx174, vwx175) new_esEs6(vwx300, vwx400, app(ty_[], chd)) -> new_esEs18(vwx300, vwx400, chd) new_esEs6(vwx300, vwx400, ty_Char) -> new_esEs17(vwx300, vwx400) new_esEs33(vwx238, vwx240, app(app(ty_@2, cdf), cdg)) -> new_esEs23(vwx238, vwx240, cdf, cdg) new_lt8(vwx226, vwx229, app(ty_Maybe, bhc)) -> new_lt14(vwx226, vwx229, bhc) new_esEs29(vwx3001, vwx4001, ty_Char) -> new_esEs17(vwx3001, vwx4001) new_compare9(Integer(vwx300), Integer(vwx400)) -> new_primCmpInt(vwx300, vwx400) new_esEs10(vwx300, vwx400, app(app(ty_@2, eed), eee)) -> new_esEs23(vwx300, vwx400, eed, eee) new_ltEs24(vwx1741, vwx1751, ty_Int) -> new_ltEs12(vwx1741, vwx1751) new_lt23(vwx1740, vwx1750, app(ty_Maybe, bea)) -> new_lt14(vwx1740, vwx1750, bea) new_esEs11(vwx301, vwx401, app(ty_Ratio, dcg)) -> new_esEs21(vwx301, vwx401, dcg) new_lt9(vwx225, vwx228, ty_Char) -> new_lt16(vwx225, vwx228) new_esEs32(vwx1741, vwx1751, app(app(ty_Either, gd), ge)) -> new_esEs19(vwx1741, vwx1751, gd, ge) new_esEs8(vwx302, vwx402, app(app(ty_Either, cgc), cgd)) -> new_esEs19(vwx302, vwx402, cgc, cgd) new_esEs7(vwx301, vwx401, ty_@0) -> new_esEs22(vwx301, vwx401) new_lt19(vwx225, vwx228) -> new_esEs12(new_compare34(vwx225, vwx228), LT) new_esEs35(vwx3000, vwx4000, ty_Int) -> new_esEs15(vwx3000, vwx4000) new_esEs38(vwx3000, vwx4000, ty_Bool) -> new_esEs14(vwx3000, vwx4000) new_esEs26(vwx225, vwx228, app(app(app(ty_@3, beg), beh), bfa)) -> new_esEs13(vwx225, vwx228, beg, beh, bfa) new_lt9(vwx225, vwx228, app(app(app(ty_@3, beg), beh), bfa)) -> new_lt4(vwx225, vwx228, beg, beh, bfa) new_lt23(vwx1740, vwx1750, ty_Double) -> new_lt12(vwx1740, vwx1750) new_ltEs17(EQ, EQ) -> True new_esEs34(vwx1740, vwx1750, app(ty_Ratio, eeh)) -> new_esEs21(vwx1740, vwx1750, eeh) new_ltEs20(vwx227, vwx230, ty_Ordering) -> new_ltEs17(vwx227, vwx230) new_esEs31(vwx1740, vwx1750, ty_Double) -> new_esEs16(vwx1740, vwx1750) new_ltEs20(vwx227, vwx230, ty_Integer) -> new_ltEs15(vwx227, vwx230) new_esEs39(vwx3001, vwx4001, app(ty_Maybe, ffg)) -> new_esEs20(vwx3001, vwx4001, ffg) new_esEs30(vwx3002, vwx4002, ty_Char) -> new_esEs17(vwx3002, vwx4002) new_compare27(vwx181, vwx182, False, cdh, dea) -> new_compare16(vwx181, vwx182, new_ltEs21(vwx181, vwx182, dea), cdh, dea) new_esEs27(vwx226, vwx229, ty_Bool) -> new_esEs14(vwx226, vwx229) new_esEs33(vwx238, vwx240, ty_@0) -> new_esEs22(vwx238, vwx240) new_ltEs24(vwx1741, vwx1751, app(app(ty_@2, bda), bdb)) -> new_ltEs14(vwx1741, vwx1751, bda, bdb) new_ltEs17(GT, LT) -> False new_ltEs22(vwx1742, vwx1752, ty_Float) -> new_ltEs6(vwx1742, vwx1752) new_compare11(vwx275, vwx276, False, ehf) -> GT new_ltEs6(vwx174, vwx175) -> new_fsEs(new_compare8(vwx174, vwx175)) new_ltEs17(EQ, LT) -> False new_ltEs8(Left(vwx1740), Left(vwx1750), ty_Ordering, cd) -> new_ltEs17(vwx1740, vwx1750) new_esEs11(vwx301, vwx401, app(ty_[], dcc)) -> new_esEs18(vwx301, vwx401, dcc) new_compare12(@0, @0) -> EQ new_esEs38(vwx3000, vwx4000, ty_Float) -> new_esEs25(vwx3000, vwx4000) new_esEs6(vwx300, vwx400, ty_@0) -> new_esEs22(vwx300, vwx400) new_ltEs20(vwx227, vwx230, app(app(app(ty_@3, bff), bfg), bfh)) -> new_ltEs9(vwx227, vwx230, bff, bfg, bfh) new_primMulInt(Pos(vwx3000), Neg(vwx4010)) -> Neg(new_primMulNat0(vwx3000, vwx4010)) new_primMulInt(Neg(vwx3000), Pos(vwx4010)) -> Neg(new_primMulNat0(vwx3000, vwx4010)) new_esEs27(vwx226, vwx229, app(app(app(ty_@3, bgh), bha), bhb)) -> new_esEs13(vwx226, vwx229, bgh, bha, bhb) new_esEs29(vwx3001, vwx4001, ty_Ordering) -> new_esEs12(vwx3001, vwx4001) new_lt20(vwx1741, vwx1751, app(app(ty_Either, gd), ge)) -> new_lt13(vwx1741, vwx1751, gd, ge) new_ltEs19(vwx203, vwx204, ty_Integer) -> new_ltEs15(vwx203, vwx204) new_esEs18(:(vwx3000, vwx3001), :(vwx4000, vwx4001), eaf) -> new_asAs(new_esEs35(vwx3000, vwx4000, eaf), new_esEs18(vwx3001, vwx4001, eaf)) new_ltEs21(vwx181, vwx182, ty_Bool) -> new_ltEs18(vwx181, vwx182) new_ltEs8(Left(vwx1740), Left(vwx1750), ty_Char, cd) -> new_ltEs13(vwx1740, vwx1750) new_compare31(vwx30, vwx40, app(ty_Ratio, fcc)) -> new_compare32(vwx30, vwx40, fcc) new_compare31(vwx30, vwx40, app(ty_[], bg)) -> new_compare0(vwx30, vwx40, bg) new_lt20(vwx1741, vwx1751, ty_Float) -> new_lt11(vwx1741, vwx1751) new_esEs19(Left(vwx3000), Left(vwx4000), app(app(ty_Either, eff), efg), eah) -> new_esEs19(vwx3000, vwx4000, eff, efg) new_esEs27(vwx226, vwx229, ty_@0) -> new_esEs22(vwx226, vwx229) new_esEs33(vwx238, vwx240, app(app(app(ty_@3, cda), cdb), cdc)) -> new_esEs13(vwx238, vwx240, cda, cdb, cdc) new_esEs19(Right(vwx3000), Right(vwx4000), eag, app(ty_[], egg)) -> new_esEs18(vwx3000, vwx4000, egg) new_ltEs18(False, True) -> True new_ltEs8(Right(vwx1740), Right(vwx1750), df, app(app(ty_@2, ef), eg)) -> new_ltEs14(vwx1740, vwx1750, ef, eg) new_ltEs22(vwx1742, vwx1752, app(app(ty_Either, fb), fc)) -> new_ltEs8(vwx1742, vwx1752, fb, fc) new_lt20(vwx1741, vwx1751, ty_@0) -> new_lt6(vwx1741, vwx1751) new_ltEs20(vwx227, vwx230, app(ty_Ratio, ddf)) -> new_ltEs5(vwx227, vwx230, ddf) new_esEs30(vwx3002, vwx4002, ty_Integer) -> new_esEs24(vwx3002, vwx4002) new_esEs33(vwx238, vwx240, ty_Bool) -> new_esEs14(vwx238, vwx240) new_esEs9(vwx300, vwx400, app(ty_[], fab)) -> new_esEs18(vwx300, vwx400, fab) new_esEs19(Left(vwx3000), Left(vwx4000), ty_@0, eah) -> new_esEs22(vwx3000, vwx4000) new_sr0(Integer(vwx3000), Integer(vwx4010)) -> Integer(new_primMulInt(vwx3000, vwx4010)) new_esEs20(Just(vwx3000), Just(vwx4000), ty_Ordering) -> new_esEs12(vwx3000, vwx4000) new_esEs28(vwx3000, vwx4000, app(ty_Maybe, dfd)) -> new_esEs20(vwx3000, vwx4000, dfd) new_esEs30(vwx3002, vwx4002, app(app(ty_Either, dhf), dhg)) -> new_esEs19(vwx3002, vwx4002, dhf, dhg) new_ltEs24(vwx1741, vwx1751, app(ty_Maybe, bcg)) -> new_ltEs10(vwx1741, vwx1751, bcg) new_ltEs16(vwx174, vwx175) -> new_fsEs(new_compare12(vwx174, vwx175)) new_esEs35(vwx3000, vwx4000, ty_Ordering) -> new_esEs12(vwx3000, vwx4000) new_esEs6(vwx300, vwx400, app(app(app(ty_@3, cha), chb), chc)) -> new_esEs13(vwx300, vwx400, cha, chb, chc) new_esEs26(vwx225, vwx228, app(ty_[], bhh)) -> new_esEs18(vwx225, vwx228, bhh) new_esEs8(vwx302, vwx402, ty_Ordering) -> new_esEs12(vwx302, vwx402) new_esEs19(Right(vwx3000), Right(vwx4000), eag, app(app(ty_@2, ehd), ehe)) -> new_esEs23(vwx3000, vwx4000, ehd, ehe) new_ltEs23(vwx239, vwx241, ty_Int) -> new_ltEs12(vwx239, vwx241) new_ltEs21(vwx181, vwx182, ty_@0) -> new_ltEs16(vwx181, vwx182) new_ltEs8(Right(vwx1740), Right(vwx1750), df, ty_Bool) -> new_ltEs18(vwx1740, vwx1750) new_esEs6(vwx300, vwx400, ty_Bool) -> new_esEs14(vwx300, vwx400) new_lt20(vwx1741, vwx1751, app(app(ty_@2, hd), he)) -> new_lt17(vwx1741, vwx1751, hd, he) new_esEs20(Nothing, Just(vwx4000), eba) -> False new_esEs20(Just(vwx3000), Nothing, eba) -> False new_esEs12(GT, GT) -> True new_esEs38(vwx3000, vwx4000, app(ty_Maybe, fee)) -> new_esEs20(vwx3000, vwx4000, fee) new_ltEs22(vwx1742, vwx1752, app(ty_[], ga)) -> new_ltEs11(vwx1742, vwx1752, ga) new_lt22(vwx238, vwx240, ty_Double) -> new_lt12(vwx238, vwx240) new_compare0([], :(vwx40, vwx41), h) -> LT new_esEs34(vwx1740, vwx1750, ty_Int) -> new_esEs15(vwx1740, vwx1750) new_asAs(True, vwx270) -> vwx270 new_esEs7(vwx301, vwx401, ty_Int) -> new_esEs15(vwx301, vwx401) new_esEs22(@0, @0) -> True new_compare10(vwx254, vwx255, False, ddb, ddc) -> GT new_esEs20(Nothing, Nothing, eba) -> True new_esEs39(vwx3001, vwx4001, ty_Integer) -> new_esEs24(vwx3001, vwx4001) new_esEs39(vwx3001, vwx4001, ty_Int) -> new_esEs15(vwx3001, vwx4001) new_ltEs8(Left(vwx1740), Left(vwx1750), app(ty_[], dc), cd) -> new_ltEs11(vwx1740, vwx1750, dc) new_compare13(True, False) -> GT new_esEs31(vwx1740, vwx1750, ty_Char) -> new_esEs17(vwx1740, vwx1750) new_esEs19(Left(vwx3000), Left(vwx4000), ty_Float, eah) -> new_esEs25(vwx3000, vwx4000) new_lt6(vwx225, vwx228) -> new_esEs12(new_compare12(vwx225, vwx228), LT) new_esEs4(vwx300, vwx400, ty_Char) -> new_esEs17(vwx300, vwx400) new_compare31(vwx30, vwx40, ty_Int) -> new_compare7(vwx30, vwx40) new_ltEs8(Right(vwx1740), Right(vwx1750), df, ty_@0) -> new_ltEs16(vwx1740, vwx1750) new_lt18(vwx225, vwx228) -> new_esEs12(new_compare9(vwx225, vwx228), LT) new_compare24(vwx174, vwx175, False, cfb, ce) -> new_compare10(vwx174, vwx175, new_ltEs4(vwx174, vwx175, cfb), cfb, ce) new_esEs30(vwx3002, vwx4002, app(ty_Ratio, eaa)) -> new_esEs21(vwx3002, vwx4002, eaa) new_lt23(vwx1740, vwx1750, app(app(app(ty_@3, bdf), bdg), bdh)) -> new_lt4(vwx1740, vwx1750, bdf, bdg, bdh) new_compare13(False, True) -> LT new_compare16(vwx261, vwx262, True, ddg, ddh) -> LT new_esEs28(vwx3000, vwx4000, ty_Int) -> new_esEs15(vwx3000, vwx4000) new_ltEs20(vwx227, vwx230, ty_Double) -> new_ltEs7(vwx227, vwx230) new_compare24(vwx174, vwx175, True, cfb, ce) -> EQ new_esEs28(vwx3000, vwx4000, app(app(ty_@2, dff), dfg)) -> new_esEs23(vwx3000, vwx4000, dff, dfg) new_esEs23(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), ebc, ebd) -> new_asAs(new_esEs38(vwx3000, vwx4000, ebc), new_esEs39(vwx3001, vwx4001, ebd)) new_esEs19(Left(vwx3000), Left(vwx4000), app(app(app(ty_@3, efb), efc), efd), eah) -> new_esEs13(vwx3000, vwx4000, efb, efc, efd) new_esEs19(Right(vwx3000), Right(vwx4000), eag, ty_Double) -> new_esEs16(vwx3000, vwx4000) new_compare28(vwx238, vwx239, vwx240, vwx241, False, cbd, cch) -> new_compare19(vwx238, vwx239, vwx240, vwx241, new_lt22(vwx238, vwx240, cbd), new_asAs(new_esEs33(vwx238, vwx240, cbd), new_ltEs23(vwx239, vwx241, cch)), cbd, cch) new_primCmpInt(Pos(Succ(vwx3000)), Pos(vwx400)) -> new_primCmpNat0(Succ(vwx3000), vwx400) new_esEs19(Left(vwx3000), Left(vwx4000), app(ty_[], efe), eah) -> new_esEs18(vwx3000, vwx4000, efe) new_esEs38(vwx3000, vwx4000, ty_@0) -> new_esEs22(vwx3000, vwx4000) new_ltEs10(Just(vwx1740), Just(vwx1750), ty_Bool) -> new_ltEs18(vwx1740, vwx1750) new_ltEs8(Right(vwx1740), Right(vwx1750), df, app(ty_[], ee)) -> new_ltEs11(vwx1740, vwx1750, ee) new_esEs39(vwx3001, vwx4001, app(app(ty_Either, ffe), fff)) -> new_esEs19(vwx3001, vwx4001, ffe, fff) new_esEs12(EQ, EQ) -> True new_compare0([], [], h) -> EQ new_sr(vwx300, vwx401) -> new_primMulInt(vwx300, vwx401) new_esEs38(vwx3000, vwx4000, app(ty_Ratio, fef)) -> new_esEs21(vwx3000, vwx4000, fef) new_esEs29(vwx3001, vwx4001, ty_Integer) -> new_esEs24(vwx3001, vwx4001) new_esEs17(Char(vwx3000), Char(vwx4000)) -> new_primEqNat0(vwx3000, vwx4000) new_ltEs4(vwx174, vwx175, ty_Bool) -> new_ltEs18(vwx174, vwx175) new_primMulNat0(Zero, Zero) -> Zero new_esEs20(Just(vwx3000), Just(vwx4000), ty_Integer) -> new_esEs24(vwx3000, vwx4000) new_esEs11(vwx301, vwx401, ty_Char) -> new_esEs17(vwx301, vwx401) new_ltEs24(vwx1741, vwx1751, ty_Ordering) -> new_ltEs17(vwx1741, vwx1751) new_compare34(EQ, LT) -> GT new_lt9(vwx225, vwx228, ty_Integer) -> new_lt18(vwx225, vwx228) new_lt23(vwx1740, vwx1750, ty_Int) -> new_lt5(vwx1740, vwx1750) new_esEs10(vwx300, vwx400, ty_Char) -> new_esEs17(vwx300, vwx400) new_esEs34(vwx1740, vwx1750, app(app(ty_Either, bdc), bdd)) -> new_esEs19(vwx1740, vwx1750, bdc, bdd) new_ltEs4(vwx174, vwx175, ty_@0) -> new_ltEs16(vwx174, vwx175) new_esEs33(vwx238, vwx240, ty_Float) -> new_esEs25(vwx238, vwx240) new_ltEs10(Just(vwx1740), Just(vwx1750), ty_@0) -> new_ltEs16(vwx1740, vwx1750) new_ltEs4(vwx174, vwx175, ty_Float) -> new_ltEs6(vwx174, vwx175) new_ltEs19(vwx203, vwx204, ty_Bool) -> new_ltEs18(vwx203, vwx204) new_lt22(vwx238, vwx240, app(app(app(ty_@3, cda), cdb), cdc)) -> new_lt4(vwx238, vwx240, cda, cdb, cdc) new_esEs27(vwx226, vwx229, ty_Float) -> new_esEs25(vwx226, vwx229) new_esEs8(vwx302, vwx402, ty_Char) -> new_esEs17(vwx302, vwx402) new_esEs11(vwx301, vwx401, ty_Double) -> new_esEs16(vwx301, vwx401) new_lt16(vwx225, vwx228) -> new_esEs12(new_compare33(vwx225, vwx228), LT) new_compare8(Float(vwx300, Neg(vwx3010)), Float(vwx400, Neg(vwx4010))) -> new_compare7(new_sr(vwx300, Neg(vwx4010)), new_sr(Neg(vwx3010), vwx400)) new_esEs4(vwx300, vwx400, app(ty_[], eaf)) -> new_esEs18(vwx300, vwx400, eaf) new_esEs19(Right(vwx3000), Right(vwx4000), eag, ty_Char) -> new_esEs17(vwx3000, vwx4000) new_esEs26(vwx225, vwx228, ty_Char) -> new_esEs17(vwx225, vwx228) new_esEs30(vwx3002, vwx4002, app(ty_Maybe, dhh)) -> new_esEs20(vwx3002, vwx4002, dhh) new_esEs19(Right(vwx3000), Right(vwx4000), eag, ty_Ordering) -> new_esEs12(vwx3000, vwx4000) new_esEs4(vwx300, vwx400, ty_Ordering) -> new_esEs12(vwx300, vwx400) new_esEs28(vwx3000, vwx4000, ty_Integer) -> new_esEs24(vwx3000, vwx4000) new_esEs35(vwx3000, vwx4000, ty_Integer) -> new_esEs24(vwx3000, vwx4000) new_lt23(vwx1740, vwx1750, ty_Bool) -> new_lt7(vwx1740, vwx1750) new_lt8(vwx226, vwx229, ty_Integer) -> new_lt18(vwx226, vwx229) new_lt21(vwx1740, vwx1750, app(ty_Maybe, bac)) -> new_lt14(vwx1740, vwx1750, bac) new_ltEs19(vwx203, vwx204, ty_@0) -> new_ltEs16(vwx203, vwx204) new_esEs32(vwx1741, vwx1751, app(ty_[], hc)) -> new_esEs18(vwx1741, vwx1751, hc) new_esEs34(vwx1740, vwx1750, ty_Float) -> new_esEs25(vwx1740, vwx1750) new_esEs9(vwx300, vwx400, ty_Char) -> new_esEs17(vwx300, vwx400) new_esEs28(vwx3000, vwx4000, ty_Float) -> new_esEs25(vwx3000, vwx4000) new_ltEs8(Right(vwx1740), Right(vwx1750), df, ty_Integer) -> new_ltEs15(vwx1740, vwx1750) new_esEs32(vwx1741, vwx1751, ty_Char) -> new_esEs17(vwx1741, vwx1751) new_esEs10(vwx300, vwx400, ty_Double) -> new_esEs16(vwx300, vwx400) new_compare26(vwx225, vwx226, vwx227, vwx228, vwx229, vwx230, False, bfb, bfc, bgg) -> new_compare14(vwx225, vwx226, vwx227, vwx228, vwx229, vwx230, new_lt9(vwx225, vwx228, bfb), new_asAs(new_esEs26(vwx225, vwx228, bfb), new_pePe(new_lt8(vwx226, vwx229, bfc), new_asAs(new_esEs27(vwx226, vwx229, bfc), new_ltEs20(vwx227, vwx230, bgg)))), bfb, bfc, bgg) new_esEs10(vwx300, vwx400, ty_Int) -> new_esEs15(vwx300, vwx400) new_primCompAux0(vwx168, EQ) -> vwx168 new_lt23(vwx1740, vwx1750, ty_Ordering) -> new_lt19(vwx1740, vwx1750) new_esEs20(Just(vwx3000), Just(vwx4000), app(app(ty_Either, fda), fdb)) -> new_esEs19(vwx3000, vwx4000, fda, fdb) new_esEs39(vwx3001, vwx4001, ty_Ordering) -> new_esEs12(vwx3001, vwx4001) new_esEs7(vwx301, vwx401, app(ty_Maybe, dba)) -> new_esEs20(vwx301, vwx401, dba) new_ltEs23(vwx239, vwx241, app(ty_Maybe, ccb)) -> new_ltEs10(vwx239, vwx241, ccb) new_compare31(vwx30, vwx40, ty_Float) -> new_compare8(vwx30, vwx40) new_esEs34(vwx1740, vwx1750, ty_Integer) -> new_esEs24(vwx1740, vwx1750) new_esEs28(vwx3000, vwx4000, ty_@0) -> new_esEs22(vwx3000, vwx4000) new_esEs5(vwx300, vwx400, app(app(app(ty_@3, ebe), ebf), ebg)) -> new_esEs13(vwx300, vwx400, ebe, ebf, ebg) new_esEs6(vwx300, vwx400, app(app(ty_@2, daa), dab)) -> new_esEs23(vwx300, vwx400, daa, dab) new_lt20(vwx1741, vwx1751, app(ty_Maybe, hb)) -> new_lt14(vwx1741, vwx1751, hb) new_lt22(vwx238, vwx240, app(ty_Ratio, eef)) -> new_lt10(vwx238, vwx240, eef) new_primEqInt(Neg(Succ(vwx30000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(vwx40000))) -> False new_ltEs23(vwx239, vwx241, app(ty_[], ccc)) -> new_ltEs11(vwx239, vwx241, ccc) new_esEs19(Right(vwx3000), Right(vwx4000), eag, ty_Int) -> new_esEs15(vwx3000, vwx4000) new_esEs6(vwx300, vwx400, app(ty_Maybe, chg)) -> new_esEs20(vwx300, vwx400, chg) new_esEs9(vwx300, vwx400, ty_Double) -> new_esEs16(vwx300, vwx400) new_esEs10(vwx300, vwx400, ty_Ordering) -> new_esEs12(vwx300, vwx400) new_esEs21(:%(vwx3000, vwx3001), :%(vwx4000, vwx4001), ebb) -> new_asAs(new_esEs36(vwx3000, vwx4000, ebb), new_esEs37(vwx3001, vwx4001, ebb)) new_primEqInt(Pos(Succ(vwx30000)), Pos(Succ(vwx40000))) -> new_primEqNat0(vwx30000, vwx40000) new_compare34(EQ, EQ) -> EQ new_ltEs24(vwx1741, vwx1751, app(ty_Ratio, efa)) -> new_ltEs5(vwx1741, vwx1751, efa) new_esEs5(vwx300, vwx400, ty_Bool) -> new_esEs14(vwx300, vwx400) new_esEs8(vwx302, vwx402, ty_Int) -> new_esEs15(vwx302, vwx402) new_esEs34(vwx1740, vwx1750, ty_@0) -> new_esEs22(vwx1740, vwx1750) new_ltEs23(vwx239, vwx241, ty_Float) -> new_ltEs6(vwx239, vwx241) new_esEs4(vwx300, vwx400, ty_Double) -> new_esEs16(vwx300, vwx400) new_ltEs23(vwx239, vwx241, ty_Ordering) -> new_ltEs17(vwx239, vwx241) new_ltEs8(Right(vwx1740), Right(vwx1750), df, ty_Float) -> new_ltEs6(vwx1740, vwx1750) new_esEs10(vwx300, vwx400, app(ty_[], edg)) -> new_esEs18(vwx300, vwx400, edg) new_esEs14(False, False) -> True new_primEqInt(Pos(Succ(vwx30000)), Neg(vwx4000)) -> False new_primEqInt(Neg(Succ(vwx30000)), Pos(vwx4000)) -> False new_esEs39(vwx3001, vwx4001, ty_Float) -> new_esEs25(vwx3001, vwx4001) new_esEs35(vwx3000, vwx4000, app(app(ty_Either, fbe), fbf)) -> new_esEs19(vwx3000, vwx4000, fbe, fbf) new_primCmpInt(Neg(Zero), Neg(Succ(vwx4000))) -> new_primCmpNat0(Succ(vwx4000), Zero) new_ltEs4(vwx174, vwx175, app(ty_[], bbh)) -> new_ltEs11(vwx174, vwx175, bbh) new_esEs7(vwx301, vwx401, app(ty_Ratio, dbb)) -> new_esEs21(vwx301, vwx401, dbb) new_esEs29(vwx3001, vwx4001, app(app(ty_Either, dgd), dge)) -> new_esEs19(vwx3001, vwx4001, dgd, dge) new_esEs38(vwx3000, vwx4000, ty_Int) -> new_esEs15(vwx3000, vwx4000) new_compare18(Right(vwx300), Left(vwx400), ba, bb) -> GT new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_lt21(vwx1740, vwx1750, ty_Float) -> new_lt11(vwx1740, vwx1750) new_esEs19(Left(vwx3000), Left(vwx4000), app(app(ty_@2, egb), egc), eah) -> new_esEs23(vwx3000, vwx4000, egb, egc) new_compare30(Just(vwx300), Nothing, bf) -> GT new_esEs34(vwx1740, vwx1750, ty_Bool) -> new_esEs14(vwx1740, vwx1750) new_esEs19(Left(vwx3000), Left(vwx4000), ty_Integer, eah) -> new_esEs24(vwx3000, vwx4000) new_ltEs12(vwx174, vwx175) -> new_fsEs(new_compare7(vwx174, vwx175)) new_ltEs8(Right(vwx1740), Right(vwx1750), df, ty_Double) -> new_ltEs7(vwx1740, vwx1750) new_esEs34(vwx1740, vwx1750, app(app(app(ty_@3, bdf), bdg), bdh)) -> new_esEs13(vwx1740, vwx1750, bdf, bdg, bdh) new_esEs31(vwx1740, vwx1750, ty_Int) -> new_esEs15(vwx1740, vwx1750) new_compare31(vwx30, vwx40, ty_Char) -> new_compare33(vwx30, vwx40) new_lt21(vwx1740, vwx1750, ty_@0) -> new_lt6(vwx1740, vwx1750) new_lt22(vwx238, vwx240, ty_Integer) -> new_lt18(vwx238, vwx240) new_esEs19(Right(vwx3000), Right(vwx4000), eag, app(app(ty_Either, egh), eha)) -> new_esEs19(vwx3000, vwx4000, egh, eha) new_esEs35(vwx3000, vwx4000, app(ty_[], fbd)) -> new_esEs18(vwx3000, vwx4000, fbd) new_esEs26(vwx225, vwx228, ty_@0) -> new_esEs22(vwx225, vwx228) new_esEs20(Just(vwx3000), Just(vwx4000), app(ty_Maybe, fdc)) -> new_esEs20(vwx3000, vwx4000, fdc) new_esEs7(vwx301, vwx401, app(app(app(ty_@3, dac), dad), dae)) -> new_esEs13(vwx301, vwx401, dac, dad, dae) new_esEs11(vwx301, vwx401, ty_Bool) -> new_esEs14(vwx301, vwx401) new_ltEs19(vwx203, vwx204, app(ty_Maybe, cah)) -> new_ltEs10(vwx203, vwx204, cah) new_compare8(Float(vwx300, Pos(vwx3010)), Float(vwx400, Neg(vwx4010))) -> new_compare7(new_sr(vwx300, Pos(vwx4010)), new_sr(Neg(vwx3010), vwx400)) new_compare8(Float(vwx300, Neg(vwx3010)), Float(vwx400, Pos(vwx4010))) -> new_compare7(new_sr(vwx300, Neg(vwx4010)), new_sr(Pos(vwx3010), vwx400)) new_compare31(vwx30, vwx40, ty_Integer) -> new_compare9(vwx30, vwx40) new_lt21(vwx1740, vwx1750, app(app(ty_@2, bae), baf)) -> new_lt17(vwx1740, vwx1750, bae, baf) new_esEs27(vwx226, vwx229, app(ty_Ratio, dde)) -> new_esEs21(vwx226, vwx229, dde) new_esEs6(vwx300, vwx400, app(ty_Ratio, chh)) -> new_esEs21(vwx300, vwx400, chh) new_esEs7(vwx301, vwx401, ty_Bool) -> new_esEs14(vwx301, vwx401) new_esEs39(vwx3001, vwx4001, app(app(ty_@2, fga), fgb)) -> new_esEs23(vwx3001, vwx4001, fga, fgb) new_esEs11(vwx301, vwx401, app(app(app(ty_@3, dbh), dca), dcb)) -> new_esEs13(vwx301, vwx401, dbh, dca, dcb) new_esEs38(vwx3000, vwx4000, app(app(ty_Either, fec), fed)) -> new_esEs19(vwx3000, vwx4000, fec, fed) new_ltEs8(Left(vwx1740), Right(vwx1750), df, cd) -> True new_esEs28(vwx3000, vwx4000, ty_Ordering) -> new_esEs12(vwx3000, vwx4000) new_lt7(vwx225, vwx228) -> new_esEs12(new_compare13(vwx225, vwx228), LT) new_esEs6(vwx300, vwx400, ty_Int) -> new_esEs15(vwx300, vwx400) new_ltEs8(Left(vwx1740), Left(vwx1750), app(app(app(ty_@3, cf), cg), da), cd) -> new_ltEs9(vwx1740, vwx1750, cf, cg, da) new_compare29(Double(vwx300, Pos(vwx3010)), Double(vwx400, Neg(vwx4010))) -> new_compare7(new_sr(vwx300, Pos(vwx4010)), new_sr(Neg(vwx3010), vwx400)) new_compare29(Double(vwx300, Neg(vwx3010)), Double(vwx400, Pos(vwx4010))) -> new_compare7(new_sr(vwx300, Neg(vwx4010)), new_sr(Pos(vwx3010), vwx400)) new_lt20(vwx1741, vwx1751, ty_Ordering) -> new_lt19(vwx1741, vwx1751) new_esEs4(vwx300, vwx400, ty_Integer) -> new_esEs24(vwx300, vwx400) new_ltEs10(Just(vwx1740), Just(vwx1750), app(app(ty_@2, bbf), bbg)) -> new_ltEs14(vwx1740, vwx1750, bbf, bbg) new_esEs5(vwx300, vwx400, app(app(ty_@2, ece), ecf)) -> new_esEs23(vwx300, vwx400, ece, ecf) new_compare0(:(vwx30, vwx31), [], h) -> GT new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_esEs30(vwx3002, vwx4002, ty_Float) -> new_esEs25(vwx3002, vwx4002) new_esEs29(vwx3001, vwx4001, ty_Float) -> new_esEs25(vwx3001, vwx4001) new_compare27(vwx181, vwx182, True, cdh, dea) -> EQ new_ltEs23(vwx239, vwx241, app(app(app(ty_@3, cbg), cbh), cca)) -> new_ltEs9(vwx239, vwx241, cbg, cbh, cca) new_ltEs10(Just(vwx1740), Nothing, cfd) -> False new_not -> True new_ltEs10(Nothing, Nothing, cfd) -> True new_esEs38(vwx3000, vwx4000, ty_Integer) -> new_esEs24(vwx3000, vwx4000) new_esEs29(vwx3001, vwx4001, app(ty_Ratio, dgg)) -> new_esEs21(vwx3001, vwx4001, dgg) new_esEs4(vwx300, vwx400, app(app(ty_Either, eag), eah)) -> new_esEs19(vwx300, vwx400, eag, eah) new_ltEs8(Left(vwx1740), Left(vwx1750), app(app(ty_@2, dd), de), cd) -> new_ltEs14(vwx1740, vwx1750, dd, de) new_lt20(vwx1741, vwx1751, ty_Integer) -> new_lt18(vwx1741, vwx1751) new_lt23(vwx1740, vwx1750, ty_@0) -> new_lt6(vwx1740, vwx1750) new_esEs28(vwx3000, vwx4000, app(app(ty_Either, dfb), dfc)) -> new_esEs19(vwx3000, vwx4000, dfb, dfc) new_esEs9(vwx300, vwx400, ty_Bool) -> new_esEs14(vwx300, vwx400) new_compare110(vwx305, vwx306, vwx307, vwx308, False, ecg, ech) -> GT new_esEs7(vwx301, vwx401, ty_Ordering) -> new_esEs12(vwx301, vwx401) new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_esEs9(vwx300, vwx400, app(app(app(ty_@3, ehg), ehh), faa)) -> new_esEs13(vwx300, vwx400, ehg, ehh, faa) new_primPlusNat0(Succ(vwx3170), vwx40100) -> Succ(Succ(new_primPlusNat1(vwx3170, vwx40100))) new_esEs20(Just(vwx3000), Just(vwx4000), ty_Double) -> new_esEs16(vwx3000, vwx4000) new_ltEs22(vwx1742, vwx1752, ty_Char) -> new_ltEs13(vwx1742, vwx1752) new_ltEs23(vwx239, vwx241, app(app(ty_Either, cbe), cbf)) -> new_ltEs8(vwx239, vwx241, cbe, cbf) new_lt23(vwx1740, vwx1750, app(app(ty_@2, bec), bed)) -> new_lt17(vwx1740, vwx1750, bec, bed) new_lt8(vwx226, vwx229, ty_@0) -> new_lt6(vwx226, vwx229) new_esEs35(vwx3000, vwx4000, ty_Double) -> new_esEs16(vwx3000, vwx4000) new_esEs8(vwx302, vwx402, app(ty_Maybe, cge)) -> new_esEs20(vwx302, vwx402, cge) new_esEs8(vwx302, vwx402, ty_Float) -> new_esEs25(vwx302, vwx402) new_compare13(False, False) -> EQ new_compare13(True, True) -> EQ new_lt22(vwx238, vwx240, ty_Ordering) -> new_lt19(vwx238, vwx240) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs35(vwx3000, vwx4000, app(ty_Maybe, fbg)) -> new_esEs20(vwx3000, vwx4000, fbg) new_primPlusNat1(Zero, Zero) -> Zero new_esEs26(vwx225, vwx228, ty_Double) -> new_esEs16(vwx225, vwx228) new_lt21(vwx1740, vwx1750, app(ty_Ratio, eda)) -> new_lt10(vwx1740, vwx1750, eda) new_esEs24(Integer(vwx3000), Integer(vwx4000)) -> new_primEqInt(vwx3000, vwx4000) new_ltEs17(GT, EQ) -> False new_esEs32(vwx1741, vwx1751, ty_Float) -> new_esEs25(vwx1741, vwx1751) new_ltEs23(vwx239, vwx241, ty_Double) -> new_ltEs7(vwx239, vwx241) new_esEs27(vwx226, vwx229, ty_Integer) -> new_esEs24(vwx226, vwx229) new_esEs4(vwx300, vwx400, ty_Int) -> new_esEs15(vwx300, vwx400) new_esEs34(vwx1740, vwx1750, ty_Char) -> new_esEs17(vwx1740, vwx1750) new_ltEs24(vwx1741, vwx1751, ty_Integer) -> new_ltEs15(vwx1741, vwx1751) new_esEs18(:(vwx3000, vwx3001), [], eaf) -> False new_esEs18([], :(vwx4000, vwx4001), eaf) -> False new_esEs5(vwx300, vwx400, ty_Float) -> new_esEs25(vwx300, vwx400) new_compare30(Nothing, Nothing, bf) -> EQ new_ltEs10(Just(vwx1740), Just(vwx1750), ty_Double) -> new_ltEs7(vwx1740, vwx1750) new_compare17(@2(vwx300, vwx301), @2(vwx400, vwx401), bh, ca) -> new_compare28(vwx300, vwx301, vwx400, vwx401, new_asAs(new_esEs10(vwx300, vwx400, bh), new_esEs11(vwx301, vwx401, ca)), bh, ca) new_esEs25(Float(vwx3000, vwx3001), Float(vwx4000, vwx4001)) -> new_esEs15(new_sr(vwx3000, vwx4001), new_sr(vwx3001, vwx4000)) new_lt17(vwx225, vwx228, caa, cab) -> new_esEs12(new_compare17(vwx225, vwx228, caa, cab), LT) new_esEs5(vwx300, vwx400, ty_Ordering) -> new_esEs12(vwx300, vwx400) new_ltEs10(Just(vwx1740), Just(vwx1750), app(ty_Ratio, fcd)) -> new_ltEs5(vwx1740, vwx1750, fcd) new_lt8(vwx226, vwx229, app(app(ty_@2, bhe), bhf)) -> new_lt17(vwx226, vwx229, bhe, bhf) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs26(vwx225, vwx228, app(app(ty_Either, bee), bef)) -> new_esEs19(vwx225, vwx228, bee, bef) new_esEs36(vwx3000, vwx4000, ty_Integer) -> new_esEs24(vwx3000, vwx4000) new_ltEs21(vwx181, vwx182, app(ty_Maybe, cef)) -> new_ltEs10(vwx181, vwx182, cef) new_esEs29(vwx3001, vwx4001, ty_Int) -> new_esEs15(vwx3001, vwx4001) new_lt21(vwx1740, vwx1750, ty_Bool) -> new_lt7(vwx1740, vwx1750) new_primMulNat0(Succ(vwx30000), Succ(vwx40100)) -> new_primPlusNat0(new_primMulNat0(vwx30000, Succ(vwx40100)), vwx40100) new_ltEs10(Just(vwx1740), Just(vwx1750), app(app(app(ty_@3, bba), bbb), bbc)) -> new_ltEs9(vwx1740, vwx1750, bba, bbb, bbc) new_ltEs24(vwx1741, vwx1751, ty_Char) -> new_ltEs13(vwx1741, vwx1751) new_esEs35(vwx3000, vwx4000, ty_Char) -> new_esEs17(vwx3000, vwx4000) new_esEs27(vwx226, vwx229, app(app(ty_@2, bhe), bhf)) -> new_esEs23(vwx226, vwx229, bhe, bhf) new_compare26(vwx225, vwx226, vwx227, vwx228, vwx229, vwx230, True, bfb, bfc, bgg) -> EQ new_ltEs13(vwx174, vwx175) -> new_fsEs(new_compare33(vwx174, vwx175)) new_esEs6(vwx300, vwx400, ty_Float) -> new_esEs25(vwx300, vwx400) new_ltEs15(vwx174, vwx175) -> new_fsEs(new_compare9(vwx174, vwx175)) new_primCmpNat0(Succ(vwx3000), Succ(vwx4000)) -> new_primCmpNat0(vwx3000, vwx4000) new_lt20(vwx1741, vwx1751, ty_Char) -> new_lt16(vwx1741, vwx1751) new_compare14(vwx290, vwx291, vwx292, vwx293, vwx294, vwx295, False, vwx297, dbe, dbf, dbg) -> new_compare15(vwx290, vwx291, vwx292, vwx293, vwx294, vwx295, vwx297, dbe, dbf, dbg) new_ltEs8(Left(vwx1740), Left(vwx1750), ty_Int, cd) -> new_ltEs12(vwx1740, vwx1750) new_compare19(vwx305, vwx306, vwx307, vwx308, True, vwx310, ecg, ech) -> new_compare110(vwx305, vwx306, vwx307, vwx308, True, ecg, ech) new_compare110(vwx305, vwx306, vwx307, vwx308, True, ecg, ech) -> LT new_ltEs10(Just(vwx1740), Just(vwx1750), ty_Float) -> new_ltEs6(vwx1740, vwx1750) new_esEs26(vwx225, vwx228, app(app(ty_@2, caa), cab)) -> new_esEs23(vwx225, vwx228, caa, cab) new_ltEs20(vwx227, vwx230, app(ty_Maybe, bga)) -> new_ltEs10(vwx227, vwx230, bga) new_esEs31(vwx1740, vwx1750, ty_Ordering) -> new_esEs12(vwx1740, vwx1750) new_esEs39(vwx3001, vwx4001, app(ty_Ratio, ffh)) -> new_esEs21(vwx3001, vwx4001, ffh) new_esEs27(vwx226, vwx229, app(app(ty_Either, bge), bgf)) -> new_esEs19(vwx226, vwx229, bge, bgf) new_lt20(vwx1741, vwx1751, ty_Bool) -> new_lt7(vwx1741, vwx1751) new_compare31(vwx30, vwx40, app(app(ty_Either, ba), bb)) -> new_compare18(vwx30, vwx40, ba, bb) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_ltEs17(GT, GT) -> True new_esEs7(vwx301, vwx401, ty_Float) -> new_esEs25(vwx301, vwx401) new_ltEs18(True, True) -> True new_lt14(vwx225, vwx228, bhg) -> new_esEs12(new_compare30(vwx225, vwx228, bhg), LT) new_esEs10(vwx300, vwx400, app(ty_Maybe, eeb)) -> new_esEs20(vwx300, vwx400, eeb) new_esEs32(vwx1741, vwx1751, app(app(app(ty_@3, gg), gh), ha)) -> new_esEs13(vwx1741, vwx1751, gg, gh, ha) new_primEqNat0(Zero, Zero) -> True new_ltEs8(Right(vwx1740), Right(vwx1750), df, ty_Char) -> new_ltEs13(vwx1740, vwx1750) new_esEs34(vwx1740, vwx1750, app(ty_Maybe, bea)) -> new_esEs20(vwx1740, vwx1750, bea) new_esEs33(vwx238, vwx240, app(ty_Maybe, cdd)) -> new_esEs20(vwx238, vwx240, cdd) new_ltEs24(vwx1741, vwx1751, ty_Double) -> new_ltEs7(vwx1741, vwx1751) new_compare31(vwx30, vwx40, app(ty_Maybe, bf)) -> new_compare30(vwx30, vwx40, bf) new_esEs30(vwx3002, vwx4002, ty_Ordering) -> new_esEs12(vwx3002, vwx4002) new_esEs26(vwx225, vwx228, ty_Integer) -> new_esEs24(vwx225, vwx228) new_esEs4(vwx300, vwx400, app(ty_Ratio, ebb)) -> new_esEs21(vwx300, vwx400, ebb) new_esEs32(vwx1741, vwx1751, ty_Bool) -> new_esEs14(vwx1741, vwx1751) new_esEs31(vwx1740, vwx1750, ty_Float) -> new_esEs25(vwx1740, vwx1750) new_asAs(False, vwx270) -> False new_esEs19(Left(vwx3000), Right(vwx4000), eag, eah) -> False new_esEs19(Right(vwx3000), Left(vwx4000), eag, eah) -> False new_ltEs4(vwx174, vwx175, ty_Int) -> new_ltEs12(vwx174, vwx175) new_esEs38(vwx3000, vwx4000, app(app(ty_@2, feg), feh)) -> new_esEs23(vwx3000, vwx4000, feg, feh) new_ltEs21(vwx181, vwx182, app(ty_[], ceg)) -> new_ltEs11(vwx181, vwx182, ceg) new_ltEs24(vwx1741, vwx1751, app(app(app(ty_@3, bcd), bce), bcf)) -> new_ltEs9(vwx1741, vwx1751, bcd, bce, bcf) new_esEs20(Just(vwx3000), Just(vwx4000), app(ty_[], fch)) -> new_esEs18(vwx3000, vwx4000, fch) new_esEs6(vwx300, vwx400, ty_Ordering) -> new_esEs12(vwx300, vwx400) new_esEs19(Right(vwx3000), Right(vwx4000), eag, ty_Bool) -> new_esEs14(vwx3000, vwx4000) new_esEs30(vwx3002, vwx4002, ty_Int) -> new_esEs15(vwx3002, vwx4002) new_esEs37(vwx3001, vwx4001, ty_Integer) -> new_esEs24(vwx3001, vwx4001) new_lt21(vwx1740, vwx1750, ty_Integer) -> new_lt18(vwx1740, vwx1750) new_lt22(vwx238, vwx240, ty_@0) -> new_lt6(vwx238, vwx240) new_esEs8(vwx302, vwx402, app(app(app(ty_@3, cfg), cfh), cga)) -> new_esEs13(vwx302, vwx402, cfg, cfh, cga) new_ltEs10(Just(vwx1740), Just(vwx1750), ty_Ordering) -> new_ltEs17(vwx1740, vwx1750) new_esEs28(vwx3000, vwx4000, app(ty_Ratio, dfe)) -> new_esEs21(vwx3000, vwx4000, dfe) new_esEs8(vwx302, vwx402, ty_Bool) -> new_esEs14(vwx302, vwx402) new_ltEs23(vwx239, vwx241, ty_Char) -> new_ltEs13(vwx239, vwx241) new_ltEs10(Just(vwx1740), Just(vwx1750), ty_Integer) -> new_ltEs15(vwx1740, vwx1750) new_lt22(vwx238, vwx240, app(app(ty_@2, cdf), cdg)) -> new_lt17(vwx238, vwx240, cdf, cdg) new_ltEs24(vwx1741, vwx1751, app(app(ty_Either, bcb), bcc)) -> new_ltEs8(vwx1741, vwx1751, bcb, bcc) new_compare31(vwx30, vwx40, app(app(ty_@2, bh), ca)) -> new_compare17(vwx30, vwx40, bh, ca) new_esEs20(Just(vwx3000), Just(vwx4000), ty_Char) -> new_esEs17(vwx3000, vwx4000) The set Q consists of the following terms: new_esEs19(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs16(x0, x1) new_esEs7(x0, x1, ty_Double) new_ltEs22(x0, x1, ty_Float) new_ltEs23(x0, x1, ty_Char) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs23(@2(x0, x1), @2(x2, x3), x4, x5) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs8(x0, x1, ty_Int) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_compare26(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs30(x0, x1, ty_Char) new_esEs30(x0, x1, app(ty_[], x2)) new_ltEs8(Left(x0), Left(x1), ty_Char, x2) new_lt9(x0, x1, app(ty_Ratio, x2)) new_ltEs17(EQ, EQ) new_compare8(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare8(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs12(EQ, EQ) new_not new_lt22(x0, x1, app(ty_Ratio, x2)) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs10(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs19(Left(x0), Left(x1), ty_Double, x2) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_Float) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs8(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_primPlusNat1(Zero, Zero) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare110(x0, x1, x2, x3, False, x4, x5) new_lt21(x0, x1, app(ty_Maybe, x2)) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs8(x0, x1, ty_Char) new_compare34(EQ, EQ) new_esEs11(x0, x1, ty_Ordering) new_compare25(x0, x1, True, x2) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(x0, x1, ty_Integer) new_compare8(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs9(x0, x1, app(ty_[], x2)) new_esEs20(Just(x0), Just(x1), ty_Integer) new_ltEs6(x0, x1) new_lt14(x0, x1, x2) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_compare30(Just(x0), Nothing, x1) new_esEs20(Just(x0), Just(x1), ty_Bool) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs11(x0, x1, ty_Int) new_esEs5(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, ty_Double) new_esEs5(x0, x1, ty_Float) new_esEs8(x0, x1, ty_Double) new_compare29(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_ltEs12(x0, x1) new_esEs30(x0, x1, ty_Int) new_esEs4(x0, x1, ty_Ordering) new_ltEs10(Just(x0), Just(x1), ty_Char) new_ltEs8(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs34(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, ty_Double) new_esEs34(x0, x1, ty_Ordering) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(x0, x1, ty_Integer) new_esEs19(Left(x0), Left(x1), ty_Char, x2) new_esEs11(x0, x1, ty_Char) new_esEs14(True, True) new_lt22(x0, x1, ty_Double) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_Float) new_esEs19(Right(x0), Right(x1), x2, ty_Bool) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs10(Just(x0), Just(x1), ty_@0) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_lt9(x0, x1, app(app(ty_Either, x2), x3)) new_esEs19(Left(x0), Left(x1), ty_Int, x2) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_ltEs10(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_compare19(x0, x1, x2, x3, False, x4, x5, x6) new_esEs39(x0, x1, ty_Double) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare18(Right(x0), Right(x1), x2, x3) new_ltEs8(Right(x0), Right(x1), x2, ty_Bool) new_esEs11(x0, x1, ty_Double) new_lt8(x0, x1, ty_Float) new_esEs31(x0, x1, ty_Float) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, ty_Ordering) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_esEs4(x0, x1, ty_Int) new_esEs31(x0, x1, ty_Integer) new_lt22(x0, x1, ty_Ordering) new_ltEs10(Just(x0), Just(x1), ty_Int) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs19(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs10(x0, x1, ty_Int) new_primPlusNat1(Succ(x0), Succ(x1)) new_ltEs20(x0, x1, ty_Float) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, ty_Bool) new_esEs35(x0, x1, ty_Float) new_fsEs(EQ) new_esEs34(x0, x1, ty_Int) new_compare14(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_esEs14(False, True) new_esEs14(True, False) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_esEs35(x0, x1, ty_@0) new_esEs30(x0, x1, ty_Ordering) new_ltEs23(x0, x1, ty_Ordering) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Double) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_lt22(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, app(ty_[], x2)) new_compare31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs10(Just(x0), Just(x1), ty_Integer) new_ltEs19(x0, x1, ty_Integer) new_compare13(False, False) new_compare31(x0, x1, ty_Ordering) new_esEs7(x0, x1, ty_Char) new_esEs39(x0, x1, ty_Ordering) new_lt16(x0, x1) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare0([], :(x0, x1), x2) new_compare34(LT, GT) new_compare34(GT, LT) new_esEs34(x0, x1, ty_Char) new_ltEs10(Just(x0), Just(x1), ty_Bool) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs26(x0, x1, ty_Float) new_primMulInt(Pos(x0), Pos(x1)) new_esEs34(x0, x1, ty_Double) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, ty_Double) new_compare29(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_lt9(x0, x1, app(ty_Maybe, x2)) new_compare29(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare29(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_esEs12(LT, GT) new_esEs12(GT, LT) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs8(x0, x1, ty_Ordering) new_ltEs8(Left(x0), Left(x1), ty_Ordering, x2) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_asAs(True, x0) new_esEs22(@0, @0) new_esEs20(Nothing, Nothing, x0) new_esEs5(x0, x1, ty_Bool) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_lt23(x0, x1, ty_Float) new_esEs7(x0, x1, ty_Int) new_compare31(x0, x1, app(ty_[], x2)) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs23(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, ty_Integer) new_ltEs21(x0, x1, ty_Double) new_ltEs4(x0, x1, ty_Double) new_primCompAux0(x0, LT) new_lt9(x0, x1, ty_Float) new_ltEs8(Right(x0), Right(x1), x2, ty_Integer) new_esEs31(x0, x1, ty_Bool) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_esEs19(Right(x0), Right(x1), x2, ty_Integer) new_esEs7(x0, x1, ty_@0) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_compare8(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_lt8(x0, x1, app(ty_Maybe, x2)) new_esEs6(x0, x1, ty_Ordering) new_compare0([], [], x0) new_ltEs8(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_lt7(x0, x1) new_esEs11(x0, x1, ty_Bool) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_ltEs22(x0, x1, ty_Bool) new_esEs38(x0, x1, ty_Char) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_ltEs8(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs7(x0, x1, ty_Bool) new_ltEs8(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs8(x0, x1, ty_Integer) new_ltEs19(x0, x1, ty_@0) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpNat0(Zero, Succ(x0)) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, ty_Char) new_esEs20(Just(x0), Just(x1), ty_Char) new_esEs38(x0, x1, ty_Int) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_ltEs20(x0, x1, ty_Integer) new_ltEs24(x0, x1, ty_Char) new_lt9(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs27(x0, x1, ty_Double) new_ltEs8(Right(x0), Right(x1), x2, ty_Char) new_primCompAux0(x0, GT) new_lt20(x0, x1, ty_Float) new_compare26(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs12(GT, GT) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_compare11(x0, x1, False, x2) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_lt8(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, ty_Bool) new_ltEs10(Just(x0), Just(x1), ty_Float) new_esEs39(x0, x1, ty_Char) new_ltEs4(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, ty_Ordering) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs36(x0, x1, ty_Int) new_esEs32(x0, x1, ty_@0) new_esEs34(x0, x1, ty_@0) new_esEs5(x0, x1, ty_@0) new_esEs10(x0, x1, ty_Char) new_ltEs24(x0, x1, ty_Int) new_ltEs8(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs4(x0, x1, ty_Char) new_ltEs8(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_lt21(x0, x1, ty_Double) new_esEs39(x0, x1, ty_Bool) new_esEs10(x0, x1, ty_Bool) new_esEs28(x0, x1, ty_Float) new_lt8(x0, x1, ty_@0) new_esEs18([], :(x0, x1), x2) new_primPlusNat0(Zero, x0) new_lt9(x0, x1, ty_Bool) new_esEs38(x0, x1, app(ty_[], x2)) new_esEs19(Left(x0), Left(x1), ty_@0, x2) new_compare32(:%(x0, x1), :%(x2, x3), ty_Integer) new_ltEs23(x0, x1, ty_Integer) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare13(True, True) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_lt22(x0, x1, ty_Char) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_ltEs22(x0, x1, ty_Integer) new_asAs(False, x0) new_ltEs22(x0, x1, app(ty_[], x2)) new_esEs19(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_ltEs8(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_compare31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_lt23(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_primPlusNat0(Succ(x0), x1) new_ltEs17(LT, LT) new_esEs35(x0, x1, app(ty_[], x2)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_ltEs8(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs15(x0, x1) new_sr(x0, x1) new_compare34(EQ, GT) new_compare34(GT, EQ) new_lt9(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_Bool) new_esEs27(x0, x1, app(ty_[], x2)) new_ltEs8(Right(x0), Right(x1), x2, ty_Float) new_esEs39(x0, x1, ty_Int) new_ltEs24(x0, x1, ty_Float) new_lt22(x0, x1, ty_Float) new_ltEs23(x0, x1, ty_Bool) new_ltEs8(Left(x0), Left(x1), ty_@0, x2) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_primMulNat0(Succ(x0), Succ(x1)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs30(x0, x1, ty_Float) new_ltEs22(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Bool) new_esEs19(Right(x0), Right(x1), x2, ty_Double) new_ltEs23(x0, x1, ty_Float) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs19(Right(x0), Right(x1), x2, ty_@0) new_ltEs10(Just(x0), Just(x1), app(ty_[], x2)) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_compare16(x0, x1, True, x2, x3) new_compare18(Left(x0), Right(x1), x2, x3) new_compare18(Right(x0), Left(x1), x2, x3) new_esEs5(x0, x1, ty_Ordering) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs4(x0, x1, ty_Integer) new_ltEs21(x0, x1, ty_Ordering) new_lt22(x0, x1, ty_Int) new_esEs20(Just(x0), Just(x1), ty_Float) new_esEs10(x0, x1, ty_Ordering) new_esEs38(x0, x1, ty_Ordering) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs35(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, ty_Float) new_esEs6(x0, x1, ty_Double) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_compare31(x0, x1, ty_@0) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_esEs33(x0, x1, ty_@0) new_ltEs4(x0, x1, ty_Ordering) new_ltEs8(Right(x0), Right(x1), x2, ty_Int) new_esEs6(x0, x1, ty_@0) new_esEs4(x0, x1, ty_Bool) new_ltEs22(x0, x1, ty_Int) new_ltEs17(GT, GT) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_lt13(x0, x1, x2, x3) new_esEs29(x0, x1, ty_@0) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_lt8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, ty_Float) new_lt21(x0, x1, app(ty_[], x2)) new_compare18(Left(x0), Left(x1), x2, x3) new_esEs39(x0, x1, ty_Float) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, ty_Int) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_ltEs10(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs7(x0, x1, ty_Integer) new_primPlusNat1(Zero, Succ(x0)) new_lt8(x0, x1, ty_Double) new_compare19(x0, x1, x2, x3, True, x4, x5, x6) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_compare31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, ty_Ordering) new_ltEs8(Left(x0), Left(x1), ty_Double, x2) new_esEs32(x0, x1, ty_Double) new_esEs27(x0, x1, ty_@0) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs10(x0, x1, ty_Integer) new_esEs19(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs38(x0, x1, ty_Integer) new_compare24(x0, x1, True, x2, x3) new_compare31(x0, x1, ty_Double) new_esEs20(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs8(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs7(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, ty_Double) new_ltEs17(LT, EQ) new_ltEs17(EQ, LT) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs33(x0, x1, ty_Double) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_esEs9(x0, x1, ty_Int) new_esEs20(Just(x0), Just(x1), ty_Int) new_ltEs20(x0, x1, ty_Char) new_ltEs4(x0, x1, ty_Integer) new_esEs26(x0, x1, app(ty_[], x2)) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt8(x0, x1, ty_Int) new_ltEs22(x0, x1, ty_Double) new_lt8(x0, x1, app(ty_Ratio, x2)) new_primPlusNat1(Succ(x0), Zero) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, ty_Ordering) new_ltEs21(x0, x1, ty_Integer) new_compare31(x0, x1, app(ty_Ratio, x2)) new_fsEs(GT) new_ltEs10(Just(x0), Nothing, x1) new_esEs19(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs11(x0, x1, ty_Float) new_esEs7(x0, x1, ty_Float) new_esEs27(x0, x1, ty_Bool) new_compare7(x0, x1) new_esEs19(Left(x0), Left(x1), app(ty_[], x2), x3) new_primMulNat0(Zero, Succ(x0)) new_esEs20(Just(x0), Just(x1), app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_Double) new_primMulNat0(Zero, Zero) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Integer) new_ltEs4(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, ty_Bool) new_ltEs22(x0, x1, ty_Ordering) new_lt9(x0, x1, ty_Ordering) new_esEs19(Left(x0), Left(x1), ty_Float, x2) new_compare32(:%(x0, x1), :%(x2, x3), ty_Int) new_ltEs10(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, ty_@0) new_ltEs15(x0, x1) new_esEs32(x0, x1, ty_Int) new_esEs4(x0, x1, ty_Float) new_compare27(x0, x1, True, x2, x3) new_lt20(x0, x1, ty_Bool) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Integer) new_ltEs10(Nothing, Just(x0), x1) new_esEs26(x0, x1, ty_Bool) new_esEs31(x0, x1, ty_Ordering) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_esEs20(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs19(x0, x1, ty_Ordering) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_ltEs5(x0, x1, x2) new_esEs29(x0, x1, ty_Integer) new_esEs4(x0, x1, app(ty_[], x2)) new_lt8(x0, x1, ty_Ordering) new_ltEs24(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs34(x0, x1, ty_Float) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, ty_Char) new_ltEs13(x0, x1) new_esEs38(x0, x1, ty_Bool) new_lt21(x0, x1, ty_@0) new_esEs18(:(x0, x1), [], x2) new_esEs19(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_compare9(Integer(x0), Integer(x1)) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_esEs34(x0, x1, ty_Integer) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_lt9(x0, x1, ty_Double) new_primCompAux0(x0, EQ) new_ltEs20(x0, x1, ty_Int) new_esEs36(x0, x1, ty_Integer) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_lt23(x0, x1, ty_Bool) new_lt8(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs8(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_compare30(Nothing, Just(x0), x1) new_esEs35(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_Int) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_@0) new_ltEs18(True, True) new_esEs37(x0, x1, ty_Integer) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, ty_Ordering) new_esEs24(Integer(x0), Integer(x1)) new_lt21(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs4(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(x0, x1, ty_Ordering) new_esEs38(x0, x1, ty_@0) new_lt9(x0, x1, ty_Char) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_ltEs8(Right(x0), Right(x1), x2, ty_Ordering) new_lt4(x0, x1, x2, x3, x4) new_lt23(x0, x1, ty_Int) new_esEs28(x0, x1, ty_Int) new_esEs31(x0, x1, ty_Char) new_lt22(x0, x1, ty_Bool) new_esEs39(x0, x1, app(ty_[], x2)) new_compare10(x0, x1, True, x2, x3) new_ltEs19(x0, x1, ty_Char) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_compare14(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare16(x0, x1, False, x2, x3) new_lt9(x0, x1, ty_Int) new_compare6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs18([], [], x0) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs4(x0, x1, ty_@0) new_lt23(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_ltEs4(x0, x1, ty_Float) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_@0) new_esEs31(x0, x1, ty_Int) new_lt23(x0, x1, ty_Double) new_lt21(x0, x1, ty_Integer) new_ltEs11(x0, x1, x2) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(x0, x1, ty_Bool) new_lt23(x0, x1, ty_Char) new_esEs5(x0, x1, ty_Double) new_esEs10(x0, x1, ty_Float) new_esEs19(Left(x0), Right(x1), x2, x3) new_esEs19(Right(x0), Left(x1), x2, x3) new_lt22(x0, x1, ty_Integer) new_esEs18(:(x0, x1), :(x2, x3), x4) new_esEs20(Just(x0), Just(x1), ty_Ordering) new_compare28(x0, x1, x2, x3, True, x4, x5) new_lt20(x0, x1, ty_@0) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_pePe(True, x0) new_ltEs7(x0, x1) new_lt21(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Bool) new_ltEs18(True, False) new_ltEs18(False, True) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, ty_Double) new_esEs5(x0, x1, ty_Char) new_esEs6(x0, x1, ty_Integer) new_esEs11(x0, x1, ty_Integer) new_ltEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, ty_Char) new_lt22(x0, x1, app(ty_Maybe, x2)) new_ltEs21(x0, x1, ty_Bool) new_esEs19(Right(x0), Right(x1), x2, ty_Ordering) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs31(x0, x1, ty_Double) new_compare34(LT, LT) new_lt15(x0, x1, x2) new_esEs28(x0, x1, ty_Double) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_esEs12(LT, LT) new_lt19(x0, x1) new_esEs39(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Int) new_esEs34(x0, x1, ty_Bool) new_esEs26(x0, x1, ty_@0) new_ltEs10(Nothing, Nothing, x0) new_primCmpNat0(Succ(x0), Zero) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs38(x0, x1, ty_Float) new_ltEs4(x0, x1, ty_Char) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_compare12(@0, @0) new_ltEs24(x0, x1, ty_Bool) new_esEs28(x0, x1, ty_Char) new_lt23(x0, x1, ty_@0) new_primCmpInt(Pos(Zero), Pos(Zero)) new_compare15(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs26(x0, x1, ty_Int) new_esEs27(x0, x1, ty_Ordering) new_lt17(x0, x1, x2, x3) new_lt11(x0, x1) new_lt9(x0, x1, ty_@0) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_primEqNat0(Succ(x0), Zero) new_ltEs21(x0, x1, ty_Char) new_compare17(@2(x0, x1), @2(x2, x3), x4, x5) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(x0, x1, ty_Int) new_lt6(x0, x1) new_compare27(x0, x1, False, x2, x3) new_esEs19(Right(x0), Right(x1), x2, ty_Char) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, ty_@0) new_compare34(GT, GT) new_lt10(x0, x1, x2) new_ltEs17(LT, GT) new_ltEs17(GT, LT) new_esEs11(x0, x1, app(ty_[], x2)) new_esEs19(Right(x0), Right(x1), x2, ty_Int) new_lt20(x0, x1, ty_Ordering) new_esEs29(x0, x1, ty_Float) new_compare33(Char(x0), Char(x1)) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, app(ty_[], x2)) new_primEqNat0(Zero, Succ(x0)) new_ltEs21(x0, x1, ty_Int) new_ltEs19(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Float) new_ltEs22(x0, x1, ty_@0) new_lt12(x0, x1) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_esEs29(x0, x1, ty_Ordering) new_compare110(x0, x1, x2, x3, True, x4, x5) new_esEs19(Left(x0), Left(x1), ty_Bool, x2) new_esEs10(x0, x1, ty_@0) new_ltEs8(Left(x0), Left(x1), ty_Integer, x2) new_sr0(Integer(x0), Integer(x1)) new_lt21(x0, x1, ty_Float) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_lt5(x0, x1) new_esEs31(x0, x1, app(ty_[], x2)) new_ltEs8(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs28(x0, x1, ty_Ordering) new_esEs39(x0, x1, ty_@0) new_esEs11(x0, x1, ty_@0) new_esEs33(x0, x1, ty_Integer) new_esEs20(Just(x0), Just(x1), app(ty_Ratio, x2)) new_compare30(Nothing, Nothing, x0) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_lt9(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_ltEs10(Just(x0), Just(x1), ty_Double) new_compare28(x0, x1, x2, x3, False, x4, x5) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs10(Just(x0), Just(x1), ty_Ordering) new_esEs19(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_compare31(x0, x1, app(ty_Maybe, x2)) new_compare31(x0, x1, ty_Integer) new_lt18(x0, x1) new_esEs4(x0, x1, ty_@0) new_esEs19(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs19(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_esEs35(x0, x1, ty_Int) new_compare15(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_ltEs21(x0, x1, ty_Float) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs6(x0, x1, ty_Bool) new_compare34(LT, EQ) new_ltEs8(Right(x0), Left(x1), x2, x3) new_compare34(EQ, LT) new_ltEs8(Left(x0), Right(x1), x2, x3) new_esEs25(Float(x0, x1), Float(x2, x3)) new_compare24(x0, x1, False, x2, x3) new_esEs17(Char(x0), Char(x1)) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_@0) new_ltEs4(x0, x1, app(app(ty_@2, x2), x3)) new_lt8(x0, x1, ty_Integer) new_esEs38(x0, x1, ty_Double) new_ltEs21(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, ty_Integer) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs9(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs35(x0, x1, ty_Char) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_compare30(Just(x0), Just(x1), x2) new_ltEs20(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, ty_Int) new_compare31(x0, x1, ty_Bool) new_ltEs24(x0, x1, ty_Ordering) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs35(x0, x1, ty_Bool) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, ty_Integer) new_primEqNat0(Zero, Zero) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs30(x0, x1, ty_Double) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs37(x0, x1, ty_Int) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs35(x0, x1, ty_Ordering) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_ltEs8(Right(x0), Right(x1), x2, ty_Double) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare13(True, False) new_compare13(False, True) new_esEs9(x0, x1, ty_Double) new_esEs33(x0, x1, ty_Float) new_esEs19(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs33(x0, x1, ty_Bool) new_esEs20(Nothing, Just(x0), x1) new_esEs20(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_compare31(x0, x1, ty_Float) new_esEs19(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs16(Double(x0, x1), Double(x2, x3)) new_ltEs8(Left(x0), Left(x1), ty_Float, x2) new_esEs27(x0, x1, ty_Char) new_ltEs14(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs18(False, False) new_ltEs17(EQ, GT) new_ltEs17(GT, EQ) new_esEs21(:%(x0, x1), :%(x2, x3), x4) new_esEs14(False, False) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_fsEs(LT) new_esEs26(x0, x1, ty_Integer) new_primMulNat0(Succ(x0), Zero) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs4(x0, x1, app(ty_Ratio, x2)) new_pePe(False, x0) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_compare10(x0, x1, False, x2, x3) new_ltEs8(Left(x0), Left(x1), ty_Bool, x2) new_ltEs23(x0, x1, ty_@0) new_lt22(x0, x1, ty_@0) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs30(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_Double) new_lt9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs19(Left(x0), Left(x1), ty_Integer, x2) new_lt8(x0, x1, ty_Bool) new_compare31(x0, x1, ty_Int) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, ty_Char) new_compare0(:(x0, x1), :(x2, x3), x4) new_esEs19(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, app(ty_[], x2)) new_compare0(:(x0, x1), [], x2) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs33(x0, x1, ty_Int) new_esEs32(x0, x1, ty_Char) new_esEs26(x0, x1, ty_Ordering) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs35(x0, x1, ty_Integer) new_esEs6(x0, x1, ty_Float) new_compare25(x0, x1, False, x2) new_ltEs10(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt23(x0, x1, app(ty_[], x2)) new_esEs20(Just(x0), Just(x1), ty_Double) new_lt8(x0, x1, ty_Char) new_compare11(x0, x1, True, x2) new_lt23(x0, x1, ty_Integer) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, ty_Int) new_lt23(x0, x1, ty_Ordering) new_esEs19(Right(x0), Right(x1), x2, ty_Float) new_ltEs8(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs20(Just(x0), Just(x1), ty_@0) new_esEs9(x0, x1, ty_@0) new_esEs33(x0, x1, ty_Char) new_compare31(x0, x1, ty_Char) new_esEs8(x0, x1, ty_@0) new_esEs32(x0, x1, ty_Bool) new_ltEs8(Right(x0), Right(x1), x2, ty_@0) new_esEs6(x0, x1, ty_Int) new_ltEs8(Left(x0), Left(x1), ty_Int, x2) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, ty_Int) new_esEs20(Just(x0), Nothing, x1) new_primCmpNat0(Zero, Zero) new_esEs29(x0, x1, ty_Char) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_primCompAux1(x0, x1, x2, x3) new_esEs20(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_primMulInt(Neg(x0), Neg(x1)) new_ltEs23(x0, x1, ty_Double) 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_ltEs2(:(vwx30, vwx31), :(vwx40, vwx41), h) -> new_primCompAux(vwx30, vwx40, new_compare0(vwx31, vwx41, h), h) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_compare(:(vwx30, vwx31), :(vwx40, vwx41), h) -> new_primCompAux(vwx30, vwx40, new_compare0(vwx31, vwx41, h), h) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_ltEs2(:(vwx30, vwx31), :(vwx40, vwx41), h) -> new_compare(vwx31, vwx41, h) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_ltEs0(@3(vwx1740, vwx1741, vwx1742), @3(vwx1750, vwx1751, vwx1752), eh, fa, app(ty_[], ga)) -> new_ltEs2(vwx1742, vwx1752, ga) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare22(vwx203, vwx204, False, app(ty_[], cba)) -> new_ltEs2(vwx203, vwx204, cba) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_compare(:(vwx30, vwx31), :(vwx40, vwx41), h) -> new_compare(vwx31, vwx41, h) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_ltEs0(@3(vwx1740, vwx1741, vwx1742), @3(vwx1750, vwx1751, vwx1752), eh, fa, app(app(app(ty_@3, fd), ff), fg)) -> new_ltEs0(vwx1742, vwx1752, fd, ff, fg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_compare22(vwx203, vwx204, False, app(app(app(ty_@3, cae), caf), cag)) -> new_ltEs0(vwx203, vwx204, cae, caf, cag) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(vwx181, vwx182, False, cdh, app(ty_[], ceg)) -> new_ltEs2(vwx181, vwx182, ceg) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3 *new_compare20(vwx181, vwx182, False, cdh, app(app(app(ty_@3, cec), ced), cee)) -> new_ltEs0(vwx181, vwx182, cec, ced, cee) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4, 5 > 5 *new_lt1(vwx225, vwx228, bhg) -> new_compare4(vwx225, vwx228, bhg) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_lt2(vwx225, vwx228, bhh) -> new_compare(vwx225, vwx228, bhh) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_ltEs1(Just(vwx1740), Just(vwx1750), app(ty_[], bbe)) -> new_ltEs2(vwx1740, vwx1750, bbe) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs1(Just(vwx1740), Just(vwx1750), app(app(app(ty_@3, bba), bbb), bbc)) -> new_ltEs0(vwx1740, vwx1750, bba, bbb, bbc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_lt0(vwx225, vwx228, beg, beh, bfa) -> new_compare3(vwx225, vwx228, beg, beh, bfa) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5 *new_ltEs0(@3(vwx1740, vwx1741, vwx1742), @3(vwx1750, vwx1751, vwx1752), eh, fa, app(app(ty_Either, fb), fc)) -> new_ltEs(vwx1742, vwx1752, fb, fc) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare22(vwx203, vwx204, False, app(app(ty_Either, cac), cad)) -> new_ltEs(vwx203, vwx204, cac, cad) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_compare20(vwx181, vwx182, False, cdh, app(app(ty_Either, cea), ceb)) -> new_ltEs(vwx181, vwx182, cea, ceb) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4 *new_ltEs1(Just(vwx1740), Just(vwx1750), app(app(ty_Either, bag), bah)) -> new_ltEs(vwx1740, vwx1750, bag, bah) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs0(@3(vwx1740, vwx1741, vwx1742), @3(vwx1750, vwx1751, vwx1752), eh, fa, app(app(ty_@2, gb), gc)) -> new_ltEs3(vwx1742, vwx1752, gb, gc) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare22(vwx203, vwx204, False, app(app(ty_@2, cbb), cbc)) -> new_ltEs3(vwx203, vwx204, cbb, cbc) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_compare22(vwx203, vwx204, False, app(ty_Maybe, cah)) -> new_ltEs1(vwx203, vwx204, cah) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_ltEs3(@2(vwx1740, vwx1741), @2(vwx1750, vwx1751), bca, app(ty_[], bch)) -> new_ltEs2(vwx1741, vwx1751, bch) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs3(@2(vwx1740, vwx1741), @2(vwx1750, vwx1751), bca, app(app(app(ty_@3, bcd), bce), bcf)) -> new_ltEs0(vwx1741, vwx1751, bcd, bce, bcf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(vwx181, vwx182, False, cdh, app(app(ty_@2, ceh), cfa)) -> new_ltEs3(vwx181, vwx182, ceh, cfa) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4 *new_compare20(vwx181, vwx182, False, cdh, app(ty_Maybe, cef)) -> new_ltEs1(vwx181, vwx182, cef) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3 *new_ltEs1(Just(vwx1740), Just(vwx1750), app(app(ty_@2, bbf), bbg)) -> new_ltEs3(vwx1740, vwx1750, bbf, bbg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs1(Just(vwx1740), Just(vwx1750), app(ty_Maybe, bbd)) -> new_ltEs1(vwx1740, vwx1750, bbd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs3(@2(vwx1740, vwx1741), @2(vwx1750, vwx1751), bca, app(app(ty_Either, bcb), bcc)) -> new_ltEs(vwx1741, vwx1751, bcb, bcc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs3(@2(vwx1740, vwx1741), @2(vwx1750, vwx1751), bca, app(app(ty_@2, bda), bdb)) -> new_ltEs3(vwx1741, vwx1751, bda, bdb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_lt3(vwx225, vwx228, caa, cab) -> new_compare5(vwx225, vwx228, caa, cab) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4 *new_lt(vwx225, vwx228, bee, bef) -> new_compare1(vwx225, vwx228, bee, bef) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4 *new_compare21(vwx225, vwx226, vwx227, vwx228, vwx229, vwx230, False, app(app(ty_Either, bee), bef), bfc, bgg) -> new_compare1(vwx225, vwx228, bee, bef) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4 *new_ltEs3(@2(vwx1740, vwx1741), @2(vwx1750, vwx1751), app(app(ty_@2, bec), bed), bde) -> new_lt3(vwx1740, vwx1750, bec, bed) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_compare5(@2(vwx300, vwx301), @2(vwx400, vwx401), bh, ca) -> new_compare23(vwx300, vwx301, vwx400, vwx401, new_asAs(new_esEs10(vwx300, vwx400, bh), new_esEs11(vwx301, vwx401, ca)), bh, ca) The graph contains the following edges 1 > 1, 1 > 2, 2 > 3, 2 > 4, 3 >= 6, 4 >= 7 *new_primCompAux(@2(vwx300, vwx301), @2(vwx400, vwx401), vwx164, app(app(ty_@2, bh), ca)) -> new_compare23(vwx300, vwx301, vwx400, vwx401, new_asAs(new_esEs10(vwx300, vwx400, bh), new_esEs11(vwx301, vwx401, ca)), bh, ca) The graph contains the following edges 1 > 1, 1 > 2, 2 > 3, 2 > 4, 4 > 6, 4 > 7 *new_primCompAux(Left(vwx300), Left(vwx400), vwx164, app(app(ty_Either, ba), bb)) -> new_compare2(vwx300, vwx400, new_esEs4(vwx300, vwx400, ba), ba, bb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 *new_compare1(Left(vwx300), Left(vwx400), ba, bb) -> new_compare2(vwx300, vwx400, new_esEs4(vwx300, vwx400, ba), ba, bb) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 *new_primCompAux(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), vwx164, app(app(app(ty_@3, bc), bd), be)) -> new_compare21(vwx300, vwx301, vwx302, vwx400, vwx401, vwx402, new_asAs(new_esEs6(vwx300, vwx400, bc), new_asAs(new_esEs7(vwx301, vwx401, bd), new_esEs8(vwx302, vwx402, be))), bc, bd, be) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 2 > 4, 2 > 5, 2 > 6, 4 > 8, 4 > 9, 4 > 10 *new_compare3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bc, bd, be) -> new_compare21(vwx300, vwx301, vwx302, vwx400, vwx401, vwx402, new_asAs(new_esEs6(vwx300, vwx400, bc), new_asAs(new_esEs7(vwx301, vwx401, bd), new_esEs8(vwx302, vwx402, be))), bc, bd, be) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 2 > 4, 2 > 5, 2 > 6, 3 >= 8, 4 >= 9, 5 >= 10 *new_primCompAux(Just(vwx300), Just(vwx400), vwx164, app(ty_Maybe, bf)) -> new_compare22(vwx300, vwx400, new_esEs9(vwx300, vwx400, bf), bf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 *new_compare4(Just(vwx300), Just(vwx400), bf) -> new_compare22(vwx300, vwx400, new_esEs9(vwx300, vwx400, bf), bf) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_ltEs0(@3(vwx1740, vwx1741, vwx1742), @3(vwx1750, vwx1751, vwx1752), eh, fa, app(ty_Maybe, fh)) -> new_ltEs1(vwx1742, vwx1752, fh) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_ltEs3(@2(vwx1740, vwx1741), @2(vwx1750, vwx1751), bca, app(ty_Maybe, bcg)) -> new_ltEs1(vwx1741, vwx1751, bcg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs3(@2(vwx1740, vwx1741), @2(vwx1750, vwx1751), app(ty_[], beb), bde) -> new_lt2(vwx1740, vwx1750, beb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_primCompAux(Right(vwx300), Right(vwx400), vwx164, app(app(ty_Either, ba), bb)) -> new_compare20(vwx300, vwx400, new_esEs5(vwx300, vwx400, bb), ba, bb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 *new_primCompAux(vwx30, vwx40, vwx164, app(ty_[], bg)) -> new_compare(vwx30, vwx40, bg) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_compare1(Right(vwx300), Right(vwx400), ba, bb) -> new_compare20(vwx300, vwx400, new_esEs5(vwx300, vwx400, bb), ba, bb) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 *new_ltEs3(@2(vwx1740, vwx1741), @2(vwx1750, vwx1751), app(app(app(ty_@3, bdf), bdg), bdh), bde) -> new_lt0(vwx1740, vwx1750, bdf, bdg, bdh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs3(@2(vwx1740, vwx1741), @2(vwx1750, vwx1751), app(ty_Maybe, bea), bde) -> new_lt1(vwx1740, vwx1750, bea) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs3(@2(vwx1740, vwx1741), @2(vwx1750, vwx1751), app(app(ty_Either, bdc), bdd), bde) -> new_lt(vwx1740, vwx1750, bdc, bdd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_compare23(vwx238, vwx239, vwx240, vwx241, False, cbd, app(ty_[], ccc)) -> new_ltEs2(vwx239, vwx241, ccc) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3 *new_compare21(vwx225, vwx226, vwx227, vwx228, vwx229, vwx230, False, bfb, bfc, app(ty_[], bgb)) -> new_ltEs2(vwx227, vwx230, bgb) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3 *new_compare23(vwx238, vwx239, vwx240, vwx241, False, cbd, app(app(app(ty_@3, cbg), cbh), cca)) -> new_ltEs0(vwx239, vwx241, cbg, cbh, cca) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4, 7 > 5 *new_compare21(vwx225, vwx226, vwx227, vwx228, vwx229, vwx230, False, bfb, bfc, app(app(app(ty_@3, bff), bfg), bfh)) -> new_ltEs0(vwx227, vwx230, bff, bfg, bfh) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4, 10 > 5 *new_compare23(vwx238, vwx239, vwx240, vwx241, False, cbd, app(app(ty_Either, cbe), cbf)) -> new_ltEs(vwx239, vwx241, cbe, cbf) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4 *new_compare21(vwx225, vwx226, vwx227, vwx228, vwx229, vwx230, False, bfb, bfc, app(app(ty_Either, bfd), bfe)) -> new_ltEs(vwx227, vwx230, bfd, bfe) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4 *new_compare23(vwx238, vwx239, vwx240, vwx241, False, cbd, app(app(ty_@2, ccd), cce)) -> new_ltEs3(vwx239, vwx241, ccd, cce) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4 *new_compare21(vwx225, vwx226, vwx227, vwx228, vwx229, vwx230, False, bfb, bfc, app(app(ty_@2, bgc), bgd)) -> new_ltEs3(vwx227, vwx230, bgc, bgd) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4 *new_compare23(vwx238, vwx239, vwx240, vwx241, False, app(app(ty_@2, cdf), cdg), cch) -> new_lt3(vwx238, vwx240, cdf, cdg) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4 *new_compare21(vwx225, vwx226, vwx227, vwx228, vwx229, vwx230, False, bfb, app(app(ty_@2, bhe), bhf), bgg) -> new_lt3(vwx226, vwx229, bhe, bhf) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4 *new_compare23(vwx238, vwx239, vwx240, vwx241, False, cbd, app(ty_Maybe, ccb)) -> new_ltEs1(vwx239, vwx241, ccb) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3 *new_compare21(vwx225, vwx226, vwx227, vwx228, vwx229, vwx230, False, bfb, bfc, app(ty_Maybe, bga)) -> new_ltEs1(vwx227, vwx230, bga) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3 *new_compare23(vwx238, vwx239, vwx240, vwx241, False, app(ty_[], cde), cch) -> new_lt2(vwx238, vwx240, cde) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3 *new_compare21(vwx225, vwx226, vwx227, vwx228, vwx229, vwx230, False, bfb, app(ty_[], bhd), bgg) -> new_lt2(vwx226, vwx229, bhd) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3 *new_compare23(vwx238, vwx239, vwx240, vwx241, False, app(app(app(ty_@3, cda), cdb), cdc), cch) -> new_lt0(vwx238, vwx240, cda, cdb, cdc) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4, 6 > 5 *new_compare21(vwx225, vwx226, vwx227, vwx228, vwx229, vwx230, False, bfb, app(app(app(ty_@3, bgh), bha), bhb), bgg) -> new_lt0(vwx226, vwx229, bgh, bha, bhb) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4, 9 > 5 *new_compare23(vwx238, vwx239, vwx240, vwx241, False, app(ty_Maybe, cdd), cch) -> new_lt1(vwx238, vwx240, cdd) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3 *new_compare21(vwx225, vwx226, vwx227, vwx228, vwx229, vwx230, False, bfb, app(ty_Maybe, bhc), bgg) -> new_lt1(vwx226, vwx229, bhc) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3 *new_compare23(vwx238, vwx239, vwx240, vwx241, False, app(app(ty_Either, ccf), ccg), cch) -> new_lt(vwx238, vwx240, ccf, ccg) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4 *new_compare21(vwx225, vwx226, vwx227, vwx228, vwx229, vwx230, False, app(ty_[], bhh), bfc, bgg) -> new_compare(vwx225, vwx228, bhh) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3 *new_compare21(vwx225, vwx226, vwx227, vwx228, vwx229, vwx230, False, app(app(app(ty_@3, beg), beh), bfa), bfc, bgg) -> new_compare3(vwx225, vwx228, beg, beh, bfa) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4, 8 > 5 *new_compare21(vwx225, vwx226, vwx227, vwx228, vwx229, vwx230, False, app(app(ty_@2, caa), cab), bfc, bgg) -> new_compare5(vwx225, vwx228, caa, cab) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4 *new_compare21(vwx225, vwx226, vwx227, vwx228, vwx229, vwx230, False, app(ty_Maybe, bhg), bfc, bgg) -> new_compare4(vwx225, vwx228, bhg) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3 *new_compare21(vwx225, vwx226, vwx227, vwx228, vwx229, vwx230, False, bfb, app(app(ty_Either, bge), bgf), bgg) -> new_lt(vwx226, vwx229, bge, bgf) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4 *new_ltEs0(@3(vwx1740, vwx1741, vwx1742), @3(vwx1750, vwx1751, vwx1752), app(app(ty_@2, bae), baf), fa, gf) -> new_lt3(vwx1740, vwx1750, bae, baf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs0(@3(vwx1740, vwx1741, vwx1742), @3(vwx1750, vwx1751, vwx1752), eh, app(app(ty_@2, hd), he), gf) -> new_lt3(vwx1741, vwx1751, hd, he) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs0(@3(vwx1740, vwx1741, vwx1742), @3(vwx1750, vwx1751, vwx1752), app(ty_[], bad), fa, gf) -> new_lt2(vwx1740, vwx1750, bad) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs0(@3(vwx1740, vwx1741, vwx1742), @3(vwx1750, vwx1751, vwx1752), eh, app(ty_[], hc), gf) -> new_lt2(vwx1741, vwx1751, hc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs0(@3(vwx1740, vwx1741, vwx1742), @3(vwx1750, vwx1751, vwx1752), app(app(app(ty_@3, hh), baa), bab), fa, gf) -> new_lt0(vwx1740, vwx1750, hh, baa, bab) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs0(@3(vwx1740, vwx1741, vwx1742), @3(vwx1750, vwx1751, vwx1752), eh, app(app(app(ty_@3, gg), gh), ha), gf) -> new_lt0(vwx1741, vwx1751, gg, gh, ha) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs0(@3(vwx1740, vwx1741, vwx1742), @3(vwx1750, vwx1751, vwx1752), eh, app(ty_Maybe, hb), gf) -> new_lt1(vwx1741, vwx1751, hb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs0(@3(vwx1740, vwx1741, vwx1742), @3(vwx1750, vwx1751, vwx1752), app(ty_Maybe, bac), fa, gf) -> new_lt1(vwx1740, vwx1750, bac) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs0(@3(vwx1740, vwx1741, vwx1742), @3(vwx1750, vwx1751, vwx1752), eh, app(app(ty_Either, gd), ge), gf) -> new_lt(vwx1741, vwx1751, gd, ge) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs0(@3(vwx1740, vwx1741, vwx1742), @3(vwx1750, vwx1751, vwx1752), app(app(ty_Either, hf), hg), fa, gf) -> new_lt(vwx1740, vwx1750, hf, hg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_compare2(Just(vwx1740), Just(vwx1750), False, app(ty_Maybe, app(ty_[], bbe)), ce) -> new_ltEs2(vwx1740, vwx1750, bbe) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(Left(vwx1740), Left(vwx1750), False, app(app(ty_Either, app(ty_[], dc)), cd), ce) -> new_ltEs2(vwx1740, vwx1750, dc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(vwx174, vwx175, False, app(ty_[], bbh), ce) -> new_ltEs2(vwx174, vwx175, bbh) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_compare2(Right(vwx1740), Right(vwx1750), False, app(app(ty_Either, df), app(ty_[], ee)), ce) -> new_ltEs2(vwx1740, vwx1750, ee) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(@2(vwx1740, vwx1741), @2(vwx1750, vwx1751), False, app(app(ty_@2, bca), app(ty_[], bch)), ce) -> new_ltEs2(vwx1741, vwx1751, bch) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(@3(vwx1740, vwx1741, vwx1742), @3(vwx1750, vwx1751, vwx1752), False, app(app(app(ty_@3, eh), fa), app(ty_[], ga)), ce) -> new_ltEs2(vwx1742, vwx1752, ga) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs(Left(vwx1740), Left(vwx1750), app(ty_[], dc), cd) -> new_ltEs2(vwx1740, vwx1750, dc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs(Right(vwx1740), Right(vwx1750), df, app(ty_[], ee)) -> new_ltEs2(vwx1740, vwx1750, ee) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(Just(vwx1740), Just(vwx1750), False, app(ty_Maybe, app(app(app(ty_@3, bba), bbb), bbc)), ce) -> new_ltEs0(vwx1740, vwx1750, bba, bbb, bbc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare2(Right(vwx1740), Right(vwx1750), False, app(app(ty_Either, df), app(app(app(ty_@3, ea), eb), ec)), ce) -> new_ltEs0(vwx1740, vwx1750, ea, eb, ec) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare2(Left(vwx1740), Left(vwx1750), False, app(app(ty_Either, app(app(app(ty_@3, cf), cg), da)), cd), ce) -> new_ltEs0(vwx1740, vwx1750, cf, cg, da) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare2(@3(vwx1740, vwx1741, vwx1742), @3(vwx1750, vwx1751, vwx1752), False, app(app(app(ty_@3, eh), fa), app(app(app(ty_@3, fd), ff), fg)), ce) -> new_ltEs0(vwx1742, vwx1752, fd, ff, fg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare2(@2(vwx1740, vwx1741), @2(vwx1750, vwx1751), False, app(app(ty_@2, bca), app(app(app(ty_@3, bcd), bce), bcf)), ce) -> new_ltEs0(vwx1741, vwx1751, bcd, bce, bcf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs(Left(vwx1740), Left(vwx1750), app(app(app(ty_@3, cf), cg), da), cd) -> new_ltEs0(vwx1740, vwx1750, cf, cg, da) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs(Right(vwx1740), Right(vwx1750), df, app(app(app(ty_@3, ea), eb), ec)) -> new_ltEs0(vwx1740, vwx1750, ea, eb, ec) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare2(@2(vwx1740, vwx1741), @2(vwx1750, vwx1751), False, app(app(ty_@2, bca), app(app(ty_Either, bcb), bcc)), ce) -> new_ltEs(vwx1741, vwx1751, bcb, bcc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(Right(vwx1740), Right(vwx1750), False, app(app(ty_Either, df), app(app(ty_Either, dg), dh)), ce) -> new_ltEs(vwx1740, vwx1750, dg, dh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(Just(vwx1740), Just(vwx1750), False, app(ty_Maybe, app(app(ty_Either, bag), bah)), ce) -> new_ltEs(vwx1740, vwx1750, bag, bah) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(Left(vwx1740), Left(vwx1750), False, app(app(ty_Either, app(app(ty_Either, cb), cc)), cd), ce) -> new_ltEs(vwx1740, vwx1750, cb, cc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(@3(vwx1740, vwx1741, vwx1742), @3(vwx1750, vwx1751, vwx1752), False, app(app(app(ty_@3, eh), fa), app(app(ty_Either, fb), fc)), ce) -> new_ltEs(vwx1742, vwx1752, fb, fc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(@3(vwx1740, vwx1741, vwx1742), @3(vwx1750, vwx1751, vwx1752), False, app(app(app(ty_@3, eh), fa), app(app(ty_@2, gb), gc)), ce) -> new_ltEs3(vwx1742, vwx1752, gb, gc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(Just(vwx1740), Just(vwx1750), False, app(ty_Maybe, app(app(ty_@2, bbf), bbg)), ce) -> new_ltEs3(vwx1740, vwx1750, bbf, bbg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(Left(vwx1740), Left(vwx1750), False, app(app(ty_Either, app(app(ty_@2, dd), de)), cd), ce) -> new_ltEs3(vwx1740, vwx1750, dd, de) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(@2(vwx1740, vwx1741), @2(vwx1750, vwx1751), False, app(app(ty_@2, bca), app(app(ty_@2, bda), bdb)), ce) -> new_ltEs3(vwx1741, vwx1751, bda, bdb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(Right(vwx1740), Right(vwx1750), False, app(app(ty_Either, df), app(app(ty_@2, ef), eg)), ce) -> new_ltEs3(vwx1740, vwx1750, ef, eg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(@3(vwx1740, vwx1741, vwx1742), @3(vwx1750, vwx1751, vwx1752), False, app(app(app(ty_@3, app(app(ty_@2, bae), baf)), fa), gf), ce) -> new_lt3(vwx1740, vwx1750, bae, baf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(@3(vwx1740, vwx1741, vwx1742), @3(vwx1750, vwx1751, vwx1752), False, app(app(app(ty_@3, eh), app(app(ty_@2, hd), he)), gf), ce) -> new_lt3(vwx1741, vwx1751, hd, he) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(@2(vwx1740, vwx1741), @2(vwx1750, vwx1751), False, app(app(ty_@2, app(app(ty_@2, bec), bed)), bde), ce) -> new_lt3(vwx1740, vwx1750, bec, bed) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(@3(vwx1740, vwx1741, vwx1742), @3(vwx1750, vwx1751, vwx1752), False, app(app(app(ty_@3, eh), fa), app(ty_Maybe, fh)), ce) -> new_ltEs1(vwx1742, vwx1752, fh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(Right(vwx1740), Right(vwx1750), False, app(app(ty_Either, df), app(ty_Maybe, ed)), ce) -> new_ltEs1(vwx1740, vwx1750, ed) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(Left(vwx1740), Left(vwx1750), False, app(app(ty_Either, app(ty_Maybe, db)), cd), ce) -> new_ltEs1(vwx1740, vwx1750, db) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(Just(vwx1740), Just(vwx1750), False, app(ty_Maybe, app(ty_Maybe, bbd)), ce) -> new_ltEs1(vwx1740, vwx1750, bbd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(@2(vwx1740, vwx1741), @2(vwx1750, vwx1751), False, app(app(ty_@2, bca), app(ty_Maybe, bcg)), ce) -> new_ltEs1(vwx1741, vwx1751, bcg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(@2(vwx1740, vwx1741), @2(vwx1750, vwx1751), False, app(app(ty_@2, app(ty_[], beb)), bde), ce) -> new_lt2(vwx1740, vwx1750, beb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(@3(vwx1740, vwx1741, vwx1742), @3(vwx1750, vwx1751, vwx1752), False, app(app(app(ty_@3, app(ty_[], bad)), fa), gf), ce) -> new_lt2(vwx1740, vwx1750, bad) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(@3(vwx1740, vwx1741, vwx1742), @3(vwx1750, vwx1751, vwx1752), False, app(app(app(ty_@3, eh), app(ty_[], hc)), gf), ce) -> new_lt2(vwx1741, vwx1751, hc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(@3(vwx1740, vwx1741, vwx1742), @3(vwx1750, vwx1751, vwx1752), False, app(app(app(ty_@3, eh), app(app(app(ty_@3, gg), gh), ha)), gf), ce) -> new_lt0(vwx1741, vwx1751, gg, gh, ha) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare2(@2(vwx1740, vwx1741), @2(vwx1750, vwx1751), False, app(app(ty_@2, app(app(app(ty_@3, bdf), bdg), bdh)), bde), ce) -> new_lt0(vwx1740, vwx1750, bdf, bdg, bdh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare2(@3(vwx1740, vwx1741, vwx1742), @3(vwx1750, vwx1751, vwx1752), False, app(app(app(ty_@3, app(app(app(ty_@3, hh), baa), bab)), fa), gf), ce) -> new_lt0(vwx1740, vwx1750, hh, baa, bab) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare2(@3(vwx1740, vwx1741, vwx1742), @3(vwx1750, vwx1751, vwx1752), False, app(app(app(ty_@3, app(ty_Maybe, bac)), fa), gf), ce) -> new_lt1(vwx1740, vwx1750, bac) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(@2(vwx1740, vwx1741), @2(vwx1750, vwx1751), False, app(app(ty_@2, app(ty_Maybe, bea)), bde), ce) -> new_lt1(vwx1740, vwx1750, bea) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(@3(vwx1740, vwx1741, vwx1742), @3(vwx1750, vwx1751, vwx1752), False, app(app(app(ty_@3, eh), app(ty_Maybe, hb)), gf), ce) -> new_lt1(vwx1741, vwx1751, hb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(@3(vwx1740, vwx1741, vwx1742), @3(vwx1750, vwx1751, vwx1752), False, app(app(app(ty_@3, eh), app(app(ty_Either, gd), ge)), gf), ce) -> new_lt(vwx1741, vwx1751, gd, ge) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(@2(vwx1740, vwx1741), @2(vwx1750, vwx1751), False, app(app(ty_@2, app(app(ty_Either, bdc), bdd)), bde), ce) -> new_lt(vwx1740, vwx1750, bdc, bdd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(@3(vwx1740, vwx1741, vwx1742), @3(vwx1750, vwx1751, vwx1752), False, app(app(app(ty_@3, app(app(ty_Either, hf), hg)), fa), gf), ce) -> new_lt(vwx1740, vwx1750, hf, hg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs(Left(vwx1740), Left(vwx1750), app(app(ty_Either, cb), cc), cd) -> new_ltEs(vwx1740, vwx1750, cb, cc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs(Right(vwx1740), Right(vwx1750), df, app(app(ty_Either, dg), dh)) -> new_ltEs(vwx1740, vwx1750, dg, dh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs(Left(vwx1740), Left(vwx1750), app(app(ty_@2, dd), de), cd) -> new_ltEs3(vwx1740, vwx1750, dd, de) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs(Right(vwx1740), Right(vwx1750), df, app(app(ty_@2, ef), eg)) -> new_ltEs3(vwx1740, vwx1750, ef, eg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs(Right(vwx1740), Right(vwx1750), df, app(ty_Maybe, ed)) -> new_ltEs1(vwx1740, vwx1750, ed) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs(Left(vwx1740), Left(vwx1750), app(ty_Maybe, db), cd) -> new_ltEs1(vwx1740, vwx1750, db) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 ---------------------------------------- (20) YES ---------------------------------------- (21) Obligation: Q DP problem: The TRS P consists of the following rules: new_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(Left(vwx3000), Left(vwx4000), app(app(ty_Either, gg), gh), ge) -> new_esEs1(vwx3000, vwx4000, gg, gh) new_esEs(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), cc, app(ty_[], cg), bd) -> new_esEs0(vwx3001, vwx4001, cg) new_esEs1(Right(vwx3000), Right(vwx4000), hd, app(ty_[], hh)) -> new_esEs0(vwx3000, vwx4000, hh) new_esEs3(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), app(app(ty_Either, bcd), bce), bcb) -> new_esEs1(vwx3000, vwx4000, bcd, bce) new_esEs(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), cc, bc, app(ty_[], ea)) -> new_esEs0(vwx3002, vwx4002, ea) new_esEs3(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), bda, app(app(ty_Either, bdf), bdg)) -> new_esEs1(vwx3001, vwx4001, bdf, bdg) new_esEs(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), cc, bc, app(app(ty_@2, ee), ef)) -> new_esEs3(vwx3002, vwx4002, ee, ef) new_esEs(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), app(app(ty_@2, ca), cb), bc, bd) -> new_esEs3(vwx3000, vwx4000, ca, cb) new_esEs(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), cc, bc, app(app(app(ty_@3, df), dg), dh)) -> new_esEs(vwx3002, vwx4002, df, dg, dh) new_esEs2(Just(vwx3000), Just(vwx4000), app(ty_[], bba)) -> new_esEs0(vwx3000, vwx4000, bba) new_esEs(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), app(ty_Maybe, bh), bc, bd) -> new_esEs2(vwx3000, vwx4000, bh) new_esEs1(Right(vwx3000), Right(vwx4000), hd, app(app(ty_@2, bad), bae)) -> new_esEs3(vwx3000, vwx4000, bad, bae) new_esEs3(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), bda, app(ty_Maybe, bdh)) -> new_esEs2(vwx3001, vwx4001, bdh) new_esEs0(:(vwx3000, vwx3001), :(vwx4000, vwx4001), app(app(ty_@2, fg), fh)) -> new_esEs3(vwx3000, vwx4000, fg, fh) new_esEs2(Just(vwx3000), Just(vwx4000), app(ty_Maybe, bbd)) -> new_esEs2(vwx3000, vwx4000, bbd) new_esEs1(Left(vwx3000), Left(vwx4000), app(ty_[], gf), ge) -> new_esEs0(vwx3000, vwx4000, gf) new_esEs0(:(vwx3000, vwx3001), :(vwx4000, vwx4001), app(app(ty_Either, fc), fd)) -> new_esEs1(vwx3000, vwx4000, fc, fd) new_esEs3(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), app(ty_Maybe, bcf), bcb) -> new_esEs2(vwx3000, vwx4000, bcf) new_esEs0(:(vwx3000, vwx3001), :(vwx4000, vwx4001), app(ty_[], fb)) -> new_esEs0(vwx3000, vwx4000, fb) new_esEs3(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), bda, app(app(app(ty_@3, bdb), bdc), bdd)) -> new_esEs(vwx3001, vwx4001, bdb, bdc, bdd) new_esEs3(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), bda, app(app(ty_@2, bea), beb)) -> new_esEs3(vwx3001, vwx4001, bea, beb) new_esEs(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), cc, app(app(app(ty_@3, cd), ce), cf), bd) -> new_esEs(vwx3001, vwx4001, cd, ce, cf) new_esEs1(Left(vwx3000), Left(vwx4000), app(app(app(ty_@3, gb), gc), gd), ge) -> new_esEs(vwx3000, vwx4000, gb, gc, gd) new_esEs0(:(vwx3000, vwx3001), :(vwx4000, vwx4001), ga) -> new_esEs0(vwx3001, vwx4001, ga) new_esEs(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), cc, app(app(ty_Either, da), db), bd) -> new_esEs1(vwx3001, vwx4001, da, db) new_esEs(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), cc, bc, app(app(ty_Either, eb), ec)) -> new_esEs1(vwx3002, vwx4002, eb, ec) new_esEs1(Left(vwx3000), Left(vwx4000), app(ty_Maybe, ha), ge) -> new_esEs2(vwx3000, vwx4000, ha) new_esEs3(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), app(ty_[], bcc), bcb) -> new_esEs0(vwx3000, vwx4000, bcc) new_esEs(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), app(app(ty_Either, bf), bg), bc, bd) -> new_esEs1(vwx3000, vwx4000, bf, bg) new_esEs2(Just(vwx3000), Just(vwx4000), app(app(ty_Either, bbb), bbc)) -> new_esEs1(vwx3000, vwx4000, bbb, bbc) new_esEs0(:(vwx3000, vwx3001), :(vwx4000, vwx4001), app(ty_Maybe, ff)) -> new_esEs2(vwx3000, vwx4000, ff) new_esEs3(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), bda, app(ty_[], bde)) -> new_esEs0(vwx3001, vwx4001, bde) new_esEs3(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), app(app(app(ty_@3, bbg), bbh), bca), bcb) -> new_esEs(vwx3000, vwx4000, bbg, bbh, bca) new_esEs3(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), app(app(ty_@2, bcg), bch), bcb) -> new_esEs3(vwx3000, vwx4000, bcg, bch) new_esEs(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), app(app(app(ty_@3, h), ba), bb), bc, bd) -> new_esEs(vwx3000, vwx4000, h, ba, bb) new_esEs(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), cc, app(ty_Maybe, dc), bd) -> new_esEs2(vwx3001, vwx4001, dc) new_esEs1(Right(vwx3000), Right(vwx4000), hd, app(app(app(ty_@3, he), hf), hg)) -> new_esEs(vwx3000, vwx4000, he, hf, hg) new_esEs0(:(vwx3000, vwx3001), :(vwx4000, vwx4001), app(app(app(ty_@3, eg), eh), fa)) -> new_esEs(vwx3000, vwx4000, eg, eh, fa) new_esEs2(Just(vwx3000), Just(vwx4000), app(app(ty_@2, bbe), bbf)) -> new_esEs3(vwx3000, vwx4000, bbe, bbf) new_esEs(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), cc, bc, app(ty_Maybe, ed)) -> new_esEs2(vwx3002, vwx4002, ed) new_esEs1(Right(vwx3000), Right(vwx4000), hd, app(ty_Maybe, bac)) -> new_esEs2(vwx3000, vwx4000, bac) new_esEs(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), cc, app(app(ty_@2, dd), de), bd) -> new_esEs3(vwx3001, vwx4001, dd, de) new_esEs1(Right(vwx3000), Right(vwx4000), hd, app(app(ty_Either, baa), bab)) -> new_esEs1(vwx3000, vwx4000, baa, bab) new_esEs1(Left(vwx3000), Left(vwx4000), app(app(ty_@2, hb), hc), ge) -> new_esEs3(vwx3000, vwx4000, hb, hc) new_esEs2(Just(vwx3000), Just(vwx4000), app(app(app(ty_@3, baf), bag), bah)) -> new_esEs(vwx3000, vwx4000, baf, bag, bah) new_esEs(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), app(ty_[], be), bc, bd) -> new_esEs0(vwx3000, vwx4000, be) 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_esEs0(:(vwx3000, vwx3001), :(vwx4000, vwx4001), app(app(ty_Either, fc), fd)) -> new_esEs1(vwx3000, vwx4000, fc, fd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(:(vwx3000, vwx3001), :(vwx4000, vwx4001), app(app(app(ty_@3, eg), eh), fa)) -> new_esEs(vwx3000, vwx4000, eg, eh, fa) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs0(:(vwx3000, vwx3001), :(vwx4000, vwx4001), app(app(ty_@2, fg), fh)) -> new_esEs3(vwx3000, vwx4000, fg, fh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(Just(vwx3000), Just(vwx4000), app(app(ty_Either, bbb), bbc)) -> new_esEs1(vwx3000, vwx4000, bbb, bbc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(Just(vwx3000), Just(vwx4000), app(app(app(ty_@3, baf), bag), bah)) -> new_esEs(vwx3000, vwx4000, baf, bag, bah) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs2(Just(vwx3000), Just(vwx4000), app(app(ty_@2, bbe), bbf)) -> new_esEs3(vwx3000, vwx4000, bbe, bbf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(:(vwx3000, vwx3001), :(vwx4000, vwx4001), app(ty_Maybe, ff)) -> new_esEs2(vwx3000, vwx4000, ff) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(Just(vwx3000), Just(vwx4000), app(ty_Maybe, bbd)) -> new_esEs2(vwx3000, vwx4000, bbd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(Just(vwx3000), Just(vwx4000), app(ty_[], bba)) -> new_esEs0(vwx3000, vwx4000, bba) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(Left(vwx3000), Left(vwx4000), app(app(ty_Either, gg), gh), ge) -> new_esEs1(vwx3000, vwx4000, gg, gh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(Right(vwx3000), Right(vwx4000), hd, app(app(ty_Either, baa), bab)) -> new_esEs1(vwx3000, vwx4000, baa, bab) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs1(Left(vwx3000), Left(vwx4000), app(app(app(ty_@3, gb), gc), gd), ge) -> new_esEs(vwx3000, vwx4000, gb, gc, gd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs1(Right(vwx3000), Right(vwx4000), hd, app(app(app(ty_@3, he), hf), hg)) -> new_esEs(vwx3000, vwx4000, he, hf, hg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs1(Right(vwx3000), Right(vwx4000), hd, app(app(ty_@2, bad), bae)) -> new_esEs3(vwx3000, vwx4000, bad, bae) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs1(Left(vwx3000), Left(vwx4000), app(app(ty_@2, hb), hc), ge) -> new_esEs3(vwx3000, vwx4000, hb, hc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(Left(vwx3000), Left(vwx4000), app(ty_Maybe, ha), ge) -> new_esEs2(vwx3000, vwx4000, ha) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(Right(vwx3000), Right(vwx4000), hd, app(ty_Maybe, bac)) -> new_esEs2(vwx3000, vwx4000, bac) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs1(Right(vwx3000), Right(vwx4000), hd, app(ty_[], hh)) -> new_esEs0(vwx3000, vwx4000, hh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs1(Left(vwx3000), Left(vwx4000), app(ty_[], gf), ge) -> new_esEs0(vwx3000, vwx4000, gf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), app(app(ty_Either, bcd), bce), bcb) -> new_esEs1(vwx3000, vwx4000, bcd, bce) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), bda, app(app(ty_Either, bdf), bdg)) -> new_esEs1(vwx3001, vwx4001, bdf, bdg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), cc, app(app(ty_Either, da), db), bd) -> new_esEs1(vwx3001, vwx4001, da, db) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), cc, bc, app(app(ty_Either, eb), ec)) -> new_esEs1(vwx3002, vwx4002, eb, ec) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), app(app(ty_Either, bf), bg), bc, bd) -> new_esEs1(vwx3000, vwx4000, bf, bg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(:(vwx3000, vwx3001), :(vwx4000, vwx4001), app(ty_[], fb)) -> new_esEs0(vwx3000, vwx4000, fb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(:(vwx3000, vwx3001), :(vwx4000, vwx4001), ga) -> new_esEs0(vwx3001, vwx4001, ga) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_esEs3(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), bda, app(app(app(ty_@3, bdb), bdc), bdd)) -> new_esEs(vwx3001, vwx4001, bdb, bdc, bdd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs3(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), app(app(app(ty_@3, bbg), bbh), bca), bcb) -> new_esEs(vwx3000, vwx4000, bbg, bbh, bca) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), cc, bc, app(app(app(ty_@3, df), dg), dh)) -> new_esEs(vwx3002, vwx4002, df, dg, dh) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_esEs(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), cc, app(app(app(ty_@3, cd), ce), cf), bd) -> new_esEs(vwx3001, vwx4001, cd, ce, cf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), app(app(app(ty_@3, h), ba), bb), bc, bd) -> new_esEs(vwx3000, vwx4000, h, ba, bb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs3(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), bda, app(app(ty_@2, bea), beb)) -> new_esEs3(vwx3001, vwx4001, bea, beb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs3(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), app(app(ty_@2, bcg), bch), bcb) -> new_esEs3(vwx3000, vwx4000, bcg, bch) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), cc, bc, app(app(ty_@2, ee), ef)) -> new_esEs3(vwx3002, vwx4002, ee, ef) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), app(app(ty_@2, ca), cb), bc, bd) -> new_esEs3(vwx3000, vwx4000, ca, cb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), cc, app(app(ty_@2, dd), de), bd) -> new_esEs3(vwx3001, vwx4001, dd, de) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs3(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), bda, app(ty_Maybe, bdh)) -> new_esEs2(vwx3001, vwx4001, bdh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs3(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), app(ty_Maybe, bcf), bcb) -> new_esEs2(vwx3000, vwx4000, bcf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), app(ty_[], bcc), bcb) -> new_esEs0(vwx3000, vwx4000, bcc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), bda, app(ty_[], bde)) -> new_esEs0(vwx3001, vwx4001, bde) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), app(ty_Maybe, bh), bc, bd) -> new_esEs2(vwx3000, vwx4000, bh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), cc, app(ty_Maybe, dc), bd) -> new_esEs2(vwx3001, vwx4001, dc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), cc, bc, app(ty_Maybe, ed)) -> new_esEs2(vwx3002, vwx4002, ed) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), cc, app(ty_[], cg), bd) -> new_esEs0(vwx3001, vwx4001, cg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), cc, bc, app(ty_[], ea)) -> new_esEs0(vwx3002, vwx4002, ea) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), app(ty_[], be), bc, bd) -> new_esEs0(vwx3000, vwx4000, be) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 ---------------------------------------- (26) YES ---------------------------------------- (27) Obligation: Q DP problem: The TRS P consists of the following rules: new_primEqNat(Succ(vwx30000), Succ(vwx40000)) -> new_primEqNat(vwx30000, vwx40000) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (28) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_primEqNat(Succ(vwx30000), Succ(vwx40000)) -> new_primEqNat(vwx30000, vwx40000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (29) YES ---------------------------------------- (30) Obligation: Q DP problem: The TRS P consists of the following rules: new_primPlusNat(Succ(vwx31700), Succ(vwx401000)) -> new_primPlusNat(vwx31700, 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(vwx31700), Succ(vwx401000)) -> new_primPlusNat(vwx31700, vwx401000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (32) YES