diff --git a/src/Mod/Fem/femsolver/calculix/write_constraint_force.py b/src/Mod/Fem/femsolver/calculix/write_constraint_force.py index a5a08b7945..785fbade16 100644 --- a/src/Mod/Fem/femsolver/calculix/write_constraint_force.py +++ b/src/Mod/Fem/femsolver/calculix/write_constraint_force.py @@ -56,13 +56,13 @@ def write_meshdata_constraint(f, femobj, force_obj, ccxwriter): node_load = ref_shape[1][n] # the loads in ref_shape[1][n] are without unit if abs(direction_vec.x) > dir_zero_tol: - v1 = "{}".format(direction_vec.x * node_load) + v1 = "{:.13G}".format((direction_vec.x * node_load).Value) f.write("{},1,{}\n".format(n, v1)) if abs(direction_vec.y) > dir_zero_tol: - v2 = "{}".format(direction_vec.y * node_load) + v2 = "{:.13G}".format((direction_vec.y * node_load).Value) f.write("{},2,{}\n".format(n, v2)) if abs(direction_vec.z) > dir_zero_tol: - v3 = "{}".format(direction_vec.z * node_load) + v3 = "{:.13G}".format((direction_vec.z * node_load).Value) f.write("{},3,{}\n".format(n, v3)) f.write("\n") f.write("\n") diff --git a/src/Mod/Fem/femtest/data/calculix/box_static.inp b/src/Mod/Fem/femtest/data/calculix/box_static.inp index def1f0b60d..b3380bd960 100644 --- a/src/Mod/Fem/femtest/data/calculix/box_static.inp +++ b/src/Mod/Fem/femtest/data/calculix/box_static.inp @@ -507,47 +507,47 @@ FemConstraintFixed,3 *CLOAD ** FemConstraintForce ** node loads on shape: Box:Face6 -2,3,-0.0 -4,3,-0.0 -6,3,-0.0 -8,3,-0.0 -18,3,-0.0 -19,3,-833.3333333333335 -20,3,-833.3333333333335 -30,3,-0.0 -31,3,-833.3333333333335 -32,3,-833.3333333333335 -36,3,-0.0 -37,3,-833.3333333333335 -38,3,-833.3333333333335 -42,3,-0.0 -43,3,-833.3333333333335 -44,3,-833.3333333333335 -170,3,-0.0 -171,3,-0.0 -172,3,-0.0 -173,3,-0.0 -174,3,-0.0 -175,3,-1666.666666666667 -176,3,-1666.666666666667 -177,3,-1666.666666666667 -178,3,-1666.666666666667 -179,3,-1666.666666666667 -180,3,-1666.666666666667 -181,3,-1666.666666666667 -182,3,-1666.666666666667 -183,3,-1666.666666666667 -184,3,-1666.666666666667 -185,3,-1666.666666666667 -186,3,-1666.666666666667 -187,3,-1666.666666666667 -188,3,-1666.666666666667 -189,3,-1666.666666666667 -190,3,-1666.666666666667 -191,3,-1666.666666666667 -192,3,-1666.666666666667 -193,3,-1666.666666666667 -194,3,-1666.666666666667 +2,3,-0 +4,3,-0 +6,3,-0 +8,3,-0 +18,3,-0 +19,3,-833.3333333333 +20,3,-833.3333333333 +30,3,-0 +31,3,-833.3333333333 +32,3,-833.3333333333 +36,3,-0 +37,3,-833.3333333333 +38,3,-833.3333333333 +42,3,-0 +43,3,-833.3333333333 +44,3,-833.3333333333 +170,3,-0 +171,3,-0 +172,3,-0 +173,3,-0 +174,3,-0 +175,3,-1666.666666667 +176,3,-1666.666666667 +177,3,-1666.666666667 +178,3,-1666.666666667 +179,3,-1666.666666667 +180,3,-1666.666666667 +181,3,-1666.666666667 +182,3,-1666.666666667 +183,3,-1666.666666667 +184,3,-1666.666666667 +185,3,-1666.666666667 +186,3,-1666.666666667 +187,3,-1666.666666667 +188,3,-1666.666666667 +189,3,-1666.666666667 +190,3,-1666.666666667 +191,3,-1666.666666667 +192,3,-1666.666666667 +193,3,-1666.666666667 +194,3,-1666.666666667 diff --git a/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_beam_circle.inp b/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_beam_circle.inp index 11d57e0c75..8a491a68be 100644 --- a/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_beam_circle.inp +++ b/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_beam_circle.inp @@ -83,7 +83,7 @@ ConstraintFixed,6 *CLOAD ** ConstraintForce ** node load on shape: CantileverLine:Vertex2 -2,3,-9000000.0 +2,3,-9000000 diff --git a/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_beam_pipe.inp b/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_beam_pipe.inp index 9d20efa051..3e6f83f32b 100644 --- a/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_beam_pipe.inp +++ b/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_beam_pipe.inp @@ -83,7 +83,7 @@ ConstraintFixed,6 *CLOAD ** ConstraintForce ** node load on shape: CantileverLine:Vertex2 -2,3,-9000000.0 +2,3,-9000000 diff --git a/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_beam_rect.inp b/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_beam_rect.inp index d79d5823f5..c7232b1c9c 100644 --- a/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_beam_rect.inp +++ b/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_beam_rect.inp @@ -83,7 +83,7 @@ ConstraintFixed,6 *CLOAD ** ConstraintForce ** node load on shape: CantileverLine:Vertex2 -2,3,-9000000.0 +2,3,-9000000 diff --git a/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_ele_hexa20.inp b/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_ele_hexa20.inp index ef637867ff..3060c64375 100644 --- a/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_ele_hexa20.inp +++ b/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_ele_hexa20.inp @@ -403,27 +403,27 @@ ConstraintFixed,3 *CLOAD ** ConstraintForce ** node loads on shape: Box:Face2 -5,3,187500.00000000003 -6,3,187500.00000000003 -7,3,187500.00000000003 -8,3,187500.00000000003 -21,3,-750000.0000000001 -22,3,375000.00000000006 -23,3,-750000.0000000001 -24,3,-750000.0000000001 -25,3,375000.00000000006 -26,3,-750000.0000000001 -27,3,-750000.0000000001 -28,3,375000.00000000006 -29,3,-750000.0000000001 -30,3,-750000.0000000001 -31,3,375000.00000000006 -32,3,-750000.0000000001 -98,3,-1500000.0000000002 -99,3,-1500000.0000000002 -100,3,750000.0000000001 -101,3,-1500000.0000000002 -102,3,-1500000.0000000002 +5,3,187500 +6,3,187500 +7,3,187500 +8,3,187500 +21,3,-750000 +22,3,375000 +23,3,-750000 +24,3,-750000 +25,3,375000 +26,3,-750000 +27,3,-750000 +28,3,375000 +29,3,-750000 +30,3,-750000 +31,3,375000 +32,3,-750000 +98,3,-1500000 +99,3,-1500000 +100,3,750000 +101,3,-1500000 +102,3,-1500000 diff --git a/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_ele_quad4.inp b/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_ele_quad4.inp index 94ae47e60a..4b9576c2bd 100644 --- a/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_ele_quad4.inp +++ b/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_ele_quad4.inp @@ -107,9 +107,9 @@ ConstraintFixed,6 *CLOAD ** ConstraintForce ** node loads on shape: CanileverPlate:Edge3 -3,3,-2250000.0 -4,3,-2250000.0 -13,3,-4500000.0 +3,3,-2250000 +4,3,-2250000 +13,3,-4500000 diff --git a/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_ele_quad8.inp b/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_ele_quad8.inp index 0c3b919a96..111fdf49b7 100644 --- a/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_ele_quad8.inp +++ b/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_ele_quad8.inp @@ -95,11 +95,11 @@ ConstraintFixed,6 *CLOAD ** ConstraintForce ** node loads on shape: CanileverPlate:Edge3 -3,3,-750000.0 -4,3,-750000.0 -11,3,-1500000.0 -12,3,-3000000.0 -13,3,-3000000.0 +3,3,-750000 +4,3,-750000 +11,3,-1500000 +12,3,-3000000 +13,3,-3000000 diff --git a/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_ele_seg2.inp b/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_ele_seg2.inp index f25194418f..48ef5ce230 100644 --- a/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_ele_seg2.inp +++ b/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_ele_seg2.inp @@ -225,7 +225,7 @@ ConstraintFixed,6 *CLOAD ** ConstraintForce ** node load on shape: CantileverLine:Vertex2 -2,3,-9000000.0 +2,3,-9000000 diff --git a/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_ele_seg3.inp b/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_ele_seg3.inp index fcba44e656..20c0708829 100644 --- a/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_ele_seg3.inp +++ b/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_ele_seg3.inp @@ -83,7 +83,7 @@ ConstraintFixed,6 *CLOAD ** ConstraintForce ** node load on shape: CantileverLine:Vertex2 -2,3,-9000000.0 +2,3,-9000000 diff --git a/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_ele_tria3.inp b/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_ele_tria3.inp index b334f568a7..7c062296e5 100644 --- a/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_ele_tria3.inp +++ b/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_ele_tria3.inp @@ -1583,14 +1583,14 @@ ConstraintFixed,6 *CLOAD ** ConstraintForce ** node loads on shape: CanileverPlate:Edge3 -3,3,-642857.1428571417 -4,3,-642857.1428571455 -64,3,-1285714.2857142843 -65,3,-1285714.285714283 -66,3,-1285714.28571428 -67,3,-1285714.2857142847 -68,3,-1285714.28571429 -69,3,-1285714.2857142906 +3,3,-642857.1428571 +4,3,-642857.1428571 +64,3,-1285714.285714 +65,3,-1285714.285714 +66,3,-1285714.285714 +67,3,-1285714.285714 +68,3,-1285714.285714 +69,3,-1285714.285714 diff --git a/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_ele_tria6.inp b/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_ele_tria6.inp index 13f7bad966..5c0e12187f 100644 --- a/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_ele_tria6.inp +++ b/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_ele_tria6.inp @@ -313,11 +313,11 @@ ConstraintFixed,6 *CLOAD ** ConstraintForce ** node loads on shape: CanileverPlate:Edge3 -3,3,-750000.0 -4,3,-750000.0 -39,3,-1500000.0 -40,3,-3000000.0 -41,3,-3000000.0 +3,3,-750000 +4,3,-750000 +39,3,-1500000 +40,3,-3000000 +41,3,-3000000 diff --git a/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_faceload.inp b/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_faceload.inp index a6b53a697e..3a6ab24119 100644 --- a/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_faceload.inp +++ b/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_faceload.inp @@ -377,19 +377,19 @@ ConstraintFixed,3 *CLOAD ** ConstraintForce ** node loads on shape: Box:Face2 -1,3,-0.0 -2,3,-0.0 -3,3,-0.0 -4,3,-0.0 -49,3,-0.0 -64,3,-750000.0000000001 -88,3,-750000.0000000001 -100,3,-750000.0000000001 -102,3,-750000.0000000001 -188,3,-1500000.0000000002 -189,3,-1500000.0000000002 -190,3,-1500000.0000000002 -191,3,-1500000.0000000002 +1,3,-0 +2,3,-0 +3,3,-0 +4,3,-0 +49,3,-0 +64,3,-750000 +88,3,-750000 +100,3,-750000 +102,3,-750000 +188,3,-1500000 +189,3,-1500000 +190,3,-1500000 +191,3,-1500000 diff --git a/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_nodeload.inp b/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_nodeload.inp index 085125f7ff..107253f1d5 100644 --- a/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_nodeload.inp +++ b/src/Mod/Fem/femtest/data/calculix/ccx_cantilever_nodeload.inp @@ -377,16 +377,16 @@ ConstraintFixed,3 *CLOAD ** ConstraintForce ** node load on shape: Box:Vertex5 -4,3,-2250000.0 +4,3,-2250000 ** node load on shape: Box:Vertex6 -3,3,-2250000.0 +3,3,-2250000 ** node load on shape: Box:Vertex7 -2,3,-2250000.0 +2,3,-2250000 ** node load on shape: Box:Vertex8 -1,3,-2250000.0 +1,3,-2250000 diff --git a/src/Mod/Fem/femtest/data/calculix/constraint_contact_shell_shell.inp b/src/Mod/Fem/femtest/data/calculix/constraint_contact_shell_shell.inp index 786f5b70c9..c39beee71f 100644 --- a/src/Mod/Fem/femtest/data/calculix/constraint_contact_shell_shell.inp +++ b/src/Mod/Fem/femtest/data/calculix/constraint_contact_shell_shell.inp @@ -38394,7 +38394,7 @@ ConstraintFixed,6 *CLOAD ** ConstraintForce ** node load on shape: Load_place_point:Vertex1 -5,2,-5000.0 +5,2,-5000 diff --git a/src/Mod/Fem/femtest/data/calculix/constraint_tie.inp b/src/Mod/Fem/femtest/data/calculix/constraint_tie.inp index cc2a7705c7..c00b1d5d73 100644 --- a/src/Mod/Fem/femtest/data/calculix/constraint_tie.inp +++ b/src/Mod/Fem/femtest/data/calculix/constraint_tie.inp @@ -18630,9 +18630,9 @@ ConstraintFixed,3 *CLOAD ** ConstraintForce ** node loads on shape: BooleanFragments:Edge2 -2,2,1666.6666666666667 -8,2,1666.6666666666667 -385,2,6666.666666666667 +2,2,1666.666666667 +8,2,1666.666666667 +385,2,6666.666666667 diff --git a/src/Mod/Fem/femtest/data/calculix/constraint_transform_torque.inp b/src/Mod/Fem/femtest/data/calculix/constraint_transform_torque.inp index f02a022f60..dd776985b2 100644 --- a/src/Mod/Fem/femtest/data/calculix/constraint_transform_torque.inp +++ b/src/Mod/Fem/femtest/data/calculix/constraint_transform_torque.inp @@ -10998,2152 +10998,2152 @@ ConstraintFixed,3 *CLOAD ** ConstraintForce ** node loads on shape: Cut:Face1 -3,2,-0.0 -4,2,-0.0 -58,2,-0.0 -59,2,-0.0 -60,2,-0.0 -61,2,-0.0 -62,2,-0.0 -63,2,-0.0 -64,2,-0.0 -65,2,-0.0 -66,2,-0.0 -67,2,-0.0 -68,2,-0.0 -69,2,-0.0 -70,2,-0.0 -71,2,-0.0 -72,2,-0.0 -73,2,-0.0 -74,2,-0.0 -75,2,-0.0 -76,2,-0.0 -77,2,-0.0 -78,2,-0.0 -79,2,-0.0 -80,2,-0.0 -81,2,-0.0 -82,2,-0.0 -83,2,-0.0 -84,2,-0.0 -85,2,-0.0 -86,2,-0.0 -87,2,-0.0 -88,2,-0.0 -89,2,-0.0 -90,2,-0.0 -91,2,-0.0 -92,2,-0.0 -93,2,-0.0 -94,2,-0.0 -95,2,-0.0 -96,2,-0.0 -97,2,-0.0 -98,2,-0.0 -99,2,-0.0 -100,2,-0.0 -101,2,-0.0 -102,2,-0.0 -103,2,-0.0 -104,2,-0.0 -105,2,-0.0 -106,2,-0.0 -107,2,-0.0 -108,2,-0.0 -109,2,-0.0 -110,2,-0.0 -111,2,-0.0 -112,2,-0.0 -113,2,-0.0 -114,2,-0.0 -115,2,-0.0 -116,2,-0.0 -500,2,-0.0 -501,2,-0.0 -502,2,-0.0 -503,2,-0.0 -504,2,-0.0 -505,2,-0.0 -506,2,-0.0 -507,2,-0.0 -508,2,-0.0 -509,2,-0.0 -510,2,-0.0 -511,2,-0.0 -512,2,-0.0 -513,2,-0.0 -514,2,-0.0 -515,2,-0.0 -516,2,-0.0 -517,2,-0.0 -518,2,-0.0 -519,2,-0.0 -520,2,-0.0 -521,2,-0.0 -522,2,-0.0 -523,2,-0.0 -524,2,-0.0 -525,2,-0.0 -526,2,-0.0 -527,2,-0.0 -528,2,-0.0 -529,2,-0.0 -530,2,-0.0 -531,2,-0.0 -532,2,-0.0 -533,2,-0.0 -534,2,-0.0 -535,2,-0.0 -536,2,-0.0 -537,2,-0.0 -538,2,-0.0 -539,2,-0.0 -540,2,-0.0 -541,2,-0.0 -542,2,-0.0 -543,2,-0.0 -544,2,-0.0 -545,2,-0.0 -546,2,-0.0 -547,2,-0.0 -548,2,-0.0 -549,2,-0.0 -550,2,-0.0 -551,2,-0.0 -552,2,-0.0 -553,2,-0.0 -554,2,-0.0 -555,2,-0.0 -556,2,-0.0 -557,2,-0.0 -558,2,-0.0 -559,2,-0.0 -560,2,-0.0 -561,2,-0.0 -562,2,-0.0 -563,2,-0.0 -564,2,-0.0 -565,2,-0.0 -566,2,-0.0 -567,2,-0.0 -568,2,-0.0 -569,2,-0.0 -570,2,-0.0 -571,2,-0.0 -572,2,-0.0 -573,2,-0.0 -574,2,-0.0 -575,2,-0.0 -576,2,-0.0 -577,2,-0.0 -578,2,-0.0 -579,2,-0.0 -580,2,-0.0 -581,2,-0.0 -582,2,-0.0 -583,2,-0.0 -584,2,-0.0 -585,2,-0.0 -586,2,-0.0 -587,2,-0.0 -588,2,-0.0 -589,2,-0.0 -590,2,-0.0 -591,2,-0.0 -592,2,-0.0 -593,2,-0.0 -594,2,-0.0 -595,2,-0.0 -596,2,-0.0 -597,2,-0.0 -598,2,-0.0 -599,2,-0.0 -600,2,-0.0 -601,2,-0.0 -602,2,-0.0 -603,2,-0.0 -604,2,-0.0 -605,2,-0.0 -606,2,-0.0 -607,2,-0.0 -608,2,-0.0 -609,2,-0.0 -610,2,-0.0 -611,2,-0.0 -612,2,-0.0 -613,2,-0.0 -614,2,-0.0 -615,2,-0.0 -616,2,-0.0 -617,2,-0.0 -618,2,-0.0 -619,2,-0.0 -620,2,-0.0 -621,2,-0.0 -622,2,-0.0 -623,2,-0.0 -624,2,-0.0 -625,2,-0.0 -626,2,-0.0 -627,2,-0.0 -628,2,-0.0 -629,2,-0.0 -630,2,-0.0 -631,2,-0.0 -632,2,-0.0 -633,2,-0.0 -634,2,-0.0 -635,2,-0.0 -636,2,-0.0 -637,2,-0.0 -638,2,-0.0 -639,2,-0.0 -640,2,-0.0 -641,2,-0.0 -642,2,-0.0 -643,2,-0.0 -644,2,-0.0 -645,2,-0.0 -646,2,-0.0 -647,2,-0.0 -648,2,-0.0 -649,2,-0.0 -650,2,-0.0 -651,2,-0.0 -652,2,-0.0 -653,2,-0.0 -654,2,-0.0 -655,2,-0.0 -656,2,-0.0 -657,2,-0.0 -658,2,-0.0 -659,2,-0.0 -660,2,-0.0 -661,2,-0.0 -662,2,-0.0 -663,2,-0.0 -664,2,-0.0 -665,2,-0.0 -666,2,-0.0 -667,2,-0.0 -668,2,-0.0 -669,2,-0.0 -670,2,-0.0 -671,2,-0.0 -672,2,-0.0 -673,2,-0.0 -674,2,-0.0 -675,2,-0.0 -676,2,-0.0 -677,2,-0.0 -678,2,-0.0 -679,2,-0.0 -680,2,-0.0 -681,2,-0.0 -682,2,-0.0 -683,2,-0.0 -684,2,-0.0 -685,2,-0.0 -686,2,-0.0 -687,2,-0.0 -688,2,-0.0 -689,2,-0.0 -690,2,-0.0 -691,2,-0.0 -692,2,-0.0 -693,2,-0.0 -694,2,-0.0 -695,2,-0.0 -696,2,-0.0 -697,2,-0.0 -698,2,-0.0 -699,2,-0.0 -700,2,-0.0 -701,2,-0.0 -702,2,-0.0 -703,2,-0.0 -704,2,-0.0 -705,2,-0.0 -706,2,-0.0 -707,2,-0.0 -708,2,-0.0 -709,2,-0.0 -710,2,-0.0 -711,2,-0.0 -712,2,-0.0 -713,2,-0.0 -714,2,-0.0 -715,2,-0.0 -716,2,-0.0 -717,2,-0.0 -718,2,-0.0 -719,2,-0.0 -720,2,-0.0 -721,2,-0.0 -722,2,-0.0 -723,2,-0.0 -724,2,-0.0 -725,2,-0.0 -726,2,-0.0 -727,2,-0.0 -728,2,-0.0 -729,2,-0.0 -730,2,-0.0 -731,2,-0.0 -732,2,-0.0 -733,2,-0.0 -734,2,-0.0 -735,2,-0.0 -736,2,-0.0 -737,2,-0.0 -738,2,-0.0 -739,2,-0.0 -740,2,-0.0 -741,2,-0.0 -742,2,-0.0 -743,2,-0.0 -744,2,-0.0 -745,2,-0.0 -746,2,-0.0 -747,2,-0.0 -748,2,-0.0 -749,2,-0.0 -750,2,-0.0 -751,2,-0.0 -752,2,-0.0 -753,2,-0.0 -754,2,-0.0 -755,2,-0.0 -756,2,-0.0 -757,2,-0.0 -758,2,-0.0 -759,2,-0.0 -760,2,-0.0 -761,2,-0.0 -762,2,-0.0 -763,2,-0.0 -764,2,-0.0 -765,2,-0.0 -766,2,-0.0 -767,2,-0.0 -768,2,-0.0 -769,2,-0.0 -770,2,-0.0 -771,2,-0.0 -772,2,-0.0 -773,2,-0.0 -774,2,-0.0 -775,2,-0.0 -776,2,-0.0 -777,2,-0.0 -778,2,-0.0 -779,2,-0.0 -780,2,-0.0 -781,2,-0.0 -782,2,-0.0 -783,2,-0.0 -784,2,-0.0 -785,2,-0.0 -786,2,-0.0 -787,2,-0.0 -788,2,-0.0 -789,2,-0.0 -790,2,-0.0 -791,2,-0.0 -792,2,-0.0 -793,2,-0.0 -794,2,-0.0 -795,2,-0.0 -796,2,-0.0 -797,2,-0.0 -798,2,-0.0 -799,2,-0.0 -800,2,-0.0 -801,2,-0.0 -802,2,-0.0 -803,2,-0.0 -804,2,-0.0 -805,2,-0.0 -806,2,-0.0 -807,2,-0.0 -808,2,-0.0 -809,2,-0.0 -810,2,-0.0 -811,2,-0.0 -812,2,-0.0 -813,2,-0.0 -814,2,-0.0 -815,2,-0.0 -816,2,-0.0 -817,2,-0.0 -818,2,-0.0 -819,2,-0.0 -820,2,-0.0 -821,2,-0.0 -822,2,-0.0 -823,2,-0.0 -824,2,-0.0 -825,2,-0.0 -826,2,-0.0 -827,2,-0.0 -828,2,-0.0 -829,2,-0.0 -830,2,-0.0 -831,2,-0.0 -832,2,-0.0 -833,2,-0.0 -834,2,-0.0 -835,2,-0.0 -836,2,-0.0 -837,2,-0.0 -838,2,-0.0 -839,2,-0.0 -840,2,-0.0 -841,2,-0.0 -842,2,-0.0 -843,2,-0.0 -844,2,-0.0 -845,2,-0.0 -846,2,-0.0 -847,2,-0.0 -848,2,-0.0 -849,2,-0.0 -850,2,-0.0 -851,2,-0.0 -852,2,-0.0 -853,2,-0.0 -854,2,-0.0 -855,2,-0.0 -856,2,-0.0 -857,2,-0.0 -858,2,-0.0 -859,2,-0.0 -860,2,-0.0 -861,2,-0.0 -862,2,-0.0 -863,2,-0.0 -864,2,-0.0 -865,2,-0.0 -866,2,-0.0 -867,2,-0.0 -868,2,-0.0 -869,2,-0.0 -870,2,-0.0 -871,2,-0.0 -872,2,-0.0 -873,2,-0.0 -874,2,-0.0 -875,2,-0.0 -876,2,-0.0 -877,2,-0.0 -878,2,-0.0 -879,2,-0.0 -880,2,-0.0 -881,2,-0.0 -882,2,-0.0 -883,2,-0.0 -884,2,-0.0 -885,2,-0.0 -886,2,-0.0 -887,2,-0.0 -888,2,-0.0 -889,2,-0.0 -890,2,-0.0 -891,2,-0.0 -892,2,-0.0 -893,2,-0.0 -894,2,-0.0 -895,2,-0.0 -896,2,-0.0 -897,2,-0.0 -898,2,-0.0 -899,2,-0.0 -900,2,-0.0 -901,2,-0.0 -902,2,-0.0 -903,2,-0.0 -904,2,-0.0 -905,2,-0.0 -906,2,-0.0 -907,2,-0.0 -908,2,-0.0 -909,2,-0.0 -910,2,-0.0 -911,2,-0.0 -912,2,-0.0 -913,2,-0.0 -914,2,-0.0 -915,2,-0.0 -916,2,-0.0 -917,2,-0.0 -918,2,-0.0 -919,2,-0.0 -920,2,-0.0 -921,2,-0.0 -922,2,-0.0 -923,2,-0.0 -924,2,-0.0 -925,2,-0.0 -926,2,-0.0 -927,2,-0.0 -928,2,-0.0 -929,2,-0.0 -930,2,-0.0 -931,2,-0.0 -932,2,-0.0 -933,2,-0.0 -934,2,-0.0 -935,2,-0.0 -936,2,-0.0 -937,2,-0.0 -938,2,-0.0 -939,2,-0.0 -940,2,-0.0 -941,2,-0.0 -942,2,-0.0 -943,2,-0.0 -944,2,-0.0 -945,2,-0.0 -946,2,-0.0 -947,2,-0.0 -948,2,-0.0 -949,2,-0.0 -950,2,-0.0 -951,2,-0.0 -952,2,-0.0 -953,2,-0.0 -954,2,-0.0 -955,2,-0.0 -956,2,-0.0 -957,2,-0.0 -958,2,-0.0 -959,2,-0.0 -960,2,-0.0 -961,2,-0.0 -962,2,-0.0 -963,2,-0.0 -964,2,-0.0 -965,2,-0.0 -966,2,-0.0 -967,2,-0.0 -968,2,-0.0 -969,2,-0.0 -970,2,-0.0 -971,2,-0.0 -972,2,-0.0 -973,2,-0.0 -974,2,-0.0 -975,2,-0.0 -976,2,-0.0 -977,2,-0.0 -978,2,-0.0 -979,2,-0.0 -980,2,-0.0 -981,2,-0.0 -982,2,-0.0 -983,2,-0.0 -1042,2,-0.7517613339181721 -1043,2,-0.7257686392359395 -1044,2,-0.7014178184104366 -1045,2,-0.7420304372135555 -1046,2,-0.819718511920942 -1047,2,-0.8059588763762412 -1048,2,-0.8241849097366634 -1049,2,-0.7701800720803801 -1050,2,-0.793093180361123 -1051,2,-0.819200457385329 -1052,2,-0.816743841499161 -1053,2,-0.8054680385894774 -1054,2,-0.7948075848318611 -1055,2,-0.8324682279742158 -1056,2,-0.8403916126499108 -1057,2,-0.8006565826130224 -1058,2,-0.8964480171605341 -1059,2,-0.9236312004587474 -1060,2,-0.7275043972278085 -1061,2,-0.7052732894066319 -1062,2,-0.72490872378519 -1063,2,-0.7727415445736111 -1064,2,-0.7463918268165238 -1065,2,-0.7780084651976014 -1066,2,-0.7491358634623602 -1067,2,-0.7496650389489617 -1068,2,-0.7693256094559306 -1069,2,-0.7808309998519095 -1070,2,-0.786725981137874 -1071,2,-0.7776149580991732 -1072,2,-0.8104100219383318 -1073,2,-0.8127319511240801 -1074,2,-0.7861634732817672 -1075,2,-0.5952328706878076 -1076,2,-1.6175308640971389 -1077,2,-1.219437294252488 -1078,2,-1.455014329859489 -1079,2,-1.5343781387694992 -1080,2,-1.4270016803744794 -1081,2,-1.4561907979227788 -1082,2,-1.51296767164994 -1083,2,-1.4052343696965843 -1084,2,-1.3922242066585964 -1085,2,-1.3037539986236262 -1086,2,-1.462108580673943 -1087,2,-1.5045042074716086 -1088,2,-1.3843130331262257 -1089,2,-1.4741210461891348 -1090,2,-1.460260238080817 -1091,2,-1.3684038963953107 -1092,2,-1.4101942479476117 -1093,2,-1.5605582785368939 -1094,2,-1.4560534987208815 -1095,2,-1.4159156220585551 -1096,2,-1.5348054276706309 -1097,2,-1.4826100050144482 -1098,2,-1.3824393071430383 -1099,2,-1.5438037640087292 -1100,2,-1.4192412454606198 -1101,2,-1.4069179902553577 -1102,2,-1.7845027967479723 -1103,2,-1.548607262193649 -2330,2,-1.4944580040764106 -2331,2,-1.5619053666243914 -2332,2,-1.8472156683847383 -2335,2,-1.4041748622548422 -2336,2,-1.7874834918165368 -2339,2,-1.521685679255092 -2340,2,-1.35220477874405 -2341,2,-1.3596857925623094 -2342,2,-1.4736345483579965 -2343,2,-1.173785315689464 -2406,2,-2.0234951306096502 -2407,2,-1.8273683273787111 -2408,2,-1.5004200120476343 -2409,2,-1.4781889042264578 -2410,2,-1.4319341898702262 -2411,2,-1.5101054273305032 -2412,2,-1.4515696242487843 -2413,2,-1.4890229088790734 -2414,2,-1.48227735557029 -2415,2,-1.5368557296674945 -2416,2,-1.5437263854532781 -2417,2,-1.5953369428159183 -2418,2,-1.5173766676961906 -2419,2,-1.4945826295990137 -2420,2,-1.593732412465303 -2421,2,-1.5261992679800913 -2422,2,-1.5422550398023056 -2423,2,-1.507005151596497 -2424,2,-1.5133824380670644 -2425,2,-1.5052046873872127 -2426,2,-1.5092395307163942 -2427,2,-1.5057338628738144 -2428,2,-1.5377019655434814 -2429,2,-1.5164367482128158 -2430,2,-1.5573625360504502 -2431,2,-1.5225361274422076 -2432,2,-1.6440638198607354 -2433,2,-1.5340415178381865 -2434,2,-1.5495736094169361 -2435,2,-1.563579096732081 -2436,2,-1.5554685907029004 -2437,2,-1.5661137225710817 -2438,2,-1.5898142251497258 -2439,2,-1.557002699532381 -2440,2,-1.614225644949478 -2441,2,-1.5804214949083693 -2442,2,-1.6470207087886368 -2443,2,-1.6207594686401197 -2444,2,-1.698277283653077 -2445,2,-1.6230813978258682 -2446,2,-1.5687980529675656 -2447,2,-1.6483120114763525 -2448,2,-1.5422295751252528 -2449,2,-1.3370597245937295 -2450,2,-1.6931651488107289 -2451,2,-1.1461291219997698 -2452,2,-1.2202089324227092 -2453,2,-1.225419782191977 -2454,2,-1.209825815875944 -2455,2,-1.976205423130376 -2456,2,-1.580870600414336 -2457,2,-1.814846296198629 -2458,2,-1.4853650864385484 -2459,2,-1.5714045903411726 -2460,2,-1.4335946912587476 -2461,2,-1.4785776590523163 -2462,2,-1.384258320328439 -2463,2,-1.447723978549924 -2464,2,-1.3545443242776873 -2465,2,-1.3387136627189637 -2466,2,-1.506098172751776 -2467,2,-1.548164132385297 -2468,2,-1.5296272523146548 -2469,2,-1.4968122406322948 -2470,2,-1.3352260807457905 -2471,2,-1.3333457674901796 -2472,2,-1.5657920683621407 -2473,2,-1.572080434503073 -2474,2,-1.4811401972915839 -2475,2,-1.542967020998749 -2476,2,-1.4801613974324601 -2477,2,-1.548868227525706 -2478,2,-1.4798925625869008 -2479,2,-1.5269131835561411 -2480,2,-1.4363662832759683 -2481,2,-1.4791550188850082 -2482,2,-1.4526634167387982 -2483,2,-1.57404254007342 -2484,2,-1.5838521477956045 -2485,2,-1.2593732850210573 -2486,2,-1.472844180854777 -2487,2,-1.3761326565818446 -2488,2,-1.3841629378018823 -2489,2,-1.350139961899612 -2490,2,-1.4937177992133162 -2491,2,-1.4423865802218734 -2492,2,-1.6218329115463914 -2493,2,-1.6024648403404884 -2494,2,-1.568391855791446 -2495,2,-1.5773890878074066 -2496,2,-1.6295768833711353 -2497,2,-1.6270738019378628 -2498,2,-1.6131368802346073 -2499,2,-1.608862759476247 -2500,2,-1.6525568862242108 -2501,2,-1.6534676787518943 -2502,2,-1.684942044597705 -2503,2,-1.5153315268551542 -2504,2,-0.9942586411401736 -2505,2,-0.956702689901525 -2506,2,-1.133316366889046 -2507,2,-1.3563477182436057 -2508,2,-0.987053398996384 -2509,2,-1.4599911810143644 -2510,2,-1.5246032798106393 -2511,2,-1.4812324531306336 -2512,2,-1.469513843474075 -2513,2,-1.4582595813437846 -2514,2,-1.5578170711466452 -2515,2,-1.4854826257520015 -2516,2,-1.4791220537628396 -2517,2,-1.540698356469063 -2518,2,-1.4996332592236001 -2519,2,-1.481027905150461 -2520,2,-1.5074047230803354 -2521,2,-1.4292688347873166 -2522,2,-1.4141198142853053 -2523,2,-1.4556154559027994 -2524,2,-1.4079269081806276 -2525,2,-1.391229464564859 -2526,2,-1.4133628305795063 -2527,2,-1.3430290904144833 -2528,2,-1.3448372672619806 -2529,2,-1.4003369098673315 -2530,2,-1.409150010394705 -2531,2,-1.424533208311083 -2532,2,-1.4069181637232018 -2533,2,-1.4422293786764409 -2534,2,-1.4357489781927903 -2535,2,-1.4204611241925427 -2536,2,-1.3744810235289897 -2537,2,-1.3684249940625166 -2538,2,-1.4254615616564748 -2539,2,-1.4060723289077224 -2540,2,-1.4223998150756179 -2541,2,-1.4271902083436225 -2542,2,-1.4438068464893123 -2543,2,-1.448820872019685 -2544,2,-1.430757076922028 -2545,2,-1.4223950332079422 -2546,2,-1.4163285987951555 -2547,2,-1.4289452305480845 -2548,2,-1.4167786309676977 -2549,2,-1.4271670230901303 -2550,2,-1.4336297300303975 -2551,2,-1.4739463550633696 -2552,2,-1.4740923229335228 -2553,2,-1.4358812572344788 -2554,2,-1.4294323440631571 -2555,2,-1.4177953682633866 -2556,2,-1.4366685212982577 -2557,2,-1.3983158176018906 -2558,2,-1.4076020553094577 -2559,2,-1.4308954970916425 -2560,2,-1.4686035107354911 -2561,2,-1.4705342513597166 -2562,2,-1.432236848860285 -2563,2,-1.442073775734311 -2564,2,-1.4300989705904201 -2565,2,-1.4335812355287831 -2566,2,-1.388184550586127 -2567,2,-1.39542117918208 -2568,2,-1.4388481478479769 -2569,2,-1.485301553758748 -2570,2,-1.4677832528848371 -2571,2,-1.4632792983776641 -2572,2,-1.4231160454933878 -2573,2,-1.4196418845025933 -2574,2,-1.4233814667374758 -2575,2,-1.3886193807005707 -2576,2,-1.4294091038195573 -2577,2,-1.403481637911047 -2578,2,-1.9640428679545245 -2579,2,-2.1727610630450376 -2580,2,-1.2309930840530772 -2581,2,-1.5956842442019212 -2582,2,-1.639833959033816 -2583,2,-1.476611585912234 -2584,2,-1.4330780643800927 -2585,2,-1.5036982101401353 -2586,2,-1.469860359525148 -2587,2,-1.378983496603558 -2588,2,-1.3774410633951286 -2589,2,-1.5234646759529895 -2590,2,-1.4485861631952799 -2591,2,-1.4446515624145917 -2592,2,-1.4471749530701936 -2593,2,-1.3987762703639433 -2594,2,-1.4943594127926425 -2595,2,-1.4684957358870296 -2596,2,-1.376566400125549 -2597,2,-1.5636253469995793 -2598,2,-1.5059472674164938 -2599,2,-1.5726031745564828 -2600,2,-1.539028547477626 -2601,2,-1.4554291012671179 -2602,2,-1.4219051195653434 -2603,2,-1.460455770288248 -2604,2,-1.3999972514302408 -2605,2,-1.6400589449068135 -2606,2,-1.5858697079107575 -2607,2,-1.63139392546369 -2608,2,-1.4455312673144858 -2609,2,-1.3598121169763795 -2610,2,-1.3405947054707068 -2611,2,-1.4017739614187543 -2612,2,-1.3938576020847786 -2613,2,-1.6162244758851891 -2614,2,-1.5714058739207026 -2615,2,-1.59625534536733 -2616,2,-1.6009665249136569 -2617,2,-1.5913049640721888 -2618,2,-1.6178560440122656 -2619,2,-1.6201385623859306 -2620,2,-1.6271202674849674 -2621,2,-1.61580703560954 -2622,2,-1.602476426476991 -2623,2,-1.5550665568920425 -2624,2,-1.6604802708999058 -2625,2,-1.756695626557175 -2626,2,-1.550643403331138 -2627,2,-1.66931765351472 -2628,2,-2.0051802333603836 -2629,2,-1.5009287063513455 -2630,2,-1.3739368001357177 -2631,2,-1.4027360797088073 -2632,2,-1.4654664847742505 -2633,2,-1.5289657231127072 -2634,2,-1.2526161954695012 -2635,2,-1.5017604054322105 -2636,2,-1.4868049413392583 -2637,2,-1.42143523705801 -2638,2,-1.372322894948668 -2639,2,-1.4915742561685184 -2640,2,-1.5957102855713134 -2641,2,-1.643474028284776 -2642,2,-1.577787597667853 -2643,2,-1.6774979487505226 -2644,2,-1.5041412233756184 -2645,2,-1.3744442616127601 -2646,2,-1.5424842942834975 -2647,2,-1.455854715009621 -2648,2,-1.3388595444868265 -2649,2,-1.6717617196536914 -2650,2,-1.6354763268346364 -2651,2,-1.5520163782111165 -2652,2,-1.5074847102869582 -2653,2,-1.5326753562992883 -2654,2,-1.8385092184059848 -2655,2,-1.4374279015005542 -2656,2,-1.5728013292748118 -2657,2,-1.5937631131340662 -2658,2,-1.5566027906931705 -2659,2,-1.6254055541916712 -2660,2,-1.3066775212370694 -2661,2,-1.0279551182492406 -2662,2,-1.4704920554799992 -2663,2,-1.5710935676388764 -2664,2,-1.6466998702542153 -2665,2,-1.6362203646543325 -2666,2,-1.6058282549457499 -2667,2,-1.6277451785179338 -2668,2,-1.6111012874602806 -2669,2,-1.530316195181587 -2670,2,-1.547168064688652 -2671,2,-1.5209551015522413 -2672,2,-1.5231365114369912 -2673,2,-1.507133708849924 -2674,2,-1.4969913749808295 -2675,2,-1.493558282748061 -2676,2,-1.5123663431571028 -2677,2,-1.583246180240037 -2678,2,-1.4981228197859378 -2679,2,-1.6789051492182894 -2680,2,-1.6724112906921136 -2681,2,-1.5858303156317177 -2682,2,-1.626752976171702 -2683,2,-1.6221762155923685 -2684,2,-1.5759340390524275 -2685,2,-1.6328792524312639 -2686,2,-1.6424211344232167 -2687,2,-1.5788179647440626 -2688,2,-1.6223832723136788 -2689,2,-1.6412488046774978 -2690,2,-1.617659815750319 -2691,2,-1.7018816480051087 -2692,2,-1.6802780675391764 -2693,2,-1.6594033107072594 -2694,2,-1.6565740355109688 -2695,2,-1.854254500928181 -2696,2,-1.6005956557962817 -2697,2,-1.9533909831208596 -2698,2,-1.8298654604414542 -2699,2,-1.9358011589941373 -2700,2,-1.5516959780381931 -2701,2,-1.7305365496051726 -2702,2,-1.8380758200078302 -2703,2,-1.4770086815302719 -2704,2,-1.511442884213206 -2705,2,-1.3765711436500918 -2706,2,-1.3950411438715882 -2707,2,-1.3611260132936553 -2708,2,-1.296852972263078 -2709,2,-1.8647315277552525 -2710,2,-1.4054631603525132 -2711,2,-1.437661774469667 -2712,2,-1.5425565932145102 -2713,2,-1.4703328621694938 -2714,2,-1.4708774873738542 -2715,2,-1.5076047433387845 -2716,2,-1.494920927908805 -2717,2,-1.4925828809383497 -2718,2,-1.244891801302625 -2719,2,-1.4003978917116238 -2720,2,-1.8461588238854019 -2721,2,-1.5895677473809513 -2722,2,-1.5367231761428934 -2723,2,-1.682445875804853 -2724,2,-1.5222319183958997 -2725,2,-1.4986653974910582 -2726,2,-1.4315443789004487 -2727,2,-1.437910992477784 -2728,2,-1.4118438272907659 -2729,2,-1.3424692958981808 -2730,2,-1.4856842921839568 -2731,2,-1.42845755311697 -2732,2,-1.572948147771203 -2733,2,-1.510251504003866 -2734,2,-1.5991220604155774 -2735,2,-1.6009062941182712 -2736,2,-1.3820721180246733 -2737,2,-1.3724270654653525 -2738,2,-1.2781621706482882 -2739,2,-1.4358173041269675 -2740,2,-1.6188017840706013 -2741,2,-1.654142622968109 -2742,2,-1.592454121898327 -2743,2,-1.591998804670899 -2744,2,-1.6638159147496991 -2745,2,-1.6607081532900008 -2746,2,-1.6432652778118264 -2747,2,-1.6116062580150614 -2748,2,-1.4769730490230577 -2749,2,-1.4364671889500278 -2750,2,-1.5461733047247643 -2751,2,-1.566909706788423 -2752,2,-1.1380496804993696 -2753,2,-1.1773448608258041 -2754,2,-1.8373587254756782 -2755,2,-1.6730376155313822 -2756,2,-1.5003526579921822 -2757,2,-1.5058942247441225 -2758,2,-1.477182226578687 -2759,2,-1.4617799088900039 -2760,2,-1.5098841527903486 -2761,2,-1.4108794990877997 -2762,2,-1.5883919873872416 -2763,2,-1.5488182110584288 -2764,2,-1.543242243442371 -2765,2,-1.621003356757951 -2766,2,-1.865137672792928 -2767,2,-1.2686150156201068 -2768,2,-1.5386722804926138 -2769,2,-1.6588699786889607 -2770,2,-1.6708424979086978 -2771,2,-1.6199758509902562 -2772,2,-1.791558233120977 -2773,2,-1.6141113984429645 -2774,2,-1.5800146667003845 -2775,2,-1.6751786104946762 -2776,2,-1.5530816053008187 -2777,2,-1.5023764492424478 -2778,2,-1.594989721050909 -2779,2,-1.4691925361380511 -2780,2,-1.4621824601118958 -2781,2,-1.4817074337882088 -2782,2,-1.4350788552906142 -2783,2,-1.4167747062644356 -2784,2,-1.4673043624179656 -2785,2,-1.4204462291680293 -2786,2,-1.4258951152656671 -2787,2,-1.4308749784395982 -2788,2,-1.43066819227404 -2789,2,-1.4235169762191175 -2790,2,-1.4410566770661715 -2791,2,-1.4216767387720806 -2792,2,-1.4252565004814828 -2793,2,-1.434756060426306 -2794,2,-1.4367373384290656 -2795,2,-1.4509666251746858 -2796,2,-1.4399330287906587 -2797,2,-1.4587513013283067 -2798,2,-1.459457129962878 -2799,2,-1.4510923566180922 -2800,2,-1.4466965123733881 -2801,2,-1.425160454994097 -2802,2,-1.440078242416103 -2803,2,-1.4183345830897809 -2804,2,-1.4298330446202323 -2805,2,-1.4150915790550205 -2806,2,-1.440583978515332 -2807,2,-1.4405151350226402 -2808,2,-1.4283298300850245 -2809,2,-1.4323782701042886 -2810,2,-1.4237975252277935 -2811,2,-1.4286848048681544 -2812,2,-1.424438821421419 -2813,2,-1.4349056740536341 -2814,2,-1.4168698211625703 -2815,2,-1.4407696256467897 -2816,2,-1.4380605995491955 -2817,2,-1.4312955222718273 -2818,2,-1.430115713610271 -2819,2,-1.420102371224479 -2820,2,-1.4313842233428997 -2821,2,-1.4195160172687515 -2822,2,-1.4319166844906153 -2823,2,-1.4283922184068645 -2824,2,-1.4491584019536996 -2825,2,-1.4660444101089012 -2826,2,-1.4528478676332077 -2827,2,-1.4832389320426353 -2828,2,-1.4916892768942667 -2829,2,-1.4782657020165304 -2830,2,-1.4693097461279891 -2831,2,-1.4203356539841556 -2832,2,-1.4858686668195826 -2833,2,-1.4039099861485214 -2834,2,-1.2756435202923337 -2835,2,-1.1829366777258232 -2836,2,-1.5242841700100853 -2837,2,-1.4058251240842634 -2838,2,-1.480989588244519 -2839,2,-1.5369934352384875 -2840,2,-1.5290242073717952 -2841,2,-1.452065412883981 -2842,2,-1.4382099712493968 -2843,2,-1.3995362874983235 -2844,2,-1.5796754182502208 -2845,2,-1.5385516635075687 -2846,2,-1.5022159646080593 -2847,2,-1.585786958149875 -2848,2,-1.6652293919621772 -2849,2,-1.6663801806510647 -2850,2,-1.6294271656587713 -2851,2,-1.604687616899778 -2852,2,-1.2588962583147487 -2853,2,-1.1622885740892026 -2854,2,-1.0327439942513288 -2855,2,-1.349292068941953 -2856,2,-1.7547957174781186 -2857,2,-1.5320634280783725 -2858,2,-1.4123272282700077 -2859,2,-1.5036762254340805 -2860,2,-1.425200617932343 -2861,2,-1.3755361719187051 -2862,2,-1.5690679233924074 -2863,2,-1.4758089467349358 -2864,2,-1.4522868845176236 -2865,2,-1.4637891082648267 -2866,2,-1.3799801240025436 -2867,2,-1.2623515589582415 -2868,2,-1.1567681390296882 -2869,2,-1.8629139600936977 -2870,2,-1.5855099592792714 -2871,2,-1.6127610179622343 -2872,2,-1.4599926611012142 -2873,2,-1.4997853035376447 -2874,2,-1.553868728188901 -2875,2,-1.3819624016914112 -2876,2,-1.4306104902672305 -2877,2,-1.484069870427622 -2878,2,-1.2675245777129243 -2879,2,-1.6614772195794896 -2880,2,-1.511737769783379 -2881,2,-1.7744203854672638 -2882,2,-1.60075081417581 -2883,2,-1.755442746684846 -2884,2,-1.4806350516515865 -2885,2,-1.5656734136173698 -2886,2,-1.2202047957958275 -2887,2,-1.1711465171660669 -2888,2,-1.4921088957659239 -2889,2,-1.483601199214232 -2890,2,-1.4874649681780023 -2891,2,-1.694611227626465 -2892,2,-2.114791537760258 -2893,2,-1.3652434126984943 -2894,2,-1.779704186165129 -2895,2,-1.4605756413049191 -2896,2,-1.5709871877737083 -2897,2,-1.5403952902275675 -2898,2,-1.3669997415566157 -2899,2,-1.5070547834961734 -2900,2,-1.4913071152790556 -2901,2,-1.4858085661634124 -2902,2,-1.4784425197775701 -2903,2,-1.4596016692980904 -2904,2,-1.469065876611148 -2905,2,-1.4735212286147268 -2906,2,-1.470155963062207 -2907,2,-1.4716309450620488 -2908,2,-1.4594322070281616 -2909,2,-1.4863378159690201 -2910,2,-1.528969922247545 -2911,2,-1.4588292922104642 -2912,2,-1.545797581010391 -2913,2,-1.4832943049708784 -2914,2,-1.479891886917764 -2915,2,-1.5578266911311796 -2916,2,-1.5652873774021476 -2917,2,-1.517884977258687 -2918,2,-1.5471849462729907 -2919,2,-1.6115332297388172 -2920,2,-1.5035882918111667 -2921,2,-1.6344111923319387 -2922,2,-1.6046910988013832 -2923,2,-1.5674870243563377 -2924,2,-1.5442074890847828 -2925,2,-1.6817325268654264 -2926,2,-1.8057999663247117 -2927,2,-1.5078115045634732 -2928,2,-1.5644135262236738 -2929,2,-1.5180506902193935 -2930,2,-1.49783702654718 -2931,2,-1.5495426423230707 -2932,2,-1.550095152613687 -2933,2,-1.5207659940667118 -2934,2,-1.536715104783214 -2935,2,-1.5556756964593583 -2936,2,-1.5301464647306686 -2937,2,-1.524726809049946 -2938,2,-1.5840846676917577 -2939,2,-1.5837284618854996 -2940,2,-1.5178923679089429 -2941,2,-1.5265443774580676 -2942,2,-1.4886527494287358 -2943,2,-1.4970227808976926 -2944,2,-1.503856691064242 -2945,2,-1.4734010901575443 -2946,2,-1.73816695772504 -2947,2,-1.8258176252971952 -2948,2,-1.4794905382059758 -2949,2,-1.5613709875208697 -2950,2,-1.4794534650860034 -2951,2,-1.5218612846689648 -2952,2,-1.3188778411063655 -2953,2,-1.4246683166701402 -2954,2,-1.5539338829189306 -2955,2,-1.5442225744369356 -2956,2,-1.5511978757675782 -2957,2,-1.5382098776503494 -2958,2,-1.4498221761232568 -2959,2,-1.495602343209776 -2960,2,-1.5310541760535825 -2961,2,-1.5811140661343455 -2962,2,-2.0477604531647446 -2963,2,-2.039712021462717 -2964,2,-1.743383372531552 -2965,2,-1.4655781885363037 -2966,2,-1.439762498228578 -2967,2,-1.4191397209167058 -2968,2,-1.4058859001286776 -2969,2,-1.335837274034715 -2970,2,-1.4626113122115454 -2971,2,-1.2270328685736742 -2972,2,-1.624609955795656 -2973,2,-1.6554850605768108 -2974,2,-1.4183152749924375 -2975,2,-1.4519513645473512 -2976,2,-1.4116728927727624 -2977,2,-1.6095974526459698 -2978,2,-1.75833302145951 -2979,2,-1.6928200457516511 -2980,2,-1.694753694717487 -2981,2,-1.8102957489628049 -2982,2,-1.6486615370162998 -2983,2,-1.5609958732900648 -2984,2,-1.8145436324959956 -2985,2,-1.4984187420857351 -2986,2,-1.5119148948429462 -2987,2,-1.5927221438762806 -2988,2,-1.504521899498858 -2989,2,-1.463232189832643 -2990,2,-1.544338768394133 -2991,2,-1.4451069548804543 -2992,2,-1.4361890220639566 -2993,2,-1.433899402564125 -2994,2,-1.440921834592892 -2995,2,-1.4454909466897867 -2996,2,-1.4299920966365098 -2997,2,-1.446341546104844 -2998,2,-1.4521377265672244 -2999,2,-1.4398012245791523 -3000,2,-1.4537349332221743 -3001,2,-1.4509997311828173 -3002,2,-1.4590505729384686 -3003,2,-1.4479297722646307 -3004,2,-1.438105181033525 -3005,2,-1.4431235981064043 -3006,2,-1.4263852381969644 -3007,2,-1.4223826499091705 -3008,2,-1.425823881737381 -3009,2,-1.4189320439273794 -3010,2,-1.4165610839225222 -3011,2,-1.4399806242580495 -3012,2,-1.4183008734220746 -3013,2,-1.4148007174089146 -3014,2,-1.4359529699745757 -3015,2,-1.4152245356847364 -3016,2,-1.420930180386166 -3017,2,-1.4185932118092643 -3018,2,-1.4176959415570773 -3019,2,-1.4187274568524928 -3020,2,-1.4394426760121914 -3021,2,-1.4226863053295347 -3022,2,-1.4252583275214967 -3023,2,-1.4411006224157532 -3024,2,-1.428056054690163 -3025,2,-1.4174777558308693 -3026,2,-1.4325918254613461 -3027,2,-1.4244990932806263 -3028,2,-1.453467121435305 -3029,2,-1.412275207781734 -3030,2,-1.4655221034397845 -3031,2,-1.4615015580700381 -3032,2,-1.469762575016669 -3033,2,-1.4700333842981592 -3034,2,-1.498117583022418 -3035,2,-1.4526812594918044 -3036,2,-1.4972702029738385 -3037,2,-1.602017428438528 -3038,2,-1.5152346146312698 -3039,2,-1.5296280837490213 -3040,2,-1.5434750739418501 -3041,2,-1.5064066757241443 -3042,2,-1.5708345797324528 -3043,2,-1.281679597017523 -3044,2,-1.3596914869241992 -3045,2,-1.5737904159988378 -3046,2,-1.5760196171749734 -3047,2,-1.2430901808929493 -3048,2,-1.2327843207208635 -3049,2,-1.2198541007168868 -3050,2,-1.254366134354025 -3051,2,-1.7954837228593155 -3052,2,-1.5250310496375794 -3053,2,-1.5710962286114447 -3054,2,-1.4800658169629508 -3055,2,-1.4788378550556487 -3056,2,-1.473096350114756 -3057,2,-1.4360564734860055 -3058,2,-1.4724800753817222 -3059,2,-1.5903855560000133 -3060,2,-1.6013187074399924 -3061,2,-1.6024984433985676 -3062,2,-1.5093306603888688 -3063,2,-1.5867724930360971 -3064,2,-1.4815867037173187 -3065,2,-1.5919080549853342 -3066,2,-1.6224454923905796 -3067,2,-1.6224575297161692 -3068,2,-1.720200392155857 -3069,2,-1.8705713052178063 -3070,2,-1.5833485726446774 -3071,2,-1.621627287481852 -3072,2,-1.5413691536966625 -3073,2,-1.5161975997976027 -3074,2,-1.528914355125306 -3075,2,-1.5588714686408287 -3076,2,-1.4266060237920841 -3077,2,-1.7905646989600181 -3078,2,-1.7033369370773357 -3079,2,-1.723460932146774 -3080,2,-1.4819220128437594 -3081,2,-1.4122363155972837 -3082,2,-1.5435090597946215 -3083,2,-1.4146705509557218 -3084,2,-1.7136581659883083 -3085,2,-1.7143375888439534 -3086,2,-1.7022546009911808 -3087,2,-1.71790066753108 -3088,2,-1.6674461041982964 -3089,2,-1.687182608643845 -3090,2,-1.530217741842968 -3091,2,-1.5597598125745717 -3092,2,-1.646590575552708 -3093,2,-1.5738434438397617 -3094,2,-1.7046241749578972 -3095,2,-1.628152556656752 -3096,2,-1.7102449504047061 -3097,2,-1.5795564906834296 -3098,2,-1.3622928980412443 -3099,2,-1.7545027139395524 -3100,2,-1.6894070237728642 -3101,2,-1.6277515773837963 -3102,2,-1.5854895145319203 -3103,2,-1.486743713591443 -3104,2,-1.381934210234669 -3105,2,-1.592493294706641 -3106,2,-1.4809802461019177 -3107,2,-1.291203084467842 -3108,2,-1.3830289025241485 -3109,2,-1.3122511417635183 -3110,2,-1.2339241293153105 -3111,2,-1.4434843160326114 -3112,2,-1.488228902954136 -3113,2,-1.5304003675353872 -3114,2,-1.53058464360771 -3115,2,-1.7941246808452713 -3116,2,-1.7724848076394875 -3117,2,-1.6650006427346151 -3118,2,-1.5115156844074973 -3119,2,-1.5591022698060273 -3120,2,-1.5512552598990095 -3121,2,-1.5588511106669876 -3122,2,-1.5478350568190082 -3123,2,-1.5701319658659032 -3124,2,-1.5262799640935893 -3125,2,-1.3571864902988908 -3126,2,-1.4984309641570208 -3127,2,-1.4135059055174004 -3128,2,-1.3130335552754697 -3129,2,-1.4905177790445456 -3130,2,-1.6596307244043185 -3131,2,-1.6230958459945237 -3132,2,-1.6422485458754223 -3133,2,-1.6856959609970863 -3134,2,-1.8513938707879047 -3135,2,-2.0463893195590606 -3136,2,-1.405032567762497 -3137,2,-1.4063618487319423 -3138,2,-2.0487035541264156 -3139,2,-1.9055862179178826 -3140,2,-2.2166238540054763 -3141,2,-1.7714303930244026 -3142,2,-1.6534677613755477 -3143,2,-2.0784740382407114 -3144,2,-1.5915882331361892 -3145,2,-1.5148619281929399 -3146,2,-1.6090503555592575 -3147,2,-1.445712272029147 -3148,2,-1.4081465787137164 -3149,2,-1.3533518697054598 -3150,2,-1.413157205602599 -3151,2,-1.420405401603672 -3152,2,-1.4085950216921652 -3153,2,-1.4256454174494195 -3154,2,-1.4458588331939493 -3155,2,-1.4328391149533908 -3156,2,-1.4593120010908853 -3157,2,-1.4608114558894967 -3158,2,-1.453202341225474 -3159,2,-1.4476196830967893 -3160,2,-1.428863688348989 -3161,2,-1.4566609634379406 -3162,2,-1.421388563211071 -3163,2,-1.4306651651709 -3164,2,-1.4432299648605607 -3165,2,-1.4488244959793621 -3166,2,-1.460839719191499 -3167,2,-1.468094582954963 -3168,2,-1.4591830249128825 -3169,2,-1.4465716555733041 -3170,2,-1.4755832861451352 -3171,2,-1.4327120534211528 -3172,2,-1.4324954689003877 -3173,2,-1.4597809185322308 -3174,2,-1.447639288401885 -3175,2,-1.4626230647309797 -3176,2,-1.461576444088737 -3177,2,-1.4632494958391262 -3178,2,-1.4494374776348373 -3179,2,-1.4801837921722225 -3180,2,-1.4383566584884682 -3181,2,-1.4309339186858603 -3182,2,-1.4652845553508305 -3183,2,-1.421195599865542 -3184,2,-1.4371048497548213 -3185,2,-1.4546059833602512 -3186,2,-1.4656241888350776 -3187,2,-1.4691135783038516 -3188,2,-1.4616853942784784 -3189,2,-1.4560528081487336 -3190,2,-1.4542551848616467 -3191,2,-1.4431592342233557 -3192,2,-1.4887243412768534 -3193,2,-1.413107415053994 -3194,2,-1.4613642638398274 -3195,2,-1.5965500654369382 -3196,2,-1.619356973091023 -3197,2,-1.63169822393767 -3198,2,-1.441118683367217 -3199,2,-1.5208659651955754 -3200,2,-1.6490650292959887 -3201,2,-1.6280056650692407 -3202,2,-1.6194775837866922 -3203,2,-1.5629711906623096 -3204,2,-1.5673304595971513 -3205,2,-1.5728258960783645 -3206,2,-1.4719261587293033 -3207,2,-1.4455622128501506 -3208,2,-1.496248556256883 -3209,2,-1.573539997501244 -3210,2,-1.5730828808146529 -3211,2,-1.5575875128980756 -3212,2,-1.561704693012007 -3213,2,-1.4272161973630104 -3214,2,-1.3786150894899547 -3215,2,-1.4727546447393247 -3216,2,-1.4349420237962311 -3217,2,-1.592865302615394 -3218,2,-1.717244112134948 -3219,2,-1.755185399772349 -3220,2,-1.5201434356713548 -3221,2,-1.574728967233265 -3222,2,-1.467253121097214 -3223,2,-1.4161623276877122 -3224,2,-1.4383160890961706 -3225,2,-1.4282030282812161 -3226,2,-1.5181889042186838 -3227,2,-1.718496743245251 -3228,2,-1.7037278618460687 -3229,2,-1.6841864923820213 -3230,2,-1.6716551571255915 -3231,2,-1.5866191169423824 -3232,2,-1.2057317649201824 -3233,2,-1.1691746533157366 -3234,2,-1.2123700774812654 -3235,2,-1.262646062692508 -3236,2,-1.6857669875072323 -3237,2,-1.6676324548364885 -3238,2,-1.713075515870793 -3239,2,-1.6332260000859398 -3240,2,-1.5854047870701922 -3241,2,-1.5689767522305906 -3242,2,-1.5916760588298144 -3243,2,-1.5741771659168484 -3244,2,-1.7392401288916153 -3245,2,-1.7094294238302976 -3246,2,-1.7599976549492466 -3247,2,-1.5972334126573269 -3248,2,-1.6395678579414612 -3249,2,-1.8315786878540725 -3250,2,-1.5665244620142265 -3251,2,-1.2558763245037288 -3252,2,-1.3873713358213677 -3253,2,-1.6936780086273167 -3254,2,-1.6735761313889246 -3255,2,-1.7724350854350701 -3256,2,-1.811211387659416 -3257,2,-1.6880918102031475 -3258,2,-1.5483671307216993 -3259,2,-1.7017024516017762 -3260,2,-1.60220727975886 -3261,2,-1.5773207324084209 -3262,2,-1.606633898688523 -3263,2,-1.5752961757249326 -3264,2,-1.4560947432978266 -3265,2,-1.5699261616795013 -3266,2,-1.6424909941756431 -3267,2,-1.6008580372015422 -3268,2,-1.59325323417389 -3269,2,-1.435035595473511 -3270,2,-1.542029110997762 -3271,2,-1.5560043037983535 -3272,2,-1.5264130965664446 -3273,2,-1.7207658883767805 -3274,2,-1.73129687118449 -3275,2,-1.7743697962772564 -3276,2,-1.7870617503677717 -3277,2,-1.6692447627747553 -3278,2,-1.5172164673831503 -3279,2,-1.4588851252360404 -3280,2,-1.4703208207601792 -3281,2,-1.5709718920065598 -3282,2,-1.560585988868457 -3283,2,-1.5769450846386708 -3284,2,-1.62034214316918 -3285,2,-1.727440681718831 -3286,2,-1.4536763724018749 -3287,2,-1.2414845730844326 -3288,2,-1.6025275734275524 -3289,2,-1.6103963757981068 -3290,2,-1.7624158752575367 -3291,2,-1.541710885476423 -3292,2,-1.6344009315742498 -3293,2,-1.6758969798633405 -3294,2,-1.757316984010519 -3295,2,-1.5932407397533954 -3296,2,-1.549528414129738 -3297,2,-1.5020848324021585 -3298,2,-2.0132699280379773 -3299,2,-2.264123775150049 -3300,2,-1.5960977090454622 -3301,2,-1.361832104730068 -3302,2,-1.5101069007986985 -3303,2,-1.7338922992482968 -3304,2,-1.5490090629664555 -3305,2,-1.6280011531353489 -3306,2,-1.744614052383715 -3307,2,-1.7242092176504231 -3308,2,-1.3318064743999711 -3309,2,-1.674236653122291 -3310,2,-1.7283858296007464 -3311,2,-1.7679595339782461 -3312,2,-1.7363871973909069 -3313,2,-1.443721225311885 -3314,2,-1.4430788553026688 -3315,2,-1.6033225638942812 -3316,2,-1.614120711764354 -3317,2,-1.6163786295772586 -3318,2,-1.83854552272954 -3319,2,-1.7111560398061243 -3320,2,-1.7674952142928737 -3321,2,-1.5293307146283173 -3322,2,-1.5697300034638535 -3323,2,-1.5505503649920966 -3324,2,-1.5506545716745583 -3325,2,-2.269091295593817 -3326,2,-2.180698419127777 -3327,2,-2.246213445062051 -3328,2,-1.2632482100454037 -3329,2,-1.2324831577108386 -3330,2,-1.325292003012975 -3331,2,-1.4348534811569889 -3332,2,-1.3718857091460874 -3333,2,-1.4518493784171413 -3334,2,-1.4612686558591297 -3335,2,-1.502919073075079 -3336,2,-1.4614184663866832 -3337,2,-1.4511781897506253 -3338,2,-1.4942692592875035 -3339,2,-1.4531373571644808 -3340,2,-1.4605946649996224 -3341,2,-1.4707459170483914 -3342,2,-1.465919661170043 -3343,2,-1.4777542109712278 -3344,2,-1.491712956295257 -3345,2,-1.4933422271058012 -3346,2,-1.4888208657040112 -3347,2,-1.4974853596295477 -3348,2,-1.4842943456820465 -3349,2,-1.4838634798190404 -3350,2,-1.473243479172874 -3351,2,-1.4806724815457144 -3352,2,-1.4903519437395278 -3353,2,-1.4813446049485943 -3354,2,-1.4923640538167997 -3355,2,-1.4861713311326359 -3356,2,-1.502135322196531 -3357,2,-1.4897949028870265 -3358,2,-1.4896986490469415 -3359,2,-1.4878185928380383 -3360,2,-1.4886114304298381 -3361,2,-1.4937995536084203 -3362,2,-1.4925634194342154 -3363,2,-1.4905437214204487 -3364,2,-1.4751411191935084 -3365,2,-1.5084744836945894 -3366,2,-1.4663112802224565 -3367,2,-1.4471990209025234 -3368,2,-1.4731323548478061 -3369,2,-1.4251834713786269 -3370,2,-1.4518334313443177 -3371,2,-1.4431834477981642 -3372,2,-1.4718360842478762 -3373,2,-1.6236482160742762 -3374,2,-1.466887680338856 -3375,2,-1.7457938016821768 -3376,2,-1.772796610973547 -3377,2,-1.8332424184723477 -3378,2,-1.7252291009423844 -3379,2,-1.4011952186993633 -3380,2,-1.3880538263868165 -3381,2,-1.5957150904379396 -3382,2,-1.4863896383266049 -3383,2,-1.4425793649130192 -3384,2,-1.6687397256869898 -3385,2,-1.7487779944235975 -3386,2,-1.4556865499524407 -3387,2,-1.7063938880292648 -3388,2,-1.6031782517847517 -3389,2,-1.6119081555400714 -3390,2,-1.8936361337632266 -3391,2,-1.7292804825337595 -3392,2,-1.730190806007918 -3393,2,-1.4622711336047038 -3394,2,-1.8160630859078812 -3395,2,-1.9205426937329797 -3396,2,-1.8660347103948818 -3397,2,-1.2763326001076774 -3398,2,-1.7335149162638954 -3399,2,-1.9016878929738945 -3400,2,-1.5183400769245425 -3401,2,-1.5492993316958588 -3402,2,-1.7154450930111091 -3403,2,-1.9416244872844577 -3404,2,-1.829237368095178 -3405,2,-1.7864266347306987 -3406,2,-1.7803129771684494 -3407,2,-1.5436789510115176 -3408,2,-1.578433221591558 -3409,2,-1.8796808747128426 -3410,2,-2.073498542026807 -3411,2,-1.6468242285583086 -3412,2,-1.6184151801554876 -3413,2,-1.7013668136328333 -3414,2,-1.6068470002765805 -3415,2,-1.6382694121169221 -3416,2,-1.4874596707513168 -3417,2,-1.6789681124181826 -3418,2,-1.2935803255453617 -3419,2,-1.4534692529436115 -3420,2,-1.4357792512411198 -3421,2,-1.4532767668516238 -3422,2,-1.5907291316503622 -3423,2,-1.6320118690968297 -3424,2,-1.5968399675992904 -3425,2,-1.6128986343002638 -3426,2,-1.7687665728161408 -3427,2,-2.021766916667501 -3428,2,-1.905783010388654 -3429,2,-2.2500378935200507 -3430,2,-1.619743902113777 -3431,2,-1.6055012728164033 -3432,2,-1.516381382183034 -3433,2,-1.5069985393379721 -3434,2,-1.442220390955952 -3435,2,-1.4174967712296578 -3436,2,-1.7634585039641542 -3437,2,-1.6728429022535394 -3438,2,-1.703048300424322 -3439,2,-1.5869273476517882 -3440,2,-1.9888409208945048 -3441,2,-1.3642750038475449 -3442,2,-1.510993516245642 -3443,2,-1.593487328699524 -3444,2,-1.6098399158981447 -3445,2,-1.6219515153836224 -3446,2,-1.5910707011771101 -3447,2,-1.7673723887608062 -3448,2,-1.8456470994935568 -3449,2,-1.8077524818327955 -3450,2,-1.5328227640301408 -3451,2,-1.5473390144388577 -3452,2,-1.6453220494557512 -3453,2,-1.3706503692557521 -3454,2,-2.500078385265467 -3455,2,-1.7214922348831618 -3456,2,-1.7293342371989355 -3457,2,-2.0460856936484197 -3458,2,-1.812893967768691 -3459,2,-1.885236458977152 -3460,2,-1.8343434014813205 -3461,2,-1.8100461919445587 -3462,2,-1.4933537788202254 -3463,2,-1.3487292059149625 -3464,2,-1.4778918334018034 -3465,2,-1.8859526802229154 -3466,2,-1.740472381610107 -3467,2,-1.4114217510554095 -3468,2,-1.7273595520256577 -3469,2,-1.9724873620825052 -3470,2,-2.0880530706765206 -3471,2,-1.926671537265044 -3472,2,-2.0075153458804587 -3473,2,-1.9468490182966267 -3474,2,-1.661773448301841 -3475,2,-1.7189942367576836 -3476,2,-1.6304651835848933 -3477,2,-1.615939298788936 -3478,2,-1.6198322084817154 -3479,2,-1.6540893697856127 -3480,2,-1.3691545578176902 -3481,2,-1.577954130545083 -3482,2,-1.675783228853117 -3483,2,-1.5241843541806974 -3484,2,-1.8523712780691666 -3485,2,-1.5446076185525175 -3486,2,-1.473240797922128 -3487,2,-1.4403783164768027 -3488,2,-1.5891477000014569 -3489,2,-1.6851470371422308 -3490,2,-1.6910168245548696 -3491,2,-1.8199167362285062 -3492,2,-1.655794176103901 -3493,2,-1.706618922927209 -3494,2,-1.6056087554543619 -3495,2,-1.5875396642247983 -3496,2,-1.507585515033488 -3497,2,-1.667425133970046 -3498,2,-1.4943024494304338 -3499,2,-1.484824209481802 -3500,2,-1.4904255588540507 -3501,2,-1.4983339408935257 -3502,2,-1.5482860236939429 -3503,2,-1.479703269420635 -3504,2,-1.5422238772270491 -3505,2,-1.4806041017077527 -3506,2,-1.5976468934843326 -3507,2,-1.4608835826528688 -3508,2,-1.4508443749753335 -3509,2,-1.464858885956478 -3510,2,-1.4593763666140602 -3511,2,-1.5069452191383041 -3512,2,-1.4378705991151113 -3513,2,-1.5180564741924274 -3514,2,-1.521193771170867 -3515,2,-1.542243173986683 -3516,2,-1.5130697644965379 -3517,2,-1.461916208845438 -3518,2,-1.5441868543402775 -3519,2,-1.4667572892817007 -3520,2,-1.5188532069554934 -3521,2,-1.4333216369700714 -3522,2,-1.5295761480372854 -3523,2,-1.521228512298428 -3524,2,-1.5586754519394488 -3525,2,-1.501288985678585 -3526,2,-1.434874833163164 -3527,2,-1.5467288586512924 -3528,2,-1.4240381854334552 -3529,2,-1.4491530569219269 -3530,2,-1.3961921146569434 -3531,2,-1.446207329496928 -3532,2,-1.4708317710218883 -3533,2,-1.4491289393275237 -3534,2,-1.6155904628207867 -3535,2,-1.688676825371485 -3536,2,-1.5322460250084453 -3537,2,-1.3746503670453103 -3538,2,-1.2093728457304402 -3539,2,-1.2130532025745315 -3540,2,-1.1996461331062804 -3541,2,-1.1934354499992808 -3542,2,-2.273861344786303 -3543,2,-2.049053567964828 -3544,2,-2.2687502816063625 -3545,2,-1.917920369185633 -3546,2,-1.981893346336051 -3547,2,-1.8372507367554851 -3548,2,-1.7696884151167473 -3549,2,-1.7061418627047014 -3550,2,-1.923653423524018 -3551,2,-1.6078181791965942 -3552,2,-1.6015648662432194 -3553,2,-1.9069149149025661 -3554,2,-1.5739802481578127 -3555,2,-1.5183953289198018 -3556,2,-1.4550680911075713 -3557,2,-1.6042043541917004 -3558,2,-2.516716155841483 -3559,2,-2.12289628764407 -3560,2,-2.591281141843301 -3561,2,-2.335222084719013 -3562,2,-2.227099493013001 -3563,2,-2.2307236271520505 -3564,2,-1.5927593791872277 -3565,2,-1.8147119432236931 -3566,2,-1.1671788849426863 -3567,2,-1.2201235956501109 -3568,2,-1.6949575457765296 -3569,2,-1.7426449800137673 -3570,2,-1.7624145634232877 -3571,2,-1.8592765795465713 -3572,2,-1.9736044452307682 -3573,2,-1.8667615950036858 -3574,2,-1.8376690437561725 -3575,2,-1.725706324365012 -3576,2,-1.593289952188702 -3577,2,-1.5725683553082057 -3578,2,-1.7560413444998777 -3579,2,-1.6078099315340102 -3580,2,-1.582953897409924 -3581,2,-1.6391877610747554 -3582,2,-2.4095924338276613 -3583,2,-1.7946388167292522 -3584,2,-1.8778928865396234 -3585,2,-1.4154111163458094 -3586,2,-1.3018342378144878 -3587,2,-1.306506370913478 -3588,2,-1.2962364183258979 -3589,2,-1.2097146869902817 -3590,2,-1.4178486140488018 -3591,2,-1.5450810203824423 -3592,2,-1.7838148018304019 -3593,2,-2.0326167122076595 -3594,2,-1.8602092702410233 -3595,2,-2.006166736083476 -3596,2,-1.965798624544773 -3597,2,-1.505551334515659 -3598,2,-1.422640165376472 -3599,2,-1.4371585288285775 -3600,2,-1.5538908324899092 -3601,2,-1.821417911930978 -3602,2,-1.7860728415786693 -3603,2,-1.838506732788415 -3604,2,-1.8826958491718353 -3605,2,-2.0158884800800227 -3606,2,-1.7319368716033354 -3607,2,-1.8848448254775405 -3608,2,-1.8582285672592485 -3609,2,-1.2972692699533492 -3610,2,-1.9295397460569763 -3611,2,-1.9855443847909275 -3612,2,-1.9291759759757054 -3613,2,-2.094544201581167 -3614,2,-2.066649951002566 -3615,2,-2.0219632089158464 -3616,2,-2.183434975282826 -3617,2,-1.7049911481598985 -3618,2,-1.6275922834943217 -3619,2,-1.6529194931888684 -3620,2,-1.9387147122707034 -3621,2,-2.1634239159533997 -3622,2,-1.8716998636784454 -3623,2,-1.7779067023216188 -3624,2,-1.7166957176350401 -3625,2,-2.410849173685201 -3626,2,-1.9074031491452943 -3627,2,-1.8945648589097874 -3628,2,-1.868236281279552 -3629,2,-1.9419614440203599 -3630,2,-1.6057384061907702 -3631,2,-1.772732844133857 -3632,2,-1.5305468575696366 -3633,2,-1.493571373730526 -3634,2,-1.5295426070117393 -3635,2,-1.492327324245742 -3636,2,-1.5087805237040022 -3637,2,-1.5159728753621393 -3638,2,-1.5767720649672827 -3639,2,-1.5740375359980727 -3640,2,-1.5248604922002398 -3641,2,-1.502869303989514 -3642,2,-1.4822778499708584 -3643,2,-1.528379234587006 -3644,2,-1.4653287708070273 -3645,2,-1.456669150474491 -3646,2,-1.5174164017061524 -3647,2,-1.513472872821819 -3648,2,-1.5492646583995566 -3649,2,-1.4653004060376325 -3650,2,-1.5480710417747117 -3651,2,-1.5311322719715528 -3652,2,-1.5034390823274448 -3653,2,-1.4714206102524463 -3654,2,-1.4751717878750483 -3655,2,-1.5061998498551246 -3656,2,-1.548429685170633 -3657,2,-1.5639764598093653 -3658,2,-1.5268705615892637 -3659,2,-1.560377502260066 -3660,2,-1.5374718609002453 -3661,2,-1.5405852230143844 -3662,2,-1.453349269421317 -3663,2,-1.4181779443184162 -3664,2,-1.4459998975005248 -3665,2,-1.3368072892495517 -3666,2,-1.476232650287419 -3667,2,-1.9059591255419521 -3668,2,-2.0412040045240984 -3669,2,-1.3001388721555953 -3670,2,-1.2305476121664367 -3671,2,-1.3326039493959452 -3672,2,-1.366101130595723 -3673,2,-1.5085254096459146 -3674,2,-1.2899885199450731 -3675,2,-1.513217672421756 -3676,2,-1.8533621684944896 -3677,2,-1.418616020678343 -3678,2,-1.5116995541692524 -3679,2,-1.7541362631173176 -3680,2,-1.924530818251651 -3681,2,-1.6979011992314035 -3682,2,-1.628179231796517 -3683,2,-1.5573622080776364 -3684,2,-1.572949830518568 -3685,2,-1.703906774942834 -3686,2,-2.1343105488489806 -3687,2,-2.18147024484791 -3688,2,-2.145899134514388 -3689,2,-1.519472896240767 -3690,2,-1.6753727355038508 -3691,2,-1.538487961513942 -3692,2,-1.7669024348202877 -3693,2,-1.780894242032057 -3694,2,-2.3263891853324443 -3695,2,-2.016783918775748 -3696,2,-1.7907038336163417 -3697,2,-1.8523273196289782 -3698,2,-1.711812928980629 -3699,2,-1.5285949533964467 -3700,2,-2.166767425953038 -3701,2,-1.6671769596389623 -3702,2,-1.5895445785293043 -3703,2,-1.4246811874679395 -3704,2,-1.4804200343186098 -3705,2,-2.072910833413858 -3706,2,-1.9596619311929249 -3707,2,-1.237704275442378 -3708,2,-1.2219970755010412 -3709,2,-1.258891750822284 -3710,2,-1.2984133435152265 -3711,2,-1.356995589081286 -3712,2,-1.47939848667245 -3713,2,-1.3152362806103115 -3714,2,-1.562110906007698 -3715,2,-1.7294011341094377 -3716,2,-1.6101442888403044 -3717,2,-2.093124660587757 -3718,2,-2.0194444532176563 -3719,2,-1.6893148540314853 -3720,2,-1.6293723730928746 -3721,2,-1.821918886053155 -3722,2,-1.7954110544363353 -3723,2,-1.1836319785143712 -3724,2,-1.588583363740037 -3725,2,-1.6265654945511492 -3726,2,-1.5829344039890612 -3727,2,-1.5244011127255155 -3728,2,-1.358389935920542 -3729,2,-1.5727066573517303 -3730,2,-1.8048342752481674 -3731,2,-1.9336837271852516 -3732,2,-2.024795111146275 -3733,2,-1.6952570760133643 -3734,2,-2.1459326026293493 -3735,2,-2.070438185399374 -3736,2,-1.4784230912139629 -3737,2,-1.4836351893932522 -3738,2,-1.3886977062045571 -3739,2,-2.1906532072921823 -3740,2,-1.507040941582763 -3741,2,-1.5309796346409432 -3742,2,-1.4818905143070764 -3743,2,-1.523414052020783 -3744,2,-1.4932916481828495 -3745,2,-1.495937625510034 -3746,2,-1.499544919538826 -3747,2,-1.53479756924035 -3748,2,-1.5163666241555311 -3749,2,-1.5444261903781518 -3750,2,-1.5421796320398593 -3751,2,-1.5428776456894149 -3752,2,-1.498723256703875 -3753,2,-1.447403501094887 -3754,2,-1.5003492268089975 -3755,2,-1.4497503918069614 -3756,2,-1.464894047405966 -3757,2,-1.4639345412824054 -3758,2,-1.4845935847368046 -3759,2,-1.5301476264209843 -3760,2,-1.4777390613310515 -3761,2,-1.5470671605325212 -3762,2,-1.5289953992966918 -3763,2,-1.5292510530092986 -3764,2,-1.5271632860830804 -3765,2,-1.533424174583713 -3766,2,-1.5688402287128431 -3767,2,-1.8855028804500187 -3768,2,-1.5579387960299294 -3769,2,-1.544339546325596 -3770,2,-1.605774341746164 -3771,2,-1.6027377278265682 -3772,2,-1.6124376197893415 -3773,2,-1.9624262817758698 -3774,2,-1.9591608096820414 -3775,2,-2.242304184684698 -3776,2,-2.211770002411598 -3777,2,-2.258619702170995 -3778,2,-2.226678234586248 -3779,2,-1.6867834448092616 -3780,2,-1.6380823939697047 -3781,2,-1.832519655759577 -3782,2,-1.7577607695112996 -3783,2,-1.942173255313906 -3784,2,-1.5232565889454064 -3785,2,-1.5244476667937348 -3786,2,-1.7507139724705711 -3787,2,-1.623582766719148 -3788,2,-1.9526575961583699 -3789,2,-1.5807773776990695 -3790,2,-1.4613206632502465 -3791,2,-2.241645531631499 -3792,2,-2.1561218131863646 -3793,2,-1.567738337335757 -3794,2,-1.557077723467551 -3795,2,-1.6262562138565477 -3796,2,-1.5708610646546137 -3797,2,-1.8124822837949233 -3798,2,-1.5468205459869708 -3799,2,-1.6313882143206886 -3800,2,-2.0239992791343875 -3801,2,-2.391289757990697 -3802,2,-2.024228963624065 -3803,2,-1.9718527227338358 -3804,2,-2.003207693669043 -3805,2,-1.2983765172642123 -3806,2,-1.1954258796345771 -3807,2,-1.3904085173939575 -3808,2,-2.0030601278192064 -3809,2,-1.7356492321759018 -3810,2,-1.8502596071068318 -3811,2,-1.8001362330790194 -3812,2,-1.695146448902685 -3813,2,-1.5771922821548114 -3814,2,-1.4255504627042783 -3815,2,-1.6096376843707232 -3816,2,-1.6073546899936 -3817,2,-1.5455308106293633 -3818,2,-1.5848040069660405 -3819,2,-2.3112632842032084 -3820,2,-2.1095615077477317 -3821,2,-2.1897412172592956 -3822,2,-1.6974439773908285 -3823,2,-1.8531238135109545 -3824,2,-1.6425152193413237 -3825,2,-2.0381588056010016 -3826,2,-1.9384698311613868 -3827,2,-2.1122090302796472 -3828,2,-2.252181861684407 -3829,2,-2.078623194530721 -3830,2,-2.2888512385691246 -3831,2,-2.0926467067712937 -3832,2,-2.0715936113111417 -3833,2,-1.3678785466236574 -3834,2,-1.4849853434415314 -3835,2,-1.475093761586309 -3836,2,-1.4872158291614221 -3837,2,-1.5268017052253904 -3838,2,-1.537767231644853 -3839,2,-1.5260368153231332 -3840,2,-1.4381949238117926 -3841,2,-1.5172951871554932 -3842,2,-1.5594734249353692 -3843,2,-1.7716046296897268 -3844,2,-1.5191915643932445 -3845,2,-1.4550054256523561 -3846,2,-1.4910852003972195 -3847,2,-1.4699104957347524 -3848,2,-1.464305357304864 -3849,2,-1.4469819315898826 -3850,2,-1.4629662217545056 -3851,2,-1.5027187548726686 -3852,2,-1.4455883064122337 -3853,2,-1.5086767048667362 -3854,2,-1.5400883580755658 -3855,2,-1.4167766003638507 -3856,2,-1.5977492950149401 -3857,2,-1.6237965299007582 -3858,2,-1.6176691540837218 -3859,2,-1.7249273506226426 -3860,2,-1.5185364080033361 -3861,2,-1.9220766904409559 -3862,2,-2.2843573813595506 -3863,2,-1.6559386943493815 -3864,2,-1.7921821716775275 -3865,2,-1.5262860794821576 -3866,2,-1.6843465740958579 -3867,2,-2.075794190730651 -3868,2,-1.6686663320809545 -3869,2,-1.6497334627888474 -3870,2,-1.6611330324766238 -3871,2,-1.9875805999577882 -3872,2,-1.8865749822772657 -3873,2,-2.136329303308569 -3874,2,-2.138333380318816 -3875,2,-2.2594727544000794 -3876,2,-1.9174082812064948 -3877,2,-1.8543478104533948 -3878,2,-2.2952256246255236 -3879,2,-2.1460340840514105 -3880,2,-2.346833031217398 -3881,2,-1.630645984308803 -3882,2,-1.3276850115017338 -3883,2,-1.2798978367004272 -3884,2,-2.451767157598856 -3885,2,-2.5196431058682305 -3886,2,-1.59117306699974 -3887,2,-1.991301851394151 -3888,2,-1.7172433965542675 -3889,2,-1.2173194138935648 -3890,2,-2.0402456022871513 -3891,2,-1.364270117859505 -3892,2,-1.4509182635321691 -3893,2,-2.1961376541776603 -3894,2,-1.967076677202224 -3895,2,-1.507970283238552 -3896,2,-1.6188637254564084 -3897,2,-1.7112725960971364 -3898,2,-1.6370176434471981 -3899,2,-1.9316972811955517 -3900,2,-1.6642885160044196 -3901,2,-1.5060358215847716 -3902,2,-2.219926189392333 -3903,2,-1.903301241849583 -3904,2,-1.7511397074053183 -3905,2,-1.4053069725960607 -3906,2,-1.6000601660891673 -3907,2,-1.593195140095649 -3908,2,-1.393798324765621 -3909,2,-1.4138811946991725 -3910,2,-1.495713268310636 -3911,2,-1.499924781562875 -3912,2,-1.367933353908182 -3913,2,-1.7166146402515465 -3914,2,-2.231844161491704 -3915,2,-1.5927758961861576 -3916,2,-1.7475496165652433 -3917,2,-2.145254123326549 -3918,2,-1.8219829945205006 -3919,2,-1.4145787663520974 -3920,2,-1.807730823553902 -3921,2,-1.9148082293929278 -3922,2,-1.6169490643388233 -3923,2,-1.570665792613499 -3924,2,-1.7980718975186059 -3925,2,-1.4947044087551684 -3926,2,-1.7727280436254007 -3927,2,-1.9305567469372746 -3928,2,-1.7226317140708534 -3929,2,-1.8436588043782287 -3930,2,-1.9452002882888213 -3931,2,-1.9158928071680323 -3932,2,-1.299369114741636 -3933,2,-1.7699005786204167 -3934,2,-1.7859776571076602 +3,2,-0 +4,2,-0 +58,2,-0 +59,2,-0 +60,2,-0 +61,2,-0 +62,2,-0 +63,2,-0 +64,2,-0 +65,2,-0 +66,2,-0 +67,2,-0 +68,2,-0 +69,2,-0 +70,2,-0 +71,2,-0 +72,2,-0 +73,2,-0 +74,2,-0 +75,2,-0 +76,2,-0 +77,2,-0 +78,2,-0 +79,2,-0 +80,2,-0 +81,2,-0 +82,2,-0 +83,2,-0 +84,2,-0 +85,2,-0 +86,2,-0 +87,2,-0 +88,2,-0 +89,2,-0 +90,2,-0 +91,2,-0 +92,2,-0 +93,2,-0 +94,2,-0 +95,2,-0 +96,2,-0 +97,2,-0 +98,2,-0 +99,2,-0 +100,2,-0 +101,2,-0 +102,2,-0 +103,2,-0 +104,2,-0 +105,2,-0 +106,2,-0 +107,2,-0 +108,2,-0 +109,2,-0 +110,2,-0 +111,2,-0 +112,2,-0 +113,2,-0 +114,2,-0 +115,2,-0 +116,2,-0 +500,2,-0 +501,2,-0 +502,2,-0 +503,2,-0 +504,2,-0 +505,2,-0 +506,2,-0 +507,2,-0 +508,2,-0 +509,2,-0 +510,2,-0 +511,2,-0 +512,2,-0 +513,2,-0 +514,2,-0 +515,2,-0 +516,2,-0 +517,2,-0 +518,2,-0 +519,2,-0 +520,2,-0 +521,2,-0 +522,2,-0 +523,2,-0 +524,2,-0 +525,2,-0 +526,2,-0 +527,2,-0 +528,2,-0 +529,2,-0 +530,2,-0 +531,2,-0 +532,2,-0 +533,2,-0 +534,2,-0 +535,2,-0 +536,2,-0 +537,2,-0 +538,2,-0 +539,2,-0 +540,2,-0 +541,2,-0 +542,2,-0 +543,2,-0 +544,2,-0 +545,2,-0 +546,2,-0 +547,2,-0 +548,2,-0 +549,2,-0 +550,2,-0 +551,2,-0 +552,2,-0 +553,2,-0 +554,2,-0 +555,2,-0 +556,2,-0 +557,2,-0 +558,2,-0 +559,2,-0 +560,2,-0 +561,2,-0 +562,2,-0 +563,2,-0 +564,2,-0 +565,2,-0 +566,2,-0 +567,2,-0 +568,2,-0 +569,2,-0 +570,2,-0 +571,2,-0 +572,2,-0 +573,2,-0 +574,2,-0 +575,2,-0 +576,2,-0 +577,2,-0 +578,2,-0 +579,2,-0 +580,2,-0 +581,2,-0 +582,2,-0 +583,2,-0 +584,2,-0 +585,2,-0 +586,2,-0 +587,2,-0 +588,2,-0 +589,2,-0 +590,2,-0 +591,2,-0 +592,2,-0 +593,2,-0 +594,2,-0 +595,2,-0 +596,2,-0 +597,2,-0 +598,2,-0 +599,2,-0 +600,2,-0 +601,2,-0 +602,2,-0 +603,2,-0 +604,2,-0 +605,2,-0 +606,2,-0 +607,2,-0 +608,2,-0 +609,2,-0 +610,2,-0 +611,2,-0 +612,2,-0 +613,2,-0 +614,2,-0 +615,2,-0 +616,2,-0 +617,2,-0 +618,2,-0 +619,2,-0 +620,2,-0 +621,2,-0 +622,2,-0 +623,2,-0 +624,2,-0 +625,2,-0 +626,2,-0 +627,2,-0 +628,2,-0 +629,2,-0 +630,2,-0 +631,2,-0 +632,2,-0 +633,2,-0 +634,2,-0 +635,2,-0 +636,2,-0 +637,2,-0 +638,2,-0 +639,2,-0 +640,2,-0 +641,2,-0 +642,2,-0 +643,2,-0 +644,2,-0 +645,2,-0 +646,2,-0 +647,2,-0 +648,2,-0 +649,2,-0 +650,2,-0 +651,2,-0 +652,2,-0 +653,2,-0 +654,2,-0 +655,2,-0 +656,2,-0 +657,2,-0 +658,2,-0 +659,2,-0 +660,2,-0 +661,2,-0 +662,2,-0 +663,2,-0 +664,2,-0 +665,2,-0 +666,2,-0 +667,2,-0 +668,2,-0 +669,2,-0 +670,2,-0 +671,2,-0 +672,2,-0 +673,2,-0 +674,2,-0 +675,2,-0 +676,2,-0 +677,2,-0 +678,2,-0 +679,2,-0 +680,2,-0 +681,2,-0 +682,2,-0 +683,2,-0 +684,2,-0 +685,2,-0 +686,2,-0 +687,2,-0 +688,2,-0 +689,2,-0 +690,2,-0 +691,2,-0 +692,2,-0 +693,2,-0 +694,2,-0 +695,2,-0 +696,2,-0 +697,2,-0 +698,2,-0 +699,2,-0 +700,2,-0 +701,2,-0 +702,2,-0 +703,2,-0 +704,2,-0 +705,2,-0 +706,2,-0 +707,2,-0 +708,2,-0 +709,2,-0 +710,2,-0 +711,2,-0 +712,2,-0 +713,2,-0 +714,2,-0 +715,2,-0 +716,2,-0 +717,2,-0 +718,2,-0 +719,2,-0 +720,2,-0 +721,2,-0 +722,2,-0 +723,2,-0 +724,2,-0 +725,2,-0 +726,2,-0 +727,2,-0 +728,2,-0 +729,2,-0 +730,2,-0 +731,2,-0 +732,2,-0 +733,2,-0 +734,2,-0 +735,2,-0 +736,2,-0 +737,2,-0 +738,2,-0 +739,2,-0 +740,2,-0 +741,2,-0 +742,2,-0 +743,2,-0 +744,2,-0 +745,2,-0 +746,2,-0 +747,2,-0 +748,2,-0 +749,2,-0 +750,2,-0 +751,2,-0 +752,2,-0 +753,2,-0 +754,2,-0 +755,2,-0 +756,2,-0 +757,2,-0 +758,2,-0 +759,2,-0 +760,2,-0 +761,2,-0 +762,2,-0 +763,2,-0 +764,2,-0 +765,2,-0 +766,2,-0 +767,2,-0 +768,2,-0 +769,2,-0 +770,2,-0 +771,2,-0 +772,2,-0 +773,2,-0 +774,2,-0 +775,2,-0 +776,2,-0 +777,2,-0 +778,2,-0 +779,2,-0 +780,2,-0 +781,2,-0 +782,2,-0 +783,2,-0 +784,2,-0 +785,2,-0 +786,2,-0 +787,2,-0 +788,2,-0 +789,2,-0 +790,2,-0 +791,2,-0 +792,2,-0 +793,2,-0 +794,2,-0 +795,2,-0 +796,2,-0 +797,2,-0 +798,2,-0 +799,2,-0 +800,2,-0 +801,2,-0 +802,2,-0 +803,2,-0 +804,2,-0 +805,2,-0 +806,2,-0 +807,2,-0 +808,2,-0 +809,2,-0 +810,2,-0 +811,2,-0 +812,2,-0 +813,2,-0 +814,2,-0 +815,2,-0 +816,2,-0 +817,2,-0 +818,2,-0 +819,2,-0 +820,2,-0 +821,2,-0 +822,2,-0 +823,2,-0 +824,2,-0 +825,2,-0 +826,2,-0 +827,2,-0 +828,2,-0 +829,2,-0 +830,2,-0 +831,2,-0 +832,2,-0 +833,2,-0 +834,2,-0 +835,2,-0 +836,2,-0 +837,2,-0 +838,2,-0 +839,2,-0 +840,2,-0 +841,2,-0 +842,2,-0 +843,2,-0 +844,2,-0 +845,2,-0 +846,2,-0 +847,2,-0 +848,2,-0 +849,2,-0 +850,2,-0 +851,2,-0 +852,2,-0 +853,2,-0 +854,2,-0 +855,2,-0 +856,2,-0 +857,2,-0 +858,2,-0 +859,2,-0 +860,2,-0 +861,2,-0 +862,2,-0 +863,2,-0 +864,2,-0 +865,2,-0 +866,2,-0 +867,2,-0 +868,2,-0 +869,2,-0 +870,2,-0 +871,2,-0 +872,2,-0 +873,2,-0 +874,2,-0 +875,2,-0 +876,2,-0 +877,2,-0 +878,2,-0 +879,2,-0 +880,2,-0 +881,2,-0 +882,2,-0 +883,2,-0 +884,2,-0 +885,2,-0 +886,2,-0 +887,2,-0 +888,2,-0 +889,2,-0 +890,2,-0 +891,2,-0 +892,2,-0 +893,2,-0 +894,2,-0 +895,2,-0 +896,2,-0 +897,2,-0 +898,2,-0 +899,2,-0 +900,2,-0 +901,2,-0 +902,2,-0 +903,2,-0 +904,2,-0 +905,2,-0 +906,2,-0 +907,2,-0 +908,2,-0 +909,2,-0 +910,2,-0 +911,2,-0 +912,2,-0 +913,2,-0 +914,2,-0 +915,2,-0 +916,2,-0 +917,2,-0 +918,2,-0 +919,2,-0 +920,2,-0 +921,2,-0 +922,2,-0 +923,2,-0 +924,2,-0 +925,2,-0 +926,2,-0 +927,2,-0 +928,2,-0 +929,2,-0 +930,2,-0 +931,2,-0 +932,2,-0 +933,2,-0 +934,2,-0 +935,2,-0 +936,2,-0 +937,2,-0 +938,2,-0 +939,2,-0 +940,2,-0 +941,2,-0 +942,2,-0 +943,2,-0 +944,2,-0 +945,2,-0 +946,2,-0 +947,2,-0 +948,2,-0 +949,2,-0 +950,2,-0 +951,2,-0 +952,2,-0 +953,2,-0 +954,2,-0 +955,2,-0 +956,2,-0 +957,2,-0 +958,2,-0 +959,2,-0 +960,2,-0 +961,2,-0 +962,2,-0 +963,2,-0 +964,2,-0 +965,2,-0 +966,2,-0 +967,2,-0 +968,2,-0 +969,2,-0 +970,2,-0 +971,2,-0 +972,2,-0 +973,2,-0 +974,2,-0 +975,2,-0 +976,2,-0 +977,2,-0 +978,2,-0 +979,2,-0 +980,2,-0 +981,2,-0 +982,2,-0 +983,2,-0 +1042,2,-0.7517613339182 +1043,2,-0.7257686392359 +1044,2,-0.7014178184104 +1045,2,-0.7420304372136 +1046,2,-0.8197185119209 +1047,2,-0.8059588763762 +1048,2,-0.8241849097367 +1049,2,-0.7701800720804 +1050,2,-0.7930931803611 +1051,2,-0.8192004573853 +1052,2,-0.8167438414992 +1053,2,-0.8054680385895 +1054,2,-0.7948075848319 +1055,2,-0.8324682279742 +1056,2,-0.8403916126499 +1057,2,-0.800656582613 +1058,2,-0.8964480171605 +1059,2,-0.9236312004587 +1060,2,-0.7275043972278 +1061,2,-0.7052732894066 +1062,2,-0.7249087237852 +1063,2,-0.7727415445736 +1064,2,-0.7463918268165 +1065,2,-0.7780084651976 +1066,2,-0.7491358634624 +1067,2,-0.749665038949 +1068,2,-0.7693256094559 +1069,2,-0.7808309998519 +1070,2,-0.7867259811379 +1071,2,-0.7776149580992 +1072,2,-0.8104100219383 +1073,2,-0.8127319511241 +1074,2,-0.7861634732818 +1075,2,-0.5952328706878 +1076,2,-1.617530864097 +1077,2,-1.219437294252 +1078,2,-1.455014329859 +1079,2,-1.534378138769 +1080,2,-1.427001680374 +1081,2,-1.456190797923 +1082,2,-1.51296767165 +1083,2,-1.405234369697 +1084,2,-1.392224206659 +1085,2,-1.303753998624 +1086,2,-1.462108580674 +1087,2,-1.504504207472 +1088,2,-1.384313033126 +1089,2,-1.474121046189 +1090,2,-1.460260238081 +1091,2,-1.368403896395 +1092,2,-1.410194247948 +1093,2,-1.560558278537 +1094,2,-1.456053498721 +1095,2,-1.415915622059 +1096,2,-1.534805427671 +1097,2,-1.482610005014 +1098,2,-1.382439307143 +1099,2,-1.543803764009 +1100,2,-1.419241245461 +1101,2,-1.406917990255 +1102,2,-1.784502796748 +1103,2,-1.548607262194 +2330,2,-1.494458004076 +2331,2,-1.561905366624 +2332,2,-1.847215668385 +2335,2,-1.404174862255 +2336,2,-1.787483491817 +2339,2,-1.521685679255 +2340,2,-1.352204778744 +2341,2,-1.359685792562 +2342,2,-1.473634548358 +2343,2,-1.173785315689 +2406,2,-2.02349513061 +2407,2,-1.827368327379 +2408,2,-1.500420012048 +2409,2,-1.478188904226 +2410,2,-1.43193418987 +2411,2,-1.510105427331 +2412,2,-1.451569624249 +2413,2,-1.489022908879 +2414,2,-1.48227735557 +2415,2,-1.536855729667 +2416,2,-1.543726385453 +2417,2,-1.595336942816 +2418,2,-1.517376667696 +2419,2,-1.494582629599 +2420,2,-1.593732412465 +2421,2,-1.52619926798 +2422,2,-1.542255039802 +2423,2,-1.507005151596 +2424,2,-1.513382438067 +2425,2,-1.505204687387 +2426,2,-1.509239530716 +2427,2,-1.505733862874 +2428,2,-1.537701965543 +2429,2,-1.516436748213 +2430,2,-1.55736253605 +2431,2,-1.522536127442 +2432,2,-1.644063819861 +2433,2,-1.534041517838 +2434,2,-1.549573609417 +2435,2,-1.563579096732 +2436,2,-1.555468590703 +2437,2,-1.566113722571 +2438,2,-1.58981422515 +2439,2,-1.557002699532 +2440,2,-1.614225644949 +2441,2,-1.580421494908 +2442,2,-1.647020708789 +2443,2,-1.62075946864 +2444,2,-1.698277283653 +2445,2,-1.623081397826 +2446,2,-1.568798052968 +2447,2,-1.648312011476 +2448,2,-1.542229575125 +2449,2,-1.337059724594 +2450,2,-1.693165148811 +2451,2,-1.146129122 +2452,2,-1.220208932423 +2453,2,-1.225419782192 +2454,2,-1.209825815876 +2455,2,-1.97620542313 +2456,2,-1.580870600414 +2457,2,-1.814846296199 +2458,2,-1.485365086439 +2459,2,-1.571404590341 +2460,2,-1.433594691259 +2461,2,-1.478577659052 +2462,2,-1.384258320328 +2463,2,-1.44772397855 +2464,2,-1.354544324278 +2465,2,-1.338713662719 +2466,2,-1.506098172752 +2467,2,-1.548164132385 +2468,2,-1.529627252315 +2469,2,-1.496812240632 +2470,2,-1.335226080746 +2471,2,-1.33334576749 +2472,2,-1.565792068362 +2473,2,-1.572080434503 +2474,2,-1.481140197292 +2475,2,-1.542967020999 +2476,2,-1.480161397432 +2477,2,-1.548868227526 +2478,2,-1.479892562587 +2479,2,-1.526913183556 +2480,2,-1.436366283276 +2481,2,-1.479155018885 +2482,2,-1.452663416739 +2483,2,-1.574042540073 +2484,2,-1.583852147796 +2485,2,-1.259373285021 +2486,2,-1.472844180855 +2487,2,-1.376132656582 +2488,2,-1.384162937802 +2489,2,-1.3501399619 +2490,2,-1.493717799213 +2491,2,-1.442386580222 +2492,2,-1.621832911546 +2493,2,-1.60246484034 +2494,2,-1.568391855791 +2495,2,-1.577389087807 +2496,2,-1.629576883371 +2497,2,-1.627073801938 +2498,2,-1.613136880235 +2499,2,-1.608862759476 +2500,2,-1.652556886224 +2501,2,-1.653467678752 +2502,2,-1.684942044598 +2503,2,-1.515331526855 +2504,2,-0.9942586411402 +2505,2,-0.9567026899015 +2506,2,-1.133316366889 +2507,2,-1.356347718244 +2508,2,-0.9870533989964 +2509,2,-1.459991181014 +2510,2,-1.524603279811 +2511,2,-1.481232453131 +2512,2,-1.469513843474 +2513,2,-1.458259581344 +2514,2,-1.557817071147 +2515,2,-1.485482625752 +2516,2,-1.479122053763 +2517,2,-1.540698356469 +2518,2,-1.499633259224 +2519,2,-1.48102790515 +2520,2,-1.50740472308 +2521,2,-1.429268834787 +2522,2,-1.414119814285 +2523,2,-1.455615455903 +2524,2,-1.407926908181 +2525,2,-1.391229464565 +2526,2,-1.41336283058 +2527,2,-1.343029090414 +2528,2,-1.344837267262 +2529,2,-1.400336909867 +2530,2,-1.409150010395 +2531,2,-1.424533208311 +2532,2,-1.406918163723 +2533,2,-1.442229378676 +2534,2,-1.435748978193 +2535,2,-1.420461124193 +2536,2,-1.374481023529 +2537,2,-1.368424994063 +2538,2,-1.425461561656 +2539,2,-1.406072328908 +2540,2,-1.422399815076 +2541,2,-1.427190208344 +2542,2,-1.443806846489 +2543,2,-1.44882087202 +2544,2,-1.430757076922 +2545,2,-1.422395033208 +2546,2,-1.416328598795 +2547,2,-1.428945230548 +2548,2,-1.416778630968 +2549,2,-1.42716702309 +2550,2,-1.43362973003 +2551,2,-1.473946355063 +2552,2,-1.474092322934 +2553,2,-1.435881257234 +2554,2,-1.429432344063 +2555,2,-1.417795368263 +2556,2,-1.436668521298 +2557,2,-1.398315817602 +2558,2,-1.407602055309 +2559,2,-1.430895497092 +2560,2,-1.468603510735 +2561,2,-1.47053425136 +2562,2,-1.43223684886 +2563,2,-1.442073775734 +2564,2,-1.43009897059 +2565,2,-1.433581235529 +2566,2,-1.388184550586 +2567,2,-1.395421179182 +2568,2,-1.438848147848 +2569,2,-1.485301553759 +2570,2,-1.467783252885 +2571,2,-1.463279298378 +2572,2,-1.423116045493 +2573,2,-1.419641884503 +2574,2,-1.423381466737 +2575,2,-1.388619380701 +2576,2,-1.42940910382 +2577,2,-1.403481637911 +2578,2,-1.964042867955 +2579,2,-2.172761063045 +2580,2,-1.230993084053 +2581,2,-1.595684244202 +2582,2,-1.639833959034 +2583,2,-1.476611585912 +2584,2,-1.43307806438 +2585,2,-1.50369821014 +2586,2,-1.469860359525 +2587,2,-1.378983496604 +2588,2,-1.377441063395 +2589,2,-1.523464675953 +2590,2,-1.448586163195 +2591,2,-1.444651562415 +2592,2,-1.44717495307 +2593,2,-1.398776270364 +2594,2,-1.494359412793 +2595,2,-1.468495735887 +2596,2,-1.376566400126 +2597,2,-1.563625347 +2598,2,-1.505947267416 +2599,2,-1.572603174556 +2600,2,-1.539028547478 +2601,2,-1.455429101267 +2602,2,-1.421905119565 +2603,2,-1.460455770288 +2604,2,-1.39999725143 +2605,2,-1.640058944907 +2606,2,-1.585869707911 +2607,2,-1.631393925464 +2608,2,-1.445531267314 +2609,2,-1.359812116976 +2610,2,-1.340594705471 +2611,2,-1.401773961419 +2612,2,-1.393857602085 +2613,2,-1.616224475885 +2614,2,-1.571405873921 +2615,2,-1.596255345367 +2616,2,-1.600966524914 +2617,2,-1.591304964072 +2618,2,-1.617856044012 +2619,2,-1.620138562386 +2620,2,-1.627120267485 +2621,2,-1.61580703561 +2622,2,-1.602476426477 +2623,2,-1.555066556892 +2624,2,-1.6604802709 +2625,2,-1.756695626557 +2626,2,-1.550643403331 +2627,2,-1.669317653515 +2628,2,-2.00518023336 +2629,2,-1.500928706351 +2630,2,-1.373936800136 +2631,2,-1.402736079709 +2632,2,-1.465466484774 +2633,2,-1.528965723113 +2634,2,-1.25261619547 +2635,2,-1.501760405432 +2636,2,-1.486804941339 +2637,2,-1.421435237058 +2638,2,-1.372322894949 +2639,2,-1.491574256169 +2640,2,-1.595710285571 +2641,2,-1.643474028285 +2642,2,-1.577787597668 +2643,2,-1.677497948751 +2644,2,-1.504141223376 +2645,2,-1.374444261613 +2646,2,-1.542484294283 +2647,2,-1.45585471501 +2648,2,-1.338859544487 +2649,2,-1.671761719654 +2650,2,-1.635476326835 +2651,2,-1.552016378211 +2652,2,-1.507484710287 +2653,2,-1.532675356299 +2654,2,-1.838509218406 +2655,2,-1.437427901501 +2656,2,-1.572801329275 +2657,2,-1.593763113134 +2658,2,-1.556602790693 +2659,2,-1.625405554192 +2660,2,-1.306677521237 +2661,2,-1.027955118249 +2662,2,-1.47049205548 +2663,2,-1.571093567639 +2664,2,-1.646699870254 +2665,2,-1.636220364654 +2666,2,-1.605828254946 +2667,2,-1.627745178518 +2668,2,-1.61110128746 +2669,2,-1.530316195182 +2670,2,-1.547168064689 +2671,2,-1.520955101552 +2672,2,-1.523136511437 +2673,2,-1.50713370885 +2674,2,-1.496991374981 +2675,2,-1.493558282748 +2676,2,-1.512366343157 +2677,2,-1.58324618024 +2678,2,-1.498122819786 +2679,2,-1.678905149218 +2680,2,-1.672411290692 +2681,2,-1.585830315632 +2682,2,-1.626752976172 +2683,2,-1.622176215592 +2684,2,-1.575934039052 +2685,2,-1.632879252431 +2686,2,-1.642421134423 +2687,2,-1.578817964744 +2688,2,-1.622383272314 +2689,2,-1.641248804677 +2690,2,-1.61765981575 +2691,2,-1.701881648005 +2692,2,-1.680278067539 +2693,2,-1.659403310707 +2694,2,-1.656574035511 +2695,2,-1.854254500928 +2696,2,-1.600595655796 +2697,2,-1.953390983121 +2698,2,-1.829865460441 +2699,2,-1.935801158994 +2700,2,-1.551695978038 +2701,2,-1.730536549605 +2702,2,-1.838075820008 +2703,2,-1.47700868153 +2704,2,-1.511442884213 +2705,2,-1.37657114365 +2706,2,-1.395041143872 +2707,2,-1.361126013294 +2708,2,-1.296852972263 +2709,2,-1.864731527755 +2710,2,-1.405463160353 +2711,2,-1.43766177447 +2712,2,-1.542556593215 +2713,2,-1.470332862169 +2714,2,-1.470877487374 +2715,2,-1.507604743339 +2716,2,-1.494920927909 +2717,2,-1.492582880938 +2718,2,-1.244891801303 +2719,2,-1.400397891712 +2720,2,-1.846158823885 +2721,2,-1.589567747381 +2722,2,-1.536723176143 +2723,2,-1.682445875805 +2724,2,-1.522231918396 +2725,2,-1.498665397491 +2726,2,-1.4315443789 +2727,2,-1.437910992478 +2728,2,-1.411843827291 +2729,2,-1.342469295898 +2730,2,-1.485684292184 +2731,2,-1.428457553117 +2732,2,-1.572948147771 +2733,2,-1.510251504004 +2734,2,-1.599122060416 +2735,2,-1.600906294118 +2736,2,-1.382072118025 +2737,2,-1.372427065465 +2738,2,-1.278162170648 +2739,2,-1.435817304127 +2740,2,-1.618801784071 +2741,2,-1.654142622968 +2742,2,-1.592454121898 +2743,2,-1.591998804671 +2744,2,-1.66381591475 +2745,2,-1.66070815329 +2746,2,-1.643265277812 +2747,2,-1.611606258015 +2748,2,-1.476973049023 +2749,2,-1.43646718895 +2750,2,-1.546173304725 +2751,2,-1.566909706788 +2752,2,-1.138049680499 +2753,2,-1.177344860826 +2754,2,-1.837358725476 +2755,2,-1.673037615531 +2756,2,-1.500352657992 +2757,2,-1.505894224744 +2758,2,-1.477182226579 +2759,2,-1.46177990889 +2760,2,-1.50988415279 +2761,2,-1.410879499088 +2762,2,-1.588391987387 +2763,2,-1.548818211058 +2764,2,-1.543242243442 +2765,2,-1.621003356758 +2766,2,-1.865137672793 +2767,2,-1.26861501562 +2768,2,-1.538672280493 +2769,2,-1.658869978689 +2770,2,-1.670842497909 +2771,2,-1.61997585099 +2772,2,-1.791558233121 +2773,2,-1.614111398443 +2774,2,-1.5800146667 +2775,2,-1.675178610495 +2776,2,-1.553081605301 +2777,2,-1.502376449242 +2778,2,-1.594989721051 +2779,2,-1.469192536138 +2780,2,-1.462182460112 +2781,2,-1.481707433788 +2782,2,-1.435078855291 +2783,2,-1.416774706264 +2784,2,-1.467304362418 +2785,2,-1.420446229168 +2786,2,-1.425895115266 +2787,2,-1.43087497844 +2788,2,-1.430668192274 +2789,2,-1.423516976219 +2790,2,-1.441056677066 +2791,2,-1.421676738772 +2792,2,-1.425256500481 +2793,2,-1.434756060426 +2794,2,-1.436737338429 +2795,2,-1.450966625175 +2796,2,-1.439933028791 +2797,2,-1.458751301328 +2798,2,-1.459457129963 +2799,2,-1.451092356618 +2800,2,-1.446696512373 +2801,2,-1.425160454994 +2802,2,-1.440078242416 +2803,2,-1.41833458309 +2804,2,-1.42983304462 +2805,2,-1.415091579055 +2806,2,-1.440583978515 +2807,2,-1.440515135023 +2808,2,-1.428329830085 +2809,2,-1.432378270104 +2810,2,-1.423797525228 +2811,2,-1.428684804868 +2812,2,-1.424438821421 +2813,2,-1.434905674054 +2814,2,-1.416869821163 +2815,2,-1.440769625647 +2816,2,-1.438060599549 +2817,2,-1.431295522272 +2818,2,-1.43011571361 +2819,2,-1.420102371224 +2820,2,-1.431384223343 +2821,2,-1.419516017269 +2822,2,-1.431916684491 +2823,2,-1.428392218407 +2824,2,-1.449158401954 +2825,2,-1.466044410109 +2826,2,-1.452847867633 +2827,2,-1.483238932043 +2828,2,-1.491689276894 +2829,2,-1.478265702017 +2830,2,-1.469309746128 +2831,2,-1.420335653984 +2832,2,-1.48586866682 +2833,2,-1.403909986149 +2834,2,-1.275643520292 +2835,2,-1.182936677726 +2836,2,-1.52428417001 +2837,2,-1.405825124084 +2838,2,-1.480989588245 +2839,2,-1.536993435238 +2840,2,-1.529024207372 +2841,2,-1.452065412884 +2842,2,-1.438209971249 +2843,2,-1.399536287498 +2844,2,-1.57967541825 +2845,2,-1.538551663508 +2846,2,-1.502215964608 +2847,2,-1.58578695815 +2848,2,-1.665229391962 +2849,2,-1.666380180651 +2850,2,-1.629427165659 +2851,2,-1.6046876169 +2852,2,-1.258896258315 +2853,2,-1.162288574089 +2854,2,-1.032743994251 +2855,2,-1.349292068942 +2856,2,-1.754795717478 +2857,2,-1.532063428078 +2858,2,-1.41232722827 +2859,2,-1.503676225434 +2860,2,-1.425200617932 +2861,2,-1.375536171919 +2862,2,-1.569067923392 +2863,2,-1.475808946735 +2864,2,-1.452286884518 +2865,2,-1.463789108265 +2866,2,-1.379980124003 +2867,2,-1.262351558958 +2868,2,-1.15676813903 +2869,2,-1.862913960094 +2870,2,-1.585509959279 +2871,2,-1.612761017962 +2872,2,-1.459992661101 +2873,2,-1.499785303538 +2874,2,-1.553868728189 +2875,2,-1.381962401691 +2876,2,-1.430610490267 +2877,2,-1.484069870428 +2878,2,-1.267524577713 +2879,2,-1.661477219579 +2880,2,-1.511737769783 +2881,2,-1.774420385467 +2882,2,-1.600750814176 +2883,2,-1.755442746685 +2884,2,-1.480635051652 +2885,2,-1.565673413617 +2886,2,-1.220204795796 +2887,2,-1.171146517166 +2888,2,-1.492108895766 +2889,2,-1.483601199214 +2890,2,-1.487464968178 +2891,2,-1.694611227626 +2892,2,-2.11479153776 +2893,2,-1.365243412698 +2894,2,-1.779704186165 +2895,2,-1.460575641305 +2896,2,-1.570987187774 +2897,2,-1.540395290228 +2898,2,-1.366999741557 +2899,2,-1.507054783496 +2900,2,-1.491307115279 +2901,2,-1.485808566163 +2902,2,-1.478442519778 +2903,2,-1.459601669298 +2904,2,-1.469065876611 +2905,2,-1.473521228615 +2906,2,-1.470155963062 +2907,2,-1.471630945062 +2908,2,-1.459432207028 +2909,2,-1.486337815969 +2910,2,-1.528969922248 +2911,2,-1.45882929221 +2912,2,-1.54579758101 +2913,2,-1.483294304971 +2914,2,-1.479891886918 +2915,2,-1.557826691131 +2916,2,-1.565287377402 +2917,2,-1.517884977259 +2918,2,-1.547184946273 +2919,2,-1.611533229739 +2920,2,-1.503588291811 +2921,2,-1.634411192332 +2922,2,-1.604691098801 +2923,2,-1.567487024356 +2924,2,-1.544207489085 +2925,2,-1.681732526865 +2926,2,-1.805799966325 +2927,2,-1.507811504563 +2928,2,-1.564413526224 +2929,2,-1.518050690219 +2930,2,-1.497837026547 +2931,2,-1.549542642323 +2932,2,-1.550095152614 +2933,2,-1.520765994067 +2934,2,-1.536715104783 +2935,2,-1.555675696459 +2936,2,-1.530146464731 +2937,2,-1.52472680905 +2938,2,-1.584084667692 +2939,2,-1.583728461885 +2940,2,-1.517892367909 +2941,2,-1.526544377458 +2942,2,-1.488652749429 +2943,2,-1.497022780898 +2944,2,-1.503856691064 +2945,2,-1.473401090158 +2946,2,-1.738166957725 +2947,2,-1.825817625297 +2948,2,-1.479490538206 +2949,2,-1.561370987521 +2950,2,-1.479453465086 +2951,2,-1.521861284669 +2952,2,-1.318877841106 +2953,2,-1.42466831667 +2954,2,-1.553933882919 +2955,2,-1.544222574437 +2956,2,-1.551197875768 +2957,2,-1.53820987765 +2958,2,-1.449822176123 +2959,2,-1.49560234321 +2960,2,-1.531054176054 +2961,2,-1.581114066134 +2962,2,-2.047760453165 +2963,2,-2.039712021463 +2964,2,-1.743383372532 +2965,2,-1.465578188536 +2966,2,-1.439762498229 +2967,2,-1.419139720917 +2968,2,-1.405885900129 +2969,2,-1.335837274035 +2970,2,-1.462611312212 +2971,2,-1.227032868574 +2972,2,-1.624609955796 +2973,2,-1.655485060577 +2974,2,-1.418315274992 +2975,2,-1.451951364547 +2976,2,-1.411672892773 +2977,2,-1.609597452646 +2978,2,-1.75833302146 +2979,2,-1.692820045752 +2980,2,-1.694753694717 +2981,2,-1.810295748963 +2982,2,-1.648661537016 +2983,2,-1.56099587329 +2984,2,-1.814543632496 +2985,2,-1.498418742086 +2986,2,-1.511914894843 +2987,2,-1.592722143876 +2988,2,-1.504521899499 +2989,2,-1.463232189833 +2990,2,-1.544338768394 +2991,2,-1.44510695488 +2992,2,-1.436189022064 +2993,2,-1.433899402564 +2994,2,-1.440921834593 +2995,2,-1.44549094669 +2996,2,-1.429992096637 +2997,2,-1.446341546105 +2998,2,-1.452137726567 +2999,2,-1.439801224579 +3000,2,-1.453734933222 +3001,2,-1.450999731183 +3002,2,-1.459050572938 +3003,2,-1.447929772265 +3004,2,-1.438105181034 +3005,2,-1.443123598106 +3006,2,-1.426385238197 +3007,2,-1.422382649909 +3008,2,-1.425823881737 +3009,2,-1.418932043927 +3010,2,-1.416561083923 +3011,2,-1.439980624258 +3012,2,-1.418300873422 +3013,2,-1.414800717409 +3014,2,-1.435952969975 +3015,2,-1.415224535685 +3016,2,-1.420930180386 +3017,2,-1.418593211809 +3018,2,-1.417695941557 +3019,2,-1.418727456852 +3020,2,-1.439442676012 +3021,2,-1.42268630533 +3022,2,-1.425258327521 +3023,2,-1.441100622416 +3024,2,-1.42805605469 +3025,2,-1.417477755831 +3026,2,-1.432591825461 +3027,2,-1.424499093281 +3028,2,-1.453467121435 +3029,2,-1.412275207782 +3030,2,-1.46552210344 +3031,2,-1.46150155807 +3032,2,-1.469762575017 +3033,2,-1.470033384298 +3034,2,-1.498117583022 +3035,2,-1.452681259492 +3036,2,-1.497270202974 +3037,2,-1.602017428439 +3038,2,-1.515234614631 +3039,2,-1.529628083749 +3040,2,-1.543475073942 +3041,2,-1.506406675724 +3042,2,-1.570834579732 +3043,2,-1.281679597018 +3044,2,-1.359691486924 +3045,2,-1.573790415999 +3046,2,-1.576019617175 +3047,2,-1.243090180893 +3048,2,-1.232784320721 +3049,2,-1.219854100717 +3050,2,-1.254366134354 +3051,2,-1.795483722859 +3052,2,-1.525031049638 +3053,2,-1.571096228611 +3054,2,-1.480065816963 +3055,2,-1.478837855056 +3056,2,-1.473096350115 +3057,2,-1.436056473486 +3058,2,-1.472480075382 +3059,2,-1.590385556 +3060,2,-1.60131870744 +3061,2,-1.602498443399 +3062,2,-1.509330660389 +3063,2,-1.586772493036 +3064,2,-1.481586703717 +3065,2,-1.591908054985 +3066,2,-1.622445492391 +3067,2,-1.622457529716 +3068,2,-1.720200392156 +3069,2,-1.870571305218 +3070,2,-1.583348572645 +3071,2,-1.621627287482 +3072,2,-1.541369153697 +3073,2,-1.516197599798 +3074,2,-1.528914355125 +3075,2,-1.558871468641 +3076,2,-1.426606023792 +3077,2,-1.79056469896 +3078,2,-1.703336937077 +3079,2,-1.723460932147 +3080,2,-1.481922012844 +3081,2,-1.412236315597 +3082,2,-1.543509059795 +3083,2,-1.414670550956 +3084,2,-1.713658165988 +3085,2,-1.714337588844 +3086,2,-1.702254600991 +3087,2,-1.717900667531 +3088,2,-1.667446104198 +3089,2,-1.687182608644 +3090,2,-1.530217741843 +3091,2,-1.559759812575 +3092,2,-1.646590575553 +3093,2,-1.57384344384 +3094,2,-1.704624174958 +3095,2,-1.628152556657 +3096,2,-1.710244950405 +3097,2,-1.579556490683 +3098,2,-1.362292898041 +3099,2,-1.75450271394 +3100,2,-1.689407023773 +3101,2,-1.627751577384 +3102,2,-1.585489514532 +3103,2,-1.486743713591 +3104,2,-1.381934210235 +3105,2,-1.592493294707 +3106,2,-1.480980246102 +3107,2,-1.291203084468 +3108,2,-1.383028902524 +3109,2,-1.312251141764 +3110,2,-1.233924129315 +3111,2,-1.443484316033 +3112,2,-1.488228902954 +3113,2,-1.530400367535 +3114,2,-1.530584643608 +3115,2,-1.794124680845 +3116,2,-1.772484807639 +3117,2,-1.665000642735 +3118,2,-1.511515684407 +3119,2,-1.559102269806 +3120,2,-1.551255259899 +3121,2,-1.558851110667 +3122,2,-1.547835056819 +3123,2,-1.570131965866 +3124,2,-1.526279964094 +3125,2,-1.357186490299 +3126,2,-1.498430964157 +3127,2,-1.413505905517 +3128,2,-1.313033555275 +3129,2,-1.490517779045 +3130,2,-1.659630724404 +3131,2,-1.623095845995 +3132,2,-1.642248545875 +3133,2,-1.685695960997 +3134,2,-1.851393870788 +3135,2,-2.046389319559 +3136,2,-1.405032567762 +3137,2,-1.406361848732 +3138,2,-2.048703554126 +3139,2,-1.905586217918 +3140,2,-2.216623854005 +3141,2,-1.771430393024 +3142,2,-1.653467761376 +3143,2,-2.078474038241 +3144,2,-1.591588233136 +3145,2,-1.514861928193 +3146,2,-1.609050355559 +3147,2,-1.445712272029 +3148,2,-1.408146578714 +3149,2,-1.353351869705 +3150,2,-1.413157205603 +3151,2,-1.420405401604 +3152,2,-1.408595021692 +3153,2,-1.425645417449 +3154,2,-1.445858833194 +3155,2,-1.432839114953 +3156,2,-1.459312001091 +3157,2,-1.460811455889 +3158,2,-1.453202341225 +3159,2,-1.447619683097 +3160,2,-1.428863688349 +3161,2,-1.456660963438 +3162,2,-1.421388563211 +3163,2,-1.430665165171 +3164,2,-1.443229964861 +3165,2,-1.448824495979 +3166,2,-1.460839719191 +3167,2,-1.468094582955 +3168,2,-1.459183024913 +3169,2,-1.446571655573 +3170,2,-1.475583286145 +3171,2,-1.432712053421 +3172,2,-1.4324954689 +3173,2,-1.459780918532 +3174,2,-1.447639288402 +3175,2,-1.462623064731 +3176,2,-1.461576444089 +3177,2,-1.463249495839 +3178,2,-1.449437477635 +3179,2,-1.480183792172 +3180,2,-1.438356658488 +3181,2,-1.430933918686 +3182,2,-1.465284555351 +3183,2,-1.421195599866 +3184,2,-1.437104849755 +3185,2,-1.45460598336 +3186,2,-1.465624188835 +3187,2,-1.469113578304 +3188,2,-1.461685394278 +3189,2,-1.456052808149 +3190,2,-1.454255184862 +3191,2,-1.443159234223 +3192,2,-1.488724341277 +3193,2,-1.413107415054 +3194,2,-1.46136426384 +3195,2,-1.596550065437 +3196,2,-1.619356973091 +3197,2,-1.631698223938 +3198,2,-1.441118683367 +3199,2,-1.520865965196 +3200,2,-1.649065029296 +3201,2,-1.628005665069 +3202,2,-1.619477583787 +3203,2,-1.562971190662 +3204,2,-1.567330459597 +3205,2,-1.572825896078 +3206,2,-1.471926158729 +3207,2,-1.44556221285 +3208,2,-1.496248556257 +3209,2,-1.573539997501 +3210,2,-1.573082880815 +3211,2,-1.557587512898 +3212,2,-1.561704693012 +3213,2,-1.427216197363 +3214,2,-1.37861508949 +3215,2,-1.472754644739 +3216,2,-1.434942023796 +3217,2,-1.592865302615 +3218,2,-1.717244112135 +3219,2,-1.755185399772 +3220,2,-1.520143435671 +3221,2,-1.574728967233 +3222,2,-1.467253121097 +3223,2,-1.416162327688 +3224,2,-1.438316089096 +3225,2,-1.428203028281 +3226,2,-1.518188904219 +3227,2,-1.718496743245 +3228,2,-1.703727861846 +3229,2,-1.684186492382 +3230,2,-1.671655157126 +3231,2,-1.586619116942 +3232,2,-1.20573176492 +3233,2,-1.169174653316 +3234,2,-1.212370077481 +3235,2,-1.262646062693 +3236,2,-1.685766987507 +3237,2,-1.667632454836 +3238,2,-1.713075515871 +3239,2,-1.633226000086 +3240,2,-1.58540478707 +3241,2,-1.568976752231 +3242,2,-1.59167605883 +3243,2,-1.574177165917 +3244,2,-1.739240128892 +3245,2,-1.70942942383 +3246,2,-1.759997654949 +3247,2,-1.597233412657 +3248,2,-1.639567857941 +3249,2,-1.831578687854 +3250,2,-1.566524462014 +3251,2,-1.255876324504 +3252,2,-1.387371335821 +3253,2,-1.693678008627 +3254,2,-1.673576131389 +3255,2,-1.772435085435 +3256,2,-1.811211387659 +3257,2,-1.688091810203 +3258,2,-1.548367130722 +3259,2,-1.701702451602 +3260,2,-1.602207279759 +3261,2,-1.577320732408 +3262,2,-1.606633898689 +3263,2,-1.575296175725 +3264,2,-1.456094743298 +3265,2,-1.56992616168 +3266,2,-1.642490994176 +3267,2,-1.600858037202 +3268,2,-1.593253234174 +3269,2,-1.435035595474 +3270,2,-1.542029110998 +3271,2,-1.556004303798 +3272,2,-1.526413096566 +3273,2,-1.720765888377 +3274,2,-1.731296871184 +3275,2,-1.774369796277 +3276,2,-1.787061750368 +3277,2,-1.669244762775 +3278,2,-1.517216467383 +3279,2,-1.458885125236 +3280,2,-1.47032082076 +3281,2,-1.570971892007 +3282,2,-1.560585988868 +3283,2,-1.576945084639 +3284,2,-1.620342143169 +3285,2,-1.727440681719 +3286,2,-1.453676372402 +3287,2,-1.241484573084 +3288,2,-1.602527573428 +3289,2,-1.610396375798 +3290,2,-1.762415875258 +3291,2,-1.541710885476 +3292,2,-1.634400931574 +3293,2,-1.675896979863 +3294,2,-1.757316984011 +3295,2,-1.593240739753 +3296,2,-1.54952841413 +3297,2,-1.502084832402 +3298,2,-2.013269928038 +3299,2,-2.26412377515 +3300,2,-1.596097709045 +3301,2,-1.36183210473 +3302,2,-1.510106900799 +3303,2,-1.733892299248 +3304,2,-1.549009062966 +3305,2,-1.628001153135 +3306,2,-1.744614052384 +3307,2,-1.72420921765 +3308,2,-1.3318064744 +3309,2,-1.674236653122 +3310,2,-1.728385829601 +3311,2,-1.767959533978 +3312,2,-1.736387197391 +3313,2,-1.443721225312 +3314,2,-1.443078855303 +3315,2,-1.603322563894 +3316,2,-1.614120711764 +3317,2,-1.616378629577 +3318,2,-1.83854552273 +3319,2,-1.711156039806 +3320,2,-1.767495214293 +3321,2,-1.529330714628 +3322,2,-1.569730003464 +3323,2,-1.550550364992 +3324,2,-1.550654571675 +3325,2,-2.269091295594 +3326,2,-2.180698419128 +3327,2,-2.246213445062 +3328,2,-1.263248210045 +3329,2,-1.232483157711 +3330,2,-1.325292003013 +3331,2,-1.434853481157 +3332,2,-1.371885709146 +3333,2,-1.451849378417 +3334,2,-1.461268655859 +3335,2,-1.502919073075 +3336,2,-1.461418466387 +3337,2,-1.451178189751 +3338,2,-1.494269259288 +3339,2,-1.453137357164 +3340,2,-1.460594665 +3341,2,-1.470745917048 +3342,2,-1.46591966117 +3343,2,-1.477754210971 +3344,2,-1.491712956295 +3345,2,-1.493342227106 +3346,2,-1.488820865704 +3347,2,-1.49748535963 +3348,2,-1.484294345682 +3349,2,-1.483863479819 +3350,2,-1.473243479173 +3351,2,-1.480672481546 +3352,2,-1.49035194374 +3353,2,-1.481344604949 +3354,2,-1.492364053817 +3355,2,-1.486171331133 +3356,2,-1.502135322197 +3357,2,-1.489794902887 +3358,2,-1.489698649047 +3359,2,-1.487818592838 +3360,2,-1.48861143043 +3361,2,-1.493799553608 +3362,2,-1.492563419434 +3363,2,-1.49054372142 +3364,2,-1.475141119194 +3365,2,-1.508474483695 +3366,2,-1.466311280222 +3367,2,-1.447199020903 +3368,2,-1.473132354848 +3369,2,-1.425183471379 +3370,2,-1.451833431344 +3371,2,-1.443183447798 +3372,2,-1.471836084248 +3373,2,-1.623648216074 +3374,2,-1.466887680339 +3375,2,-1.745793801682 +3376,2,-1.772796610974 +3377,2,-1.833242418472 +3378,2,-1.725229100942 +3379,2,-1.401195218699 +3380,2,-1.388053826387 +3381,2,-1.595715090438 +3382,2,-1.486389638327 +3383,2,-1.442579364913 +3384,2,-1.668739725687 +3385,2,-1.748777994424 +3386,2,-1.455686549952 +3387,2,-1.706393888029 +3388,2,-1.603178251785 +3389,2,-1.61190815554 +3390,2,-1.893636133763 +3391,2,-1.729280482534 +3392,2,-1.730190806008 +3393,2,-1.462271133605 +3394,2,-1.816063085908 +3395,2,-1.920542693733 +3396,2,-1.866034710395 +3397,2,-1.276332600108 +3398,2,-1.733514916264 +3399,2,-1.901687892974 +3400,2,-1.518340076925 +3401,2,-1.549299331696 +3402,2,-1.715445093011 +3403,2,-1.941624487284 +3404,2,-1.829237368095 +3405,2,-1.786426634731 +3406,2,-1.780312977168 +3407,2,-1.543678951012 +3408,2,-1.578433221592 +3409,2,-1.879680874713 +3410,2,-2.073498542027 +3411,2,-1.646824228558 +3412,2,-1.618415180155 +3413,2,-1.701366813633 +3414,2,-1.606847000277 +3415,2,-1.638269412117 +3416,2,-1.487459670751 +3417,2,-1.678968112418 +3418,2,-1.293580325545 +3419,2,-1.453469252944 +3420,2,-1.435779251241 +3421,2,-1.453276766852 +3422,2,-1.59072913165 +3423,2,-1.632011869097 +3424,2,-1.596839967599 +3425,2,-1.6128986343 +3426,2,-1.768766572816 +3427,2,-2.021766916668 +3428,2,-1.905783010389 +3429,2,-2.25003789352 +3430,2,-1.619743902114 +3431,2,-1.605501272816 +3432,2,-1.516381382183 +3433,2,-1.506998539338 +3434,2,-1.442220390956 +3435,2,-1.41749677123 +3436,2,-1.763458503964 +3437,2,-1.672842902254 +3438,2,-1.703048300424 +3439,2,-1.586927347652 +3440,2,-1.988840920895 +3441,2,-1.364275003848 +3442,2,-1.510993516246 +3443,2,-1.5934873287 +3444,2,-1.609839915898 +3445,2,-1.621951515384 +3446,2,-1.591070701177 +3447,2,-1.767372388761 +3448,2,-1.845647099494 +3449,2,-1.807752481833 +3450,2,-1.53282276403 +3451,2,-1.547339014439 +3452,2,-1.645322049456 +3453,2,-1.370650369256 +3454,2,-2.500078385265 +3455,2,-1.721492234883 +3456,2,-1.729334237199 +3457,2,-2.046085693648 +3458,2,-1.812893967769 +3459,2,-1.885236458977 +3460,2,-1.834343401481 +3461,2,-1.810046191945 +3462,2,-1.49335377882 +3463,2,-1.348729205915 +3464,2,-1.477891833402 +3465,2,-1.885952680223 +3466,2,-1.74047238161 +3467,2,-1.411421751055 +3468,2,-1.727359552026 +3469,2,-1.972487362083 +3470,2,-2.088053070677 +3471,2,-1.926671537265 +3472,2,-2.00751534588 +3473,2,-1.946849018297 +3474,2,-1.661773448302 +3475,2,-1.718994236758 +3476,2,-1.630465183585 +3477,2,-1.615939298789 +3478,2,-1.619832208482 +3479,2,-1.654089369786 +3480,2,-1.369154557818 +3481,2,-1.577954130545 +3482,2,-1.675783228853 +3483,2,-1.524184354181 +3484,2,-1.852371278069 +3485,2,-1.544607618553 +3486,2,-1.473240797922 +3487,2,-1.440378316477 +3488,2,-1.589147700001 +3489,2,-1.685147037142 +3490,2,-1.691016824555 +3491,2,-1.819916736229 +3492,2,-1.655794176104 +3493,2,-1.706618922927 +3494,2,-1.605608755454 +3495,2,-1.587539664225 +3496,2,-1.507585515033 +3497,2,-1.66742513397 +3498,2,-1.49430244943 +3499,2,-1.484824209482 +3500,2,-1.490425558854 +3501,2,-1.498333940894 +3502,2,-1.548286023694 +3503,2,-1.479703269421 +3504,2,-1.542223877227 +3505,2,-1.480604101708 +3506,2,-1.597646893484 +3507,2,-1.460883582653 +3508,2,-1.450844374975 +3509,2,-1.464858885956 +3510,2,-1.459376366614 +3511,2,-1.506945219138 +3512,2,-1.437870599115 +3513,2,-1.518056474192 +3514,2,-1.521193771171 +3515,2,-1.542243173987 +3516,2,-1.513069764497 +3517,2,-1.461916208845 +3518,2,-1.54418685434 +3519,2,-1.466757289282 +3520,2,-1.518853206955 +3521,2,-1.43332163697 +3522,2,-1.529576148037 +3523,2,-1.521228512298 +3524,2,-1.558675451939 +3525,2,-1.501288985679 +3526,2,-1.434874833163 +3527,2,-1.546728858651 +3528,2,-1.424038185433 +3529,2,-1.449153056922 +3530,2,-1.396192114657 +3531,2,-1.446207329497 +3532,2,-1.470831771022 +3533,2,-1.449128939328 +3534,2,-1.615590462821 +3535,2,-1.688676825371 +3536,2,-1.532246025008 +3537,2,-1.374650367045 +3538,2,-1.20937284573 +3539,2,-1.213053202575 +3540,2,-1.199646133106 +3541,2,-1.193435449999 +3542,2,-2.273861344786 +3543,2,-2.049053567965 +3544,2,-2.268750281606 +3545,2,-1.917920369186 +3546,2,-1.981893346336 +3547,2,-1.837250736755 +3548,2,-1.769688415117 +3549,2,-1.706141862705 +3550,2,-1.923653423524 +3551,2,-1.607818179197 +3552,2,-1.601564866243 +3553,2,-1.906914914903 +3554,2,-1.573980248158 +3555,2,-1.51839532892 +3556,2,-1.455068091108 +3557,2,-1.604204354192 +3558,2,-2.516716155841 +3559,2,-2.122896287644 +3560,2,-2.591281141843 +3561,2,-2.335222084719 +3562,2,-2.227099493013 +3563,2,-2.230723627152 +3564,2,-1.592759379187 +3565,2,-1.814711943224 +3566,2,-1.167178884943 +3567,2,-1.22012359565 +3568,2,-1.694957545777 +3569,2,-1.742644980014 +3570,2,-1.762414563423 +3571,2,-1.859276579547 +3572,2,-1.973604445231 +3573,2,-1.866761595004 +3574,2,-1.837669043756 +3575,2,-1.725706324365 +3576,2,-1.593289952189 +3577,2,-1.572568355308 +3578,2,-1.7560413445 +3579,2,-1.607809931534 +3580,2,-1.58295389741 +3581,2,-1.639187761075 +3582,2,-2.409592433828 +3583,2,-1.794638816729 +3584,2,-1.87789288654 +3585,2,-1.415411116346 +3586,2,-1.301834237814 +3587,2,-1.306506370913 +3588,2,-1.296236418326 +3589,2,-1.20971468699 +3590,2,-1.417848614049 +3591,2,-1.545081020382 +3592,2,-1.78381480183 +3593,2,-2.032616712208 +3594,2,-1.860209270241 +3595,2,-2.006166736083 +3596,2,-1.965798624545 +3597,2,-1.505551334516 +3598,2,-1.422640165376 +3599,2,-1.437158528829 +3600,2,-1.55389083249 +3601,2,-1.821417911931 +3602,2,-1.786072841579 +3603,2,-1.838506732788 +3604,2,-1.882695849172 +3605,2,-2.01588848008 +3606,2,-1.731936871603 +3607,2,-1.884844825478 +3608,2,-1.858228567259 +3609,2,-1.297269269953 +3610,2,-1.929539746057 +3611,2,-1.985544384791 +3612,2,-1.929175975976 +3613,2,-2.094544201581 +3614,2,-2.066649951003 +3615,2,-2.021963208916 +3616,2,-2.183434975283 +3617,2,-1.70499114816 +3618,2,-1.627592283494 +3619,2,-1.652919493189 +3620,2,-1.938714712271 +3621,2,-2.163423915953 +3622,2,-1.871699863678 +3623,2,-1.777906702322 +3624,2,-1.716695717635 +3625,2,-2.410849173685 +3626,2,-1.907403149145 +3627,2,-1.89456485891 +3628,2,-1.86823628128 +3629,2,-1.94196144402 +3630,2,-1.605738406191 +3631,2,-1.772732844134 +3632,2,-1.53054685757 +3633,2,-1.493571373731 +3634,2,-1.529542607012 +3635,2,-1.492327324246 +3636,2,-1.508780523704 +3637,2,-1.515972875362 +3638,2,-1.576772064967 +3639,2,-1.574037535998 +3640,2,-1.5248604922 +3641,2,-1.50286930399 +3642,2,-1.482277849971 +3643,2,-1.528379234587 +3644,2,-1.465328770807 +3645,2,-1.456669150474 +3646,2,-1.517416401706 +3647,2,-1.513472872822 +3648,2,-1.5492646584 +3649,2,-1.465300406038 +3650,2,-1.548071041775 +3651,2,-1.531132271972 +3652,2,-1.503439082327 +3653,2,-1.471420610252 +3654,2,-1.475171787875 +3655,2,-1.506199849855 +3656,2,-1.548429685171 +3657,2,-1.563976459809 +3658,2,-1.526870561589 +3659,2,-1.56037750226 +3660,2,-1.5374718609 +3661,2,-1.540585223014 +3662,2,-1.453349269421 +3663,2,-1.418177944318 +3664,2,-1.445999897501 +3665,2,-1.33680728925 +3666,2,-1.476232650287 +3667,2,-1.905959125542 +3668,2,-2.041204004524 +3669,2,-1.300138872156 +3670,2,-1.230547612166 +3671,2,-1.332603949396 +3672,2,-1.366101130596 +3673,2,-1.508525409646 +3674,2,-1.289988519945 +3675,2,-1.513217672422 +3676,2,-1.853362168494 +3677,2,-1.418616020678 +3678,2,-1.511699554169 +3679,2,-1.754136263117 +3680,2,-1.924530818252 +3681,2,-1.697901199231 +3682,2,-1.628179231797 +3683,2,-1.557362208078 +3684,2,-1.572949830519 +3685,2,-1.703906774943 +3686,2,-2.134310548849 +3687,2,-2.181470244848 +3688,2,-2.145899134514 +3689,2,-1.519472896241 +3690,2,-1.675372735504 +3691,2,-1.538487961514 +3692,2,-1.76690243482 +3693,2,-1.780894242032 +3694,2,-2.326389185332 +3695,2,-2.016783918776 +3696,2,-1.790703833616 +3697,2,-1.852327319629 +3698,2,-1.711812928981 +3699,2,-1.528594953396 +3700,2,-2.166767425953 +3701,2,-1.667176959639 +3702,2,-1.589544578529 +3703,2,-1.424681187468 +3704,2,-1.480420034319 +3705,2,-2.072910833414 +3706,2,-1.959661931193 +3707,2,-1.237704275442 +3708,2,-1.221997075501 +3709,2,-1.258891750822 +3710,2,-1.298413343515 +3711,2,-1.356995589081 +3712,2,-1.479398486672 +3713,2,-1.31523628061 +3714,2,-1.562110906008 +3715,2,-1.729401134109 +3716,2,-1.61014428884 +3717,2,-2.093124660588 +3718,2,-2.019444453218 +3719,2,-1.689314854031 +3720,2,-1.629372373093 +3721,2,-1.821918886053 +3722,2,-1.795411054436 +3723,2,-1.183631978514 +3724,2,-1.58858336374 +3725,2,-1.626565494551 +3726,2,-1.582934403989 +3727,2,-1.524401112726 +3728,2,-1.358389935921 +3729,2,-1.572706657352 +3730,2,-1.804834275248 +3731,2,-1.933683727185 +3732,2,-2.024795111146 +3733,2,-1.695257076013 +3734,2,-2.145932602629 +3735,2,-2.070438185399 +3736,2,-1.478423091214 +3737,2,-1.483635189393 +3738,2,-1.388697706205 +3739,2,-2.190653207292 +3740,2,-1.507040941583 +3741,2,-1.530979634641 +3742,2,-1.481890514307 +3743,2,-1.523414052021 +3744,2,-1.493291648183 +3745,2,-1.49593762551 +3746,2,-1.499544919539 +3747,2,-1.53479756924 +3748,2,-1.516366624156 +3749,2,-1.544426190378 +3750,2,-1.54217963204 +3751,2,-1.542877645689 +3752,2,-1.498723256704 +3753,2,-1.447403501095 +3754,2,-1.500349226809 +3755,2,-1.449750391807 +3756,2,-1.464894047406 +3757,2,-1.463934541282 +3758,2,-1.484593584737 +3759,2,-1.530147626421 +3760,2,-1.477739061331 +3761,2,-1.547067160533 +3762,2,-1.528995399297 +3763,2,-1.529251053009 +3764,2,-1.527163286083 +3765,2,-1.533424174584 +3766,2,-1.568840228713 +3767,2,-1.88550288045 +3768,2,-1.55793879603 +3769,2,-1.544339546326 +3770,2,-1.605774341746 +3771,2,-1.602737727827 +3772,2,-1.612437619789 +3773,2,-1.962426281776 +3774,2,-1.959160809682 +3775,2,-2.242304184685 +3776,2,-2.211770002412 +3777,2,-2.258619702171 +3778,2,-2.226678234586 +3779,2,-1.686783444809 +3780,2,-1.63808239397 +3781,2,-1.83251965576 +3782,2,-1.757760769511 +3783,2,-1.942173255314 +3784,2,-1.523256588945 +3785,2,-1.524447666794 +3786,2,-1.750713972471 +3787,2,-1.623582766719 +3788,2,-1.952657596158 +3789,2,-1.580777377699 +3790,2,-1.46132066325 +3791,2,-2.241645531631 +3792,2,-2.156121813186 +3793,2,-1.567738337336 +3794,2,-1.557077723468 +3795,2,-1.626256213857 +3796,2,-1.570861064655 +3797,2,-1.812482283795 +3798,2,-1.546820545987 +3799,2,-1.631388214321 +3800,2,-2.023999279134 +3801,2,-2.391289757991 +3802,2,-2.024228963624 +3803,2,-1.971852722734 +3804,2,-2.003207693669 +3805,2,-1.298376517264 +3806,2,-1.195425879635 +3807,2,-1.390408517394 +3808,2,-2.003060127819 +3809,2,-1.735649232176 +3810,2,-1.850259607107 +3811,2,-1.800136233079 +3812,2,-1.695146448903 +3813,2,-1.577192282155 +3814,2,-1.425550462704 +3815,2,-1.609637684371 +3816,2,-1.607354689994 +3817,2,-1.545530810629 +3818,2,-1.584804006966 +3819,2,-2.311263284203 +3820,2,-2.109561507748 +3821,2,-2.189741217259 +3822,2,-1.697443977391 +3823,2,-1.853123813511 +3824,2,-1.642515219341 +3825,2,-2.038158805601 +3826,2,-1.938469831161 +3827,2,-2.11220903028 +3828,2,-2.252181861684 +3829,2,-2.078623194531 +3830,2,-2.288851238569 +3831,2,-2.092646706771 +3832,2,-2.071593611311 +3833,2,-1.367878546624 +3834,2,-1.484985343442 +3835,2,-1.475093761586 +3836,2,-1.487215829161 +3837,2,-1.526801705225 +3838,2,-1.537767231645 +3839,2,-1.526036815323 +3840,2,-1.438194923812 +3841,2,-1.517295187155 +3842,2,-1.559473424935 +3843,2,-1.77160462969 +3844,2,-1.519191564393 +3845,2,-1.455005425652 +3846,2,-1.491085200397 +3847,2,-1.469910495735 +3848,2,-1.464305357305 +3849,2,-1.44698193159 +3850,2,-1.462966221755 +3851,2,-1.502718754873 +3852,2,-1.445588306412 +3853,2,-1.508676704867 +3854,2,-1.540088358076 +3855,2,-1.416776600364 +3856,2,-1.597749295015 +3857,2,-1.623796529901 +3858,2,-1.617669154084 +3859,2,-1.724927350623 +3860,2,-1.518536408003 +3861,2,-1.922076690441 +3862,2,-2.28435738136 +3863,2,-1.655938694349 +3864,2,-1.792182171678 +3865,2,-1.526286079482 +3866,2,-1.684346574096 +3867,2,-2.075794190731 +3868,2,-1.668666332081 +3869,2,-1.649733462789 +3870,2,-1.661133032477 +3871,2,-1.987580599958 +3872,2,-1.886574982277 +3873,2,-2.136329303309 +3874,2,-2.138333380319 +3875,2,-2.2594727544 +3876,2,-1.917408281206 +3877,2,-1.854347810453 +3878,2,-2.295225624626 +3879,2,-2.146034084051 +3880,2,-2.346833031217 +3881,2,-1.630645984309 +3882,2,-1.327685011502 +3883,2,-1.2798978367 +3884,2,-2.451767157599 +3885,2,-2.519643105868 +3886,2,-1.591173067 +3887,2,-1.991301851394 +3888,2,-1.717243396554 +3889,2,-1.217319413894 +3890,2,-2.040245602287 +3891,2,-1.36427011786 +3892,2,-1.450918263532 +3893,2,-2.196137654178 +3894,2,-1.967076677202 +3895,2,-1.507970283239 +3896,2,-1.618863725456 +3897,2,-1.711272596097 +3898,2,-1.637017643447 +3899,2,-1.931697281196 +3900,2,-1.664288516004 +3901,2,-1.506035821585 +3902,2,-2.219926189392 +3903,2,-1.90330124185 +3904,2,-1.751139707405 +3905,2,-1.405306972596 +3906,2,-1.600060166089 +3907,2,-1.593195140096 +3908,2,-1.393798324766 +3909,2,-1.413881194699 +3910,2,-1.495713268311 +3911,2,-1.499924781563 +3912,2,-1.367933353908 +3913,2,-1.716614640252 +3914,2,-2.231844161492 +3915,2,-1.592775896186 +3916,2,-1.747549616565 +3917,2,-2.145254123327 +3918,2,-1.821982994521 +3919,2,-1.414578766352 +3920,2,-1.807730823554 +3921,2,-1.914808229393 +3922,2,-1.616949064339 +3923,2,-1.570665792613 +3924,2,-1.798071897519 +3925,2,-1.494704408755 +3926,2,-1.772728043625 +3927,2,-1.930556746937 +3928,2,-1.722631714071 +3929,2,-1.843658804378 +3930,2,-1.945200288289 +3931,2,-1.915892807168 +3932,2,-1.299369114742 +3933,2,-1.76990057862 +3934,2,-1.785977657108 diff --git a/src/Mod/Fem/femtest/data/calculix/material_multiple_bendingbeam_fiveboxes.inp b/src/Mod/Fem/femtest/data/calculix/material_multiple_bendingbeam_fiveboxes.inp index 80667ad7f9..517770b828 100644 --- a/src/Mod/Fem/femtest/data/calculix/material_multiple_bendingbeam_fiveboxes.inp +++ b/src/Mod/Fem/femtest/data/calculix/material_multiple_bendingbeam_fiveboxes.inp @@ -27652,1525 +27652,1525 @@ ConstraintFixed,3 *CLOAD ** ConstraintForce ** node loads on shape: Box1:Face6 -17,3,-0.0 -19,3,-0.0 -22,3,-0.0 -23,3,-0.0 -406,3,-0.0 -407,3,-0.0 -408,3,-0.0 -409,3,-0.0 -410,3,-5.569444444448354 -411,3,-4.448173740406444 -412,3,-6.692809797200002 -413,3,-4.2684508864278445 -414,3,-5.56944444445502 -461,3,-0.0 -462,3,-0.0 -463,3,-0.0 -464,3,-0.0 -465,3,-0.0 -466,3,-0.0 -467,3,-0.0 -468,3,-0.0 -469,3,-0.0 -470,3,-5.569444444448354 -471,3,-5.469344307366667 -472,3,-5.469344307366668 -473,3,-4.977899749640001 -474,3,-5.728188473903334 -475,3,-3.6278547238066676 -476,3,-5.054111765570002 -477,3,-5.054111765570002 -478,3,-4.162835361193334 -479,3,-5.269152117963333 -480,3,-0.0 -481,3,-0.0 -482,3,-0.0 -483,3,-0.0 -484,3,-0.0 -485,3,-0.0 -486,3,-0.0 -487,3,-0.0 -488,3,-0.0 -489,3,-5.569444444466707 -490,3,-5.491082822852937 -491,3,-5.491082822852935 -492,3,-5.972276458585068 -493,3,-5.619255599214048 -494,3,-3.6221834996000037 -495,3,-5.05411176547177 -496,3,-5.054111765583335 -497,3,-4.162835361200004 -498,3,-5.269152117936833 -499,3,-0.0 -500,3,-0.0 -501,3,-0.0 -502,3,-0.0 -503,3,-5.269152117989462 -504,3,-4.1206990067671 -505,3,-5.014770039333338 -506,3,-4.120699006833325 -507,3,-5.269152117986828 -4409,3,-0.0 -4410,3,-0.0 -4411,3,-0.0 -4412,3,-0.0 -4413,3,-0.0 -4414,3,-0.0 -4415,3,-0.0 -4416,3,-0.0 -4417,3,-0.0 -4418,3,-0.0 -4419,3,-0.0 -4420,3,-0.0 -4421,3,-0.0 -4422,3,-0.0 -4423,3,-0.0 -4424,3,-0.0 -4425,3,-0.0 -4426,3,-0.0 -4427,3,-0.0 -4428,3,-0.0 -4429,3,-0.0 -4430,3,-0.0 -4431,3,-0.0 -4432,3,-0.0 -4433,3,-0.0 -4434,3,-0.0 -4435,3,-0.0 -4436,3,-0.0 -4437,3,-0.0 -4438,3,-0.0 -4439,3,-0.0 -4440,3,-0.0 -4441,3,-0.0 -4442,3,-0.0 -4443,3,-0.0 -4444,3,-0.0 -4445,3,-0.0 -4446,3,-0.0 -4447,3,-0.0 -4448,3,-0.0 -4449,3,-0.0 -4450,3,-0.0 -4451,3,-0.0 -4452,3,-0.0 -4453,3,-0.0 -4454,3,-0.0 -4455,3,-0.0 -4456,3,-0.0 -4457,3,-0.0 -4458,3,-0.0 -4459,3,-0.0 -4460,3,-0.0 -4461,3,-0.0 -4462,3,-0.0 -4463,3,-0.0 -4464,3,-0.0 -4465,3,-0.0 -4466,3,-9.626054191298042 -4467,3,-11.138888888896709 -4468,3,-12.115785600127513 -4469,3,-9.35933869964351 -4470,3,-11.138888888921727 -4471,3,-11.969444466632819 -4472,3,-8.894590961207191 -4473,3,-10.538304235952795 -4474,3,-8.98274016804374 -4475,3,-8.894590961167097 -4476,3,-10.538304235923661 -4477,3,-8.982740168054276 -4478,3,-9.610303256298177 -4479,3,-8.504783487256132 -4480,3,-7.832175442286246 -4481,3,-11.57914015083904 -4482,3,-11.854939313091734 -4483,3,-10.097455552709393 -4484,3,-8.058345141616334 -4485,3,-9.154781240066884 -4486,3,-9.331688383075718 -4487,3,-7.165745440603582 -4488,3,-10.938688614733334 -4489,3,-12.015685463045827 -4490,3,-12.1788507794515 -4491,3,-12.627684295291067 -4492,3,-9.866986765059638 -4493,3,-10.840708960440647 -4494,3,-11.171151173962157 -4495,3,-13.021149198725047 -4496,3,-11.434035767592079 -4497,3,-9.892791289221936 -4498,3,-10.61727548932297 -4499,3,-10.521158141897933 -4500,3,-7.2917612956142195 -4501,3,-7.7924575391252695 -4502,3,-7.993257127927368 -4503,3,-10.108223531140004 -4504,3,-10.517624963770977 -4505,3,-9.160032417011402 -4506,3,-9.127419770008528 -4507,3,-6.553864279131277 -4508,3,-11.828844546081916 -4509,3,-7.78827420443719 -4510,3,-8.836760587962642 -4511,3,-8.447070260865612 -4512,3,-11.448658007281221 -4513,3,-11.37721213581439 -4514,3,-6.687962445224343 -4515,3,-10.982165645705873 -4516,3,-11.89108284501905 -4517,3,-11.468476200690343 -4518,3,-11.277962406719782 -4519,3,-11.784689080309779 -4520,3,-11.450222555081863 -4521,3,-10.886160071135961 -4522,3,-11.264825680363646 -4523,3,-9.807896196705183 -4524,3,-9.715817580991747 -4525,3,-11.431668220938757 -4526,3,-11.167584545443694 -4527,3,-7.284239493190094 -4528,3,-7.718745481377704 -4529,3,-7.9176838267770595 -4530,3,-10.108223531055105 -4531,3,-10.517624963660241 -4532,3,-9.160032416998897 -4533,3,-9.125569191778563 -4534,3,-6.555384948386638 -4535,3,-11.828844546065566 -4536,3,-7.7882742044302695 -4537,3,-8.836760587966126 -4538,3,-8.447070260862425 -4539,3,-11.448658007248351 -4540,3,-11.377212135784706 -4541,3,-6.6879624452107524 -4542,3,-8.483621473647075 -4543,3,-7.83428705682138 -4544,3,-7.241309341778089 -4545,3,-9.377692506213315 -4546,3,-9.377692506213315 -4547,3,-10.501714633289236 -4548,3,-7.834287056900772 -4549,3,-8.483621473713303 -4550,3,-10.502726535739368 -4551,3,-7.241309341791254 -4552,3,-10.940413089639806 -4553,3,-9.598971939207113 -4554,3,-11.827052164925506 -4555,3,-7.753436068168512 -4556,3,-8.243345002164547 -4557,3,-10.570695717803133 -4558,3,-11.601400018398722 -4559,3,-9.82742757312514 -4560,3,-8.95393044814638 -4561,3,-10.40763440197895 -4562,3,-7.537160613337728 -4563,3,-10.495107986642989 -4564,3,-9.459394154549331 -4565,3,-9.532120269382553 -4566,3,-8.969297401685933 -4567,3,-8.298998574112902 -4568,3,-9.859137773554629 -4569,3,-8.539706699485059 -4570,3,-9.00946639807014 -4571,3,-6.835668636076791 -4572,3,-9.141462424552275 -4573,3,-6.758150870938513 -4574,3,-9.199339394522214 -4575,3,-7.452597530940128 -4576,3,-8.2989985741129 -4577,3,-9.596943649400707 -4578,3,-9.492478312513033 -4579,3,-10.57168568499452 -4580,3,-11.520074602221325 -4581,3,-9.455653209307583 -4582,3,-8.966533065213497 -4583,3,-9.641885001485416 -4584,3,-10.02848371665434 -4585,3,-7.358779755794567 -4586,3,-7.500896584421706 -4587,3,-8.667558859266524 -4588,3,-10.524867292934646 -4589,3,-8.204368991964689 -4590,3,-8.567589775744029 -4591,3,-6.7186120199324915 -4592,3,-7.746277486571393 -4593,3,-6.444360097507013 -4594,3,-9.416700033661614 -4595,3,-10.075818015207345 -4596,3,-10.546544679231468 -4597,3,-9.179394410762866 -4598,3,-9.810229526187113 -4599,3,-9.44506892177233 -4600,3,-9.18229880885837 -4601,3,-9.020545756012414 -4602,3,-9.076732749249029 -4603,3,-9.756783367970842 -4604,3,-9.050596191696748 -4605,3,-10.381696899090647 -4606,3,-7.770626024405195 -4607,3,-6.590244893704297 -4608,3,-6.590244893704295 -4609,3,-7.775749908472318 -4610,3,-6.835668636076791 -4611,3,-8.545489916835855 -4612,3,-9.863944382136111 -4613,3,-9.02037349948806 -4614,3,-10.387832685607902 -4615,3,-7.194444718552161 -4616,3,-7.809143500249738 -4617,3,-6.714450799795907 -4618,3,-5.895401513605357 -4619,3,-6.2084956221105925 -4620,3,-7.912194302480592 -4621,3,-8.700453442029492 -4622,3,-7.738501871790588 -4623,3,-7.0721782043827375 -4624,3,-8.757853752528627 -4625,3,-8.52546909487272 -4626,3,-8.945101825285017 -4627,3,-10.333262157478126 -4628,3,-8.757171222393927 -4629,3,-8.516722833050398 -4630,3,-9.139803285648261 -4631,3,-11.738499319108213 -4632,3,-10.886510736552912 -4633,3,-10.782584759007623 -4634,3,-10.313513943964988 -4635,3,-10.226615603987693 -4636,3,-9.843697836475025 -4637,3,-10.32060975575299 -4638,3,-9.796764214154187 -4639,3,-8.455467088844388 -4640,3,-8.710891732254217 -4641,3,-10.057267286134152 -4642,3,-9.4080753192089 -4643,3,-8.01878657386967 -4644,3,-6.824519372240888 -4645,3,-11.763086887745162 -4646,3,-11.764098790195291 -4647,3,-10.934792227569616 -4648,3,-10.154933555331652 -4649,3,-9.920978678589835 -4650,3,-7.8212092148517725 -4651,3,-8.991454441051218 -4652,3,-8.444327363939323 -4653,3,-9.747789084702726 -4654,3,-9.77859339344761 -4655,3,-10.24594753614439 -4656,3,-9.407149254546212 -4657,3,-8.24890468547053 -4658,3,-7.193817699478614 -4659,3,-6.762773323367787 -4660,3,-8.274973018929224 -4661,3,-6.839862572992859 -4662,3,-9.889357205169741 -4663,3,-9.476617149083664 +17,3,-0 +19,3,-0 +22,3,-0 +23,3,-0 +406,3,-0 +407,3,-0 +408,3,-0 +409,3,-0 +410,3,-5.569444444448 +411,3,-4.448173740406 +412,3,-6.6928097972 +413,3,-4.268450886428 +414,3,-5.569444444455 +461,3,-0 +462,3,-0 +463,3,-0 +464,3,-0 +465,3,-0 +466,3,-0 +467,3,-0 +468,3,-0 +469,3,-0 +470,3,-5.569444444448 +471,3,-5.469344307367 +472,3,-5.469344307367 +473,3,-4.97789974964 +474,3,-5.728188473903 +475,3,-3.627854723807 +476,3,-5.05411176557 +477,3,-5.05411176557 +478,3,-4.162835361193 +479,3,-5.269152117963 +480,3,-0 +481,3,-0 +482,3,-0 +483,3,-0 +484,3,-0 +485,3,-0 +486,3,-0 +487,3,-0 +488,3,-0 +489,3,-5.569444444467 +490,3,-5.491082822853 +491,3,-5.491082822853 +492,3,-5.972276458585 +493,3,-5.619255599214 +494,3,-3.6221834996 +495,3,-5.054111765472 +496,3,-5.054111765583 +497,3,-4.1628353612 +498,3,-5.269152117937 +499,3,-0 +500,3,-0 +501,3,-0 +502,3,-0 +503,3,-5.269152117989 +504,3,-4.120699006767 +505,3,-5.014770039333 +506,3,-4.120699006833 +507,3,-5.269152117987 +4409,3,-0 +4410,3,-0 +4411,3,-0 +4412,3,-0 +4413,3,-0 +4414,3,-0 +4415,3,-0 +4416,3,-0 +4417,3,-0 +4418,3,-0 +4419,3,-0 +4420,3,-0 +4421,3,-0 +4422,3,-0 +4423,3,-0 +4424,3,-0 +4425,3,-0 +4426,3,-0 +4427,3,-0 +4428,3,-0 +4429,3,-0 +4430,3,-0 +4431,3,-0 +4432,3,-0 +4433,3,-0 +4434,3,-0 +4435,3,-0 +4436,3,-0 +4437,3,-0 +4438,3,-0 +4439,3,-0 +4440,3,-0 +4441,3,-0 +4442,3,-0 +4443,3,-0 +4444,3,-0 +4445,3,-0 +4446,3,-0 +4447,3,-0 +4448,3,-0 +4449,3,-0 +4450,3,-0 +4451,3,-0 +4452,3,-0 +4453,3,-0 +4454,3,-0 +4455,3,-0 +4456,3,-0 +4457,3,-0 +4458,3,-0 +4459,3,-0 +4460,3,-0 +4461,3,-0 +4462,3,-0 +4463,3,-0 +4464,3,-0 +4465,3,-0 +4466,3,-9.626054191298 +4467,3,-11.1388888889 +4468,3,-12.11578560013 +4469,3,-9.359338699644 +4470,3,-11.13888888892 +4471,3,-11.96944446663 +4472,3,-8.894590961207 +4473,3,-10.53830423595 +4474,3,-8.982740168044 +4475,3,-8.894590961167 +4476,3,-10.53830423592 +4477,3,-8.982740168054 +4478,3,-9.610303256298 +4479,3,-8.504783487256 +4480,3,-7.832175442286 +4481,3,-11.57914015084 +4482,3,-11.85493931309 +4483,3,-10.09745555271 +4484,3,-8.058345141616 +4485,3,-9.154781240067 +4486,3,-9.331688383076 +4487,3,-7.165745440604 +4488,3,-10.93868861473 +4489,3,-12.01568546305 +4490,3,-12.17885077945 +4491,3,-12.62768429529 +4492,3,-9.86698676506 +4493,3,-10.84070896044 +4494,3,-11.17115117396 +4495,3,-13.02114919873 +4496,3,-11.43403576759 +4497,3,-9.892791289222 +4498,3,-10.61727548932 +4499,3,-10.5211581419 +4500,3,-7.291761295614 +4501,3,-7.792457539125 +4502,3,-7.993257127927 +4503,3,-10.10822353114 +4504,3,-10.51762496377 +4505,3,-9.160032417011 +4506,3,-9.127419770009 +4507,3,-6.553864279131 +4508,3,-11.82884454608 +4509,3,-7.788274204437 +4510,3,-8.836760587963 +4511,3,-8.447070260866 +4512,3,-11.44865800728 +4513,3,-11.37721213581 +4514,3,-6.687962445224 +4515,3,-10.98216564571 +4516,3,-11.89108284502 +4517,3,-11.46847620069 +4518,3,-11.27796240672 +4519,3,-11.78468908031 +4520,3,-11.45022255508 +4521,3,-10.88616007114 +4522,3,-11.26482568036 +4523,3,-9.807896196705 +4524,3,-9.715817580992 +4525,3,-11.43166822094 +4526,3,-11.16758454544 +4527,3,-7.28423949319 +4528,3,-7.718745481378 +4529,3,-7.917683826777 +4530,3,-10.10822353106 +4531,3,-10.51762496366 +4532,3,-9.160032416999 +4533,3,-9.125569191779 +4534,3,-6.555384948387 +4535,3,-11.82884454607 +4536,3,-7.78827420443 +4537,3,-8.836760587966 +4538,3,-8.447070260862 +4539,3,-11.44865800725 +4540,3,-11.37721213578 +4541,3,-6.687962445211 +4542,3,-8.483621473647 +4543,3,-7.834287056821 +4544,3,-7.241309341778 +4545,3,-9.377692506213 +4546,3,-9.377692506213 +4547,3,-10.50171463329 +4548,3,-7.834287056901 +4549,3,-8.483621473713 +4550,3,-10.50272653574 +4551,3,-7.241309341791 +4552,3,-10.94041308964 +4553,3,-9.598971939207 +4554,3,-11.82705216493 +4555,3,-7.753436068169 +4556,3,-8.243345002165 +4557,3,-10.5706957178 +4558,3,-11.6014000184 +4559,3,-9.827427573125 +4560,3,-8.953930448146 +4561,3,-10.40763440198 +4562,3,-7.537160613338 +4563,3,-10.49510798664 +4564,3,-9.459394154549 +4565,3,-9.532120269383 +4566,3,-8.969297401686 +4567,3,-8.298998574113 +4568,3,-9.859137773555 +4569,3,-8.539706699485 +4570,3,-9.00946639807 +4571,3,-6.835668636077 +4572,3,-9.141462424552 +4573,3,-6.758150870939 +4574,3,-9.199339394522 +4575,3,-7.45259753094 +4576,3,-8.298998574113 +4577,3,-9.596943649401 +4578,3,-9.492478312513 +4579,3,-10.57168568499 +4580,3,-11.52007460222 +4581,3,-9.455653209308 +4582,3,-8.966533065213 +4583,3,-9.641885001485 +4584,3,-10.02848371665 +4585,3,-7.358779755795 +4586,3,-7.500896584422 +4587,3,-8.667558859267 +4588,3,-10.52486729293 +4589,3,-8.204368991965 +4590,3,-8.567589775744 +4591,3,-6.718612019932 +4592,3,-7.746277486571 +4593,3,-6.444360097507 +4594,3,-9.416700033662 +4595,3,-10.07581801521 +4596,3,-10.54654467923 +4597,3,-9.179394410763 +4598,3,-9.810229526187 +4599,3,-9.445068921772 +4600,3,-9.182298808858 +4601,3,-9.020545756012 +4602,3,-9.076732749249 +4603,3,-9.756783367971 +4604,3,-9.050596191697 +4605,3,-10.38169689909 +4606,3,-7.770626024405 +4607,3,-6.590244893704 +4608,3,-6.590244893704 +4609,3,-7.775749908472 +4610,3,-6.835668636077 +4611,3,-8.545489916836 +4612,3,-9.863944382136 +4613,3,-9.020373499488 +4614,3,-10.38783268561 +4615,3,-7.194444718552 +4616,3,-7.80914350025 +4617,3,-6.714450799796 +4618,3,-5.895401513605 +4619,3,-6.208495622111 +4620,3,-7.912194302481 +4621,3,-8.700453442029 +4622,3,-7.738501871791 +4623,3,-7.072178204383 +4624,3,-8.757853752529 +4625,3,-8.525469094873 +4626,3,-8.945101825285 +4627,3,-10.33326215748 +4628,3,-8.757171222394 +4629,3,-8.51672283305 +4630,3,-9.139803285648 +4631,3,-11.73849931911 +4632,3,-10.88651073655 +4633,3,-10.78258475901 +4634,3,-10.31351394396 +4635,3,-10.22661560399 +4636,3,-9.843697836475 +4637,3,-10.32060975575 +4638,3,-9.796764214154 +4639,3,-8.455467088844 +4640,3,-8.710891732254 +4641,3,-10.05726728613 +4642,3,-9.408075319209 +4643,3,-8.01878657387 +4644,3,-6.824519372241 +4645,3,-11.76308688775 +4646,3,-11.7640987902 +4647,3,-10.93479222757 +4648,3,-10.15493355533 +4649,3,-9.92097867859 +4650,3,-7.821209214852 +4651,3,-8.991454441051 +4652,3,-8.444327363939 +4653,3,-9.747789084703 +4654,3,-9.778593393448 +4655,3,-10.24594753614 +4656,3,-9.407149254546 +4657,3,-8.248904685471 +4658,3,-7.193817699479 +4659,3,-6.762773323368 +4660,3,-8.274973018929 +4661,3,-6.839862572993 +4662,3,-9.88935720517 +4663,3,-9.476617149084 ** node loads on shape: Box2:Face6 -2,3,-0.0 -4,3,-0.0 -22,3,-0.0 -23,3,-0.0 -43,3,-0.0 -44,3,-0.0 -45,3,-0.0 -46,3,-0.0 -47,3,-5.5694444446420155 -48,3,-4.3711646419271615 -49,3,-6.703045430740325 -50,3,-4.255370802063468 -51,3,-5.569444444500001 -499,3,-0.0 -500,3,-0.0 -501,3,-0.0 -502,3,-0.0 -503,3,-5.56944444450835 -504,3,-4.371164641906154 -505,3,-6.703045430740309 -506,3,-4.255370802166663 -507,3,-5.569444444541347 -564,3,-0.0 -565,3,-0.0 -566,3,-0.0 -567,3,-0.0 -568,3,-0.0 -569,3,-0.0 -570,3,-0.0 -571,3,-0.0 -572,3,-0.0 -573,3,-5.569444444440001 -574,3,-5.261619159736668 -575,3,-5.261619159736668 -576,3,-5.337212586663333 -577,3,-5.021215350833335 -578,3,-5.582527932726667 -579,3,-5.5466145080633344 -580,3,-5.261619159736668 -581,3,-5.261619159736668 -582,3,-5.569444444440001 -602,3,-0.0 -603,3,-0.0 -604,3,-0.0 -605,3,-0.0 -606,3,-0.0 -607,3,-0.0 -608,3,-0.0 -609,3,-0.0 -610,3,-0.0 -611,3,-5.569444444591976 -612,3,-5.261619159733329 -613,3,-5.261619159733333 +2,3,-0 +4,3,-0 +22,3,-0 +23,3,-0 +43,3,-0 +44,3,-0 +45,3,-0 +46,3,-0 +47,3,-5.569444444642 +48,3,-4.371164641927 +49,3,-6.70304543074 +50,3,-4.255370802063 +51,3,-5.5694444445 +499,3,-0 +500,3,-0 +501,3,-0 +502,3,-0 +503,3,-5.569444444508 +504,3,-4.371164641906 +505,3,-6.70304543074 +506,3,-4.255370802167 +507,3,-5.569444444541 +564,3,-0 +565,3,-0 +566,3,-0 +567,3,-0 +568,3,-0 +569,3,-0 +570,3,-0 +571,3,-0 +572,3,-0 +573,3,-5.56944444444 +574,3,-5.261619159737 +575,3,-5.261619159737 +576,3,-5.337212586663 +577,3,-5.021215350833 +578,3,-5.582527932727 +579,3,-5.546614508063 +580,3,-5.261619159737 +581,3,-5.261619159737 +582,3,-5.56944444444 +602,3,-0 +603,3,-0 +604,3,-0 +605,3,-0 +606,3,-0 +607,3,-0 +608,3,-0 +609,3,-0 +610,3,-0 +611,3,-5.569444444592 +612,3,-5.261619159733 +613,3,-5.261619159733 614,3,-5.27617441685 -615,3,-5.038884182466666 -616,3,-5.165394597599998 -617,3,-5.594699809533334 -618,3,-5.261619159733333 -619,3,-5.261619159733333 +615,3,-5.038884182467 +616,3,-5.1653945976 +617,3,-5.594699809533 +618,3,-5.261619159733 +619,3,-5.261619159733 620,3,-5.56944444445 -5745,3,-0.0 -5746,3,-0.0 -5747,3,-0.0 -5748,3,-0.0 -5749,3,-0.0 -5750,3,-0.0 -5751,3,-0.0 -5752,3,-0.0 -5753,3,-0.0 -5754,3,-0.0 -5755,3,-0.0 -5756,3,-0.0 -5757,3,-0.0 -5758,3,-0.0 -5759,3,-0.0 -5760,3,-0.0 -5761,3,-0.0 -5762,3,-0.0 -5763,3,-0.0 -5764,3,-0.0 -5765,3,-0.0 -5766,3,-0.0 -5767,3,-0.0 -5768,3,-0.0 -5769,3,-0.0 -5770,3,-0.0 -5771,3,-0.0 -5772,3,-0.0 -5773,3,-0.0 -5774,3,-0.0 -5775,3,-0.0 -5776,3,-0.0 -5777,3,-0.0 -5778,3,-0.0 -5779,3,-0.0 -5780,3,-0.0 -5781,3,-0.0 -5782,3,-0.0 -5783,3,-0.0 -5784,3,-0.0 -5785,3,-0.0 -5786,3,-0.0 -5787,3,-0.0 -5788,3,-0.0 -5789,3,-0.0 -5790,3,-0.0 -5791,3,-0.0 -5792,3,-0.0 -5793,3,-0.0 -5794,3,-0.0 -5795,3,-0.0 -5796,3,-0.0 -5797,3,-0.0 -5798,3,-9.424848761336506 -5799,3,-11.138888889082017 -5800,3,-11.44178427463891 -5801,3,-9.363263425653836 -5802,3,-11.138888888950003 -5803,3,-11.441784274511289 -5804,3,-9.424848761244183 -5805,3,-11.138888888948351 -5806,3,-11.441784274641911 -5807,3,-9.363263425653832 -5808,3,-11.138888889133323 -5809,3,-11.441784274653264 -5810,3,-9.670981857469766 -5811,3,-8.226568958621652 -5812,3,-7.497585640011778 -5813,3,-11.630124697880209 -5814,3,-12.00286264628293 -5815,3,-10.6972233492923 -5816,3,-8.049189783217303 -5817,3,-9.182450069203353 -5818,3,-9.385722588348887 -5819,3,-7.119542717396222 -5820,3,-9.670981857442932 -5821,3,-8.226568958641987 -5822,3,-7.4975856400531224 -5823,3,-11.630124697880206 -5824,3,-12.002862646277086 -5825,3,-10.697223349286457 -5826,3,-8.049189783279148 -5827,3,-9.18245006930656 -5828,3,-9.385722588348887 -5829,3,-7.1195427173548795 -5830,3,-10.523238319473336 -5831,3,-11.133958989938575 -5832,3,-10.326374040218447 -5833,3,-11.61708706936507 -5834,3,-9.672416375800776 -5835,3,-11.019360932333692 -5836,3,-10.656711799011108 -5837,3,-12.037616255298762 -5838,3,-10.52550234753954 -5839,3,-10.101178326079301 -5840,3,-9.356419139970777 -5841,3,-8.599707597506212 -5842,3,-10.278931948196618 -5843,3,-11.127065671282146 -5844,3,-10.303969903067893 -5845,3,-10.624500713801444 -5846,3,-9.744836637329701 -5847,3,-10.90207107594629 -5848,3,-10.243018523533285 -5849,3,-8.773654182944089 -5850,3,-10.523238319473336 -5851,3,-11.617087069184395 -5852,3,-9.995610094074287 -5853,3,-11.710924477330684 -5854,3,-10.525502347358868 -5855,3,-11.133958989935577 -5856,3,-10.326374040215443 -5857,3,-10.523238319466664 -5858,3,-11.133958989794616 -5859,3,-10.630601948761173 -5860,3,-11.287957834116177 -5861,3,-9.199670707003504 -5862,3,-10.114431455241272 -5863,3,-9.001813136738116 -5864,3,-10.864595712774118 -5865,3,-11.019442668925315 -5866,3,-12.283410316469377 -5867,3,-8.96238047262017 -5868,3,-7.866383883128826 -5869,3,-9.428816176304272 -5870,3,-12.4322332352644 -5871,3,-13.331436662362501 -5872,3,-14.511364771667113 -5873,3,-13.520734669954173 -5874,3,-10.33837475113222 -5875,3,-9.85812138823761 -5876,3,-8.216557855345874 -5877,3,-10.523238319466666 -5878,3,-11.254989799743564 -5879,3,-8.846605049675018 -5880,3,-10.737045581609117 -5881,3,-11.25614826531449 -5882,3,-11.133958989794621 -5883,3,-10.63060194876117 -5884,3,-12.250659961415796 -5885,3,-12.331142920211093 -5886,3,-10.709154834222904 -5887,3,-8.624068647927674 -5888,3,-9.337132605187604 -5889,3,-10.686103018444774 -5890,3,-9.4699653275408 -5891,3,-8.119353485922485 -5892,3,-8.886794413043246 -5893,3,-8.991273845370213 -5894,3,-10.046641930271372 -5895,3,-9.866515914792178 -5896,3,-10.451777427195525 -5897,3,-9.108411379929176 -5898,3,-8.609566003179296 -5899,3,-10.42198607951885 -5900,3,-8.508701540813247 -5901,3,-9.079916307965451 -5902,3,-8.864570993371684 -5903,3,-10.033379154233495 -5904,3,-8.814767744177606 -5905,3,-9.067088593443552 -5906,3,-9.969767378538174 -5907,3,-9.674595987920043 -5908,3,-8.959467339774031 -5909,3,-9.514347375231008 -5910,3,-8.832165378192732 -5911,3,-8.222556949072144 -5912,3,-8.267903322764791 -5913,3,-8.305366927666347 -5914,3,-8.868270286383538 -5915,3,-10.219096128926783 -5916,3,-12.169519532091709 -5917,3,-10.454873779603355 -5918,3,-9.648624919472015 -5919,3,-9.128312769610574 -5920,3,-9.629690527536438 -5921,3,-8.615275020478698 -5922,3,-7.991412627306555 -5923,3,-8.212081132678076 -5924,3,-12.105170388749961 -5925,3,-9.902305944821931 -5926,3,-10.04740091310085 -5927,3,-7.784367057451391 -5928,3,-9.362000408187802 -5929,3,-8.08398585494227 -5930,3,-10.46212204537292 -5931,3,-11.936639155343054 -5932,3,-10.0177343013397 -5933,3,-9.422266030840586 -5934,3,-8.623714631529378 -5935,3,-9.197372168410993 -5936,3,-7.969559654487951 -5937,3,-9.640167516064695 -5938,3,-8.37273749733036 -5939,3,-8.548762013457717 -5940,3,-9.133263691768203 -5941,3,-10.03413296616625 -5942,3,-10.049657473275852 -5943,3,-9.367090451487279 -5944,3,-8.627072960215628 -5945,3,-9.76746030520224 -5946,3,-13.001981513974506 -5947,3,-11.189428657649005 -5948,3,-9.039587457066968 -5949,3,-8.096215533333828 -5950,3,-9.958070032002947 -5951,3,-9.863511529574266 -5952,3,-8.997745163657122 -5953,3,-9.022384317560658 -5954,3,-7.9641136719354195 -5955,3,-7.94119614893634 -5956,3,-9.4699653275408 -5957,3,-7.5151298939691005 -5958,3,-10.418211896669353 -5959,3,-9.190278785986031 -5960,3,-9.249485177108474 -5961,3,-7.944970398156274 -5962,3,-8.356584716416556 -5963,3,-7.877724513736592 -5964,3,-7.508812031576306 -5965,3,-10.960345259214714 -5966,3,-12.250659961415787 -5967,3,-10.709154834222907 -5968,3,-12.331142920211075 -5969,3,-8.624068647927674 -5970,3,-10.351693091295353 -5971,3,-12.45353028903634 -5972,3,-11.189428657649003 -5973,3,-9.03958745706698 -5974,3,-13.088242720930664 -5975,3,-10.688591852701638 -5976,3,-10.336927052064475 -5977,3,-7.784367057451386 -5978,3,-8.08398585494228 -5979,3,-9.568570240546043 -5980,3,-9.803412116388625 -5981,3,-8.09621553333382 -5982,3,-8.392802570166342 -5983,3,-9.222350466361968 +5745,3,-0 +5746,3,-0 +5747,3,-0 +5748,3,-0 +5749,3,-0 +5750,3,-0 +5751,3,-0 +5752,3,-0 +5753,3,-0 +5754,3,-0 +5755,3,-0 +5756,3,-0 +5757,3,-0 +5758,3,-0 +5759,3,-0 +5760,3,-0 +5761,3,-0 +5762,3,-0 +5763,3,-0 +5764,3,-0 +5765,3,-0 +5766,3,-0 +5767,3,-0 +5768,3,-0 +5769,3,-0 +5770,3,-0 +5771,3,-0 +5772,3,-0 +5773,3,-0 +5774,3,-0 +5775,3,-0 +5776,3,-0 +5777,3,-0 +5778,3,-0 +5779,3,-0 +5780,3,-0 +5781,3,-0 +5782,3,-0 +5783,3,-0 +5784,3,-0 +5785,3,-0 +5786,3,-0 +5787,3,-0 +5788,3,-0 +5789,3,-0 +5790,3,-0 +5791,3,-0 +5792,3,-0 +5793,3,-0 +5794,3,-0 +5795,3,-0 +5796,3,-0 +5797,3,-0 +5798,3,-9.424848761337 +5799,3,-11.13888888908 +5800,3,-11.44178427464 +5801,3,-9.363263425654 +5802,3,-11.13888888895 +5803,3,-11.44178427451 +5804,3,-9.424848761244 +5805,3,-11.13888888895 +5806,3,-11.44178427464 +5807,3,-9.363263425654 +5808,3,-11.13888888913 +5809,3,-11.44178427465 +5810,3,-9.67098185747 +5811,3,-8.226568958622 +5812,3,-7.497585640012 +5813,3,-11.63012469788 +5814,3,-12.00286264628 +5815,3,-10.69722334929 +5816,3,-8.049189783217 +5817,3,-9.182450069203 +5818,3,-9.385722588349 +5819,3,-7.119542717396 +5820,3,-9.670981857443 +5821,3,-8.226568958642 +5822,3,-7.497585640053 +5823,3,-11.63012469788 +5824,3,-12.00286264628 +5825,3,-10.69722334929 +5826,3,-8.049189783279 +5827,3,-9.182450069307 +5828,3,-9.385722588349 +5829,3,-7.119542717355 +5830,3,-10.52323831947 +5831,3,-11.13395898994 +5832,3,-10.32637404022 +5833,3,-11.61708706937 +5834,3,-9.672416375801 +5835,3,-11.01936093233 +5836,3,-10.65671179901 +5837,3,-12.0376162553 +5838,3,-10.52550234754 +5839,3,-10.10117832608 +5840,3,-9.356419139971 +5841,3,-8.599707597506 +5842,3,-10.2789319482 +5843,3,-11.12706567128 +5844,3,-10.30396990307 +5845,3,-10.6245007138 +5846,3,-9.74483663733 +5847,3,-10.90207107595 +5848,3,-10.24301852353 +5849,3,-8.773654182944 +5850,3,-10.52323831947 +5851,3,-11.61708706918 +5852,3,-9.995610094074 +5853,3,-11.71092447733 +5854,3,-10.52550234736 +5855,3,-11.13395898994 +5856,3,-10.32637404022 +5857,3,-10.52323831947 +5858,3,-11.13395898979 +5859,3,-10.63060194876 +5860,3,-11.28795783412 +5861,3,-9.199670707004 +5862,3,-10.11443145524 +5863,3,-9.001813136738 +5864,3,-10.86459571277 +5865,3,-11.01944266893 +5866,3,-12.28341031647 +5867,3,-8.96238047262 +5868,3,-7.866383883129 +5869,3,-9.428816176304 +5870,3,-12.43223323526 +5871,3,-13.33143666236 +5872,3,-14.51136477167 +5873,3,-13.52073466995 +5874,3,-10.33837475113 +5875,3,-9.858121388238 +5876,3,-8.216557855346 +5877,3,-10.52323831947 +5878,3,-11.25498979974 +5879,3,-8.846605049675 +5880,3,-10.73704558161 +5881,3,-11.25614826531 +5882,3,-11.13395898979 +5883,3,-10.63060194876 +5884,3,-12.25065996142 +5885,3,-12.33114292021 +5886,3,-10.70915483422 +5887,3,-8.624068647928 +5888,3,-9.337132605188 +5889,3,-10.68610301844 +5890,3,-9.469965327541 +5891,3,-8.119353485922 +5892,3,-8.886794413043 +5893,3,-8.99127384537 +5894,3,-10.04664193027 +5895,3,-9.866515914792 +5896,3,-10.4517774272 +5897,3,-9.108411379929 +5898,3,-8.609566003179 +5899,3,-10.42198607952 +5900,3,-8.508701540813 +5901,3,-9.079916307965 +5902,3,-8.864570993372 +5903,3,-10.03337915423 +5904,3,-8.814767744178 +5905,3,-9.067088593444 +5906,3,-9.969767378538 +5907,3,-9.67459598792 +5908,3,-8.959467339774 +5909,3,-9.514347375231 +5910,3,-8.832165378193 +5911,3,-8.222556949072 +5912,3,-8.267903322765 +5913,3,-8.305366927666 +5914,3,-8.868270286384 +5915,3,-10.21909612893 +5916,3,-12.16951953209 +5917,3,-10.4548737796 +5918,3,-9.648624919472 +5919,3,-9.128312769611 +5920,3,-9.629690527536 +5921,3,-8.615275020479 +5922,3,-7.991412627307 +5923,3,-8.212081132678 +5924,3,-12.10517038875 +5925,3,-9.902305944822 +5926,3,-10.0474009131 +5927,3,-7.784367057451 +5928,3,-9.362000408188 +5929,3,-8.083985854942 +5930,3,-10.46212204537 +5931,3,-11.93663915534 +5932,3,-10.01773430134 +5933,3,-9.422266030841 +5934,3,-8.623714631529 +5935,3,-9.197372168411 +5936,3,-7.969559654488 +5937,3,-9.640167516065 +5938,3,-8.37273749733 +5939,3,-8.548762013458 +5940,3,-9.133263691768 +5941,3,-10.03413296617 +5942,3,-10.04965747328 +5943,3,-9.367090451487 +5944,3,-8.627072960216 +5945,3,-9.767460305202 +5946,3,-13.00198151397 +5947,3,-11.18942865765 +5948,3,-9.039587457067 +5949,3,-8.096215533334 +5950,3,-9.958070032003 +5951,3,-9.863511529574 +5952,3,-8.997745163657 +5953,3,-9.022384317561 +5954,3,-7.964113671935 +5955,3,-7.941196148936 +5956,3,-9.469965327541 +5957,3,-7.515129893969 +5958,3,-10.41821189667 +5959,3,-9.190278785986 +5960,3,-9.249485177108 +5961,3,-7.944970398156 +5962,3,-8.356584716417 +5963,3,-7.877724513737 +5964,3,-7.508812031576 +5965,3,-10.96034525921 +5966,3,-12.25065996142 +5967,3,-10.70915483422 +5968,3,-12.33114292021 +5969,3,-8.624068647928 +5970,3,-10.3516930913 +5971,3,-12.45353028904 +5972,3,-11.18942865765 +5973,3,-9.039587457067 +5974,3,-13.08824272093 +5975,3,-10.6885918527 +5976,3,-10.33692705206 +5977,3,-7.784367057451 +5978,3,-8.083985854942 +5979,3,-9.568570240546 +5980,3,-9.803412116389 +5981,3,-8.096215533334 +5982,3,-8.392802570166 +5983,3,-9.222350466362 ** node loads on shape: Box3:Face6 -2,3,-0.0 -4,3,-0.0 -6,3,-0.0 -8,3,-0.0 -43,3,-0.0 -44,3,-0.0 -45,3,-0.0 -46,3,-0.0 -47,3,-5.5694444446420155 -48,3,-4.3711646419271615 -49,3,-6.703045430740325 -50,3,-4.255370802063468 -51,3,-5.569444444500001 -89,3,-0.0 -90,3,-0.0 -91,3,-0.0 -92,3,-0.0 -93,3,-0.0 -94,3,-0.0 -95,3,-0.0 -96,3,-0.0 -97,3,-0.0 -98,3,-5.569444444440001 -99,3,-5.261619159736668 -100,3,-5.261619159736668 -101,3,-5.337212586663333 -102,3,-5.0212153508333435 -103,3,-5.021350004306668 -104,3,-5.577551643663334 -105,3,-5.261619159736331 -106,3,-5.261619159736668 -107,3,-5.569444444440001 -136,3,-0.0 -137,3,-0.0 -138,3,-0.0 -139,3,-0.0 -140,3,-0.0 -141,3,-0.0 -142,3,-0.0 -143,3,-0.0 -144,3,-0.0 +2,3,-0 +4,3,-0 +6,3,-0 +8,3,-0 +43,3,-0 +44,3,-0 +45,3,-0 +46,3,-0 +47,3,-5.569444444642 +48,3,-4.371164641927 +49,3,-6.70304543074 +50,3,-4.255370802063 +51,3,-5.5694444445 +89,3,-0 +90,3,-0 +91,3,-0 +92,3,-0 +93,3,-0 +94,3,-0 +95,3,-0 +96,3,-0 +97,3,-0 +98,3,-5.56944444444 +99,3,-5.261619159737 +100,3,-5.261619159737 +101,3,-5.337212586663 +102,3,-5.021215350833 +103,3,-5.021350004307 +104,3,-5.577551643663 +105,3,-5.261619159736 +106,3,-5.261619159737 +107,3,-5.56944444444 +136,3,-0 +137,3,-0 +138,3,-0 +139,3,-0 +140,3,-0 +141,3,-0 +142,3,-0 +143,3,-0 +144,3,-0 145,3,-5.56944444445 -146,3,-5.261619159733333 -147,3,-5.261619159733333 +146,3,-5.261619159733 +147,3,-5.261619159733 148,3,-5.27617441685 -149,3,-4.835514662733323 -150,3,-5.582527932733332 -151,3,-5.5466145080666704 -152,3,-5.261619159733333 -153,3,-5.261619159733333 -154,3,-5.569444444324693 -155,3,-0.0 -156,3,-0.0 -157,3,-0.0 -158,3,-0.0 -159,3,-5.569444444508355 -160,3,-4.2553708021666745 -161,3,-6.703045430740325 -162,3,-4.371164641906139 -163,3,-5.569444444541353 -1252,3,-0.0 -1253,3,-0.0 -1254,3,-0.0 -1255,3,-0.0 -1256,3,-0.0 -1257,3,-0.0 -1258,3,-0.0 -1259,3,-0.0 -1260,3,-0.0 -1261,3,-0.0 -1262,3,-0.0 -1263,3,-0.0 -1264,3,-0.0 -1265,3,-0.0 -1266,3,-0.0 -1267,3,-0.0 -1268,3,-0.0 -1269,3,-0.0 -1270,3,-0.0 -1271,3,-0.0 -1272,3,-0.0 -1273,3,-0.0 -1274,3,-0.0 -1275,3,-0.0 -1276,3,-0.0 -1277,3,-0.0 -1278,3,-0.0 -1279,3,-0.0 -1280,3,-0.0 -1281,3,-0.0 -1282,3,-0.0 -1283,3,-0.0 -1284,3,-0.0 -1285,3,-0.0 -1286,3,-0.0 -1287,3,-0.0 -1288,3,-0.0 -1289,3,-0.0 -1290,3,-0.0 -1291,3,-0.0 -1292,3,-0.0 -1293,3,-0.0 -1294,3,-0.0 -1295,3,-0.0 -1296,3,-0.0 -1297,3,-0.0 -1298,3,-0.0 -1299,3,-0.0 -1300,3,-0.0 -1301,3,-0.0 -1302,3,-0.0 -1303,3,-0.0 -1304,3,-0.0 -1305,3,-11.441784274537985 -1306,3,-11.138888888866047 -1307,3,-9.424848761183359 -1308,3,-9.424848761336506 -1309,3,-11.138888889082017 -1310,3,-11.44178427463891 -1311,3,-9.363263425653836 -1312,3,-11.138888888950003 -1313,3,-11.441784274653262 -1314,3,-11.441784274641906 -1315,3,-11.138888888948356 -1316,3,-9.363263425662188 -1317,3,-9.670981857463937 -1318,3,-8.226568958621652 -1319,3,-7.497585640011778 -1320,3,-11.630124697943662 -1321,3,-12.002862646277102 -1322,3,-10.697223349286471 -1323,3,-8.049189783217303 -1324,3,-9.182450069266807 -1325,3,-9.385722588412339 -1326,3,-7.1195427173962225 -1327,3,-10.523238319473336 -1328,3,-11.133958989935577 -1329,3,-10.326374040205412 -1330,3,-11.617087069184395 -1331,3,-9.672416375800758 -1332,3,-11.019360932383021 -1333,3,-10.656711799060446 -1334,3,-12.037616255167418 -1335,3,-10.525502347358868 -1336,3,-11.041584821599237 -1337,3,-9.356419139970766 -1338,3,-8.599707597506214 -1339,3,-9.181543114305235 -1340,3,-11.428101157575885 -1341,3,-12.033295992303483 -1342,3,-12.42712062403511 -1343,3,-11.011635775836812 -1344,3,-10.312991148206853 -1345,3,-9.737744753661902 -1346,3,-8.152854264100089 -1347,3,-10.523238319473 -1348,3,-11.254989799739217 -1349,3,-8.840598382851184 -1350,3,-10.728810144546406 -1351,3,-11.255992204845564 -1352,3,-11.133958989938572 -1353,3,-10.630601948901788 -1354,3,-10.523238319466666 -1355,3,-11.133958989936595 -1356,3,-10.630601948903145 -1357,3,-11.287957834116177 -1358,3,-9.002482625598992 -1359,3,-10.114431455241279 -1360,3,-9.001813136738134 -1361,3,-10.864595712774124 -1362,3,-11.019442668925306 -1363,3,-11.042756415270619 -1364,3,-8.561822871482315 -1365,3,-7.636396142604173 -1366,3,-10.27893194833742 -1367,3,-12.359915402159283 -1368,3,-11.948265994971809 -1369,3,-12.984629221963246 -1370,3,-11.78730562770001 -1371,3,-10.902071075763898 -1372,3,-10.24301852367076 -1373,3,-8.773654183078227 -1374,3,-10.523238319466666 -1375,3,-11.617087069369065 -1376,3,-9.995610093888558 -1377,3,-11.710924477332957 -1378,3,-10.52550234754687 -1379,3,-11.133958989946624 -1380,3,-10.326374040229823 -1381,3,-9.182450069399577 -1382,3,-8.049189783320507 -1383,3,-7.119542717396222 -1384,3,-12.0028626462771 -1385,3,-11.630124697973224 -1386,3,-9.385722588441903 -1387,3,-8.226568958548146 -1388,3,-9.670981857442914 -1389,3,-10.69722334928647 -1390,3,-7.497585639959295 -1391,3,-8.222556949072144 -1392,3,-8.267903322764791 -1393,3,-8.619345411703344 -1394,3,-8.99917531946051 -1395,3,-7.94119614893634 -1396,3,-8.868270286383538 -1397,3,-8.305366927666347 -1398,3,-10.351693091295353 -1399,3,-9.469965327540804 -1400,3,-7.515267407112746 -1401,3,-12.25065996141579 -1402,3,-8.212081132678076 -1403,3,-8.392802570166362 -1404,3,-8.356584716416574 -1405,3,-9.222350466361966 -1406,3,-9.803412116388623 -1407,3,-11.833663165152876 -1408,3,-10.077016440986764 -1409,3,-10.870500976437764 -1410,3,-8.899879092046776 -1411,3,-8.842745127759263 -1412,3,-11.505879684456142 -1413,3,-10.109202161937711 -1414,3,-8.91409635956375 -1415,3,-9.381904061090601 -1416,3,-8.750136338791751 -1417,3,-12.453712920879918 -1418,3,-11.189428657649001 -1419,3,-12.331142920211075 -1420,3,-9.03958745706698 -1421,3,-8.624068647927672 -1422,3,-8.09621553333382 -1423,3,-10.709154834222907 -1424,3,-9.469965327540804 -1425,3,-12.250659961415787 -1426,3,-10.686103018444777 -1427,3,-12.331142920211075 -1428,3,-10.709154834222907 -1429,3,-9.33713260518759 -1430,3,-8.624068647917644 -1431,3,-9.424242214853727 -1432,3,-8.795599794542253 -1433,3,-8.63738045266289 -1434,3,-8.971445849147335 -1435,3,-10.328483871331565 -1436,3,-9.36324218562862 -1437,3,-9.046646700447193 -1438,3,-9.024486393864514 -1439,3,-9.11705675274971 -1440,3,-13.00198151397448 -1441,3,-11.189428657649003 -1442,3,-10.960345259214714 -1443,3,-13.088242720930646 -1444,3,-7.944970398156275 -1445,3,-7.508812031576325 -1446,3,-7.877724513736612 -1447,3,-10.688591852701636 -1448,3,-10.33692705206448 -1449,3,-7.784367057451391 -1450,3,-9.03958745706698 -1451,3,-8.372737497330345 -1452,3,-9.249485177108465 -1453,3,-8.548762013457685 -1454,3,-8.837386915781988 -1455,3,-8.627072960215624 -1456,3,-10.133532146124173 -1457,3,-9.296027036830166 -1458,3,-9.66484234770287 -1459,3,-10.797801489587425 -1460,3,-12.264946805637562 -1461,3,-10.457598863207325 -1462,3,-8.08398585494227 -1463,3,-9.568570240546043 -1464,3,-10.418532041656576 -1465,3,-12.105248144551675 -1466,3,-10.047158294714011 -1467,3,-9.902201068780068 -1468,3,-7.784367057451391 -1469,3,-9.490151809017895 -1470,3,-9.637966376862291 -1471,3,-9.629690527536438 -1472,3,-9.190278785986038 -1473,3,-9.530662197161135 -1474,3,-8.615275020478688 -1475,3,-8.134702049077775 -1476,3,-8.887880059197135 -1477,3,-8.990802641793039 -1478,3,-10.045342745732153 -1479,3,-9.866222111985623 -1480,3,-9.870734448060915 -1481,3,-9.143971951358786 -1482,3,-8.022204324871634 -1483,3,-9.619205993135788 -1484,3,-11.767266197716355 -1485,3,-8.54433801879057 -1486,3,-7.958612968186402 -1487,3,-7.964923105579531 -1488,3,-8.083985854942272 -1489,3,-9.361862665842828 -1490,3,-8.096215533323791 +149,3,-4.835514662733 +150,3,-5.582527932733 +151,3,-5.546614508067 +152,3,-5.261619159733 +153,3,-5.261619159733 +154,3,-5.569444444325 +155,3,-0 +156,3,-0 +157,3,-0 +158,3,-0 +159,3,-5.569444444508 +160,3,-4.255370802167 +161,3,-6.70304543074 +162,3,-4.371164641906 +163,3,-5.569444444541 +1252,3,-0 +1253,3,-0 +1254,3,-0 +1255,3,-0 +1256,3,-0 +1257,3,-0 +1258,3,-0 +1259,3,-0 +1260,3,-0 +1261,3,-0 +1262,3,-0 +1263,3,-0 +1264,3,-0 +1265,3,-0 +1266,3,-0 +1267,3,-0 +1268,3,-0 +1269,3,-0 +1270,3,-0 +1271,3,-0 +1272,3,-0 +1273,3,-0 +1274,3,-0 +1275,3,-0 +1276,3,-0 +1277,3,-0 +1278,3,-0 +1279,3,-0 +1280,3,-0 +1281,3,-0 +1282,3,-0 +1283,3,-0 +1284,3,-0 +1285,3,-0 +1286,3,-0 +1287,3,-0 +1288,3,-0 +1289,3,-0 +1290,3,-0 +1291,3,-0 +1292,3,-0 +1293,3,-0 +1294,3,-0 +1295,3,-0 +1296,3,-0 +1297,3,-0 +1298,3,-0 +1299,3,-0 +1300,3,-0 +1301,3,-0 +1302,3,-0 +1303,3,-0 +1304,3,-0 +1305,3,-11.44178427454 +1306,3,-11.13888888887 +1307,3,-9.424848761183 +1308,3,-9.424848761337 +1309,3,-11.13888888908 +1310,3,-11.44178427464 +1311,3,-9.363263425654 +1312,3,-11.13888888895 +1313,3,-11.44178427465 +1314,3,-11.44178427464 +1315,3,-11.13888888895 +1316,3,-9.363263425662 +1317,3,-9.670981857464 +1318,3,-8.226568958622 +1319,3,-7.497585640012 +1320,3,-11.63012469794 +1321,3,-12.00286264628 +1322,3,-10.69722334929 +1323,3,-8.049189783217 +1324,3,-9.182450069267 +1325,3,-9.385722588412 +1326,3,-7.119542717396 +1327,3,-10.52323831947 +1328,3,-11.13395898994 +1329,3,-10.32637404021 +1330,3,-11.61708706918 +1331,3,-9.672416375801 +1332,3,-11.01936093238 +1333,3,-10.65671179906 +1334,3,-12.03761625517 +1335,3,-10.52550234736 +1336,3,-11.0415848216 +1337,3,-9.356419139971 +1338,3,-8.599707597506 +1339,3,-9.181543114305 +1340,3,-11.42810115758 +1341,3,-12.0332959923 +1342,3,-12.42712062404 +1343,3,-11.01163577584 +1344,3,-10.31299114821 +1345,3,-9.737744753662 +1346,3,-8.1528542641 +1347,3,-10.52323831947 +1348,3,-11.25498979974 +1349,3,-8.840598382851 +1350,3,-10.72881014455 +1351,3,-11.25599220485 +1352,3,-11.13395898994 +1353,3,-10.6306019489 +1354,3,-10.52323831947 +1355,3,-11.13395898994 +1356,3,-10.6306019489 +1357,3,-11.28795783412 +1358,3,-9.002482625599 +1359,3,-10.11443145524 +1360,3,-9.001813136738 +1361,3,-10.86459571277 +1362,3,-11.01944266893 +1363,3,-11.04275641527 +1364,3,-8.561822871482 +1365,3,-7.636396142604 +1366,3,-10.27893194834 +1367,3,-12.35991540216 +1368,3,-11.94826599497 +1369,3,-12.98462922196 +1370,3,-11.7873056277 +1371,3,-10.90207107576 +1372,3,-10.24301852367 +1373,3,-8.773654183078 +1374,3,-10.52323831947 +1375,3,-11.61708706937 +1376,3,-9.995610093889 +1377,3,-11.71092447733 +1378,3,-10.52550234755 +1379,3,-11.13395898995 +1380,3,-10.32637404023 +1381,3,-9.1824500694 +1382,3,-8.049189783321 +1383,3,-7.119542717396 +1384,3,-12.00286264628 +1385,3,-11.63012469797 +1386,3,-9.385722588442 +1387,3,-8.226568958548 +1388,3,-9.670981857443 +1389,3,-10.69722334929 +1390,3,-7.497585639959 +1391,3,-8.222556949072 +1392,3,-8.267903322765 +1393,3,-8.619345411703 +1394,3,-8.999175319461 +1395,3,-7.941196148936 +1396,3,-8.868270286384 +1397,3,-8.305366927666 +1398,3,-10.3516930913 +1399,3,-9.469965327541 +1400,3,-7.515267407113 +1401,3,-12.25065996142 +1402,3,-8.212081132678 +1403,3,-8.392802570166 +1404,3,-8.356584716417 +1405,3,-9.222350466362 +1406,3,-9.803412116389 +1407,3,-11.83366316515 +1408,3,-10.07701644099 +1409,3,-10.87050097644 +1410,3,-8.899879092047 +1411,3,-8.842745127759 +1412,3,-11.50587968446 +1413,3,-10.10920216194 +1414,3,-8.914096359564 +1415,3,-9.381904061091 +1416,3,-8.750136338792 +1417,3,-12.45371292088 +1418,3,-11.18942865765 +1419,3,-12.33114292021 +1420,3,-9.039587457067 +1421,3,-8.624068647928 +1422,3,-8.096215533334 +1423,3,-10.70915483422 +1424,3,-9.469965327541 +1425,3,-12.25065996142 +1426,3,-10.68610301844 +1427,3,-12.33114292021 +1428,3,-10.70915483422 +1429,3,-9.337132605188 +1430,3,-8.624068647918 +1431,3,-9.424242214854 +1432,3,-8.795599794542 +1433,3,-8.637380452663 +1434,3,-8.971445849147 +1435,3,-10.32848387133 +1436,3,-9.363242185629 +1437,3,-9.046646700447 +1438,3,-9.024486393865 +1439,3,-9.11705675275 +1440,3,-13.00198151397 +1441,3,-11.18942865765 +1442,3,-10.96034525921 +1443,3,-13.08824272093 +1444,3,-7.944970398156 +1445,3,-7.508812031576 +1446,3,-7.877724513737 +1447,3,-10.6885918527 +1448,3,-10.33692705206 +1449,3,-7.784367057451 +1450,3,-9.039587457067 +1451,3,-8.37273749733 +1452,3,-9.249485177108 +1453,3,-8.548762013458 +1454,3,-8.837386915782 +1455,3,-8.627072960216 +1456,3,-10.13353214612 +1457,3,-9.29602703683 +1458,3,-9.664842347703 +1459,3,-10.79780148959 +1460,3,-12.26494680564 +1461,3,-10.45759886321 +1462,3,-8.083985854942 +1463,3,-9.568570240546 +1464,3,-10.41853204166 +1465,3,-12.10524814455 +1466,3,-10.04715829471 +1467,3,-9.90220106878 +1468,3,-7.784367057451 +1469,3,-9.490151809018 +1470,3,-9.637966376862 +1471,3,-9.629690527536 +1472,3,-9.190278785986 +1473,3,-9.530662197161 +1474,3,-8.615275020479 +1475,3,-8.134702049078 +1476,3,-8.887880059197 +1477,3,-8.990802641793 +1478,3,-10.04534274573 +1479,3,-9.866222111986 +1480,3,-9.870734448061 +1481,3,-9.143971951359 +1482,3,-8.022204324872 +1483,3,-9.619205993136 +1484,3,-11.76726619772 +1485,3,-8.544338018791 +1486,3,-7.958612968186 +1487,3,-7.96492310558 +1488,3,-8.083985854942 +1489,3,-9.361862665843 +1490,3,-8.096215533324 ** node loads on shape: Box4:Face6 -6,3,-0.0 -8,3,-0.0 -10,3,-0.0 -12,3,-0.0 -155,3,-0.0 -156,3,-0.0 -157,3,-0.0 -158,3,-0.0 -159,3,-3.614848889166662 -160,3,-4.956060414833335 -161,3,-6.508969907333344 -162,3,-5.536850579333322 -163,3,-6.138304924168802 -191,3,-0.0 -192,3,-0.0 -193,3,-0.0 -194,3,-0.0 -195,3,-3.6443097420828496 -196,3,-4.956060414704831 -197,3,-6.508969907333344 -198,3,-5.536850579333344 -199,3,-6.138304924166676 -340,3,-0.0 -341,3,-0.0 -342,3,-0.0 -343,3,-0.0 -344,3,-0.0 -345,3,-0.0 -346,3,-0.0 -347,3,-0.0 -348,3,-0.0 -349,3,-3.6148488891333335 -350,3,-4.769243746173334 -351,3,-6.423036093426669 -352,3,-7.848650861950001 -353,3,-6.038756478293334 -354,3,-6.165802611200001 -355,3,-7.838415950128967 -356,3,-6.423036093426669 -357,3,-4.76924374617828 -358,3,-3.6443097422325357 -378,3,-0.0 -379,3,-0.0 -380,3,-0.0 -381,3,-0.0 -382,3,-0.0 -383,3,-0.0 -384,3,-0.0 -385,3,-0.0 -386,3,-0.0 -387,3,-6.138304924418824 -388,3,-4.559668643459467 -389,3,-6.165246626112532 -390,3,-4.75980772780002 -391,3,-3.9667687295419176 -392,3,-4.4420616466126495 -393,3,-5.068903731072411 -394,3,-5.899704788666669 -395,3,-4.506560275916669 -396,3,-6.138304924250005 -3555,3,-0.0 -3556,3,-0.0 -3557,3,-0.0 -3558,3,-0.0 -3559,3,-0.0 -3560,3,-0.0 -3561,3,-0.0 -3562,3,-0.0 -3563,3,-0.0 -3564,3,-0.0 -3565,3,-0.0 -3566,3,-0.0 -3567,3,-0.0 -3568,3,-0.0 -3569,3,-0.0 -3570,3,-0.0 -3571,3,-0.0 -3572,3,-0.0 -3573,3,-0.0 -3574,3,-0.0 -3575,3,-0.0 -3576,3,-0.0 -3577,3,-0.0 -3578,3,-0.0 -3579,3,-0.0 -3580,3,-0.0 -3581,3,-0.0 -3582,3,-0.0 -3583,3,-0.0 -3584,3,-0.0 -3585,3,-0.0 -3586,3,-0.0 -3587,3,-0.0 -3588,3,-0.0 -3589,3,-0.0 -3590,3,-0.0 -3591,3,-0.0 -3592,3,-0.0 -3593,3,-0.0 -3594,3,-0.0 -3595,3,-0.0 -3596,3,-0.0 -3597,3,-0.0 -3598,3,-0.0 -3599,3,-0.0 -3600,3,-0.0 -3601,3,-0.0 -3602,3,-0.0 -3603,3,-0.0 -3604,3,-0.0 -3605,3,-0.0 -3606,3,-0.0 -3607,3,-10.956901604190847 -3608,3,-12.276609848587626 -3609,3,-9.981133108295333 -3610,3,-7.229697778299996 -3611,3,-7.073412698308217 -3612,3,-7.073412698591778 -3613,3,-7.073412698260245 -3614,3,-7.288619484315385 -3615,3,-7.073412698533724 -3616,3,-12.276609848416681 -3617,3,-10.956901604055034 -3618,3,-9.792351504302298 -3619,3,-10.107822934514731 -3620,3,-8.989755378640488 -3621,3,-8.610326328822952 -3622,3,-10.091121477058538 -3623,3,-6.917127618599999 -3624,3,-10.542664871140499 -3625,3,-11.068816115444553 -3626,3,-9.102424664321864 -3627,3,-10.09669678744453 -3628,3,-10.355447259355367 -3629,3,-8.21525655122786 -3630,3,-8.665323215298248 -3631,3,-8.989755378511994 -3632,3,-10.107822934267897 -3633,3,-10.091121476940218 -3634,3,-8.580865475740461 -3635,3,-6.858205912478583 -3636,3,-11.068816115444553 -3637,3,-10.542664871140508 -3638,3,-9.102424664321846 -3639,3,-10.355447259221702 -3640,3,-10.096696787444552 -3641,3,-8.231383335099785 -3642,3,-8.665323215164605 -3643,3,-8.63321510302237 -3644,3,-9.708431108472583 -3645,3,-9.910079323403064 -3646,3,-8.397751171757692 -3647,3,-13.837977284180917 -3648,3,-10.287007450275702 -3649,3,-8.989704087383009 -3650,3,-14.893845172541733 -3651,3,-15.263592052704253 -3652,3,-12.923030607236427 -3653,3,-11.960532032095587 -3654,3,-13.083950788885065 -3655,3,-12.074870672317044 -3656,3,-13.374730536598351 -3657,3,-12.087578165002252 -3658,3,-10.99648610459504 -3659,3,-15.250280720015963 -3660,3,-15.04734387552732 -3661,3,-12.351324689845436 -3662,3,-10.287007450273988 -3663,3,-13.834900863313667 -3664,3,-12.823768969956244 -3665,3,-9.708431108472576 -3666,3,-8.633215103025602 -3667,3,-8.989704087381284 -3668,3,-8.368290318595482 -3669,3,-9.910079323398081 -3670,3,-8.402496827335977 -3671,3,-8.782477292058346 -3672,3,-7.690557867545957 -3673,3,-10.388055274711412 -3674,3,-11.187384526754654 -3675,3,-8.803557559725062 -3676,3,-9.781945628442141 -3677,3,-9.669203185423225 -3678,3,-10.456769153908242 -3679,3,-7.914946592484122 -3680,3,-7.073563699081852 -3681,3,-8.925697538914129 -3682,3,-8.85757332056541 -3683,3,-8.713966831244027 -3684,3,-7.548856616152584 -3685,3,-9.878349145492962 -3686,3,-7.676659335662925 -3687,3,-10.923822855179921 -3688,3,-11.205852675187836 -3689,3,-10.58861195248704 -3690,3,-11.291206622987822 -3691,3,-10.44849352303075 -3692,3,-12.036653732782094 -3693,3,-9.489334919077331 -3694,3,-10.401617119669861 -3695,3,-8.096190406327333 -3696,3,-8.160606855968963 -3697,3,-7.45083684311291 -3698,3,-7.405486056299498 -3699,3,-10.455861610750173 -3700,3,-10.838218296698374 -3701,3,-11.267147900850018 -3702,3,-10.096624691637789 -3703,3,-11.768318840952489 -3704,3,-10.597500397622284 -3705,3,-8.305655415083697 -3706,3,-8.92085647224762 -3707,3,-9.329104795773866 -3708,3,-10.008088657891852 -3709,3,-7.91578543837581 -3710,3,-9.910250918480958 -3711,3,-7.694456218945648 -3712,3,-7.465903333340855 -3713,3,-7.264350836159887 -3714,3,-7.274587141181307 -3715,3,-7.45901337518236 -3716,3,-7.598166011523454 -3717,3,-7.2838239668946905 -3718,3,-7.506432810236367 -3719,3,-7.955318946978073 -3720,3,-11.632925522371256 -3721,3,-11.506929396626939 -3722,3,-12.170766921883967 -3723,3,-12.590276263502219 -3724,3,-11.429187843593231 -3725,3,-12.671845418304681 -3726,3,-9.847750720353114 -3727,3,-11.844811692422319 -3728,3,-9.421957311989999 -3729,3,-8.4893406531914 -3730,3,-10.581668526317012 -3731,3,-10.548729268689003 -3732,3,-8.900029179792673 -3733,3,-11.325100127519844 -3734,3,-11.687267361991925 -3735,3,-9.289665029451914 -3736,3,-12.054535520397502 -3737,3,-9.72218881972972 -3738,3,-13.215474308058173 -3739,3,-12.536326992147913 -3740,3,-10.227690324280381 -3741,3,-8.392453468197091 -3742,3,-11.567235083986143 -3743,3,-10.541631191788243 -3744,3,-11.067283592869645 -3745,3,-9.868859281590524 -3746,3,-10.028648563434928 -3747,3,-10.915726641231684 -3748,3,-10.321754378247007 -3749,3,-10.779954644003746 -3750,3,-9.780903508389557 -3751,3,-9.353224368244554 -3752,3,-8.554645204628043 -3753,3,-9.184932606418005 -3754,3,-9.335653334424814 -3755,3,-10.910760447742675 -3756,3,-12.799692579619279 -3757,3,-9.13147745100827 -3758,3,-10.493783174468463 -3759,3,-10.09662469163775 -3760,3,-11.627692232727917 -3761,3,-10.692117359696967 -3762,3,-14.436445234796567 -3763,3,-11.41717067387214 -3764,3,-14.027827184772399 -3765,3,-12.469625091896232 -3766,3,-11.956135926207747 -3767,3,-12.824133166460959 -3768,3,-8.428478594795632 -3769,3,-11.862180153020143 -3770,3,-10.767020408856379 -3771,3,-10.719811561689996 -3772,3,-9.312825646827573 -3773,3,-8.746055206979891 -3774,3,-9.516447759091923 -3775,3,-9.199165989285532 -3776,3,-11.825576233996207 -3777,3,-10.703127813078483 -3778,3,-9.9776536395868 -3779,3,-9.486592335614064 -3780,3,-9.71321729473526 -3781,3,-8.628580259547881 -3782,3,-9.44155814654659 -3783,3,-7.983511885976238 -3784,3,-9.450933334557048 -3785,3,-8.063547244828284 -3786,3,-9.910250918480937 -3787,3,-10.008088657891834 -3788,3,-9.352511520504178 -3789,3,-7.612646188949451 +6,3,-0 +8,3,-0 +10,3,-0 +12,3,-0 +155,3,-0 +156,3,-0 +157,3,-0 +158,3,-0 +159,3,-3.614848889167 +160,3,-4.956060414833 +161,3,-6.508969907333 +162,3,-5.536850579333 +163,3,-6.138304924169 +191,3,-0 +192,3,-0 +193,3,-0 +194,3,-0 +195,3,-3.644309742083 +196,3,-4.956060414705 +197,3,-6.508969907333 +198,3,-5.536850579333 +199,3,-6.138304924167 +340,3,-0 +341,3,-0 +342,3,-0 +343,3,-0 +344,3,-0 +345,3,-0 +346,3,-0 +347,3,-0 +348,3,-0 +349,3,-3.614848889133 +350,3,-4.769243746173 +351,3,-6.423036093427 +352,3,-7.84865086195 +353,3,-6.038756478293 +354,3,-6.1658026112 +355,3,-7.838415950129 +356,3,-6.423036093427 +357,3,-4.769243746178 +358,3,-3.644309742233 +378,3,-0 +379,3,-0 +380,3,-0 +381,3,-0 +382,3,-0 +383,3,-0 +384,3,-0 +385,3,-0 +386,3,-0 +387,3,-6.138304924419 +388,3,-4.559668643459 +389,3,-6.165246626113 +390,3,-4.7598077278 +391,3,-3.966768729542 +392,3,-4.442061646613 +393,3,-5.068903731072 +394,3,-5.899704788667 +395,3,-4.506560275917 +396,3,-6.13830492425 +3555,3,-0 +3556,3,-0 +3557,3,-0 +3558,3,-0 +3559,3,-0 +3560,3,-0 +3561,3,-0 +3562,3,-0 +3563,3,-0 +3564,3,-0 +3565,3,-0 +3566,3,-0 +3567,3,-0 +3568,3,-0 +3569,3,-0 +3570,3,-0 +3571,3,-0 +3572,3,-0 +3573,3,-0 +3574,3,-0 +3575,3,-0 +3576,3,-0 +3577,3,-0 +3578,3,-0 +3579,3,-0 +3580,3,-0 +3581,3,-0 +3582,3,-0 +3583,3,-0 +3584,3,-0 +3585,3,-0 +3586,3,-0 +3587,3,-0 +3588,3,-0 +3589,3,-0 +3590,3,-0 +3591,3,-0 +3592,3,-0 +3593,3,-0 +3594,3,-0 +3595,3,-0 +3596,3,-0 +3597,3,-0 +3598,3,-0 +3599,3,-0 +3600,3,-0 +3601,3,-0 +3602,3,-0 +3603,3,-0 +3604,3,-0 +3605,3,-0 +3606,3,-0 +3607,3,-10.95690160419 +3608,3,-12.27660984859 +3609,3,-9.981133108295 +3610,3,-7.2296977783 +3611,3,-7.073412698308 +3612,3,-7.073412698592 +3613,3,-7.07341269826 +3614,3,-7.288619484315 +3615,3,-7.073412698534 +3616,3,-12.27660984842 +3617,3,-10.95690160406 +3618,3,-9.792351504302 +3619,3,-10.10782293451 +3620,3,-8.98975537864 +3621,3,-8.610326328823 +3622,3,-10.09112147706 +3623,3,-6.9171276186 +3624,3,-10.54266487114 +3625,3,-11.06881611544 +3626,3,-9.102424664322 +3627,3,-10.09669678744 +3628,3,-10.35544725936 +3629,3,-8.215256551228 +3630,3,-8.665323215298 +3631,3,-8.989755378512 +3632,3,-10.10782293427 +3633,3,-10.09112147694 +3634,3,-8.58086547574 +3635,3,-6.858205912479 +3636,3,-11.06881611544 +3637,3,-10.54266487114 +3638,3,-9.102424664322 +3639,3,-10.35544725922 +3640,3,-10.09669678744 +3641,3,-8.2313833351 +3642,3,-8.665323215165 +3643,3,-8.633215103022 +3644,3,-9.708431108473 +3645,3,-9.910079323403 +3646,3,-8.397751171758 +3647,3,-13.83797728418 +3648,3,-10.28700745028 +3649,3,-8.989704087383 +3650,3,-14.89384517254 +3651,3,-15.2635920527 +3652,3,-12.92303060724 +3653,3,-11.9605320321 +3654,3,-13.08395078889 +3655,3,-12.07487067232 +3656,3,-13.3747305366 +3657,3,-12.087578165 +3658,3,-10.9964861046 +3659,3,-15.25028072002 +3660,3,-15.04734387553 +3661,3,-12.35132468985 +3662,3,-10.28700745027 +3663,3,-13.83490086331 +3664,3,-12.82376896996 +3665,3,-9.708431108473 +3666,3,-8.633215103026 +3667,3,-8.989704087381 +3668,3,-8.368290318595 +3669,3,-9.910079323398 +3670,3,-8.402496827336 +3671,3,-8.782477292058 +3672,3,-7.690557867546 +3673,3,-10.38805527471 +3674,3,-11.18738452675 +3675,3,-8.803557559725 +3676,3,-9.781945628442 +3677,3,-9.669203185423 +3678,3,-10.45676915391 +3679,3,-7.914946592484 +3680,3,-7.073563699082 +3681,3,-8.925697538914 +3682,3,-8.857573320565 +3683,3,-8.713966831244 +3684,3,-7.548856616153 +3685,3,-9.878349145493 +3686,3,-7.676659335663 +3687,3,-10.92382285518 +3688,3,-11.20585267519 +3689,3,-10.58861195249 +3690,3,-11.29120662299 +3691,3,-10.44849352303 +3692,3,-12.03665373278 +3693,3,-9.489334919077 +3694,3,-10.40161711967 +3695,3,-8.096190406327 +3696,3,-8.160606855969 +3697,3,-7.450836843113 +3698,3,-7.405486056299 +3699,3,-10.45586161075 +3700,3,-10.8382182967 +3701,3,-11.26714790085 +3702,3,-10.09662469164 +3703,3,-11.76831884095 +3704,3,-10.59750039762 +3705,3,-8.305655415084 +3706,3,-8.920856472248 +3707,3,-9.329104795774 +3708,3,-10.00808865789 +3709,3,-7.915785438376 +3710,3,-9.910250918481 +3711,3,-7.694456218946 +3712,3,-7.465903333341 +3713,3,-7.26435083616 +3714,3,-7.274587141181 +3715,3,-7.459013375182 +3716,3,-7.598166011523 +3717,3,-7.283823966895 +3718,3,-7.506432810236 +3719,3,-7.955318946978 +3720,3,-11.63292552237 +3721,3,-11.50692939663 +3722,3,-12.17076692188 +3723,3,-12.5902762635 +3724,3,-11.42918784359 +3725,3,-12.6718454183 +3726,3,-9.847750720353 +3727,3,-11.84481169242 +3728,3,-9.42195731199 +3729,3,-8.489340653191 +3730,3,-10.58166852632 +3731,3,-10.54872926869 +3732,3,-8.900029179793 +3733,3,-11.32510012752 +3734,3,-11.68726736199 +3735,3,-9.289665029452 +3736,3,-12.0545355204 +3737,3,-9.72218881973 +3738,3,-13.21547430806 +3739,3,-12.53632699215 +3740,3,-10.22769032428 +3741,3,-8.392453468197 +3742,3,-11.56723508399 +3743,3,-10.54163119179 +3744,3,-11.06728359287 +3745,3,-9.868859281591 +3746,3,-10.02864856343 +3747,3,-10.91572664123 +3748,3,-10.32175437825 +3749,3,-10.779954644 +3750,3,-9.78090350839 +3751,3,-9.353224368245 +3752,3,-8.554645204628 +3753,3,-9.184932606418 +3754,3,-9.335653334425 +3755,3,-10.91076044774 +3756,3,-12.79969257962 +3757,3,-9.131477451008 +3758,3,-10.49378317447 +3759,3,-10.09662469164 +3760,3,-11.62769223273 +3761,3,-10.6921173597 +3762,3,-14.4364452348 +3763,3,-11.41717067387 +3764,3,-14.02782718477 +3765,3,-12.4696250919 +3766,3,-11.95613592621 +3767,3,-12.82413316646 +3768,3,-8.428478594796 +3769,3,-11.86218015302 +3770,3,-10.76702040886 +3771,3,-10.71981156169 +3772,3,-9.312825646828 +3773,3,-8.74605520698 +3774,3,-9.516447759092 +3775,3,-9.199165989286 +3776,3,-11.825576234 +3777,3,-10.70312781308 +3778,3,-9.977653639587 +3779,3,-9.486592335614 +3780,3,-9.713217294735 +3781,3,-8.628580259548 +3782,3,-9.441558146547 +3783,3,-7.983511885976 +3784,3,-9.450933334557 +3785,3,-8.063547244828 +3786,3,-9.910250918481 +3787,3,-10.00808865789 +3788,3,-9.352511520504 +3789,3,-7.612646188949 ** node loads on shape: Box5:Face6 -10,3,-0.0 -12,3,-0.0 -14,3,-0.0 -16,3,-0.0 -191,3,-0.0 -192,3,-0.0 -193,3,-0.0 -194,3,-0.0 -195,3,-3.9949845133412945 -196,3,-4.956060414704831 -197,3,-6.508969907333344 -198,3,-5.536850579333344 -199,3,-6.138304924166676 -237,3,-0.0 -238,3,-0.0 -239,3,-0.0 -240,3,-0.0 -241,3,-0.0 -242,3,-0.0 -243,3,-0.0 -244,3,-0.0 -245,3,-0.0 -246,3,-3.6459246333893525 -247,3,-3.356722656336667 -248,3,-5.844122433563334 -249,3,-5.507486226663335 -250,3,-4.595447997763334 -251,3,-4.605795435193334 -252,3,-5.0373687160700005 -253,3,-5.660981250433334 -254,3,-4.095993967856423 -255,3,-5.569444444440001 -284,3,-0.0 -285,3,-0.0 -286,3,-0.0 -287,3,-0.0 -288,3,-0.0 -289,3,-0.0 -290,3,-0.0 -291,3,-0.0 -292,3,-0.0 -293,3,-6.138304924250005 -294,3,-4.558257237916666 +10,3,-0 +12,3,-0 +14,3,-0 +16,3,-0 +191,3,-0 +192,3,-0 +193,3,-0 +194,3,-0 +195,3,-3.994984513341 +196,3,-4.956060414705 +197,3,-6.508969907333 +198,3,-5.536850579333 +199,3,-6.138304924167 +237,3,-0 +238,3,-0 +239,3,-0 +240,3,-0 +241,3,-0 +242,3,-0 +243,3,-0 +244,3,-0 +245,3,-0 +246,3,-3.645924633389 +247,3,-3.356722656337 +248,3,-5.844122433563 +249,3,-5.507486226663 +250,3,-4.595447997763 +251,3,-4.605795435193 +252,3,-5.03736871607 +253,3,-5.660981250433 +254,3,-4.095993967856 +255,3,-5.56944444444 +284,3,-0 +285,3,-0 +286,3,-0 +287,3,-0 +288,3,-0 +289,3,-0 +290,3,-0 +291,3,-0 +292,3,-0 +293,3,-6.13830492425 +294,3,-4.558257237917 295,3,-6.15818959865 -296,3,-4.637666805533332 -297,3,-4.696263414066667 -298,3,-5.935566340066669 -299,3,-4.560816379200004 -300,3,-5.135150336204939 -301,3,-5.135150336333335 +296,3,-4.637666805533 +297,3,-4.696263414067 +298,3,-5.935566340067 +299,3,-4.5608163792 +300,3,-5.135150336205 +301,3,-5.135150336333 302,3,-5.56944444445 -303,3,-0.0 -304,3,-0.0 -305,3,-0.0 -306,3,-0.0 -307,3,-5.569444444642013 -308,3,-4.4830729166554875 -309,3,-6.807322053333363 -310,3,-4.392019966166672 -311,3,-5.569444444499989 -2470,3,-0.0 -2471,3,-0.0 -2472,3,-0.0 -2473,3,-0.0 -2474,3,-0.0 -2475,3,-0.0 -2476,3,-0.0 -2477,3,-0.0 -2478,3,-0.0 -2479,3,-0.0 -2480,3,-0.0 -2481,3,-0.0 -2482,3,-0.0 -2483,3,-0.0 -2484,3,-0.0 -2485,3,-0.0 -2486,3,-0.0 -2487,3,-0.0 -2488,3,-0.0 -2489,3,-0.0 -2490,3,-0.0 -2491,3,-0.0 -2492,3,-0.0 -2493,3,-0.0 -2494,3,-0.0 -2495,3,-0.0 -2496,3,-0.0 -2497,3,-0.0 -2498,3,-0.0 -2499,3,-0.0 -2500,3,-0.0 -2501,3,-0.0 -2502,3,-0.0 -2503,3,-0.0 -2504,3,-0.0 -2505,3,-0.0 -2506,3,-0.0 -2507,3,-0.0 -2508,3,-0.0 -2509,3,-0.0 -2510,3,-0.0 -2511,3,-0.0 -2512,3,-0.0 -2513,3,-0.0 -2514,3,-0.0 -2515,3,-0.0 -2516,3,-0.0 -2517,3,-0.0 -2518,3,-0.0 -2519,3,-0.0 -2520,3,-0.0 -2521,3,-0.0 -2522,3,-0.0 -2523,3,-0.0 -2524,3,-7.640909146730647 -2525,3,-7.5866594849179165 -2526,3,-6.814101352285365 -2527,3,-10.956901604188651 -2528,3,-12.276609848416681 -2529,3,-10.073149462659547 -2530,3,-11.138888889082015 -2531,3,-9.232378177773722 -2532,3,-9.65148835381436 -2533,3,-11.150964530888741 -2534,3,-11.138888888949989 -2535,3,-9.446449415565393 -2536,3,-10.15824148987601 -2537,3,-8.989755378511994 -2538,3,-8.793856046747798 -2539,3,-10.614921226329923 -2540,3,-6.91841111180643 -2541,3,-10.542664871140508 -2542,3,-11.068816115444553 -2543,3,-9.409214765428297 -2544,3,-10.096696787444552 -2545,3,-10.35544725935532 -2546,3,-8.44569502296241 -2547,3,-8.665323215298223 -2548,3,-6.619319927824972 -2549,3,-6.524899375232679 -2550,3,-6.49491285912582 -2551,3,-12.916607578189275 -2552,3,-9.10671970505164 -2553,3,-6.591963525456937 -2554,3,-9.879753279195725 -2555,3,-11.964194875295886 -2556,3,-13.529193793258491 -2557,3,-13.13391922221554 -2558,3,-11.034700963698793 -2559,3,-8.925966661333984 -2560,3,-8.967715050295725 -2561,3,-7.846568362052352 -2562,3,-9.412341278602087 -2563,3,-8.936314098763983 -2564,3,-9.053813743617798 -2565,3,-10.8798180890603 -2566,3,-9.843914559478751 -2567,3,-9.75892958291437 -2568,3,-9.94597073741519 -2569,3,-11.503430623423634 -2570,3,-11.229230513337727 -2571,3,-7.758927701190143 -2572,3,-8.380983454838278 -2573,3,-8.911991042360683 -2574,3,-7.137360586938536 -2575,3,-8.493101776326208 -2576,3,-9.027172064977783 -2577,3,-7.848881908640585 -2578,3,-10.627104425711117 -2579,3,-10.581447971960804 -2580,3,-9.43120810020812 -2581,3,-9.060925178844137 -2582,3,-9.432359647878835 -2583,3,-9.055456637492975 -2584,3,-9.576776324089346 -2585,3,-9.24953034320492 -2586,3,-9.675205752368182 -2587,3,-9.35854790724709 -2588,3,-8.677051144419696 -2589,3,-10.488833269204923 -2590,3,-10.979770267839449 -2591,3,-9.479747977144028 -2592,3,-9.605020306972781 -2593,3,-10.333475997782859 -2594,3,-10.05330237054942 -2595,3,-11.531912158738969 -2596,3,-10.270300672538275 -2597,3,-11.358501704953666 -2598,3,-12.169421441116885 -2599,3,-10.573199190531295 -2600,3,-10.716670422772074 -2601,3,-9.917106875110145 -2602,3,-9.1810970311986 -2603,3,-8.565116825827834 -2604,3,-7.775729267864086 -2605,3,-12.213443708432202 -2606,3,-11.505346167876478 -2607,3,-9.50697117769411 -2608,3,-8.269024937232077 -2609,3,-9.798141621265511 -2610,3,-10.869195895256246 -2611,3,-7.519723452011768 -2612,3,-8.90481925228171 -2613,3,-10.32219323273923 -2614,3,-9.26421744488802 -2615,3,-10.920361004319366 -2616,3,-8.920827338747074 -2617,3,-10.570836768239102 -2618,3,-9.969554680178556 -2619,3,-11.7767993927657 -2620,3,-11.914095932461985 -2621,3,-9.76801728077368 -2622,3,-9.33361987993187 -2623,3,-10.164536899428215 -2624,3,-10.103193443200418 -2625,3,-10.567047111427323 -2626,3,-10.594940529147452 -2627,3,-10.974944213358667 -2628,3,-9.354276433666485 -2629,3,-11.82947306745315 -2630,3,-10.901067118872076 -2631,3,-11.046959171242829 -2632,3,-11.785582668974158 -2633,3,-10.783066623855959 -2634,3,-11.728617674002598 -2635,3,-12.941277113531685 -2636,3,-8.51202415666867 -2637,3,-12.906011426892567 -2638,3,-11.797722097830398 -2639,3,-9.105792721103771 -2640,3,-7.978305269617769 -2641,3,-9.822021792245335 -2642,3,-10.035183517268768 -2643,3,-8.507179338502032 -2644,3,-9.647263374269865 -2645,3,-11.765805073442788 -2646,3,-11.85172333729031 -2647,3,-10.442956861399628 -2648,3,-13.300245558723615 -2649,3,-7.295827523606397 -2650,3,-7.557334371313326 -2651,3,-10.925609314972695 -2652,3,-9.571958877942913 -2653,3,-11.04301375876248 -2654,3,-8.133192456111216 -2655,3,-9.364215188070242 -2656,3,-8.577093281179499 -2657,3,-11.26027032784115 -2658,3,-10.126179302257363 -2659,3,-8.030247536176951 -2660,3,-10.22847606029747 -2661,3,-11.229974137197532 -2662,3,-8.774047437331058 -2663,3,-8.58083192587876 -2664,3,-9.350250349701158 -2665,3,-11.331099470292918 -2666,3,-8.167177787846306 -2667,3,-10.709696695356959 -2668,3,-12.472113201425536 -2669,3,-11.424827312249677 -2670,3,-8.502632421842735 -2671,3,-10.151079235422541 -2672,3,-8.101428408983644 -2673,3,-7.168112212296554 -2674,3,-9.404516045230187 -2675,3,-11.974113711952159 -2676,3,-12.024583501206374 -2677,3,-10.674202988513743 -2678,3,-7.760763905507292 -2679,3,-7.589027261626324 -2680,3,-7.628149541201277 -2681,3,-8.015233696905414 -2682,3,-10.096035550617623 -2683,3,-8.837730156653812 -2684,3,-8.706717180117924 -2685,3,-10.13912524434878 -2686,3,-7.270386264154539 -2687,3,-7.126628141039494 -2688,3,-8.37562191156668 -2689,3,-8.37407726970082 -2690,3,-8.644674581852701 -2691,3,-9.376178413150624 -2692,3,-8.425134554301504 -2693,3,-10.961848156065557 -2694,3,-11.418892088676385 -2695,3,-9.34755842214456 -2696,3,-8.568092726124016 -2697,3,-12.495763496986035 -2698,3,-8.876330643378047 -2699,3,-11.84706957055518 -2700,3,-9.763695673365065 -2701,3,-10.78825995277988 -2702,3,-6.656102394198439 -2703,3,-8.514556566256365 -2704,3,-10.091973008371912 -2705,3,-10.806706931138866 -2706,3,-10.781987047004138 -2707,3,-9.051444714941942 -2708,3,-9.153661382205529 -2709,3,-8.856297359489488 -2710,3,-9.504904683675345 -2711,3,-9.510665953081494 -2712,3,-9.739754612539963 +303,3,-0 +304,3,-0 +305,3,-0 +306,3,-0 +307,3,-5.569444444642 +308,3,-4.483072916655 +309,3,-6.807322053333 +310,3,-4.392019966167 +311,3,-5.5694444445 +2470,3,-0 +2471,3,-0 +2472,3,-0 +2473,3,-0 +2474,3,-0 +2475,3,-0 +2476,3,-0 +2477,3,-0 +2478,3,-0 +2479,3,-0 +2480,3,-0 +2481,3,-0 +2482,3,-0 +2483,3,-0 +2484,3,-0 +2485,3,-0 +2486,3,-0 +2487,3,-0 +2488,3,-0 +2489,3,-0 +2490,3,-0 +2491,3,-0 +2492,3,-0 +2493,3,-0 +2494,3,-0 +2495,3,-0 +2496,3,-0 +2497,3,-0 +2498,3,-0 +2499,3,-0 +2500,3,-0 +2501,3,-0 +2502,3,-0 +2503,3,-0 +2504,3,-0 +2505,3,-0 +2506,3,-0 +2507,3,-0 +2508,3,-0 +2509,3,-0 +2510,3,-0 +2511,3,-0 +2512,3,-0 +2513,3,-0 +2514,3,-0 +2515,3,-0 +2516,3,-0 +2517,3,-0 +2518,3,-0 +2519,3,-0 +2520,3,-0 +2521,3,-0 +2522,3,-0 +2523,3,-0 +2524,3,-7.640909146731 +2525,3,-7.586659484918 +2526,3,-6.814101352285 +2527,3,-10.95690160419 +2528,3,-12.27660984842 +2529,3,-10.07314946266 +2530,3,-11.13888888908 +2531,3,-9.232378177774 +2532,3,-9.651488353814 +2533,3,-11.15096453089 +2534,3,-11.13888888895 +2535,3,-9.446449415565 +2536,3,-10.15824148988 +2537,3,-8.989755378512 +2538,3,-8.793856046748 +2539,3,-10.61492122633 +2540,3,-6.918411111806 +2541,3,-10.54266487114 +2542,3,-11.06881611544 +2543,3,-9.409214765428 +2544,3,-10.09669678744 +2545,3,-10.35544725936 +2546,3,-8.445695022962 +2547,3,-8.665323215298 +2548,3,-6.619319927825 +2549,3,-6.524899375233 +2550,3,-6.494912859126 +2551,3,-12.91660757819 +2552,3,-9.106719705052 +2553,3,-6.591963525457 +2554,3,-9.879753279196 +2555,3,-11.9641948753 +2556,3,-13.52919379326 +2557,3,-13.13391922222 +2558,3,-11.0347009637 +2559,3,-8.925966661334 +2560,3,-8.967715050296 +2561,3,-7.846568362052 +2562,3,-9.412341278602 +2563,3,-8.936314098764 +2564,3,-9.053813743618 +2565,3,-10.87981808906 +2566,3,-9.843914559479 +2567,3,-9.758929582914 +2568,3,-9.945970737415 +2569,3,-11.50343062342 +2570,3,-11.22923051334 +2571,3,-7.75892770119 +2572,3,-8.380983454838 +2573,3,-8.911991042361 +2574,3,-7.137360586939 +2575,3,-8.493101776326 +2576,3,-9.027172064978 +2577,3,-7.848881908641 +2578,3,-10.62710442571 +2579,3,-10.58144797196 +2580,3,-9.431208100208 +2581,3,-9.060925178844 +2582,3,-9.432359647879 +2583,3,-9.055456637493 +2584,3,-9.576776324089 +2585,3,-9.249530343205 +2586,3,-9.675205752368 +2587,3,-9.358547907247 +2588,3,-8.67705114442 +2589,3,-10.4888332692 +2590,3,-10.97977026784 +2591,3,-9.479747977144 +2592,3,-9.605020306973 +2593,3,-10.33347599778 +2594,3,-10.05330237055 +2595,3,-11.53191215874 +2596,3,-10.27030067254 +2597,3,-11.35850170495 +2598,3,-12.16942144112 +2599,3,-10.57319919053 +2600,3,-10.71667042277 +2601,3,-9.91710687511 +2602,3,-9.181097031199 +2603,3,-8.565116825828 +2604,3,-7.775729267864 +2605,3,-12.21344370843 +2606,3,-11.50534616788 +2607,3,-9.506971177694 +2608,3,-8.269024937232 +2609,3,-9.798141621266 +2610,3,-10.86919589526 +2611,3,-7.519723452012 +2612,3,-8.904819252282 +2613,3,-10.32219323274 +2614,3,-9.264217444888 +2615,3,-10.92036100432 +2616,3,-8.920827338747 +2617,3,-10.57083676824 +2618,3,-9.969554680179 +2619,3,-11.77679939277 +2620,3,-11.91409593246 +2621,3,-9.768017280774 +2622,3,-9.333619879932 +2623,3,-10.16453689943 +2624,3,-10.1031934432 +2625,3,-10.56704711143 +2626,3,-10.59494052915 +2627,3,-10.97494421336 +2628,3,-9.354276433666 +2629,3,-11.82947306745 +2630,3,-10.90106711887 +2631,3,-11.04695917124 +2632,3,-11.78558266897 +2633,3,-10.78306662386 +2634,3,-11.728617674 +2635,3,-12.94127711353 +2636,3,-8.512024156669 +2637,3,-12.90601142689 +2638,3,-11.79772209783 +2639,3,-9.105792721104 +2640,3,-7.978305269618 +2641,3,-9.822021792245 +2642,3,-10.03518351727 +2643,3,-8.507179338502 +2644,3,-9.64726337427 +2645,3,-11.76580507344 +2646,3,-11.85172333729 +2647,3,-10.4429568614 +2648,3,-13.30024555872 +2649,3,-7.295827523606 +2650,3,-7.557334371313 +2651,3,-10.92560931497 +2652,3,-9.571958877943 +2653,3,-11.04301375876 +2654,3,-8.133192456111 +2655,3,-9.36421518807 +2656,3,-8.577093281179 +2657,3,-11.26027032784 +2658,3,-10.12617930226 +2659,3,-8.030247536177 +2660,3,-10.2284760603 +2661,3,-11.2299741372 +2662,3,-8.774047437331 +2663,3,-8.580831925879 +2664,3,-9.350250349701 +2665,3,-11.33109947029 +2666,3,-8.167177787846 +2667,3,-10.70969669536 +2668,3,-12.47211320143 +2669,3,-11.42482731225 +2670,3,-8.502632421843 +2671,3,-10.15107923542 +2672,3,-8.101428408984 +2673,3,-7.168112212297 +2674,3,-9.40451604523 +2675,3,-11.97411371195 +2676,3,-12.02458350121 +2677,3,-10.67420298851 +2678,3,-7.760763905507 +2679,3,-7.589027261626 +2680,3,-7.628149541201 +2681,3,-8.015233696905 +2682,3,-10.09603555062 +2683,3,-8.837730156654 +2684,3,-8.706717180118 +2685,3,-10.13912524435 +2686,3,-7.270386264155 +2687,3,-7.126628141039 +2688,3,-8.375621911567 +2689,3,-8.374077269701 +2690,3,-8.644674581853 +2691,3,-9.376178413151 +2692,3,-8.425134554302 +2693,3,-10.96184815607 +2694,3,-11.41889208868 +2695,3,-9.347558422145 +2696,3,-8.568092726124 +2697,3,-12.49576349699 +2698,3,-8.876330643378 +2699,3,-11.84706957056 +2700,3,-9.763695673365 +2701,3,-10.78825995278 +2702,3,-6.656102394198 +2703,3,-8.514556566256 +2704,3,-10.09197300837 +2705,3,-10.80670693114 +2706,3,-10.781987047 +2707,3,-9.051444714942 +2708,3,-9.153661382206 +2709,3,-8.856297359489 +2710,3,-9.504904683675 +2711,3,-9.510665953081 +2712,3,-9.73975461254 diff --git a/src/Mod/Fem/femtest/data/calculix/material_multiple_bendingbeam_fivefaces.inp b/src/Mod/Fem/femtest/data/calculix/material_multiple_bendingbeam_fivefaces.inp index 3064fa08bf..08f88f3935 100644 --- a/src/Mod/Fem/femtest/data/calculix/material_multiple_bendingbeam_fivefaces.inp +++ b/src/Mod/Fem/femtest/data/calculix/material_multiple_bendingbeam_fivefaces.inp @@ -2569,119 +2569,119 @@ ConstraintFixed,6 *CLOAD ** ConstraintForce ** node loads on shape: Face1:Edge4 -9,2,-33.33333333333333 -11,2,-33.33333333333333 -118,2,-66.66666666666666 -119,2,-66.66666666666666 -120,2,-66.66666666666666 -121,2,-66.66666666666666 -122,2,-66.66666666666666 -123,2,-66.66666666666666 -124,2,-66.66666666666666 -125,2,-66.66666666666666 -126,2,-66.66666666666666 -472,2,-133.33333333333331 -473,2,-133.33333333333331 -474,2,-133.33333333333331 -475,2,-133.33333333333331 -476,2,-133.33333333333331 -477,2,-133.33333333333331 -478,2,-133.33333333333331 -479,2,-133.33333333333331 -480,2,-133.33333333333331 -481,2,-133.33333333333331 +9,2,-33.33333333333 +11,2,-33.33333333333 +118,2,-66.66666666667 +119,2,-66.66666666667 +120,2,-66.66666666667 +121,2,-66.66666666667 +122,2,-66.66666666667 +123,2,-66.66666666667 +124,2,-66.66666666667 +125,2,-66.66666666667 +126,2,-66.66666666667 +472,2,-133.3333333333 +473,2,-133.3333333333 +474,2,-133.3333333333 +475,2,-133.3333333333 +476,2,-133.3333333333 +477,2,-133.3333333333 +478,2,-133.3333333333 +479,2,-133.3333333333 +480,2,-133.3333333333 +481,2,-133.3333333333 ** node loads on shape: Face2:Edge4 -7,2,-33.33333333333333 -9,2,-33.33333333333333 -96,2,-66.66666666666666 -97,2,-66.66666666666666 -98,2,-66.66666666666666 -99,2,-66.66666666666666 -100,2,-66.66666666666666 -101,2,-66.66666666666666 -102,2,-66.66666666666666 -103,2,-66.66666666666666 -104,2,-66.66666666666666 -447,2,-133.33333333333331 -448,2,-133.33333333333331 -449,2,-133.33333333333331 -450,2,-133.33333333333331 -451,2,-133.33333333333331 -452,2,-133.33333333333331 -453,2,-133.33333333333331 -454,2,-133.33333333333331 -455,2,-133.33333333333331 -456,2,-133.33333333333331 +7,2,-33.33333333333 +9,2,-33.33333333333 +96,2,-66.66666666667 +97,2,-66.66666666667 +98,2,-66.66666666667 +99,2,-66.66666666667 +100,2,-66.66666666667 +101,2,-66.66666666667 +102,2,-66.66666666667 +103,2,-66.66666666667 +104,2,-66.66666666667 +447,2,-133.3333333333 +448,2,-133.3333333333 +449,2,-133.3333333333 +450,2,-133.3333333333 +451,2,-133.3333333333 +452,2,-133.3333333333 +453,2,-133.3333333333 +454,2,-133.3333333333 +455,2,-133.3333333333 +456,2,-133.3333333333 ** node loads on shape: Face3:Edge4 -5,2,-33.33333333333333 -7,2,-33.33333333333333 -74,2,-66.66666666666666 -75,2,-66.66666666666666 -76,2,-66.66666666666666 -77,2,-66.66666666666666 -78,2,-66.66666666666666 -79,2,-66.66666666666666 -80,2,-66.66666666666666 -81,2,-66.66666666666666 -82,2,-66.66666666666666 -422,2,-133.33333333333331 -423,2,-133.33333333333331 -424,2,-133.33333333333331 -425,2,-133.33333333333331 -426,2,-133.33333333333331 -427,2,-133.33333333333331 -428,2,-133.33333333333331 -429,2,-133.33333333333331 -430,2,-133.33333333333331 -431,2,-133.33333333333331 +5,2,-33.33333333333 +7,2,-33.33333333333 +74,2,-66.66666666667 +75,2,-66.66666666667 +76,2,-66.66666666667 +77,2,-66.66666666667 +78,2,-66.66666666667 +79,2,-66.66666666667 +80,2,-66.66666666667 +81,2,-66.66666666667 +82,2,-66.66666666667 +422,2,-133.3333333333 +423,2,-133.3333333333 +424,2,-133.3333333333 +425,2,-133.3333333333 +426,2,-133.3333333333 +427,2,-133.3333333333 +428,2,-133.3333333333 +429,2,-133.3333333333 +430,2,-133.3333333333 +431,2,-133.3333333333 ** node loads on shape: Face4:Edge4 -3,2,-33.33333333333333 -5,2,-33.33333333333333 -52,2,-66.66666666666666 -53,2,-66.66666666666666 -54,2,-66.66666666666666 -55,2,-66.66666666666666 -56,2,-66.66666666666666 -57,2,-66.66666666666666 -58,2,-66.66666666666666 -59,2,-66.66666666666666 -60,2,-66.66666666666666 -397,2,-133.33333333333331 -398,2,-133.33333333333331 -399,2,-133.33333333333331 -400,2,-133.33333333333331 -401,2,-133.33333333333331 -402,2,-133.33333333333331 -403,2,-133.33333333333331 -404,2,-133.33333333333331 -405,2,-133.33333333333331 -406,2,-133.33333333333331 +3,2,-33.33333333333 +5,2,-33.33333333333 +52,2,-66.66666666667 +53,2,-66.66666666667 +54,2,-66.66666666667 +55,2,-66.66666666667 +56,2,-66.66666666667 +57,2,-66.66666666667 +58,2,-66.66666666667 +59,2,-66.66666666667 +60,2,-66.66666666667 +397,2,-133.3333333333 +398,2,-133.3333333333 +399,2,-133.3333333333 +400,2,-133.3333333333 +401,2,-133.3333333333 +402,2,-133.3333333333 +403,2,-133.3333333333 +404,2,-133.3333333333 +405,2,-133.3333333333 +406,2,-133.3333333333 ** node loads on shape: Face5:Edge4 -1,2,-33.33333333333333 -3,2,-33.33333333333333 -26,2,-66.66666666666666 -27,2,-66.66666666666666 -28,2,-66.66666666666666 -29,2,-66.66666666666666 -30,2,-66.66666666666666 -31,2,-66.66666666666666 -32,2,-66.66666666666666 -33,2,-66.66666666666666 -34,2,-66.66666666666666 -367,2,-133.33333333333331 -368,2,-133.33333333333331 -369,2,-133.33333333333331 -370,2,-133.33333333333331 -371,2,-133.33333333333331 -372,2,-133.33333333333331 -373,2,-133.33333333333331 -374,2,-133.33333333333331 -375,2,-133.33333333333331 -376,2,-133.33333333333331 +1,2,-33.33333333333 +3,2,-33.33333333333 +26,2,-66.66666666667 +27,2,-66.66666666667 +28,2,-66.66666666667 +29,2,-66.66666666667 +30,2,-66.66666666667 +31,2,-66.66666666667 +32,2,-66.66666666667 +33,2,-66.66666666667 +34,2,-66.66666666667 +367,2,-133.3333333333 +368,2,-133.3333333333 +369,2,-133.3333333333 +370,2,-133.3333333333 +371,2,-133.3333333333 +372,2,-133.3333333333 +373,2,-133.3333333333 +374,2,-133.3333333333 +375,2,-133.3333333333 +376,2,-133.3333333333 diff --git a/src/Mod/Fem/femtest/data/calculix/square_pipe_end_twisted_edgeforces.inp b/src/Mod/Fem/femtest/data/calculix/square_pipe_end_twisted_edgeforces.inp index a5ba7fa1a8..4bc8f67606 100644 --- a/src/Mod/Fem/femtest/data/calculix/square_pipe_end_twisted_edgeforces.inp +++ b/src/Mod/Fem/femtest/data/calculix/square_pipe_end_twisted_edgeforces.inp @@ -2581,70 +2581,70 @@ ConstraintFixed,6 *CLOAD ** ConstraintForce1 ** node loads on shape: SquareTube:Edge9 -1,1,2777.7777777777783 -236,1,2777.7777777777783 -343,1,5555.555555555557 -344,1,5555.555555555557 -345,1,5555.555555555557 -346,1,5555.555555555557 -347,1,5555.555555555557 -1376,1,11111.111111111113 -1378,1,11111.111111111113 -1380,1,11111.111111111113 -1383,1,11111.111111111113 -1386,1,11111.111111111113 -1390,1,11111.111111111113 +1,1,2777.777777778 +236,1,2777.777777778 +343,1,5555.555555556 +344,1,5555.555555556 +345,1,5555.555555556 +346,1,5555.555555556 +347,1,5555.555555556 +1376,1,11111.11111111 +1378,1,11111.11111111 +1380,1,11111.11111111 +1383,1,11111.11111111 +1386,1,11111.11111111 +1390,1,11111.11111111 ** ConstraintForce2 ** node loads on shape: SquareTube:Edge3 -2,1,-2777.7777777777783 -129,1,-2777.7777777777783 -131,1,-5555.555555555557 -132,1,-5555.555555555557 -133,1,-5555.555555555557 -134,1,-5555.555555555557 -135,1,-5555.555555555557 -758,1,-11111.111111111113 -762,1,-11111.111111111113 -764,1,-11111.111111111113 -766,1,-11111.111111111113 -769,1,-11111.111111111113 -772,1,-11111.111111111113 +2,1,-2777.777777778 +129,1,-2777.777777778 +131,1,-5555.555555556 +132,1,-5555.555555556 +133,1,-5555.555555556 +134,1,-5555.555555556 +135,1,-5555.555555556 +758,1,-11111.11111111 +762,1,-11111.11111111 +764,1,-11111.11111111 +766,1,-11111.11111111 +769,1,-11111.11111111 +772,1,-11111.11111111 ** ConstraintForce3 ** node loads on shape: SquareTube:Edge11 -1,2,2777.7777777777783 -2,2,2777.7777777777783 -5,2,5555.555555555557 -6,2,5555.555555555557 -7,2,5555.555555555557 -8,2,5555.555555555557 -9,2,5555.555555555557 -429,2,11111.111111111113 -431,2,11111.111111111113 -437,2,11111.111111111113 -440,2,11111.111111111113 -443,2,11111.111111111113 -446,2,11111.111111111113 +1,2,2777.777777778 +2,2,2777.777777778 +5,2,5555.555555556 +6,2,5555.555555556 +7,2,5555.555555556 +8,2,5555.555555556 +9,2,5555.555555556 +429,2,11111.11111111 +431,2,11111.11111111 +437,2,11111.11111111 +440,2,11111.11111111 +443,2,11111.11111111 +446,2,11111.11111111 ** ConstraintForce4 ** node loads on shape: SquareTube:Edge6 -129,2,-2777.7777777777783 -236,2,-2777.7777777777783 -238,2,-5555.555555555557 -239,2,-5555.555555555557 -240,2,-5555.555555555557 -241,2,-5555.555555555557 -242,2,-5555.555555555557 -1067,2,-11111.111111111113 -1071,2,-11111.111111111113 -1073,2,-11111.111111111113 -1075,2,-11111.111111111113 -1078,2,-11111.111111111113 -1081,2,-11111.111111111113 +129,2,-2777.777777778 +236,2,-2777.777777778 +238,2,-5555.555555556 +239,2,-5555.555555556 +240,2,-5555.555555556 +241,2,-5555.555555556 +242,2,-5555.555555556 +1067,2,-11111.11111111 +1071,2,-11111.11111111 +1073,2,-11111.11111111 +1075,2,-11111.11111111 +1078,2,-11111.11111111 +1081,2,-11111.11111111 diff --git a/src/Mod/Fem/femtest/data/calculix/square_pipe_end_twisted_nodeforces.inp b/src/Mod/Fem/femtest/data/calculix/square_pipe_end_twisted_nodeforces.inp index d97949ed3f..6aa03980b3 100644 --- a/src/Mod/Fem/femtest/data/calculix/square_pipe_end_twisted_nodeforces.inp +++ b/src/Mod/Fem/femtest/data/calculix/square_pipe_end_twisted_nodeforces.inp @@ -2631,42 +2631,42 @@ ConstraintFixed,6 ** ConstraintForce5 ** node load on shape: Forces:Vertex43 -1376,1,-11111.111666666666 +1376,1,-11111.11166667 ** node load on shape: Forces:Vertex44 -1378,1,-11111.111666666666 +1378,1,-11111.11166667 ** node load on shape: Forces:Vertex45 -1380,1,-11111.111666666666 +1380,1,-11111.11166667 ** node load on shape: Forces:Vertex46 -1383,1,-11111.111666666666 +1383,1,-11111.11166667 ** node load on shape: Forces:Vertex47 -1386,1,-11111.111666666666 +1386,1,-11111.11166667 ** node load on shape: Forces:Vertex48 -1390,1,-11111.111666666666 +1390,1,-11111.11166667 ** ConstraintForce6 ** node load on shape: Forces:Vertex31 -758,1,11111.111666666666 +758,1,11111.11166667 ** node load on shape: Forces:Vertex32 -762,1,11111.111666666666 +762,1,11111.11166667 ** node load on shape: Forces:Vertex33 -764,1,11111.111666666666 +764,1,11111.11166667 ** node load on shape: Forces:Vertex34 -766,1,11111.111666666666 +766,1,11111.11166667 ** node load on shape: Forces:Vertex35 -769,1,11111.111666666666 +769,1,11111.11166667 ** node load on shape: Forces:Vertex36 -772,1,11111.111666666666 +772,1,11111.11166667 ** ConstraintForce7 @@ -2721,42 +2721,42 @@ ConstraintFixed,6 ** ConstraintForce11 ** node load on shape: Forces:Vertex25 -429,2,-11111.111666666666 +429,2,-11111.11166667 ** node load on shape: Forces:Vertex26 -431,2,-11111.111666666666 +431,2,-11111.11166667 ** node load on shape: Forces:Vertex27 -437,2,-11111.111666666666 +437,2,-11111.11166667 ** node load on shape: Forces:Vertex28 -440,2,-11111.111666666666 +440,2,-11111.11166667 ** node load on shape: Forces:Vertex29 -443,2,-11111.111666666666 +443,2,-11111.11166667 ** node load on shape: Forces:Vertex30 -446,2,-11111.111666666666 +446,2,-11111.11166667 ** ConstraintForce12 ** node load on shape: Forces:Vertex37 -1067,2,11111.111666666666 +1067,2,11111.11166667 ** node load on shape: Forces:Vertex38 -1071,2,11111.111666666666 +1071,2,11111.11166667 ** node load on shape: Forces:Vertex39 -1073,2,11111.111666666666 +1073,2,11111.11166667 ** node load on shape: Forces:Vertex40 -1075,2,11111.111666666666 +1075,2,11111.11166667 ** node load on shape: Forces:Vertex41 -1078,2,11111.111666666666 +1078,2,11111.11166667 ** node load on shape: Forces:Vertex42 -1081,2,11111.111666666666 +1081,2,11111.11166667 diff --git a/src/Mod/Fem/femtest/data/calculix/thermomech_flow1D.FCStd b/src/Mod/Fem/femtest/data/calculix/thermomech_flow1D.FCStd new file mode 100644 index 0000000000..94483713a2 Binary files /dev/null and b/src/Mod/Fem/femtest/data/calculix/thermomech_flow1D.FCStd differ