From df6b4f4c374348e47f9eead053b542a4d8bafff8 Mon Sep 17 00:00:00 2001 From: Jess Frazelle Date: Tue, 11 Mar 2025 11:44:27 -0700 Subject: [PATCH] Move consts to dir in docs (#5753) * updates Signed-off-by: Jess Frazelle * add consts to dir Signed-off-by: Jess Frazelle * updates Signed-off-by: Jess Frazelle * updates Signed-off-by: Jess Frazelle * add consts to dir Signed-off-by: Jess Frazelle --------- Signed-off-by: Jess Frazelle --- .github/workflows/generate-website-docs.yml | 2 + docs/kcl/consts.md | 25 + .../std-HALF_TURN.md} | 0 .../std-QUARTER_TURN.md} | 0 .../std-THREE_QUARTER_TURN.md} | 0 .../kcl/{const_std-XY.md => consts/std-XY.md} | 0 .../kcl/{const_std-XZ.md => consts/std-XZ.md} | 0 .../kcl/{const_std-YZ.md => consts/std-YZ.md} | 0 .../{const_std-ZERO.md => consts/std-ZERO.md} | 0 .../std-math-E.md} | 0 .../std-math-PI.md} | 0 .../std-math-TAU.md} | 0 docs/kcl/index.md | 35 +- rust/.config/nextest.toml | 2 +- rust/kcl-lib/src/docs/gen_std_tests.rs | 57 +- rust/kcl-lib/src/docs/kcl_doc.rs | 12 +- .../src/docs/templates/consts-index.hbs | 17 + rust/kcl-lib/tests/array_elem_pop/ast.snap | 2 +- .../tests/array_elem_pop_empty_fail/ast.snap | 2 +- .../execution_error.snap | 2 +- .../multi-axis-robot/exported_step.macos.step | 502 +++++++++--------- 21 files changed, 374 insertions(+), 284 deletions(-) create mode 100644 docs/kcl/consts.md rename docs/kcl/{const_std-HALF_TURN.md => consts/std-HALF_TURN.md} (100%) rename docs/kcl/{const_std-QUARTER_TURN.md => consts/std-QUARTER_TURN.md} (100%) rename docs/kcl/{const_std-THREE_QUARTER_TURN.md => consts/std-THREE_QUARTER_TURN.md} (100%) rename docs/kcl/{const_std-XY.md => consts/std-XY.md} (100%) rename docs/kcl/{const_std-XZ.md => consts/std-XZ.md} (100%) rename docs/kcl/{const_std-YZ.md => consts/std-YZ.md} (100%) rename docs/kcl/{const_std-ZERO.md => consts/std-ZERO.md} (100%) rename docs/kcl/{const_std-math-E.md => consts/std-math-E.md} (100%) rename docs/kcl/{const_std-math-PI.md => consts/std-math-PI.md} (100%) rename docs/kcl/{const_std-math-TAU.md => consts/std-math-TAU.md} (100%) create mode 100644 rust/kcl-lib/src/docs/templates/consts-index.hbs diff --git a/.github/workflows/generate-website-docs.yml b/.github/workflows/generate-website-docs.yml index 87587483d..a31a72b38 100644 --- a/.github/workflows/generate-website-docs.yml +++ b/.github/workflows/generate-website-docs.yml @@ -41,10 +41,12 @@ jobs: rm -rf documentation/content/pages/docs/kcl/*.md rm -rf documentation/content/pages/docs/kcl/types rm -rf documentation/content/pages/docs/kcl/settings + rm -rf documentation/content/pages/docs/kcl/consts # move new mv -f docs/kcl/*.md documentation/content/pages/docs/kcl/ mv -f docs/kcl/types documentation/content/pages/docs/kcl/ mv -f docs/kcl/settings documentation/content/pages/docs/kcl/ + mv -f docs/kcl/consts documentation/content/pages/docs/kcl/ - name: move kcl-samples shell: bash run: | diff --git a/docs/kcl/consts.md b/docs/kcl/consts.md new file mode 100644 index 000000000..c204f1d77 --- /dev/null +++ b/docs/kcl/consts.md @@ -0,0 +1,25 @@ +--- +title: "KCL Constants" +excerpt: "Documentation for the KCL constants." +layout: manual +--- + +## Table of Contents + + +### `std` + +- [`HALF_TURN`](/docs/kcl/consts/std-HALF_TURN) +- [`QUARTER_TURN`](/docs/kcl/consts/std-QUARTER_TURN) +- [`THREE_QUARTER_TURN`](/docs/kcl/consts/std-THREE_QUARTER_TURN) +- [`XY`](/docs/kcl/consts/std-XY) +- [`XZ`](/docs/kcl/consts/std-XZ) +- [`YZ`](/docs/kcl/consts/std-YZ) +- [`ZERO`](/docs/kcl/consts/std-ZERO) + +### `std::math` + +- [`E`](/docs/kcl/consts/std-math-E) +- [`PI`](/docs/kcl/consts/std-math-PI) +- [`TAU`](/docs/kcl/consts/std-math-TAU) + diff --git a/docs/kcl/const_std-HALF_TURN.md b/docs/kcl/consts/std-HALF_TURN.md similarity index 100% rename from docs/kcl/const_std-HALF_TURN.md rename to docs/kcl/consts/std-HALF_TURN.md diff --git a/docs/kcl/const_std-QUARTER_TURN.md b/docs/kcl/consts/std-QUARTER_TURN.md similarity index 100% rename from docs/kcl/const_std-QUARTER_TURN.md rename to docs/kcl/consts/std-QUARTER_TURN.md diff --git a/docs/kcl/const_std-THREE_QUARTER_TURN.md b/docs/kcl/consts/std-THREE_QUARTER_TURN.md similarity index 100% rename from docs/kcl/const_std-THREE_QUARTER_TURN.md rename to docs/kcl/consts/std-THREE_QUARTER_TURN.md diff --git a/docs/kcl/const_std-XY.md b/docs/kcl/consts/std-XY.md similarity index 100% rename from docs/kcl/const_std-XY.md rename to docs/kcl/consts/std-XY.md diff --git a/docs/kcl/const_std-XZ.md b/docs/kcl/consts/std-XZ.md similarity index 100% rename from docs/kcl/const_std-XZ.md rename to docs/kcl/consts/std-XZ.md diff --git a/docs/kcl/const_std-YZ.md b/docs/kcl/consts/std-YZ.md similarity index 100% rename from docs/kcl/const_std-YZ.md rename to docs/kcl/consts/std-YZ.md diff --git a/docs/kcl/const_std-ZERO.md b/docs/kcl/consts/std-ZERO.md similarity index 100% rename from docs/kcl/const_std-ZERO.md rename to docs/kcl/consts/std-ZERO.md diff --git a/docs/kcl/const_std-math-E.md b/docs/kcl/consts/std-math-E.md similarity index 100% rename from docs/kcl/const_std-math-E.md rename to docs/kcl/consts/std-math-E.md diff --git a/docs/kcl/const_std-math-PI.md b/docs/kcl/consts/std-math-PI.md similarity index 100% rename from docs/kcl/const_std-math-PI.md rename to docs/kcl/consts/std-math-PI.md diff --git a/docs/kcl/const_std-math-TAU.md b/docs/kcl/consts/std-math-TAU.md similarity index 100% rename from docs/kcl/const_std-math-TAU.md rename to docs/kcl/consts/std-math-TAU.md diff --git a/docs/kcl/index.md b/docs/kcl/index.md index 97cd0f3d4..15d48b8e5 100644 --- a/docs/kcl/index.md +++ b/docs/kcl/index.md @@ -12,25 +12,26 @@ layout: manual * [`Modules`](kcl/modules) * [`Settings`](kcl/settings) * [`Known Issues`](kcl/known-issues) +* [`Constants`](kcl/consts) ### Standard library * **Primitive types** - * [`bool`](kcl/bool) - * [`number`](kcl/number) - * [`string`](kcl/string) - * [`tag`](kcl/tag) + * [`bool`](kcl/types/bool) + * [`number`](kcl/types/number) + * [`string`](kcl/types/string) + * [`tag`](kcl/types/tag) * **std** - * [`HALF_TURN`](kcl/const_std-HALF_TURN) - * [`Plane`](kcl/Plane) - * [`QUARTER_TURN`](kcl/const_std-QUARTER_TURN) - * [`Sketch`](kcl/Sketch) - * [`Solid`](kcl/Solid) - * [`THREE_QUARTER_TURN`](kcl/const_std-THREE_QUARTER_TURN) - * [`XY`](kcl/const_std-XY) - * [`XZ`](kcl/const_std-XZ) - * [`YZ`](kcl/const_std-YZ) - * [`ZERO`](kcl/const_std-ZERO) + * [`HALF_TURN`](kcl/consts/std-HALF_TURN) + * [`Plane`](kcl/types/Plane) + * [`QUARTER_TURN`](kcl/consts/std-QUARTER_TURN) + * [`Sketch`](kcl/types/Sketch) + * [`Solid`](kcl/types/Solid) + * [`THREE_QUARTER_TURN`](kcl/consts/std-THREE_QUARTER_TURN) + * [`XY`](kcl/consts/std-XY) + * [`XZ`](kcl/consts/std-XZ) + * [`YZ`](kcl/consts/std-YZ) + * [`ZERO`](kcl/consts/std-ZERO) * [`abs`](kcl/abs) * [`acos`](kcl/acos) * [`angleToMatchLengthX`](kcl/angleToMatchLengthX) @@ -134,9 +135,9 @@ layout: manual * [`yLine`](kcl/yLine) * [`yd`](kcl/yd) * **std::math** - * [`E`](kcl/const_std-math-E) - * [`PI`](kcl/const_std-math-PI) - * [`TAU`](kcl/const_std-math-TAU) + * [`E`](kcl/consts/std-math-E) + * [`PI`](kcl/consts/std-math-PI) + * [`TAU`](kcl/consts/std-math-TAU) * [`cos`](kcl/std-math-cos) * [`sin`](kcl/std-math-sin) * [`tan`](kcl/std-math-tan) diff --git a/rust/.config/nextest.toml b/rust/.config/nextest.toml index 610e7ff83..d5fca2d31 100644 --- a/rust/.config/nextest.toml +++ b/rust/.config/nextest.toml @@ -3,7 +3,7 @@ # This way we don't start and stop too many engine instances, putting pressure on our cloud. uses-engine = { max-threads = 4 } # If a test must run after the engine tests, we want to make sure the engine tests are done first. -after-engine = { depends-on = ["uses-engine"], max-threads = 12 } +after-engine = { max-threads = 12 } [profile.default] slow-timeout = { period = "30s", terminate-after = 1 } diff --git a/rust/kcl-lib/src/docs/gen_std_tests.rs b/rust/kcl-lib/src/docs/gen_std_tests.rs index 93e879c6e..1d96d1631 100644 --- a/rust/kcl-lib/src/docs/gen_std_tests.rs +++ b/rust/kcl-lib/src/docs/gen_std_tests.rs @@ -21,7 +21,7 @@ use crate::{ }; const TYPES_DIR: &str = "../../docs/kcl/types"; -const LANG_TOPICS: [&str; 4] = ["Types", "Modules", "Settings", "Known Issues"]; +const LANG_TOPICS: [&str; 5] = ["Types", "Modules", "Settings", "Known Issues", "Constants"]; // These types are declared in std. const DECLARED_TYPES: [&str; 7] = ["number", "string", "tag", "bool", "Sketch", "Solid", "Plane"]; @@ -298,6 +298,7 @@ fn init_handlebars() -> Result> { hbs.register_template_string("propertyType", include_str!("templates/propertyType.hbs"))?; hbs.register_template_string("schema", include_str!("templates/schema.hbs"))?; hbs.register_template_string("index", include_str!("templates/index.hbs"))?; + hbs.register_template_string("consts-index", include_str!("templates/consts-index.hbs"))?; hbs.register_template_string("function", include_str!("templates/function.hbs"))?; hbs.register_template_string("const", include_str!("templates/const.hbs"))?; hbs.register_template_string("type", include_str!("templates/type.hbs"))?; @@ -312,6 +313,9 @@ fn generate_index(combined: &IndexMap>, kcl_lib: &[Doc let mut functions = HashMap::new(); functions.insert("std".to_owned(), Vec::new()); + let mut constants = HashMap::new(); + constants.insert("std".to_owned(), Vec::new()); + for key in combined.keys() { let internal_fn = combined .get(key) @@ -337,6 +341,13 @@ fn generate_index(combined: &IndexMap>, kcl_lib: &[Doc DocData::Const(c) => (c.name.clone(), d.file_name()), DocData::Ty(t) => (t.name.clone(), d.file_name()), }); + + if let DocData::Const(c) = d { + constants + .entry(d.mod_name()) + .or_default() + .push((c.name.clone(), d.file_name())); + } } // TODO we should sub-divide into types, constants, and functions. @@ -362,7 +373,7 @@ fn generate_index(combined: &IndexMap>, kcl_lib: &[Doc .map(|name| { json!({ "name": name, - "file_name": name.to_lowercase().replace(' ', "-"), + "file_name": name.to_lowercase().replace(' ', "-").replace("constants", "consts"), }) }) .collect(); @@ -375,6 +386,31 @@ fn generate_index(combined: &IndexMap>, kcl_lib: &[Doc expectorate::assert_contents("../../docs/kcl/index.md", &output); + // Generate the index for the constants. + let mut sorted_consts: Vec<_> = constants + .into_iter() + .map(|(m, mut consts)| { + consts.sort(); + let val = json!({ + "name": m, + "consts": consts.into_iter().map(|(n, f)| json!({ + "name": n, + "file_name": f, + })).collect::>(), + }); + (m, val) + }) + .collect(); + sorted_consts.sort_by(|t1, t2| t1.0.cmp(&t2.0)); + let data: Vec<_> = sorted_consts.into_iter().map(|(_, val)| val).collect(); + let data = json!({ + "consts": data, + }); + + let output = hbs.render("consts-index", &data)?; + + expectorate::assert_contents("../../docs/kcl/consts.md", &output); + Ok(()) } @@ -405,7 +441,7 @@ fn generate_example(index: usize, src: &str, props: &ExampleProperties, file_nam })) } -fn generate_type_from_kcl(ty: &TyData, file_name: String) -> Result<()> { +fn generate_type_from_kcl(ty: &TyData, file_name: String, example_name: String) -> Result<()> { if ty.properties.doc_hidden { return Ok(()); } @@ -416,7 +452,7 @@ fn generate_type_from_kcl(ty: &TyData, file_name: String) -> Result<()> { .examples .iter() .enumerate() - .filter_map(|(index, example)| generate_example(index, &example.0, &example.1, &file_name)) + .filter_map(|(index, example)| generate_example(index, &example.0, &example.1, &example_name)) .collect(); let data = json!({ @@ -428,7 +464,7 @@ fn generate_type_from_kcl(ty: &TyData, file_name: String) -> Result<()> { }); let output = hbs.render("kclType", &data)?; - expectorate::assert_contents(format!("../../docs/kcl/types/{}.md", file_name), &output); + expectorate::assert_contents(format!("../../docs/kcl/{}.md", file_name), &output); Ok(()) } @@ -480,7 +516,7 @@ fn generate_function_from_kcl(function: &FnData, file_name: String) -> Result<() Ok(()) } -fn generate_const_from_kcl(cnst: &ConstData, file_name: String) -> Result<()> { +fn generate_const_from_kcl(cnst: &ConstData, file_name: String, example_name: String) -> Result<()> { if cnst.properties.doc_hidden { return Ok(()); } @@ -490,7 +526,7 @@ fn generate_const_from_kcl(cnst: &ConstData, file_name: String) -> Result<()> { .examples .iter() .enumerate() - .filter_map(|(index, example)| generate_example(index, &example.0, &example.1, &file_name)) + .filter_map(|(index, example)| generate_example(index, &example.0, &example.1, &example_name)) .collect(); let data = json!({ @@ -1028,8 +1064,8 @@ fn test_generate_stdlib_markdown_docs() { for d in &kcl_std { match d { DocData::Fn(f) => generate_function_from_kcl(f, d.file_name()).unwrap(), - DocData::Const(c) => generate_const_from_kcl(c, d.file_name()).unwrap(), - DocData::Ty(t) => generate_type_from_kcl(t, d.file_name()).unwrap(), + DocData::Const(c) => generate_const_from_kcl(c, d.file_name(), d.example_name()).unwrap(), + DocData::Ty(t) => generate_type_from_kcl(t, d.file_name(), d.example_name()).unwrap(), } } } @@ -1061,7 +1097,8 @@ fn test_generate_stdlib_json_schema() { async fn test_code_in_topics() { let mut join_set = JoinSet::new(); for name in LANG_TOPICS { - let filename = format!("../../docs/kcl/{}.md", name.to_lowercase().replace(' ', "-")); + let filename = + format!("../../docs/kcl/{}.md", name.to_lowercase().replace(' ', "-")).replace("constants", "consts"); let mut file = File::open(&filename).unwrap(); let mut text = String::new(); file.read_to_string(&mut text).unwrap(); diff --git a/rust/kcl-lib/src/docs/kcl_doc.rs b/rust/kcl-lib/src/docs/kcl_doc.rs index dce53d620..5052bae1c 100644 --- a/rust/kcl-lib/src/docs/kcl_doc.rs +++ b/rust/kcl-lib/src/docs/kcl_doc.rs @@ -116,10 +116,18 @@ impl DocData { #[allow(dead_code)] pub fn file_name(&self) -> String { + match self { + DocData::Fn(f) => f.qual_name.replace("::", "-"), + DocData::Const(c) => format!("consts/{}", c.qual_name.replace("::", "-")), + DocData::Ty(t) => format!("types/{}", t.name.clone()), + } + } + + #[allow(dead_code)] + pub fn example_name(&self) -> String { match self { DocData::Fn(f) => f.qual_name.replace("::", "-"), DocData::Const(c) => format!("const_{}", c.qual_name.replace("::", "-")), - // TODO might want to change this DocData::Ty(t) => t.name.clone(), } } @@ -872,7 +880,7 @@ mod test { Ok(img) => img, }; twenty_twenty::assert_image( - format!("tests/outputs/serial_test_example_{}{i}.png", d.file_name()), + format!("tests/outputs/serial_test_example_{}{i}.png", d.example_name()), &result, 0.99, ); diff --git a/rust/kcl-lib/src/docs/templates/consts-index.hbs b/rust/kcl-lib/src/docs/templates/consts-index.hbs new file mode 100644 index 000000000..b489921d5 --- /dev/null +++ b/rust/kcl-lib/src/docs/templates/consts-index.hbs @@ -0,0 +1,17 @@ +--- +title: "KCL Constants" +excerpt: "Documentation for the KCL constants." +layout: manual +--- + +## Table of Contents + +{{#each consts}} + +### `{{name}}` + +{{#each consts}} +- [`{{name}}`](/docs/kcl/{{file_name}}) +{{/each}} +{{/each}} + diff --git a/rust/kcl-lib/tests/array_elem_pop/ast.snap b/rust/kcl-lib/tests/array_elem_pop/ast.snap index 195604b18..8d1a8e8fe 100644 --- a/rust/kcl-lib/tests/array_elem_pop/ast.snap +++ b/rust/kcl-lib/tests/array_elem_pop/ast.snap @@ -1,5 +1,5 @@ --- -source: kcl/src/simulation_tests.rs +source: kcl-lib/src/simulation_tests.rs description: Result of parsing array_elem_pop.kcl --- { diff --git a/rust/kcl-lib/tests/array_elem_pop_empty_fail/ast.snap b/rust/kcl-lib/tests/array_elem_pop_empty_fail/ast.snap index 37a0e2a9d..79b855365 100644 --- a/rust/kcl-lib/tests/array_elem_pop_empty_fail/ast.snap +++ b/rust/kcl-lib/tests/array_elem_pop_empty_fail/ast.snap @@ -1,5 +1,5 @@ --- -source: kcl/src/simulation_tests.rs +source: kcl-lib/src/simulation_tests.rs description: Result of parsing array_elem_pop_empty_fail.kcl --- { diff --git a/rust/kcl-lib/tests/array_elem_pop_empty_fail/execution_error.snap b/rust/kcl-lib/tests/array_elem_pop_empty_fail/execution_error.snap index 79ad93302..741f13373 100644 --- a/rust/kcl-lib/tests/array_elem_pop_empty_fail/execution_error.snap +++ b/rust/kcl-lib/tests/array_elem_pop_empty_fail/execution_error.snap @@ -1,5 +1,5 @@ --- -source: kcl/src/simulation_tests.rs +source: kcl-lib/src/simulation_tests.rs description: Error from executing array_elem_pop_empty_fail.kcl --- KCL Semantic error diff --git a/rust/kcl-lib/tests/kcl_samples/multi-axis-robot/exported_step.macos.step b/rust/kcl-lib/tests/kcl_samples/multi-axis-robot/exported_step.macos.step index 5475cd5fc..a1fefc472 100644 --- a/rust/kcl-lib/tests/kcl_samples/multi-axis-robot/exported_step.macos.step +++ b/rust/kcl-lib/tests/kcl_samples/multi-axis-robot/exported_step.macos.step @@ -1691,258 +1691,258 @@ DATA; #1675 = CARTESIAN_POINT('NONE', (0.06349999999999999, 0.0127, 0.10160000000000001)); #1676 = AXIS2_PLACEMENT_3D('NONE', #1675, #1674, #1673); #1677 = CIRCLE('NONE', #1676, 0.010160000000000011); -#1678 = CARTESIAN_POINT('NONE', (0.09144000000000001, 0, -0.06349999999999999)); -#1679 = CARTESIAN_POINT('NONE', (0.09145066411512032, 0.000000000000000000013877787807814457, -0.06303689579786445)); -#1680 = CARTESIAN_POINT('NONE', (0.09145076925547771, 0, -0.06303232992992577)); -#1681 = CARTESIAN_POINT('NONE', (0.0914835163297744, 0.000000000000000000013877787807814457, -0.06256182889657645)); -#1682 = CARTESIAN_POINT('NONE', (0.09148383919192062, 0, -0.0625571901013045)); -#1683 = CARTESIAN_POINT('NONE', (0.09153973472784685, 0.000000000000000000013877787807814457, -0.06208070671183683)); -#1684 = CARTESIAN_POINT('NONE', (0.09154028581685494, 0, -0.06207600893491913)); -#1685 = CARTESIAN_POINT('NONE', (0.09162028914777405, 0.000000000000000000013877787807814457, -0.061595104187915764)); -#1686 = CARTESIAN_POINT('NONE', (0.09162107792196772, 0, -0.06159036281965399)); -#1687 = CARTESIAN_POINT('NONE', (0.09172602037302552, -0.000000000000000000013877787807814457, -0.06110673617913802)); -#1688 = CARTESIAN_POINT('NONE', (0.0917270550286613, 0, -0.061101967975001586)); -#1689 = CARTESIAN_POINT('NONE', (0.09185761845630096, 0.000000000000000000013877787807814457, -0.060617445714561125)); -#1690 = CARTESIAN_POINT('NONE', (0.0918589057159835, 0, -0.060612668680268794)); -#1691 = CARTESIAN_POINT('NONE', (0.0920156020814046, 0.000000000000000000013877787807814457, -0.060129188551331494)); -#1692 = CARTESIAN_POINT('NONE', (0.09201714699269602, 0, -0.06012442179169182)); -#1693 = CARTESIAN_POINT('NONE', (0.09220029966759133, 0.000000000000000000013877787807814457, -0.05964401406940004)); -#1694 = CARTESIAN_POINT('NONE', (0.09220210541869946, 0, -0.059639277601437564)); -#1695 = CARTESIAN_POINT('NONE', (0.09241183293568236, 0.000000000000000000013877787807814457, -0.05916404270842217)); -#1696 = CARTESIAN_POINT('NONE', (0.09241390069525189, 0, -0.05915935724076423)); -#1697 = CARTESIAN_POINT('NONE', (0.09265010363538512, 0.000000000000000000013877787807814457, -0.05869144030436256)); -#1698 = CARTESIAN_POINT('NONE', (0.09265243242321819, -0.0000000000000000000002168404344971009, -0.05868682698639215)); -#1699 = CARTESIAN_POINT('NONE', (0.09291478407567369, 0.000000000000000000013877787807814457, -0.058228389839782756)); -#1700 = CARTESIAN_POINT('NONE', (0.09291737067064104, 0, -0.05822386998559022)); -#1701 = CARTESIAN_POINT('NONE', (0.09320531200392262, 0.000000000000000000013877787807814457, -0.057777061268021054)); -#1702 = CARTESIAN_POINT('NONE', (0.09320815089438353, 0, -0.05777265606161424)); -#1703 = CARTESIAN_POINT('NONE', (0.09352089024676814, 0.000000000000000000013877787807814457, -0.057339580197028624)); -#1704 = CARTESIAN_POINT('NONE', (0.09352397362751837, 0, -0.057335310386484886)); -#1705 = CARTESIAN_POINT('NONE', (0.0938604913615214, 0.000000000000000000013877787807814457, -0.05691799631352859)); -#1706 = CARTESIAN_POINT('NONE', (0.09386380917968283, -0.0000000000000000000002168404344971009, -0.0569138819026956)); -#1707 = CARTESIAN_POINT('NONE', (0.09422286735945212, 0.000000000000000000013877787807814457, -0.05651425248390943)); -#1708 = CARTESIAN_POINT('NONE', (0.09422640740988478, 0, -0.05651031243080221)); -#1709 = CARTESIAN_POINT('NONE', (0.09460656436194201, 0.000000000000000000013877787807814457, -0.05613015547874499)); -#1710 = CARTESIAN_POINT('NONE', (0.09461031243080224, 0, -0.05612640740988476)); -#1711 = CARTESIAN_POINT('NONE', (0.0950099418495884, 0.000000000000000000013877787807814457, -0.05576734923011547)); -#1712 = CARTESIAN_POINT('NONE', (0.09501388190269562, 0, -0.05576380917968282)); -#1713 = CARTESIAN_POINT('NONE', (0.09543119597565192, 0.000000000000000000013877787807814457, -0.055427291445679774)); -#1714 = CARTESIAN_POINT('NONE', (0.09543531038648491, 0, -0.055423973627518344)); -#1715 = CARTESIAN_POINT('NONE', (0.09586838625107051, 0.000000000000000000013877787807814457, -0.05511123427513375)); -#1716 = CARTESIAN_POINT('NONE', (0.09587265606161426, -0.0000000000000000000002168404344971009, -0.05510815089438352)); -#1717 = CARTESIAN_POINT('NONE', (0.09631946477918342, 0.000000000000000000013877787807814457, -0.05482020956110195)); -#1718 = CARTESIAN_POINT('NONE', (0.09632386998559024, 0, -0.05481737067064104)); -#1719 = CARTESIAN_POINT('NONE', (0.09678230713219967, 0.000000000000000000013877787807814457, -0.05455501901818553)); -#1720 = CARTESIAN_POINT('NONE', (0.0967868269863922, 0, -0.054552432423218174)); -#1721 = CARTESIAN_POINT('NONE', (0.09725474392279385, 0.000000000000000000013877787807814457, -0.054316229483084934)); -#1722 = CARTESIAN_POINT('NONE', (0.09725935724076426, 0, -0.05431390069525186)); -#1723 = CARTESIAN_POINT('NONE', (0.09773459213377964, 0.000000000000000000013877787807814457, -0.054104173178268954)); -#1724 = CARTESIAN_POINT('NONE', (0.09773927760143757, 0, -0.054102105418699434)); -#1725 = CARTESIAN_POINT('NONE', (0.09821968532372936, 0.000000000000000000013877787807814457, -0.05391895274380413)); -#1726 = CARTESIAN_POINT('NONE', (0.09822442179169186, -0.0000000000000000000002168404344971009, -0.05391714699269599)); -#1727 = CARTESIAN_POINT('NONE', (0.09870790192062913, 0.000000000000000000013877787807814457, -0.05376045062727488)); -#1728 = CARTESIAN_POINT('NONE', (0.0987126686802688, 0, -0.05375890571598346)); -#1729 = CARTESIAN_POINT('NONE', (0.09919719094070927, -0.000000000000000000013877787807814457, -0.05362834228834383)); -#1730 = CARTESIAN_POINT('NONE', (0.0992019679750016, 0, -0.05362705502866129)); -#1731 = CARTESIAN_POINT('NONE', (0.09968559461551756, 0.000000000000000000013877787807814457, -0.053522112577603476)); -#1732 = CARTESIAN_POINT('NONE', (0.099690362819654, 0, -0.0535210779219677)); -#1733 = CARTESIAN_POINT('NONE', (0.10017126756665738, 0.000000000000000000013877787807814457, -0.05344107459104862)); -#1734 = CARTESIAN_POINT('NONE', (0.10017600893491915, 0, -0.053440285816854935)); -#1735 = CARTESIAN_POINT('NONE', (0.10065249232438682, 0.000000000000000000013877787807814457, -0.05338439028092868)); -#1736 = CARTESIAN_POINT('NONE', (0.10065719010130453, 0, -0.05338383919192058)); -#1737 = CARTESIAN_POINT('NONE', (0.10112769113465385, 0.000000000000000000013877787807814457, -0.05335109211762389)); -#1738 = CARTESIAN_POINT('NONE', (0.10113232992992578, -0.0000000000000000000002168404344971009, -0.05335076925547769)); -#1739 = CARTESIAN_POINT('NONE', (0.10159543413206133, 0.000000000000000000013877787807814457, -0.05334010514035738)); -#1740 = CARTESIAN_POINT('NONE', (0.10160000000000001, 0, -0.05333999999999999)); -#1741 = CARTESIAN_POINT('NONE', (0.10206310420213555, 0.000000000000000000013877787807814457, -0.053350664115120294)); -#1742 = CARTESIAN_POINT('NONE', (0.10206767007007422, 0, -0.05335076925547769)); -#1743 = CARTESIAN_POINT('NONE', (0.10253817110342353, 0.000000000000000000013877787807814457, -0.05338351632977437)); -#1744 = CARTESIAN_POINT('NONE', (0.10254280989869548, 0, -0.05338383919192058)); -#1745 = CARTESIAN_POINT('NONE', (0.10301929328816314, 0.000000000000000000013877787807814457, -0.05343973472784682)); -#1746 = CARTESIAN_POINT('NONE', (0.10302399106508085, 0, -0.053440285816854914)); -#1747 = CARTESIAN_POINT('NONE', (0.10350489581208425, -0.000000000000000000013877787807814457, -0.053520289147774014)); -#1748 = CARTESIAN_POINT('NONE', (0.10350963718034602, 0, -0.053521077921967704)); -#1749 = CARTESIAN_POINT('NONE', (0.10399326382086194, 0.000000000000000000013877787807814457, -0.0536260203730255)); -#1750 = CARTESIAN_POINT('NONE', (0.10399803202499838, 0, -0.05362705502866128)); -#1751 = CARTESIAN_POINT('NONE', (0.10448255428543891, 0.000000000000000000013877787807814457, -0.05375761845630093)); -#1752 = CARTESIAN_POINT('NONE', (0.10448733131973124, 0, -0.05375890571598347)); -#1753 = CARTESIAN_POINT('NONE', (0.10497081144866847, 0.000000000000000000013877787807814457, -0.05391560208140457)); -#1754 = CARTESIAN_POINT('NONE', (0.10497557820830815, -0.0000000000000000000002168404344971009, -0.05391714699269599)); -#1755 = CARTESIAN_POINT('NONE', (0.10545598593059993, 0.000000000000000000013877787807814457, -0.05410029966759128)); -#1756 = CARTESIAN_POINT('NONE', (0.10546072239856243, 0, -0.05410210541869941)); -#1757 = CARTESIAN_POINT('NONE', (0.10593595729157786, 0.000000000000000000013877787807814457, -0.05431183293568234)); -#1758 = CARTESIAN_POINT('NONE', (0.10594064275923579, 0, -0.05431390069525186)); -#1759 = CARTESIAN_POINT('NONE', (0.10640855969563746, 0.000000000000000000013877787807814457, -0.0545501036353851)); -#1760 = CARTESIAN_POINT('NONE', (0.10641317301360788, -0.0000000000000000000002168404344971009, -0.054552432423218174)); -#1761 = CARTESIAN_POINT('NONE', (0.10687161016021723, 0.000000000000000000013877787807814457, -0.054814784075673674)); -#1762 = CARTESIAN_POINT('NONE', (0.10687613001440976, 0, -0.05481737067064103)); -#1763 = CARTESIAN_POINT('NONE', (0.10732293873197893, 0.000000000000000000013877787807814457, -0.05510531200392259)); -#1764 = CARTESIAN_POINT('NONE', (0.10732734393838574, 0, -0.0551081508943835)); -#1765 = CARTESIAN_POINT('NONE', (0.10776041980297137, 0.000000000000000000013877787807814457, -0.0554208902467681)); -#1766 = CARTESIAN_POINT('NONE', (0.1077646896135151, 0, -0.05542397362751834)); -#1767 = CARTESIAN_POINT('NONE', (0.1081820036864714, 0.000000000000000000013877787807814457, -0.05576049136152138)); -#1768 = CARTESIAN_POINT('NONE', (0.1081861180973044, -0.0000000000000000000002168404344971009, -0.05576380917968281)); -#1769 = CARTESIAN_POINT('NONE', (0.10858574751609056, 0.000000000000000000013877787807814457, -0.05612286735945211)); -#1770 = CARTESIAN_POINT('NONE', (0.10858968756919776, 0, -0.056126407409884754)); -#1771 = CARTESIAN_POINT('NONE', (0.108969844521255, 0.000000000000000000013877787807814457, -0.05650656436194199)); -#1772 = CARTESIAN_POINT('NONE', (0.10897359259011523, 0, -0.05651031243080221)); -#1773 = CARTESIAN_POINT('NONE', (0.1093326507698845, 0.000000000000000000013877787807814457, -0.05690994184958837)); -#1774 = CARTESIAN_POINT('NONE', (0.10933619082031716, 0, -0.056913881902695584)); -#1775 = CARTESIAN_POINT('NONE', (0.10967270855432021, 0.000000000000000000013877787807814457, -0.05733119597565189)); -#1776 = CARTESIAN_POINT('NONE', (0.10967602637248164, 0, -0.05733531038648488)); -#1777 = CARTESIAN_POINT('NONE', (0.10998876572486624, 0.000000000000000000013877787807814457, -0.0577683862510705)); -#1778 = CARTESIAN_POINT('NONE', (0.10999184910561646, -0.0000000000000000000002168404344971009, -0.05777265606161424)); -#1779 = CARTESIAN_POINT('NONE', (0.11027979043889806, 0.000000000000000000013877787807814457, -0.0582194647791834)); -#1780 = CARTESIAN_POINT('NONE', (0.11028262932935896, 0, -0.05822386998559021)); -#1781 = CARTESIAN_POINT('NONE', (0.11054498098181449, 0.000000000000000000013877787807814457, -0.05868230713219962)); -#1782 = CARTESIAN_POINT('NONE', (0.11054756757678184, 0, -0.05868682698639216)); +#1678 = CARTESIAN_POINT('NONE', (0.09144000000000001, 0.000000000000000000013877787807814457, -0.06349999999999999)); +#1679 = CARTESIAN_POINT('NONE', (0.09145066411512032, 0, -0.06303689579786445)); +#1680 = CARTESIAN_POINT('NONE', (0.09145076925547771, 0.000000000000000000013877787807814457, -0.06303232992992577)); +#1681 = CARTESIAN_POINT('NONE', (0.0914835163297744, -0.0000000000000000000002168404344971009, -0.06256182889657645)); +#1682 = CARTESIAN_POINT('NONE', (0.09148383919192062, 0.000000000000000000013877787807814457, -0.0625571901013045)); +#1683 = CARTESIAN_POINT('NONE', (0.09153973472784685, 0, -0.06208070671183683)); +#1684 = CARTESIAN_POINT('NONE', (0.09154028581685494, 0.000000000000000000013877787807814457, -0.06207600893491913)); +#1685 = CARTESIAN_POINT('NONE', (0.09162028914777405, 0, -0.061595104187915764)); +#1686 = CARTESIAN_POINT('NONE', (0.09162107792196772, -0.000000000000000000013877787807814457, -0.06159036281965399)); +#1687 = CARTESIAN_POINT('NONE', (0.09172602037302552, 0, -0.06110673617913802)); +#1688 = CARTESIAN_POINT('NONE', (0.0917270550286613, 0.000000000000000000013877787807814457, -0.061101967975001586)); +#1689 = CARTESIAN_POINT('NONE', (0.09185761845630096, 0, -0.060617445714561125)); +#1690 = CARTESIAN_POINT('NONE', (0.0918589057159835, 0.000000000000000000013877787807814457, -0.060612668680268794)); +#1691 = CARTESIAN_POINT('NONE', (0.0920156020814046, 0, -0.060129188551331494)); +#1692 = CARTESIAN_POINT('NONE', (0.09201714699269602, 0.000000000000000000013877787807814457, -0.06012442179169182)); +#1693 = CARTESIAN_POINT('NONE', (0.09220029966759133, 0, -0.05964401406940004)); +#1694 = CARTESIAN_POINT('NONE', (0.09220210541869946, 0.000000000000000000013877787807814457, -0.059639277601437564)); +#1695 = CARTESIAN_POINT('NONE', (0.09241183293568236, 0, -0.05916404270842217)); +#1696 = CARTESIAN_POINT('NONE', (0.09241390069525189, 0.000000000000000000013877787807814457, -0.05915935724076423)); +#1697 = CARTESIAN_POINT('NONE', (0.09265010363538512, 0, -0.05869144030436256)); +#1698 = CARTESIAN_POINT('NONE', (0.09265243242321819, 0.000000000000000000013877787807814457, -0.05868682698639215)); +#1699 = CARTESIAN_POINT('NONE', (0.09291478407567369, -0.0000000000000000000002168404344971009, -0.058228389839782756)); +#1700 = CARTESIAN_POINT('NONE', (0.09291737067064104, 0.000000000000000000013877787807814457, -0.05822386998559022)); +#1701 = CARTESIAN_POINT('NONE', (0.09320531200392262, 0, -0.057777061268021054)); +#1702 = CARTESIAN_POINT('NONE', (0.09320815089438353, 0.000000000000000000013877787807814457, -0.05777265606161424)); +#1703 = CARTESIAN_POINT('NONE', (0.09352089024676814, 0, -0.057339580197028624)); +#1704 = CARTESIAN_POINT('NONE', (0.09352397362751837, 0.000000000000000000013877787807814457, -0.057335310386484886)); +#1705 = CARTESIAN_POINT('NONE', (0.0938604913615214, 0, -0.05691799631352859)); +#1706 = CARTESIAN_POINT('NONE', (0.09386380917968283, 0.000000000000000000013877787807814457, -0.0569138819026956)); +#1707 = CARTESIAN_POINT('NONE', (0.09422286735945212, -0.0000000000000000000002168404344971009, -0.05651425248390943)); +#1708 = CARTESIAN_POINT('NONE', (0.09422640740988478, 0.000000000000000000013877787807814457, -0.05651031243080221)); +#1709 = CARTESIAN_POINT('NONE', (0.09460656436194201, 0, -0.05613015547874499)); +#1710 = CARTESIAN_POINT('NONE', (0.09461031243080224, 0.000000000000000000013877787807814457, -0.05612640740988476)); +#1711 = CARTESIAN_POINT('NONE', (0.0950099418495884, 0, -0.05576734923011547)); +#1712 = CARTESIAN_POINT('NONE', (0.09501388190269562, 0.000000000000000000013877787807814457, -0.05576380917968282)); +#1713 = CARTESIAN_POINT('NONE', (0.09543119597565192, 0, -0.055427291445679774)); +#1714 = CARTESIAN_POINT('NONE', (0.09543531038648491, 0.000000000000000000013877787807814457, -0.055423973627518344)); +#1715 = CARTESIAN_POINT('NONE', (0.09586838625107051, 0, -0.05511123427513375)); +#1716 = CARTESIAN_POINT('NONE', (0.09587265606161426, 0.000000000000000000013877787807814457, -0.05510815089438352)); +#1717 = CARTESIAN_POINT('NONE', (0.09631946477918342, -0.0000000000000000000002168404344971009, -0.05482020956110195)); +#1718 = CARTESIAN_POINT('NONE', (0.09632386998559024, 0.000000000000000000013877787807814457, -0.05481737067064104)); +#1719 = CARTESIAN_POINT('NONE', (0.09678230713219967, 0, -0.05455501901818553)); +#1720 = CARTESIAN_POINT('NONE', (0.0967868269863922, 0.000000000000000000013877787807814457, -0.054552432423218174)); +#1721 = CARTESIAN_POINT('NONE', (0.09725474392279385, 0, -0.054316229483084934)); +#1722 = CARTESIAN_POINT('NONE', (0.09725935724076426, 0.000000000000000000013877787807814457, -0.05431390069525186)); +#1723 = CARTESIAN_POINT('NONE', (0.09773459213377964, 0, -0.054104173178268954)); +#1724 = CARTESIAN_POINT('NONE', (0.09773927760143757, 0.000000000000000000013877787807814457, -0.054102105418699434)); +#1725 = CARTESIAN_POINT('NONE', (0.09821968532372936, 0, -0.05391895274380413)); +#1726 = CARTESIAN_POINT('NONE', (0.09822442179169186, 0.000000000000000000013877787807814457, -0.05391714699269599)); +#1727 = CARTESIAN_POINT('NONE', (0.09870790192062913, -0.0000000000000000000002168404344971009, -0.05376045062727488)); +#1728 = CARTESIAN_POINT('NONE', (0.0987126686802688, -0.000000000000000000013877787807814457, -0.05375890571598346)); +#1729 = CARTESIAN_POINT('NONE', (0.09919719094070927, 0, -0.05362834228834383)); +#1730 = CARTESIAN_POINT('NONE', (0.0992019679750016, 0.000000000000000000013877787807814457, -0.05362705502866129)); +#1731 = CARTESIAN_POINT('NONE', (0.09968559461551756, 0.0000000000000000000002168404344971009, -0.053522112577603476)); +#1732 = CARTESIAN_POINT('NONE', (0.099690362819654, 0.000000000000000000013877787807814457, -0.0535210779219677)); +#1733 = CARTESIAN_POINT('NONE', (0.10017126756665738, 0, -0.05344107459104862)); +#1734 = CARTESIAN_POINT('NONE', (0.10017600893491915, 0.000000000000000000013877787807814457, -0.053440285816854935)); +#1735 = CARTESIAN_POINT('NONE', (0.10065249232438682, 0, -0.05338439028092868)); +#1736 = CARTESIAN_POINT('NONE', (0.10065719010130453, 0.000000000000000000013877787807814457, -0.05338383919192058)); +#1737 = CARTESIAN_POINT('NONE', (0.10112769113465385, 0, -0.05335109211762389)); +#1738 = CARTESIAN_POINT('NONE', (0.10113232992992578, 0.000000000000000000013877787807814457, -0.05335076925547769)); +#1739 = CARTESIAN_POINT('NONE', (0.10159543413206133, -0.0000000000000000000002168404344971009, -0.05334010514035738)); +#1740 = CARTESIAN_POINT('NONE', (0.10160000000000001, 0.000000000000000000013877787807814457, -0.05333999999999999)); +#1741 = CARTESIAN_POINT('NONE', (0.10206310420213555, 0, -0.053350664115120294)); +#1742 = CARTESIAN_POINT('NONE', (0.10206767007007422, 0.000000000000000000013877787807814457, -0.05335076925547769)); +#1743 = CARTESIAN_POINT('NONE', (0.10253817110342353, -0.0000000000000000000002168404344971009, -0.05338351632977437)); +#1744 = CARTESIAN_POINT('NONE', (0.10254280989869548, 0.000000000000000000013877787807814457, -0.05338383919192058)); +#1745 = CARTESIAN_POINT('NONE', (0.10301929328816314, 0, -0.05343973472784682)); +#1746 = CARTESIAN_POINT('NONE', (0.10302399106508085, -0.000000000000000000013877787807814457, -0.053440285816854914)); +#1747 = CARTESIAN_POINT('NONE', (0.10350489581208425, 0, -0.053520289147774014)); +#1748 = CARTESIAN_POINT('NONE', (0.10350963718034602, 0.000000000000000000013877787807814457, -0.053521077921967704)); +#1749 = CARTESIAN_POINT('NONE', (0.10399326382086194, 0, -0.0536260203730255)); +#1750 = CARTESIAN_POINT('NONE', (0.10399803202499838, 0.000000000000000000013877787807814457, -0.05362705502866128)); +#1751 = CARTESIAN_POINT('NONE', (0.10448255428543891, 0, -0.05375761845630093)); +#1752 = CARTESIAN_POINT('NONE', (0.10448733131973124, 0.000000000000000000013877787807814457, -0.05375890571598347)); +#1753 = CARTESIAN_POINT('NONE', (0.10497081144866847, 0, -0.05391560208140457)); +#1754 = CARTESIAN_POINT('NONE', (0.10497557820830815, 0.000000000000000000013877787807814457, -0.05391714699269599)); +#1755 = CARTESIAN_POINT('NONE', (0.10545598593059993, -0.0000000000000000000002168404344971009, -0.05410029966759128)); +#1756 = CARTESIAN_POINT('NONE', (0.10546072239856243, 0.000000000000000000013877787807814457, -0.05410210541869941)); +#1757 = CARTESIAN_POINT('NONE', (0.10593595729157786, 0, -0.05431183293568234)); +#1758 = CARTESIAN_POINT('NONE', (0.10594064275923579, 0.000000000000000000013877787807814457, -0.05431390069525186)); +#1759 = CARTESIAN_POINT('NONE', (0.10640855969563746, 0, -0.0545501036353851)); +#1760 = CARTESIAN_POINT('NONE', (0.10641317301360788, 0.000000000000000000013877787807814457, -0.054552432423218174)); +#1761 = CARTESIAN_POINT('NONE', (0.10687161016021723, 0, -0.054814784075673674)); +#1762 = CARTESIAN_POINT('NONE', (0.10687613001440976, 0.000000000000000000013877787807814457, -0.05481737067064103)); +#1763 = CARTESIAN_POINT('NONE', (0.10732293873197893, 0, -0.05510531200392259)); +#1764 = CARTESIAN_POINT('NONE', (0.10732734393838574, 0.000000000000000000013877787807814457, -0.0551081508943835)); +#1765 = CARTESIAN_POINT('NONE', (0.10776041980297137, 0, -0.0554208902467681)); +#1766 = CARTESIAN_POINT('NONE', (0.1077646896135151, 0.000000000000000000013877787807814457, -0.05542397362751834)); +#1767 = CARTESIAN_POINT('NONE', (0.1081820036864714, 0, -0.05576049136152138)); +#1768 = CARTESIAN_POINT('NONE', (0.1081861180973044, 0.000000000000000000013877787807814457, -0.05576380917968281)); +#1769 = CARTESIAN_POINT('NONE', (0.10858574751609056, -0.0000000000000000000002168404344971009, -0.05612286735945211)); +#1770 = CARTESIAN_POINT('NONE', (0.10858968756919776, 0.000000000000000000013877787807814457, -0.056126407409884754)); +#1771 = CARTESIAN_POINT('NONE', (0.108969844521255, 0, -0.05650656436194199)); +#1772 = CARTESIAN_POINT('NONE', (0.10897359259011523, 0.000000000000000000013877787807814457, -0.05651031243080221)); +#1773 = CARTESIAN_POINT('NONE', (0.1093326507698845, 0, -0.05690994184958837)); +#1774 = CARTESIAN_POINT('NONE', (0.10933619082031716, 0.000000000000000000013877787807814457, -0.056913881902695584)); +#1775 = CARTESIAN_POINT('NONE', (0.10967270855432021, 0, -0.05733119597565189)); +#1776 = CARTESIAN_POINT('NONE', (0.10967602637248164, 0.000000000000000000013877787807814457, -0.05733531038648488)); +#1777 = CARTESIAN_POINT('NONE', (0.10998876572486624, 0, -0.0577683862510705)); +#1778 = CARTESIAN_POINT('NONE', (0.10999184910561646, 0.000000000000000000013877787807814457, -0.05777265606161424)); +#1779 = CARTESIAN_POINT('NONE', (0.11027979043889806, 0, -0.0582194647791834)); +#1780 = CARTESIAN_POINT('NONE', (0.11028262932935896, 0.000000000000000000013877787807814457, -0.05822386998559021)); +#1781 = CARTESIAN_POINT('NONE', (0.11054498098181449, 0, -0.05868230713219962)); +#1782 = CARTESIAN_POINT('NONE', (0.11054756757678184, 0.000000000000000000013877787807814457, -0.05868682698639216)); #1783 = CARTESIAN_POINT('NONE', (0.11058075742013608, 0, -0.058752575913197255)); -#1784 = CARTESIAN_POINT('NONE', (0.1107837705169151, 0.000000000000000000013877787807814457, -0.05915474392279383)); -#1785 = CARTESIAN_POINT('NONE', (0.11078609930474816, 0, -0.05915935724076423)); -#1786 = CARTESIAN_POINT('NONE', (0.11099582682173105, 0.000000000000000000013877787807814457, -0.05963459213377962)); -#1787 = CARTESIAN_POINT('NONE', (0.11099789458130058, 0, -0.05963927760143756)); -#1788 = CARTESIAN_POINT('NONE', (0.11118104725619586, 0.000000000000000000013877787807814457, -0.06011968532372935)); -#1789 = CARTESIAN_POINT('NONE', (0.111182853007304, -0.0000000000000000000002168404344971009, -0.06012442179169183)); -#1790 = CARTESIAN_POINT('NONE', (0.1113395493727251, 0.000000000000000000013877787807814457, -0.060607901920629106)); -#1791 = CARTESIAN_POINT('NONE', (0.11134109428401652, 0, -0.06061266868026877)); -#1792 = CARTESIAN_POINT('NONE', (0.11147165771165617, -0.000000000000000000013877787807814457, -0.06109719094070927)); -#1793 = CARTESIAN_POINT('NONE', (0.11147294497133871, 0, -0.06110196797500159)); -#1794 = CARTESIAN_POINT('NONE', (0.11157788742239651, 0.000000000000000000013877787807814457, -0.06158559461551755)); -#1795 = CARTESIAN_POINT('NONE', (0.11157892207803227, 0.0000000000000000000002168404344971009, -0.06159036281965398)); -#1796 = CARTESIAN_POINT('NONE', (0.11165892540895138, 0.000000000000000000013877787807814457, -0.06207126756665735)); -#1797 = CARTESIAN_POINT('NONE', (0.11165971418314506, 0, -0.06207600893491913)); -#1798 = CARTESIAN_POINT('NONE', (0.11171560971907131, 0.000000000000000000013877787807814457, -0.0625524923243868)); -#1799 = CARTESIAN_POINT('NONE', (0.1117161608080794, 0, -0.0625571901013045)); -#1800 = CARTESIAN_POINT('NONE', (0.1117489078823761, 0.000000000000000000013877787807814457, -0.06302769113465383)); -#1801 = CARTESIAN_POINT('NONE', (0.11174923074452231, -0.0000000000000000000002168404344971009, -0.06303232992992576)); -#1802 = CARTESIAN_POINT('NONE', (0.11175989485964262, 0.000000000000000000013877787807814457, -0.06349543413206131)); -#1803 = CARTESIAN_POINT('NONE', (0.11176, 0, -0.06349999999999999)); -#1804 = CARTESIAN_POINT('NONE', (0.1117493358848797, 0.000000000000000000013877787807814457, -0.06396310420213552)); -#1805 = CARTESIAN_POINT('NONE', (0.11174923074452231, 0, -0.0639676700700742)); -#1806 = CARTESIAN_POINT('NONE', (0.11171648367022562, 0.000000000000000000013877787807814457, -0.06443817110342351)); -#1807 = CARTESIAN_POINT('NONE', (0.1117161608080794, 0, -0.06444280989869546)); -#1808 = CARTESIAN_POINT('NONE', (0.11166026527215316, 0.000000000000000000013877787807814457, -0.06491929328816314)); -#1809 = CARTESIAN_POINT('NONE', (0.11165971418314506, 0, -0.06492399106508084)); -#1810 = CARTESIAN_POINT('NONE', (0.11157971085222597, -0.000000000000000000013877787807814457, -0.06540489581208422)); -#1811 = CARTESIAN_POINT('NONE', (0.11157892207803229, 0, -0.065409637180346)); -#1812 = CARTESIAN_POINT('NONE', (0.11147397962697449, 0.000000000000000000013877787807814457, -0.06589326382086194)); -#1813 = CARTESIAN_POINT('NONE', (0.11147294497133871, -0.0000000000000000000002168404344971009, -0.06589803202499839)); -#1814 = CARTESIAN_POINT('NONE', (0.11134238154369903, 0.000000000000000000013877787807814457, -0.06638255428543885)); -#1815 = CARTESIAN_POINT('NONE', (0.11134109428401649, 0, -0.06638733131973118)); -#1816 = CARTESIAN_POINT('NONE', (0.11118439791859544, 0.000000000000000000013877787807814457, -0.06687081144866845)); -#1817 = CARTESIAN_POINT('NONE', (0.11118285300730402, -0.0000000000000000000002168404344971009, -0.06687557820830813)); -#1818 = CARTESIAN_POINT('NONE', (0.1109997003324087, 0.000000000000000000013877787807814457, -0.06735598593059992)); -#1819 = CARTESIAN_POINT('NONE', (0.11099789458130058, 0, -0.06736072239856242)); -#1820 = CARTESIAN_POINT('NONE', (0.11078816706431768, 0.000000000000000000013877787807814457, -0.06783595729157782)); -#1821 = CARTESIAN_POINT('NONE', (0.11078609930474814, 0, -0.06784064275923575)); -#1822 = CARTESIAN_POINT('NONE', (0.11054989636461489, 0.000000000000000000013877787807814457, -0.06830855969563741)); -#1823 = CARTESIAN_POINT('NONE', (0.11054756757678183, -0.0000000000000000000002168404344971009, -0.06831317301360783)); -#1824 = CARTESIAN_POINT('NONE', (0.1102852159243263, 0.000000000000000000013877787807814457, -0.06877161016021723)); -#1825 = CARTESIAN_POINT('NONE', (0.11028262932935895, 0, -0.06877613001440976)); -#1826 = CARTESIAN_POINT('NONE', (0.10999468799607738, 0.000000000000000000013877787807814457, -0.06922293873197892)); -#1827 = CARTESIAN_POINT('NONE', (0.10999184910561646, 0, -0.06922734393838573)); -#1828 = CARTESIAN_POINT('NONE', (0.10967910975323188, 0.000000000000000000013877787807814457, -0.06966041980297134)); -#1829 = CARTESIAN_POINT('NONE', (0.10967602637248164, 0, -0.06966468961351507)); -#1830 = CARTESIAN_POINT('NONE', (0.1093395086384786, 0.000000000000000000013877787807814457, -0.07008200368647137)); -#1831 = CARTESIAN_POINT('NONE', (0.10933619082031718, -0.0000000000000000000002168404344971009, -0.07008611809730436)); -#1832 = CARTESIAN_POINT('NONE', (0.10897713264054788, 0.000000000000000000013877787807814457, -0.07048574751609055)); -#1833 = CARTESIAN_POINT('NONE', (0.10897359259011523, 0, -0.07048968756919775)); -#1834 = CARTESIAN_POINT('NONE', (0.10859343563805801, 0.000000000000000000013877787807814457, -0.07086984452125497)); -#1835 = CARTESIAN_POINT('NONE', (0.10858968756919778, 0, -0.0708735925901152)); -#1836 = CARTESIAN_POINT('NONE', (0.10819005815041162, 0.000000000000000000013877787807814457, -0.0712326507698845)); -#1837 = CARTESIAN_POINT('NONE', (0.1081861180973044, 0, -0.07123619082031715)); -#1838 = CARTESIAN_POINT('NONE', (0.10776880402434809, 0.000000000000000000013877787807814457, -0.07157270855432019)); -#1839 = CARTESIAN_POINT('NONE', (0.10776468961351508, 0, -0.07157602637248162)); -#1840 = CARTESIAN_POINT('NONE', (0.10733161374892948, 0.000000000000000000013877787807814457, -0.07188876572486623)); -#1841 = CARTESIAN_POINT('NONE', (0.10732734393838575, -0.0000000000000000000002168404344971009, -0.07189184910561645)); -#1842 = CARTESIAN_POINT('NONE', (0.1068805352208166, 0.000000000000000000013877787807814457, -0.07217979043889802)); -#1843 = CARTESIAN_POINT('NONE', (0.10687613001440978, 0, -0.07218262932935893)); -#1844 = CARTESIAN_POINT('NONE', (0.1064176928678004, 0.000000000000000000013877787807814457, -0.07244498098181446)); -#1845 = CARTESIAN_POINT('NONE', (0.10641317301360786, -0.0000000000000000000002168404344971009, -0.07244756757678181)); -#1846 = CARTESIAN_POINT('NONE', (0.10594525607720619, 0.000000000000000000013877787807814457, -0.07268377051691506)); -#1847 = CARTESIAN_POINT('NONE', (0.10594064275923577, 0, -0.07268609930474812)); -#1848 = CARTESIAN_POINT('NONE', (0.10546540786622037, 0.000000000000000000013877787807814457, -0.072895826821731)); -#1849 = CARTESIAN_POINT('NONE', (0.10546072239856244, 0, -0.07289789458130054)); -#1850 = CARTESIAN_POINT('NONE', (0.10498031467627066, 0.000000000000000000013877787807814457, -0.07308104725619582)); -#1851 = CARTESIAN_POINT('NONE', (0.10497557820830816, -0.0000000000000000000002168404344971009, -0.07308285300730397)); -#1852 = CARTESIAN_POINT('NONE', (0.10449209807937089, 0.000000000000000000013877787807814457, -0.07323954937272506)); -#1853 = CARTESIAN_POINT('NONE', (0.10448733131973122, 0, -0.07324109428401648)); -#1854 = CARTESIAN_POINT('NONE', (0.10400280905929074, -0.000000000000000000013877787807814457, -0.07337165771165616)); -#1855 = CARTESIAN_POINT('NONE', (0.10399803202499841, 0, -0.0733729449713387)); -#1856 = CARTESIAN_POINT('NONE', (0.10351440538448244, 0.000000000000000000013877787807814457, -0.0734778874223965)); -#1857 = CARTESIAN_POINT('NONE', (0.10350963718034599, 0.0000000000000000000002168404344971009, -0.07347892207803226)); -#1858 = CARTESIAN_POINT('NONE', (0.10302873243334262, 0.000000000000000000013877787807814457, -0.07355892540895136)); -#1859 = CARTESIAN_POINT('NONE', (0.10302399106508085, 0, -0.07355971418314504)); -#1860 = CARTESIAN_POINT('NONE', (0.10254750767561319, 0.000000000000000000013877787807814457, -0.07361560971907129)); -#1861 = CARTESIAN_POINT('NONE', (0.10254280989869548, 0, -0.07361616080807938)); -#1862 = CARTESIAN_POINT('NONE', (0.10207230886534617, 0.000000000000000000013877787807814457, -0.07364890788237607)); -#1863 = CARTESIAN_POINT('NONE', (0.10206767007007422, -0.0000000000000000000002168404344971009, -0.07364923074452229)); -#1864 = CARTESIAN_POINT('NONE', (0.10160456586793869, 0.000000000000000000013877787807814457, -0.0736598948596426)); -#1865 = CARTESIAN_POINT('NONE', (0.10160000000000001, 0, -0.07365999999999998)); -#1866 = CARTESIAN_POINT('NONE', (0.10113689579786447, 0.000000000000000000013877787807814457, -0.07364933588487968)); -#1867 = CARTESIAN_POINT('NONE', (0.10113232992992578, 0, -0.07364923074452229)); -#1868 = CARTESIAN_POINT('NONE', (0.10066182889657646, 0.000000000000000000013877787807814457, -0.0736164836702256)); -#1869 = CARTESIAN_POINT('NONE', (0.10065719010130453, 0, -0.07361616080807938)); -#1870 = CARTESIAN_POINT('NONE', (0.10018070671183686, 0.000000000000000000013877787807814457, -0.07356026527215313)); -#1871 = CARTESIAN_POINT('NONE', (0.10017600893491915, 0, -0.07355971418314504)); -#1872 = CARTESIAN_POINT('NONE', (0.0996951041879158, -0.000000000000000000013877787807814457, -0.07347971085222596)); -#1873 = CARTESIAN_POINT('NONE', (0.09969036281965403, 0, -0.07347892207803228)); -#1874 = CARTESIAN_POINT('NONE', (0.09920673617913808, 0.000000000000000000013877787807814457, -0.07337397962697448)); -#1875 = CARTESIAN_POINT('NONE', (0.09920196797500164, -0.0000000000000000000002168404344971009, -0.0733729449713387)); -#1876 = CARTESIAN_POINT('NONE', (0.09871744571456113, 0.000000000000000000013877787807814457, -0.07324238154369904)); -#1877 = CARTESIAN_POINT('NONE', (0.0987126686802688, 0, -0.0732410942840165)); -#1878 = CARTESIAN_POINT('NONE', (0.09822918855133154, 0.000000000000000000013877787807814457, -0.0730843979185954)); -#1879 = CARTESIAN_POINT('NONE', (0.09822442179169187, -0.0000000000000000000002168404344971009, -0.07308285300730398)); -#1880 = CARTESIAN_POINT('NONE', (0.0977440140694001, 0.000000000000000000013877787807814457, -0.07289970033240868)); -#1881 = CARTESIAN_POINT('NONE', (0.09773927760143761, 0, -0.07289789458130055)); -#1882 = CARTESIAN_POINT('NONE', (0.09726404270842219, 0.000000000000000000013877787807814457, -0.07268816706431767)); -#1883 = CARTESIAN_POINT('NONE', (0.09725935724076426, 0, -0.07268609930474813)); -#1884 = CARTESIAN_POINT('NONE', (0.09685257591319726, 0, -0.07248075742013607)); -#1885 = CARTESIAN_POINT('NONE', (0.09679144030436258, 0.000000000000000000013877787807814457, -0.07244989636461488)); -#1886 = CARTESIAN_POINT('NONE', (0.09678682698639217, 0, -0.07244756757678182)); -#1887 = CARTESIAN_POINT('NONE', (0.09632838983978277, 0.000000000000000000013877787807814457, -0.07218521592432631)); -#1888 = CARTESIAN_POINT('NONE', (0.09632386998559024, 0, -0.07218262932935894)); -#1889 = CARTESIAN_POINT('NONE', (0.09587706126802106, 0.000000000000000000013877787807814457, -0.07189468799607736)); -#1890 = CARTESIAN_POINT('NONE', (0.09587265606161426, 0, -0.07189184910561644)); -#1891 = CARTESIAN_POINT('NONE', (0.09543958019702865, 0.000000000000000000013877787807814457, -0.07157910975323187)); -#1892 = CARTESIAN_POINT('NONE', (0.09543531038648491, 0, -0.07157602637248163)); -#1893 = CARTESIAN_POINT('NONE', (0.09501799631352861, 0.000000000000000000013877787807814457, -0.07123950863847858)); -#1894 = CARTESIAN_POINT('NONE', (0.09501388190269562, -0.0000000000000000000002168404344971009, -0.07123619082031715)); -#1895 = CARTESIAN_POINT('NONE', (0.09461425248390944, 0.000000000000000000013877787807814457, -0.07087713264054787)); -#1896 = CARTESIAN_POINT('NONE', (0.09461031243080223, 0, -0.07087359259011522)); -#1897 = CARTESIAN_POINT('NONE', (0.09423015547874501, 0.000000000000000000013877787807814457, -0.070493435638058)); -#1898 = CARTESIAN_POINT('NONE', (0.09422640740988479, 0, -0.07048968756919777)); -#1899 = CARTESIAN_POINT('NONE', (0.0938673492301155, 0.000000000000000000013877787807814457, -0.0700900581504116)); -#1900 = CARTESIAN_POINT('NONE', (0.09386380917968284, 0, -0.07008611809730438)); -#1901 = CARTESIAN_POINT('NONE', (0.09352729144567981, 0.000000000000000000013877787807814457, -0.0696688040243481)); -#1902 = CARTESIAN_POINT('NONE', (0.09352397362751837, 0, -0.06966468961351509)); -#1903 = CARTESIAN_POINT('NONE', (0.09321123427513377, 0.000000000000000000013877787807814457, -0.06923161374892947)); -#1904 = CARTESIAN_POINT('NONE', (0.09320815089438353, -0.0000000000000000000002168404344971009, -0.06922734393838574)); -#1905 = CARTESIAN_POINT('NONE', (0.09292020956110196, 0.000000000000000000013877787807814457, -0.06878053522081658)); -#1906 = CARTESIAN_POINT('NONE', (0.09291737067064104, 0, -0.06877613001440976)); -#1907 = CARTESIAN_POINT('NONE', (0.09265501901818556, 0.000000000000000000013877787807814457, -0.06831769286780036)); -#1908 = CARTESIAN_POINT('NONE', (0.0926524324232182, -0.0000000000000000000002168404344971009, -0.06831317301360783)); -#1909 = CARTESIAN_POINT('NONE', (0.09241622948308495, 0.000000000000000000013877787807814457, -0.06784525607720618)); -#1910 = CARTESIAN_POINT('NONE', (0.09241390069525188, 0, -0.06784064275923576)); -#1911 = CARTESIAN_POINT('NONE', (0.09220417317826897, 0.000000000000000000013877787807814457, -0.06736540786622035)); -#1912 = CARTESIAN_POINT('NONE', (0.09220210541869944, 0, -0.06736072239856242)); -#1913 = CARTESIAN_POINT('NONE', (0.09201895274380414, 0.000000000000000000013877787807814457, -0.06688031467627063)); -#1914 = CARTESIAN_POINT('NONE', (0.09201714699269602, -0.0000000000000000000002168404344971009, -0.06687557820830814)); -#1915 = CARTESIAN_POINT('NONE', (0.0918604506272749, 0.000000000000000000013877787807814457, -0.06639209807937085)); -#1916 = CARTESIAN_POINT('NONE', (0.09185890571598349, 0, -0.06638733131973118)); -#1917 = CARTESIAN_POINT('NONE', (0.09172834228834387, -0.000000000000000000013877787807814457, -0.06590280905929072)); -#1918 = CARTESIAN_POINT('NONE', (0.09172705502866133, 0, -0.06589803202499839)); -#1919 = CARTESIAN_POINT('NONE', (0.09162211257760348, 0.000000000000000000013877787807814457, -0.06541440538448243)); -#1920 = CARTESIAN_POINT('NONE', (0.0916210779219677, 0.0000000000000000000002168404344971009, -0.06540963718034598)); -#1921 = CARTESIAN_POINT('NONE', (0.09154107459104863, 0.000000000000000000013877787807814457, -0.06492873243334261)); -#1922 = CARTESIAN_POINT('NONE', (0.09154028581685494, 0, -0.06492399106508084)); -#1923 = CARTESIAN_POINT('NONE', (0.09148439028092871, 0.000000000000000000013877787807814457, -0.06444750767561316)); -#1924 = CARTESIAN_POINT('NONE', (0.09148383919192062, 0, -0.06444280989869546)); -#1925 = CARTESIAN_POINT('NONE', (0.09145109211762391, 0.000000000000000000013877787807814457, -0.06397230886534615)); -#1926 = CARTESIAN_POINT('NONE', (0.09145076925547771, -0.0000000000000000000002168404344971009, -0.0639676700700742)); -#1927 = CARTESIAN_POINT('NONE', (0.0914401051403574, 0.000000000000000000013877787807814457, -0.06350456586793866)); -#1928 = CARTESIAN_POINT('NONE', (0.09144000000000001, 0, -0.06349999999999999)); -#1929 = B_SPLINE_CURVE_WITH_KNOTS('NONE', 2, (#1678, #1679, #1680, #1681, #1682, #1683, #1684, #1685, #1686, #1687, #1688, #1689, #1690, #1691, #1692, #1693, #1694, #1695, #1696, #1697, #1698, #1699, #1700, #1701, #1702, #1703, #1704, #1705, #1706, #1707, #1708, #1709, #1710, #1711, #1712, #1713, #1714, #1715, #1716, #1717, #1718, #1719, #1720, #1721, #1722, #1723, #1724, #1725, #1726, #1727, #1728, #1729, #1730, #1731, #1732, #1733, #1734, #1735, #1736, #1737, #1738, #1739, #1740, #1741, #1742, #1743, #1744, #1745, #1746, #1747, #1748, #1749, #1750, #1751, #1752, #1753, #1754, #1755, #1756, #1757, #1758, #1759, #1760, #1761, #1762, #1763, #1764, #1765, #1766, #1767, #1768, #1769, #1770, #1771, #1772, #1773, #1774, #1775, #1776, #1777, #1778, #1779, #1780, #1781, #1782, #1783, #1784, #1785, #1786, #1787, #1788, #1789, #1790, #1791, #1792, #1793, #1794, #1795, #1796, #1797, #1798, #1799, #1800, #1801, #1802, #1803, #1804, #1805, #1806, #1807, #1808, #1809, #1810, #1811, #1812, #1813, #1814, #1815, #1816, #1817, #1818, #1819, #1820, #1821, #1822, #1823, #1824, #1825, #1826, #1827, #1828, #1829, #1830, #1831, #1832, #1833, #1834, #1835, #1836, #1837, #1838, #1839, #1840, #1841, #1842, #1843, #1844, #1845, #1846, #1847, #1848, #1849, #1850, #1851, #1852, #1853, #1854, #1855, #1856, #1857, #1858, #1859, #1860, #1861, #1862, #1863, #1864, #1865, #1866, #1867, #1868, #1869, #1870, #1871, #1872, #1873, #1874, #1875, #1876, #1877, #1878, #1879, #1880, #1881, #1882, #1883, #1884, #1885, #1886, #1887, #1888, #1889, #1890, #1891, #1892, #1893, #1894, #1895, #1896, #1897, #1898, #1899, #1900, #1901, #1902, #1903, #1904, #1905, #1906, #1907, #1908, #1909, #1910, #1911, #1912, #1913, #1914, #1915, #1916, #1917, #1918, #1919, #1920, #1921, #1922, #1923, #1924, #1925, #1926, #1927, #1928), .UNSPECIFIED., .F., .F., (3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3), (0, 0.004016064257028112, 0.008032128514056224, 0.012048192771084336, 0.01606425702811245, 0.020080321285140562, 0.024096385542168672, 0.028112449799196783, 0.0321285140562249, 0.03614457831325301, 0.040160642570281124, 0.04417670682730923, 0.048192771084337345, 0.05220883534136546, 0.056224899598393566, 0.06024096385542168, 0.0642570281124498, 0.0682730923694779, 0.07228915662650602, 0.07630522088353413, 0.08032128514056225, 0.08433734939759036, 0.08835341365461846, 0.09236947791164658, 0.09638554216867469, 0.1004016064257028, 0.10441767068273092, 0.10843373493975902, 0.11244979919678713, 0.11646586345381525, 0.12048192771084336, 0.12449799196787148, 0.1285140562248996, 0.1325301204819277, 0.1365461847389558, 0.14056224899598393, 0.14457831325301204, 0.14859437751004015, 0.15261044176706826, 0.15662650602409636, 0.1606425702811245, 0.1646586345381526, 0.1686746987951807, 0.17269076305220882, 0.17670682730923692, 0.18072289156626503, 0.18473895582329317, 0.18875502008032127, 0.19277108433734938, 0.1967871485943775, 0.2008032128514056, 0.20481927710843373, 0.20883534136546184, 0.21285140562248994, 0.21686746987951805, 0.22088353413654616, 0.22489959839357426, 0.2289156626506024, 0.2329317269076305, 0.2369477911646586, 0.24096385542168672, 0.24497991967871482, 0.24899598393574296, 0.25301204819277107, 0.2570281124497992, 0.2610441767068273, 0.2650602409638554, 0.2690763052208835, 0.2730923694779116, 0.2771084337349397, 0.28112449799196787, 0.285140562248996, 0.2891566265060241, 0.2931726907630522, 0.2971887550200803, 0.3012048192771084, 0.3052208835341365, 0.3092369477911646, 0.3132530120481927, 0.31726907630522083, 0.321285140562249, 0.3253012048192771, 0.3293172690763052, 0.3333333333333333, 0.3373493975903614, 0.34136546184738953, 0.34538152610441764, 0.34939759036144574, 0.35341365461847385, 0.35742971887550196, 0.36144578313253006, 0.3654618473895582, 0.36947791164658633, 0.37349397590361444, 0.37751004016064255, 0.38152610441767065, 0.38554216867469876, 0.38955823293172687, 0.393574297188755, 0.3975903614457831, 0.4016064257028112, 0.4056224899598393, 0.40963855421686746, 0.41365461847389556, 0.41767068273092367, 0.4216867469879518, 0.4257028112449799, 0.429718875502008, 0.4337349397590361, 0.4377510040160642, 0.4417670682730923, 0.4457831325301204, 0.4497991967871485, 0.4538152610441767, 0.4578313253012048, 0.4618473895582329, 0.465863453815261, 0.4698795180722891, 0.4738955823293172, 0.47791164658634533, 0.48192771084337344, 0.48594377510040154, 0.48995983935742965, 0.4939759036144578, 0.4979919678714859, 0.5020080321285141, 0.5060240963855422, 0.5100401606425704, 0.5140562248995985, 0.5180722891566265, 0.5220883534136547, 0.5261044176706828, 0.5301204819277109, 0.5341365461847389, 0.5381526104417671, 0.5421686746987953, 0.5461847389558233, 0.5502008032128515, 0.5542168674698795, 0.5582329317269077, 0.5622489959839359, 0.5662650602409639, 0.570281124497992, 0.5742971887550201, 0.5783132530120483, 0.5823293172690763, 0.5863453815261044, 0.5903614457831325, 0.5943775100401607, 0.5983935742971889, 0.6024096385542169, 0.606425702811245, 0.6104417670682731, 0.6144578313253013, 0.6184738955823293, 0.6224899598393574, 0.6265060240963856, 0.6305220883534137, 0.6345381526104418, 0.6385542168674699, 0.642570281124498, 0.6465863453815262, 0.6506024096385543, 0.6546184738955824, 0.6586345381526104, 0.6626506024096386, 0.6666666666666667, 0.6706827309236948, 0.6746987951807228, 0.678714859437751, 0.6827309236947792, 0.6867469879518073, 0.6907630522088354, 0.6947791164658634, 0.6987951807228916, 0.7028112449799198, 0.7068273092369478, 0.7108433734939759, 0.714859437751004, 0.7188755020080322, 0.7228915662650603, 0.7269076305220884, 0.7309236947791165, 0.7349397590361446, 0.7389558232931728, 0.7429718875502008, 0.7469879518072289, 0.751004016064257, 0.7550200803212852, 0.7590361445783133, 0.7630522088353414, 0.7670682730923695, 0.7710843373493976, 0.7751004016064258, 0.7791164658634538, 0.7831325301204819, 0.7871485943775101, 0.7911646586345382, 0.7951807228915663, 0.7991967871485944, 0.8032128514056225, 0.8072289156626506, 0.8112449799196787, 0.8152610441767069, 0.8192771084337349, 0.8232931726907631, 0.8273092369477912, 0.8313253012048193, 0.8353413654618473, 0.8393574297188755, 0.8433734939759037, 0.8473895582329317, 0.8514056224899599, 0.8554216867469879, 0.8594377510040161, 0.8634538152610443, 0.8674698795180723, 0.8714859437751004, 0.8755020080321285, 0.8795180722891567, 0.8835341365461847, 0.8875502008032129, 0.891566265060241, 0.8955823293172691, 0.8995983935742972, 0.9036144578313253, 0.9076305220883534, 0.9116465863453815, 0.9156626506024097, 0.9196787148594378, 0.9236947791164659, 0.927710843373494, 0.9317269076305221, 0.9357429718875502, 0.9397590361445783, 0.9437751004016064, 0.9477911646586346, 0.9518072289156626, 0.9558232931726908, 0.9598393574297188, 0.963855421686747, 0.9678714859437751, 0.9718875502008032, 0.9759036144578314, 0.9799196787148594, 0.9839357429718876, 0.9879518072289156, 0.9919678714859438, 0.9959839357429718, 1), .UNSPECIFIED.); +#1784 = CARTESIAN_POINT('NONE', (0.1107837705169151, 0, -0.05915474392279383)); +#1785 = CARTESIAN_POINT('NONE', (0.11078609930474816, 0.000000000000000000013877787807814457, -0.05915935724076423)); +#1786 = CARTESIAN_POINT('NONE', (0.11099582682173105, 0, -0.05963459213377962)); +#1787 = CARTESIAN_POINT('NONE', (0.11099789458130058, 0.000000000000000000013877787807814457, -0.05963927760143756)); +#1788 = CARTESIAN_POINT('NONE', (0.11118104725619586, 0, -0.06011968532372935)); +#1789 = CARTESIAN_POINT('NONE', (0.111182853007304, 0.000000000000000000013877787807814457, -0.06012442179169183)); +#1790 = CARTESIAN_POINT('NONE', (0.1113395493727251, -0.0000000000000000000002168404344971009, -0.060607901920629106)); +#1791 = CARTESIAN_POINT('NONE', (0.11134109428401652, -0.000000000000000000013877787807814457, -0.06061266868026877)); +#1792 = CARTESIAN_POINT('NONE', (0.11147165771165617, 0, -0.06109719094070927)); +#1793 = CARTESIAN_POINT('NONE', (0.11147294497133871, 0.000000000000000000013877787807814457, -0.06110196797500159)); +#1794 = CARTESIAN_POINT('NONE', (0.11157788742239651, 0.0000000000000000000002168404344971009, -0.06158559461551755)); +#1795 = CARTESIAN_POINT('NONE', (0.11157892207803227, 0.000000000000000000013877787807814457, -0.06159036281965398)); +#1796 = CARTESIAN_POINT('NONE', (0.11165892540895138, 0, -0.06207126756665735)); +#1797 = CARTESIAN_POINT('NONE', (0.11165971418314506, 0.000000000000000000013877787807814457, -0.06207600893491913)); +#1798 = CARTESIAN_POINT('NONE', (0.11171560971907131, 0, -0.0625524923243868)); +#1799 = CARTESIAN_POINT('NONE', (0.1117161608080794, 0.000000000000000000013877787807814457, -0.0625571901013045)); +#1800 = CARTESIAN_POINT('NONE', (0.1117489078823761, 0, -0.06302769113465383)); +#1801 = CARTESIAN_POINT('NONE', (0.11174923074452231, 0.000000000000000000013877787807814457, -0.06303232992992576)); +#1802 = CARTESIAN_POINT('NONE', (0.11175989485964262, -0.0000000000000000000002168404344971009, -0.06349543413206131)); +#1803 = CARTESIAN_POINT('NONE', (0.11176, 0.000000000000000000013877787807814457, -0.06349999999999999)); +#1804 = CARTESIAN_POINT('NONE', (0.1117493358848797, 0, -0.06396310420213552)); +#1805 = CARTESIAN_POINT('NONE', (0.11174923074452231, 0.000000000000000000013877787807814457, -0.0639676700700742)); +#1806 = CARTESIAN_POINT('NONE', (0.11171648367022562, -0.0000000000000000000002168404344971009, -0.06443817110342351)); +#1807 = CARTESIAN_POINT('NONE', (0.1117161608080794, 0.000000000000000000013877787807814457, -0.06444280989869546)); +#1808 = CARTESIAN_POINT('NONE', (0.11166026527215316, 0, -0.06491929328816314)); +#1809 = CARTESIAN_POINT('NONE', (0.11165971418314506, -0.000000000000000000013877787807814457, -0.06492399106508084)); +#1810 = CARTESIAN_POINT('NONE', (0.11157971085222597, 0, -0.06540489581208422)); +#1811 = CARTESIAN_POINT('NONE', (0.11157892207803229, 0.000000000000000000013877787807814457, -0.065409637180346)); +#1812 = CARTESIAN_POINT('NONE', (0.11147397962697449, 0, -0.06589326382086194)); +#1813 = CARTESIAN_POINT('NONE', (0.11147294497133871, 0.000000000000000000013877787807814457, -0.06589803202499839)); +#1814 = CARTESIAN_POINT('NONE', (0.11134238154369903, -0.0000000000000000000002168404344971009, -0.06638255428543885)); +#1815 = CARTESIAN_POINT('NONE', (0.11134109428401649, 0.000000000000000000013877787807814457, -0.06638733131973118)); +#1816 = CARTESIAN_POINT('NONE', (0.11118439791859544, 0, -0.06687081144866845)); +#1817 = CARTESIAN_POINT('NONE', (0.11118285300730402, 0.000000000000000000013877787807814457, -0.06687557820830813)); +#1818 = CARTESIAN_POINT('NONE', (0.1109997003324087, -0.0000000000000000000002168404344971009, -0.06735598593059992)); +#1819 = CARTESIAN_POINT('NONE', (0.11099789458130058, 0.000000000000000000013877787807814457, -0.06736072239856242)); +#1820 = CARTESIAN_POINT('NONE', (0.11078816706431768, 0, -0.06783595729157782)); +#1821 = CARTESIAN_POINT('NONE', (0.11078609930474814, 0.000000000000000000013877787807814457, -0.06784064275923575)); +#1822 = CARTESIAN_POINT('NONE', (0.11054989636461489, -0.0000000000000000000002168404344971009, -0.06830855969563741)); +#1823 = CARTESIAN_POINT('NONE', (0.11054756757678183, 0.000000000000000000013877787807814457, -0.06831317301360783)); +#1824 = CARTESIAN_POINT('NONE', (0.1102852159243263, 0, -0.06877161016021723)); +#1825 = CARTESIAN_POINT('NONE', (0.11028262932935895, 0.000000000000000000013877787807814457, -0.06877613001440976)); +#1826 = CARTESIAN_POINT('NONE', (0.10999468799607738, 0, -0.06922293873197892)); +#1827 = CARTESIAN_POINT('NONE', (0.10999184910561646, 0.000000000000000000013877787807814457, -0.06922734393838573)); +#1828 = CARTESIAN_POINT('NONE', (0.10967910975323188, 0, -0.06966041980297134)); +#1829 = CARTESIAN_POINT('NONE', (0.10967602637248164, 0.000000000000000000013877787807814457, -0.06966468961351507)); +#1830 = CARTESIAN_POINT('NONE', (0.1093395086384786, 0, -0.07008200368647137)); +#1831 = CARTESIAN_POINT('NONE', (0.10933619082031718, 0.000000000000000000013877787807814457, -0.07008611809730436)); +#1832 = CARTESIAN_POINT('NONE', (0.10897713264054788, -0.0000000000000000000002168404344971009, -0.07048574751609055)); +#1833 = CARTESIAN_POINT('NONE', (0.10897359259011523, 0.000000000000000000013877787807814457, -0.07048968756919775)); +#1834 = CARTESIAN_POINT('NONE', (0.10859343563805801, 0, -0.07086984452125497)); +#1835 = CARTESIAN_POINT('NONE', (0.10858968756919778, 0.000000000000000000013877787807814457, -0.0708735925901152)); +#1836 = CARTESIAN_POINT('NONE', (0.10819005815041162, 0, -0.0712326507698845)); +#1837 = CARTESIAN_POINT('NONE', (0.1081861180973044, 0.000000000000000000013877787807814457, -0.07123619082031715)); +#1838 = CARTESIAN_POINT('NONE', (0.10776880402434809, 0, -0.07157270855432019)); +#1839 = CARTESIAN_POINT('NONE', (0.10776468961351508, 0.000000000000000000013877787807814457, -0.07157602637248162)); +#1840 = CARTESIAN_POINT('NONE', (0.10733161374892948, 0, -0.07188876572486623)); +#1841 = CARTESIAN_POINT('NONE', (0.10732734393838575, 0.000000000000000000013877787807814457, -0.07189184910561645)); +#1842 = CARTESIAN_POINT('NONE', (0.1068805352208166, 0, -0.07217979043889802)); +#1843 = CARTESIAN_POINT('NONE', (0.10687613001440978, 0.000000000000000000013877787807814457, -0.07218262932935893)); +#1844 = CARTESIAN_POINT('NONE', (0.1064176928678004, 0, -0.07244498098181446)); +#1845 = CARTESIAN_POINT('NONE', (0.10641317301360786, 0.000000000000000000013877787807814457, -0.07244756757678181)); +#1846 = CARTESIAN_POINT('NONE', (0.10594525607720619, -0.0000000000000000000002168404344971009, -0.07268377051691506)); +#1847 = CARTESIAN_POINT('NONE', (0.10594064275923577, 0.000000000000000000013877787807814457, -0.07268609930474812)); +#1848 = CARTESIAN_POINT('NONE', (0.10546540786622037, 0, -0.072895826821731)); +#1849 = CARTESIAN_POINT('NONE', (0.10546072239856244, 0.000000000000000000013877787807814457, -0.07289789458130054)); +#1850 = CARTESIAN_POINT('NONE', (0.10498031467627066, 0, -0.07308104725619582)); +#1851 = CARTESIAN_POINT('NONE', (0.10497557820830816, 0.000000000000000000013877787807814457, -0.07308285300730397)); +#1852 = CARTESIAN_POINT('NONE', (0.10449209807937089, -0.0000000000000000000002168404344971009, -0.07323954937272506)); +#1853 = CARTESIAN_POINT('NONE', (0.10448733131973122, -0.000000000000000000013877787807814457, -0.07324109428401648)); +#1854 = CARTESIAN_POINT('NONE', (0.10400280905929074, 0, -0.07337165771165616)); +#1855 = CARTESIAN_POINT('NONE', (0.10399803202499841, 0.000000000000000000013877787807814457, -0.0733729449713387)); +#1856 = CARTESIAN_POINT('NONE', (0.10351440538448244, 0.0000000000000000000002168404344971009, -0.0734778874223965)); +#1857 = CARTESIAN_POINT('NONE', (0.10350963718034599, 0.000000000000000000013877787807814457, -0.07347892207803226)); +#1858 = CARTESIAN_POINT('NONE', (0.10302873243334262, 0, -0.07355892540895136)); +#1859 = CARTESIAN_POINT('NONE', (0.10302399106508085, 0.000000000000000000013877787807814457, -0.07355971418314504)); +#1860 = CARTESIAN_POINT('NONE', (0.10254750767561319, 0, -0.07361560971907129)); +#1861 = CARTESIAN_POINT('NONE', (0.10254280989869548, 0.000000000000000000013877787807814457, -0.07361616080807938)); +#1862 = CARTESIAN_POINT('NONE', (0.10207230886534617, 0, -0.07364890788237607)); +#1863 = CARTESIAN_POINT('NONE', (0.10206767007007422, 0.000000000000000000013877787807814457, -0.07364923074452229)); +#1864 = CARTESIAN_POINT('NONE', (0.10160456586793869, -0.0000000000000000000002168404344971009, -0.0736598948596426)); +#1865 = CARTESIAN_POINT('NONE', (0.10160000000000001, 0.000000000000000000013877787807814457, -0.07365999999999998)); +#1866 = CARTESIAN_POINT('NONE', (0.10113689579786447, 0, -0.07364933588487968)); +#1867 = CARTESIAN_POINT('NONE', (0.10113232992992578, 0.000000000000000000013877787807814457, -0.07364923074452229)); +#1868 = CARTESIAN_POINT('NONE', (0.10066182889657646, -0.0000000000000000000002168404344971009, -0.0736164836702256)); +#1869 = CARTESIAN_POINT('NONE', (0.10065719010130453, 0.000000000000000000013877787807814457, -0.07361616080807938)); +#1870 = CARTESIAN_POINT('NONE', (0.10018070671183686, 0, -0.07356026527215313)); +#1871 = CARTESIAN_POINT('NONE', (0.10017600893491915, -0.000000000000000000013877787807814457, -0.07355971418314504)); +#1872 = CARTESIAN_POINT('NONE', (0.0996951041879158, 0, -0.07347971085222596)); +#1873 = CARTESIAN_POINT('NONE', (0.09969036281965403, 0.000000000000000000013877787807814457, -0.07347892207803228)); +#1874 = CARTESIAN_POINT('NONE', (0.09920673617913808, 0, -0.07337397962697448)); +#1875 = CARTESIAN_POINT('NONE', (0.09920196797500164, 0.000000000000000000013877787807814457, -0.0733729449713387)); +#1876 = CARTESIAN_POINT('NONE', (0.09871744571456113, -0.0000000000000000000002168404344971009, -0.07324238154369904)); +#1877 = CARTESIAN_POINT('NONE', (0.0987126686802688, 0.000000000000000000013877787807814457, -0.0732410942840165)); +#1878 = CARTESIAN_POINT('NONE', (0.09822918855133154, 0, -0.0730843979185954)); +#1879 = CARTESIAN_POINT('NONE', (0.09822442179169187, 0.000000000000000000013877787807814457, -0.07308285300730398)); +#1880 = CARTESIAN_POINT('NONE', (0.0977440140694001, -0.0000000000000000000002168404344971009, -0.07289970033240868)); +#1881 = CARTESIAN_POINT('NONE', (0.09773927760143761, 0.000000000000000000013877787807814457, -0.07289789458130055)); +#1882 = CARTESIAN_POINT('NONE', (0.09726404270842219, 0, -0.07268816706431767)); +#1883 = CARTESIAN_POINT('NONE', (0.09725935724076426, 0.000000000000000000013877787807814457, -0.07268609930474813)); +#1884 = CARTESIAN_POINT('NONE', (0.09685257591319725, 0, -0.07248075742013609)); +#1885 = CARTESIAN_POINT('NONE', (0.09679144030436258, -0.0000000000000000000002168404344971009, -0.07244989636461488)); +#1886 = CARTESIAN_POINT('NONE', (0.09678682698639217, 0.000000000000000000013877787807814457, -0.07244756757678182)); +#1887 = CARTESIAN_POINT('NONE', (0.09632838983978277, 0, -0.07218521592432631)); +#1888 = CARTESIAN_POINT('NONE', (0.09632386998559024, 0.000000000000000000013877787807814457, -0.07218262932935894)); +#1889 = CARTESIAN_POINT('NONE', (0.09587706126802106, 0, -0.07189468799607736)); +#1890 = CARTESIAN_POINT('NONE', (0.09587265606161426, 0.000000000000000000013877787807814457, -0.07189184910561644)); +#1891 = CARTESIAN_POINT('NONE', (0.09543958019702865, 0, -0.07157910975323187)); +#1892 = CARTESIAN_POINT('NONE', (0.09543531038648491, 0.000000000000000000013877787807814457, -0.07157602637248163)); +#1893 = CARTESIAN_POINT('NONE', (0.09501799631352861, 0, -0.07123950863847858)); +#1894 = CARTESIAN_POINT('NONE', (0.09501388190269562, 0.000000000000000000013877787807814457, -0.07123619082031715)); +#1895 = CARTESIAN_POINT('NONE', (0.09461425248390944, -0.0000000000000000000002168404344971009, -0.07087713264054787)); +#1896 = CARTESIAN_POINT('NONE', (0.09461031243080223, 0.000000000000000000013877787807814457, -0.07087359259011522)); +#1897 = CARTESIAN_POINT('NONE', (0.09423015547874501, 0, -0.070493435638058)); +#1898 = CARTESIAN_POINT('NONE', (0.09422640740988479, 0.000000000000000000013877787807814457, -0.07048968756919777)); +#1899 = CARTESIAN_POINT('NONE', (0.0938673492301155, 0, -0.0700900581504116)); +#1900 = CARTESIAN_POINT('NONE', (0.09386380917968284, 0.000000000000000000013877787807814457, -0.07008611809730438)); +#1901 = CARTESIAN_POINT('NONE', (0.09352729144567981, 0, -0.0696688040243481)); +#1902 = CARTESIAN_POINT('NONE', (0.09352397362751837, 0.000000000000000000013877787807814457, -0.06966468961351509)); +#1903 = CARTESIAN_POINT('NONE', (0.09321123427513377, 0, -0.06923161374892947)); +#1904 = CARTESIAN_POINT('NONE', (0.09320815089438353, 0.000000000000000000013877787807814457, -0.06922734393838574)); +#1905 = CARTESIAN_POINT('NONE', (0.09292020956110196, 0, -0.06878053522081658)); +#1906 = CARTESIAN_POINT('NONE', (0.09291737067064104, 0.000000000000000000013877787807814457, -0.06877613001440976)); +#1907 = CARTESIAN_POINT('NONE', (0.09265501901818556, 0, -0.06831769286780036)); +#1908 = CARTESIAN_POINT('NONE', (0.0926524324232182, 0.000000000000000000013877787807814457, -0.06831317301360783)); +#1909 = CARTESIAN_POINT('NONE', (0.09241622948308495, -0.0000000000000000000002168404344971009, -0.06784525607720618)); +#1910 = CARTESIAN_POINT('NONE', (0.09241390069525188, 0.000000000000000000013877787807814457, -0.06784064275923576)); +#1911 = CARTESIAN_POINT('NONE', (0.09220417317826897, 0, -0.06736540786622035)); +#1912 = CARTESIAN_POINT('NONE', (0.09220210541869944, 0.000000000000000000013877787807814457, -0.06736072239856242)); +#1913 = CARTESIAN_POINT('NONE', (0.09201895274380414, -0.0000000000000000000002168404344971009, -0.06688031467627063)); +#1914 = CARTESIAN_POINT('NONE', (0.09201714699269602, 0.000000000000000000013877787807814457, -0.06687557820830814)); +#1915 = CARTESIAN_POINT('NONE', (0.0918604506272749, -0.0000000000000000000002168404344971009, -0.06639209807937085)); +#1916 = CARTESIAN_POINT('NONE', (0.09185890571598349, -0.000000000000000000013877787807814457, -0.06638733131973118)); +#1917 = CARTESIAN_POINT('NONE', (0.09172834228834387, 0, -0.06590280905929072)); +#1918 = CARTESIAN_POINT('NONE', (0.09172705502866133, 0.000000000000000000013877787807814457, -0.06589803202499839)); +#1919 = CARTESIAN_POINT('NONE', (0.09162211257760348, 0.0000000000000000000002168404344971009, -0.06541440538448243)); +#1920 = CARTESIAN_POINT('NONE', (0.0916210779219677, 0.000000000000000000013877787807814457, -0.06540963718034598)); +#1921 = CARTESIAN_POINT('NONE', (0.09154107459104863, 0, -0.06492873243334261)); +#1922 = CARTESIAN_POINT('NONE', (0.09154028581685494, 0.000000000000000000013877787807814457, -0.06492399106508084)); +#1923 = CARTESIAN_POINT('NONE', (0.09148439028092871, 0, -0.06444750767561316)); +#1924 = CARTESIAN_POINT('NONE', (0.09148383919192062, 0.000000000000000000013877787807814457, -0.06444280989869546)); +#1925 = CARTESIAN_POINT('NONE', (0.09145109211762391, 0, -0.06397230886534615)); +#1926 = CARTESIAN_POINT('NONE', (0.09145076925547771, 0.000000000000000000013877787807814457, -0.0639676700700742)); +#1927 = CARTESIAN_POINT('NONE', (0.0914401051403574, -0.0000000000000000000002168404344971009, -0.06350456586793866)); +#1928 = CARTESIAN_POINT('NONE', (0.09144000000000001, 0.000000000000000000013877787807814457, -0.06349999999999999)); +#1929 = B_SPLINE_CURVE_WITH_KNOTS('NONE', 2, (#1678, #1679, #1680, #1681, #1682, #1683, #1684, #1685, #1686, #1687, #1688, #1689, #1690, #1691, #1692, #1693, #1694, #1695, #1696, #1697, #1698, #1699, #1700, #1701, #1702, #1703, #1704, #1705, #1706, #1707, #1708, #1709, #1710, #1711, #1712, #1713, #1714, #1715, #1716, #1717, #1718, #1719, #1720, #1721, #1722, #1723, #1724, #1725, #1726, #1727, #1728, #1729, #1730, #1731, #1732, #1733, #1734, #1735, #1736, #1737, #1738, #1739, #1740, #1741, #1742, #1743, #1744, #1745, #1746, #1747, #1748, #1749, #1750, #1751, #1752, #1753, #1754, #1755, #1756, #1757, #1758, #1759, #1760, #1761, #1762, #1763, #1764, #1765, #1766, #1767, #1768, #1769, #1770, #1771, #1772, #1773, #1774, #1775, #1776, #1777, #1778, #1779, #1780, #1781, #1782, #1783, #1784, #1785, #1786, #1787, #1788, #1789, #1790, #1791, #1792, #1793, #1794, #1795, #1796, #1797, #1798, #1799, #1800, #1801, #1802, #1803, #1804, #1805, #1806, #1807, #1808, #1809, #1810, #1811, #1812, #1813, #1814, #1815, #1816, #1817, #1818, #1819, #1820, #1821, #1822, #1823, #1824, #1825, #1826, #1827, #1828, #1829, #1830, #1831, #1832, #1833, #1834, #1835, #1836, #1837, #1838, #1839, #1840, #1841, #1842, #1843, #1844, #1845, #1846, #1847, #1848, #1849, #1850, #1851, #1852, #1853, #1854, #1855, #1856, #1857, #1858, #1859, #1860, #1861, #1862, #1863, #1864, #1865, #1866, #1867, #1868, #1869, #1870, #1871, #1872, #1873, #1874, #1875, #1876, #1877, #1878, #1879, #1880, #1881, #1882, #1883, #1884, #1885, #1886, #1887, #1888, #1889, #1890, #1891, #1892, #1893, #1894, #1895, #1896, #1897, #1898, #1899, #1900, #1901, #1902, #1903, #1904, #1905, #1906, #1907, #1908, #1909, #1910, #1911, #1912, #1913, #1914, #1915, #1916, #1917, #1918, #1919, #1920, #1921, #1922, #1923, #1924, #1925, #1926, #1927, #1928), .UNSPECIFIED., .F., .F., (3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3), (-1, -0.9959839357429718, -0.9919678714859438, -0.9879518072289156, -0.9839357429718876, -0.9799196787148594, -0.9759036144578314, -0.9718875502008032, -0.9678714859437751, -0.963855421686747, -0.9598393574297188, -0.9558232931726908, -0.9518072289156626, -0.9477911646586346, -0.9437751004016064, -0.9397590361445783, -0.9357429718875502, -0.9317269076305221, -0.927710843373494, -0.9236947791164659, -0.9196787148594378, -0.9156626506024097, -0.9116465863453815, -0.9076305220883534, -0.9036144578313253, -0.8995983935742972, -0.8955823293172691, -0.891566265060241, -0.8875502008032129, -0.8835341365461847, -0.8795180722891567, -0.8755020080321285, -0.8714859437751004, -0.8674698795180723, -0.8634538152610443, -0.8594377510040161, -0.8554216867469879, -0.8514056224899599, -0.8473895582329317, -0.8433734939759037, -0.8393574297188755, -0.8353413654618473, -0.8313253012048193, -0.8273092369477912, -0.8232931726907631, -0.8192771084337349, -0.8152610441767069, -0.8112449799196787, -0.8072289156626506, -0.8032128514056225, -0.7991967871485944, -0.7951807228915663, -0.7911646586345382, -0.7871485943775101, -0.7831325301204819, -0.7791164658634538, -0.7751004016064258, -0.7710843373493976, -0.7670682730923695, -0.7630522088353414, -0.7590361445783133, -0.7550200803212852, -0.751004016064257, -0.7469879518072289, -0.7429718875502008, -0.7389558232931728, -0.7349397590361446, -0.7309236947791165, -0.7269076305220884, -0.7228915662650603, -0.7188755020080322, -0.714859437751004, -0.7108433734939759, -0.7068273092369478, -0.7028112449799198, -0.6987951807228916, -0.6947791164658634, -0.6907630522088354, -0.6867469879518073, -0.6827309236947792, -0.678714859437751, -0.6746987951807228, -0.6706827309236948, -0.6666666666666667, -0.6626506024096386, -0.6586345381526104, -0.6546184738955824, -0.6506024096385543, -0.6465863453815262, -0.642570281124498, -0.6385542168674699, -0.6345381526104418, -0.6305220883534137, -0.6265060240963856, -0.6224899598393574, -0.6184738955823293, -0.6144578313253013, -0.6104417670682731, -0.606425702811245, -0.6024096385542169, -0.5983935742971889, -0.5943775100401607, -0.5903614457831325, -0.5863453815261044, -0.5823293172690763, -0.5783132530120483, -0.5742971887550201, -0.570281124497992, -0.5662650602409639, -0.5622489959839359, -0.5582329317269077, -0.5542168674698795, -0.5502008032128515, -0.5461847389558233, -0.5421686746987953, -0.5381526104417671, -0.5341365461847389, -0.5301204819277109, -0.5261044176706828, -0.5220883534136547, -0.5180722891566265, -0.5140562248995985, -0.5100401606425704, -0.5060240963855422, -0.5020080321285141, -0.4979919678714859, -0.4939759036144578, -0.48995983935742965, -0.48594377510040154, -0.48192771084337344, -0.47791164658634533, -0.4738955823293172, -0.4698795180722891, -0.465863453815261, -0.4618473895582329, -0.4578313253012048, -0.4538152610441767, -0.4497991967871485, -0.4457831325301204, -0.4417670682730923, -0.4377510040160642, -0.4337349397590361, -0.429718875502008, -0.4257028112449799, -0.4216867469879518, -0.41767068273092367, -0.41365461847389556, -0.40963855421686746, -0.4056224899598393, -0.4016064257028112, -0.3975903614457831, -0.393574297188755, -0.38955823293172687, -0.38554216867469876, -0.38152610441767065, -0.37751004016064255, -0.37349397590361444, -0.36947791164658633, -0.3654618473895582, -0.36144578313253006, -0.35742971887550196, -0.35341365461847385, -0.34939759036144574, -0.34538152610441764, -0.34136546184738953, -0.3373493975903614, -0.3333333333333333, -0.3293172690763052, -0.3253012048192771, -0.321285140562249, -0.31726907630522083, -0.3132530120481927, -0.3092369477911646, -0.3052208835341365, -0.3012048192771084, -0.2971887550200803, -0.2931726907630522, -0.2891566265060241, -0.285140562248996, -0.28112449799196787, -0.2771084337349397, -0.2730923694779116, -0.2690763052208835, -0.2650602409638554, -0.2610441767068273, -0.2570281124497992, -0.25301204819277107, -0.24899598393574296, -0.24497991967871482, -0.24096385542168672, -0.2369477911646586, -0.2329317269076305, -0.2289156626506024, -0.22489959839357426, -0.22088353413654616, -0.21686746987951805, -0.21285140562248994, -0.20883534136546184, -0.20481927710843373, -0.2008032128514056, -0.1967871485943775, -0.19277108433734938, -0.18875502008032127, -0.18473895582329317, -0.18072289156626503, -0.17670682730923692, -0.17269076305220882, -0.1686746987951807, -0.1646586345381526, -0.1606425702811245, -0.15662650602409636, -0.15261044176706826, -0.14859437751004015, -0.14457831325301204, -0.14056224899598393, -0.1365461847389558, -0.1325301204819277, -0.1285140562248996, -0.12449799196787148, -0.12048192771084336, -0.11646586345381525, -0.11244979919678713, -0.10843373493975902, -0.10441767068273092, -0.1004016064257028, -0.09638554216867469, -0.09236947791164658, -0.08835341365461846, -0.08433734939759036, -0.08032128514056225, -0.07630522088353413, -0.07228915662650602, -0.0682730923694779, -0.0642570281124498, -0.06024096385542168, -0.056224899598393566, -0.05220883534136546, -0.048192771084337345, -0.04417670682730923, -0.040160642570281124, -0.03614457831325301, -0.0321285140562249, -0.028112449799196783, -0.024096385542168672, -0.020080321285140562, -0.01606425702811245, -0.012048192771084336, -0.008032128514056224, -0.004016064257028112, -0), .UNSPECIFIED.); #1930 = DIRECTION('NONE', (0, 1, 0)); #1931 = VECTOR('NONE', #1930, 1); #1932 = CARTESIAN_POINT('NONE', (0.09144000000000001, -0.0000009999999999994458, -0.06349999999999999));