From 59d0e079a14c24ab9c0a650716dfc864198f66ed Mon Sep 17 00:00:00 2001 From: Nick Cameron Date: Thu, 13 Feb 2025 11:59:57 +1300 Subject: [PATCH] Make ProgramMemory and the internals of ExecState private (#5364) * Make ProgramMemory and the internals of ExecState private Signed-off-by: Nick Cameron * snapshot test changes Signed-off-by: Nick Cameron --------- Signed-off-by: Nick Cameron --- src/lang/wasm.ts | 4 - src/lib/wasm_lib_wrapper.ts | 4 - src/wasm-lib/derive-docs/src/lib.rs | 4 +- .../derive-docs/tests/args_with_lifetime.gen | 7 +- .../derive-docs/tests/args_with_refs.gen | 7 +- src/wasm-lib/derive-docs/tests/array.gen | 12 +- src/wasm-lib/derive-docs/tests/box.gen | 7 +- .../tests/doc_comment_with_code.gen | 12 +- src/wasm-lib/derive-docs/tests/lineTo.gen | 12 +- src/wasm-lib/derive-docs/tests/min.gen | 12 +- src/wasm-lib/derive-docs/tests/option.gen | 7 +- .../derive-docs/tests/option_input_format.gen | 7 +- .../tests/return_vec_box_sketch.gen | 7 +- .../derive-docs/tests/return_vec_sketch.gen | 7 +- src/wasm-lib/derive-docs/tests/show.gen | 7 +- .../tests/test_args_with_exec_state.gen | 7 +- src/wasm-lib/kcl/src/errors.rs | 4 +- src/wasm-lib/kcl/src/execution/cache.rs | 4 +- src/wasm-lib/kcl/src/execution/exec_ast.rs | 5 +- src/wasm-lib/kcl/src/execution/kcl_value.rs | 5 +- src/wasm-lib/kcl/src/execution/memory.rs | 12 +- src/wasm-lib/kcl/src/execution/mod.rs | 4 +- src/wasm-lib/kcl/src/execution/state.rs | 29 +- src/wasm-lib/kcl/src/lib.rs | 4 +- src/wasm-lib/kcl/src/modules.rs | 5 +- src/wasm-lib/kcl/src/simulation_tests.rs | 25 +- src/wasm-lib/kcl/src/std/chamfer.rs | 2 +- src/wasm-lib/kcl/src/std/sketch.rs | 2 +- src/wasm-lib/kcl/src/test_server.rs | 4 +- .../kcl/tests/add_lots/program_memory.snap | 3037 +- .../kcl/tests/angled_line/program_memory.snap | 811 +- .../tests/array_elem_pop/program_memory.snap | 319 +- .../tests/array_elem_push/program_memory.snap | 449 +- .../array_range_expr/program_memory.snap | 763 +- .../program_memory.snap | 367 +- .../program_memory.snap | 2313 +- .../program_memory.snap | 975 +- .../program_memory.snap | 422 +- .../program_memory.snap | 3939 +- .../program_memory.snap | 1167 +- .../basic_fillet_cube_end/program_memory.snap | 941 +- .../program_memory.snap | 1391 +- .../program_memory.snap | 1391 +- .../program_memory.snap | 941 +- .../program_memory.snap | 629 +- .../program_memory.snap | 629 +- .../boolean_logical_and/program_memory.snap | 317 +- .../program_memory.snap | 241 +- .../boolean_logical_or/program_memory.snap | 317 +- .../circle_three_point/program_memory.snap | 304 +- .../program_memory.snap | 126864 +++++++-------- .../kcl/tests/comparisons/program_memory.snap | 55 +- .../tests/computed_var/program_memory.snap | 369 +- .../kcl/tests/cube/program_memory.snap | 1853 +- .../tests/double_map_fn/program_memory.snap | 496 +- .../fillet-and-shell/program_memory.snap | 3208 +- .../tests/function_sketch/program_memory.snap | 1195 +- .../program_memory.snap | 1165 +- .../kcl/tests/helix_ccw/program_memory.snap | 304 +- .../tests/helix_simple/program_memory.snap | 376 +- .../kcl/tests/i_shape/program_memory.snap | 3948 +- .../kcl/tests/if_else/program_memory.snap | 133 +- .../tests/import_constant/program_memory.snap | 120 +- .../tests/import_export/program_memory.snap | 159 +- .../tests/import_foreign/program_memory.snap | 113 +- .../program_memory.snap | 706 +- .../kcl/tests/import_glob/program_memory.snap | 270 +- .../import_side_effect/program_memory.snap | 332 +- .../tests/import_whole/program_memory.snap | 352 +- .../tests/index_of_array/program_memory.snap | 237 +- .../tests/kittycad_svg/program_memory.snap | 17682 +- .../kcl/tests/kw_fn/program_memory.snap | 440 +- .../kw_fn_with_defaults/program_memory.snap | 294 +- .../program_memory.snap | 24524 ++- .../mike_stress_test/program_memory.snap | 62282 ++++--- .../tests/neg_xz_plane/program_memory.snap | 410 +- .../kcl/tests/parametric/program_memory.snap | 794 +- .../program_memory.snap | 978 +- .../pentagon_fillet_sugar/program_memory.snap | 5837 +- .../kcl/tests/pipe_as_arg/program_memory.snap | 2101 +- .../kcl/tests/poop_chute/program_memory.snap | 3317 +- .../property_of_object/program_memory.snap | 371 +- .../tests/riddle_small/program_memory.snap | 963 +- .../program_memory.snap | 6337 +- .../program_memory.snap | 6337 +- .../sketch_in_object/program_memory.snap | 1896 +- .../tests/sketch_on_face/program_memory.snap | 1161 +- .../program_memory.snap | 2127 +- .../program_memory.snap | 1553 +- .../sketch_on_face_end/program_memory.snap | 1490 +- .../program_memory.snap | 1490 +- .../sketch_on_face_start/program_memory.snap | 2339 +- .../tests/tan_arc_x_line/program_memory.snap | 477 +- .../tests/tangential_arc/program_memory.snap | 420 +- .../kcl/tests/xz_plane/program_memory.snap | 410 +- src/wasm-lib/src/wasm.rs | 12 - src/wasm-lib/tests/modify/main.rs | 6 +- 97 files changed, 153926 insertions(+), 156268 deletions(-) diff --git a/src/lang/wasm.ts b/src/lang/wasm.ts index e9d1a62fd..af3d72f30 100644 --- a/src/lang/wasm.ts +++ b/src/lang/wasm.ts @@ -9,7 +9,6 @@ import { modify_ast_for_sketch_wasm, is_points_ccw, get_tangential_arc_to_info, - program_memory_init, make_default_planes, coredump, toml_stringify, @@ -43,9 +42,6 @@ import { DeepPartial } from 'lib/types' import { ProjectConfiguration } from 'wasm-lib/kcl/bindings/ProjectConfiguration' import { Sketch } from '../wasm-lib/kcl/bindings/Sketch' import { ExecOutcome as RustExecOutcome } from 'wasm-lib/kcl/bindings/ExecOutcome' -import { ProgramMemory as RawProgramMemory } from '../wasm-lib/kcl/bindings/ProgramMemory' -import { EnvironmentRef } from '../wasm-lib/kcl/bindings/EnvironmentRef' -import { Environment } from '../wasm-lib/kcl/bindings/Environment' import { Node } from 'wasm-lib/kcl/bindings/Node' import { CompilationError } from 'wasm-lib/kcl/bindings/CompilationError' import { SourceRange } from 'wasm-lib/kcl/bindings/SourceRange' diff --git a/src/lib/wasm_lib_wrapper.ts b/src/lib/wasm_lib_wrapper.ts index 97d38c4f2..8b0288f62 100644 --- a/src/lib/wasm_lib_wrapper.ts +++ b/src/lib/wasm_lib_wrapper.ts @@ -17,7 +17,6 @@ import { modify_ast_for_sketch_wasm as ModifyAstForSketch, is_points_ccw as IsPointsCcw, get_tangential_arc_to_info as GetTangentialArcToInfo, - program_memory_init as ProgramMemoryInit, make_default_planes as MakeDefaultPlanes, coredump as CoreDump, toml_stringify as TomlStringify, @@ -80,9 +79,6 @@ export const get_tangential_arc_to_info: typeof GetTangentialArcToInfo = ( ) => { return getModule().get_tangential_arc_to_info(...args) } -export const program_memory_init: typeof ProgramMemoryInit = (...args) => { - return getModule().program_memory_init(...args) -} export const make_default_planes: typeof MakeDefaultPlanes = (...args) => { return getModule().make_default_planes(...args) } diff --git a/src/wasm-lib/derive-docs/src/lib.rs b/src/wasm-lib/derive-docs/src/lib.rs index dc5840f8f..299b5a3dc 100644 --- a/src/wasm-lib/derive-docs/src/lib.rs +++ b/src/wasm-lib/derive-docs/src/lib.rs @@ -442,7 +442,7 @@ fn do_stdlib_inner( #const_struct fn #boxed_fn_name_ident( - exec_state: &mut crate::ExecState, + exec_state: &mut crate::execution::ExecState, args: crate::std::Args, ) -> std::pin::Pin< Box> + Send + '_>, @@ -831,7 +831,7 @@ fn generate_code_block_test(fn_name: &str, code_block: &str, index: usize) -> pr context_type: crate::execution::ContextType::Mock, }; - if let Err(e) = ctx.run(&program, &mut crate::ExecState::new(&ctx.settings)).await { + if let Err(e) = ctx.run(&program, &mut crate::execution::ExecState::new(&ctx.settings)).await { return Err(miette::Report::new(crate::errors::Report { error: e, filename: format!("{}{}", #fn_name, #index), diff --git a/src/wasm-lib/derive-docs/tests/args_with_lifetime.gen b/src/wasm-lib/derive-docs/tests/args_with_lifetime.gen index a9b5cc566..e7609bb7c 100644 --- a/src/wasm-lib/derive-docs/tests/args_with_lifetime.gen +++ b/src/wasm-lib/derive-docs/tests/args_with_lifetime.gen @@ -15,7 +15,10 @@ mod test_examples_someFn { context_type: crate::execution::ContextType::Mock, }; if let Err(e) = ctx - .run(&program, &mut crate::ExecState::new(&ctx.settings)) + .run( + &program, + &mut crate::execution::ExecState::new(&ctx.settings), + ) .await { return Err(miette::Report::new(crate::errors::Report { @@ -67,7 +70,7 @@ pub(crate) struct SomeFn {} #[doc = "Std lib function: someFn\nDocs"] pub(crate) const SomeFn: SomeFn = SomeFn {}; fn boxed_someFn( - exec_state: &mut crate::ExecState, + exec_state: &mut crate::execution::ExecState, args: crate::std::Args, ) -> std::pin::Pin< Box< diff --git a/src/wasm-lib/derive-docs/tests/args_with_refs.gen b/src/wasm-lib/derive-docs/tests/args_with_refs.gen index be5e7a8ab..0876d71aa 100644 --- a/src/wasm-lib/derive-docs/tests/args_with_refs.gen +++ b/src/wasm-lib/derive-docs/tests/args_with_refs.gen @@ -15,7 +15,10 @@ mod test_examples_someFn { context_type: crate::execution::ContextType::Mock, }; if let Err(e) = ctx - .run(&program, &mut crate::ExecState::new(&ctx.settings)) + .run( + &program, + &mut crate::execution::ExecState::new(&ctx.settings), + ) .await { return Err(miette::Report::new(crate::errors::Report { @@ -67,7 +70,7 @@ pub(crate) struct SomeFn {} #[doc = "Std lib function: someFn\nDocs"] pub(crate) const SomeFn: SomeFn = SomeFn {}; fn boxed_someFn( - exec_state: &mut crate::ExecState, + exec_state: &mut crate::execution::ExecState, args: crate::std::Args, ) -> std::pin::Pin< Box< diff --git a/src/wasm-lib/derive-docs/tests/array.gen b/src/wasm-lib/derive-docs/tests/array.gen index 6ad06253f..7c0bf0421 100644 --- a/src/wasm-lib/derive-docs/tests/array.gen +++ b/src/wasm-lib/derive-docs/tests/array.gen @@ -16,7 +16,10 @@ mod test_examples_show { context_type: crate::execution::ContextType::Mock, }; if let Err(e) = ctx - .run(&program, &mut crate::ExecState::new(&ctx.settings)) + .run( + &program, + &mut crate::execution::ExecState::new(&ctx.settings), + ) .await { return Err(miette::Report::new(crate::errors::Report { @@ -73,7 +76,10 @@ mod test_examples_show { context_type: crate::execution::ContextType::Mock, }; if let Err(e) = ctx - .run(&program, &mut crate::ExecState::new(&ctx.settings)) + .run( + &program, + &mut crate::execution::ExecState::new(&ctx.settings), + ) .await { return Err(miette::Report::new(crate::errors::Report { @@ -125,7 +131,7 @@ pub(crate) struct Show {} #[doc = "Std lib function: show\nThis is some function.\nIt does shit."] pub(crate) const Show: Show = Show {}; fn boxed_show( - exec_state: &mut crate::ExecState, + exec_state: &mut crate::execution::ExecState, args: crate::std::Args, ) -> std::pin::Pin< Box< diff --git a/src/wasm-lib/derive-docs/tests/box.gen b/src/wasm-lib/derive-docs/tests/box.gen index 1f65c359e..3275ca1ed 100644 --- a/src/wasm-lib/derive-docs/tests/box.gen +++ b/src/wasm-lib/derive-docs/tests/box.gen @@ -16,7 +16,10 @@ mod test_examples_show { context_type: crate::execution::ContextType::Mock, }; if let Err(e) = ctx - .run(&program, &mut crate::ExecState::new(&ctx.settings)) + .run( + &program, + &mut crate::execution::ExecState::new(&ctx.settings), + ) .await { return Err(miette::Report::new(crate::errors::Report { @@ -68,7 +71,7 @@ pub(crate) struct Show {} #[doc = "Std lib function: show\nThis is some function.\nIt does shit."] pub(crate) const Show: Show = Show {}; fn boxed_show( - exec_state: &mut crate::ExecState, + exec_state: &mut crate::execution::ExecState, args: crate::std::Args, ) -> std::pin::Pin< Box< diff --git a/src/wasm-lib/derive-docs/tests/doc_comment_with_code.gen b/src/wasm-lib/derive-docs/tests/doc_comment_with_code.gen index 6732cb4a7..bb884b73c 100644 --- a/src/wasm-lib/derive-docs/tests/doc_comment_with_code.gen +++ b/src/wasm-lib/derive-docs/tests/doc_comment_with_code.gen @@ -17,7 +17,10 @@ mod test_examples_my_func { context_type: crate::execution::ContextType::Mock, }; if let Err(e) = ctx - .run(&program, &mut crate::ExecState::new(&ctx.settings)) + .run( + &program, + &mut crate::execution::ExecState::new(&ctx.settings), + ) .await { return Err(miette::Report::new(crate::errors::Report { @@ -74,7 +77,10 @@ mod test_examples_my_func { context_type: crate::execution::ContextType::Mock, }; if let Err(e) = ctx - .run(&program, &mut crate::ExecState::new(&ctx.settings)) + .run( + &program, + &mut crate::execution::ExecState::new(&ctx.settings), + ) .await { return Err(miette::Report::new(crate::errors::Report { @@ -126,7 +132,7 @@ pub(crate) struct MyFunc {} #[doc = "Std lib function: myFunc\nThis is some function.\nIt does shit."] pub(crate) const MyFunc: MyFunc = MyFunc {}; fn boxed_my_func( - exec_state: &mut crate::ExecState, + exec_state: &mut crate::execution::ExecState, args: crate::std::Args, ) -> std::pin::Pin< Box< diff --git a/src/wasm-lib/derive-docs/tests/lineTo.gen b/src/wasm-lib/derive-docs/tests/lineTo.gen index deb5c0966..36d713b8f 100644 --- a/src/wasm-lib/derive-docs/tests/lineTo.gen +++ b/src/wasm-lib/derive-docs/tests/lineTo.gen @@ -17,7 +17,10 @@ mod test_examples_line_to { context_type: crate::execution::ContextType::Mock, }; if let Err(e) = ctx - .run(&program, &mut crate::ExecState::new(&ctx.settings)) + .run( + &program, + &mut crate::execution::ExecState::new(&ctx.settings), + ) .await { return Err(miette::Report::new(crate::errors::Report { @@ -74,7 +77,10 @@ mod test_examples_line_to { context_type: crate::execution::ContextType::Mock, }; if let Err(e) = ctx - .run(&program, &mut crate::ExecState::new(&ctx.settings)) + .run( + &program, + &mut crate::execution::ExecState::new(&ctx.settings), + ) .await { return Err(miette::Report::new(crate::errors::Report { @@ -126,7 +132,7 @@ pub(crate) struct LineTo {} #[doc = "Std lib function: lineTo\nThis is some function.\nIt does shit."] pub(crate) const LineTo: LineTo = LineTo {}; fn boxed_line_to( - exec_state: &mut crate::ExecState, + exec_state: &mut crate::execution::ExecState, args: crate::std::Args, ) -> std::pin::Pin< Box< diff --git a/src/wasm-lib/derive-docs/tests/min.gen b/src/wasm-lib/derive-docs/tests/min.gen index a3491c5f5..84495a512 100644 --- a/src/wasm-lib/derive-docs/tests/min.gen +++ b/src/wasm-lib/derive-docs/tests/min.gen @@ -16,7 +16,10 @@ mod test_examples_min { context_type: crate::execution::ContextType::Mock, }; if let Err(e) = ctx - .run(&program, &mut crate::ExecState::new(&ctx.settings)) + .run( + &program, + &mut crate::execution::ExecState::new(&ctx.settings), + ) .await { return Err(miette::Report::new(crate::errors::Report { @@ -73,7 +76,10 @@ mod test_examples_min { context_type: crate::execution::ContextType::Mock, }; if let Err(e) = ctx - .run(&program, &mut crate::ExecState::new(&ctx.settings)) + .run( + &program, + &mut crate::execution::ExecState::new(&ctx.settings), + ) .await { return Err(miette::Report::new(crate::errors::Report { @@ -125,7 +131,7 @@ pub(crate) struct Min {} #[doc = "Std lib function: min\nThis is some function.\nIt does shit."] pub(crate) const Min: Min = Min {}; fn boxed_min( - exec_state: &mut crate::ExecState, + exec_state: &mut crate::execution::ExecState, args: crate::std::Args, ) -> std::pin::Pin< Box< diff --git a/src/wasm-lib/derive-docs/tests/option.gen b/src/wasm-lib/derive-docs/tests/option.gen index 6c5cd3b59..2e55ef7b1 100644 --- a/src/wasm-lib/derive-docs/tests/option.gen +++ b/src/wasm-lib/derive-docs/tests/option.gen @@ -16,7 +16,10 @@ mod test_examples_show { context_type: crate::execution::ContextType::Mock, }; if let Err(e) = ctx - .run(&program, &mut crate::ExecState::new(&ctx.settings)) + .run( + &program, + &mut crate::execution::ExecState::new(&ctx.settings), + ) .await { return Err(miette::Report::new(crate::errors::Report { @@ -68,7 +71,7 @@ pub(crate) struct Show {} #[doc = "Std lib function: show\nThis is some function.\nIt does shit."] pub(crate) const Show: Show = Show {}; fn boxed_show( - exec_state: &mut crate::ExecState, + exec_state: &mut crate::execution::ExecState, args: crate::std::Args, ) -> std::pin::Pin< Box< diff --git a/src/wasm-lib/derive-docs/tests/option_input_format.gen b/src/wasm-lib/derive-docs/tests/option_input_format.gen index a7a8c90c4..7b9a27256 100644 --- a/src/wasm-lib/derive-docs/tests/option_input_format.gen +++ b/src/wasm-lib/derive-docs/tests/option_input_format.gen @@ -16,7 +16,10 @@ mod test_examples_import { context_type: crate::execution::ContextType::Mock, }; if let Err(e) = ctx - .run(&program, &mut crate::ExecState::new(&ctx.settings)) + .run( + &program, + &mut crate::execution::ExecState::new(&ctx.settings), + ) .await { return Err(miette::Report::new(crate::errors::Report { @@ -68,7 +71,7 @@ pub(crate) struct Import {} #[doc = "Std lib function: import\nThis is some function.\nIt does shit."] pub(crate) const Import: Import = Import {}; fn boxed_import( - exec_state: &mut crate::ExecState, + exec_state: &mut crate::execution::ExecState, args: crate::std::Args, ) -> std::pin::Pin< Box< diff --git a/src/wasm-lib/derive-docs/tests/return_vec_box_sketch.gen b/src/wasm-lib/derive-docs/tests/return_vec_box_sketch.gen index af18578e0..add24d1a5 100644 --- a/src/wasm-lib/derive-docs/tests/return_vec_box_sketch.gen +++ b/src/wasm-lib/derive-docs/tests/return_vec_box_sketch.gen @@ -16,7 +16,10 @@ mod test_examples_import { context_type: crate::execution::ContextType::Mock, }; if let Err(e) = ctx - .run(&program, &mut crate::ExecState::new(&ctx.settings)) + .run( + &program, + &mut crate::execution::ExecState::new(&ctx.settings), + ) .await { return Err(miette::Report::new(crate::errors::Report { @@ -68,7 +71,7 @@ pub(crate) struct Import {} #[doc = "Std lib function: import\nThis is some function.\nIt does shit."] pub(crate) const Import: Import = Import {}; fn boxed_import( - exec_state: &mut crate::ExecState, + exec_state: &mut crate::execution::ExecState, args: crate::std::Args, ) -> std::pin::Pin< Box< diff --git a/src/wasm-lib/derive-docs/tests/return_vec_sketch.gen b/src/wasm-lib/derive-docs/tests/return_vec_sketch.gen index 291ad5c21..a650fe055 100644 --- a/src/wasm-lib/derive-docs/tests/return_vec_sketch.gen +++ b/src/wasm-lib/derive-docs/tests/return_vec_sketch.gen @@ -16,7 +16,10 @@ mod test_examples_import { context_type: crate::execution::ContextType::Mock, }; if let Err(e) = ctx - .run(&program, &mut crate::ExecState::new(&ctx.settings)) + .run( + &program, + &mut crate::execution::ExecState::new(&ctx.settings), + ) .await { return Err(miette::Report::new(crate::errors::Report { @@ -68,7 +71,7 @@ pub(crate) struct Import {} #[doc = "Std lib function: import\nThis is some function.\nIt does shit."] pub(crate) const Import: Import = Import {}; fn boxed_import( - exec_state: &mut crate::ExecState, + exec_state: &mut crate::execution::ExecState, args: crate::std::Args, ) -> std::pin::Pin< Box< diff --git a/src/wasm-lib/derive-docs/tests/show.gen b/src/wasm-lib/derive-docs/tests/show.gen index 728fed37f..d2156e189 100644 --- a/src/wasm-lib/derive-docs/tests/show.gen +++ b/src/wasm-lib/derive-docs/tests/show.gen @@ -16,7 +16,10 @@ mod test_examples_show { context_type: crate::execution::ContextType::Mock, }; if let Err(e) = ctx - .run(&program, &mut crate::ExecState::new(&ctx.settings)) + .run( + &program, + &mut crate::execution::ExecState::new(&ctx.settings), + ) .await { return Err(miette::Report::new(crate::errors::Report { @@ -68,7 +71,7 @@ pub(crate) struct Show {} #[doc = "Std lib function: show\nThis is some function.\nIt does shit."] pub(crate) const Show: Show = Show {}; fn boxed_show( - exec_state: &mut crate::ExecState, + exec_state: &mut crate::execution::ExecState, args: crate::std::Args, ) -> std::pin::Pin< Box< diff --git a/src/wasm-lib/derive-docs/tests/test_args_with_exec_state.gen b/src/wasm-lib/derive-docs/tests/test_args_with_exec_state.gen index af62d33c9..405f89b81 100644 --- a/src/wasm-lib/derive-docs/tests/test_args_with_exec_state.gen +++ b/src/wasm-lib/derive-docs/tests/test_args_with_exec_state.gen @@ -15,7 +15,10 @@ mod test_examples_some_function { context_type: crate::execution::ContextType::Mock, }; if let Err(e) = ctx - .run(&program, &mut crate::ExecState::new(&ctx.settings)) + .run( + &program, + &mut crate::execution::ExecState::new(&ctx.settings), + ) .await { return Err(miette::Report::new(crate::errors::Report { @@ -67,7 +70,7 @@ pub(crate) struct SomeFunction {} #[doc = "Std lib function: someFunction\nDocs"] pub(crate) const SomeFunction: SomeFunction = SomeFunction {}; fn boxed_some_function( - exec_state: &mut crate::ExecState, + exec_state: &mut crate::execution::ExecState, args: crate::std::Args, ) -> std::pin::Pin< Box< diff --git a/src/wasm-lib/kcl/src/errors.rs b/src/wasm-lib/kcl/src/errors.rs index 860c091cd..55bf9b05b 100644 --- a/src/wasm-lib/kcl/src/errors.rs +++ b/src/wasm-lib/kcl/src/errors.rs @@ -31,12 +31,12 @@ impl From for ExecError { #[derive(Debug)] pub struct ExecErrorWithState { pub error: ExecError, - pub exec_state: Option, + pub exec_state: Option, } impl ExecErrorWithState { #[cfg_attr(target_arch = "wasm32", expect(dead_code))] - pub fn new(error: ExecError, exec_state: crate::ExecState) -> Self { + pub fn new(error: ExecError, exec_state: crate::execution::ExecState) -> Self { Self { error, exec_state: Some(exec_state), diff --git a/src/wasm-lib/kcl/src/execution/cache.rs b/src/wasm-lib/kcl/src/execution/cache.rs index 53e51352b..926f748d2 100644 --- a/src/wasm-lib/kcl/src/execution/cache.rs +++ b/src/wasm-lib/kcl/src/execution/cache.rs @@ -6,13 +6,11 @@ use itertools::{EitherOrBoth, Itertools}; use tokio::sync::RwLock; use crate::{ - execution::{ExecState, ExecutorSettings}, + execution::{memory::ProgramMemory, ExecState, ExecutorSettings}, parsing::ast::types::{Node, NonCodeValue, Program}, walk::Node as WalkNode, }; -use super::ProgramMemory; - lazy_static::lazy_static! { /// A static mutable lock for updating the last successful execution state for the cache. static ref OLD_AST: Arc>> = Default::default(); diff --git a/src/wasm-lib/kcl/src/execution/exec_ast.rs b/src/wasm-lib/kcl/src/execution/exec_ast.rs index 05303c765..b5848e5c2 100644 --- a/src/wasm-lib/kcl/src/execution/exec_ast.rs +++ b/src/wasm-lib/kcl/src/execution/exec_ast.rs @@ -10,9 +10,10 @@ use crate::{ annotations, cad_op::{OpArg, Operation}, memory, + memory::ProgramMemory, state::ModuleState, - BodyType, EnvironmentRef, ExecState, ExecutorContext, KclValue, MemoryFunction, Metadata, ProgramMemory, - TagEngineInfo, TagIdentifier, + BodyType, EnvironmentRef, ExecState, ExecutorContext, KclValue, MemoryFunction, Metadata, TagEngineInfo, + TagIdentifier, }, modules::{ModuleId, ModulePath, ModuleRepr}, parsing::ast::types::{ diff --git a/src/wasm-lib/kcl/src/execution/kcl_value.rs b/src/wasm-lib/kcl/src/execution/kcl_value.rs index ae96959ce..c74204d74 100644 --- a/src/wasm-lib/kcl/src/execution/kcl_value.rs +++ b/src/wasm-lib/kcl/src/execution/kcl_value.rs @@ -8,14 +8,15 @@ use crate::{ errors::KclErrorDetails, exec::Sketch, execution::{ - Face, Helix, ImportedGeometry, MemoryFunction, Metadata, Plane, SketchSet, Solid, SolidSet, TagIdentifier, + ExecState, Face, Helix, ImportedGeometry, MemoryFunction, Metadata, Plane, SketchSet, Solid, SolidSet, + TagIdentifier, }, parsing::{ ast::types::{FunctionExpression, KclNone, LiteralValue, TagDeclarator, TagNode}, token::NumericSuffix, }, std::{args::Arg, FnAsArg}, - ExecState, ExecutorContext, KclError, ModuleId, SourceRange, + ExecutorContext, KclError, ModuleId, SourceRange, }; use super::memory::EnvironmentRef; diff --git a/src/wasm-lib/kcl/src/execution/memory.rs b/src/wasm-lib/kcl/src/execution/memory.rs index cfa5d8f6a..57d2347db 100644 --- a/src/wasm-lib/kcl/src/execution/memory.rs +++ b/src/wasm-lib/kcl/src/execution/memory.rs @@ -156,18 +156,14 @@ pub(crate) const RETURN_NAME: &str = "__return"; /// including other modules). Multiple interpretation runs should have fresh instances. /// /// See module docs. -#[derive(Debug, Clone, Deserialize, Serialize, ts_rs::TS, JsonSchema)] -#[ts(export)] -#[serde(rename_all = "camelCase")] -pub struct ProgramMemory { +#[derive(Debug, Clone)] +pub(crate) struct ProgramMemory { environments: Vec, /// Invariant: current_env.1.is_none() current_env: EnvironmentRef, /// Invariant: forall er in call_stack: er.1.is_none() call_stack: Vec, /// Statistics about the memory, should not be used for anything other than meta-info. - #[allow(dead_code)] - #[serde(skip)] pub(crate) stats: MemoryStats, } @@ -573,7 +569,7 @@ pub(crate) struct MemoryStats { mod env { use super::*; - #[derive(Debug, Clone, Deserialize, Serialize, PartialEq, ts_rs::TS, JsonSchema)] + #[derive(Debug, Clone, PartialEq)] pub(super) struct Environment { bindings: IndexMap, // invariant: self.parent.is_none() => forall s in self.snapshots: s.parent_snapshot.is_none() @@ -603,7 +599,7 @@ mod env { } } - #[derive(Debug, Clone, Deserialize, Serialize, PartialEq, ts_rs::TS, JsonSchema)] + #[derive(Debug, Clone, PartialEq)] struct Snapshot { /// The version of the owning environment's parent environment corresponding to this snapshot. parent_snapshot: Option, diff --git a/src/wasm-lib/kcl/src/execution/mod.rs b/src/wasm-lib/kcl/src/execution/mod.rs index 0bf3265d7..14b7a3216 100644 --- a/src/wasm-lib/kcl/src/execution/mod.rs +++ b/src/wasm-lib/kcl/src/execution/mod.rs @@ -39,7 +39,7 @@ pub(crate) use import::{ import_foreign, send_to_engine as send_import_to_engine, PreImportedGeometry, ZOO_COORD_SYSTEM, }; pub use kcl_value::{KclObjectFields, KclValue, UnitAngle, UnitLen}; -pub use memory::{EnvironmentRef, ProgramMemory}; +pub use memory::EnvironmentRef; pub use state::{ExecState, IdGenerator, MetaSettings}; pub(crate) mod annotations; @@ -821,7 +821,7 @@ mod tests { use pretty_assertions::assert_eq; use super::*; - use crate::{errors::KclErrorDetails, ModuleId}; + use crate::{errors::KclErrorDetails, execution::memory::ProgramMemory, ModuleId}; /// Convenience function to get a JSON value from memory and unwrap. #[track_caller] diff --git a/src/wasm-lib/kcl/src/execution/state.rs b/src/wasm-lib/kcl/src/execution/state.rs index b4ac5ced4..fbe20e5b4 100644 --- a/src/wasm-lib/kcl/src/execution/state.rs +++ b/src/wasm-lib/kcl/src/execution/state.rs @@ -8,8 +8,8 @@ use uuid::Uuid; use crate::{ errors::{KclError, KclErrorDetails}, execution::{ - annotations, kcl_value, Artifact, ArtifactCommand, ArtifactGraph, ArtifactId, ExecOutcome, ExecutorSettings, - KclValue, Operation, ProgramMemory, UnitAngle, UnitLen, + annotations, kcl_value, memory::ProgramMemory, Artifact, ArtifactCommand, ArtifactGraph, ArtifactId, + ExecOutcome, ExecutorSettings, KclValue, Operation, UnitAngle, UnitLen, }, modules::{ModuleId, ModuleInfo, ModuleLoader, ModulePath, ModuleRepr}, parsing::ast::types::NonCodeValue, @@ -17,16 +17,14 @@ use crate::{ }; /// State for executing a program. -#[derive(Debug, Clone, Deserialize, Serialize)] -#[serde(rename_all = "camelCase")] +#[derive(Debug, Clone)] pub struct ExecState { - pub global: GlobalState, - pub mod_local: ModuleState, + pub(super) global: GlobalState, + pub(super) mod_local: ModuleState, } -#[derive(Debug, Clone, Deserialize, Serialize)] -#[serde(rename_all = "camelCase")] -pub struct GlobalState { +#[derive(Debug, Clone)] +pub(super) struct GlobalState { /// Program variable bindings. pub memory: ProgramMemory, /// The stable artifact ID generator. @@ -52,9 +50,8 @@ pub struct GlobalState { pub mod_loader: ModuleLoader, } -#[derive(Debug, Clone, Deserialize, Serialize)] -#[serde(rename_all = "camelCase")] -pub struct ModuleState { +#[derive(Debug, Clone)] +pub(super) struct ModuleState { /// The current value of the pipe operator returned from the previous /// expression. If we're not currently in a pipeline, this will be None. pub pipe_value: Option, @@ -125,19 +122,19 @@ impl ExecState { } } - pub fn memory(&self) -> &ProgramMemory { + pub(crate) fn memory(&self) -> &ProgramMemory { &self.global.memory } - pub fn mut_memory(&mut self) -> &mut ProgramMemory { + pub(crate) fn mut_memory(&mut self) -> &mut ProgramMemory { &mut self.global.memory } - pub fn next_uuid(&mut self) -> Uuid { + pub(crate) fn next_uuid(&mut self) -> Uuid { self.global.id_generator.next_uuid() } - pub fn add_artifact(&mut self, artifact: Artifact) { + pub(crate) fn add_artifact(&mut self, artifact: Artifact) { let id = artifact.id(); self.global.artifacts.insert(id, artifact); } diff --git a/src/wasm-lib/kcl/src/lib.rs b/src/wasm-lib/kcl/src/lib.rs index 8d53c5d0c..8b66cd40c 100644 --- a/src/wasm-lib/kcl/src/lib.rs +++ b/src/wasm-lib/kcl/src/lib.rs @@ -98,9 +98,7 @@ pub use source_range::SourceRange; // Rather than make executor public and make lots of it pub(crate), just re-export into a new module. // Ideally we wouldn't export these things at all, they should only be used for testing. pub mod exec { - pub use crate::execution::{ - ArtifactCommand, DefaultPlanes, IdGenerator, KclValue, PlaneType, ProgramMemory, Sketch, - }; + pub use crate::execution::{ArtifactCommand, DefaultPlanes, IdGenerator, KclValue, PlaneType, Sketch}; } #[cfg(target_arch = "wasm32")] diff --git a/src/wasm-lib/kcl/src/modules.rs b/src/wasm-lib/kcl/src/modules.rs index e99588b15..7c70f4b2d 100644 --- a/src/wasm-lib/kcl/src/modules.rs +++ b/src/wasm-lib/kcl/src/modules.rs @@ -33,9 +33,8 @@ impl ModuleId { } } -#[derive(Debug, Clone, Deserialize, Serialize, Default)] -#[serde(rename_all = "camelCase")] -pub struct ModuleLoader { +#[derive(Debug, Clone, Default)] +pub(crate) struct ModuleLoader { /// The stack of import statements for detecting circular module imports. /// If this is empty, we're not currently executing an import statement. pub import_stack: Vec, diff --git a/src/wasm-lib/kcl/src/simulation_tests.rs b/src/wasm-lib/kcl/src/simulation_tests.rs index f60d6c9ec..6990f3da9 100644 --- a/src/wasm-lib/kcl/src/simulation_tests.rs +++ b/src/wasm-lib/kcl/src/simulation_tests.rs @@ -102,21 +102,22 @@ async fn execute(test_name: &str, render_to_png: bool) { if render_to_png { twenty_twenty::assert_image(format!("tests/{test_name}/rendered_model.png"), &png, 0.99); } - assert_snapshot(test_name, "Program memory after executing", || { - insta::assert_json_snapshot!("program_memory", exec_state.memory(), { - ".environments[].**[].from[]" => rounded_redaction(4), - ".environments[].**[].to[]" => rounded_redaction(4), - ".environments[].**[].x[]" => rounded_redaction(4), - ".environments[].**[].y[]" => rounded_redaction(4), - ".environments[].**[].z[]" => rounded_redaction(4), - }); - }); + let outcome = exec_state.to_wasm_outcome(); assert_common_snapshots( test_name, - exec_state.mod_local.operations, - exec_state.global.artifact_commands, - exec_state.global.artifact_graph, + outcome.operations, + outcome.artifact_commands, + outcome.artifact_graph, ); + assert_snapshot(test_name, "Variables in memory after executing", || { + insta::assert_json_snapshot!("program_memory", outcome.variables, { + ".**[].from[]" => rounded_redaction(4), + ".**[].to[]" => rounded_redaction(4), + ".**[].x[]" => rounded_redaction(4), + ".**[].y[]" => rounded_redaction(4), + ".**[].z[]" => rounded_redaction(4), + }) + }); } Err(e) => { let ok_path_str = format!("tests/{test_name}/program_memory.snap"); diff --git a/src/wasm-lib/kcl/src/std/chamfer.rs b/src/wasm-lib/kcl/src/std/chamfer.rs index 650353863..2f40cbc6c 100644 --- a/src/wasm-lib/kcl/src/std/chamfer.rs +++ b/src/wasm-lib/kcl/src/std/chamfer.rs @@ -134,7 +134,7 @@ async fn inner_chamfer( EdgeReference::Tag(edge_tag) => args.get_tag_engine_info(exec_state, &edge_tag)?.id, }; - let id = exec_state.global.id_generator.next_uuid(); + let id = exec_state.next_uuid(); args.batch_end_cmd( id, ModelingCmd::from(mcmd::Solid3dFilletEdge { diff --git a/src/wasm-lib/kcl/src/std/sketch.rs b/src/wasm-lib/kcl/src/std/sketch.rs index da9ff1530..a14517872 100644 --- a/src/wasm-lib/kcl/src/std/sketch.rs +++ b/src/wasm-lib/kcl/src/std/sketch.rs @@ -218,7 +218,7 @@ async fn straight_line( } }; - let id = exec_state.global.id_generator.next_uuid(); + let id = exec_state.next_uuid(); args.batch_modeling_cmd( id, ModelingCmd::from(mcmd::ExtendPath { diff --git a/src/wasm-lib/kcl/src/test_server.rs b/src/wasm-lib/kcl/src/test_server.rs index 0376d9132..ee127671e 100644 --- a/src/wasm-lib/kcl/src/test_server.rs +++ b/src/wasm-lib/kcl/src/test_server.rs @@ -5,9 +5,9 @@ use std::path::PathBuf; use crate::{ engine::new_zoo_client, errors::ExecErrorWithState, - execution::{ExecutorContext, ExecutorSettings}, + execution::{ExecState, ExecutorContext, ExecutorSettings}, settings::types::UnitLength, - ConnectionError, ExecError, ExecState, KclErrorWithOutputs, Program, + ConnectionError, ExecError, KclErrorWithOutputs, Program, }; #[derive(serde::Deserialize, serde::Serialize)] diff --git a/src/wasm-lib/kcl/tests/add_lots/program_memory.snap b/src/wasm-lib/kcl/tests/add_lots/program_memory.snap index 7fa27af3a..25249ecf2 100644 --- a/src/wasm-lib/kcl/tests/add_lots/program_memory.snap +++ b/src/wasm-lib/kcl/tests/add_lots/program_memory.snap @@ -1,1544 +1,1515 @@ --- source: kcl/src/simulation_tests.rs -description: Program memory after executing add_lots.kcl +description: Variables in memory after executing add_lots.kcl --- { - "environments": [ - { - "bindings": { - "HALF_TURN": { - "type": "Number", - "value": 180.0, - "__meta": [] - }, - "QUARTER_TURN": { - "type": "Number", - "value": 90.0, - "__meta": [] - }, - "THREE_QUARTER_TURN": { - "type": "Number", - "value": 270.0, - "__meta": [] - }, - "ZERO": { - "type": "Number", - "value": 0.0, - "__meta": [] - }, - "f": { - "type": "Function", - "expression": { - "body": { - "body": [ - { - "argument": { - "end": 24, - "left": { - "end": 20, - "name": "i", - "start": 19, - "type": "Identifier", - "type": "Identifier" - }, - "operator": "*", - "right": { - "end": 24, - "raw": "2", - "start": 23, - "type": "Literal", - "type": "Literal", - "value": { - "value": 2.0, - "suffix": "None" - } - }, - "start": 19, - "type": "BinaryExpression", - "type": "BinaryExpression" - }, - "end": 24, - "start": 12, - "type": "ReturnStatement", - "type": "ReturnStatement" + "HALF_TURN": { + "type": "Number", + "value": 180.0, + "__meta": [] + }, + "QUARTER_TURN": { + "type": "Number", + "value": 90.0, + "__meta": [] + }, + "THREE_QUARTER_TURN": { + "type": "Number", + "value": 270.0, + "__meta": [] + }, + "ZERO": { + "type": "Number", + "value": 0.0, + "__meta": [] + }, + "f": { + "type": "Function", + "expression": { + "body": { + "body": [ + { + "argument": { + "end": 24, + "left": { + "end": 20, + "name": "i", + "start": 19, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "*", + "right": { + "end": 24, + "raw": "2", + "start": 23, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" } - ], - "end": 26, - "start": 8 - }, - "end": 26, - "params": [ - { - "type": "Parameter", - "identifier": { - "end": 6, - "name": "i", - "start": 5, - "type": "Identifier" - } - } - ], - "start": 4, - "type": "FunctionExpression" - }, - "memory": [ - 0, - 1 - ], - "__meta": [ - { - "sourceRange": [ - 4, - 26, - 0 - ] - } - ] - }, - "x": { - "type": "Number", - "value": 10100.0, - "__meta": [ - { - "sourceRange": [ - 34, - 35, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 41, - 42, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 48, - 49, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 55, - 56, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 62, - 63, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 69, - 70, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 76, - 77, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 83, - 84, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 90, - 91, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 97, - 98, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 104, - 106, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 112, - 114, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 120, - 122, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 128, - 130, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 136, - 138, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 144, - 146, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 152, - 154, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 160, - 162, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 168, - 170, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 176, - 178, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 184, - 186, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 192, - 194, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 200, - 202, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 208, - 210, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 216, - 218, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 224, - 226, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 232, - 234, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 240, - 242, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 248, - 250, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 256, - 258, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 264, - 266, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 272, - 274, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 280, - 282, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 288, - 290, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 296, - 298, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 304, - 306, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 312, - 314, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 320, - 322, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 328, - 330, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 336, - 338, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 344, - 346, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 352, - 354, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 360, - 362, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 368, - 370, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 376, - 378, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 384, - 386, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 392, - 394, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 400, - 402, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 408, - 410, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 416, - 418, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 424, - 426, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 432, - 434, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 440, - 442, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 448, - 450, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 456, - 458, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 464, - 466, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 472, - 474, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 480, - 482, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 488, - 490, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 496, - 498, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 504, - 506, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 512, - 514, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 520, - 522, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 528, - 530, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 536, - 538, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 544, - 546, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 552, - 554, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 560, - 562, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 568, - 570, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 576, - 578, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 584, - 586, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 592, - 594, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 600, - 602, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 608, - 610, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 616, - 618, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 624, - 626, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 632, - 634, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 640, - 642, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 648, - 650, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 656, - 658, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 664, - 666, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 672, - 674, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 680, - 682, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 688, - 690, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 696, - 698, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 704, - 706, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 712, - 714, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 720, - 722, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 728, - 730, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 736, - 738, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 744, - 746, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 752, - 754, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 760, - 762, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 768, - 770, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 776, - 778, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 784, - 786, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 792, - 794, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 800, - 802, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 808, - 810, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 816, - 818, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - }, - { - "sourceRange": [ - 824, - 827, - 0 - ] - }, - { - "sourceRange": [ - 23, - 24, - 0 - ] - } - ] - } + }, + "start": 19, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "end": 24, + "start": 12, + "type": "ReturnStatement", + "type": "ReturnStatement" + } + ], + "end": 26, + "start": 8 }, - "snapshots": [ + "end": 26, + "params": [ { - "parent_snapshot": null, - "data": { - "f": { - "type": "Tombstone", - "value": null, - "__meta": [] - }, - "x": { - "type": "Tombstone", - "value": null, - "__meta": [] - } + "type": "Parameter", + "identifier": { + "end": 6, + "name": "i", + "start": 5, + "type": "Identifier" } } ], - "parent": null - } - ], - "currentEnv": [ - 0, - 0 - ], - "callStack": [] + "start": 4, + "type": "FunctionExpression" + }, + "memory": [ + 0, + 1 + ], + "__meta": [ + { + "sourceRange": [ + 4, + 26, + 0 + ] + } + ] + }, + "x": { + "type": "Number", + "value": 10100.0, + "__meta": [ + { + "sourceRange": [ + 34, + 35, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 41, + 42, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 48, + 49, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 55, + 56, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 62, + 63, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 69, + 70, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 76, + 77, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 83, + 84, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 90, + 91, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 97, + 98, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 104, + 106, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 112, + 114, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 120, + 122, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 128, + 130, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 136, + 138, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 144, + 146, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 152, + 154, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 160, + 162, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 168, + 170, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 176, + 178, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 184, + 186, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 192, + 194, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 200, + 202, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 208, + 210, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 216, + 218, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 224, + 226, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 232, + 234, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 240, + 242, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 248, + 250, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 256, + 258, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 264, + 266, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 272, + 274, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 280, + 282, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 288, + 290, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 296, + 298, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 304, + 306, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 312, + 314, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 320, + 322, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 328, + 330, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 336, + 338, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 344, + 346, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 352, + 354, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 360, + 362, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 368, + 370, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 376, + 378, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 384, + 386, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 392, + 394, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 400, + 402, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 408, + 410, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 416, + 418, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 424, + 426, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 432, + 434, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 440, + 442, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 448, + 450, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 456, + 458, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 464, + 466, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 472, + 474, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 480, + 482, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 488, + 490, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 496, + 498, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 504, + 506, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 512, + 514, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 520, + 522, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 528, + 530, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 536, + 538, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 544, + 546, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 552, + 554, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 560, + 562, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 568, + 570, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 576, + 578, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 584, + 586, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 592, + 594, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 600, + 602, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 608, + 610, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 616, + 618, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 624, + 626, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 632, + 634, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 640, + 642, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 648, + 650, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 656, + 658, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 664, + 666, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 672, + 674, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 680, + 682, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 688, + 690, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 696, + 698, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 704, + 706, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 712, + 714, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 720, + 722, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 728, + 730, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 736, + 738, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 744, + 746, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 752, + 754, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 760, + 762, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 768, + 770, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 776, + 778, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 784, + 786, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 792, + 794, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 800, + 802, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 808, + 810, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 816, + 818, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + }, + { + "sourceRange": [ + 824, + 827, + 0 + ] + }, + { + "sourceRange": [ + 23, + 24, + 0 + ] + } + ] + } } diff --git a/src/wasm-lib/kcl/tests/angled_line/program_memory.snap b/src/wasm-lib/kcl/tests/angled_line/program_memory.snap index d008e089e..5c7f60efe 100644 --- a/src/wasm-lib/kcl/tests/angled_line/program_memory.snap +++ b/src/wasm-lib/kcl/tests/angled_line/program_memory.snap @@ -1,50 +1,320 @@ --- source: kcl/src/simulation_tests.rs -description: Program memory after executing angled_line.kcl +description: Variables in memory after executing angled_line.kcl --- { - "environments": [ - { - "bindings": { - "HALF_TURN": { - "type": "Number", - "value": 180.0, + "HALF_TURN": { + "type": "Number", + "value": 180.0, + "__meta": [] + }, + "QUARTER_TURN": { + "type": "Number", + "value": 90.0, + "__meta": [] + }, + "THREE_QUARTER_TURN": { + "type": "Number", + "value": 270.0, + "__meta": [] + }, + "ZERO": { + "type": "Number", + "value": 0.0, + "__meta": [] + }, + "part001": { + "type": "Solid", + "value": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 73, + 97, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 103, + 142, + 0 + ], + "tag": { + "end": 141, + "start": 135, + "type": "TagDeclarator", + "value": "seg01" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 148, + 174, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 180, + 217, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 223, + 250, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 256, + 264, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 73, + 97, + 0 + ] + }, + "from": [ + 4.83, + 12.56 + ], + "tag": null, + "to": [ + 19.93, + 15.04 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 103, + 142, + 0 + ] + }, + "from": [ + 19.93, + 15.04 + ], + "tag": { + "end": 141, + "start": 135, + "type": "TagDeclarator", + "value": "seg01" + }, + "to": [ + 23.08, + 5.19 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 148, + 174, + 0 + ] + }, + "from": [ + 23.08, + 5.19 + ], + "tag": null, + "to": [ + 7.91, + 1.09 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 180, + 217, + 0 + ] + }, + "from": [ + 7.91, + 1.09 + ], + "tag": null, + "to": [ + 11.6718, + -10.6731 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 223, + 250, + 0 + ] + }, + "from": [ + 11.6718, + -10.6731 + ], + "tag": null, + "to": [ + -1.3482, + -0.6431 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 256, + 264, + 0 + ] + }, + "from": [ + -1.3482, + -0.6431 + ], + "tag": null, + "to": [ + 4.83, + 12.56 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + }, "__meta": [] }, - "QUARTER_TURN": { - "type": "Number", - "value": 90.0, - "__meta": [] - }, - "THREE_QUARTER_TURN": { - "type": "Number", - "value": 270.0, - "__meta": [] - }, - "ZERO": { - "type": "Number", - "value": 0.0, - "__meta": [] - }, - "part001": { - "type": "Solid", - "value": { - "type": "Solid", + "start": { + "from": [ + 4.83, + 12.56 + ], + "to": [ + 4.83, + 12.56 + ], + "tag": null, + "__geoMeta": { "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 73, - 97, - 0 + "sourceRange": [ + 35, + 67, + 0 + ] + } + }, + "tags": { + "seg01": { + "type": "TagIdentifier", + "value": "seg01", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 103, + 142, + 0 + ] + }, + "from": [ + 19.93, + 15.040000000000001 ], - "tag": null, - "type": "extrudePlane" + "tag": { + "end": 141, + "start": 135, + "type": "TagDeclarator", + "value": "seg01" + }, + "to": [ + 23.08, + 5.190000000000001 + ], + "type": "ToPoint" }, - { + "surface": { "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ @@ -59,392 +329,109 @@ description: Program memory after executing angled_line.kcl "value": "seg01" }, "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 148, - 174, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 180, - 217, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 223, - 250, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 256, - 264, - 0 - ], - "tag": null, - "type": "extrudePlane" } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 73, - 97, - 0 - ] - }, - "from": [ - 4.83, - 12.56 - ], - "tag": null, - "to": [ - 19.93, - 15.04 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 103, - 142, - 0 - ] - }, - "from": [ - 19.93, - 15.04 - ], - "tag": { - "end": 141, - "start": 135, - "type": "TagDeclarator", - "value": "seg01" - }, - "to": [ - 23.08, - 5.19 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 148, - 174, - 0 - ] - }, - "from": [ - 23.08, - 5.19 - ], - "tag": null, - "to": [ - 7.91, - 1.09 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 180, - 217, - 0 - ] - }, - "from": [ - 7.91, - 1.09 - ], - "tag": null, - "to": [ - 11.6718, - -10.6731 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 223, - 250, - 0 - ] - }, - "from": [ - 11.6718, - -10.6731 - ], - "tag": null, - "to": [ - -1.3482, - -0.6431 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 256, - 264, - 0 - ] - }, - "from": [ - -1.3482, - -0.6431 - ], - "tag": null, - "to": [ - 4.83, - 12.56 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 4.83, - 12.56 - ], - "to": [ - 4.83, - 12.56 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 35, - 67, - 0 - ] - } - }, - "tags": { - "seg01": { - "type": "TagIdentifier", - "value": "seg01", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 103, - 142, - 0 - ] - }, - "from": [ - 19.93, - 15.040000000000001 - ], - "tag": { - "end": 141, - "start": 135, - "type": "TagDeclarator", - "value": "seg01" - }, - "to": [ - 23.08, - 5.190000000000001 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 103, - 142, - 0 - ], - "tag": { - "end": 141, - "start": 135, - "type": "TagDeclarator", - "value": "seg01" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 135, - 141, - 0 - ] - } - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 35, - 67, - 0 - ] - } - ] - }, - "height": 4.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" }, "__meta": [ { "sourceRange": [ - 35, - 67, + 135, + 141, 0 ] } ] } }, - "seg01": { - "type": "TagIdentifier", - "type": "TagIdentifier", - "value": "seg01", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 103, - 142, - 0 - ] - }, - "from": [ - 19.93, - 15.040000000000001 - ], - "tag": { - "end": 141, - "start": 135, - "type": "TagDeclarator", - "value": "seg01" - }, - "to": [ - 23.08, - 5.190000000000001 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 103, - 142, - 0 - ], - "tag": { - "end": 141, - "start": 135, - "type": "TagDeclarator", - "value": "seg01" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 135, - 141, - 0 - ] - } + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 35, + 67, + 0 + ] + } + ] + }, + "height": 4.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 35, + 67, + 0 ] } - }, - "snapshots": [], - "parent": null + ] } - ], - "currentEnv": [ - 0, - 0 - ], - "callStack": [] + }, + "seg01": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "seg01", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 103, + 142, + 0 + ] + }, + "from": [ + 19.93, + 15.040000000000001 + ], + "tag": { + "end": 141, + "start": 135, + "type": "TagDeclarator", + "value": "seg01" + }, + "to": [ + 23.08, + 5.190000000000001 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 103, + 142, + 0 + ], + "tag": { + "end": 141, + "start": 135, + "type": "TagDeclarator", + "value": "seg01" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 135, + 141, + 0 + ] + } + ] + } } diff --git a/src/wasm-lib/kcl/tests/array_elem_pop/program_memory.snap b/src/wasm-lib/kcl/tests/array_elem_pop/program_memory.snap index 90ebb7926..22bfed15f 100644 --- a/src/wasm-lib/kcl/tests/array_elem_pop/program_memory.snap +++ b/src/wasm-lib/kcl/tests/array_elem_pop/program_memory.snap @@ -1,172 +1,159 @@ --- source: kcl/src/simulation_tests.rs -description: Program memory after executing array_elem_pop.kcl +description: Variables in memory after executing array_elem_pop.kcl --- { - "environments": [ - { - "bindings": { - "HALF_TURN": { - "type": "Number", - "value": 180.0, - "__meta": [] - }, - "QUARTER_TURN": { - "type": "Number", - "value": 90.0, - "__meta": [] - }, - "THREE_QUARTER_TURN": { - "type": "Number", - "value": 270.0, - "__meta": [] - }, - "ZERO": { - "type": "Number", - "value": 0.0, - "__meta": [] - }, - "arr": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 1.0, - "__meta": [ - { - "sourceRange": [ - 7, - 8, - 0 - ] - } - ] - }, - { - "type": "Number", - "value": 2.0, - "__meta": [ - { - "sourceRange": [ - 10, - 11, - 0 - ] - } - ] - }, - { - "type": "Number", - "value": 3.0, - "__meta": [ - { - "sourceRange": [ - 13, - 14, - 0 - ] - } - ] - } - ], - "__meta": [ - { - "sourceRange": [ - 6, - 15, - 0 - ] - } - ] - }, - "new_arr1": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 1.0, - "__meta": [ - { - "sourceRange": [ - 7, - 8, - 0 - ] - } - ] - }, - { - "type": "Number", - "value": 2.0, - "__meta": [ - { - "sourceRange": [ - 10, - 11, - 0 - ] - } - ] - } - ], - "__meta": [ - { - "sourceRange": [ - 27, - 35, - 0 - ] - } - ] - }, - "new_arr2": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 1.0, - "__meta": [ - { - "sourceRange": [ - 7, - 8, - 0 - ] - } - ] - } - ], - "__meta": [ - { - "sourceRange": [ - 47, - 60, - 0 - ] - } - ] - }, - "new_arr3": { - "type": "Array", - "value": [], - "__meta": [ - { - "sourceRange": [ - 72, - 85, - 0 - ] - } - ] - } + "HALF_TURN": { + "type": "Number", + "value": 180.0, + "__meta": [] + }, + "QUARTER_TURN": { + "type": "Number", + "value": 90.0, + "__meta": [] + }, + "THREE_QUARTER_TURN": { + "type": "Number", + "value": 270.0, + "__meta": [] + }, + "ZERO": { + "type": "Number", + "value": 0.0, + "__meta": [] + }, + "arr": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 1.0, + "__meta": [ + { + "sourceRange": [ + 7, + 8, + 0 + ] + } + ] }, - "snapshots": [], - "parent": null - } - ], - "currentEnv": [ - 0, - 0 - ], - "callStack": [] + { + "type": "Number", + "value": 2.0, + "__meta": [ + { + "sourceRange": [ + 10, + 11, + 0 + ] + } + ] + }, + { + "type": "Number", + "value": 3.0, + "__meta": [ + { + "sourceRange": [ + 13, + 14, + 0 + ] + } + ] + } + ], + "__meta": [ + { + "sourceRange": [ + 6, + 15, + 0 + ] + } + ] + }, + "new_arr1": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 1.0, + "__meta": [ + { + "sourceRange": [ + 7, + 8, + 0 + ] + } + ] + }, + { + "type": "Number", + "value": 2.0, + "__meta": [ + { + "sourceRange": [ + 10, + 11, + 0 + ] + } + ] + } + ], + "__meta": [ + { + "sourceRange": [ + 27, + 35, + 0 + ] + } + ] + }, + "new_arr2": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 1.0, + "__meta": [ + { + "sourceRange": [ + 7, + 8, + 0 + ] + } + ] + } + ], + "__meta": [ + { + "sourceRange": [ + 47, + 60, + 0 + ] + } + ] + }, + "new_arr3": { + "type": "Array", + "value": [], + "__meta": [ + { + "sourceRange": [ + 72, + 85, + 0 + ] + } + ] + } } diff --git a/src/wasm-lib/kcl/tests/array_elem_push/program_memory.snap b/src/wasm-lib/kcl/tests/array_elem_push/program_memory.snap index 3004268af..adfc98f74 100644 --- a/src/wasm-lib/kcl/tests/array_elem_push/program_memory.snap +++ b/src/wasm-lib/kcl/tests/array_elem_push/program_memory.snap @@ -1,237 +1,224 @@ --- source: kcl/src/simulation_tests.rs -description: Program memory after executing array_elem_push.kcl +description: Variables in memory after executing array_elem_push.kcl --- { - "environments": [ - { - "bindings": { - "HALF_TURN": { - "type": "Number", - "value": 180.0, - "__meta": [] - }, - "QUARTER_TURN": { - "type": "Number", - "value": 90.0, - "__meta": [] - }, - "THREE_QUARTER_TURN": { - "type": "Number", - "value": 270.0, - "__meta": [] - }, - "ZERO": { - "type": "Number", - "value": 0.0, - "__meta": [] - }, - "arr": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 1.0, - "__meta": [ - { - "sourceRange": [ - 7, - 8, - 0 - ] - } - ] - }, - { - "type": "Number", - "value": 2.0, - "__meta": [ - { - "sourceRange": [ - 10, - 11, - 0 - ] - } - ] - }, - { - "type": "Number", - "value": 3.0, - "__meta": [ - { - "sourceRange": [ - 13, - 14, - 0 - ] - } - ] - } - ], - "__meta": [ - { - "sourceRange": [ - 6, - 15, - 0 - ] - } - ] - }, - "new_arr1": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 1.0, - "__meta": [ - { - "sourceRange": [ - 7, - 8, - 0 - ] - } - ] - }, - { - "type": "Number", - "value": 2.0, - "__meta": [ - { - "sourceRange": [ - 10, - 11, - 0 - ] - } - ] - }, - { - "type": "Number", - "value": 3.0, - "__meta": [ - { - "sourceRange": [ - 13, - 14, - 0 - ] - } - ] - }, - { - "type": "Number", - "value": 4.0, - "__meta": [ - { - "sourceRange": [ - 37, - 38, - 0 - ] - } - ] - } - ], - "__meta": [ - { - "sourceRange": [ - 27, - 39, - 0 - ] - } - ] - }, - "new_arr2": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 1.0, - "__meta": [ - { - "sourceRange": [ - 7, - 8, - 0 - ] - } - ] - }, - { - "type": "Number", - "value": 2.0, - "__meta": [ - { - "sourceRange": [ - 10, - 11, - 0 - ] - } - ] - }, - { - "type": "Number", - "value": 3.0, - "__meta": [ - { - "sourceRange": [ - 13, - 14, - 0 - ] - } - ] - }, - { - "type": "Number", - "value": 4.0, - "__meta": [ - { - "sourceRange": [ - 37, - 38, - 0 - ] - } - ] - }, - { - "type": "Number", - "value": 5.0, - "__meta": [ - { - "sourceRange": [ - 66, - 67, - 0 - ] - } - ] - } - ], - "__meta": [ - { - "sourceRange": [ - 51, - 68, - 0 - ] - } - ] - } + "HALF_TURN": { + "type": "Number", + "value": 180.0, + "__meta": [] + }, + "QUARTER_TURN": { + "type": "Number", + "value": 90.0, + "__meta": [] + }, + "THREE_QUARTER_TURN": { + "type": "Number", + "value": 270.0, + "__meta": [] + }, + "ZERO": { + "type": "Number", + "value": 0.0, + "__meta": [] + }, + "arr": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 1.0, + "__meta": [ + { + "sourceRange": [ + 7, + 8, + 0 + ] + } + ] }, - "snapshots": [], - "parent": null - } - ], - "currentEnv": [ - 0, - 0 - ], - "callStack": [] + { + "type": "Number", + "value": 2.0, + "__meta": [ + { + "sourceRange": [ + 10, + 11, + 0 + ] + } + ] + }, + { + "type": "Number", + "value": 3.0, + "__meta": [ + { + "sourceRange": [ + 13, + 14, + 0 + ] + } + ] + } + ], + "__meta": [ + { + "sourceRange": [ + 6, + 15, + 0 + ] + } + ] + }, + "new_arr1": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 1.0, + "__meta": [ + { + "sourceRange": [ + 7, + 8, + 0 + ] + } + ] + }, + { + "type": "Number", + "value": 2.0, + "__meta": [ + { + "sourceRange": [ + 10, + 11, + 0 + ] + } + ] + }, + { + "type": "Number", + "value": 3.0, + "__meta": [ + { + "sourceRange": [ + 13, + 14, + 0 + ] + } + ] + }, + { + "type": "Number", + "value": 4.0, + "__meta": [ + { + "sourceRange": [ + 37, + 38, + 0 + ] + } + ] + } + ], + "__meta": [ + { + "sourceRange": [ + 27, + 39, + 0 + ] + } + ] + }, + "new_arr2": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 1.0, + "__meta": [ + { + "sourceRange": [ + 7, + 8, + 0 + ] + } + ] + }, + { + "type": "Number", + "value": 2.0, + "__meta": [ + { + "sourceRange": [ + 10, + 11, + 0 + ] + } + ] + }, + { + "type": "Number", + "value": 3.0, + "__meta": [ + { + "sourceRange": [ + 13, + 14, + 0 + ] + } + ] + }, + { + "type": "Number", + "value": 4.0, + "__meta": [ + { + "sourceRange": [ + 37, + 38, + 0 + ] + } + ] + }, + { + "type": "Number", + "value": 5.0, + "__meta": [ + { + "sourceRange": [ + 66, + 67, + 0 + ] + } + ] + } + ], + "__meta": [ + { + "sourceRange": [ + 51, + 68, + 0 + ] + } + ] + } } diff --git a/src/wasm-lib/kcl/tests/array_range_expr/program_memory.snap b/src/wasm-lib/kcl/tests/array_range_expr/program_memory.snap index 342fd2c9a..cbd37175f 100644 --- a/src/wasm-lib/kcl/tests/array_range_expr/program_memory.snap +++ b/src/wasm-lib/kcl/tests/array_range_expr/program_memory.snap @@ -1,394 +1,381 @@ --- source: kcl/src/simulation_tests.rs -description: Program memory after executing array_range_expr.kcl +description: Variables in memory after executing array_range_expr.kcl --- { - "environments": [ - { - "bindings": { - "HALF_TURN": { - "type": "Number", - "value": 180.0, - "__meta": [] - }, - "QUARTER_TURN": { - "type": "Number", - "value": 90.0, - "__meta": [] - }, - "THREE_QUARTER_TURN": { - "type": "Number", - "value": 270.0, - "__meta": [] - }, - "ZERO": { - "type": "Number", - "value": 0.0, - "__meta": [] - }, - "five": { - "type": "Number", - "value": 5.0, - "__meta": [ - { - "sourceRange": [ - 175, - 188, - 0 - ] - } - ] - }, - "four": { - "type": "Number", - "value": 4.0, - "__meta": [ - { - "sourceRange": [ - 79, - 80, - 0 - ] - } - ] - }, - "r1": { - "type": "Array", - "value": [ - { - "type": "Int", - "value": 0, - "__meta": [ - { - "sourceRange": [ - 5, - 11, - 0 - ] - } - ] - }, - { - "type": "Int", - "value": 1, - "__meta": [ - { - "sourceRange": [ - 5, - 11, - 0 - ] - } - ] - }, - { - "type": "Int", - "value": 2, - "__meta": [ - { - "sourceRange": [ - 5, - 11, - 0 - ] - } - ] - }, - { - "type": "Int", - "value": 3, - "__meta": [ - { - "sourceRange": [ - 5, - 11, - 0 - ] - } - ] - }, - { - "type": "Int", - "value": 4, - "__meta": [ - { - "sourceRange": [ - 5, - 11, - 0 - ] - } - ] - } - ], - "__meta": [ - { - "sourceRange": [ - 5, - 11, - 0 - ] - } - ] - }, - "r2": { - "type": "Array", - "value": [ - { - "type": "Int", - "value": 0, - "__meta": [ - { - "sourceRange": [ - 95, - 107, - 0 - ] - } - ] - }, - { - "type": "Int", - "value": 1, - "__meta": [ - { - "sourceRange": [ - 95, - 107, - 0 - ] - } - ] - }, - { - "type": "Int", - "value": 2, - "__meta": [ - { - "sourceRange": [ - 95, - 107, - 0 - ] - } - ] - }, - { - "type": "Int", - "value": 3, - "__meta": [ - { - "sourceRange": [ - 95, - 107, - 0 - ] - } - ] - }, - { - "type": "Int", - "value": 4, - "__meta": [ - { - "sourceRange": [ - 95, - 107, - 0 - ] - } - ] - } - ], - "__meta": [ - { - "sourceRange": [ - 95, - 107, - 0 - ] - } - ] - }, - "r3": { - "type": "Array", - "value": [ - { - "type": "Int", - "value": 0, - "__meta": [ - { - "sourceRange": [ - 194, - 206, - 0 - ] - } - ] - }, - { - "type": "Int", - "value": 1, - "__meta": [ - { - "sourceRange": [ - 194, - 206, - 0 - ] - } - ] - }, - { - "type": "Int", - "value": 2, - "__meta": [ - { - "sourceRange": [ - 194, - 206, - 0 - ] - } - ] - }, - { - "type": "Int", - "value": 3, - "__meta": [ - { - "sourceRange": [ - 194, - 206, - 0 - ] - } - ] - }, - { - "type": "Int", - "value": 4, - "__meta": [ - { - "sourceRange": [ - 194, - 206, - 0 - ] - } - ] - }, - { - "type": "Int", - "value": 5, - "__meta": [ - { - "sourceRange": [ - 194, - 206, - 0 - ] - } - ] - } - ], - "__meta": [ - { - "sourceRange": [ - 194, - 206, - 0 - ] - } - ] - }, - "r4": { - "type": "Array", - "value": [ - { - "type": "Int", - "value": 1, - "__meta": [ - { - "sourceRange": [ - 341, - 373, - 0 - ] - } - ] - }, - { - "type": "Int", - "value": 2, - "__meta": [ - { - "sourceRange": [ - 341, - 373, - 0 - ] - } - ] - }, - { - "type": "Int", - "value": 3, - "__meta": [ - { - "sourceRange": [ - 341, - 373, - 0 - ] - } - ] - }, - { - "type": "Int", - "value": 4, - "__meta": [ - { - "sourceRange": [ - 341, - 373, - 0 - ] - } - ] - } - ], - "__meta": [ - { - "sourceRange": [ - 341, - 373, - 0 - ] - } - ] - }, - "zero": { - "type": "Number", - "value": 0.0, - "__meta": [ - { - "sourceRange": [ - 88, - 89, - 0 - ] - } - ] - } + "HALF_TURN": { + "type": "Number", + "value": 180.0, + "__meta": [] + }, + "QUARTER_TURN": { + "type": "Number", + "value": 90.0, + "__meta": [] + }, + "THREE_QUARTER_TURN": { + "type": "Number", + "value": 270.0, + "__meta": [] + }, + "ZERO": { + "type": "Number", + "value": 0.0, + "__meta": [] + }, + "five": { + "type": "Number", + "value": 5.0, + "__meta": [ + { + "sourceRange": [ + 175, + 188, + 0 + ] + } + ] + }, + "four": { + "type": "Number", + "value": 4.0, + "__meta": [ + { + "sourceRange": [ + 79, + 80, + 0 + ] + } + ] + }, + "r1": { + "type": "Array", + "value": [ + { + "type": "Int", + "value": 0, + "__meta": [ + { + "sourceRange": [ + 5, + 11, + 0 + ] + } + ] }, - "snapshots": [], - "parent": null - } - ], - "currentEnv": [ - 0, - 0 - ], - "callStack": [] + { + "type": "Int", + "value": 1, + "__meta": [ + { + "sourceRange": [ + 5, + 11, + 0 + ] + } + ] + }, + { + "type": "Int", + "value": 2, + "__meta": [ + { + "sourceRange": [ + 5, + 11, + 0 + ] + } + ] + }, + { + "type": "Int", + "value": 3, + "__meta": [ + { + "sourceRange": [ + 5, + 11, + 0 + ] + } + ] + }, + { + "type": "Int", + "value": 4, + "__meta": [ + { + "sourceRange": [ + 5, + 11, + 0 + ] + } + ] + } + ], + "__meta": [ + { + "sourceRange": [ + 5, + 11, + 0 + ] + } + ] + }, + "r2": { + "type": "Array", + "value": [ + { + "type": "Int", + "value": 0, + "__meta": [ + { + "sourceRange": [ + 95, + 107, + 0 + ] + } + ] + }, + { + "type": "Int", + "value": 1, + "__meta": [ + { + "sourceRange": [ + 95, + 107, + 0 + ] + } + ] + }, + { + "type": "Int", + "value": 2, + "__meta": [ + { + "sourceRange": [ + 95, + 107, + 0 + ] + } + ] + }, + { + "type": "Int", + "value": 3, + "__meta": [ + { + "sourceRange": [ + 95, + 107, + 0 + ] + } + ] + }, + { + "type": "Int", + "value": 4, + "__meta": [ + { + "sourceRange": [ + 95, + 107, + 0 + ] + } + ] + } + ], + "__meta": [ + { + "sourceRange": [ + 95, + 107, + 0 + ] + } + ] + }, + "r3": { + "type": "Array", + "value": [ + { + "type": "Int", + "value": 0, + "__meta": [ + { + "sourceRange": [ + 194, + 206, + 0 + ] + } + ] + }, + { + "type": "Int", + "value": 1, + "__meta": [ + { + "sourceRange": [ + 194, + 206, + 0 + ] + } + ] + }, + { + "type": "Int", + "value": 2, + "__meta": [ + { + "sourceRange": [ + 194, + 206, + 0 + ] + } + ] + }, + { + "type": "Int", + "value": 3, + "__meta": [ + { + "sourceRange": [ + 194, + 206, + 0 + ] + } + ] + }, + { + "type": "Int", + "value": 4, + "__meta": [ + { + "sourceRange": [ + 194, + 206, + 0 + ] + } + ] + }, + { + "type": "Int", + "value": 5, + "__meta": [ + { + "sourceRange": [ + 194, + 206, + 0 + ] + } + ] + } + ], + "__meta": [ + { + "sourceRange": [ + 194, + 206, + 0 + ] + } + ] + }, + "r4": { + "type": "Array", + "value": [ + { + "type": "Int", + "value": 1, + "__meta": [ + { + "sourceRange": [ + 341, + 373, + 0 + ] + } + ] + }, + { + "type": "Int", + "value": 2, + "__meta": [ + { + "sourceRange": [ + 341, + 373, + 0 + ] + } + ] + }, + { + "type": "Int", + "value": 3, + "__meta": [ + { + "sourceRange": [ + 341, + 373, + 0 + ] + } + ] + }, + { + "type": "Int", + "value": 4, + "__meta": [ + { + "sourceRange": [ + 341, + 373, + 0 + ] + } + ] + } + ], + "__meta": [ + { + "sourceRange": [ + 341, + 373, + 0 + ] + } + ] + }, + "zero": { + "type": "Number", + "value": 0.0, + "__meta": [ + { + "sourceRange": [ + 88, + 89, + 0 + ] + } + ] + } } diff --git a/src/wasm-lib/kcl/tests/array_range_negative_expr/program_memory.snap b/src/wasm-lib/kcl/tests/array_range_negative_expr/program_memory.snap index 010dfbaf9..6ee97fe94 100644 --- a/src/wasm-lib/kcl/tests/array_range_negative_expr/program_memory.snap +++ b/src/wasm-lib/kcl/tests/array_range_negative_expr/program_memory.snap @@ -1,196 +1,183 @@ --- source: kcl/src/simulation_tests.rs -description: Program memory after executing array_range_negative_expr.kcl +description: Variables in memory after executing array_range_negative_expr.kcl --- { - "environments": [ - { - "bindings": { - "HALF_TURN": { - "type": "Number", - "value": 180.0, - "__meta": [] - }, - "QUARTER_TURN": { - "type": "Number", - "value": 90.0, - "__meta": [] - }, - "THREE_QUARTER_TURN": { - "type": "Number", - "value": 270.0, - "__meta": [] - }, - "ZERO": { - "type": "Number", - "value": 0.0, - "__meta": [] - }, - "xs": { - "type": "Array", - "value": [ - { - "type": "Int", - "value": -5, - "__meta": [ - { - "sourceRange": [ - 5, - 19, - 0 - ] - } - ] - }, - { - "type": "Int", - "value": -4, - "__meta": [ - { - "sourceRange": [ - 5, - 19, - 0 - ] - } - ] - }, - { - "type": "Int", - "value": -3, - "__meta": [ - { - "sourceRange": [ - 5, - 19, - 0 - ] - } - ] - }, - { - "type": "Int", - "value": -2, - "__meta": [ - { - "sourceRange": [ - 5, - 19, - 0 - ] - } - ] - }, - { - "type": "Int", - "value": -1, - "__meta": [ - { - "sourceRange": [ - 5, - 19, - 0 - ] - } - ] - }, - { - "type": "Int", - "value": 0, - "__meta": [ - { - "sourceRange": [ - 5, - 19, - 0 - ] - } - ] - }, - { - "type": "Int", - "value": 1, - "__meta": [ - { - "sourceRange": [ - 5, - 19, - 0 - ] - } - ] - }, - { - "type": "Int", - "value": 2, - "__meta": [ - { - "sourceRange": [ - 5, - 19, - 0 - ] - } - ] - }, - { - "type": "Int", - "value": 3, - "__meta": [ - { - "sourceRange": [ - 5, - 19, - 0 - ] - } - ] - }, - { - "type": "Int", - "value": 4, - "__meta": [ - { - "sourceRange": [ - 5, - 19, - 0 - ] - } - ] - }, - { - "type": "Int", - "value": 5, - "__meta": [ - { - "sourceRange": [ - 5, - 19, - 0 - ] - } - ] - } - ], - "__meta": [ - { - "sourceRange": [ - 5, - 19, - 0 - ] - } - ] - } + "HALF_TURN": { + "type": "Number", + "value": 180.0, + "__meta": [] + }, + "QUARTER_TURN": { + "type": "Number", + "value": 90.0, + "__meta": [] + }, + "THREE_QUARTER_TURN": { + "type": "Number", + "value": 270.0, + "__meta": [] + }, + "ZERO": { + "type": "Number", + "value": 0.0, + "__meta": [] + }, + "xs": { + "type": "Array", + "value": [ + { + "type": "Int", + "value": -5, + "__meta": [ + { + "sourceRange": [ + 5, + 19, + 0 + ] + } + ] }, - "snapshots": [], - "parent": null - } - ], - "currentEnv": [ - 0, - 0 - ], - "callStack": [] + { + "type": "Int", + "value": -4, + "__meta": [ + { + "sourceRange": [ + 5, + 19, + 0 + ] + } + ] + }, + { + "type": "Int", + "value": -3, + "__meta": [ + { + "sourceRange": [ + 5, + 19, + 0 + ] + } + ] + }, + { + "type": "Int", + "value": -2, + "__meta": [ + { + "sourceRange": [ + 5, + 19, + 0 + ] + } + ] + }, + { + "type": "Int", + "value": -1, + "__meta": [ + { + "sourceRange": [ + 5, + 19, + 0 + ] + } + ] + }, + { + "type": "Int", + "value": 0, + "__meta": [ + { + "sourceRange": [ + 5, + 19, + 0 + ] + } + ] + }, + { + "type": "Int", + "value": 1, + "__meta": [ + { + "sourceRange": [ + 5, + 19, + 0 + ] + } + ] + }, + { + "type": "Int", + "value": 2, + "__meta": [ + { + "sourceRange": [ + 5, + 19, + 0 + ] + } + ] + }, + { + "type": "Int", + "value": 3, + "__meta": [ + { + "sourceRange": [ + 5, + 19, + 0 + ] + } + ] + }, + { + "type": "Int", + "value": 4, + "__meta": [ + { + "sourceRange": [ + 5, + 19, + 0 + ] + } + ] + }, + { + "type": "Int", + "value": 5, + "__meta": [ + { + "sourceRange": [ + 5, + 19, + 0 + ] + } + ] + } + ], + "__meta": [ + { + "sourceRange": [ + 5, + 19, + 0 + ] + } + ] + } } diff --git a/src/wasm-lib/kcl/tests/artifact_graph_example_code1/program_memory.snap b/src/wasm-lib/kcl/tests/artifact_graph_example_code1/program_memory.snap index 56c00a678..ffaca068d 100644 --- a/src/wasm-lib/kcl/tests/artifact_graph_example_code1/program_memory.snap +++ b/src/wasm-lib/kcl/tests/artifact_graph_example_code1/program_memory.snap @@ -1,34 +1,562 @@ --- source: kcl/src/simulation_tests.rs -description: Program memory after executing artifact_graph_example_code1.kcl +description: Variables in memory after executing artifact_graph_example_code1.kcl --- { - "environments": [ - { - "bindings": { - "HALF_TURN": { - "type": "Number", - "value": 180.0, + "HALF_TURN": { + "type": "Number", + "value": 180.0, + "__meta": [] + }, + "QUARTER_TURN": { + "type": "Number", + "value": 90.0, + "__meta": [] + }, + "THREE_QUARTER_TURN": { + "type": "Number", + "value": 270.0, + "__meta": [] + }, + "ZERO": { + "type": "Number", + "value": 0.0, + "__meta": [] + }, + "extrude001": { + "type": "Solid", + "value": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 70, + 89, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 95, + 131, + 0 + ], + "tag": { + "end": 130, + "start": 124, + "type": "TagDeclarator", + "value": "seg01" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 137, + 171, + 0 + ], + "tag": { + "end": 170, + "start": 164, + "type": "TagDeclarator", + "value": "seg02" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 177, + 233, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 70, + 89, + 0 + ] + }, + "from": [ + -5.0, + -5.0 + ], + "tag": null, + "to": [ + -5.0, + 5.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 95, + 131, + 0 + ] + }, + "from": [ + -5.0, + 5.0 + ], + "tag": { + "end": 130, + "start": 124, + "type": "TagDeclarator", + "value": "seg01" + }, + "to": [ + 5.55, + 5.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 137, + 171, + 0 + ] + }, + "from": [ + 5.55, + 5.0 + ], + "tag": { + "end": 170, + "start": 164, + "type": "TagDeclarator", + "value": "seg02" + }, + "to": [ + 5.55, + -5.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 177, + 233, + 0 + ] + }, + "from": [ + 5.55, + -5.0 + ], + "tag": null, + "to": [ + -5.0, + -5.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 239, + 246, + 0 + ] + }, + "from": [ + -5.0, + -5.0 + ], + "tag": null, + "to": [ + -5.0, + -5.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + }, "__meta": [] }, - "QUARTER_TURN": { - "type": "Number", - "value": 90.0, - "__meta": [] + "start": { + "from": [ + -5.0, + -5.0 + ], + "to": [ + -5.0, + -5.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 37, + 64, + 0 + ] + } }, - "THREE_QUARTER_TURN": { - "type": "Number", - "value": 270.0, - "__meta": [] + "tags": { + "seg01": { + "type": "TagIdentifier", + "value": "seg01", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 95, + 131, + 0 + ] + }, + "from": [ + -5.0, + 5.0 + ], + "tag": { + "end": 130, + "start": 124, + "type": "TagDeclarator", + "value": "seg01" + }, + "to": [ + 5.550000000000001, + 5.0 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 95, + 131, + 0 + ], + "tag": { + "end": 130, + "start": 124, + "type": "TagDeclarator", + "value": "seg01" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 124, + 130, + 0 + ] + } + ] + }, + "seg02": { + "type": "TagIdentifier", + "value": "seg02", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 137, + 171, + 0 + ] + }, + "from": [ + 5.550000000000001, + 5.0 + ], + "tag": { + "end": 170, + "start": 164, + "type": "TagDeclarator", + "value": "seg02" + }, + "to": [ + 5.550000000000001, + -5.0 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 137, + 171, + 0 + ], + "tag": { + "end": 170, + "start": 164, + "type": "TagDeclarator", + "value": "seg02" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 164, + 170, + 0 + ] + } + ] + } }, - "ZERO": { - "type": "Number", - "value": 0.0, - "__meta": [] + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" }, - "extrude001": { - "type": "Solid", - "value": { + "__meta": [ + { + "sourceRange": [ + 37, + 64, + 0 + ] + } + ] + }, + "height": -10.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "edgeCuts": [ + { + "type": "fillet", + "id": "[uuid]", + "radius": 5.0, + "edgeId": "[uuid]", + "tag": null + } + ], + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 37, + 64, + 0 + ] + } + ] + } + }, + "extrude002": { + "type": "Solid", + "value": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 423, + 441, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 447, + 466, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 472, + 528, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 423, + 441, + 0 + ] + }, + "from": [ + -2.0, + -6.0 + ], + "tag": null, + "to": [ + 0.0, + -3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 447, + 466, + 0 + ] + }, + "from": [ + 0.0, + -3.0 + ], + "tag": null, + "to": [ + 2.0, + -6.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 472, + 528, + 0 + ] + }, + "from": [ + 2.0, + -6.0 + ], + "tag": null, + "to": [ + -2.0, + -6.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 534, + 541, + 0 + ] + }, + "from": [ + -2.0, + -6.0 + ], + "tag": null, + "to": [ + -2.0, + -6.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "seg02", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { "type": "Solid", "id": "[uuid]", "artifactId": "[uuid]", @@ -411,604 +939,359 @@ description: Program memory after executing artifact_graph_example_code1.kcl ] } ] - } - }, - "extrude002": { - "type": "Solid", - "value": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 423, - 441, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 447, - 466, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 472, - 528, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 423, - 441, - 0 - ] - }, - "from": [ - -2.0, - -6.0 - ], - "tag": null, - "to": [ - 0.0, - -3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 447, - 466, - 0 - ] - }, - "from": [ - 0.0, - -3.0 - ], - "tag": null, - "to": [ - 2.0, - -6.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 472, - 528, - 0 - ] - }, - "from": [ - 2.0, - -6.0 - ], - "tag": null, - "to": [ - -2.0, - -6.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 534, - 541, - 0 - ] - }, - "from": [ - -2.0, - -6.0 - ], - "tag": null, - "to": [ - -2.0, - -6.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "face", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "seg02", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 70, - 89, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 95, - 131, - 0 - ], - "tag": { - "end": 130, - "start": 124, - "type": "TagDeclarator", - "value": "seg01" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 137, - 171, - 0 - ], - "tag": { - "end": 170, - "start": 164, - "type": "TagDeclarator", - "value": "seg02" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 177, - 233, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 70, - 89, - 0 - ] - }, - "from": [ - -5.0, - -5.0 - ], - "tag": null, - "to": [ - -5.0, - 5.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 95, - 131, - 0 - ] - }, - "from": [ - -5.0, - 5.0 - ], - "tag": { - "end": 130, - "start": 124, - "type": "TagDeclarator", - "value": "seg01" - }, - "to": [ - 5.55, - 5.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 137, - 171, - 0 - ] - }, - "from": [ - 5.55, - 5.0 - ], - "tag": { - "end": 170, - "start": 164, - "type": "TagDeclarator", - "value": "seg02" - }, - "to": [ - 5.55, - -5.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 177, - 233, - 0 - ] - }, - "from": [ - 5.55, - -5.0 - ], - "tag": null, - "to": [ - -5.0, - -5.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 239, - 246, - 0 - ] - }, - "from": [ - -5.0, - -5.0 - ], - "tag": null, - "to": [ - -5.0, - -5.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - -5.0, - -5.0 - ], - "to": [ - -5.0, - -5.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 37, - 64, - 0 - ] - } - }, - "tags": { - "seg01": { - "type": "TagIdentifier", - "value": "seg01", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 95, - 131, - 0 - ] - }, - "from": [ - -5.0, - 5.0 - ], - "tag": { - "end": 130, - "start": 124, - "type": "TagDeclarator", - "value": "seg01" - }, - "to": [ - 5.550000000000001, - 5.0 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 95, - 131, - 0 - ], - "tag": { - "end": 130, - "start": 124, - "type": "TagDeclarator", - "value": "seg01" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 124, - 130, - 0 - ] - } - ] - }, - "seg02": { - "type": "TagIdentifier", - "value": "seg02", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 137, - 171, - 0 - ] - }, - "from": [ - 5.550000000000001, - 5.0 - ], - "tag": { - "end": 170, - "start": 164, - "type": "TagDeclarator", - "value": "seg02" - }, - "to": [ - 5.550000000000001, - -5.0 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 137, - 171, - 0 - ], - "tag": { - "end": 170, - "start": 164, - "type": "TagDeclarator", - "value": "seg02" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 164, - 170, - 0 - ] - } - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 37, - 64, - 0 - ] - } - ] - }, - "height": -10.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "edgeCuts": [ - { - "type": "fillet", - "id": "[uuid]", - "radius": 5.0, - "edgeId": "[uuid]", - "tag": null - } - ], - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 37, - 64, - 0 - ] - } - ] - }, - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 352, - 384, - 0 - ] - } - ] - }, - "start": { - "from": [ - -2.0, - -6.0 - ], - "to": [ - -2.0, - -6.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 390, - 417, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 390, - 417, - 0 - ] - } + }, + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 352, + 384, + 0 ] - }, - "height": 5.0, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 390, - 417, - 0 - ] - } + } + ] + }, + "start": { + "from": [ + -2.0, + -6.0 + ], + "to": [ + -2.0, + -6.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 390, + 417, + 0 ] } }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 390, + 417, + 0 + ] + } + ] + }, + "height": 5.0, + "startCapId": null, + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 390, + 417, + 0 + ] + } + ] + } + }, + "seg01": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "seg01", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 95, + 131, + 0 + ] + }, + "from": [ + -5.0, + 5.0 + ], + "tag": { + "end": 130, + "start": 124, + "type": "TagDeclarator", + "value": "seg01" + }, + "to": [ + 5.550000000000001, + 5.0 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 95, + 131, + 0 + ], + "tag": { + "end": 130, + "start": 124, + "type": "TagDeclarator", + "value": "seg01" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 124, + 130, + 0 + ] + } + ] + }, + "seg02": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "seg02", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 137, + 171, + 0 + ] + }, + "from": [ + 5.550000000000001, + 5.0 + ], + "tag": { + "end": 170, + "start": 164, + "type": "TagDeclarator", + "value": "seg02" + }, + "to": [ + 5.550000000000001, + -5.0 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 137, + 171, + 0 + ], + "tag": { + "end": 170, + "start": 164, + "type": "TagDeclarator", + "value": "seg02" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 164, + 170, + 0 + ] + } + ] + }, + "sketch001": { + "type": "Sketch", + "value": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 70, + 89, + 0 + ] + }, + "from": [ + -5.0, + -5.0 + ], + "tag": null, + "to": [ + -5.0, + 5.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 95, + 131, + 0 + ] + }, + "from": [ + -5.0, + 5.0 + ], + "tag": { + "end": 130, + "start": 124, + "type": "TagDeclarator", + "value": "seg01" + }, + "to": [ + 5.55, + 5.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 137, + 171, + 0 + ] + }, + "from": [ + 5.55, + 5.0 + ], + "tag": { + "end": 170, + "start": 164, + "type": "TagDeclarator", + "value": "seg02" + }, + "to": [ + 5.55, + -5.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 177, + 233, + 0 + ] + }, + "from": [ + 5.55, + -5.0 + ], + "tag": null, + "to": [ + -5.0, + -5.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 239, + 246, + 0 + ] + }, + "from": [ + -5.0, + -5.0 + ], + "tag": null, + "to": [ + -5.0, + -5.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + -5.0, + -5.0 + ], + "to": [ + -5.0, + -5.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 37, + 64, + 0 + ] + } + }, + "tags": { "seg01": { - "type": "TagIdentifier", "type": "TagIdentifier", "value": "seg01", "info": { @@ -1068,7 +1351,6 @@ description: Program memory after executing artifact_graph_example_code1.kcl ] }, "seg02": { - "type": "TagIdentifier", "type": "TagIdentifier", "value": "seg02", "info": { @@ -1126,10 +1408,192 @@ description: Program memory after executing artifact_graph_example_code1.kcl ] } ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 37, + 64, + 0 + ] + } + ] + } + }, + "sketch002": { + "type": "Sketch", + "value": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 423, + 441, + 0 + ] + }, + "from": [ + -2.0, + -6.0 + ], + "tag": null, + "to": [ + 0.0, + -3.0 + ], + "type": "ToPoint" }, - "sketch001": { - "type": "Sketch", - "value": { + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 447, + 466, + 0 + ] + }, + "from": [ + 0.0, + -3.0 + ], + "tag": null, + "to": [ + 2.0, + -6.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 472, + 528, + 0 + ] + }, + "from": [ + 2.0, + -6.0 + ], + "tag": null, + "to": [ + -2.0, + -6.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 534, + 541, + 0 + ] + }, + "from": [ + -2.0, + -6.0 + ], + "tag": null, + "to": [ + -2.0, + -6.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "seg02", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 70, + 89, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 95, + 131, + 0 + ], + "tag": { + "end": 130, + "start": 124, + "type": "TagDeclarator", + "value": "seg01" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 137, + 171, + 0 + ], + "tag": { + "end": 170, + "start": 164, + "type": "TagDeclarator", + "value": "seg02" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 177, + 233, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { "type": "Sketch", "id": "[uuid]", "paths": [ @@ -1427,555 +1891,78 @@ description: Program memory after executing artifact_graph_example_code1.kcl ] } ] - } - }, - "sketch002": { - "type": "Sketch", - "value": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 423, - 441, - 0 - ] - }, - "from": [ - -2.0, - -6.0 - ], - "tag": null, - "to": [ - 0.0, - -3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 447, - 466, - 0 - ] - }, - "from": [ - 0.0, - -3.0 - ], - "tag": null, - "to": [ - 2.0, - -6.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 472, - 528, - 0 - ] - }, - "from": [ - 2.0, - -6.0 - ], - "tag": null, - "to": [ - -2.0, - -6.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 534, - 541, - 0 - ] - }, - "from": [ - -2.0, - -6.0 - ], - "tag": null, - "to": [ - -2.0, - -6.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "face", + }, + "height": -10.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "edgeCuts": [ + { + "type": "fillet", "id": "[uuid]", - "artifactId": "[uuid]", - "value": "seg02", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 70, - 89, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 95, - 131, - 0 - ], - "tag": { - "end": 130, - "start": 124, - "type": "TagDeclarator", - "value": "seg01" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 137, - 171, - 0 - ], - "tag": { - "end": 170, - "start": 164, - "type": "TagDeclarator", - "value": "seg02" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 177, - 233, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 70, - 89, - 0 - ] - }, - "from": [ - -5.0, - -5.0 - ], - "tag": null, - "to": [ - -5.0, - 5.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 95, - 131, - 0 - ] - }, - "from": [ - -5.0, - 5.0 - ], - "tag": { - "end": 130, - "start": 124, - "type": "TagDeclarator", - "value": "seg01" - }, - "to": [ - 5.55, - 5.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 137, - 171, - 0 - ] - }, - "from": [ - 5.55, - 5.0 - ], - "tag": { - "end": 170, - "start": 164, - "type": "TagDeclarator", - "value": "seg02" - }, - "to": [ - 5.55, - -5.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 177, - 233, - 0 - ] - }, - "from": [ - 5.55, - -5.0 - ], - "tag": null, - "to": [ - -5.0, - -5.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 239, - 246, - 0 - ] - }, - "from": [ - -5.0, - -5.0 - ], - "tag": null, - "to": [ - -5.0, - -5.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - -5.0, - -5.0 - ], - "to": [ - -5.0, - -5.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 37, - 64, - 0 - ] - } - }, - "tags": { - "seg01": { - "type": "TagIdentifier", - "value": "seg01", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 95, - 131, - 0 - ] - }, - "from": [ - -5.0, - 5.0 - ], - "tag": { - "end": 130, - "start": 124, - "type": "TagDeclarator", - "value": "seg01" - }, - "to": [ - 5.550000000000001, - 5.0 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 95, - 131, - 0 - ], - "tag": { - "end": 130, - "start": 124, - "type": "TagDeclarator", - "value": "seg01" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 124, - 130, - 0 - ] - } - ] - }, - "seg02": { - "type": "TagIdentifier", - "value": "seg02", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 137, - 171, - 0 - ] - }, - "from": [ - 5.550000000000001, - 5.0 - ], - "tag": { - "end": 170, - "start": 164, - "type": "TagDeclarator", - "value": "seg02" - }, - "to": [ - 5.550000000000001, - -5.0 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 137, - 171, - 0 - ], - "tag": { - "end": 170, - "start": 164, - "type": "TagDeclarator", - "value": "seg02" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 164, - 170, - 0 - ] - } - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 37, - 64, - 0 - ] - } - ] - }, - "height": -10.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "edgeCuts": [ - { - "type": "fillet", - "id": "[uuid]", - "radius": 5.0, - "edgeId": "[uuid]", - "tag": null - } - ], - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 37, - 64, - 0 - ] - } - ] - }, - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 352, - 384, - 0 - ] - } + "radius": 5.0, + "edgeId": "[uuid]", + "tag": null + } + ], + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 37, + 64, + 0 ] - }, - "start": { - "from": [ - -2.0, - -6.0 - ], - "to": [ - -2.0, - -6.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 390, - 417, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 390, - 417, - 0 - ] - } + } + ] + }, + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 352, + 384, + 0 ] } + ] + }, + "start": { + "from": [ + -2.0, + -6.0 + ], + "to": [ + -2.0, + -6.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 390, + 417, + 0 + ] } }, - "snapshots": [], - "parent": null + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 390, + 417, + 0 + ] + } + ] } - ], - "currentEnv": [ - 0, - 0 - ], - "callStack": [] + } } diff --git a/src/wasm-lib/kcl/tests/artifact_graph_example_code_no_3d/program_memory.snap b/src/wasm-lib/kcl/tests/artifact_graph_example_code_no_3d/program_memory.snap index 89963392c..a76590f7f 100644 --- a/src/wasm-lib/kcl/tests/artifact_graph_example_code_no_3d/program_memory.snap +++ b/src/wasm-lib/kcl/tests/artifact_graph_example_code_no_3d/program_memory.snap @@ -1,33 +1,336 @@ --- source: kcl/src/simulation_tests.rs -description: Program memory after executing artifact_graph_example_code_no_3d.kcl +description: Variables in memory after executing artifact_graph_example_code_no_3d.kcl --- { - "environments": [ - { - "bindings": { - "HALF_TURN": { - "type": "Number", - "value": 180.0, - "__meta": [] + "HALF_TURN": { + "type": "Number", + "value": 180.0, + "__meta": [] + }, + "QUARTER_TURN": { + "type": "Number", + "value": 90.0, + "__meta": [] + }, + "THREE_QUARTER_TURN": { + "type": "Number", + "value": 270.0, + "__meta": [] + }, + "ZERO": { + "type": "Number", + "value": 0.0, + "__meta": [] + }, + "rectangleSegmentA001": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "rectangleSegmentA001", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 71, + 121, + 0 + ] }, - "QUARTER_TURN": { - "type": "Number", - "value": 90.0, - "__meta": [] + "from": [ + 5.82, + 0.0 + ], + "tag": { + "end": 120, + "start": 99, + "type": "TagDeclarator", + "value": "rectangleSegmentA001" }, - "THREE_QUARTER_TURN": { - "type": "Number", - "value": 270.0, - "__meta": [] + "to": [ + -5.719999999999999, + 0.0000000000000014132424062160455 + ], + "type": "ToPoint" + }, + "surface": null + }, + "__meta": [ + { + "sourceRange": [ + 99, + 120, + 0 + ] + } + ] + }, + "rectangleSegmentB001": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "rectangleSegmentB001", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 127, + 227, + 0 + ] }, - "ZERO": { - "type": "Number", - "value": 0.0, - "__meta": [] + "from": [ + -5.719999999999999, + 0.0000000000000014132424062160455 + ], + "tag": { + "end": 226, + "start": 205, + "type": "TagDeclarator", + "value": "rectangleSegmentB001" }, + "to": [ + -5.719999999999998, + 8.210000000000003 + ], + "type": "ToPoint" + }, + "surface": null + }, + "__meta": [ + { + "sourceRange": [ + 205, + 226, + 0 + ] + } + ] + }, + "rectangleSegmentC001": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "rectangleSegmentC001", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 233, + 353, + 0 + ] + }, + "from": [ + -5.719999999999998, + 8.210000000000003 + ], + "tag": { + "end": 352, + "start": 331, + "type": "TagDeclarator", + "value": "rectangleSegmentC001" + }, + "to": [ + 5.820000000000001, + 8.21 + ], + "type": "ToPoint" + }, + "surface": null + }, + "__meta": [ + { + "sourceRange": [ + 331, + 352, + 0 + ] + } + ] + }, + "sketch003": { + "type": "Sketch", + "value": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 71, + 121, + 0 + ] + }, + "from": [ + 5.82, + 0.0 + ], + "tag": { + "end": 120, + "start": 99, + "type": "TagDeclarator", + "value": "rectangleSegmentA001" + }, + "to": [ + -5.72, + 0.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 127, + 227, + 0 + ] + }, + "from": [ + -5.72, + 0.0 + ], + "tag": { + "end": 226, + "start": 205, + "type": "TagDeclarator", + "value": "rectangleSegmentB001" + }, + "to": [ + -5.72, + 8.21 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 233, + 353, + 0 + ] + }, + "from": [ + -5.72, + 8.21 + ], + "tag": { + "end": 352, + "start": 331, + "type": "TagDeclarator", + "value": "rectangleSegmentC001" + }, + "to": [ + 5.82, + 8.21 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 359, + 415, + 0 + ] + }, + "from": [ + 5.82, + 8.21 + ], + "tag": null, + "to": [ + 5.82, + 0.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 421, + 428, + 0 + ] + }, + "from": [ + 5.82, + 0.0 + ], + "tag": null, + "to": [ + 5.82, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "YZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 5.82, + 0.0 + ], + "to": [ + 5.82, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 37, + 65, + 0 + ] + } + }, + "tags": { "rectangleSegmentA001": { - "type": "TagIdentifier", "type": "TagIdentifier", "value": "rectangleSegmentA001", "info": { @@ -72,7 +375,6 @@ description: Program memory after executing artifact_graph_example_code_no_3d.kc ] }, "rectangleSegmentB001": { - "type": "TagIdentifier", "type": "TagIdentifier", "value": "rectangleSegmentB001", "info": { @@ -117,7 +419,6 @@ description: Program memory after executing artifact_graph_example_code_no_3d.kc ] }, "rectangleSegmentC001": { - "type": "TagIdentifier", "type": "TagIdentifier", "value": "rectangleSegmentC001", "info": { @@ -160,478 +461,164 @@ description: Program memory after executing artifact_graph_example_code_no_3d.kc ] } ] - }, - "sketch003": { - "type": "Sketch", - "value": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 71, - 121, - 0 - ] - }, - "from": [ - 5.82, - 0.0 - ], - "tag": { - "end": 120, - "start": 99, - "type": "TagDeclarator", - "value": "rectangleSegmentA001" - }, - "to": [ - -5.72, - 0.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 127, - 227, - 0 - ] - }, - "from": [ - -5.72, - 0.0 - ], - "tag": { - "end": 226, - "start": 205, - "type": "TagDeclarator", - "value": "rectangleSegmentB001" - }, - "to": [ - -5.72, - 8.21 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 233, - 353, - 0 - ] - }, - "from": [ - -5.72, - 8.21 - ], - "tag": { - "end": 352, - "start": 331, - "type": "TagDeclarator", - "value": "rectangleSegmentC001" - }, - "to": [ - 5.82, - 8.21 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 359, - 415, - 0 - ] - }, - "from": [ - 5.82, - 8.21 - ], - "tag": null, - "to": [ - 5.82, - 0.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 421, - 428, - 0 - ] - }, - "from": [ - 5.82, - 0.0 - ], - "tag": null, - "to": [ - 5.82, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "YZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 5.82, - 0.0 - ], - "to": [ - 5.82, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 37, - 65, - 0 - ] - } - }, - "tags": { - "rectangleSegmentA001": { - "type": "TagIdentifier", - "value": "rectangleSegmentA001", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 71, - 121, - 0 - ] - }, - "from": [ - 5.82, - 0.0 - ], - "tag": { - "end": 120, - "start": 99, - "type": "TagDeclarator", - "value": "rectangleSegmentA001" - }, - "to": [ - -5.719999999999999, - 0.0000000000000014132424062160455 - ], - "type": "ToPoint" - }, - "surface": null - }, - "__meta": [ - { - "sourceRange": [ - 99, - 120, - 0 - ] - } - ] - }, - "rectangleSegmentB001": { - "type": "TagIdentifier", - "value": "rectangleSegmentB001", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 127, - 227, - 0 - ] - }, - "from": [ - -5.719999999999999, - 0.0000000000000014132424062160455 - ], - "tag": { - "end": 226, - "start": 205, - "type": "TagDeclarator", - "value": "rectangleSegmentB001" - }, - "to": [ - -5.719999999999998, - 8.210000000000003 - ], - "type": "ToPoint" - }, - "surface": null - }, - "__meta": [ - { - "sourceRange": [ - 205, - 226, - 0 - ] - } - ] - }, - "rectangleSegmentC001": { - "type": "TagIdentifier", - "value": "rectangleSegmentC001", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 233, - 353, - 0 - ] - }, - "from": [ - -5.719999999999998, - 8.210000000000003 - ], - "tag": { - "end": 352, - "start": 331, - "type": "TagDeclarator", - "value": "rectangleSegmentC001" - }, - "to": [ - 5.820000000000001, - 8.21 - ], - "type": "ToPoint" - }, - "surface": null - }, - "__meta": [ - { - "sourceRange": [ - 331, - 352, - 0 - ] - } - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 37, - 65, - 0 - ] - } - ] - } - }, - "sketch004": { - "type": "Sketch", - "value": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 502, - 527, - 0 - ] - }, - "from": [ - 0.0, - 14.36 - ], - "tag": null, - "to": [ - 15.49, - 14.41 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 533, - 559, - 0 - ] - }, - "ccw": false, - "center": [ - 15.54030518835946, - -1.1745473537604454 - ], - "from": [ - 15.49, - 14.41 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "TangentialArcTo" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 565, - 597, - 0 - ] - }, - "ccw": true, - "center": [ - -7.6163791614610235, - 0.5756513711217917 - ], - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - -6.8, - 8.17 - ], - "type": "TangentialArcTo" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": -1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 14.36 - ], - "to": [ - 0.0, - 14.36 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 467, - 496, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 467, - 496, - 0 - ] - } - ] - } } }, - "snapshots": [], - "parent": null + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 37, + 65, + 0 + ] + } + ] } - ], - "currentEnv": [ - 0, - 0 - ], - "callStack": [] + }, + "sketch004": { + "type": "Sketch", + "value": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 502, + 527, + 0 + ] + }, + "from": [ + 0.0, + 14.36 + ], + "tag": null, + "to": [ + 15.49, + 14.41 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 533, + 559, + 0 + ] + }, + "ccw": false, + "center": [ + 15.54030518835946, + -1.1745473537604454 + ], + "from": [ + 15.49, + 14.41 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "TangentialArcTo" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 565, + 597, + 0 + ] + }, + "ccw": true, + "center": [ + -7.6163791614610235, + 0.5756513711217917 + ], + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + -6.8, + 8.17 + ], + "type": "TangentialArcTo" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 14.36 + ], + "to": [ + 0.0, + 14.36 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 467, + 496, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 467, + 496, + 0 + ] + } + ] + } + } } diff --git a/src/wasm-lib/kcl/tests/artifact_graph_example_code_offset_planes/program_memory.snap b/src/wasm-lib/kcl/tests/artifact_graph_example_code_offset_planes/program_memory.snap index 4fee10543..c709631f1 100644 --- a/src/wasm-lib/kcl/tests/artifact_graph_example_code_offset_planes/program_memory.snap +++ b/src/wasm-lib/kcl/tests/artifact_graph_example_code_offset_planes/program_memory.snap @@ -1,228 +1,214 @@ --- source: kcl/src/simulation_tests.rs -description: Program memory after executing artifact_graph_example_code_offset_planes.kcl -snapshot_kind: text +description: Variables in memory after executing artifact_graph_example_code_offset_planes.kcl --- { - "environments": [ - { - "bindings": { - "HALF_TURN": { - "type": "Number", - "value": 180.0, - "__meta": [] - }, - "QUARTER_TURN": { - "type": "Number", - "value": 90.0, - "__meta": [] - }, - "THREE_QUARTER_TURN": { - "type": "Number", - "value": 270.0, - "__meta": [] - }, - "ZERO": { - "type": "Number", - "value": 0.0, - "__meta": [] - }, - "offsetPlane001": { - "type": "Plane", - "value": { + "HALF_TURN": { + "type": "Number", + "value": 180.0, + "__meta": [] + }, + "QUARTER_TURN": { + "type": "Number", + "value": 90.0, + "__meta": [] + }, + "THREE_QUARTER_TURN": { + "type": "Number", + "value": 270.0, + "__meta": [] + }, + "ZERO": { + "type": "Number", + "value": 0.0, + "__meta": [] + }, + "offsetPlane001": { + "type": "Plane", + "value": { + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 20.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + } + }, + "offsetPlane002": { + "type": "Plane", + "value": { + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 0.0, + "y": 50.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + } + }, + "offsetPlane003": { + "type": "Plane", + "value": { + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 10.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + } + }, + "sketch002": { + "type": "Sketch", + "value": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 20.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - } - }, - "offsetPlane002": { - "type": "Plane", - "value": { - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 0.0, - "y": 50.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - } - }, - "offsetPlane003": { - "type": "Plane", - "value": { - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 10.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - } - }, - "sketch002": { - "type": "Sketch", - "value": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 197, - 222, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 6.78, - 15.01 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "Custom", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 20.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 166, - 191, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 166, - 191, - 0 - ] - } + "sourceRange": [ + 197, + 222, + 0 ] - } + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 6.78, + 15.01 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "Custom", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 20.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 166, + 191, + 0 + ] } }, - "snapshots": [], - "parent": null + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 166, + 191, + 0 + ] + } + ] } - ], - "currentEnv": [ - 0, - 0 - ], - "callStack": [] + } } diff --git a/src/wasm-lib/kcl/tests/artifact_graph_sketch_on_face_etc/program_memory.snap b/src/wasm-lib/kcl/tests/artifact_graph_sketch_on_face_etc/program_memory.snap index 861a1590a..66b50b556 100644 --- a/src/wasm-lib/kcl/tests/artifact_graph_sketch_on_face_etc/program_memory.snap +++ b/src/wasm-lib/kcl/tests/artifact_graph_sketch_on_face_etc/program_memory.snap @@ -1,34 +1,453 @@ --- source: kcl/src/simulation_tests.rs -description: Program memory after executing artifact_graph_sketch_on_face_etc.kcl +description: Variables in memory after executing artifact_graph_sketch_on_face_etc.kcl --- { - "environments": [ - { - "bindings": { - "HALF_TURN": { - "type": "Number", - "value": 180.0, + "HALF_TURN": { + "type": "Number", + "value": 180.0, + "__meta": [] + }, + "QUARTER_TURN": { + "type": "Number", + "value": 90.0, + "__meta": [] + }, + "THREE_QUARTER_TURN": { + "type": "Number", + "value": 270.0, + "__meta": [] + }, + "ZERO": { + "type": "Number", + "value": 0.0, + "__meta": [] + }, + "extrude001": { + "type": "Solid", + "value": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 68, + 86, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 92, + 125, + 0 + ], + "tag": { + "end": 124, + "start": 118, + "type": "TagDeclarator", + "value": "seg01" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 131, + 187, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 68, + 86, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 4.0, + 8.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 92, + 125, + 0 + ] + }, + "from": [ + 4.0, + 8.0 + ], + "tag": { + "end": 124, + "start": 118, + "type": "TagDeclarator", + "value": "seg01" + }, + "to": [ + 9.0, + 0.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 131, + 187, + 0 + ] + }, + "from": [ + 9.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 193, + 200, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, "__meta": [] }, - "QUARTER_TURN": { - "type": "Number", - "value": 90.0, - "__meta": [] + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 37, + 62, + 0 + ] + } }, - "THREE_QUARTER_TURN": { - "type": "Number", - "value": 270.0, - "__meta": [] + "tags": { + "seg01": { + "type": "TagIdentifier", + "value": "seg01", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 92, + 125, + 0 + ] + }, + "from": [ + 4.0, + 8.0 + ], + "tag": { + "end": 124, + "start": 118, + "type": "TagDeclarator", + "value": "seg01" + }, + "to": [ + 9.0, + 0.0 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 92, + 125, + 0 + ], + "tag": { + "end": 124, + "start": 118, + "type": "TagDeclarator", + "value": "seg01" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 118, + 124, + 0 + ] + } + ] + } }, - "ZERO": { - "type": "Number", - "value": 0.0, - "__meta": [] + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" }, - "extrude001": { - "type": "Solid", - "value": { + "__meta": [ + { + "sourceRange": [ + 37, + 62, + 0 + ] + } + ] + }, + "height": 6.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 37, + 62, + 0 + ] + } + ] + } + }, + "extrude002": { + "type": "Solid", + "value": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 331, + 349, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 355, + 374, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 380, + 436, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 331, + 349, + 0 + ] + }, + "from": [ + -0.5, + 0.5 + ], + "tag": null, + "to": [ + 1.5, + 5.5 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 355, + 374, + 0 + ] + }, + "from": [ + 1.5, + 5.5 + ], + "tag": null, + "to": [ + 3.5, + 0.5 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 380, + 436, + 0 + ] + }, + "from": [ + 3.5, + 0.5 + ], + "tag": null, + "to": [ + -0.5, + 0.5 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 442, + 449, + 0 + ] + }, + "from": [ + -0.5, + 0.5 + ], + "tag": null, + "to": [ + -0.5, + 0.5 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "seg01", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "solid": { "type": "Solid", "id": "[uuid]", "artifactId": "[uuid]", @@ -302,11 +721,228 @@ description: Program memory after executing artifact_graph_sketch_on_face_etc.kc ] } ] + }, + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 257, + 289, + 0 + ] + } + ] + }, + "start": { + "from": [ + -0.5, + 0.5 + ], + "to": [ + -0.5, + 0.5 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 295, + 325, + 0 + ] } }, - "extrude002": { - "type": "Solid", - "value": { + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 295, + 325, + 0 + ] + } + ] + }, + "height": 5.0, + "startCapId": null, + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 295, + 325, + 0 + ] + } + ] + } + }, + "extrude003": { + "type": "Solid", + "value": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 577, + 611, + 0 + ], + "tag": { + "end": 610, + "start": 604, + "type": "TagDeclarator", + "value": "seg02" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 617, + 636, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 642, + 698, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 577, + 611, + 0 + ] + }, + "from": [ + 1.0, + 1.5 + ], + "tag": { + "end": 610, + "start": 604, + "type": "TagDeclarator", + "value": "seg02" + }, + "to": [ + 1.5, + 3.5 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 617, + 636, + 0 + ] + }, + "from": [ + 1.5, + 3.5 + ], + "tag": null, + "to": [ + 2.5, + 1.5 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 642, + 698, + 0 + ] + }, + "from": [ + 2.5, + 1.5 + ], + "tag": null, + "to": [ + 1.0, + 1.5 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 704, + 711, + 0 + ] + }, + "from": [ + 1.0, + 1.5 + ], + "tag": null, + "to": [ + 1.0, + 1.5 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "end", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "solid": { "type": "Solid", "id": "[uuid]", "artifactId": "[uuid]", @@ -787,11 +1423,279 @@ description: Program memory after executing artifact_graph_sketch_on_face_etc.kc ] } ] + }, + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 506, + 538, + 0 + ] + } + ] + }, + "start": { + "from": [ + 1.0, + 1.5 + ], + "to": [ + 1.0, + 1.5 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 544, + 571, + 0 + ] } }, - "extrude003": { - "type": "Solid", - "value": { + "tags": { + "seg02": { + "type": "TagIdentifier", + "value": "seg02", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 577, + 611, + 0 + ] + }, + "from": [ + 1.0, + 1.5 + ], + "tag": { + "end": 610, + "start": 604, + "type": "TagDeclarator", + "value": "seg02" + }, + "to": [ + 1.5, + 3.5 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 577, + 611, + 0 + ], + "tag": { + "end": 610, + "start": 604, + "type": "TagDeclarator", + "value": "seg02" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 604, + 610, + 0 + ] + } + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 544, + 571, + 0 + ] + } + ] + }, + "height": 4.0, + "startCapId": null, + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 544, + 571, + 0 + ] + } + ] + } + }, + "extrude004": { + "type": "Solid", + "value": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 839, + 859, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 865, + 886, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 892, + 948, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 839, + 859, + 0 + ] + }, + "from": [ + -3.0, + 14.0 + ], + "tag": null, + "to": [ + -2.5, + 15.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 865, + 886, + 0 + ] + }, + "from": [ + -2.5, + 15.0 + ], + "tag": null, + "to": [ + -2.0, + 13.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 892, + 948, + 0 + ] + }, + "from": [ + -2.0, + 13.0 + ], + "tag": null, + "to": [ + -3.0, + 14.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 954, + 961, + 0 + ] + }, + "from": [ + -3.0, + 14.0 + ], + "tag": null, + "to": [ + -3.0, + 14.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "seg02", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "solid": { "type": "Solid", "id": "[uuid]", "artifactId": "[uuid]", @@ -1550,980 +2454,334 @@ description: Program memory after executing artifact_graph_sketch_on_face_etc.kc ] } ] - } - }, - "extrude004": { - "type": "Solid", - "value": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 839, - 859, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 865, - 886, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 892, - 948, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 839, - 859, - 0 - ] - }, - "from": [ - -3.0, - 14.0 - ], - "tag": null, - "to": [ - -2.5, - 15.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 865, - 886, - 0 - ] - }, - "from": [ - -2.5, - 15.0 - ], - "tag": null, - "to": [ - -2.0, - 13.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 892, - 948, - 0 - ] - }, - "from": [ - -2.0, - 13.0 - ], - "tag": null, - "to": [ - -3.0, - 14.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 954, - 961, - 0 - ] - }, - "from": [ - -3.0, - 14.0 - ], - "tag": null, - "to": [ - -3.0, - 14.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "face", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "seg02", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 577, - 611, - 0 - ], - "tag": { - "end": 610, - "start": 604, - "type": "TagDeclarator", - "value": "seg02" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 617, - 636, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 642, - 698, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 577, - 611, - 0 - ] - }, - "from": [ - 1.0, - 1.5 - ], - "tag": { - "end": 610, - "start": 604, - "type": "TagDeclarator", - "value": "seg02" - }, - "to": [ - 1.5, - 3.5 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 617, - 636, - 0 - ] - }, - "from": [ - 1.5, - 3.5 - ], - "tag": null, - "to": [ - 2.5, - 1.5 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 642, - 698, - 0 - ] - }, - "from": [ - 2.5, - 1.5 - ], - "tag": null, - "to": [ - 1.0, - 1.5 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 704, - 711, - 0 - ] - }, - "from": [ - 1.0, - 1.5 - ], - "tag": null, - "to": [ - 1.0, - 1.5 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "face", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "end", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 331, - 349, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 355, - 374, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 380, - 436, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 331, - 349, - 0 - ] - }, - "from": [ - -0.5, - 0.5 - ], - "tag": null, - "to": [ - 1.5, - 5.5 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 355, - 374, - 0 - ] - }, - "from": [ - 1.5, - 5.5 - ], - "tag": null, - "to": [ - 3.5, - 0.5 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 380, - 436, - 0 - ] - }, - "from": [ - 3.5, - 0.5 - ], - "tag": null, - "to": [ - -0.5, - 0.5 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 442, - 449, - 0 - ] - }, - "from": [ - -0.5, - 0.5 - ], - "tag": null, - "to": [ - -0.5, - 0.5 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "face", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "seg01", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 68, - 86, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 92, - 125, - 0 - ], - "tag": { - "end": 124, - "start": 118, - "type": "TagDeclarator", - "value": "seg01" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 131, - 187, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 68, - 86, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 4.0, - 8.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 92, - 125, - 0 - ] - }, - "from": [ - 4.0, - 8.0 - ], - "tag": { - "end": 124, - "start": 118, - "type": "TagDeclarator", - "value": "seg01" - }, - "to": [ - 9.0, - 0.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 131, - 187, - 0 - ] - }, - "from": [ - 9.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 193, - 200, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 37, - 62, - 0 - ] - } - }, - "tags": { - "seg01": { - "type": "TagIdentifier", - "value": "seg01", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 92, - 125, - 0 - ] - }, - "from": [ - 4.0, - 8.0 - ], - "tag": { - "end": 124, - "start": 118, - "type": "TagDeclarator", - "value": "seg01" - }, - "to": [ - 9.0, - 0.0 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 92, - 125, - 0 - ], - "tag": { - "end": 124, - "start": 118, - "type": "TagDeclarator", - "value": "seg01" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 118, - 124, - 0 - ] - } - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 37, - 62, - 0 - ] - } - ] - }, - "height": 6.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 37, - 62, - 0 - ] - } - ] - }, - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 257, - 289, - 0 - ] - } - ] - }, - "start": { - "from": [ - -0.5, - 0.5 - ], - "to": [ - -0.5, - 0.5 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 295, - 325, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 295, - 325, - 0 - ] - } - ] - }, - "height": 5.0, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 295, - 325, - 0 - ] - } - ] - }, - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 506, - 538, - 0 - ] - } - ] - }, - "start": { - "from": [ - 1.0, - 1.5 - ], - "to": [ - 1.0, - 1.5 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 544, - 571, - 0 - ] - } - }, - "tags": { - "seg02": { - "type": "TagIdentifier", - "value": "seg02", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 577, - 611, - 0 - ] - }, - "from": [ - 1.0, - 1.5 - ], - "tag": { - "end": 610, - "start": 604, - "type": "TagDeclarator", - "value": "seg02" - }, - "to": [ - 1.5, - 3.5 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 577, - 611, - 0 - ], - "tag": { - "end": 610, - "start": 604, - "type": "TagDeclarator", - "value": "seg02" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 604, - 610, - 0 - ] - } - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 544, - 571, - 0 - ] - } - ] - }, - "height": 4.0, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 544, - 571, - 0 - ] - } - ] - }, - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 768, - 800, - 0 - ] - } - ] - }, - "start": { - "from": [ - -3.0, - 14.0 - ], - "to": [ - -3.0, - 14.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 806, - 833, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 806, - 833, - 0 - ] - } + }, + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 768, + 800, + 0 ] - }, - "height": 3.0, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 806, - 833, - 0 - ] - } + } + ] + }, + "start": { + "from": [ + -3.0, + 14.0 + ], + "to": [ + -3.0, + 14.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 806, + 833, + 0 ] } }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 806, + 833, + 0 + ] + } + ] + }, + "height": 3.0, + "startCapId": null, + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 806, + 833, + 0 + ] + } + ] + } + }, + "seg01": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "seg01", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 92, + 125, + 0 + ] + }, + "from": [ + 4.0, + 8.0 + ], + "tag": { + "end": 124, + "start": 118, + "type": "TagDeclarator", + "value": "seg01" + }, + "to": [ + 9.0, + 0.0 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 92, + 125, + 0 + ], + "tag": { + "end": 124, + "start": 118, + "type": "TagDeclarator", + "value": "seg01" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 118, + 124, + 0 + ] + } + ] + }, + "seg02": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "seg02", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 577, + 611, + 0 + ] + }, + "from": [ + 1.0, + 1.5 + ], + "tag": { + "end": 610, + "start": 604, + "type": "TagDeclarator", + "value": "seg02" + }, + "to": [ + 1.5, + 3.5 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 577, + 611, + 0 + ], + "tag": { + "end": 610, + "start": 604, + "type": "TagDeclarator", + "value": "seg02" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 604, + 610, + 0 + ] + } + ] + }, + "sketch001": { + "type": "Sketch", + "value": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 68, + 86, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 4.0, + 8.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 92, + 125, + 0 + ] + }, + "from": [ + 4.0, + 8.0 + ], + "tag": { + "end": 124, + "start": 118, + "type": "TagDeclarator", + "value": "seg01" + }, + "to": [ + 9.0, + 0.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 131, + 187, + 0 + ] + }, + "from": [ + 9.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 193, + 200, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 37, + 62, + 0 + ] + } + }, + "tags": { "seg01": { - "type": "TagIdentifier", "type": "TagIdentifier", "value": "seg01", "info": { @@ -2581,70 +2839,176 @@ description: Program memory after executing artifact_graph_sketch_on_face_etc.kc ] } ] - }, - "seg02": { - "type": "TagIdentifier", - "type": "TagIdentifier", - "value": "seg02", - "info": { - "type": "TagEngineInfo", + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 37, + 62, + 0 + ] + } + ] + } + }, + "sketch002": { + "type": "Sketch", + "value": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 577, - 611, - 0 - ] - }, - "from": [ - 1.0, - 1.5 - ], - "tag": { - "end": 610, - "start": 604, - "type": "TagDeclarator", - "value": "seg02" - }, - "to": [ - 1.5, - 3.5 - ], - "type": "ToPoint" - }, - "surface": { + "sourceRange": [ + 331, + 349, + 0 + ] + }, + "from": [ + -0.5, + 0.5 + ], + "tag": null, + "to": [ + 1.5, + 5.5 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 355, + 374, + 0 + ] + }, + "from": [ + 1.5, + 5.5 + ], + "tag": null, + "to": [ + 3.5, + 0.5 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 380, + 436, + 0 + ] + }, + "from": [ + 3.5, + 0.5 + ], + "tag": null, + "to": [ + -0.5, + 0.5 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 442, + 449, + 0 + ] + }, + "from": [ + -0.5, + 0.5 + ], + "tag": null, + "to": [ + -0.5, + 0.5 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "seg01", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ - 577, - 611, + 68, + 86, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 92, + 125, 0 ], "tag": { - "end": 610, - "start": 604, + "end": 124, + "start": 118, "type": "TagDeclarator", - "value": "seg02" + "value": "seg01" }, "type": "extrudePlane" - } - }, - "__meta": [ + }, { + "faceId": "[uuid]", + "id": "[uuid]", "sourceRange": [ - 604, - 610, + 131, + 187, 0 - ] + ], + "tag": null, + "type": "extrudePlane" } - ] - }, - "sketch001": { - "type": "Sketch", - "value": { + ], + "sketch": { "type": "Sketch", "id": "[uuid]", "paths": [ @@ -2858,11 +3222,223 @@ description: Program memory after executing artifact_graph_sketch_on_face_etc.kc ] } ] - } + }, + "height": 6.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 37, + 62, + 0 + ] + } + ] }, - "sketch002": { - "type": "Sketch", - "value": { + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 257, + 289, + 0 + ] + } + ] + }, + "start": { + "from": [ + -0.5, + 0.5 + ], + "to": [ + -0.5, + 0.5 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 295, + 325, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 295, + 325, + 0 + ] + } + ] + } + }, + "sketch003": { + "type": "Sketch", + "value": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 577, + 611, + 0 + ] + }, + "from": [ + 1.0, + 1.5 + ], + "tag": { + "end": 610, + "start": 604, + "type": "TagDeclarator", + "value": "seg02" + }, + "to": [ + 1.5, + 3.5 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 617, + 636, + 0 + ] + }, + "from": [ + 1.5, + 3.5 + ], + "tag": null, + "to": [ + 2.5, + 1.5 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 642, + 698, + 0 + ] + }, + "from": [ + 2.5, + 1.5 + ], + "tag": null, + "to": [ + 1.0, + 1.5 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 704, + 711, + 0 + ] + }, + "from": [ + 1.0, + 1.5 + ], + "tag": null, + "to": [ + 1.0, + 1.5 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "end", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 331, + 349, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 355, + 374, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 380, + 436, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { "type": "Sketch", "id": "[uuid]", "paths": [ @@ -3288,11 +3864,284 @@ description: Program memory after executing artifact_graph_sketch_on_face_etc.kc ] } ] - } + }, + "height": 5.0, + "startCapId": null, + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 295, + 325, + 0 + ] + } + ] }, - "sketch003": { - "type": "Sketch", - "value": { + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 506, + 538, + 0 + ] + } + ] + }, + "start": { + "from": [ + 1.0, + 1.5 + ], + "to": [ + 1.0, + 1.5 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 544, + 571, + 0 + ] + } + }, + "tags": { + "seg02": { + "type": "TagIdentifier", + "value": "seg02", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 577, + 611, + 0 + ] + }, + "from": [ + 1.0, + 1.5 + ], + "tag": { + "end": 610, + "start": 604, + "type": "TagDeclarator", + "value": "seg02" + }, + "to": [ + 1.5, + 3.5 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 577, + 611, + 0 + ], + "tag": { + "end": 610, + "start": 604, + "type": "TagDeclarator", + "value": "seg02" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 604, + 610, + 0 + ] + } + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 544, + 571, + 0 + ] + } + ] + } + }, + "sketch004": { + "type": "Sketch", + "value": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 839, + 859, + 0 + ] + }, + "from": [ + -3.0, + 14.0 + ], + "tag": null, + "to": [ + -2.5, + 15.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 865, + 886, + 0 + ] + }, + "from": [ + -2.5, + 15.0 + ], + "tag": null, + "to": [ + -2.0, + 13.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 892, + 948, + 0 + ] + }, + "from": [ + -2.0, + 13.0 + ], + "tag": null, + "to": [ + -3.0, + 14.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 954, + 961, + 0 + ] + }, + "from": [ + -3.0, + 14.0 + ], + "tag": null, + "to": [ + -3.0, + 14.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "seg02", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 577, + 611, + 0 + ], + "tag": { + "end": 610, + "start": 604, + "type": "TagDeclarator", + "value": "seg02" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 617, + 636, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 642, + 698, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { "type": "Sketch", "id": "[uuid]", "paths": [ @@ -3991,931 +4840,69 @@ description: Program memory after executing artifact_graph_sketch_on_face_etc.kc ] } ] - } - }, - "sketch004": { - "type": "Sketch", - "value": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 839, - 859, - 0 - ] - }, - "from": [ - -3.0, - 14.0 - ], - "tag": null, - "to": [ - -2.5, - 15.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 865, - 886, - 0 - ] - }, - "from": [ - -2.5, - 15.0 - ], - "tag": null, - "to": [ - -2.0, - 13.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 892, - 948, - 0 - ] - }, - "from": [ - -2.0, - 13.0 - ], - "tag": null, - "to": [ - -3.0, - 14.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 954, - 961, - 0 - ] - }, - "from": [ - -3.0, - 14.0 - ], - "tag": null, - "to": [ - -3.0, - 14.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "face", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "seg02", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 577, - 611, - 0 - ], - "tag": { - "end": 610, - "start": 604, - "type": "TagDeclarator", - "value": "seg02" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 617, - 636, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 642, - 698, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 577, - 611, - 0 - ] - }, - "from": [ - 1.0, - 1.5 - ], - "tag": { - "end": 610, - "start": 604, - "type": "TagDeclarator", - "value": "seg02" - }, - "to": [ - 1.5, - 3.5 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 617, - 636, - 0 - ] - }, - "from": [ - 1.5, - 3.5 - ], - "tag": null, - "to": [ - 2.5, - 1.5 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 642, - 698, - 0 - ] - }, - "from": [ - 2.5, - 1.5 - ], - "tag": null, - "to": [ - 1.0, - 1.5 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 704, - 711, - 0 - ] - }, - "from": [ - 1.0, - 1.5 - ], - "tag": null, - "to": [ - 1.0, - 1.5 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "face", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "end", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 331, - 349, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 355, - 374, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 380, - 436, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 331, - 349, - 0 - ] - }, - "from": [ - -0.5, - 0.5 - ], - "tag": null, - "to": [ - 1.5, - 5.5 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 355, - 374, - 0 - ] - }, - "from": [ - 1.5, - 5.5 - ], - "tag": null, - "to": [ - 3.5, - 0.5 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 380, - 436, - 0 - ] - }, - "from": [ - 3.5, - 0.5 - ], - "tag": null, - "to": [ - -0.5, - 0.5 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 442, - 449, - 0 - ] - }, - "from": [ - -0.5, - 0.5 - ], - "tag": null, - "to": [ - -0.5, - 0.5 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "face", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "seg01", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 68, - 86, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 92, - 125, - 0 - ], - "tag": { - "end": 124, - "start": 118, - "type": "TagDeclarator", - "value": "seg01" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 131, - 187, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 68, - 86, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 4.0, - 8.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 92, - 125, - 0 - ] - }, - "from": [ - 4.0, - 8.0 - ], - "tag": { - "end": 124, - "start": 118, - "type": "TagDeclarator", - "value": "seg01" - }, - "to": [ - 9.0, - 0.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 131, - 187, - 0 - ] - }, - "from": [ - 9.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 193, - 200, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 37, - 62, - 0 - ] - } - }, - "tags": { - "seg01": { - "type": "TagIdentifier", - "value": "seg01", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 92, - 125, - 0 - ] - }, - "from": [ - 4.0, - 8.0 - ], - "tag": { - "end": 124, - "start": 118, - "type": "TagDeclarator", - "value": "seg01" - }, - "to": [ - 9.0, - 0.0 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 92, - 125, - 0 - ], - "tag": { - "end": 124, - "start": 118, - "type": "TagDeclarator", - "value": "seg01" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 118, - 124, - 0 - ] - } - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 37, - 62, - 0 - ] - } - ] - }, - "height": 6.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 37, - 62, - 0 - ] - } - ] - }, - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 257, - 289, - 0 - ] - } - ] - }, - "start": { - "from": [ - -0.5, - 0.5 - ], - "to": [ - -0.5, - 0.5 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 295, - 325, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 295, - 325, - 0 - ] - } - ] - }, - "height": 5.0, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 295, - 325, - 0 - ] - } - ] - }, - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 506, - 538, - 0 - ] - } - ] - }, - "start": { - "from": [ - 1.0, - 1.5 - ], - "to": [ - 1.0, - 1.5 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 544, - 571, - 0 - ] - } - }, - "tags": { - "seg02": { - "type": "TagIdentifier", - "value": "seg02", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 577, - 611, - 0 - ] - }, - "from": [ - 1.0, - 1.5 - ], - "tag": { - "end": 610, - "start": 604, - "type": "TagDeclarator", - "value": "seg02" - }, - "to": [ - 1.5, - 3.5 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 577, - 611, - 0 - ], - "tag": { - "end": 610, - "start": 604, - "type": "TagDeclarator", - "value": "seg02" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 604, - 610, - 0 - ] - } - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 544, - 571, - 0 - ] - } - ] - }, - "height": 4.0, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 544, - 571, - 0 - ] - } - ] - }, - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 768, - 800, - 0 - ] - } + }, + "height": 4.0, + "startCapId": null, + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 544, + 571, + 0 ] - }, - "start": { - "from": [ - -3.0, - 14.0 - ], - "to": [ - -3.0, - 14.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 806, - 833, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 806, - 833, - 0 - ] - } + } + ] + }, + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 768, + 800, + 0 ] } + ] + }, + "start": { + "from": [ + -3.0, + 14.0 + ], + "to": [ + -3.0, + 14.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 806, + 833, + 0 + ] } }, - "snapshots": [], - "parent": null + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 806, + 833, + 0 + ] + } + ] } - ], - "currentEnv": [ - 0, - 0 - ], - "callStack": [] + } } diff --git a/src/wasm-lib/kcl/tests/basic_fillet_cube_close_opposite/program_memory.snap b/src/wasm-lib/kcl/tests/basic_fillet_cube_close_opposite/program_memory.snap index 5227cb4c1..6f47d4097 100644 --- a/src/wasm-lib/kcl/tests/basic_fillet_cube_close_opposite/program_memory.snap +++ b/src/wasm-lib/kcl/tests/basic_fillet_cube_close_opposite/program_memory.snap @@ -1,39 +1,278 @@ --- source: kcl/src/simulation_tests.rs -description: Program memory after executing basic_fillet_cube_close_opposite.kcl +description: Variables in memory after executing basic_fillet_cube_close_opposite.kcl --- { - "environments": [ - { - "bindings": { - "HALF_TURN": { - "type": "Number", - "value": 180.0, + "HALF_TURN": { + "type": "Number", + "value": 180.0, + "__meta": [] + }, + "QUARTER_TURN": { + "type": "Number", + "value": 90.0, + "__meta": [] + }, + "THREE_QUARTER_TURN": { + "type": "Number", + "value": 270.0, + "__meta": [] + }, + "ZERO": { + "type": "Number", + "value": 0.0, + "__meta": [] + }, + "part001": { + "type": "Solid", + "value": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 66, + 99, + 0 + ], + "tag": { + "end": 98, + "start": 92, + "type": "TagDeclarator", + "value": "thing" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 105, + 124, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 130, + 165, + 0 + ], + "tag": { + "end": 164, + "start": 157, + "type": "TagDeclarator", + "value": "thing2" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 171, + 191, + 0 + ], + "tag": { + "end": 190, + "start": 183, + "type": "TagDeclarator", + "value": "thing3" + }, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 66, + 99, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 98, + "start": 92, + "type": "TagDeclarator", + "value": "thing" + }, + "to": [ + 0.0, + 10.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 105, + 124, + 0 + ] + }, + "from": [ + 0.0, + 10.0 + ], + "tag": null, + "to": [ + 10.0, + 10.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 130, + 165, + 0 + ] + }, + "from": [ + 10.0, + 10.0 + ], + "tag": { + "end": 164, + "start": 157, + "type": "TagDeclarator", + "value": "thing2" + }, + "to": [ + 10.0, + 0.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 171, + 191, + 0 + ] + }, + "from": [ + 10.0, + 0.0 + ], + "tag": { + "end": 190, + "start": 183, + "type": "TagDeclarator", + "value": "thing3" + }, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + }, "__meta": [] }, - "QUARTER_TURN": { - "type": "Number", - "value": 90.0, - "__meta": [] - }, - "THREE_QUARTER_TURN": { - "type": "Number", - "value": 270.0, - "__meta": [] - }, - "ZERO": { - "type": "Number", - "value": 0.0, - "__meta": [] - }, - "part001": { - "type": "Solid", - "value": { - "type": "Solid", + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { + "sourceRange": [ + 35, + 60, + 0 + ] + } + }, + "tags": { + "thing": { + "type": "TagIdentifier", + "value": "thing", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 66, + 99, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 98, + "start": 92, + "type": "TagDeclarator", + "value": "thing" + }, + "to": [ + 0.0, + 10.0 + ], + "type": "ToPoint" + }, + "surface": { "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ @@ -48,19 +287,51 @@ description: Program memory after executing basic_fillet_cube_close_opposite.kcl "value": "thing" }, "type": "extrudePlane" - }, + } + }, + "__meta": [ { - "faceId": "[uuid]", - "id": "[uuid]", "sourceRange": [ - 105, - 124, + 92, + 98, 0 + ] + } + ] + }, + "thing2": { + "type": "TagIdentifier", + "value": "thing2", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 130, + 165, + 0 + ] + }, + "from": [ + 10.0, + 10.0 ], - "tag": null, - "type": "extrudePlane" + "tag": { + "end": 164, + "start": 157, + "type": "TagDeclarator", + "value": "thing2" + }, + "to": [ + 10.0, + 0.0 + ], + "type": "ToPoint" }, - { + "surface": { "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ @@ -75,8 +346,51 @@ description: Program memory after executing basic_fillet_cube_close_opposite.kcl "value": "thing2" }, "type": "extrudePlane" - }, + } + }, + "__meta": [ { + "sourceRange": [ + 157, + 164, + 0 + ] + } + ] + }, + "thing3": { + "type": "TagIdentifier", + "value": "thing3", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 171, + 191, + 0 + ] + }, + "from": [ + 10.0, + 0.0 + ], + "tag": { + "end": 190, + "start": 183, + "type": "TagDeclarator", + "value": "thing3" + }, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + }, + "surface": { "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ @@ -92,571 +406,244 @@ description: Program memory after executing basic_fillet_cube_close_opposite.kcl }, "type": "extrudePlane" } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 66, - 99, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": { - "end": 98, - "start": 92, - "type": "TagDeclarator", - "value": "thing" - }, - "to": [ - 0.0, - 10.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 105, - 124, - 0 - ] - }, - "from": [ - 0.0, - 10.0 - ], - "tag": null, - "to": [ - 10.0, - 10.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 130, - 165, - 0 - ] - }, - "from": [ - 10.0, - 10.0 - ], - "tag": { - "end": 164, - "start": 157, - "type": "TagDeclarator", - "value": "thing2" - }, - "to": [ - 10.0, - 0.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 171, - 191, - 0 - ] - }, - "from": [ - 10.0, - 0.0 - ], - "tag": { - "end": 190, - "start": 183, - "type": "TagDeclarator", - "value": "thing3" - }, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 35, - 60, - 0 - ] - } - }, - "tags": { - "thing": { - "type": "TagIdentifier", - "value": "thing", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 66, - 99, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": { - "end": 98, - "start": 92, - "type": "TagDeclarator", - "value": "thing" - }, - "to": [ - 0.0, - 10.0 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 66, - 99, - 0 - ], - "tag": { - "end": 98, - "start": 92, - "type": "TagDeclarator", - "value": "thing" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 92, - 98, - 0 - ] - } - ] - }, - "thing2": { - "type": "TagIdentifier", - "value": "thing2", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 130, - 165, - 0 - ] - }, - "from": [ - 10.0, - 10.0 - ], - "tag": { - "end": 164, - "start": 157, - "type": "TagDeclarator", - "value": "thing2" - }, - "to": [ - 10.0, - 0.0 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 130, - 165, - 0 - ], - "tag": { - "end": 164, - "start": 157, - "type": "TagDeclarator", - "value": "thing2" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 157, - 164, - 0 - ] - } - ] - }, - "thing3": { - "type": "TagIdentifier", - "value": "thing3", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 171, - 191, - 0 - ] - }, - "from": [ - 10.0, - 0.0 - ], - "tag": { - "end": 190, - "start": 183, - "type": "TagDeclarator", - "value": "thing3" - }, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 171, - 191, - 0 - ], - "tag": { - "end": 190, - "start": 183, - "type": "TagDeclarator", - "value": "thing3" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 183, - 190, - 0 - ] - } - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 35, - 60, - 0 - ] - } - ] - }, - "height": 10.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "edgeCuts": [ - { - "type": "fillet", - "id": "[uuid]", - "radius": 2.0, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 2.0, - "edgeId": "[uuid]", - "tag": null - } - ], - "units": { - "type": "Mm" }, "__meta": [ { "sourceRange": [ - 35, - 60, + 183, + 190, 0 ] } ] } }, - "thing": { - "type": "TagIdentifier", - "type": "TagIdentifier", - "value": "thing", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 66, - 99, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": { - "end": 98, - "start": 92, - "type": "TagDeclarator", - "value": "thing" - }, - "to": [ - 0.0, - 10.0 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 66, - 99, - 0 - ], - "tag": { - "end": 98, - "start": 92, - "type": "TagDeclarator", - "value": "thing" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 92, - 98, - 0 - ] - } - ] + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" }, - "thing2": { - "type": "TagIdentifier", - "type": "TagIdentifier", - "value": "thing2", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 130, - 165, - 0 - ] - }, - "from": [ - 10.0, - 10.0 - ], - "tag": { - "end": 164, - "start": 157, - "type": "TagDeclarator", - "value": "thing2" - }, - "to": [ - 10.0, - 0.0 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 130, - 165, - 0 - ], - "tag": { - "end": 164, - "start": 157, - "type": "TagDeclarator", - "value": "thing2" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 157, - 164, - 0 - ] - } - ] + "__meta": [ + { + "sourceRange": [ + 35, + 60, + 0 + ] + } + ] + }, + "height": 10.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "edgeCuts": [ + { + "type": "fillet", + "id": "[uuid]", + "radius": 2.0, + "edgeId": "[uuid]", + "tag": null }, - "thing3": { - "type": "TagIdentifier", - "type": "TagIdentifier", - "value": "thing3", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 171, - 191, - 0 - ] - }, - "from": [ - 10.0, - 0.0 - ], - "tag": { - "end": 190, - "start": 183, - "type": "TagDeclarator", - "value": "thing3" - }, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 171, - 191, - 0 - ], - "tag": { - "end": 190, - "start": 183, - "type": "TagDeclarator", - "value": "thing3" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 183, - 190, - 0 - ] - } + { + "type": "fillet", + "id": "[uuid]", + "radius": 2.0, + "edgeId": "[uuid]", + "tag": null + } + ], + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 35, + 60, + 0 ] } - }, - "snapshots": [], - "parent": null + ] } - ], - "currentEnv": [ - 0, - 0 - ], - "callStack": [] + }, + "thing": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "thing", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 66, + 99, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 98, + "start": 92, + "type": "TagDeclarator", + "value": "thing" + }, + "to": [ + 0.0, + 10.0 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 66, + 99, + 0 + ], + "tag": { + "end": 98, + "start": 92, + "type": "TagDeclarator", + "value": "thing" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 92, + 98, + 0 + ] + } + ] + }, + "thing2": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "thing2", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 130, + 165, + 0 + ] + }, + "from": [ + 10.0, + 10.0 + ], + "tag": { + "end": 164, + "start": 157, + "type": "TagDeclarator", + "value": "thing2" + }, + "to": [ + 10.0, + 0.0 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 130, + 165, + 0 + ], + "tag": { + "end": 164, + "start": 157, + "type": "TagDeclarator", + "value": "thing2" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 157, + 164, + 0 + ] + } + ] + }, + "thing3": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "thing3", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 171, + 191, + 0 + ] + }, + "from": [ + 10.0, + 0.0 + ], + "tag": { + "end": 190, + "start": 183, + "type": "TagDeclarator", + "value": "thing3" + }, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 171, + 191, + 0 + ], + "tag": { + "end": 190, + "start": 183, + "type": "TagDeclarator", + "value": "thing3" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 183, + 190, + 0 + ] + } + ] + } } diff --git a/src/wasm-lib/kcl/tests/basic_fillet_cube_end/program_memory.snap b/src/wasm-lib/kcl/tests/basic_fillet_cube_end/program_memory.snap index b5a91f455..258188eed 100644 --- a/src/wasm-lib/kcl/tests/basic_fillet_cube_end/program_memory.snap +++ b/src/wasm-lib/kcl/tests/basic_fillet_cube_end/program_memory.snap @@ -1,39 +1,268 @@ --- source: kcl/src/simulation_tests.rs -description: Program memory after executing basic_fillet_cube_end.kcl +description: Variables in memory after executing basic_fillet_cube_end.kcl --- { - "environments": [ - { - "bindings": { - "HALF_TURN": { - "type": "Number", - "value": 180.0, + "HALF_TURN": { + "type": "Number", + "value": 180.0, + "__meta": [] + }, + "QUARTER_TURN": { + "type": "Number", + "value": 90.0, + "__meta": [] + }, + "THREE_QUARTER_TURN": { + "type": "Number", + "value": 270.0, + "__meta": [] + }, + "ZERO": { + "type": "Number", + "value": 0.0, + "__meta": [] + }, + "part001": { + "type": "Solid", + "value": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 66, + 99, + 0 + ], + "tag": { + "end": 98, + "start": 92, + "type": "TagDeclarator", + "value": "thing" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 105, + 124, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 130, + 165, + 0 + ], + "tag": { + "end": 164, + "start": 157, + "type": "TagDeclarator", + "value": "thing2" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 171, + 179, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 66, + 99, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 98, + "start": 92, + "type": "TagDeclarator", + "value": "thing" + }, + "to": [ + 0.0, + 10.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 105, + 124, + 0 + ] + }, + "from": [ + 0.0, + 10.0 + ], + "tag": null, + "to": [ + 10.0, + 10.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 130, + 165, + 0 + ] + }, + "from": [ + 10.0, + 10.0 + ], + "tag": { + "end": 164, + "start": 157, + "type": "TagDeclarator", + "value": "thing2" + }, + "to": [ + 10.0, + 0.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 171, + 179, + 0 + ] + }, + "from": [ + 10.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + }, "__meta": [] }, - "QUARTER_TURN": { - "type": "Number", - "value": 90.0, - "__meta": [] - }, - "THREE_QUARTER_TURN": { - "type": "Number", - "value": 270.0, - "__meta": [] - }, - "ZERO": { - "type": "Number", - "value": 0.0, - "__meta": [] - }, - "part001": { - "type": "Solid", - "value": { - "type": "Solid", + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { + "sourceRange": [ + 35, + 60, + 0 + ] + } + }, + "tags": { + "thing": { + "type": "TagIdentifier", + "value": "thing", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 66, + 99, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 98, + "start": 92, + "type": "TagDeclarator", + "value": "thing" + }, + "to": [ + 0.0, + 10.0 + ], + "type": "ToPoint" + }, + "surface": { "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ @@ -48,19 +277,51 @@ description: Program memory after executing basic_fillet_cube_end.kcl "value": "thing" }, "type": "extrudePlane" - }, + } + }, + "__meta": [ { - "faceId": "[uuid]", - "id": "[uuid]", "sourceRange": [ - 105, - 124, + 92, + 98, 0 + ] + } + ] + }, + "thing2": { + "type": "TagIdentifier", + "value": "thing2", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 130, + 165, + 0 + ] + }, + "from": [ + 10.0, + 10.0 ], - "tag": null, - "type": "extrudePlane" + "tag": { + "end": 164, + "start": 157, + "type": "TagDeclarator", + "value": "thing2" + }, + "to": [ + 10.0, + 0.0 + ], + "type": "ToPoint" }, - { + "surface": { "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ @@ -75,459 +336,185 @@ description: Program memory after executing basic_fillet_cube_end.kcl "value": "thing2" }, "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 171, - 179, - 0 - ], - "tag": null, - "type": "extrudePlane" } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 66, - 99, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": { - "end": 98, - "start": 92, - "type": "TagDeclarator", - "value": "thing" - }, - "to": [ - 0.0, - 10.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 105, - 124, - 0 - ] - }, - "from": [ - 0.0, - 10.0 - ], - "tag": null, - "to": [ - 10.0, - 10.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 130, - 165, - 0 - ] - }, - "from": [ - 10.0, - 10.0 - ], - "tag": { - "end": 164, - "start": 157, - "type": "TagDeclarator", - "value": "thing2" - }, - "to": [ - 10.0, - 0.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 171, - 179, - 0 - ] - }, - "from": [ - 10.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 35, - 60, - 0 - ] - } - }, - "tags": { - "thing": { - "type": "TagIdentifier", - "value": "thing", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 66, - 99, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": { - "end": 98, - "start": 92, - "type": "TagDeclarator", - "value": "thing" - }, - "to": [ - 0.0, - 10.0 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 66, - 99, - 0 - ], - "tag": { - "end": 98, - "start": 92, - "type": "TagDeclarator", - "value": "thing" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 92, - 98, - 0 - ] - } - ] - }, - "thing2": { - "type": "TagIdentifier", - "value": "thing2", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 130, - 165, - 0 - ] - }, - "from": [ - 10.0, - 10.0 - ], - "tag": { - "end": 164, - "start": 157, - "type": "TagDeclarator", - "value": "thing2" - }, - "to": [ - 10.0, - 0.0 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 130, - 165, - 0 - ], - "tag": { - "end": 164, - "start": 157, - "type": "TagDeclarator", - "value": "thing2" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 157, - 164, - 0 - ] - } - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 35, - 60, - 0 - ] - } - ] - }, - "height": 10.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "edgeCuts": [ - { - "type": "fillet", - "id": "[uuid]", - "radius": 2.0, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 2.0, - "edgeId": "[uuid]", - "tag": null - } - ], - "units": { - "type": "Mm" }, "__meta": [ { "sourceRange": [ - 35, - 60, + 157, + 164, 0 ] } ] } }, - "thing": { - "type": "TagIdentifier", - "type": "TagIdentifier", - "value": "thing", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 66, - 99, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": { - "end": 98, - "start": 92, - "type": "TagDeclarator", - "value": "thing" - }, - "to": [ - 0.0, - 10.0 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 66, - 99, - 0 - ], - "tag": { - "end": 98, - "start": 92, - "type": "TagDeclarator", - "value": "thing" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 92, - 98, - 0 - ] - } - ] + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" }, - "thing2": { - "type": "TagIdentifier", - "type": "TagIdentifier", - "value": "thing2", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 130, - 165, - 0 - ] - }, - "from": [ - 10.0, - 10.0 - ], - "tag": { - "end": 164, - "start": 157, - "type": "TagDeclarator", - "value": "thing2" - }, - "to": [ - 10.0, - 0.0 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 130, - 165, - 0 - ], - "tag": { - "end": 164, - "start": 157, - "type": "TagDeclarator", - "value": "thing2" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 157, - 164, - 0 - ] - } + "__meta": [ + { + "sourceRange": [ + 35, + 60, + 0 + ] + } + ] + }, + "height": 10.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "edgeCuts": [ + { + "type": "fillet", + "id": "[uuid]", + "radius": 2.0, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 2.0, + "edgeId": "[uuid]", + "tag": null + } + ], + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 35, + 60, + 0 ] } - }, - "snapshots": [], - "parent": null + ] } - ], - "currentEnv": [ - 0, - 0 - ], - "callStack": [] + }, + "thing": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "thing", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 66, + 99, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 98, + "start": 92, + "type": "TagDeclarator", + "value": "thing" + }, + "to": [ + 0.0, + 10.0 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 66, + 99, + 0 + ], + "tag": { + "end": 98, + "start": 92, + "type": "TagDeclarator", + "value": "thing" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 92, + 98, + 0 + ] + } + ] + }, + "thing2": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "thing2", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 130, + 165, + 0 + ] + }, + "from": [ + 10.0, + 10.0 + ], + "tag": { + "end": 164, + "start": 157, + "type": "TagDeclarator", + "value": "thing2" + }, + "to": [ + 10.0, + 0.0 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 130, + 165, + 0 + ], + "tag": { + "end": 164, + "start": 157, + "type": "TagDeclarator", + "value": "thing2" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 157, + 164, + 0 + ] + } + ] + } } diff --git a/src/wasm-lib/kcl/tests/basic_fillet_cube_next_adjacent/program_memory.snap b/src/wasm-lib/kcl/tests/basic_fillet_cube_next_adjacent/program_memory.snap index 1d2c6605b..393d6330f 100644 --- a/src/wasm-lib/kcl/tests/basic_fillet_cube_next_adjacent/program_memory.snap +++ b/src/wasm-lib/kcl/tests/basic_fillet_cube_next_adjacent/program_memory.snap @@ -1,39 +1,288 @@ --- source: kcl/src/simulation_tests.rs -description: Program memory after executing basic_fillet_cube_next_adjacent.kcl +description: Variables in memory after executing basic_fillet_cube_next_adjacent.kcl --- { - "environments": [ - { - "bindings": { - "HALF_TURN": { - "type": "Number", - "value": 180.0, + "HALF_TURN": { + "type": "Number", + "value": 180.0, + "__meta": [] + }, + "QUARTER_TURN": { + "type": "Number", + "value": 90.0, + "__meta": [] + }, + "THREE_QUARTER_TURN": { + "type": "Number", + "value": 270.0, + "__meta": [] + }, + "ZERO": { + "type": "Number", + "value": 0.0, + "__meta": [] + }, + "part001": { + "type": "Solid", + "value": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 66, + 99, + 0 + ], + "tag": { + "end": 98, + "start": 92, + "type": "TagDeclarator", + "value": "thing" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 105, + 139, + 0 + ], + "tag": { + "end": 138, + "start": 131, + "type": "TagDeclarator", + "value": "thing1" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 180, + 0 + ], + "tag": { + "end": 179, + "start": 172, + "type": "TagDeclarator", + "value": "thing2" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 186, + 206, + 0 + ], + "tag": { + "end": 205, + "start": 198, + "type": "TagDeclarator", + "value": "thing3" + }, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 66, + 99, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 98, + "start": 92, + "type": "TagDeclarator", + "value": "thing" + }, + "to": [ + 0.0, + 10.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 105, + 139, + 0 + ] + }, + "from": [ + 0.0, + 10.0 + ], + "tag": { + "end": 138, + "start": 131, + "type": "TagDeclarator", + "value": "thing1" + }, + "to": [ + 10.0, + 10.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 180, + 0 + ] + }, + "from": [ + 10.0, + 10.0 + ], + "tag": { + "end": 179, + "start": 172, + "type": "TagDeclarator", + "value": "thing2" + }, + "to": [ + 10.0, + 0.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 186, + 206, + 0 + ] + }, + "from": [ + 10.0, + 0.0 + ], + "tag": { + "end": 205, + "start": 198, + "type": "TagDeclarator", + "value": "thing3" + }, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + }, "__meta": [] }, - "QUARTER_TURN": { - "type": "Number", - "value": 90.0, - "__meta": [] - }, - "THREE_QUARTER_TURN": { - "type": "Number", - "value": 270.0, - "__meta": [] - }, - "ZERO": { - "type": "Number", - "value": 0.0, - "__meta": [] - }, - "part001": { - "type": "Solid", - "value": { - "type": "Solid", + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { + "sourceRange": [ + 35, + 60, + 0 + ] + } + }, + "tags": { + "thing": { + "type": "TagIdentifier", + "value": "thing", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 66, + 99, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 98, + "start": 92, + "type": "TagDeclarator", + "value": "thing" + }, + "to": [ + 0.0, + 10.0 + ], + "type": "ToPoint" + }, + "surface": { "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ @@ -48,8 +297,51 @@ description: Program memory after executing basic_fillet_cube_next_adjacent.kcl "value": "thing" }, "type": "extrudePlane" - }, + } + }, + "__meta": [ { + "sourceRange": [ + 92, + 98, + 0 + ] + } + ] + }, + "thing1": { + "type": "TagIdentifier", + "value": "thing1", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 105, + 139, + 0 + ] + }, + "from": [ + 0.0, + 10.0 + ], + "tag": { + "end": 138, + "start": 131, + "type": "TagDeclarator", + "value": "thing1" + }, + "to": [ + 10.0, + 10.0 + ], + "type": "ToPoint" + }, + "surface": { "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ @@ -64,8 +356,51 @@ description: Program memory after executing basic_fillet_cube_next_adjacent.kcl "value": "thing1" }, "type": "extrudePlane" - }, + } + }, + "__meta": [ { + "sourceRange": [ + 131, + 138, + 0 + ] + } + ] + }, + "thing2": { + "type": "TagIdentifier", + "value": "thing2", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 180, + 0 + ] + }, + "from": [ + 10.0, + 10.0 + ], + "tag": { + "end": 179, + "start": 172, + "type": "TagDeclarator", + "value": "thing2" + }, + "to": [ + 10.0, + 0.0 + ], + "type": "ToPoint" + }, + "surface": { "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ @@ -80,8 +415,51 @@ description: Program memory after executing basic_fillet_cube_next_adjacent.kcl "value": "thing2" }, "type": "extrudePlane" - }, + } + }, + "__meta": [ { + "sourceRange": [ + 172, + 179, + 0 + ] + } + ] + }, + "thing3": { + "type": "TagIdentifier", + "value": "thing3", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 186, + 206, + 0 + ] + }, + "from": [ + 10.0, + 0.0 + ], + "tag": { + "end": 205, + "start": 198, + "type": "TagDeclarator", + "value": "thing3" + }, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + }, + "surface": { "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ @@ -97,688 +475,297 @@ description: Program memory after executing basic_fillet_cube_next_adjacent.kcl }, "type": "extrudePlane" } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 66, - 99, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": { - "end": 98, - "start": 92, - "type": "TagDeclarator", - "value": "thing" - }, - "to": [ - 0.0, - 10.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 105, - 139, - 0 - ] - }, - "from": [ - 0.0, - 10.0 - ], - "tag": { - "end": 138, - "start": 131, - "type": "TagDeclarator", - "value": "thing1" - }, - "to": [ - 10.0, - 10.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 180, - 0 - ] - }, - "from": [ - 10.0, - 10.0 - ], - "tag": { - "end": 179, - "start": 172, - "type": "TagDeclarator", - "value": "thing2" - }, - "to": [ - 10.0, - 0.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 186, - 206, - 0 - ] - }, - "from": [ - 10.0, - 0.0 - ], - "tag": { - "end": 205, - "start": 198, - "type": "TagDeclarator", - "value": "thing3" - }, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 35, - 60, - 0 - ] - } - }, - "tags": { - "thing": { - "type": "TagIdentifier", - "value": "thing", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 66, - 99, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": { - "end": 98, - "start": 92, - "type": "TagDeclarator", - "value": "thing" - }, - "to": [ - 0.0, - 10.0 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 66, - 99, - 0 - ], - "tag": { - "end": 98, - "start": 92, - "type": "TagDeclarator", - "value": "thing" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 92, - 98, - 0 - ] - } - ] - }, - "thing1": { - "type": "TagIdentifier", - "value": "thing1", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 105, - 139, - 0 - ] - }, - "from": [ - 0.0, - 10.0 - ], - "tag": { - "end": 138, - "start": 131, - "type": "TagDeclarator", - "value": "thing1" - }, - "to": [ - 10.0, - 10.0 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 105, - 139, - 0 - ], - "tag": { - "end": 138, - "start": 131, - "type": "TagDeclarator", - "value": "thing1" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 131, - 138, - 0 - ] - } - ] - }, - "thing2": { - "type": "TagIdentifier", - "value": "thing2", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 180, - 0 - ] - }, - "from": [ - 10.0, - 10.0 - ], - "tag": { - "end": 179, - "start": 172, - "type": "TagDeclarator", - "value": "thing2" - }, - "to": [ - 10.0, - 0.0 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 180, - 0 - ], - "tag": { - "end": 179, - "start": 172, - "type": "TagDeclarator", - "value": "thing2" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 172, - 179, - 0 - ] - } - ] - }, - "thing3": { - "type": "TagIdentifier", - "value": "thing3", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 186, - 206, - 0 - ] - }, - "from": [ - 10.0, - 0.0 - ], - "tag": { - "end": 205, - "start": 198, - "type": "TagDeclarator", - "value": "thing3" - }, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 186, - 206, - 0 - ], - "tag": { - "end": 205, - "start": 198, - "type": "TagDeclarator", - "value": "thing3" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 198, - 205, - 0 - ] - } - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 35, - 60, - 0 - ] - } - ] - }, - "height": 10.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "edgeCuts": [ - { - "type": "fillet", - "id": "[uuid]", - "radius": 2.0, - "edgeId": "[uuid]", - "tag": null - } - ], - "units": { - "type": "Mm" }, "__meta": [ { "sourceRange": [ - 35, - 60, + 198, + 205, 0 ] } ] } }, - "thing": { - "type": "TagIdentifier", - "type": "TagIdentifier", - "value": "thing", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 66, - 99, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": { - "end": 98, - "start": 92, - "type": "TagDeclarator", - "value": "thing" - }, - "to": [ - 0.0, - 10.0 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 66, - 99, - 0 - ], - "tag": { - "end": 98, - "start": 92, - "type": "TagDeclarator", - "value": "thing" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 92, - 98, - 0 - ] - } - ] + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" }, - "thing1": { - "type": "TagIdentifier", - "type": "TagIdentifier", - "value": "thing1", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 105, - 139, - 0 - ] - }, - "from": [ - 0.0, - 10.0 - ], - "tag": { - "end": 138, - "start": 131, - "type": "TagDeclarator", - "value": "thing1" - }, - "to": [ - 10.0, - 10.0 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 105, - 139, - 0 - ], - "tag": { - "end": 138, - "start": 131, - "type": "TagDeclarator", - "value": "thing1" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 131, - 138, - 0 - ] - } - ] - }, - "thing2": { - "type": "TagIdentifier", - "type": "TagIdentifier", - "value": "thing2", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 180, - 0 - ] - }, - "from": [ - 10.0, - 10.0 - ], - "tag": { - "end": 179, - "start": 172, - "type": "TagDeclarator", - "value": "thing2" - }, - "to": [ - 10.0, - 0.0 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 180, - 0 - ], - "tag": { - "end": 179, - "start": 172, - "type": "TagDeclarator", - "value": "thing2" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 172, - 179, - 0 - ] - } - ] - }, - "thing3": { - "type": "TagIdentifier", - "type": "TagIdentifier", - "value": "thing3", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 186, - 206, - 0 - ] - }, - "from": [ - 10.0, - 0.0 - ], - "tag": { - "end": 205, - "start": 198, - "type": "TagDeclarator", - "value": "thing3" - }, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 186, - 206, - 0 - ], - "tag": { - "end": 205, - "start": 198, - "type": "TagDeclarator", - "value": "thing3" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 198, - 205, - 0 - ] - } + "__meta": [ + { + "sourceRange": [ + 35, + 60, + 0 + ] + } + ] + }, + "height": 10.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "edgeCuts": [ + { + "type": "fillet", + "id": "[uuid]", + "radius": 2.0, + "edgeId": "[uuid]", + "tag": null + } + ], + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 35, + 60, + 0 ] } - }, - "snapshots": [], - "parent": null + ] } - ], - "currentEnv": [ - 0, - 0 - ], - "callStack": [] + }, + "thing": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "thing", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 66, + 99, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 98, + "start": 92, + "type": "TagDeclarator", + "value": "thing" + }, + "to": [ + 0.0, + 10.0 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 66, + 99, + 0 + ], + "tag": { + "end": 98, + "start": 92, + "type": "TagDeclarator", + "value": "thing" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 92, + 98, + 0 + ] + } + ] + }, + "thing1": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "thing1", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 105, + 139, + 0 + ] + }, + "from": [ + 0.0, + 10.0 + ], + "tag": { + "end": 138, + "start": 131, + "type": "TagDeclarator", + "value": "thing1" + }, + "to": [ + 10.0, + 10.0 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 105, + 139, + 0 + ], + "tag": { + "end": 138, + "start": 131, + "type": "TagDeclarator", + "value": "thing1" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 131, + 138, + 0 + ] + } + ] + }, + "thing2": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "thing2", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 180, + 0 + ] + }, + "from": [ + 10.0, + 10.0 + ], + "tag": { + "end": 179, + "start": 172, + "type": "TagDeclarator", + "value": "thing2" + }, + "to": [ + 10.0, + 0.0 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 180, + 0 + ], + "tag": { + "end": 179, + "start": 172, + "type": "TagDeclarator", + "value": "thing2" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 172, + 179, + 0 + ] + } + ] + }, + "thing3": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "thing3", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 186, + 206, + 0 + ] + }, + "from": [ + 10.0, + 0.0 + ], + "tag": { + "end": 205, + "start": 198, + "type": "TagDeclarator", + "value": "thing3" + }, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 186, + 206, + 0 + ], + "tag": { + "end": 205, + "start": 198, + "type": "TagDeclarator", + "value": "thing3" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 198, + 205, + 0 + ] + } + ] + } } diff --git a/src/wasm-lib/kcl/tests/basic_fillet_cube_previous_adjacent/program_memory.snap b/src/wasm-lib/kcl/tests/basic_fillet_cube_previous_adjacent/program_memory.snap index 96712d2c2..b6655029e 100644 --- a/src/wasm-lib/kcl/tests/basic_fillet_cube_previous_adjacent/program_memory.snap +++ b/src/wasm-lib/kcl/tests/basic_fillet_cube_previous_adjacent/program_memory.snap @@ -1,39 +1,288 @@ --- source: kcl/src/simulation_tests.rs -description: Program memory after executing basic_fillet_cube_previous_adjacent.kcl +description: Variables in memory after executing basic_fillet_cube_previous_adjacent.kcl --- { - "environments": [ - { - "bindings": { - "HALF_TURN": { - "type": "Number", - "value": 180.0, + "HALF_TURN": { + "type": "Number", + "value": 180.0, + "__meta": [] + }, + "QUARTER_TURN": { + "type": "Number", + "value": 90.0, + "__meta": [] + }, + "THREE_QUARTER_TURN": { + "type": "Number", + "value": 270.0, + "__meta": [] + }, + "ZERO": { + "type": "Number", + "value": 0.0, + "__meta": [] + }, + "part001": { + "type": "Solid", + "value": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 66, + 99, + 0 + ], + "tag": { + "end": 98, + "start": 92, + "type": "TagDeclarator", + "value": "thing" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 105, + 139, + 0 + ], + "tag": { + "end": 138, + "start": 131, + "type": "TagDeclarator", + "value": "thing1" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 180, + 0 + ], + "tag": { + "end": 179, + "start": 172, + "type": "TagDeclarator", + "value": "thing2" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 186, + 206, + 0 + ], + "tag": { + "end": 205, + "start": 198, + "type": "TagDeclarator", + "value": "thing3" + }, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 66, + 99, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 98, + "start": 92, + "type": "TagDeclarator", + "value": "thing" + }, + "to": [ + 0.0, + 10.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 105, + 139, + 0 + ] + }, + "from": [ + 0.0, + 10.0 + ], + "tag": { + "end": 138, + "start": 131, + "type": "TagDeclarator", + "value": "thing1" + }, + "to": [ + 10.0, + 10.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 180, + 0 + ] + }, + "from": [ + 10.0, + 10.0 + ], + "tag": { + "end": 179, + "start": 172, + "type": "TagDeclarator", + "value": "thing2" + }, + "to": [ + 10.0, + 0.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 186, + 206, + 0 + ] + }, + "from": [ + 10.0, + 0.0 + ], + "tag": { + "end": 205, + "start": 198, + "type": "TagDeclarator", + "value": "thing3" + }, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + }, "__meta": [] }, - "QUARTER_TURN": { - "type": "Number", - "value": 90.0, - "__meta": [] - }, - "THREE_QUARTER_TURN": { - "type": "Number", - "value": 270.0, - "__meta": [] - }, - "ZERO": { - "type": "Number", - "value": 0.0, - "__meta": [] - }, - "part001": { - "type": "Solid", - "value": { - "type": "Solid", + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { + "sourceRange": [ + 35, + 60, + 0 + ] + } + }, + "tags": { + "thing": { + "type": "TagIdentifier", + "value": "thing", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 66, + 99, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 98, + "start": 92, + "type": "TagDeclarator", + "value": "thing" + }, + "to": [ + 0.0, + 10.0 + ], + "type": "ToPoint" + }, + "surface": { "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ @@ -48,8 +297,51 @@ description: Program memory after executing basic_fillet_cube_previous_adjacent. "value": "thing" }, "type": "extrudePlane" - }, + } + }, + "__meta": [ { + "sourceRange": [ + 92, + 98, + 0 + ] + } + ] + }, + "thing1": { + "type": "TagIdentifier", + "value": "thing1", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 105, + 139, + 0 + ] + }, + "from": [ + 0.0, + 10.0 + ], + "tag": { + "end": 138, + "start": 131, + "type": "TagDeclarator", + "value": "thing1" + }, + "to": [ + 10.0, + 10.0 + ], + "type": "ToPoint" + }, + "surface": { "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ @@ -64,8 +356,51 @@ description: Program memory after executing basic_fillet_cube_previous_adjacent. "value": "thing1" }, "type": "extrudePlane" - }, + } + }, + "__meta": [ { + "sourceRange": [ + 131, + 138, + 0 + ] + } + ] + }, + "thing2": { + "type": "TagIdentifier", + "value": "thing2", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 180, + 0 + ] + }, + "from": [ + 10.0, + 10.0 + ], + "tag": { + "end": 179, + "start": 172, + "type": "TagDeclarator", + "value": "thing2" + }, + "to": [ + 10.0, + 0.0 + ], + "type": "ToPoint" + }, + "surface": { "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ @@ -80,8 +415,51 @@ description: Program memory after executing basic_fillet_cube_previous_adjacent. "value": "thing2" }, "type": "extrudePlane" - }, + } + }, + "__meta": [ { + "sourceRange": [ + 172, + 179, + 0 + ] + } + ] + }, + "thing3": { + "type": "TagIdentifier", + "value": "thing3", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 186, + 206, + 0 + ] + }, + "from": [ + 10.0, + 0.0 + ], + "tag": { + "end": 205, + "start": 198, + "type": "TagDeclarator", + "value": "thing3" + }, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + }, + "surface": { "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ @@ -97,688 +475,297 @@ description: Program memory after executing basic_fillet_cube_previous_adjacent. }, "type": "extrudePlane" } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 66, - 99, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": { - "end": 98, - "start": 92, - "type": "TagDeclarator", - "value": "thing" - }, - "to": [ - 0.0, - 10.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 105, - 139, - 0 - ] - }, - "from": [ - 0.0, - 10.0 - ], - "tag": { - "end": 138, - "start": 131, - "type": "TagDeclarator", - "value": "thing1" - }, - "to": [ - 10.0, - 10.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 180, - 0 - ] - }, - "from": [ - 10.0, - 10.0 - ], - "tag": { - "end": 179, - "start": 172, - "type": "TagDeclarator", - "value": "thing2" - }, - "to": [ - 10.0, - 0.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 186, - 206, - 0 - ] - }, - "from": [ - 10.0, - 0.0 - ], - "tag": { - "end": 205, - "start": 198, - "type": "TagDeclarator", - "value": "thing3" - }, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 35, - 60, - 0 - ] - } - }, - "tags": { - "thing": { - "type": "TagIdentifier", - "value": "thing", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 66, - 99, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": { - "end": 98, - "start": 92, - "type": "TagDeclarator", - "value": "thing" - }, - "to": [ - 0.0, - 10.0 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 66, - 99, - 0 - ], - "tag": { - "end": 98, - "start": 92, - "type": "TagDeclarator", - "value": "thing" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 92, - 98, - 0 - ] - } - ] - }, - "thing1": { - "type": "TagIdentifier", - "value": "thing1", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 105, - 139, - 0 - ] - }, - "from": [ - 0.0, - 10.0 - ], - "tag": { - "end": 138, - "start": 131, - "type": "TagDeclarator", - "value": "thing1" - }, - "to": [ - 10.0, - 10.0 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 105, - 139, - 0 - ], - "tag": { - "end": 138, - "start": 131, - "type": "TagDeclarator", - "value": "thing1" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 131, - 138, - 0 - ] - } - ] - }, - "thing2": { - "type": "TagIdentifier", - "value": "thing2", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 180, - 0 - ] - }, - "from": [ - 10.0, - 10.0 - ], - "tag": { - "end": 179, - "start": 172, - "type": "TagDeclarator", - "value": "thing2" - }, - "to": [ - 10.0, - 0.0 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 180, - 0 - ], - "tag": { - "end": 179, - "start": 172, - "type": "TagDeclarator", - "value": "thing2" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 172, - 179, - 0 - ] - } - ] - }, - "thing3": { - "type": "TagIdentifier", - "value": "thing3", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 186, - 206, - 0 - ] - }, - "from": [ - 10.0, - 0.0 - ], - "tag": { - "end": 205, - "start": 198, - "type": "TagDeclarator", - "value": "thing3" - }, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 186, - 206, - 0 - ], - "tag": { - "end": 205, - "start": 198, - "type": "TagDeclarator", - "value": "thing3" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 198, - 205, - 0 - ] - } - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 35, - 60, - 0 - ] - } - ] - }, - "height": 10.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "edgeCuts": [ - { - "type": "fillet", - "id": "[uuid]", - "radius": 2.0, - "edgeId": "[uuid]", - "tag": null - } - ], - "units": { - "type": "Mm" }, "__meta": [ { "sourceRange": [ - 35, - 60, + 198, + 205, 0 ] } ] } }, - "thing": { - "type": "TagIdentifier", - "type": "TagIdentifier", - "value": "thing", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 66, - 99, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": { - "end": 98, - "start": 92, - "type": "TagDeclarator", - "value": "thing" - }, - "to": [ - 0.0, - 10.0 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 66, - 99, - 0 - ], - "tag": { - "end": 98, - "start": 92, - "type": "TagDeclarator", - "value": "thing" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 92, - 98, - 0 - ] - } - ] + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" }, - "thing1": { - "type": "TagIdentifier", - "type": "TagIdentifier", - "value": "thing1", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 105, - 139, - 0 - ] - }, - "from": [ - 0.0, - 10.0 - ], - "tag": { - "end": 138, - "start": 131, - "type": "TagDeclarator", - "value": "thing1" - }, - "to": [ - 10.0, - 10.0 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 105, - 139, - 0 - ], - "tag": { - "end": 138, - "start": 131, - "type": "TagDeclarator", - "value": "thing1" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 131, - 138, - 0 - ] - } - ] - }, - "thing2": { - "type": "TagIdentifier", - "type": "TagIdentifier", - "value": "thing2", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 180, - 0 - ] - }, - "from": [ - 10.0, - 10.0 - ], - "tag": { - "end": 179, - "start": 172, - "type": "TagDeclarator", - "value": "thing2" - }, - "to": [ - 10.0, - 0.0 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 180, - 0 - ], - "tag": { - "end": 179, - "start": 172, - "type": "TagDeclarator", - "value": "thing2" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 172, - 179, - 0 - ] - } - ] - }, - "thing3": { - "type": "TagIdentifier", - "type": "TagIdentifier", - "value": "thing3", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 186, - 206, - 0 - ] - }, - "from": [ - 10.0, - 0.0 - ], - "tag": { - "end": 205, - "start": 198, - "type": "TagDeclarator", - "value": "thing3" - }, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 186, - 206, - 0 - ], - "tag": { - "end": 205, - "start": 198, - "type": "TagDeclarator", - "value": "thing3" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 198, - 205, - 0 - ] - } + "__meta": [ + { + "sourceRange": [ + 35, + 60, + 0 + ] + } + ] + }, + "height": 10.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "edgeCuts": [ + { + "type": "fillet", + "id": "[uuid]", + "radius": 2.0, + "edgeId": "[uuid]", + "tag": null + } + ], + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 35, + 60, + 0 ] } - }, - "snapshots": [], - "parent": null + ] } - ], - "currentEnv": [ - 0, - 0 - ], - "callStack": [] + }, + "thing": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "thing", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 66, + 99, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 98, + "start": 92, + "type": "TagDeclarator", + "value": "thing" + }, + "to": [ + 0.0, + 10.0 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 66, + 99, + 0 + ], + "tag": { + "end": 98, + "start": 92, + "type": "TagDeclarator", + "value": "thing" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 92, + 98, + 0 + ] + } + ] + }, + "thing1": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "thing1", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 105, + 139, + 0 + ] + }, + "from": [ + 0.0, + 10.0 + ], + "tag": { + "end": 138, + "start": 131, + "type": "TagDeclarator", + "value": "thing1" + }, + "to": [ + 10.0, + 10.0 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 105, + 139, + 0 + ], + "tag": { + "end": 138, + "start": 131, + "type": "TagDeclarator", + "value": "thing1" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 131, + 138, + 0 + ] + } + ] + }, + "thing2": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "thing2", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 180, + 0 + ] + }, + "from": [ + 10.0, + 10.0 + ], + "tag": { + "end": 179, + "start": 172, + "type": "TagDeclarator", + "value": "thing2" + }, + "to": [ + 10.0, + 0.0 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 180, + 0 + ], + "tag": { + "end": 179, + "start": 172, + "type": "TagDeclarator", + "value": "thing2" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 172, + 179, + 0 + ] + } + ] + }, + "thing3": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "thing3", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 186, + 206, + 0 + ] + }, + "from": [ + 10.0, + 0.0 + ], + "tag": { + "end": 205, + "start": 198, + "type": "TagDeclarator", + "value": "thing3" + }, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 186, + 206, + 0 + ], + "tag": { + "end": 205, + "start": 198, + "type": "TagDeclarator", + "value": "thing3" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 198, + 205, + 0 + ] + } + ] + } } diff --git a/src/wasm-lib/kcl/tests/basic_fillet_cube_start/program_memory.snap b/src/wasm-lib/kcl/tests/basic_fillet_cube_start/program_memory.snap index 433d49e72..8cf7a5318 100644 --- a/src/wasm-lib/kcl/tests/basic_fillet_cube_start/program_memory.snap +++ b/src/wasm-lib/kcl/tests/basic_fillet_cube_start/program_memory.snap @@ -1,39 +1,268 @@ --- source: kcl/src/simulation_tests.rs -description: Program memory after executing basic_fillet_cube_start.kcl +description: Variables in memory after executing basic_fillet_cube_start.kcl --- { - "environments": [ - { - "bindings": { - "HALF_TURN": { - "type": "Number", - "value": 180.0, + "HALF_TURN": { + "type": "Number", + "value": 180.0, + "__meta": [] + }, + "QUARTER_TURN": { + "type": "Number", + "value": 90.0, + "__meta": [] + }, + "THREE_QUARTER_TURN": { + "type": "Number", + "value": 270.0, + "__meta": [] + }, + "ZERO": { + "type": "Number", + "value": 0.0, + "__meta": [] + }, + "part001": { + "type": "Solid", + "value": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 66, + 99, + 0 + ], + "tag": { + "end": 98, + "start": 92, + "type": "TagDeclarator", + "value": "thing" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 105, + 124, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 130, + 165, + 0 + ], + "tag": { + "end": 164, + "start": 157, + "type": "TagDeclarator", + "value": "thing2" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 171, + 179, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 66, + 99, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 98, + "start": 92, + "type": "TagDeclarator", + "value": "thing" + }, + "to": [ + 0.0, + 10.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 105, + 124, + 0 + ] + }, + "from": [ + 0.0, + 10.0 + ], + "tag": null, + "to": [ + 10.0, + 10.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 130, + 165, + 0 + ] + }, + "from": [ + 10.0, + 10.0 + ], + "tag": { + "end": 164, + "start": 157, + "type": "TagDeclarator", + "value": "thing2" + }, + "to": [ + 10.0, + 0.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 171, + 179, + 0 + ] + }, + "from": [ + 10.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + }, "__meta": [] }, - "QUARTER_TURN": { - "type": "Number", - "value": 90.0, - "__meta": [] - }, - "THREE_QUARTER_TURN": { - "type": "Number", - "value": 270.0, - "__meta": [] - }, - "ZERO": { - "type": "Number", - "value": 0.0, - "__meta": [] - }, - "part001": { - "type": "Solid", - "value": { - "type": "Solid", + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { + "sourceRange": [ + 35, + 60, + 0 + ] + } + }, + "tags": { + "thing": { + "type": "TagIdentifier", + "value": "thing", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 66, + 99, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 98, + "start": 92, + "type": "TagDeclarator", + "value": "thing" + }, + "to": [ + 0.0, + 10.0 + ], + "type": "ToPoint" + }, + "surface": { "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ @@ -48,19 +277,51 @@ description: Program memory after executing basic_fillet_cube_start.kcl "value": "thing" }, "type": "extrudePlane" - }, + } + }, + "__meta": [ { - "faceId": "[uuid]", - "id": "[uuid]", "sourceRange": [ - 105, - 124, + 92, + 98, 0 + ] + } + ] + }, + "thing2": { + "type": "TagIdentifier", + "value": "thing2", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 130, + 165, + 0 + ] + }, + "from": [ + 10.0, + 10.0 ], - "tag": null, - "type": "extrudePlane" + "tag": { + "end": 164, + "start": 157, + "type": "TagDeclarator", + "value": "thing2" + }, + "to": [ + 10.0, + 0.0 + ], + "type": "ToPoint" }, - { + "surface": { "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ @@ -75,459 +336,185 @@ description: Program memory after executing basic_fillet_cube_start.kcl "value": "thing2" }, "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 171, - 179, - 0 - ], - "tag": null, - "type": "extrudePlane" } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 66, - 99, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": { - "end": 98, - "start": 92, - "type": "TagDeclarator", - "value": "thing" - }, - "to": [ - 0.0, - 10.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 105, - 124, - 0 - ] - }, - "from": [ - 0.0, - 10.0 - ], - "tag": null, - "to": [ - 10.0, - 10.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 130, - 165, - 0 - ] - }, - "from": [ - 10.0, - 10.0 - ], - "tag": { - "end": 164, - "start": 157, - "type": "TagDeclarator", - "value": "thing2" - }, - "to": [ - 10.0, - 0.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 171, - 179, - 0 - ] - }, - "from": [ - 10.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 35, - 60, - 0 - ] - } - }, - "tags": { - "thing": { - "type": "TagIdentifier", - "value": "thing", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 66, - 99, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": { - "end": 98, - "start": 92, - "type": "TagDeclarator", - "value": "thing" - }, - "to": [ - 0.0, - 10.0 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 66, - 99, - 0 - ], - "tag": { - "end": 98, - "start": 92, - "type": "TagDeclarator", - "value": "thing" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 92, - 98, - 0 - ] - } - ] - }, - "thing2": { - "type": "TagIdentifier", - "value": "thing2", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 130, - 165, - 0 - ] - }, - "from": [ - 10.0, - 10.0 - ], - "tag": { - "end": 164, - "start": 157, - "type": "TagDeclarator", - "value": "thing2" - }, - "to": [ - 10.0, - 0.0 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 130, - 165, - 0 - ], - "tag": { - "end": 164, - "start": 157, - "type": "TagDeclarator", - "value": "thing2" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 157, - 164, - 0 - ] - } - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 35, - 60, - 0 - ] - } - ] - }, - "height": 10.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "edgeCuts": [ - { - "type": "fillet", - "id": "[uuid]", - "radius": 2.0, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 2.0, - "edgeId": "[uuid]", - "tag": null - } - ], - "units": { - "type": "Mm" }, "__meta": [ { "sourceRange": [ - 35, - 60, + 157, + 164, 0 ] } ] } }, - "thing": { - "type": "TagIdentifier", - "type": "TagIdentifier", - "value": "thing", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 66, - 99, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": { - "end": 98, - "start": 92, - "type": "TagDeclarator", - "value": "thing" - }, - "to": [ - 0.0, - 10.0 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 66, - 99, - 0 - ], - "tag": { - "end": 98, - "start": 92, - "type": "TagDeclarator", - "value": "thing" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 92, - 98, - 0 - ] - } - ] + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" }, - "thing2": { - "type": "TagIdentifier", - "type": "TagIdentifier", - "value": "thing2", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 130, - 165, - 0 - ] - }, - "from": [ - 10.0, - 10.0 - ], - "tag": { - "end": 164, - "start": 157, - "type": "TagDeclarator", - "value": "thing2" - }, - "to": [ - 10.0, - 0.0 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 130, - 165, - 0 - ], - "tag": { - "end": 164, - "start": 157, - "type": "TagDeclarator", - "value": "thing2" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 157, - 164, - 0 - ] - } + "__meta": [ + { + "sourceRange": [ + 35, + 60, + 0 + ] + } + ] + }, + "height": 10.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "edgeCuts": [ + { + "type": "fillet", + "id": "[uuid]", + "radius": 2.0, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 2.0, + "edgeId": "[uuid]", + "tag": null + } + ], + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 35, + 60, + 0 ] } - }, - "snapshots": [], - "parent": null + ] } - ], - "currentEnv": [ - 0, - 0 - ], - "callStack": [] + }, + "thing": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "thing", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 66, + 99, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 98, + "start": 92, + "type": "TagDeclarator", + "value": "thing" + }, + "to": [ + 0.0, + 10.0 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 66, + 99, + 0 + ], + "tag": { + "end": 98, + "start": 92, + "type": "TagDeclarator", + "value": "thing" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 92, + 98, + 0 + ] + } + ] + }, + "thing2": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "thing2", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 130, + 165, + 0 + ] + }, + "from": [ + 10.0, + 10.0 + ], + "tag": { + "end": 164, + "start": 157, + "type": "TagDeclarator", + "value": "thing2" + }, + "to": [ + 10.0, + 0.0 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 130, + 165, + 0 + ], + "tag": { + "end": 164, + "start": 157, + "type": "TagDeclarator", + "value": "thing2" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 157, + 164, + 0 + ] + } + ] + } } diff --git a/src/wasm-lib/kcl/tests/big_number_angle_to_match_length_x/program_memory.snap b/src/wasm-lib/kcl/tests/big_number_angle_to_match_length_x/program_memory.snap index fa8f472f0..a1dc49985 100644 --- a/src/wasm-lib/kcl/tests/big_number_angle_to_match_length_x/program_memory.snap +++ b/src/wasm-lib/kcl/tests/big_number_angle_to_match_length_x/program_memory.snap @@ -1,39 +1,227 @@ --- source: kcl/src/simulation_tests.rs -description: Program memory after executing big_number_angle_to_match_length_x.kcl +description: Variables in memory after executing big_number_angle_to_match_length_x.kcl --- { - "environments": [ - { - "bindings": { - "HALF_TURN": { - "type": "Number", - "value": 180.0, + "HALF_TURN": { + "type": "Number", + "value": 180.0, + "__meta": [] + }, + "QUARTER_TURN": { + "type": "Number", + "value": 90.0, + "__meta": [] + }, + "THREE_QUARTER_TURN": { + "type": "Number", + "value": 270.0, + "__meta": [] + }, + "ZERO": { + "type": "Number", + "value": 0.0, + "__meta": [] + }, + "part001": { + "type": "Solid", + "value": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 66, + 101, + 0 + ], + "tag": { + "end": 100, + "start": 94, + "type": "TagDeclarator", + "value": "seg01" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 107, + 163, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 169, + 177, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 66, + 101, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 100, + "start": 94, + "type": "TagDeclarator", + "value": "seg01" + }, + "to": [ + 1.0, + 3.82 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 107, + 163, + 0 + ] + }, + "from": [ + 1.0, + 3.82 + ], + "tag": null, + "to": [ + 3.0, + 0.4152 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 169, + 177, + 0 + ] + }, + "from": [ + 3.0, + 0.4152 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + }, "__meta": [] }, - "QUARTER_TURN": { - "type": "Number", - "value": 90.0, - "__meta": [] - }, - "THREE_QUARTER_TURN": { - "type": "Number", - "value": 270.0, - "__meta": [] - }, - "ZERO": { - "type": "Number", - "value": 0.0, - "__meta": [] - }, - "part001": { - "type": "Solid", - "value": { - "type": "Solid", + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { + "sourceRange": [ + 35, + 60, + 0 + ] + } + }, + "tags": { + "seg01": { + "type": "TagIdentifier", + "value": "seg01", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 66, + 101, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 100, + "start": 94, + "type": "TagDeclarator", + "value": "seg01" + }, + "to": [ + 1.0, + 3.82 + ], + "type": "ToPoint" + }, + "surface": { "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ @@ -48,310 +236,109 @@ description: Program memory after executing big_number_angle_to_match_length_x.k "value": "seg01" }, "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 107, - 163, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 169, - 177, - 0 - ], - "tag": null, - "type": "extrudePlane" } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 66, - 101, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": { - "end": 100, - "start": 94, - "type": "TagDeclarator", - "value": "seg01" - }, - "to": [ - 1.0, - 3.82 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 107, - 163, - 0 - ] - }, - "from": [ - 1.0, - 3.82 - ], - "tag": null, - "to": [ - 3.0, - 0.4152 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 169, - 177, - 0 - ] - }, - "from": [ - 3.0, - 0.4152 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 35, - 60, - 0 - ] - } - }, - "tags": { - "seg01": { - "type": "TagIdentifier", - "value": "seg01", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 66, - 101, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": { - "end": 100, - "start": 94, - "type": "TagDeclarator", - "value": "seg01" - }, - "to": [ - 1.0, - 3.82 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 66, - 101, - 0 - ], - "tag": { - "end": 100, - "start": 94, - "type": "TagDeclarator", - "value": "seg01" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 94, - 100, - 0 - ] - } - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 35, - 60, - 0 - ] - } - ] - }, - "height": 10.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" }, "__meta": [ { "sourceRange": [ - 35, - 60, + 94, + 100, 0 ] } ] } }, - "seg01": { - "type": "TagIdentifier", - "type": "TagIdentifier", - "value": "seg01", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 66, - 101, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": { - "end": 100, - "start": 94, - "type": "TagDeclarator", - "value": "seg01" - }, - "to": [ - 1.0, - 3.82 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 66, - 101, - 0 - ], - "tag": { - "end": 100, - "start": 94, - "type": "TagDeclarator", - "value": "seg01" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 94, - 100, - 0 - ] - } + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 35, + 60, + 0 + ] + } + ] + }, + "height": 10.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 35, + 60, + 0 ] } - }, - "snapshots": [], - "parent": null + ] } - ], - "currentEnv": [ - 0, - 0 - ], - "callStack": [] + }, + "seg01": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "seg01", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 66, + 101, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 100, + "start": 94, + "type": "TagDeclarator", + "value": "seg01" + }, + "to": [ + 1.0, + 3.82 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 66, + 101, + 0 + ], + "tag": { + "end": 100, + "start": 94, + "type": "TagDeclarator", + "value": "seg01" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 94, + 100, + 0 + ] + } + ] + } } diff --git a/src/wasm-lib/kcl/tests/big_number_angle_to_match_length_y/program_memory.snap b/src/wasm-lib/kcl/tests/big_number_angle_to_match_length_y/program_memory.snap index 4f70793ce..8f8f0f068 100644 --- a/src/wasm-lib/kcl/tests/big_number_angle_to_match_length_y/program_memory.snap +++ b/src/wasm-lib/kcl/tests/big_number_angle_to_match_length_y/program_memory.snap @@ -1,39 +1,227 @@ --- source: kcl/src/simulation_tests.rs -description: Program memory after executing big_number_angle_to_match_length_y.kcl +description: Variables in memory after executing big_number_angle_to_match_length_y.kcl --- { - "environments": [ - { - "bindings": { - "HALF_TURN": { - "type": "Number", - "value": 180.0, + "HALF_TURN": { + "type": "Number", + "value": 180.0, + "__meta": [] + }, + "QUARTER_TURN": { + "type": "Number", + "value": 90.0, + "__meta": [] + }, + "THREE_QUARTER_TURN": { + "type": "Number", + "value": 270.0, + "__meta": [] + }, + "ZERO": { + "type": "Number", + "value": 0.0, + "__meta": [] + }, + "part001": { + "type": "Solid", + "value": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 66, + 101, + 0 + ], + "tag": { + "end": 100, + "start": 94, + "type": "TagDeclarator", + "value": "seg01" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 107, + 163, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 169, + 177, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 66, + 101, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 100, + "start": 94, + "type": "TagDeclarator", + "value": "seg01" + }, + "to": [ + 1.0, + 3.82 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 107, + 163, + 0 + ] + }, + "from": [ + 1.0, + 3.82 + ], + "tag": null, + "to": [ + 3.0, + 3.3954 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 169, + 177, + 0 + ] + }, + "from": [ + 3.0, + 3.3954 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + }, "__meta": [] }, - "QUARTER_TURN": { - "type": "Number", - "value": 90.0, - "__meta": [] - }, - "THREE_QUARTER_TURN": { - "type": "Number", - "value": 270.0, - "__meta": [] - }, - "ZERO": { - "type": "Number", - "value": 0.0, - "__meta": [] - }, - "part001": { - "type": "Solid", - "value": { - "type": "Solid", + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { + "sourceRange": [ + 35, + 60, + 0 + ] + } + }, + "tags": { + "seg01": { + "type": "TagIdentifier", + "value": "seg01", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 66, + 101, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 100, + "start": 94, + "type": "TagDeclarator", + "value": "seg01" + }, + "to": [ + 1.0, + 3.82 + ], + "type": "ToPoint" + }, + "surface": { "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ @@ -48,310 +236,109 @@ description: Program memory after executing big_number_angle_to_match_length_y.k "value": "seg01" }, "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 107, - 163, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 169, - 177, - 0 - ], - "tag": null, - "type": "extrudePlane" } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 66, - 101, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": { - "end": 100, - "start": 94, - "type": "TagDeclarator", - "value": "seg01" - }, - "to": [ - 1.0, - 3.82 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 107, - 163, - 0 - ] - }, - "from": [ - 1.0, - 3.82 - ], - "tag": null, - "to": [ - 3.0, - 3.3954 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 169, - 177, - 0 - ] - }, - "from": [ - 3.0, - 3.3954 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 35, - 60, - 0 - ] - } - }, - "tags": { - "seg01": { - "type": "TagIdentifier", - "value": "seg01", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 66, - 101, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": { - "end": 100, - "start": 94, - "type": "TagDeclarator", - "value": "seg01" - }, - "to": [ - 1.0, - 3.82 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 66, - 101, - 0 - ], - "tag": { - "end": 100, - "start": 94, - "type": "TagDeclarator", - "value": "seg01" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 94, - 100, - 0 - ] - } - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 35, - 60, - 0 - ] - } - ] - }, - "height": 10.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" }, "__meta": [ { "sourceRange": [ - 35, - 60, + 94, + 100, 0 ] } ] } }, - "seg01": { - "type": "TagIdentifier", - "type": "TagIdentifier", - "value": "seg01", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 66, - 101, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": { - "end": 100, - "start": 94, - "type": "TagDeclarator", - "value": "seg01" - }, - "to": [ - 1.0, - 3.82 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 66, - 101, - 0 - ], - "tag": { - "end": 100, - "start": 94, - "type": "TagDeclarator", - "value": "seg01" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 94, - 100, - 0 - ] - } + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 35, + 60, + 0 + ] + } + ] + }, + "height": 10.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 35, + 60, + 0 ] } - }, - "snapshots": [], - "parent": null + ] } - ], - "currentEnv": [ - 0, - 0 - ], - "callStack": [] + }, + "seg01": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "seg01", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 66, + 101, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 100, + "start": 94, + "type": "TagDeclarator", + "value": "seg01" + }, + "to": [ + 1.0, + 3.82 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 66, + 101, + 0 + ], + "tag": { + "end": 100, + "start": 94, + "type": "TagDeclarator", + "value": "seg01" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 94, + 100, + 0 + ] + } + ] + } } diff --git a/src/wasm-lib/kcl/tests/boolean_logical_and/program_memory.snap b/src/wasm-lib/kcl/tests/boolean_logical_and/program_memory.snap index 107d8936d..9026e8644 100644 --- a/src/wasm-lib/kcl/tests/boolean_logical_and/program_memory.snap +++ b/src/wasm-lib/kcl/tests/boolean_logical_and/program_memory.snap @@ -1,171 +1,158 @@ --- source: kcl/src/simulation_tests.rs -description: Program memory after executing boolean_logical_and.kcl +description: Variables in memory after executing boolean_logical_and.kcl --- { - "environments": [ - { - "bindings": { - "HALF_TURN": { - "type": "Number", - "value": 180.0, - "__meta": [] - }, - "QUARTER_TURN": { - "type": "Number", - "value": 90.0, - "__meta": [] - }, - "THREE_QUARTER_TURN": { - "type": "Number", - "value": 270.0, - "__meta": [] - }, - "ZERO": { - "type": "Number", - "value": 0.0, - "__meta": [] - }, - "a": { - "type": "Number", - "value": 2.0, - "__meta": [ - { - "sourceRange": [ - 45, - 46, - 0 - ] - } - ] - }, - "aa": { - "type": "Bool", - "value": false, - "__meta": [ - { - "sourceRange": [ - 5, - 9, - 0 - ] - }, - { - "sourceRange": [ - 12, - 17, - 0 - ] - } - ] - }, - "b": { - "type": "Number", - "value": 2.0, - "__meta": [ - { - "sourceRange": [ - 175, - 176, - 0 - ] - } - ] - }, - "bb": { - "type": "Bool", - "value": false, - "__meta": [ - { - "sourceRange": [ - 135, - 140, - 0 - ] - }, - { - "sourceRange": [ - 143, - 147, - 0 - ] - } - ] - }, - "c": { - "type": "Number", - "value": 1.0, - "__meta": [ - { - "sourceRange": [ - 290, - 291, - 0 - ] - } - ] - }, - "cc": { - "type": "Bool", - "value": true, - "__meta": [ - { - "sourceRange": [ - 264, - 268, - 0 - ] - }, - { - "sourceRange": [ - 271, - 275, - 0 - ] - } - ] - }, - "d": { - "type": "Number", - "value": 2.0, - "__meta": [ - { - "sourceRange": [ - 434, - 435, - 0 - ] - } - ] - }, - "dd": { - "type": "Bool", - "value": false, - "__meta": [ - { - "sourceRange": [ - 393, - 398, - 0 - ] - }, - { - "sourceRange": [ - 401, - 406, - 0 - ] - } - ] - } + "HALF_TURN": { + "type": "Number", + "value": 180.0, + "__meta": [] + }, + "QUARTER_TURN": { + "type": "Number", + "value": 90.0, + "__meta": [] + }, + "THREE_QUARTER_TURN": { + "type": "Number", + "value": 270.0, + "__meta": [] + }, + "ZERO": { + "type": "Number", + "value": 0.0, + "__meta": [] + }, + "a": { + "type": "Number", + "value": 2.0, + "__meta": [ + { + "sourceRange": [ + 45, + 46, + 0 + ] + } + ] + }, + "aa": { + "type": "Bool", + "value": false, + "__meta": [ + { + "sourceRange": [ + 5, + 9, + 0 + ] }, - "snapshots": [], - "parent": null - } - ], - "currentEnv": [ - 0, - 0 - ], - "callStack": [] + { + "sourceRange": [ + 12, + 17, + 0 + ] + } + ] + }, + "b": { + "type": "Number", + "value": 2.0, + "__meta": [ + { + "sourceRange": [ + 175, + 176, + 0 + ] + } + ] + }, + "bb": { + "type": "Bool", + "value": false, + "__meta": [ + { + "sourceRange": [ + 135, + 140, + 0 + ] + }, + { + "sourceRange": [ + 143, + 147, + 0 + ] + } + ] + }, + "c": { + "type": "Number", + "value": 1.0, + "__meta": [ + { + "sourceRange": [ + 290, + 291, + 0 + ] + } + ] + }, + "cc": { + "type": "Bool", + "value": true, + "__meta": [ + { + "sourceRange": [ + 264, + 268, + 0 + ] + }, + { + "sourceRange": [ + 271, + 275, + 0 + ] + } + ] + }, + "d": { + "type": "Number", + "value": 2.0, + "__meta": [ + { + "sourceRange": [ + 434, + 435, + 0 + ] + } + ] + }, + "dd": { + "type": "Bool", + "value": false, + "__meta": [ + { + "sourceRange": [ + 393, + 398, + 0 + ] + }, + { + "sourceRange": [ + 401, + 406, + 0 + ] + } + ] + } } diff --git a/src/wasm-lib/kcl/tests/boolean_logical_multiple/program_memory.snap b/src/wasm-lib/kcl/tests/boolean_logical_multiple/program_memory.snap index 4a3392c3a..8f5b9e4b6 100644 --- a/src/wasm-lib/kcl/tests/boolean_logical_multiple/program_memory.snap +++ b/src/wasm-lib/kcl/tests/boolean_logical_multiple/program_memory.snap @@ -1,133 +1,120 @@ --- source: kcl/src/simulation_tests.rs -description: Program memory after executing boolean_logical_multiple.kcl +description: Variables in memory after executing boolean_logical_multiple.kcl --- { - "environments": [ - { - "bindings": { - "HALF_TURN": { - "type": "Number", - "value": 180.0, - "__meta": [] - }, - "QUARTER_TURN": { - "type": "Number", - "value": 90.0, - "__meta": [] - }, - "THREE_QUARTER_TURN": { - "type": "Number", - "value": 270.0, - "__meta": [] - }, - "ZERO": { - "type": "Number", - "value": 0.0, - "__meta": [] - }, - "i": { - "type": "Number", - "value": 1.0, - "__meta": [ - { - "sourceRange": [ - 40, - 41, - 0 - ] - } - ] - }, - "ii": { - "type": "Bool", - "value": true, - "__meta": [ - { - "sourceRange": [ - 5, - 9, - 0 - ] - }, - { - "sourceRange": [ - 12, - 17, - 0 - ] - }, - { - "sourceRange": [ - 20, - 25, - 0 - ] - } - ] - }, - "j": { - "type": "Number", - "value": 1.0, - "__meta": [ - { - "sourceRange": [ - 166, - 167, - 0 - ] - } - ] - }, - "jj": { - "type": "Bool", - "value": true, - "__meta": [ - { - "sourceRange": [ - 115, - 120, - 0 - ] - }, - { - "sourceRange": [ - 123, - 127, - 0 - ] - }, - { - "sourceRange": [ - 130, - 136, - 0 - ] - }, - { - "sourceRange": [ - 139, - 144, - 0 - ] - }, - { - "sourceRange": [ - 147, - 151, - 0 - ] - } - ] - } + "HALF_TURN": { + "type": "Number", + "value": 180.0, + "__meta": [] + }, + "QUARTER_TURN": { + "type": "Number", + "value": 90.0, + "__meta": [] + }, + "THREE_QUARTER_TURN": { + "type": "Number", + "value": 270.0, + "__meta": [] + }, + "ZERO": { + "type": "Number", + "value": 0.0, + "__meta": [] + }, + "i": { + "type": "Number", + "value": 1.0, + "__meta": [ + { + "sourceRange": [ + 40, + 41, + 0 + ] + } + ] + }, + "ii": { + "type": "Bool", + "value": true, + "__meta": [ + { + "sourceRange": [ + 5, + 9, + 0 + ] }, - "snapshots": [], - "parent": null - } - ], - "currentEnv": [ - 0, - 0 - ], - "callStack": [] + { + "sourceRange": [ + 12, + 17, + 0 + ] + }, + { + "sourceRange": [ + 20, + 25, + 0 + ] + } + ] + }, + "j": { + "type": "Number", + "value": 1.0, + "__meta": [ + { + "sourceRange": [ + 166, + 167, + 0 + ] + } + ] + }, + "jj": { + "type": "Bool", + "value": true, + "__meta": [ + { + "sourceRange": [ + 115, + 120, + 0 + ] + }, + { + "sourceRange": [ + 123, + 127, + 0 + ] + }, + { + "sourceRange": [ + 130, + 136, + 0 + ] + }, + { + "sourceRange": [ + 139, + 144, + 0 + ] + }, + { + "sourceRange": [ + 147, + 151, + 0 + ] + } + ] + } } diff --git a/src/wasm-lib/kcl/tests/boolean_logical_or/program_memory.snap b/src/wasm-lib/kcl/tests/boolean_logical_or/program_memory.snap index c594fec10..03ff15f11 100644 --- a/src/wasm-lib/kcl/tests/boolean_logical_or/program_memory.snap +++ b/src/wasm-lib/kcl/tests/boolean_logical_or/program_memory.snap @@ -1,171 +1,158 @@ --- source: kcl/src/simulation_tests.rs -description: Program memory after executing boolean_logical_or.kcl +description: Variables in memory after executing boolean_logical_or.kcl --- { - "environments": [ - { - "bindings": { - "HALF_TURN": { - "type": "Number", - "value": 180.0, - "__meta": [] - }, - "QUARTER_TURN": { - "type": "Number", - "value": 90.0, - "__meta": [] - }, - "THREE_QUARTER_TURN": { - "type": "Number", - "value": 270.0, - "__meta": [] - }, - "ZERO": { - "type": "Number", - "value": 0.0, - "__meta": [] - }, - "a": { - "type": "Number", - "value": 1.0, - "__meta": [ - { - "sourceRange": [ - 32, - 33, - 0 - ] - } - ] - }, - "aa": { - "type": "Bool", - "value": true, - "__meta": [ - { - "sourceRange": [ - 5, - 9, - 0 - ] - }, - { - "sourceRange": [ - 12, - 17, - 0 - ] - } - ] - }, - "b": { - "type": "Number", - "value": 1.0, - "__meta": [ - { - "sourceRange": [ - 158, - 159, - 0 - ] - } - ] - }, - "bb": { - "type": "Bool", - "value": true, - "__meta": [ - { - "sourceRange": [ - 131, - 136, - 0 - ] - }, - { - "sourceRange": [ - 139, - 143, - 0 - ] - } - ] - }, - "c": { - "type": "Number", - "value": 1.0, - "__meta": [ - { - "sourceRange": [ - 284, - 285, - 0 - ] - } - ] - }, - "cc": { - "type": "Bool", - "value": true, - "__meta": [ - { - "sourceRange": [ - 258, - 262, - 0 - ] - }, - { - "sourceRange": [ - 265, - 269, - 0 - ] - } - ] - }, - "d": { - "type": "Number", - "value": 2.0, - "__meta": [ - { - "sourceRange": [ - 427, - 428, - 0 - ] - } - ] - }, - "dd": { - "type": "Bool", - "value": false, - "__meta": [ - { - "sourceRange": [ - 386, - 391, - 0 - ] - }, - { - "sourceRange": [ - 394, - 399, - 0 - ] - } - ] - } + "HALF_TURN": { + "type": "Number", + "value": 180.0, + "__meta": [] + }, + "QUARTER_TURN": { + "type": "Number", + "value": 90.0, + "__meta": [] + }, + "THREE_QUARTER_TURN": { + "type": "Number", + "value": 270.0, + "__meta": [] + }, + "ZERO": { + "type": "Number", + "value": 0.0, + "__meta": [] + }, + "a": { + "type": "Number", + "value": 1.0, + "__meta": [ + { + "sourceRange": [ + 32, + 33, + 0 + ] + } + ] + }, + "aa": { + "type": "Bool", + "value": true, + "__meta": [ + { + "sourceRange": [ + 5, + 9, + 0 + ] }, - "snapshots": [], - "parent": null - } - ], - "currentEnv": [ - 0, - 0 - ], - "callStack": [] + { + "sourceRange": [ + 12, + 17, + 0 + ] + } + ] + }, + "b": { + "type": "Number", + "value": 1.0, + "__meta": [ + { + "sourceRange": [ + 158, + 159, + 0 + ] + } + ] + }, + "bb": { + "type": "Bool", + "value": true, + "__meta": [ + { + "sourceRange": [ + 131, + 136, + 0 + ] + }, + { + "sourceRange": [ + 139, + 143, + 0 + ] + } + ] + }, + "c": { + "type": "Number", + "value": 1.0, + "__meta": [ + { + "sourceRange": [ + 284, + 285, + 0 + ] + } + ] + }, + "cc": { + "type": "Bool", + "value": true, + "__meta": [ + { + "sourceRange": [ + 258, + 262, + 0 + ] + }, + { + "sourceRange": [ + 265, + 269, + 0 + ] + } + ] + }, + "d": { + "type": "Number", + "value": 2.0, + "__meta": [ + { + "sourceRange": [ + 427, + 428, + 0 + ] + } + ] + }, + "dd": { + "type": "Bool", + "value": false, + "__meta": [ + { + "sourceRange": [ + 386, + 391, + 0 + ] + }, + { + "sourceRange": [ + 394, + 399, + 0 + ] + } + ] + } } diff --git a/src/wasm-lib/kcl/tests/circle_three_point/program_memory.snap b/src/wasm-lib/kcl/tests/circle_three_point/program_memory.snap index f1df5d988..0557a8239 100644 --- a/src/wasm-lib/kcl/tests/circle_three_point/program_memory.snap +++ b/src/wasm-lib/kcl/tests/circle_three_point/program_memory.snap @@ -1,171 +1,157 @@ --- source: kcl/src/simulation_tests.rs -description: Program memory after executing circle_three_point.kcl -snapshot_kind: text +description: Variables in memory after executing circle_three_point.kcl --- { - "environments": [ - { - "bindings": { - "HALF_TURN": { - "type": "Number", - "value": 180.0, - "__meta": [] - }, - "QUARTER_TURN": { - "type": "Number", - "value": 90.0, - "__meta": [] - }, - "THREE_QUARTER_TURN": { - "type": "Number", - "value": 270.0, - "__meta": [] - }, - "ZERO": { - "type": "Number", - "value": 0.0, - "__meta": [] - }, - "sketch001": { - "type": "Solid", - "value": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 37, - 98, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "HALF_TURN": { + "type": "Number", + "value": 180.0, + "__meta": [] + }, + "QUARTER_TURN": { + "type": "Number", + "value": 90.0, + "__meta": [] + }, + "THREE_QUARTER_TURN": { + "type": "Number", + "value": 270.0, + "__meta": [] + }, + "ZERO": { + "type": "Number", + "value": 0.0, + "__meta": [] + }, + "sketch001": { + "type": "Solid", + "value": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 37, + 98, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 37, - 98, - 0 - ] - }, - "ccw": true, - "center": [ - 24.749999999999996, - 19.749999999999996 - ], - "from": [ - 30.0059, - 19.75 - ], - "radius": 5.255949010407163, - "tag": null, - "to": [ - 30.0059, - 19.75 - ], - "type": "Circle" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 30.00594901040716, - 19.749999999999996 - ], - "to": [ - 30.00594901040716, - 19.749999999999996 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 37, - 98, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 37, - 98, - 0 - ] - } + "sourceRange": [ + 37, + 98, + 0 ] }, - "height": 10.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 37, - 98, - 0 - ] - } + "ccw": true, + "center": [ + 24.749999999999996, + 19.749999999999996 + ], + "from": [ + 30.0059, + 19.75 + ], + "radius": 5.255949010407163, + "tag": null, + "to": [ + 30.0059, + 19.75 + ], + "type": "Circle" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 30.00594901040716, + 19.749999999999996 + ], + "to": [ + 30.00594901040716, + 19.749999999999996 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 37, + 98, + 0 ] } - } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 37, + 98, + 0 + ] + } + ] }, - "snapshots": [], - "parent": null + "height": 10.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 37, + 98, + 0 + ] + } + ] } - ], - "currentEnv": [ - 0, - 0 - ], - "callStack": [] + } } diff --git a/src/wasm-lib/kcl/tests/circular_pattern3d_a_pattern/program_memory.snap b/src/wasm-lib/kcl/tests/circular_pattern3d_a_pattern/program_memory.snap index 2fa5be925..f59ccb403 100644 --- a/src/wasm-lib/kcl/tests/circular_pattern3d_a_pattern/program_memory.snap +++ b/src/wasm-lib/kcl/tests/circular_pattern3d_a_pattern/program_memory.snap @@ -1,63478 +1,63464 @@ --- source: kcl/src/simulation_tests.rs -description: Program memory after executing circular_pattern3d_a_pattern.kcl -snapshot_kind: text +description: Variables in memory after executing circular_pattern3d_a_pattern.kcl --- { - "environments": [ - { - "bindings": { - "HALF_TURN": { - "type": "Number", - "value": 180.0, + "HALF_TURN": { + "type": "Number", + "value": 180.0, + "__meta": [] + }, + "QUARTER_TURN": { + "type": "Number", + "value": 90.0, + "__meta": [] + }, + "THREE_QUARTER_TURN": { + "type": "Number", + "value": 270.0, + "__meta": [] + }, + "ZERO": { + "type": "Number", + "value": 0.0, + "__meta": [] + }, + "exampleSketch": { + "type": "Solid", + "value": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, "__meta": [] }, - "QUARTER_TURN": { - "type": "Number", - "value": 90.0, - "__meta": [] - }, - "THREE_QUARTER_TURN": { - "type": "Number", - "value": 270.0, - "__meta": [] - }, - "ZERO": { - "type": "Number", - "value": 0.0, - "__meta": [] - }, - "exampleSketch": { - "type": "Solid", - "value": { - "type": "Solid", + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + } + }, + "pattn1": { + "type": "Solids", + "value": [ + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { "id": "[uuid]", "sourceRange": [ 72, 90, 0 - ], - "tag": null, - "type": "extrudePlane" + ] }, - { - "faceId": "[uuid]", + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { "id": "[uuid]", "sourceRange": [ 96, 114, 0 - ], - "tag": null, - "type": "extrudePlane" + ] }, - { - "faceId": "[uuid]", + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { "id": "[uuid]", "sourceRange": [ 120, 139, 0 - ], - "tag": null, - "type": "extrudePlane" + ] }, - { - "faceId": "[uuid]", + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { "id": "[uuid]", "sourceRange": [ 145, 153, 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } + ] + }, + "from": [ + 3.0, + -1.0 ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", "units": { "type": "Mm" }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 ] } - }, - "pattn1": { - "type": "Solids", - "value": [ - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - } - ] - }, - "pattn2": { - "type": "Solids", - "value": [ - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - } - ] - } + ] }, - "snapshots": [], - "parent": null - } - ], - "currentEnv": [ - 0, - 0 - ], - "callStack": [] + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + } + ] + }, + "pattn2": { + "type": "Solids", + "value": [ + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + } + ] + } } diff --git a/src/wasm-lib/kcl/tests/comparisons/program_memory.snap b/src/wasm-lib/kcl/tests/comparisons/program_memory.snap index a12a4eb11..d700aacb5 100644 --- a/src/wasm-lib/kcl/tests/comparisons/program_memory.snap +++ b/src/wasm-lib/kcl/tests/comparisons/program_memory.snap @@ -1,39 +1,26 @@ --- source: kcl/src/simulation_tests.rs -description: Program memory after executing comparisons.kcl +description: Variables in memory after executing comparisons.kcl --- { - "environments": [ - { - "bindings": { - "HALF_TURN": { - "type": "Number", - "value": 180.0, - "__meta": [] - }, - "QUARTER_TURN": { - "type": "Number", - "value": 90.0, - "__meta": [] - }, - "THREE_QUARTER_TURN": { - "type": "Number", - "value": 270.0, - "__meta": [] - }, - "ZERO": { - "type": "Number", - "value": 0.0, - "__meta": [] - } - }, - "snapshots": [], - "parent": null - } - ], - "currentEnv": [ - 0, - 0 - ], - "callStack": [] + "HALF_TURN": { + "type": "Number", + "value": 180.0, + "__meta": [] + }, + "QUARTER_TURN": { + "type": "Number", + "value": 90.0, + "__meta": [] + }, + "THREE_QUARTER_TURN": { + "type": "Number", + "value": 270.0, + "__meta": [] + }, + "ZERO": { + "type": "Number", + "value": 0.0, + "__meta": [] + } } diff --git a/src/wasm-lib/kcl/tests/computed_var/program_memory.snap b/src/wasm-lib/kcl/tests/computed_var/program_memory.snap index 1b3410028..559a57075 100644 --- a/src/wasm-lib/kcl/tests/computed_var/program_memory.snap +++ b/src/wasm-lib/kcl/tests/computed_var/program_memory.snap @@ -1,197 +1,184 @@ --- source: kcl/src/simulation_tests.rs -description: Program memory after executing computed_var.kcl +description: Variables in memory after executing computed_var.kcl --- { - "environments": [ - { - "bindings": { - "HALF_TURN": { - "type": "Number", - "value": 180.0, - "__meta": [] - }, - "QUARTER_TURN": { - "type": "Number", - "value": 90.0, - "__meta": [] - }, - "THREE_QUARTER_TURN": { - "type": "Number", - "value": 270.0, - "__meta": [] - }, - "ZERO": { - "type": "Number", - "value": 0.0, - "__meta": [] - }, - "arr": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "__meta": [ - { - "sourceRange": [ - 44, - 45, - 0 - ] - } - ] - }, - { - "type": "Number", - "value": 0.0, - "__meta": [ - { - "sourceRange": [ - 47, - 48, - 0 - ] - } - ] - }, - { - "type": "Number", - "value": 0.0, - "__meta": [ - { - "sourceRange": [ - 50, - 51, - 0 - ] - } - ] - }, - { - "type": "Number", - "value": 10.0, - "__meta": [ - { - "sourceRange": [ - 53, - 55, - 0 - ] - } - ] - } - ], - "__meta": [ - { - "sourceRange": [ - 43, - 56, - 0 - ] - } - ] - }, - "i": { - "type": "Number", - "value": 3.0, - "__meta": [ - { - "sourceRange": [ - 61, - 62, - 0 - ] - } - ] - }, - "obj": { - "type": "Object", - "value": { - "bar": { - "type": "Number", - "value": 0.0, - "__meta": [ - { - "sourceRange": [ - 150, - 151, - 0 - ] - } - ] - }, - "foo": { - "type": "Number", - "value": 1.0, - "__meta": [ - { - "sourceRange": [ - 141, - 142, - 0 - ] - } - ] - } - }, - "__meta": [ - { - "sourceRange": [ - 133, - 153, - 0 - ] - } - ] - }, - "one": { - "type": "Number", - "value": 1.0, - "__meta": [ - { - "sourceRange": [ - 141, - 142, - 0 - ] - } - ] - }, - "p": { - "type": "String", - "value": "foo", - "__meta": [ - { - "sourceRange": [ - 121, - 126, - 0 - ] - } - ] - }, - "ten": { - "type": "Number", - "value": 10.0, - "__meta": [ - { - "sourceRange": [ - 53, - 55, - 0 - ] - } - ] - } + "HALF_TURN": { + "type": "Number", + "value": 180.0, + "__meta": [] + }, + "QUARTER_TURN": { + "type": "Number", + "value": 90.0, + "__meta": [] + }, + "THREE_QUARTER_TURN": { + "type": "Number", + "value": 270.0, + "__meta": [] + }, + "ZERO": { + "type": "Number", + "value": 0.0, + "__meta": [] + }, + "arr": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "__meta": [ + { + "sourceRange": [ + 44, + 45, + 0 + ] + } + ] }, - "snapshots": [], - "parent": null - } - ], - "currentEnv": [ - 0, - 0 - ], - "callStack": [] + { + "type": "Number", + "value": 0.0, + "__meta": [ + { + "sourceRange": [ + 47, + 48, + 0 + ] + } + ] + }, + { + "type": "Number", + "value": 0.0, + "__meta": [ + { + "sourceRange": [ + 50, + 51, + 0 + ] + } + ] + }, + { + "type": "Number", + "value": 10.0, + "__meta": [ + { + "sourceRange": [ + 53, + 55, + 0 + ] + } + ] + } + ], + "__meta": [ + { + "sourceRange": [ + 43, + 56, + 0 + ] + } + ] + }, + "i": { + "type": "Number", + "value": 3.0, + "__meta": [ + { + "sourceRange": [ + 61, + 62, + 0 + ] + } + ] + }, + "obj": { + "type": "Object", + "value": { + "bar": { + "type": "Number", + "value": 0.0, + "__meta": [ + { + "sourceRange": [ + 150, + 151, + 0 + ] + } + ] + }, + "foo": { + "type": "Number", + "value": 1.0, + "__meta": [ + { + "sourceRange": [ + 141, + 142, + 0 + ] + } + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 133, + 153, + 0 + ] + } + ] + }, + "one": { + "type": "Number", + "value": 1.0, + "__meta": [ + { + "sourceRange": [ + 141, + 142, + 0 + ] + } + ] + }, + "p": { + "type": "String", + "value": "foo", + "__meta": [ + { + "sourceRange": [ + 121, + 126, + 0 + ] + } + ] + }, + "ten": { + "type": "Number", + "value": 10.0, + "__meta": [ + { + "sourceRange": [ + 53, + 55, + 0 + ] + } + ] + } } diff --git a/src/wasm-lib/kcl/tests/cube/program_memory.snap b/src/wasm-lib/kcl/tests/cube/program_memory.snap index 49dc851fe..9d273de37 100644 --- a/src/wasm-lib/kcl/tests/cube/program_memory.snap +++ b/src/wasm-lib/kcl/tests/cube/program_memory.snap @@ -1,977 +1,948 @@ --- source: kcl/src/simulation_tests.rs -description: Program memory after executing cube.kcl +description: Variables in memory after executing cube.kcl --- { - "environments": [ - { - "bindings": { - "HALF_TURN": { - "type": "Number", - "value": 180.0, - "__meta": [] - }, - "QUARTER_TURN": { - "type": "Number", - "value": 90.0, - "__meta": [] - }, - "THREE_QUARTER_TURN": { - "type": "Number", - "value": 270.0, - "__meta": [] - }, - "ZERO": { - "type": "Number", - "value": 0.0, - "__meta": [] - }, - "cube": { - "type": "Function", - "expression": { - "body": { + "HALF_TURN": { + "type": "Number", + "value": 180.0, + "__meta": [] + }, + "QUARTER_TURN": { + "type": "Number", + "value": 90.0, + "__meta": [] + }, + "THREE_QUARTER_TURN": { + "type": "Number", + "value": 270.0, + "__meta": [] + }, + "ZERO": { + "type": "Number", + "value": 0.0, + "__meta": [] + }, + "cube": { + "type": "Function", + "expression": { + "body": { + "body": [ + { + "declaration": { + "end": 50, + "id": { + "end": 33, + "name": "l", + "start": 32, + "type": "Identifier" + }, + "init": { + "end": 50, + "left": { + "end": 46, + "name": "sideLength", + "start": 36, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "/", + "right": { + "end": 50, + "raw": "2", + "start": 49, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "start": 36, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 32, + "type": "VariableDeclarator" + }, + "end": 50, + "kind": "const", + "start": 32, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declaration": { + "end": 66, + "id": { + "end": 54, + "name": "x", + "start": 53, + "type": "Identifier" + }, + "init": { + "computed": false, + "end": 66, + "object": { + "end": 63, + "name": "center", + "start": 57, + "type": "Identifier", + "type": "Identifier" + }, + "property": { + "end": 65, + "raw": "0", + "start": 64, + "type": "Literal", + "type": "Literal", + "value": { + "value": 0.0, + "suffix": "None" + } + }, + "start": 57, + "type": "MemberExpression", + "type": "MemberExpression" + }, + "start": 53, + "type": "VariableDeclarator" + }, + "end": 66, + "kind": "const", + "start": 53, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declaration": { + "end": 82, + "id": { + "end": 70, + "name": "y", + "start": 69, + "type": "Identifier" + }, + "init": { + "computed": false, + "end": 82, + "object": { + "end": 79, + "name": "center", + "start": 73, + "type": "Identifier", + "type": "Identifier" + }, + "property": { + "end": 81, + "raw": "1", + "start": 80, + "type": "Literal", + "type": "Literal", + "value": { + "value": 1.0, + "suffix": "None" + } + }, + "start": 73, + "type": "MemberExpression", + "type": "MemberExpression" + }, + "start": 69, + "type": "VariableDeclarator" + }, + "end": 82, + "kind": "const", + "start": 69, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declaration": { + "end": 106, + "id": { + "end": 87, + "name": "p0", + "start": 85, + "type": "Identifier" + }, + "init": { + "elements": [ + { + "end": 97, + "left": { + "argument": { + "end": 93, + "name": "l", + "start": 92, + "type": "Identifier", + "type": "Identifier" + }, + "end": 93, + "operator": "-", + "start": 91, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + "operator": "+", + "right": { + "end": 97, + "name": "x", + "start": 96, + "type": "Identifier", + "type": "Identifier" + }, + "start": 91, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + { + "end": 105, + "left": { + "argument": { + "end": 101, + "name": "l", + "start": 100, + "type": "Identifier", + "type": "Identifier" + }, + "end": 101, + "operator": "-", + "start": 99, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + "operator": "+", + "right": { + "end": 105, + "name": "y", + "start": 104, + "type": "Identifier", + "type": "Identifier" + }, + "start": 99, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + ], + "end": 106, + "start": 90, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + "start": 85, + "type": "VariableDeclarator" + }, + "end": 106, + "kind": "const", + "start": 85, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declaration": { + "end": 129, + "id": { + "end": 111, + "name": "p1", + "start": 109, + "type": "Identifier" + }, + "init": { + "elements": [ + { + "end": 121, + "left": { + "argument": { + "end": 117, + "name": "l", + "start": 116, + "type": "Identifier", + "type": "Identifier" + }, + "end": 117, + "operator": "-", + "start": 115, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + "operator": "+", + "right": { + "end": 121, + "name": "x", + "start": 120, + "type": "Identifier", + "type": "Identifier" + }, + "start": 115, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + { + "end": 128, + "left": { + "end": 124, + "name": "l", + "start": 123, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "+", + "right": { + "end": 128, + "name": "y", + "start": 127, + "type": "Identifier", + "type": "Identifier" + }, + "start": 123, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + ], + "end": 129, + "start": 114, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + "start": 109, + "type": "VariableDeclarator" + }, + "end": 129, + "kind": "const", + "start": 109, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declaration": { + "end": 151, + "id": { + "end": 134, + "name": "p2", + "start": 132, + "type": "Identifier" + }, + "init": { + "elements": [ + { + "end": 143, + "left": { + "end": 139, + "name": "l", + "start": 138, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "+", + "right": { + "end": 143, + "name": "x", + "start": 142, + "type": "Identifier", + "type": "Identifier" + }, + "start": 138, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + { + "end": 150, + "left": { + "end": 146, + "name": "l", + "start": 145, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "+", + "right": { + "end": 150, + "name": "y", + "start": 149, + "type": "Identifier", + "type": "Identifier" + }, + "start": 145, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + ], + "end": 151, + "start": 137, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + "start": 132, + "type": "VariableDeclarator" + }, + "end": 151, + "kind": "const", + "start": 132, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declaration": { + "end": 174, + "id": { + "end": 156, + "name": "p3", + "start": 154, + "type": "Identifier" + }, + "init": { + "elements": [ + { + "end": 165, + "left": { + "end": 161, + "name": "l", + "start": 160, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "+", + "right": { + "end": 165, + "name": "x", + "start": 164, + "type": "Identifier", + "type": "Identifier" + }, + "start": 160, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + { + "end": 173, + "left": { + "argument": { + "end": 169, + "name": "l", + "start": 168, + "type": "Identifier", + "type": "Identifier" + }, + "end": 169, + "operator": "-", + "start": 167, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + "operator": "+", + "right": { + "end": 173, + "name": "y", + "start": 172, + "type": "Identifier", + "type": "Identifier" + }, + "start": 167, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + ], + "end": 174, + "start": 159, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + "start": 154, + "type": "VariableDeclarator" + }, + "end": 174, + "kind": "const", + "start": 154, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "argument": { "body": [ { - "declaration": { - "end": 50, - "id": { - "end": 33, - "name": "l", - "start": 32, - "type": "Identifier" - }, - "init": { - "end": 50, - "left": { - "end": 46, - "name": "sideLength", - "start": 36, - "type": "Identifier", - "type": "Identifier" - }, - "operator": "/", - "right": { - "end": 50, - "raw": "2", - "start": 49, - "type": "Literal", - "type": "Literal", - "value": { - "value": 2.0, - "suffix": "None" - } - }, - "start": 36, - "type": "BinaryExpression", - "type": "BinaryExpression" - }, - "start": 32, - "type": "VariableDeclarator" - }, - "end": 50, - "kind": "const", - "start": 32, - "type": "VariableDeclaration", - "type": "VariableDeclaration" - }, - { - "declaration": { - "end": 66, - "id": { - "end": 54, - "name": "x", - "start": 53, - "type": "Identifier" - }, - "init": { - "computed": false, - "end": 66, - "object": { - "end": 63, - "name": "center", - "start": 57, - "type": "Identifier", - "type": "Identifier" - }, - "property": { - "end": 65, - "raw": "0", - "start": 64, - "type": "Literal", - "type": "Literal", - "value": { - "value": 0.0, - "suffix": "None" - } - }, - "start": 57, - "type": "MemberExpression", - "type": "MemberExpression" - }, - "start": 53, - "type": "VariableDeclarator" - }, - "end": 66, - "kind": "const", - "start": 53, - "type": "VariableDeclaration", - "type": "VariableDeclaration" - }, - { - "declaration": { - "end": 82, - "id": { - "end": 70, - "name": "y", - "start": 69, - "type": "Identifier" - }, - "init": { - "computed": false, - "end": 82, - "object": { - "end": 79, - "name": "center", - "start": 73, - "type": "Identifier", - "type": "Identifier" - }, - "property": { - "end": 81, - "raw": "1", - "start": 80, - "type": "Literal", - "type": "Literal", - "value": { - "value": 1.0, - "suffix": "None" - } - }, - "start": 73, - "type": "MemberExpression", - "type": "MemberExpression" - }, - "start": 69, - "type": "VariableDeclarator" - }, - "end": 82, - "kind": "const", - "start": 69, - "type": "VariableDeclaration", - "type": "VariableDeclaration" - }, - { - "declaration": { - "end": 106, - "id": { - "end": 87, - "name": "p0", - "start": 85, - "type": "Identifier" - }, - "init": { - "elements": [ - { - "end": 97, - "left": { - "argument": { - "end": 93, - "name": "l", - "start": 92, - "type": "Identifier", - "type": "Identifier" - }, - "end": 93, - "operator": "-", - "start": 91, - "type": "UnaryExpression", - "type": "UnaryExpression" - }, - "operator": "+", - "right": { - "end": 97, - "name": "x", - "start": 96, - "type": "Identifier", - "type": "Identifier" - }, - "start": 91, - "type": "BinaryExpression", - "type": "BinaryExpression" - }, - { - "end": 105, - "left": { - "argument": { - "end": 101, - "name": "l", - "start": 100, - "type": "Identifier", - "type": "Identifier" - }, - "end": 101, - "operator": "-", - "start": 99, - "type": "UnaryExpression", - "type": "UnaryExpression" - }, - "operator": "+", - "right": { - "end": 105, - "name": "y", - "start": 104, - "type": "Identifier", - "type": "Identifier" - }, - "start": 99, - "type": "BinaryExpression", - "type": "BinaryExpression" - } - ], - "end": 106, - "start": 90, - "type": "ArrayExpression", - "type": "ArrayExpression" - }, - "start": 85, - "type": "VariableDeclarator" - }, - "end": 106, - "kind": "const", - "start": 85, - "type": "VariableDeclaration", - "type": "VariableDeclaration" - }, - { - "declaration": { - "end": 129, - "id": { - "end": 111, - "name": "p1", - "start": 109, - "type": "Identifier" - }, - "init": { - "elements": [ - { - "end": 121, - "left": { - "argument": { - "end": 117, - "name": "l", - "start": 116, - "type": "Identifier", - "type": "Identifier" - }, - "end": 117, - "operator": "-", - "start": 115, - "type": "UnaryExpression", - "type": "UnaryExpression" - }, - "operator": "+", - "right": { - "end": 121, - "name": "x", - "start": 120, - "type": "Identifier", - "type": "Identifier" - }, - "start": 115, - "type": "BinaryExpression", - "type": "BinaryExpression" - }, - { - "end": 128, - "left": { - "end": 124, - "name": "l", - "start": 123, - "type": "Identifier", - "type": "Identifier" - }, - "operator": "+", - "right": { - "end": 128, - "name": "y", - "start": 127, - "type": "Identifier", - "type": "Identifier" - }, - "start": 123, - "type": "BinaryExpression", - "type": "BinaryExpression" - } - ], - "end": 129, - "start": 114, - "type": "ArrayExpression", - "type": "ArrayExpression" - }, - "start": 109, - "type": "VariableDeclarator" - }, - "end": 129, - "kind": "const", - "start": 109, - "type": "VariableDeclaration", - "type": "VariableDeclaration" - }, - { - "declaration": { - "end": 151, - "id": { - "end": 134, - "name": "p2", - "start": 132, - "type": "Identifier" - }, - "init": { - "elements": [ - { - "end": 143, - "left": { - "end": 139, - "name": "l", - "start": 138, - "type": "Identifier", - "type": "Identifier" - }, - "operator": "+", - "right": { - "end": 143, - "name": "x", - "start": 142, - "type": "Identifier", - "type": "Identifier" - }, - "start": 138, - "type": "BinaryExpression", - "type": "BinaryExpression" - }, - { - "end": 150, - "left": { - "end": 146, - "name": "l", - "start": 145, - "type": "Identifier", - "type": "Identifier" - }, - "operator": "+", - "right": { - "end": 150, - "name": "y", - "start": 149, - "type": "Identifier", - "type": "Identifier" - }, - "start": 145, - "type": "BinaryExpression", - "type": "BinaryExpression" - } - ], - "end": 151, - "start": 137, - "type": "ArrayExpression", - "type": "ArrayExpression" - }, - "start": 132, - "type": "VariableDeclarator" - }, - "end": 151, - "kind": "const", - "start": 132, - "type": "VariableDeclaration", - "type": "VariableDeclaration" - }, - { - "declaration": { - "end": 174, - "id": { - "end": 156, - "name": "p3", - "start": 154, - "type": "Identifier" - }, - "init": { - "elements": [ - { - "end": 165, - "left": { - "end": 161, - "name": "l", - "start": 160, - "type": "Identifier", - "type": "Identifier" - }, - "operator": "+", - "right": { - "end": 165, - "name": "x", - "start": 164, - "type": "Identifier", - "type": "Identifier" - }, - "start": 160, - "type": "BinaryExpression", - "type": "BinaryExpression" - }, - { - "end": 173, - "left": { - "argument": { - "end": 169, - "name": "l", - "start": 168, - "type": "Identifier", - "type": "Identifier" - }, - "end": 169, - "operator": "-", - "start": 167, - "type": "UnaryExpression", - "type": "UnaryExpression" - }, - "operator": "+", - "right": { - "end": 173, - "name": "y", - "start": 172, - "type": "Identifier", - "type": "Identifier" - }, - "start": 167, - "type": "BinaryExpression", - "type": "BinaryExpression" - } - ], - "end": 174, - "start": 159, - "type": "ArrayExpression", - "type": "ArrayExpression" - }, - "start": 154, - "type": "VariableDeclarator" - }, - "end": 174, - "kind": "const", - "start": 154, - "type": "VariableDeclaration", - "type": "VariableDeclaration" - }, - { - "argument": { - "body": [ - { - "arguments": [ - { - "end": 201, - "name": "p0", - "start": 199, - "type": "Identifier", - "type": "Identifier" - } - ], - "callee": { - "end": 198, - "name": "startSketchAt", - "start": 185, - "type": "Identifier" - }, - "end": 202, - "start": 185, - "type": "CallExpression", - "type": "CallExpression" - }, - { - "arguments": [ - { - "type": "LabeledArg", - "label": { - "type": "Identifier", - "name": "endAbsolute" - }, - "arg": { - "end": 231, - "name": "p1", - "start": 229, - "type": "Identifier", - "type": "Identifier" - } - } - ], - "callee": { - "end": 214, - "name": "line", - "start": 210, - "type": "Identifier" - }, - "end": 232, - "start": 210, - "type": "CallExpressionKw", - "type": "CallExpressionKw", - "unlabeled": null - }, - { - "arguments": [ - { - "type": "LabeledArg", - "label": { - "type": "Identifier", - "name": "endAbsolute" - }, - "arg": { - "end": 261, - "name": "p2", - "start": 259, - "type": "Identifier", - "type": "Identifier" - } - } - ], - "callee": { - "end": 244, - "name": "line", - "start": 240, - "type": "Identifier" - }, - "end": 262, - "start": 240, - "type": "CallExpressionKw", - "type": "CallExpressionKw", - "unlabeled": null - }, - { - "arguments": [ - { - "type": "LabeledArg", - "label": { - "type": "Identifier", - "name": "endAbsolute" - }, - "arg": { - "end": 291, - "name": "p3", - "start": 289, - "type": "Identifier", - "type": "Identifier" - } - } - ], - "callee": { - "end": 274, - "name": "line", - "start": 270, - "type": "Identifier" - }, - "end": 292, - "start": 270, - "type": "CallExpressionKw", - "type": "CallExpressionKw", - "unlabeled": null - }, - { - "arguments": [ - { - "type": "LabeledArg", - "label": { - "type": "Identifier", - "name": "endAbsolute" - }, - "arg": { - "end": 321, - "name": "p0", - "start": 319, - "type": "Identifier", - "type": "Identifier" - } - } - ], - "callee": { - "end": 304, - "name": "line", - "start": 300, - "type": "Identifier" - }, - "end": 322, - "start": 300, - "type": "CallExpressionKw", - "type": "CallExpressionKw", - "unlabeled": null - }, - { - "arguments": [], - "callee": { - "end": 335, - "name": "close", - "start": 330, - "type": "Identifier" - }, - "end": 337, - "start": 330, - "type": "CallExpression", - "type": "CallExpression" - }, - { - "arguments": [ - { - "type": "LabeledArg", - "label": { - "type": "Identifier", - "name": "length" - }, - "arg": { - "end": 372, - "name": "sideLength", - "start": 362, - "type": "Identifier", - "type": "Identifier" - } - } - ], - "callee": { - "end": 352, - "name": "extrude", - "start": 345, - "type": "Identifier" - }, - "end": 373, - "start": 345, - "type": "CallExpressionKw", - "type": "CallExpressionKw", - "unlabeled": null - } - ], - "end": 373, - "start": 185, - "type": "PipeExpression", - "type": "PipeExpression" - }, - "end": 373, - "start": 178, - "type": "ReturnStatement", - "type": "ReturnStatement" - } - ], - "end": 375, - "nonCodeMeta": { - "nonCodeNodes": { - "6": [ + "arguments": [ { - "end": 178, - "start": 174, - "type": "NonCodeNode", - "value": { - "type": "newLine" + "end": 201, + "name": "p0", + "start": 199, + "type": "Identifier", + "type": "Identifier" + } + ], + "callee": { + "end": 198, + "name": "startSketchAt", + "start": 185, + "type": "Identifier" + }, + "end": 202, + "start": 185, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "type": "Identifier", + "name": "endAbsolute" + }, + "arg": { + "end": 231, + "name": "p1", + "start": 229, + "type": "Identifier", + "type": "Identifier" } } - ] - }, - "startNodes": [] - }, - "start": 28 - }, - "end": 375, - "params": [ - { - "type": "Parameter", - "identifier": { - "end": 18, - "name": "sideLength", - "start": 8, - "type": "Identifier" - } - }, - { - "type": "Parameter", - "identifier": { - "end": 26, - "name": "center", - "start": 20, - "type": "Identifier" - } - } - ], - "start": 7, - "type": "FunctionExpression" - }, - "memory": [ - 0, - 1 - ], - "__meta": [ - { - "sourceRange": [ - 7, - 375, - 0 - ] - } - ] - }, - "myCube": { - "type": "Solid", - "value": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 210, - 232, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 240, - 262, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 270, - 292, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 300, - 322, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 210, - 232, - 0 - ] + ], + "callee": { + "end": 214, + "name": "line", + "start": 210, + "type": "Identifier" }, - "from": [ - -20.0, - -20.0 - ], - "tag": null, - "to": [ - -20.0, - 20.0 - ], - "type": "ToPoint" + "end": 232, + "start": 210, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 240, - 262, - 0 - ] + "arguments": [ + { + "type": "LabeledArg", + "label": { + "type": "Identifier", + "name": "endAbsolute" + }, + "arg": { + "end": 261, + "name": "p2", + "start": 259, + "type": "Identifier", + "type": "Identifier" + } + } + ], + "callee": { + "end": 244, + "name": "line", + "start": 240, + "type": "Identifier" }, - "from": [ - -20.0, - 20.0 - ], - "tag": null, - "to": [ - 20.0, - 20.0 - ], - "type": "ToPoint" + "end": 262, + "start": 240, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 270, - 292, - 0 - ] + "arguments": [ + { + "type": "LabeledArg", + "label": { + "type": "Identifier", + "name": "endAbsolute" + }, + "arg": { + "end": 291, + "name": "p3", + "start": 289, + "type": "Identifier", + "type": "Identifier" + } + } + ], + "callee": { + "end": 274, + "name": "line", + "start": 270, + "type": "Identifier" }, - "from": [ - 20.0, - 20.0 - ], - "tag": null, - "to": [ - 20.0, - -20.0 - ], - "type": "ToPoint" + "end": 292, + "start": 270, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 300, - 322, - 0 - ] + "arguments": [ + { + "type": "LabeledArg", + "label": { + "type": "Identifier", + "name": "endAbsolute" + }, + "arg": { + "end": 321, + "name": "p0", + "start": 319, + "type": "Identifier", + "type": "Identifier" + } + } + ], + "callee": { + "end": 304, + "name": "line", + "start": 300, + "type": "Identifier" }, - "from": [ - 20.0, - -20.0 - ], - "tag": null, - "to": [ - -20.0, - -20.0 - ], - "type": "ToPoint" + "end": 322, + "start": 300, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null }, { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 330, - 337, - 0 - ] + "arguments": [], + "callee": { + "end": 335, + "name": "close", + "start": 330, + "type": "Identifier" }, - "from": [ - -20.0, - -20.0 + "end": 337, + "start": 330, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "type": "Identifier", + "name": "length" + }, + "arg": { + "end": 372, + "name": "sideLength", + "start": 362, + "type": "Identifier", + "type": "Identifier" + } + } ], - "tag": null, - "to": [ - -20.0, - -20.0 - ], - "type": "ToPoint" + "callee": { + "end": 352, + "name": "extrude", + "start": 345, + "type": "Identifier" + }, + "end": 373, + "start": 345, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null } ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - -20.0, - -20.0 - ], - "to": [ - -20.0, - -20.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 185, - 202, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 185, - 202, - 0 - ] - } - ] + "end": 373, + "start": 185, + "type": "PipeExpression", + "type": "PipeExpression" }, - "height": 40.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ + "end": 373, + "start": 178, + "type": "ReturnStatement", + "type": "ReturnStatement" + } + ], + "end": 375, + "nonCodeMeta": { + "nonCodeNodes": { + "6": [ { - "sourceRange": [ - 185, - 202, - 0 - ] + "end": 178, + "start": 174, + "type": "NonCodeNode", + "value": { + "type": "newLine" + } } ] - } - } + }, + "startNodes": [] + }, + "start": 28 }, - "snapshots": [ + "end": 375, + "params": [ { - "parent_snapshot": null, - "data": { - "cube": { - "type": "Tombstone", - "value": null, - "__meta": [] - }, - "myCube": { - "type": "Tombstone", - "value": null, - "__meta": [] - } + "type": "Parameter", + "identifier": { + "end": 18, + "name": "sideLength", + "start": 8, + "type": "Identifier" + } + }, + { + "type": "Parameter", + "identifier": { + "end": 26, + "name": "center", + "start": 20, + "type": "Identifier" } } ], - "parent": null + "start": 7, + "type": "FunctionExpression" + }, + "memory": [ + 0, + 1 + ], + "__meta": [ + { + "sourceRange": [ + 7, + 375, + 0 + ] + } + ] + }, + "myCube": { + "type": "Solid", + "value": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 210, + 232, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 240, + 262, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 270, + 292, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 300, + 322, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 210, + 232, + 0 + ] + }, + "from": [ + -20.0, + -20.0 + ], + "tag": null, + "to": [ + -20.0, + 20.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 240, + 262, + 0 + ] + }, + "from": [ + -20.0, + 20.0 + ], + "tag": null, + "to": [ + 20.0, + 20.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 270, + 292, + 0 + ] + }, + "from": [ + 20.0, + 20.0 + ], + "tag": null, + "to": [ + 20.0, + -20.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 300, + 322, + 0 + ] + }, + "from": [ + 20.0, + -20.0 + ], + "tag": null, + "to": [ + -20.0, + -20.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 330, + 337, + 0 + ] + }, + "from": [ + -20.0, + -20.0 + ], + "tag": null, + "to": [ + -20.0, + -20.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + -20.0, + -20.0 + ], + "to": [ + -20.0, + -20.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 185, + 202, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 185, + 202, + 0 + ] + } + ] + }, + "height": 40.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 185, + 202, + 0 + ] + } + ] } - ], - "currentEnv": [ - 0, - 0 - ], - "callStack": [] + } } diff --git a/src/wasm-lib/kcl/tests/double_map_fn/program_memory.snap b/src/wasm-lib/kcl/tests/double_map_fn/program_memory.snap index b84b1c6a8..a1b272e4c 100644 --- a/src/wasm-lib/kcl/tests/double_map_fn/program_memory.snap +++ b/src/wasm-lib/kcl/tests/double_map_fn/program_memory.snap @@ -1,277 +1,243 @@ --- source: kcl/src/simulation_tests.rs -description: Program memory after executing double_map_fn.kcl +description: Variables in memory after executing double_map_fn.kcl --- { - "environments": [ - { - "bindings": { - "HALF_TURN": { - "type": "Number", - "value": 180.0, - "__meta": [] - }, - "QUARTER_TURN": { - "type": "Number", - "value": 90.0, - "__meta": [] - }, - "THREE_QUARTER_TURN": { - "type": "Number", - "value": 270.0, - "__meta": [] - }, - "ZERO": { - "type": "Number", - "value": 0.0, - "__meta": [] - }, - "increment": { - "type": "Function", - "expression": { - "body": { - "body": [ - { - "argument": { - "end": 32, - "left": { - "end": 28, - "name": "i", - "start": 27, - "type": "Identifier", - "type": "Identifier" - }, - "operator": "+", - "right": { - "end": 32, - "raw": "1", - "start": 31, - "type": "Literal", - "type": "Literal", - "value": { - "value": 1.0, - "suffix": "None" - } - }, - "start": 27, - "type": "BinaryExpression", - "type": "BinaryExpression" - }, - "end": 32, - "start": 20, - "type": "ReturnStatement", - "type": "ReturnStatement" + "HALF_TURN": { + "type": "Number", + "value": 180.0, + "__meta": [] + }, + "QUARTER_TURN": { + "type": "Number", + "value": 90.0, + "__meta": [] + }, + "THREE_QUARTER_TURN": { + "type": "Number", + "value": 270.0, + "__meta": [] + }, + "ZERO": { + "type": "Number", + "value": 0.0, + "__meta": [] + }, + "increment": { + "type": "Function", + "expression": { + "body": { + "body": [ + { + "argument": { + "end": 32, + "left": { + "end": 28, + "name": "i", + "start": 27, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "+", + "right": { + "end": 32, + "raw": "1", + "start": 31, + "type": "Literal", + "type": "Literal", + "value": { + "value": 1.0, + "suffix": "None" } - ], - "end": 34, - "start": 16 + }, + "start": 27, + "type": "BinaryExpression", + "type": "BinaryExpression" }, - "end": 34, - "params": [ - { - "type": "Parameter", - "identifier": { - "end": 14, - "name": "i", - "start": 13, - "type": "Identifier" - } - } - ], - "start": 12, - "type": "FunctionExpression" - }, - "memory": [ - 0, - 1 - ], - "__meta": [ - { - "sourceRange": [ - 12, - 34, - 0 - ] - } - ] - }, - "xs": { - "type": "Array", - "value": [ - { - "type": "Int", - "value": 0, - "__meta": [ - { - "sourceRange": [ - 41, - 47, - 0 - ] - } - ] - }, - { - "type": "Int", - "value": 1, - "__meta": [ - { - "sourceRange": [ - 41, - 47, - 0 - ] - } - ] - }, - { - "type": "Int", - "value": 2, - "__meta": [ - { - "sourceRange": [ - 41, - 47, - 0 - ] - } - ] - } - ], - "__meta": [ - { - "sourceRange": [ - 41, - 47, - 0 - ] - } - ] - }, - "ys": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 2.0, - "__meta": [ - { - "sourceRange": [ - 41, - 47, - 0 - ] - }, - { - "sourceRange": [ - 31, - 32, - 0 - ] - }, - { - "sourceRange": [ - 31, - 32, - 0 - ] - } - ] - }, - { - "type": "Number", - "value": 3.0, - "__meta": [ - { - "sourceRange": [ - 41, - 47, - 0 - ] - }, - { - "sourceRange": [ - 31, - 32, - 0 - ] - }, - { - "sourceRange": [ - 31, - 32, - 0 - ] - } - ] - }, - { - "type": "Number", - "value": 4.0, - "__meta": [ - { - "sourceRange": [ - 41, - 47, - 0 - ] - }, - { - "sourceRange": [ - 31, - 32, - 0 - ] - }, - { - "sourceRange": [ - 31, - 32, - 0 - ] - } - ] - } - ], - "__meta": [ - { - "sourceRange": [ - 84, - 101, - 0 - ] - } - ] - } + "end": 32, + "start": 20, + "type": "ReturnStatement", + "type": "ReturnStatement" + } + ], + "end": 34, + "start": 16 }, - "snapshots": [ + "end": 34, + "params": [ { - "parent_snapshot": null, - "data": { - "increment": { - "type": "Tombstone", - "value": null, - "__meta": [] - }, - "xs": { - "type": "Tombstone", - "value": null, - "__meta": [] - }, - "ys": { - "type": "Tombstone", - "value": null, - "__meta": [] - } + "type": "Parameter", + "identifier": { + "end": 14, + "name": "i", + "start": 13, + "type": "Identifier" } } ], - "parent": null - } - ], - "currentEnv": [ - 0, - 0 - ], - "callStack": [] + "start": 12, + "type": "FunctionExpression" + }, + "memory": [ + 0, + 1 + ], + "__meta": [ + { + "sourceRange": [ + 12, + 34, + 0 + ] + } + ] + }, + "xs": { + "type": "Array", + "value": [ + { + "type": "Int", + "value": 0, + "__meta": [ + { + "sourceRange": [ + 41, + 47, + 0 + ] + } + ] + }, + { + "type": "Int", + "value": 1, + "__meta": [ + { + "sourceRange": [ + 41, + 47, + 0 + ] + } + ] + }, + { + "type": "Int", + "value": 2, + "__meta": [ + { + "sourceRange": [ + 41, + 47, + 0 + ] + } + ] + } + ], + "__meta": [ + { + "sourceRange": [ + 41, + 47, + 0 + ] + } + ] + }, + "ys": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 2.0, + "__meta": [ + { + "sourceRange": [ + 41, + 47, + 0 + ] + }, + { + "sourceRange": [ + 31, + 32, + 0 + ] + }, + { + "sourceRange": [ + 31, + 32, + 0 + ] + } + ] + }, + { + "type": "Number", + "value": 3.0, + "__meta": [ + { + "sourceRange": [ + 41, + 47, + 0 + ] + }, + { + "sourceRange": [ + 31, + 32, + 0 + ] + }, + { + "sourceRange": [ + 31, + 32, + 0 + ] + } + ] + }, + { + "type": "Number", + "value": 4.0, + "__meta": [ + { + "sourceRange": [ + 41, + 47, + 0 + ] + }, + { + "sourceRange": [ + 31, + 32, + 0 + ] + }, + { + "sourceRange": [ + 31, + 32, + 0 + ] + } + ] + } + ], + "__meta": [ + { + "sourceRange": [ + 84, + 101, + 0 + ] + } + ] + } } diff --git a/src/wasm-lib/kcl/tests/fillet-and-shell/program_memory.snap b/src/wasm-lib/kcl/tests/fillet-and-shell/program_memory.snap index aa34a3be2..9cf610ba2 100644 --- a/src/wasm-lib/kcl/tests/fillet-and-shell/program_memory.snap +++ b/src/wasm-lib/kcl/tests/fillet-and-shell/program_memory.snap @@ -1,52 +1,301 @@ --- source: kcl/src/simulation_tests.rs -description: Program memory after executing fillet-and-shell.kcl +description: Variables in memory after executing fillet-and-shell.kcl --- { - "environments": [ - { - "bindings": { - "HALF_TURN": { - "type": "Number", - "value": 180.0, - "__meta": [] + "HALF_TURN": { + "type": "Number", + "value": 180.0, + "__meta": [] + }, + "QUARTER_TURN": { + "type": "Number", + "value": 90.0, + "__meta": [] + }, + "THREE_QUARTER_TURN": { + "type": "Number", + "value": 270.0, + "__meta": [] + }, + "ZERO": { + "type": "Number", + "value": 0.0, + "__meta": [] + }, + "border": { + "type": "Number", + "value": 4.0, + "__meta": [ + { + "sourceRange": [ + 60, + 61, + 0 + ] + } + ] + }, + "case": { + "type": "Solid", + "value": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 833, + 881, + 0 + ], + "tag": { + "end": 880, + "start": 874, + "type": "TagDeclarator", + "value": "edge1" + }, + "type": "extrudePlane" }, - "QUARTER_TURN": { - "type": "Number", - "value": 90.0, - "__meta": [] + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 887, + 944, + 0 + ], + "tag": { + "end": 943, + "start": 937, + "type": "TagDeclarator", + "value": "edge2" + }, + "type": "extrudePlane" }, - "THREE_QUARTER_TURN": { - "type": "Number", - "value": 270.0, - "__meta": [] + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 950, + 999, + 0 + ], + "tag": { + "end": 998, + "start": 992, + "type": "TagDeclarator", + "value": "edge3" + }, + "type": "extrudePlane" }, - "ZERO": { - "type": "Number", - "value": 0.0, - "__meta": [] - }, - "border": { - "type": "Number", - "value": 4.0, - "__meta": [ - { + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1005, + 1024, + 0 + ], + "tag": { + "end": 1023, + "start": 1017, + "type": "TagDeclarator", + "value": "edge4" + }, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", "sourceRange": [ - 60, - 61, + 833, + 881, 0 ] - } - ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 880, + "start": 874, + "type": "TagDeclarator", + "value": "edge1" + }, + "to": [ + 38.0, + 0.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 887, + 944, + 0 + ] + }, + "from": [ + 38.0, + 0.0 + ], + "tag": { + "end": 943, + "start": 937, + "type": "TagDeclarator", + "value": "edge2" + }, + "to": [ + 38.0, + 73.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 950, + 999, + 0 + ] + }, + "from": [ + 38.0, + 73.0 + ], + "tag": { + "end": 998, + "start": 992, + "type": "TagDeclarator", + "value": "edge3" + }, + "to": [ + 0.0, + 73.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1005, + 1024, + 0 + ] + }, + "from": [ + 0.0, + 73.0 + ], + "tag": { + "end": 1023, + "start": 1017, + "type": "TagDeclarator", + "value": "edge4" + }, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] }, - "case": { - "type": "Solid", - "value": { - "type": "Solid", + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { + "sourceRange": [ + 802, + 827, + 0 + ] + } + }, + "tags": { + "edge1": { + "type": "TagIdentifier", + "value": "edge1", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 833, + 881, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 880, + "start": 874, + "type": "TagDeclarator", + "value": "edge1" + }, + "to": [ + 38.0, + 0.0 + ], + "type": "ToPoint" + }, + "surface": { "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ @@ -61,8 +310,51 @@ description: Program memory after executing fillet-and-shell.kcl "value": "edge1" }, "type": "extrudePlane" - }, + } + }, + "__meta": [ { + "sourceRange": [ + 874, + 880, + 0 + ] + } + ] + }, + "edge2": { + "type": "TagIdentifier", + "value": "edge2", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 887, + 944, + 0 + ] + }, + "from": [ + 38.0, + 0.0 + ], + "tag": { + "end": 943, + "start": 937, + "type": "TagDeclarator", + "value": "edge2" + }, + "to": [ + 38.0, + 73.0 + ], + "type": "ToPoint" + }, + "surface": { "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ @@ -77,8 +369,51 @@ description: Program memory after executing fillet-and-shell.kcl "value": "edge2" }, "type": "extrudePlane" - }, + } + }, + "__meta": [ { + "sourceRange": [ + 937, + 943, + 0 + ] + } + ] + }, + "edge3": { + "type": "TagIdentifier", + "value": "edge3", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 950, + 999, + 0 + ] + }, + "from": [ + 38.0, + 73.0 + ], + "tag": { + "end": 998, + "start": 992, + "type": "TagDeclarator", + "value": "edge3" + }, + "to": [ + 0.0, + 73.0 + ], + "type": "ToPoint" + }, + "surface": { "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ @@ -93,8 +428,51 @@ description: Program memory after executing fillet-and-shell.kcl "value": "edge3" }, "type": "extrudePlane" - }, + } + }, + "__meta": [ { + "sourceRange": [ + 992, + 998, + 0 + ] + } + ] + }, + "edge4": { + "type": "TagIdentifier", + "value": "edge4", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1005, + 1024, + 0 + ] + }, + "from": [ + 0.0, + 73.0 + ], + "tag": { + "end": 1023, + "start": 1017, + "type": "TagDeclarator", + "value": "edge4" + }, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + }, + "surface": { "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ @@ -110,1724 +488,1082 @@ description: Program memory after executing fillet-and-shell.kcl }, "type": "extrudePlane" } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 833, - 881, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": { - "end": 880, - "start": 874, - "type": "TagDeclarator", - "value": "edge1" - }, - "to": [ - 38.0, - 0.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 887, - 944, - 0 - ] - }, - "from": [ - 38.0, - 0.0 - ], - "tag": { - "end": 943, - "start": 937, - "type": "TagDeclarator", - "value": "edge2" - }, - "to": [ - 38.0, - 73.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 950, - 999, - 0 - ] - }, - "from": [ - 38.0, - 73.0 - ], - "tag": { - "end": 998, - "start": 992, - "type": "TagDeclarator", - "value": "edge3" - }, - "to": [ - 0.0, - 73.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1005, - 1024, - 0 - ] - }, - "from": [ - 0.0, - 73.0 - ], - "tag": { - "end": 1023, - "start": 1017, - "type": "TagDeclarator", - "value": "edge4" - }, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 802, - 827, - 0 - ] - } - }, - "tags": { - "edge1": { - "type": "TagIdentifier", - "value": "edge1", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 833, - 881, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": { - "end": 880, - "start": 874, - "type": "TagDeclarator", - "value": "edge1" - }, - "to": [ - 38.0, - 0.0 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 833, - 881, - 0 - ], - "tag": { - "end": 880, - "start": 874, - "type": "TagDeclarator", - "value": "edge1" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 874, - 880, - 0 - ] - } - ] - }, - "edge2": { - "type": "TagIdentifier", - "value": "edge2", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 887, - 944, - 0 - ] - }, - "from": [ - 38.0, - 0.0 - ], - "tag": { - "end": 943, - "start": 937, - "type": "TagDeclarator", - "value": "edge2" - }, - "to": [ - 38.0, - 73.0 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 887, - 944, - 0 - ], - "tag": { - "end": 943, - "start": 937, - "type": "TagDeclarator", - "value": "edge2" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 937, - 943, - 0 - ] - } - ] - }, - "edge3": { - "type": "TagIdentifier", - "value": "edge3", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 950, - 999, - 0 - ] - }, - "from": [ - 38.0, - 73.0 - ], - "tag": { - "end": 998, - "start": 992, - "type": "TagDeclarator", - "value": "edge3" - }, - "to": [ - 0.0, - 73.0 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 950, - 999, - 0 - ], - "tag": { - "end": 998, - "start": 992, - "type": "TagDeclarator", - "value": "edge3" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 992, - 998, - 0 - ] - } - ] - }, - "edge4": { - "type": "TagIdentifier", - "value": "edge4", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1005, - 1024, - 0 - ] - }, - "from": [ - 0.0, - 73.0 - ], - "tag": { - "end": 1023, - "start": 1017, - "type": "TagDeclarator", - "value": "edge4" - }, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1005, - 1024, - 0 - ], - "tag": { - "end": 1023, - "start": 1017, - "type": "TagDeclarator", - "value": "edge4" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 1017, - 1023, - 0 - ] - } - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 802, - 827, - 0 - ] - } - ] - }, - "height": 8.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "edgeCuts": [ - { - "type": "fillet", - "id": "[uuid]", - "radius": 1.0, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 1.0, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 1.0, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 1.0, - "edgeId": "[uuid]", - "tag": null - } - ], - "units": { - "type": "Mm" }, "__meta": [ { "sourceRange": [ - 802, - 827, + 1017, + 1023, 0 ] } ] } }, - "caseHeight": { - "type": "Number", - "value": 8.0, - "__meta": [ - { - "sourceRange": [ - 165, - 166, - 0 - ] - } - ] + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" }, - "caseLength": { - "type": "Number", - "value": 73.0, - "__meta": [ - { - "sourceRange": [ - 28, - 30, - 0 - ] - }, - { - "sourceRange": [ - 60, - 61, - 0 - ] - }, - { - "sourceRange": [ - 150, - 151, - 0 - ] - } - ] - }, - "caseThickness": { - "type": "Number", - "value": 1.0, - "__meta": [ - { - "sourceRange": [ - 48, - 49, - 0 - ] - } - ] - }, - "caseWidth": { - "type": "Number", - "value": 38.0, - "__meta": [ - { - "sourceRange": [ - 12, - 14, - 0 - ] - }, - { - "sourceRange": [ - 60, - 61, - 0 - ] - }, - { - "sourceRange": [ - 113, - 114, - 0 - ] - } - ] - }, - "connectorPadding": { - "type": "Number", - "value": 4.0, - "__meta": [ - { - "sourceRange": [ - 355, - 356, - 0 - ] - } - ] - }, - "edge1": { - "type": "TagIdentifier", - "type": "TagIdentifier", - "value": "edge1", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 833, - 881, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": { - "end": 880, - "start": 874, - "type": "TagDeclarator", - "value": "edge1" - }, - "to": [ - 38.0, - 0.0 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 833, - 881, - 0 - ], - "tag": { - "end": 880, - "start": 874, - "type": "TagDeclarator", - "value": "edge1" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 874, - 880, - 0 - ] - } - ] - }, - "edge2": { - "type": "TagIdentifier", - "type": "TagIdentifier", - "value": "edge2", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 887, - 944, - 0 - ] - }, - "from": [ - 38.0, - 0.0 - ], - "tag": { - "end": 943, - "start": 937, - "type": "TagDeclarator", - "value": "edge2" - }, - "to": [ - 38.0, - 73.0 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 887, - 944, - 0 - ], - "tag": { - "end": 943, - "start": 937, - "type": "TagDeclarator", - "value": "edge2" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 937, - 943, - 0 - ] - } - ] - }, - "edge3": { - "type": "TagIdentifier", - "type": "TagIdentifier", - "value": "edge3", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 950, - 999, - 0 - ] - }, - "from": [ - 38.0, - 73.0 - ], - "tag": { - "end": 998, - "start": 992, - "type": "TagDeclarator", - "value": "edge3" - }, - "to": [ - 0.0, - 73.0 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 950, - 999, - 0 - ], - "tag": { - "end": 998, - "start": 992, - "type": "TagDeclarator", - "value": "edge3" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 992, - 998, - 0 - ] - } - ] - }, - "edge4": { - "type": "TagIdentifier", - "type": "TagIdentifier", - "value": "edge4", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1005, - 1024, - 0 - ] - }, - "from": [ - 0.0, - 73.0 - ], - "tag": { - "end": 1023, - "start": 1017, - "type": "TagDeclarator", - "value": "edge4" - }, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1005, - 1024, - 0 - ], - "tag": { - "end": 1023, - "start": 1017, - "type": "TagDeclarator", - "value": "edge4" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 1017, - 1023, - 0 - ] - } - ] - }, - "lengthBetweenScrews": { - "type": "Number", - "value": 58.0, - "__meta": [ - { - "sourceRange": [ - 214, - 216, - 0 - ] - }, - { - "sourceRange": [ - 219, - 220, - 0 - ] - } - ] - }, - "m25Screw": { - "type": "Function", - "expression": { - "body": { - "body": [ - { - "declaration": { - "end": 1512, - "id": { - "end": 1311, - "name": "screw", - "start": 1306, - "type": "Identifier" - }, - "init": { - "body": [ - { - "arguments": [ - { - "end": 1332, - "raw": "\"XY\"", - "start": 1328, - "type": "Literal", - "type": "Literal", - "value": "XY" - } - ], - "callee": { - "end": 1327, - "name": "startSketchOn", - "start": 1314, - "type": "Identifier" - }, - "end": 1333, - "start": 1314, - "type": "CallExpression", - "type": "CallExpression" - }, - { - "arguments": [ - { - "elements": [ - { - "end": 1358, - "raw": "0", - "start": 1357, - "type": "Literal", - "type": "Literal", - "value": { - "value": 0.0, - "suffix": "None" - } - }, - { - "end": 1361, - "raw": "0", - "start": 1360, - "type": "Literal", - "type": "Literal", - "value": { - "value": 0.0, - "suffix": "None" - } - } - ], - "end": 1362, - "start": 1356, - "type": "ArrayExpression", - "type": "ArrayExpression" - }, - { - "end": 1365, - "start": 1364, - "type": "PipeSubstitution", - "type": "PipeSubstitution" - } - ], - "callee": { - "end": 1355, - "name": "startProfileAt", - "start": 1341, - "type": "Identifier" - }, - "end": 1366, - "start": 1341, - "type": "CallExpression", - "type": "CallExpression" - }, - { - "arguments": [ - { - "end": 1414, - "properties": [ - { - "end": 1398, - "key": { - "end": 1389, - "name": "center", - "start": 1383, - "type": "Identifier" - }, - "start": 1383, - "type": "ObjectProperty", - "value": { - "elements": [ - { - "end": 1394, - "name": "x", - "start": 1393, - "type": "Identifier", - "type": "Identifier" - }, - { - "end": 1397, - "name": "y", - "start": 1396, - "type": "Identifier", - "type": "Identifier" - } - ], - "end": 1398, - "start": 1392, - "type": "ArrayExpression", - "type": "ArrayExpression" - } - }, - { - "end": 1412, - "key": { - "end": 1406, - "name": "radius", - "start": 1400, - "type": "Identifier" - }, - "start": 1400, - "type": "ObjectProperty", - "value": { - "end": 1412, - "raw": "2.5", - "start": 1409, - "type": "Literal", - "type": "Literal", - "value": { - "value": 2.5, - "suffix": "None" - } - } - } - ], - "start": 1381, - "type": "ObjectExpression", - "type": "ObjectExpression" - }, - { - "end": 1417, - "start": 1416, - "type": "PipeSubstitution", - "type": "PipeSubstitution" - } - ], - "callee": { - "end": 1380, - "name": "circle", - "start": 1374, - "type": "Identifier" - }, - "end": 1418, - "start": 1374, - "type": "CallExpression", - "type": "CallExpression" - }, - { - "arguments": [ - { - "arguments": [ - { - "end": 1472, - "properties": [ - { - "end": 1455, - "key": { - "end": 1446, - "name": "center", - "start": 1440, - "type": "Identifier" - }, - "start": 1440, - "type": "ObjectProperty", - "value": { - "elements": [ - { - "end": 1451, - "name": "x", - "start": 1450, - "type": "Identifier", - "type": "Identifier" - }, - { - "end": 1454, - "name": "y", - "start": 1453, - "type": "Identifier", - "type": "Identifier" - } - ], - "end": 1455, - "start": 1449, - "type": "ArrayExpression", - "type": "ArrayExpression" - } - }, - { - "end": 1470, - "key": { - "end": 1463, - "name": "radius", - "start": 1457, - "type": "Identifier" - }, - "start": 1457, - "type": "ObjectProperty", - "value": { - "end": 1470, - "raw": "1.25", - "start": 1466, - "type": "Literal", - "type": "Literal", - "value": { - "value": 1.25, - "suffix": "None" - } - } - } - ], - "start": 1438, - "type": "ObjectExpression", - "type": "ObjectExpression" - }, - { - "end": 1475, - "start": 1474, - "type": "PipeSubstitution", - "type": "PipeSubstitution" - } - ], - "callee": { - "end": 1437, - "name": "circle", - "start": 1431, - "type": "Identifier" - }, - "end": 1476, - "start": 1431, - "type": "CallExpression", - "type": "CallExpression" - }, - { - "end": 1479, - "start": 1478, - "type": "PipeSubstitution", - "type": "PipeSubstitution" - } - ], - "callee": { - "end": 1430, - "name": "hole", - "start": 1426, - "type": "Identifier" - }, - "end": 1480, - "start": 1426, - "type": "CallExpression", - "type": "CallExpression" - }, - { - "arguments": [ - { - "type": "LabeledArg", - "label": { - "type": "Identifier", - "name": "length" - }, - "arg": { - "end": 1511, - "name": "height", - "start": 1505, - "type": "Identifier", - "type": "Identifier" - } - } - ], - "callee": { - "end": 1495, - "name": "extrude", - "start": 1488, - "type": "Identifier" - }, - "end": 1512, - "start": 1488, - "type": "CallExpressionKw", - "type": "CallExpressionKw", - "unlabeled": null - } - ], - "end": 1512, - "start": 1314, - "type": "PipeExpression", - "type": "PipeExpression" - }, - "start": 1306, - "type": "VariableDeclarator" - }, - "end": 1512, - "kind": "const", - "start": 1306, - "type": "VariableDeclaration", - "type": "VariableDeclaration" - }, - { - "argument": { - "end": 1527, - "name": "screw", - "start": 1522, - "type": "Identifier", - "type": "Identifier" - }, - "end": 1527, - "start": 1515, - "type": "ReturnStatement", - "type": "ReturnStatement" - } - ], - "end": 1529, - "start": 1302 - }, - "end": 1529, - "params": [ - { - "type": "Parameter", - "identifier": { - "end": 1289, - "name": "x", - "start": 1288, - "type": "Identifier" - } - }, - { - "type": "Parameter", - "identifier": { - "end": 1292, - "name": "y", - "start": 1291, - "type": "Identifier" - } - }, - { - "type": "Parameter", - "identifier": { - "end": 1300, - "name": "height", - "start": 1294, - "type": "Identifier" - } - } - ], - "start": 1287, - "type": "FunctionExpression" - }, - "memory": [ - 0, - 1 - ], - "__meta": [ - { - "sourceRange": [ - 1287, - 1529, - 0 - ] - } - ] - }, - "microUsb1Distance": { - "type": "Number", - "value": 41.4, - "__meta": [ - { - "sourceRange": [ - 266, - 270, - 0 - ] - } - ] - }, - "microUsb2Distance": { - "type": "Number", - "value": 54.0, - "__meta": [ - { - "sourceRange": [ - 291, - 293, - 0 - ] - } - ] - }, - "microUsbWidth": { - "type": "Number", - "value": 7.4, - "__meta": [ - { - "sourceRange": [ - 332, - 335, - 0 - ] - } - ] - }, - "miniHdmiDistance": { - "type": "Number", - "value": 12.4, - "__meta": [ - { - "sourceRange": [ - 241, - 245, - 0 - ] - } - ] - }, - "miniHdmiHole": { - "type": "Sketch", - "value": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 467, - 558, - 0 - ] - }, - "from": [ - 0.0, - 10.8 - ], - "tag": null, - "to": [ - 0.0, - 22.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 564, - 655, - 0 - ] - }, - "from": [ - 0.0, - 22.0 - ], - "tag": null, - "to": [ - 1.0, - 22.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 661, - 754, - 0 - ] - }, - "from": [ - 1.0, - 22.0 - ], - "tag": null, - "to": [ - 1.0, - 10.8 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 760, - 768, - 0 - ] - }, - "from": [ - 1.0, - 10.8 - ], - "tag": null, - "to": [ - 0.0, - 10.8 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 10.799999999999999 - ], - "to": [ - 0.0, - 10.799999999999999 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 373, - 461, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 373, - 461, - 0 - ] - } + "__meta": [ + { + "sourceRange": [ + 802, + 827, + 0 ] } + ] + }, + "height": 8.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "edgeCuts": [ + { + "type": "fillet", + "id": "[uuid]", + "radius": 1.0, + "edgeId": "[uuid]", + "tag": null }, - "miniHdmiWidth": { - "type": "Number", - "value": 11.2, - "__meta": [ - { - "sourceRange": [ - 311, - 315, - 0 - ] - } - ] + { + "type": "fillet", + "id": "[uuid]", + "radius": 1.0, + "edgeId": "[uuid]", + "tag": null }, - "rpizLength": { - "type": "Number", - "value": 65.0, - "__meta": [ - { - "sourceRange": [ - 28, - 30, - 0 - ] - } - ] + { + "type": "fillet", + "id": "[uuid]", + "radius": 1.0, + "edgeId": "[uuid]", + "tag": null }, - "rpizWidth": { - "type": "Number", - "value": 30.0, - "__meta": [ - { - "sourceRange": [ - 12, - 14, - 0 - ] - } - ] - }, - "screwHeight": { - "type": "Number", - "value": 4.0, - "__meta": [ - { - "sourceRange": [ - 77, - 78, - 0 - ] - } - ] - }, - "widthBetweenScrews": { - "type": "Number", - "value": 23.0, - "__meta": [ - { - "sourceRange": [ - 189, - 191, - 0 - ] - } + { + "type": "fillet", + "id": "[uuid]", + "radius": 1.0, + "edgeId": "[uuid]", + "tag": null + } + ], + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 802, + 827, + 0 ] } + ] + } + }, + "caseHeight": { + "type": "Number", + "value": 8.0, + "__meta": [ + { + "sourceRange": [ + 165, + 166, + 0 + ] + } + ] + }, + "caseLength": { + "type": "Number", + "value": 73.0, + "__meta": [ + { + "sourceRange": [ + 28, + 30, + 0 + ] }, - "snapshots": [ + { + "sourceRange": [ + 60, + 61, + 0 + ] + }, + { + "sourceRange": [ + 150, + 151, + 0 + ] + } + ] + }, + "caseThickness": { + "type": "Number", + "value": 1.0, + "__meta": [ + { + "sourceRange": [ + 48, + 49, + 0 + ] + } + ] + }, + "caseWidth": { + "type": "Number", + "value": 38.0, + "__meta": [ + { + "sourceRange": [ + 12, + 14, + 0 + ] + }, + { + "sourceRange": [ + 60, + 61, + 0 + ] + }, + { + "sourceRange": [ + 113, + 114, + 0 + ] + } + ] + }, + "connectorPadding": { + "type": "Number", + "value": 4.0, + "__meta": [ + { + "sourceRange": [ + 355, + 356, + 0 + ] + } + ] + }, + "edge1": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "edge1", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 833, + 881, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 880, + "start": 874, + "type": "TagDeclarator", + "value": "edge1" + }, + "to": [ + 38.0, + 0.0 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 833, + 881, + 0 + ], + "tag": { + "end": 880, + "start": 874, + "type": "TagDeclarator", + "value": "edge1" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 874, + 880, + 0 + ] + } + ] + }, + "edge2": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "edge2", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 887, + 944, + 0 + ] + }, + "from": [ + 38.0, + 0.0 + ], + "tag": { + "end": 943, + "start": 937, + "type": "TagDeclarator", + "value": "edge2" + }, + "to": [ + 38.0, + 73.0 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 887, + 944, + 0 + ], + "tag": { + "end": 943, + "start": 937, + "type": "TagDeclarator", + "value": "edge2" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 937, + 943, + 0 + ] + } + ] + }, + "edge3": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "edge3", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 950, + 999, + 0 + ] + }, + "from": [ + 38.0, + 73.0 + ], + "tag": { + "end": 998, + "start": 992, + "type": "TagDeclarator", + "value": "edge3" + }, + "to": [ + 0.0, + 73.0 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 950, + 999, + 0 + ], + "tag": { + "end": 998, + "start": 992, + "type": "TagDeclarator", + "value": "edge3" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 992, + 998, + 0 + ] + } + ] + }, + "edge4": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "edge4", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1005, + 1024, + 0 + ] + }, + "from": [ + 0.0, + 73.0 + ], + "tag": { + "end": 1023, + "start": 1017, + "type": "TagDeclarator", + "value": "edge4" + }, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1005, + 1024, + 0 + ], + "tag": { + "end": 1023, + "start": 1017, + "type": "TagDeclarator", + "value": "edge4" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 1017, + 1023, + 0 + ] + } + ] + }, + "lengthBetweenScrews": { + "type": "Number", + "value": 58.0, + "__meta": [ + { + "sourceRange": [ + 214, + 216, + 0 + ] + }, + { + "sourceRange": [ + 219, + 220, + 0 + ] + } + ] + }, + "m25Screw": { + "type": "Function", + "expression": { + "body": { + "body": [ + { + "declaration": { + "end": 1512, + "id": { + "end": 1311, + "name": "screw", + "start": 1306, + "type": "Identifier" + }, + "init": { + "body": [ + { + "arguments": [ + { + "end": 1332, + "raw": "\"XY\"", + "start": 1328, + "type": "Literal", + "type": "Literal", + "value": "XY" + } + ], + "callee": { + "end": 1327, + "name": "startSketchOn", + "start": 1314, + "type": "Identifier" + }, + "end": 1333, + "start": 1314, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 1358, + "raw": "0", + "start": 1357, + "type": "Literal", + "type": "Literal", + "value": { + "value": 0.0, + "suffix": "None" + } + }, + { + "end": 1361, + "raw": "0", + "start": 1360, + "type": "Literal", + "type": "Literal", + "value": { + "value": 0.0, + "suffix": "None" + } + } + ], + "end": 1362, + "start": 1356, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 1365, + "start": 1364, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 1355, + "name": "startProfileAt", + "start": 1341, + "type": "Identifier" + }, + "end": 1366, + "start": 1341, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 1414, + "properties": [ + { + "end": 1398, + "key": { + "end": 1389, + "name": "center", + "start": 1383, + "type": "Identifier" + }, + "start": 1383, + "type": "ObjectProperty", + "value": { + "elements": [ + { + "end": 1394, + "name": "x", + "start": 1393, + "type": "Identifier", + "type": "Identifier" + }, + { + "end": 1397, + "name": "y", + "start": 1396, + "type": "Identifier", + "type": "Identifier" + } + ], + "end": 1398, + "start": 1392, + "type": "ArrayExpression", + "type": "ArrayExpression" + } + }, + { + "end": 1412, + "key": { + "end": 1406, + "name": "radius", + "start": 1400, + "type": "Identifier" + }, + "start": 1400, + "type": "ObjectProperty", + "value": { + "end": 1412, + "raw": "2.5", + "start": 1409, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.5, + "suffix": "None" + } + } + } + ], + "start": 1381, + "type": "ObjectExpression", + "type": "ObjectExpression" + }, + { + "end": 1417, + "start": 1416, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 1380, + "name": "circle", + "start": 1374, + "type": "Identifier" + }, + "end": 1418, + "start": 1374, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "arguments": [ + { + "end": 1472, + "properties": [ + { + "end": 1455, + "key": { + "end": 1446, + "name": "center", + "start": 1440, + "type": "Identifier" + }, + "start": 1440, + "type": "ObjectProperty", + "value": { + "elements": [ + { + "end": 1451, + "name": "x", + "start": 1450, + "type": "Identifier", + "type": "Identifier" + }, + { + "end": 1454, + "name": "y", + "start": 1453, + "type": "Identifier", + "type": "Identifier" + } + ], + "end": 1455, + "start": 1449, + "type": "ArrayExpression", + "type": "ArrayExpression" + } + }, + { + "end": 1470, + "key": { + "end": 1463, + "name": "radius", + "start": 1457, + "type": "Identifier" + }, + "start": 1457, + "type": "ObjectProperty", + "value": { + "end": 1470, + "raw": "1.25", + "start": 1466, + "type": "Literal", + "type": "Literal", + "value": { + "value": 1.25, + "suffix": "None" + } + } + } + ], + "start": 1438, + "type": "ObjectExpression", + "type": "ObjectExpression" + }, + { + "end": 1475, + "start": 1474, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 1437, + "name": "circle", + "start": 1431, + "type": "Identifier" + }, + "end": 1476, + "start": 1431, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "end": 1479, + "start": 1478, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 1430, + "name": "hole", + "start": 1426, + "type": "Identifier" + }, + "end": 1480, + "start": 1426, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "type": "Identifier", + "name": "length" + }, + "arg": { + "end": 1511, + "name": "height", + "start": 1505, + "type": "Identifier", + "type": "Identifier" + } + } + ], + "callee": { + "end": 1495, + "name": "extrude", + "start": 1488, + "type": "Identifier" + }, + "end": 1512, + "start": 1488, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + } + ], + "end": 1512, + "start": 1314, + "type": "PipeExpression", + "type": "PipeExpression" + }, + "start": 1306, + "type": "VariableDeclarator" + }, + "end": 1512, + "kind": "const", + "start": 1306, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "argument": { + "end": 1527, + "name": "screw", + "start": 1522, + "type": "Identifier", + "type": "Identifier" + }, + "end": 1527, + "start": 1515, + "type": "ReturnStatement", + "type": "ReturnStatement" + } + ], + "end": 1529, + "start": 1302 + }, + "end": 1529, + "params": [ { - "parent_snapshot": null, - "data": { - "edge1": { - "type": "TagIdentifier", - "type": "TagIdentifier", - "value": "edge1", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 833, - 881, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": { - "end": 880, - "start": 874, - "type": "TagDeclarator", - "value": "edge1" - }, - "to": [ - 38.0, - 0.0 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 833, - 881, - 0 - ], - "tag": { - "end": 880, - "start": 874, - "type": "TagDeclarator", - "value": "edge1" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 874, - 880, - 0 - ] - } - ] - }, - "edge2": { - "type": "TagIdentifier", - "type": "TagIdentifier", - "value": "edge2", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 887, - 944, - 0 - ] - }, - "from": [ - 38.0, - 0.0 - ], - "tag": { - "end": 943, - "start": 937, - "type": "TagDeclarator", - "value": "edge2" - }, - "to": [ - 38.0, - 73.0 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 887, - 944, - 0 - ], - "tag": { - "end": 943, - "start": 937, - "type": "TagDeclarator", - "value": "edge2" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 937, - 943, - 0 - ] - } - ] - }, - "edge3": { - "type": "TagIdentifier", - "type": "TagIdentifier", - "value": "edge3", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 950, - 999, - 0 - ] - }, - "from": [ - 38.0, - 73.0 - ], - "tag": { - "end": 998, - "start": 992, - "type": "TagDeclarator", - "value": "edge3" - }, - "to": [ - 0.0, - 73.0 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 950, - 999, - 0 - ], - "tag": { - "end": 998, - "start": 992, - "type": "TagDeclarator", - "value": "edge3" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 992, - 998, - 0 - ] - } - ] - }, - "edge4": { - "type": "TagIdentifier", - "type": "TagIdentifier", - "value": "edge4", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1005, - 1024, - 0 - ] - }, - "from": [ - 0.0, - 73.0 - ], - "tag": { - "end": 1023, - "start": 1017, - "type": "TagDeclarator", - "value": "edge4" - }, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1005, - 1024, - 0 - ], - "tag": { - "end": 1023, - "start": 1017, - "type": "TagDeclarator", - "value": "edge4" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 1017, - 1023, - 0 - ] - } - ] - }, - "m25Screw": { - "type": "Tombstone", - "value": null, - "__meta": [] - } + "type": "Parameter", + "identifier": { + "end": 1289, + "name": "x", + "start": 1288, + "type": "Identifier" + } + }, + { + "type": "Parameter", + "identifier": { + "end": 1292, + "name": "y", + "start": 1291, + "type": "Identifier" + } + }, + { + "type": "Parameter", + "identifier": { + "end": 1300, + "name": "height", + "start": 1294, + "type": "Identifier" } } ], - "parent": null + "start": 1287, + "type": "FunctionExpression" + }, + "memory": [ + 0, + 1 + ], + "__meta": [ + { + "sourceRange": [ + 1287, + 1529, + 0 + ] + } + ] + }, + "microUsb1Distance": { + "type": "Number", + "value": 41.4, + "__meta": [ + { + "sourceRange": [ + 266, + 270, + 0 + ] + } + ] + }, + "microUsb2Distance": { + "type": "Number", + "value": 54.0, + "__meta": [ + { + "sourceRange": [ + 291, + 293, + 0 + ] + } + ] + }, + "microUsbWidth": { + "type": "Number", + "value": 7.4, + "__meta": [ + { + "sourceRange": [ + 332, + 335, + 0 + ] + } + ] + }, + "miniHdmiDistance": { + "type": "Number", + "value": 12.4, + "__meta": [ + { + "sourceRange": [ + 241, + 245, + 0 + ] + } + ] + }, + "miniHdmiHole": { + "type": "Sketch", + "value": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 467, + 558, + 0 + ] + }, + "from": [ + 0.0, + 10.8 + ], + "tag": null, + "to": [ + 0.0, + 22.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 564, + 655, + 0 + ] + }, + "from": [ + 0.0, + 22.0 + ], + "tag": null, + "to": [ + 1.0, + 22.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 661, + 754, + 0 + ] + }, + "from": [ + 1.0, + 22.0 + ], + "tag": null, + "to": [ + 1.0, + 10.8 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 760, + 768, + 0 + ] + }, + "from": [ + 1.0, + 10.8 + ], + "tag": null, + "to": [ + 0.0, + 10.8 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 10.799999999999999 + ], + "to": [ + 0.0, + 10.799999999999999 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 373, + 461, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 373, + 461, + 0 + ] + } + ] } - ], - "currentEnv": [ - 0, - 0 - ], - "callStack": [] + }, + "miniHdmiWidth": { + "type": "Number", + "value": 11.2, + "__meta": [ + { + "sourceRange": [ + 311, + 315, + 0 + ] + } + ] + }, + "rpizLength": { + "type": "Number", + "value": 65.0, + "__meta": [ + { + "sourceRange": [ + 28, + 30, + 0 + ] + } + ] + }, + "rpizWidth": { + "type": "Number", + "value": 30.0, + "__meta": [ + { + "sourceRange": [ + 12, + 14, + 0 + ] + } + ] + }, + "screwHeight": { + "type": "Number", + "value": 4.0, + "__meta": [ + { + "sourceRange": [ + 77, + 78, + 0 + ] + } + ] + }, + "widthBetweenScrews": { + "type": "Number", + "value": 23.0, + "__meta": [ + { + "sourceRange": [ + 189, + 191, + 0 + ] + } + ] + } } diff --git a/src/wasm-lib/kcl/tests/function_sketch/program_memory.snap b/src/wasm-lib/kcl/tests/function_sketch/program_memory.snap index 7776c6bee..3499588a5 100644 --- a/src/wasm-lib/kcl/tests/function_sketch/program_memory.snap +++ b/src/wasm-lib/kcl/tests/function_sketch/program_memory.snap @@ -1,655 +1,626 @@ --- source: kcl/src/simulation_tests.rs -description: Program memory after executing function_sketch.kcl +description: Variables in memory after executing function_sketch.kcl --- { - "environments": [ - { - "bindings": { - "HALF_TURN": { - "type": "Number", - "value": 180.0, - "__meta": [] - }, - "QUARTER_TURN": { - "type": "Number", - "value": 90.0, - "__meta": [] - }, - "THREE_QUARTER_TURN": { - "type": "Number", - "value": 270.0, - "__meta": [] - }, - "ZERO": { - "type": "Number", - "value": 0.0, - "__meta": [] - }, - "box": { - "type": "Function", - "expression": { - "body": { - "body": [ - { - "declaration": { - "end": 202, - "id": { - "end": 25, - "name": "myBox", - "start": 20, + "HALF_TURN": { + "type": "Number", + "value": 180.0, + "__meta": [] + }, + "QUARTER_TURN": { + "type": "Number", + "value": 90.0, + "__meta": [] + }, + "THREE_QUARTER_TURN": { + "type": "Number", + "value": 270.0, + "__meta": [] + }, + "ZERO": { + "type": "Number", + "value": 0.0, + "__meta": [] + }, + "box": { + "type": "Function", + "expression": { + "body": { + "body": [ + { + "declaration": { + "end": 202, + "id": { + "end": 25, + "name": "myBox", + "start": 20, + "type": "Identifier" + }, + "init": { + "body": [ + { + "arguments": [ + { + "end": 46, + "raw": "'XY'", + "start": 42, + "type": "Literal", + "type": "Literal", + "value": "XY" + } + ], + "callee": { + "end": 41, + "name": "startSketchOn", + "start": 28, "type": "Identifier" }, - "init": { - "body": [ - { - "arguments": [ - { - "end": 46, - "raw": "'XY'", - "start": 42, - "type": "Literal", - "type": "Literal", - "value": "XY" + "end": 47, + "start": 28, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 72, + "raw": "0", + "start": 71, + "type": "Literal", + "type": "Literal", + "value": { + "value": 0.0, + "suffix": "None" } - ], - "callee": { - "end": 41, - "name": "startSketchOn", - "start": 28, - "type": "Identifier" }, - "end": 47, - "start": 28, - "type": "CallExpression", - "type": "CallExpression" + { + "end": 75, + "raw": "0", + "start": 74, + "type": "Literal", + "type": "Literal", + "value": { + "value": 0.0, + "suffix": "None" + } + } + ], + "end": 76, + "start": 70, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 79, + "start": 78, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 69, + "name": "startProfileAt", + "start": 55, + "type": "Identifier" + }, + "end": 80, + "start": 55, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "type": "Identifier", + "name": "end" }, - { - "arguments": [ + "arg": { + "elements": [ { - "elements": [ - { - "end": 72, - "raw": "0", - "start": 71, - "type": "Literal", - "type": "Literal", - "value": { - "value": 0.0, - "suffix": "None" - } - }, - { - "end": 75, - "raw": "0", - "start": 74, - "type": "Literal", - "type": "Literal", - "value": { - "value": 0.0, - "suffix": "None" - } - } - ], - "end": 76, - "start": 70, - "type": "ArrayExpression", - "type": "ArrayExpression" + "end": 101, + "raw": "0", + "start": 100, + "type": "Literal", + "type": "Literal", + "value": { + "value": 0.0, + "suffix": "None" + } }, { - "end": 79, - "start": 78, - "type": "PipeSubstitution", - "type": "PipeSubstitution" + "end": 104, + "name": "l", + "start": 103, + "type": "Identifier", + "type": "Identifier" } ], - "callee": { - "end": 69, - "name": "startProfileAt", - "start": 55, - "type": "Identifier" - }, - "end": 80, - "start": 55, - "type": "CallExpression", - "type": "CallExpression" + "end": 105, + "start": 99, + "type": "ArrayExpression", + "type": "ArrayExpression" + } + } + ], + "callee": { + "end": 92, + "name": "line", + "start": 88, + "type": "Identifier" + }, + "end": 106, + "start": 88, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "type": "Identifier", + "name": "end" }, - { - "arguments": [ + "arg": { + "elements": [ { - "type": "LabeledArg", - "label": { - "type": "Identifier", - "name": "end" - }, - "arg": { - "elements": [ - { - "end": 101, - "raw": "0", - "start": 100, - "type": "Literal", - "type": "Literal", - "value": { - "value": 0.0, - "suffix": "None" - } - }, - { - "end": 104, - "name": "l", - "start": 103, - "type": "Identifier", - "type": "Identifier" - } - ], - "end": 105, - "start": 99, - "type": "ArrayExpression", - "type": "ArrayExpression" + "end": 127, + "name": "w", + "start": 126, + "type": "Identifier", + "type": "Identifier" + }, + { + "end": 130, + "raw": "0", + "start": 129, + "type": "Literal", + "type": "Literal", + "value": { + "value": 0.0, + "suffix": "None" } } ], - "callee": { - "end": 92, - "name": "line", - "start": 88, - "type": "Identifier" - }, - "end": 106, - "start": 88, - "type": "CallExpressionKw", - "type": "CallExpressionKw", - "unlabeled": null + "end": 131, + "start": 125, + "type": "ArrayExpression", + "type": "ArrayExpression" + } + } + ], + "callee": { + "end": 118, + "name": "line", + "start": 114, + "type": "Identifier" + }, + "end": 132, + "start": 114, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "type": "Identifier", + "name": "end" }, - { - "arguments": [ + "arg": { + "elements": [ { - "type": "LabeledArg", - "label": { - "type": "Identifier", - "name": "end" - }, - "arg": { - "elements": [ - { - "end": 127, - "name": "w", - "start": 126, - "type": "Identifier", - "type": "Identifier" - }, - { - "end": 130, - "raw": "0", - "start": 129, - "type": "Literal", - "type": "Literal", - "value": { - "value": 0.0, - "suffix": "None" - } - } - ], - "end": 131, - "start": 125, - "type": "ArrayExpression", - "type": "ArrayExpression" + "end": 153, + "raw": "0", + "start": 152, + "type": "Literal", + "type": "Literal", + "value": { + "value": 0.0, + "suffix": "None" } - } - ], - "callee": { - "end": 118, - "name": "line", - "start": 114, - "type": "Identifier" - }, - "end": 132, - "start": 114, - "type": "CallExpressionKw", - "type": "CallExpressionKw", - "unlabeled": null - }, - { - "arguments": [ + }, { - "type": "LabeledArg", - "label": { - "type": "Identifier", - "name": "end" - }, - "arg": { - "elements": [ - { - "end": 153, - "raw": "0", - "start": 152, - "type": "Literal", - "type": "Literal", - "value": { - "value": 0.0, - "suffix": "None" - } - }, - { - "argument": { - "end": 157, - "name": "l", - "start": 156, - "type": "Identifier", - "type": "Identifier" - }, - "end": 157, - "operator": "-", - "start": 155, - "type": "UnaryExpression", - "type": "UnaryExpression" - } - ], - "end": 158, - "start": 151, - "type": "ArrayExpression", - "type": "ArrayExpression" - } - } - ], - "callee": { - "end": 144, - "name": "line", - "start": 140, - "type": "Identifier" - }, - "end": 159, - "start": 140, - "type": "CallExpressionKw", - "type": "CallExpressionKw", - "unlabeled": null - }, - { - "arguments": [ - { - "end": 174, - "start": 173, - "type": "PipeSubstitution", - "type": "PipeSubstitution" - } - ], - "callee": { - "end": 172, - "name": "close", - "start": 167, - "type": "Identifier" - }, - "end": 175, - "start": 167, - "type": "CallExpression", - "type": "CallExpression" - }, - { - "arguments": [ - { - "type": "LabeledArg", - "label": { - "type": "Identifier", - "name": "length" - }, - "arg": { - "end": 201, - "name": "h", - "start": 200, + "argument": { + "end": 157, + "name": "l", + "start": 156, "type": "Identifier", "type": "Identifier" - } + }, + "end": 157, + "operator": "-", + "start": 155, + "type": "UnaryExpression", + "type": "UnaryExpression" } ], - "callee": { - "end": 190, - "name": "extrude", - "start": 183, - "type": "Identifier" - }, - "end": 202, - "start": 183, - "type": "CallExpressionKw", - "type": "CallExpressionKw", - "unlabeled": null + "end": 158, + "start": 151, + "type": "ArrayExpression", + "type": "ArrayExpression" } - ], - "end": 202, - "start": 28, - "type": "PipeExpression", - "type": "PipeExpression" - }, - "start": 20, - "type": "VariableDeclarator" - }, - "end": 202, - "kind": "const", - "start": 20, - "type": "VariableDeclaration", - "type": "VariableDeclaration" - }, - { - "argument": { - "end": 218, - "name": "myBox", - "start": 213, - "type": "Identifier", - "type": "Identifier" - }, - "end": 218, - "start": 206, - "type": "ReturnStatement", - "type": "ReturnStatement" - } - ], - "end": 220, - "nonCodeMeta": { - "nonCodeNodes": { - "0": [ - { - "end": 206, - "start": 202, - "type": "NonCodeNode", - "value": { - "type": "newLine" } - } - ] - }, - "startNodes": [] + ], + "callee": { + "end": 144, + "name": "line", + "start": 140, + "type": "Identifier" + }, + "end": 159, + "start": 140, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "end": 174, + "start": 173, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 172, + "name": "close", + "start": 167, + "type": "Identifier" + }, + "end": 175, + "start": 167, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "type": "Identifier", + "name": "length" + }, + "arg": { + "end": 201, + "name": "h", + "start": 200, + "type": "Identifier", + "type": "Identifier" + } + } + ], + "callee": { + "end": 190, + "name": "extrude", + "start": 183, + "type": "Identifier" + }, + "end": 202, + "start": 183, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + } + ], + "end": 202, + "start": 28, + "type": "PipeExpression", + "type": "PipeExpression" }, - "start": 16 + "start": 20, + "type": "VariableDeclarator" }, - "end": 220, - "params": [ - { - "type": "Parameter", - "identifier": { - "end": 8, - "name": "h", - "start": 7, - "type": "Identifier" - } - }, - { - "type": "Parameter", - "identifier": { - "end": 11, - "name": "l", - "start": 10, - "type": "Identifier" - } - }, - { - "type": "Parameter", - "identifier": { - "end": 14, - "name": "w", - "start": 13, - "type": "Identifier" - } - } - ], - "start": 6, - "type": "FunctionExpression" + "end": 202, + "kind": "const", + "start": 20, + "type": "VariableDeclaration", + "type": "VariableDeclaration" }, - "memory": [ - 0, - 1 - ], - "__meta": [ - { - "sourceRange": [ - 6, - 220, - 0 - ] - } - ] - }, - "fnBox": { - "type": "Solid", - "value": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 88, - 106, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 114, - 132, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 140, - 159, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 167, - 175, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 88, - 106, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 6.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 114, - 132, - 0 - ] - }, - "from": [ - 0.0, - 6.0 - ], - "tag": null, - "to": [ - 10.0, - 6.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 140, - 159, - 0 - ] - }, - "from": [ - 10.0, - 6.0 - ], - "tag": null, - "to": [ - 10.0, - 0.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 167, - 175, - 0 - ] - }, - "from": [ - 10.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 55, - 80, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 55, - 80, - 0 - ] - } - ] + { + "argument": { + "end": 218, + "name": "myBox", + "start": 213, + "type": "Identifier", + "type": "Identifier" }, - "height": 3.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ + "end": 218, + "start": 206, + "type": "ReturnStatement", + "type": "ReturnStatement" + } + ], + "end": 220, + "nonCodeMeta": { + "nonCodeNodes": { + "0": [ { - "sourceRange": [ - 55, - 80, - 0 - ] + "end": 206, + "start": 202, + "type": "NonCodeNode", + "value": { + "type": "newLine" + } } ] - } - } + }, + "startNodes": [] + }, + "start": 16 }, - "snapshots": [ + "end": 220, + "params": [ { - "parent_snapshot": null, - "data": { - "box": { - "type": "Tombstone", - "value": null, - "__meta": [] - }, - "fnBox": { - "type": "Tombstone", - "value": null, - "__meta": [] - } + "type": "Parameter", + "identifier": { + "end": 8, + "name": "h", + "start": 7, + "type": "Identifier" + } + }, + { + "type": "Parameter", + "identifier": { + "end": 11, + "name": "l", + "start": 10, + "type": "Identifier" + } + }, + { + "type": "Parameter", + "identifier": { + "end": 14, + "name": "w", + "start": 13, + "type": "Identifier" } } ], - "parent": null + "start": 6, + "type": "FunctionExpression" + }, + "memory": [ + 0, + 1 + ], + "__meta": [ + { + "sourceRange": [ + 6, + 220, + 0 + ] + } + ] + }, + "fnBox": { + "type": "Solid", + "value": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 88, + 106, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 114, + 132, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 140, + 159, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 167, + 175, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 88, + 106, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 6.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 114, + 132, + 0 + ] + }, + "from": [ + 0.0, + 6.0 + ], + "tag": null, + "to": [ + 10.0, + 6.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 140, + 159, + 0 + ] + }, + "from": [ + 10.0, + 6.0 + ], + "tag": null, + "to": [ + 10.0, + 0.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 167, + 175, + 0 + ] + }, + "from": [ + 10.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 55, + 80, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 55, + 80, + 0 + ] + } + ] + }, + "height": 3.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 55, + 80, + 0 + ] + } + ] } - ], - "currentEnv": [ - 0, - 0 - ], - "callStack": [] + } } diff --git a/src/wasm-lib/kcl/tests/function_sketch_with_position/program_memory.snap b/src/wasm-lib/kcl/tests/function_sketch_with_position/program_memory.snap index 4f955cf57..1ede90311 100644 --- a/src/wasm-lib/kcl/tests/function_sketch_with_position/program_memory.snap +++ b/src/wasm-lib/kcl/tests/function_sketch_with_position/program_memory.snap @@ -1,641 +1,612 @@ --- source: kcl/src/simulation_tests.rs -description: Program memory after executing function_sketch_with_position.kcl +description: Variables in memory after executing function_sketch_with_position.kcl --- { - "environments": [ - { - "bindings": { - "HALF_TURN": { - "type": "Number", - "value": 180.0, - "__meta": [] - }, - "QUARTER_TURN": { - "type": "Number", - "value": 90.0, - "__meta": [] - }, - "THREE_QUARTER_TURN": { - "type": "Number", - "value": 270.0, - "__meta": [] - }, - "ZERO": { - "type": "Number", - "value": 0.0, - "__meta": [] - }, - "box": { - "type": "Function", - "expression": { - "body": { - "body": [ - { - "declaration": { - "end": 200, - "id": { - "end": 28, - "name": "myBox", - "start": 23, + "HALF_TURN": { + "type": "Number", + "value": 180.0, + "__meta": [] + }, + "QUARTER_TURN": { + "type": "Number", + "value": 90.0, + "__meta": [] + }, + "THREE_QUARTER_TURN": { + "type": "Number", + "value": 270.0, + "__meta": [] + }, + "ZERO": { + "type": "Number", + "value": 0.0, + "__meta": [] + }, + "box": { + "type": "Function", + "expression": { + "body": { + "body": [ + { + "declaration": { + "end": 200, + "id": { + "end": 28, + "name": "myBox", + "start": 23, + "type": "Identifier" + }, + "init": { + "body": [ + { + "arguments": [ + { + "end": 49, + "raw": "'XY'", + "start": 45, + "type": "Literal", + "type": "Literal", + "value": "XY" + } + ], + "callee": { + "end": 44, + "name": "startSketchOn", + "start": 31, "type": "Identifier" }, - "init": { - "body": [ - { - "arguments": [ + "end": 50, + "start": 31, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 74, + "name": "p", + "start": 73, + "type": "Identifier", + "type": "Identifier" + }, + { + "end": 77, + "start": 76, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 72, + "name": "startProfileAt", + "start": 58, + "type": "Identifier" + }, + "end": 78, + "start": 58, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "type": "Identifier", + "name": "end" + }, + "arg": { + "elements": [ { - "end": 49, - "raw": "'XY'", - "start": 45, + "end": 99, + "raw": "0", + "start": 98, "type": "Literal", "type": "Literal", - "value": "XY" + "value": { + "value": 0.0, + "suffix": "None" + } + }, + { + "end": 102, + "name": "l", + "start": 101, + "type": "Identifier", + "type": "Identifier" } ], - "callee": { - "end": 44, - "name": "startSketchOn", - "start": 31, - "type": "Identifier" - }, - "end": 50, - "start": 31, - "type": "CallExpression", - "type": "CallExpression" + "end": 103, + "start": 97, + "type": "ArrayExpression", + "type": "ArrayExpression" + } + } + ], + "callee": { + "end": 90, + "name": "line", + "start": 86, + "type": "Identifier" + }, + "end": 104, + "start": 86, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "type": "Identifier", + "name": "end" }, - { - "arguments": [ + "arg": { + "elements": [ { - "end": 74, - "name": "p", - "start": 73, + "end": 125, + "name": "w", + "start": 124, "type": "Identifier", "type": "Identifier" }, { - "end": 77, - "start": 76, - "type": "PipeSubstitution", - "type": "PipeSubstitution" - } - ], - "callee": { - "end": 72, - "name": "startProfileAt", - "start": 58, - "type": "Identifier" - }, - "end": 78, - "start": 58, - "type": "CallExpression", - "type": "CallExpression" - }, - { - "arguments": [ - { - "type": "LabeledArg", - "label": { - "type": "Identifier", - "name": "end" - }, - "arg": { - "elements": [ - { - "end": 99, - "raw": "0", - "start": 98, - "type": "Literal", - "type": "Literal", - "value": { - "value": 0.0, - "suffix": "None" - } - }, - { - "end": 102, - "name": "l", - "start": 101, - "type": "Identifier", - "type": "Identifier" - } - ], - "end": 103, - "start": 97, - "type": "ArrayExpression", - "type": "ArrayExpression" + "end": 128, + "raw": "0", + "start": 127, + "type": "Literal", + "type": "Literal", + "value": { + "value": 0.0, + "suffix": "None" } } ], - "callee": { - "end": 90, - "name": "line", - "start": 86, - "type": "Identifier" - }, - "end": 104, - "start": 86, - "type": "CallExpressionKw", - "type": "CallExpressionKw", - "unlabeled": null + "end": 129, + "start": 123, + "type": "ArrayExpression", + "type": "ArrayExpression" + } + } + ], + "callee": { + "end": 116, + "name": "line", + "start": 112, + "type": "Identifier" + }, + "end": 130, + "start": 112, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "type": "Identifier", + "name": "end" }, - { - "arguments": [ + "arg": { + "elements": [ { - "type": "LabeledArg", - "label": { - "type": "Identifier", - "name": "end" - }, - "arg": { - "elements": [ - { - "end": 125, - "name": "w", - "start": 124, - "type": "Identifier", - "type": "Identifier" - }, - { - "end": 128, - "raw": "0", - "start": 127, - "type": "Literal", - "type": "Literal", - "value": { - "value": 0.0, - "suffix": "None" - } - } - ], - "end": 129, - "start": 123, - "type": "ArrayExpression", - "type": "ArrayExpression" + "end": 151, + "raw": "0", + "start": 150, + "type": "Literal", + "type": "Literal", + "value": { + "value": 0.0, + "suffix": "None" } - } - ], - "callee": { - "end": 116, - "name": "line", - "start": 112, - "type": "Identifier" - }, - "end": 130, - "start": 112, - "type": "CallExpressionKw", - "type": "CallExpressionKw", - "unlabeled": null - }, - { - "arguments": [ + }, { - "type": "LabeledArg", - "label": { - "type": "Identifier", - "name": "end" - }, - "arg": { - "elements": [ - { - "end": 151, - "raw": "0", - "start": 150, - "type": "Literal", - "type": "Literal", - "value": { - "value": 0.0, - "suffix": "None" - } - }, - { - "argument": { - "end": 155, - "name": "l", - "start": 154, - "type": "Identifier", - "type": "Identifier" - }, - "end": 155, - "operator": "-", - "start": 153, - "type": "UnaryExpression", - "type": "UnaryExpression" - } - ], - "end": 156, - "start": 149, - "type": "ArrayExpression", - "type": "ArrayExpression" - } - } - ], - "callee": { - "end": 142, - "name": "line", - "start": 138, - "type": "Identifier" - }, - "end": 157, - "start": 138, - "type": "CallExpressionKw", - "type": "CallExpressionKw", - "unlabeled": null - }, - { - "arguments": [ - { - "end": 172, - "start": 171, - "type": "PipeSubstitution", - "type": "PipeSubstitution" - } - ], - "callee": { - "end": 170, - "name": "close", - "start": 165, - "type": "Identifier" - }, - "end": 173, - "start": 165, - "type": "CallExpression", - "type": "CallExpression" - }, - { - "arguments": [ - { - "type": "LabeledArg", - "label": { - "type": "Identifier", - "name": "length" - }, - "arg": { - "end": 199, - "name": "h", - "start": 198, + "argument": { + "end": 155, + "name": "l", + "start": 154, "type": "Identifier", "type": "Identifier" - } + }, + "end": 155, + "operator": "-", + "start": 153, + "type": "UnaryExpression", + "type": "UnaryExpression" } ], - "callee": { - "end": 188, - "name": "extrude", - "start": 181, - "type": "Identifier" - }, - "end": 200, - "start": 181, - "type": "CallExpressionKw", - "type": "CallExpressionKw", - "unlabeled": null + "end": 156, + "start": 149, + "type": "ArrayExpression", + "type": "ArrayExpression" } - ], - "end": 200, - "start": 31, - "type": "PipeExpression", - "type": "PipeExpression" - }, - "start": 23, - "type": "VariableDeclarator" - }, - "end": 200, - "kind": "const", - "start": 23, - "type": "VariableDeclaration", - "type": "VariableDeclaration" - }, - { - "argument": { - "end": 216, - "name": "myBox", - "start": 211, - "type": "Identifier", - "type": "Identifier" - }, - "end": 216, - "start": 204, - "type": "ReturnStatement", - "type": "ReturnStatement" - } - ], - "end": 218, - "nonCodeMeta": { - "nonCodeNodes": { - "0": [ - { - "end": 204, - "start": 200, - "type": "NonCodeNode", - "value": { - "type": "newLine" } - } - ] - }, - "startNodes": [] + ], + "callee": { + "end": 142, + "name": "line", + "start": 138, + "type": "Identifier" + }, + "end": 157, + "start": 138, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "end": 172, + "start": 171, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 170, + "name": "close", + "start": 165, + "type": "Identifier" + }, + "end": 173, + "start": 165, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "type": "Identifier", + "name": "length" + }, + "arg": { + "end": 199, + "name": "h", + "start": 198, + "type": "Identifier", + "type": "Identifier" + } + } + ], + "callee": { + "end": 188, + "name": "extrude", + "start": 181, + "type": "Identifier" + }, + "end": 200, + "start": 181, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + } + ], + "end": 200, + "start": 31, + "type": "PipeExpression", + "type": "PipeExpression" }, - "start": 19 + "start": 23, + "type": "VariableDeclarator" }, - "end": 218, - "params": [ - { - "type": "Parameter", - "identifier": { - "end": 8, - "name": "p", - "start": 7, - "type": "Identifier" - } - }, - { - "type": "Parameter", - "identifier": { - "end": 11, - "name": "h", - "start": 10, - "type": "Identifier" - } - }, - { - "type": "Parameter", - "identifier": { - "end": 14, - "name": "l", - "start": 13, - "type": "Identifier" - } - }, - { - "type": "Parameter", - "identifier": { - "end": 17, - "name": "w", - "start": 16, - "type": "Identifier" - } - } - ], - "start": 6, - "type": "FunctionExpression" + "end": 200, + "kind": "const", + "start": 23, + "type": "VariableDeclaration", + "type": "VariableDeclaration" }, - "memory": [ - 0, - 1 - ], - "__meta": [ - { - "sourceRange": [ - 6, - 218, - 0 - ] - } - ] - }, - "thing": { - "type": "Solid", - "value": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 86, - 104, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 112, - 130, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 138, - 157, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 165, - 173, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 86, - 104, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 6.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 112, - 130, - 0 - ] - }, - "from": [ - 0.0, - 6.0 - ], - "tag": null, - "to": [ - 10.0, - 6.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 138, - 157, - 0 - ] - }, - "from": [ - 10.0, - 6.0 - ], - "tag": null, - "to": [ - 10.0, - 0.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 165, - 173, - 0 - ] - }, - "from": [ - 10.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 58, - 78, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 58, - 78, - 0 - ] - } - ] + { + "argument": { + "end": 216, + "name": "myBox", + "start": 211, + "type": "Identifier", + "type": "Identifier" }, - "height": 3.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ + "end": 216, + "start": 204, + "type": "ReturnStatement", + "type": "ReturnStatement" + } + ], + "end": 218, + "nonCodeMeta": { + "nonCodeNodes": { + "0": [ { - "sourceRange": [ - 58, - 78, - 0 - ] + "end": 204, + "start": 200, + "type": "NonCodeNode", + "value": { + "type": "newLine" + } } ] - } - } + }, + "startNodes": [] + }, + "start": 19 }, - "snapshots": [ + "end": 218, + "params": [ { - "parent_snapshot": null, - "data": { - "box": { - "type": "Tombstone", - "value": null, - "__meta": [] - }, - "thing": { - "type": "Tombstone", - "value": null, - "__meta": [] - } + "type": "Parameter", + "identifier": { + "end": 8, + "name": "p", + "start": 7, + "type": "Identifier" + } + }, + { + "type": "Parameter", + "identifier": { + "end": 11, + "name": "h", + "start": 10, + "type": "Identifier" + } + }, + { + "type": "Parameter", + "identifier": { + "end": 14, + "name": "l", + "start": 13, + "type": "Identifier" + } + }, + { + "type": "Parameter", + "identifier": { + "end": 17, + "name": "w", + "start": 16, + "type": "Identifier" } } ], - "parent": null + "start": 6, + "type": "FunctionExpression" + }, + "memory": [ + 0, + 1 + ], + "__meta": [ + { + "sourceRange": [ + 6, + 218, + 0 + ] + } + ] + }, + "thing": { + "type": "Solid", + "value": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 86, + 104, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 112, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 138, + 157, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 165, + 173, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 86, + 104, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 6.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 112, + 130, + 0 + ] + }, + "from": [ + 0.0, + 6.0 + ], + "tag": null, + "to": [ + 10.0, + 6.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 138, + 157, + 0 + ] + }, + "from": [ + 10.0, + 6.0 + ], + "tag": null, + "to": [ + 10.0, + 0.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 165, + 173, + 0 + ] + }, + "from": [ + 10.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 58, + 78, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 58, + 78, + 0 + ] + } + ] + }, + "height": 3.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 58, + 78, + 0 + ] + } + ] } - ], - "currentEnv": [ - 0, - 0 - ], - "callStack": [] + } } diff --git a/src/wasm-lib/kcl/tests/helix_ccw/program_memory.snap b/src/wasm-lib/kcl/tests/helix_ccw/program_memory.snap index 20e7b94f4..3a7d731a7 100644 --- a/src/wasm-lib/kcl/tests/helix_ccw/program_memory.snap +++ b/src/wasm-lib/kcl/tests/helix_ccw/program_memory.snap @@ -1,171 +1,157 @@ --- source: kcl/src/simulation_tests.rs -description: Program memory after executing helix_ccw.kcl -snapshot_kind: text +description: Variables in memory after executing helix_ccw.kcl --- { - "environments": [ - { - "bindings": { - "HALF_TURN": { - "type": "Number", - "value": 180.0, - "__meta": [] - }, - "QUARTER_TURN": { - "type": "Number", - "value": 90.0, - "__meta": [] - }, - "THREE_QUARTER_TURN": { - "type": "Number", - "value": 270.0, - "__meta": [] - }, - "ZERO": { - "type": "Number", - "value": 0.0, - "__meta": [] - }, - "part001": { - "type": "Solid", - "value": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 35, - 78, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "HALF_TURN": { + "type": "Number", + "value": 180.0, + "__meta": [] + }, + "QUARTER_TURN": { + "type": "Number", + "value": 90.0, + "__meta": [] + }, + "THREE_QUARTER_TURN": { + "type": "Number", + "value": 270.0, + "__meta": [] + }, + "ZERO": { + "type": "Number", + "value": 0.0, + "__meta": [] + }, + "part001": { + "type": "Solid", + "value": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 35, + 78, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 35, - 78, - 0 - ] - }, - "ccw": true, - "center": [ - 5.0, - 5.0 - ], - "from": [ - 15.0, - 5.0 - ], - "radius": 10.0, - "tag": null, - "to": [ - 15.0, - 5.0 - ], - "type": "Circle" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 15.0, - 5.0 - ], - "to": [ - 15.0, - 5.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 35, - 78, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 35, - 78, - 0 - ] - } + "sourceRange": [ + 35, + 78, + 0 ] }, - "height": 10.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 35, - 78, - 0 - ] - } + "ccw": true, + "center": [ + 5.0, + 5.0 + ], + "from": [ + 15.0, + 5.0 + ], + "radius": 10.0, + "tag": null, + "to": [ + 15.0, + 5.0 + ], + "type": "Circle" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 15.0, + 5.0 + ], + "to": [ + 15.0, + 5.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 35, + 78, + 0 ] } - } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 35, + 78, + 0 + ] + } + ] }, - "snapshots": [], - "parent": null + "height": 10.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 35, + 78, + 0 + ] + } + ] } - ], - "currentEnv": [ - 0, - 0 - ], - "callStack": [] + } } diff --git a/src/wasm-lib/kcl/tests/helix_simple/program_memory.snap b/src/wasm-lib/kcl/tests/helix_simple/program_memory.snap index 60dbc4f70..61a4decc4 100644 --- a/src/wasm-lib/kcl/tests/helix_simple/program_memory.snap +++ b/src/wasm-lib/kcl/tests/helix_simple/program_memory.snap @@ -1,34 +1,178 @@ --- source: kcl/src/simulation_tests.rs -description: Program memory after executing helix_simple.kcl -snapshot_kind: text +description: Variables in memory after executing helix_simple.kcl --- { - "environments": [ - { - "bindings": { - "HALF_TURN": { - "type": "Number", - "value": 180.0, - "__meta": [] + "HALF_TURN": { + "type": "Number", + "value": 180.0, + "__meta": [] + }, + "QUARTER_TURN": { + "type": "Number", + "value": 90.0, + "__meta": [] + }, + "THREE_QUARTER_TURN": { + "type": "Number", + "value": 270.0, + "__meta": [] + }, + "ZERO": { + "type": "Number", + "value": 0.0, + "__meta": [] + }, + "edge001": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "edge001", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 102, + 137, + 0 + ] }, - "QUARTER_TURN": { - "type": "Number", - "value": 90.0, - "__meta": [] + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 136, + "start": 128, + "type": "TagDeclarator", + "value": "edge001" }, - "THREE_QUARTER_TURN": { - "type": "Number", - "value": 270.0, - "__meta": [] + "to": [ + 0.0, + 10.0 + ], + "type": "ToPoint" + }, + "surface": null + }, + "__meta": [ + { + "sourceRange": [ + 128, + 136, + 0 + ] + } + ] + }, + "helixPath": { + "type": "Helix", + "value": { + "value": "[uuid]", + "artifactId": "[uuid]", + "revolutions": 5.0, + "angleStart": 0.0, + "ccw": true, + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 151, + 257, + 0 + ] + } + ] + } + }, + "helper001": { + "type": "Sketch", + "value": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 102, + 137, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 136, + "start": 128, + "type": "TagDeclarator", + "value": "edge001" + }, + "to": [ + 0.0, + 10.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - "ZERO": { - "type": "Number", - "value": 0.0, - "__meta": [] + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 71, + 96, + 0 + ] + } + }, + "tags": { "edge001": { - "type": "TagIdentifier", "type": "TagIdentifier", "value": "edge001", "info": { @@ -71,180 +215,22 @@ snapshot_kind: text ] } ] - }, - "helixPath": { - "type": "Helix", - "value": { - "value": "[uuid]", - "artifactId": "[uuid]", - "revolutions": 5.0, - "angleStart": 0.0, - "ccw": true, - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 151, - 257, - 0 - ] - } - ] - } - }, - "helper001": { - "type": "Sketch", - "value": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 102, - 137, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": { - "end": 136, - "start": 128, - "type": "TagDeclarator", - "value": "edge001" - }, - "to": [ - 0.0, - 10.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 71, - 96, - 0 - ] - } - }, - "tags": { - "edge001": { - "type": "TagIdentifier", - "value": "edge001", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 102, - 137, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": { - "end": 136, - "start": 128, - "type": "TagDeclarator", - "value": "edge001" - }, - "to": [ - 0.0, - 10.0 - ], - "type": "ToPoint" - }, - "surface": null - }, - "__meta": [ - { - "sourceRange": [ - 128, - 136, - 0 - ] - } - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 71, - 96, - 0 - ] - } - ] - } } }, - "snapshots": [], - "parent": null + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 71, + 96, + 0 + ] + } + ] } - ], - "currentEnv": [ - 0, - 0 - ], - "callStack": [] + } } diff --git a/src/wasm-lib/kcl/tests/i_shape/program_memory.snap b/src/wasm-lib/kcl/tests/i_shape/program_memory.snap index 62ec8d7d7..c38214f49 100644 --- a/src/wasm-lib/kcl/tests/i_shape/program_memory.snap +++ b/src/wasm-lib/kcl/tests/i_shape/program_memory.snap @@ -1,2001 +1,1987 @@ --- source: kcl/src/simulation_tests.rs -description: Program memory after executing i_shape.kcl -snapshot_kind: text +description: Variables in memory after executing i_shape.kcl --- { - "environments": [ - { - "bindings": { - "HALF_TURN": { - "type": "Number", - "value": 180.0, - "__meta": [] - }, - "QUARTER_TURN": { - "type": "Number", - "value": 90.0, - "__meta": [] - }, - "THREE_QUARTER_TURN": { - "type": "Number", - "value": 270.0, - "__meta": [] - }, - "ZERO": { - "type": "Number", - "value": 0.0, - "__meta": [] - }, - "brace_base": { - "type": "Sketch", - "value": { - "type": "Sketch", + "HALF_TURN": { + "type": "Number", + "value": 180.0, + "__meta": [] + }, + "QUARTER_TURN": { + "type": "Number", + "value": 90.0, + "__meta": [] + }, + "THREE_QUARTER_TURN": { + "type": "Number", + "value": 270.0, + "__meta": [] + }, + "ZERO": { + "type": "Number", + "value": 0.0, + "__meta": [] + }, + "brace_base": { + "type": "Sketch", + "value": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 438, - 478, - 0 - ] - }, - "from": [ - 5.0, - 0.0 - ], - "tag": null, - "to": [ - 68.4, - 0.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 484, - 542, - 0 - ] - }, - "ccw": true, - "center": [ - 68.4, - 5.0 - ], - "from": [ - 68.4, - 0.0 - ], - "tag": null, - "to": [ - 73.4, - 5.0 - ], - "type": "TangentialArcTo" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 548, - 578, - 0 - ] - }, - "from": [ - 73.4, - 5.0 - ], - "tag": null, - "to": [ - 73.4, - 25.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 584, - 643, - 0 - ] - }, - "ccw": true, - "center": [ - 68.4, - 25.0 - ], - "from": [ - 73.4, - 25.0 - ], - "tag": null, - "to": [ - 68.4, - 30.0 - ], - "type": "TangentialArcTo" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 649, - 708, - 0 - ] - }, - "from": [ - 68.4, - 30.0 - ], - "tag": null, - "to": [ - 55.6, - 30.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 714, - 773, - 0 - ] - }, - "ccw": false, - "center": [ - 55.60000000000001, - 35.0 - ], - "from": [ - 55.6, - 30.0 - ], - "tag": null, - "to": [ - 50.6, - 35.0 - ], - "type": "TangentialArcTo" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 779, - 831, - 0 - ] - }, - "from": [ - 50.6, - 35.0 - ], - "tag": null, - "to": [ - 50.6, - 97.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 837, - 895, - 0 - ] - }, - "ccw": false, - "center": [ - 55.60000000000001, - 97.0 - ], - "from": [ - 50.6, - 97.0 - ], - "tag": null, - "to": [ - 55.6, - 102.0 - ], - "type": "TangentialArcTo" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 901, - 937, - 0 - ] - }, - "from": [ - 55.6, - 102.0 - ], - "tag": null, - "to": [ - 60.6, - 102.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 943, - 1001, - 0 - ] - }, - "ccw": true, - "center": [ - 60.60000000000001, - 107.0 - ], - "from": [ - 60.6, - 102.0 - ], - "tag": null, - "to": [ - 65.6, - 107.0 - ], - "type": "TangentialArcTo" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1007, - 1037, - 0 - ] - }, - "from": [ - 65.6, - 107.0 - ], - "tag": null, - "to": [ - 65.6, - 125.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1043, - 1102, - 0 - ] - }, - "ccw": true, - "center": [ - 60.60000000000001, - 125.0 - ], - "from": [ - 65.6, - 125.0 - ], - "tag": null, - "to": [ - 60.6, - 130.0 - ], - "type": "TangentialArcTo" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1108, - 1171, - 0 - ] - }, - "from": [ - 60.6, - 130.0 - ], - "tag": null, - "to": [ - 16.6, - 130.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1177, - 1237, - 0 - ] - }, - "ccw": true, - "center": [ - 16.60000000000001, - 125.0 - ], - "from": [ - 16.6, - 130.0 - ], - "tag": null, - "to": [ - 11.6, - 125.0 - ], - "type": "TangentialArcTo" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1243, - 1276, - 0 - ] - }, - "from": [ - 11.6, - 125.0 - ], - "tag": null, - "to": [ - 11.6, - 107.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1282, - 1341, - 0 - ] - }, - "ccw": true, - "center": [ - 16.60000000000001, - 107.0 - ], - "from": [ - 11.6, - 107.0 - ], - "tag": null, - "to": [ - 16.6, - 102.0 - ], - "type": "TangentialArcTo" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1347, - 1383, - 0 - ] - }, - "from": [ - 16.6, - 102.0 - ], - "tag": null, - "to": [ - 21.6, - 102.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1389, - 1448, - 0 - ] - }, - "ccw": false, - "center": [ - 21.60000000000001, - 97.0 - ], - "from": [ - 21.6, - 102.0 - ], - "tag": null, - "to": [ - 26.6, - 97.0 - ], - "type": "TangentialArcTo" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1454, - 1509, - 0 - ] - }, - "from": [ - 26.6, - 97.0 - ], - "tag": null, - "to": [ - 26.6, - 35.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1515, - 1575, - 0 - ] - }, - "ccw": false, - "center": [ - 21.60000000000001, - 35.0 - ], - "from": [ - 26.6, - 35.0 - ], - "tag": null, - "to": [ - 21.6, - 30.0 - ], - "type": "TangentialArcTo" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1581, - 1705, - 0 - ] - }, - "from": [ - 21.6, - 30.0 - ], - "tag": null, - "to": [ - 5.0, - 30.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1711, - 1771, - 0 - ] - }, - "ccw": true, - "center": [ - 5.000000000000014, - 25.0 - ], - "from": [ - 5.0, - 30.0 - ], - "tag": null, - "to": [ - 0.0, - 25.0 - ], - "type": "TangentialArcTo" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1777, - 1810, - 0 - ] - }, - "from": [ - 0.0, - 25.0 - ], - "tag": null, - "to": [ - 0.0, - 5.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1816, - 1875, - 0 - ] - }, - "ccw": true, - "center": [ - 5.000000000000014, - 5.0 - ], - "from": [ - 0.0, - 5.0 - ], - "tag": null, - "to": [ - 5.0, - 0.0 - ], - "type": "TangentialArcTo" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1881, - 1889, - 0 - ] - }, - "from": [ - 5.0, - 0.0 - ], - "tag": null, - "to": [ - 5.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 5.0, - 0.0 - ], - "to": [ - 5.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 399, - 432, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 399, - 432, - 0 - ] - } + "sourceRange": [ + 438, + 478, + 0 ] - } - }, - "corner_radius": { - "type": "Number", - "value": 5.0, - "__meta": [ - { - "sourceRange": [ - 216, - 219, - 0 - ] - } - ] - }, - "d_wrist_circumference": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 22.8, - "__meta": [ - { - "sourceRange": [ - 25, - 29, - 0 - ] - } - ] - }, - { - "type": "Number", - "value": 10.7, - "__meta": [ - { - "sourceRange": [ - 31, - 35, - 0 - ] - } - ] - }, - { - "type": "Number", - "value": 16.4, - "__meta": [ - { - "sourceRange": [ - 37, - 41, - 0 - ] - } - ] - }, - { - "type": "Number", - "value": 18.5, - "__meta": [ - { - "sourceRange": [ - 43, - 47, - 0 - ] - } - ] - } + }, + "from": [ + 5.0, + 0.0 ], - "__meta": [ - { - "sourceRange": [ - 24, - 48, - 0 - ] - } - ] + "tag": null, + "to": [ + 68.4, + 0.0 + ], + "type": "ToPoint" }, - "final": { - "type": "Solid", - "value": { - "type": "Solid", + { + "__geoMeta": { "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 438, - 478, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 484, - 542, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 548, - 578, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 584, - 643, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 649, - 708, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 714, - 773, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 779, - 831, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 837, - 895, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 901, - 937, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 943, - 1001, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1007, - 1037, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1043, - 1102, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1108, - 1171, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1177, - 1237, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1243, - 1276, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1282, - 1341, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1347, - 1383, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1389, - 1448, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1454, - 1509, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1515, - 1575, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1581, - 1705, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1711, - 1771, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1777, - 1810, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1816, - 1875, - 0 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 438, - 478, - 0 - ] - }, - "from": [ - 5.0, - 0.0 - ], - "tag": null, - "to": [ - 68.4, - 0.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 484, - 542, - 0 - ] - }, - "ccw": true, - "center": [ - 68.4, - 5.0 - ], - "from": [ - 68.4, - 0.0 - ], - "tag": null, - "to": [ - 73.4, - 5.0 - ], - "type": "TangentialArcTo" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 548, - 578, - 0 - ] - }, - "from": [ - 73.4, - 5.0 - ], - "tag": null, - "to": [ - 73.4, - 25.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 584, - 643, - 0 - ] - }, - "ccw": true, - "center": [ - 68.4, - 25.0 - ], - "from": [ - 73.4, - 25.0 - ], - "tag": null, - "to": [ - 68.4, - 30.0 - ], - "type": "TangentialArcTo" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 649, - 708, - 0 - ] - }, - "from": [ - 68.4, - 30.0 - ], - "tag": null, - "to": [ - 55.6, - 30.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 714, - 773, - 0 - ] - }, - "ccw": false, - "center": [ - 55.60000000000001, - 35.0 - ], - "from": [ - 55.6, - 30.0 - ], - "tag": null, - "to": [ - 50.6, - 35.0 - ], - "type": "TangentialArcTo" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 779, - 831, - 0 - ] - }, - "from": [ - 50.6, - 35.0 - ], - "tag": null, - "to": [ - 50.6, - 97.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 837, - 895, - 0 - ] - }, - "ccw": false, - "center": [ - 55.60000000000001, - 97.0 - ], - "from": [ - 50.6, - 97.0 - ], - "tag": null, - "to": [ - 55.6, - 102.0 - ], - "type": "TangentialArcTo" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 901, - 937, - 0 - ] - }, - "from": [ - 55.6, - 102.0 - ], - "tag": null, - "to": [ - 60.6, - 102.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 943, - 1001, - 0 - ] - }, - "ccw": true, - "center": [ - 60.60000000000001, - 107.0 - ], - "from": [ - 60.6, - 102.0 - ], - "tag": null, - "to": [ - 65.6, - 107.0 - ], - "type": "TangentialArcTo" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1007, - 1037, - 0 - ] - }, - "from": [ - 65.6, - 107.0 - ], - "tag": null, - "to": [ - 65.6, - 125.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1043, - 1102, - 0 - ] - }, - "ccw": true, - "center": [ - 60.60000000000001, - 125.0 - ], - "from": [ - 65.6, - 125.0 - ], - "tag": null, - "to": [ - 60.6, - 130.0 - ], - "type": "TangentialArcTo" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1108, - 1171, - 0 - ] - }, - "from": [ - 60.6, - 130.0 - ], - "tag": null, - "to": [ - 16.6, - 130.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1177, - 1237, - 0 - ] - }, - "ccw": true, - "center": [ - 16.60000000000001, - 125.0 - ], - "from": [ - 16.6, - 130.0 - ], - "tag": null, - "to": [ - 11.6, - 125.0 - ], - "type": "TangentialArcTo" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1243, - 1276, - 0 - ] - }, - "from": [ - 11.6, - 125.0 - ], - "tag": null, - "to": [ - 11.6, - 107.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1282, - 1341, - 0 - ] - }, - "ccw": true, - "center": [ - 16.60000000000001, - 107.0 - ], - "from": [ - 11.6, - 107.0 - ], - "tag": null, - "to": [ - 16.6, - 102.0 - ], - "type": "TangentialArcTo" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1347, - 1383, - 0 - ] - }, - "from": [ - 16.6, - 102.0 - ], - "tag": null, - "to": [ - 21.6, - 102.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1389, - 1448, - 0 - ] - }, - "ccw": false, - "center": [ - 21.60000000000001, - 97.0 - ], - "from": [ - 21.6, - 102.0 - ], - "tag": null, - "to": [ - 26.6, - 97.0 - ], - "type": "TangentialArcTo" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1454, - 1509, - 0 - ] - }, - "from": [ - 26.6, - 97.0 - ], - "tag": null, - "to": [ - 26.6, - 35.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1515, - 1575, - 0 - ] - }, - "ccw": false, - "center": [ - 21.60000000000001, - 35.0 - ], - "from": [ - 26.6, - 35.0 - ], - "tag": null, - "to": [ - 21.6, - 30.0 - ], - "type": "TangentialArcTo" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1581, - 1705, - 0 - ] - }, - "from": [ - 21.6, - 30.0 - ], - "tag": null, - "to": [ - 5.0, - 30.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1711, - 1771, - 0 - ] - }, - "ccw": true, - "center": [ - 5.000000000000014, - 25.0 - ], - "from": [ - 5.0, - 30.0 - ], - "tag": null, - "to": [ - 0.0, - 25.0 - ], - "type": "TangentialArcTo" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1777, - 1810, - 0 - ] - }, - "from": [ - 0.0, - 25.0 - ], - "tag": null, - "to": [ - 0.0, - 5.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1816, - 1875, - 0 - ] - }, - "ccw": true, - "center": [ - 5.000000000000014, - 5.0 - ], - "from": [ - 0.0, - 5.0 - ], - "tag": null, - "to": [ - 5.0, - 0.0 - ], - "type": "TangentialArcTo" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1881, - 1889, - 0 - ] - }, - "from": [ - 5.0, - 0.0 - ], - "tag": null, - "to": [ - 5.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 5.0, - 0.0 - ], - "to": [ - 5.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 399, - 432, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 399, - 432, - 0 - ] - } - ] - }, - "height": 3.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 399, - 432, - 0 - ] - } + "sourceRange": [ + 484, + 542, + 0 ] - } + }, + "ccw": true, + "center": [ + 68.4, + 5.0 + ], + "from": [ + 68.4, + 0.0 + ], + "tag": null, + "to": [ + 73.4, + 5.0 + ], + "type": "TangentialArcTo" }, - "hand_thickness": { - "type": "Number", - "value": 24.0, - "__meta": [ - { - "sourceRange": [ - 195, - 199, - 0 - ] - } - ] - }, - "inner": { - "type": "Sketch", - "value": { - "type": "Sketch", + { + "__geoMeta": { "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1926, - 1939, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 1.0, - 0.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1945, - 2003, - 0 - ] - }, - "ccw": true, - "center": [ - 1.0, - 5.0 - ], - "from": [ - 1.0, - 0.0 - ], - "tag": null, - "to": [ - 6.0, - 5.0 - ], - "type": "TangentialArcTo" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2009, - 2045, - 0 - ] - }, - "from": [ - 6.0, - 5.0 - ], - "tag": null, - "to": [ - 6.0, - 20.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2051, - 2110, - 0 - ] - }, - "ccw": true, - "center": [ - 1.0, - 20.0 - ], - "from": [ - 6.0, - 20.0 - ], - "tag": null, - "to": [ - 1.0, - 25.0 - ], - "type": "TangentialArcTo" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2116, - 2130, - 0 - ] - }, - "from": [ - 1.0, - 25.0 - ], - "tag": null, - "to": [ - 0.0, - 25.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2136, - 2196, - 0 - ] - }, - "ccw": true, - "center": [ - 0.0, - 20.0 - ], - "from": [ - 0.0, - 25.0 - ], - "tag": null, - "to": [ - -5.0, - 20.0 - ], - "type": "TangentialArcTo" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2202, - 2241, - 0 - ] - }, - "from": [ - -5.0, - 20.0 - ], - "tag": null, - "to": [ - -5.0, - 5.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2247, - 2306, - 0 - ] - }, - "ccw": true, - "center": [ - 0.0, - 5.0 - ], - "from": [ - -5.0, - 5.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "TangentialArcTo" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2312, - 2320, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1899, - 1920, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 1899, - 1920, - 0 - ] - } + "sourceRange": [ + 548, + 578, + 0 ] - } + }, + "from": [ + 73.4, + 5.0 + ], + "tag": null, + "to": [ + 73.4, + 25.0 + ], + "type": "ToPoint" }, - "length": { - "type": "Number", - "value": 120.0, - "__meta": [ - { - "sourceRange": [ - 172, - 177, - 0 - ] - } - ] + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 584, + 643, + 0 + ] + }, + "ccw": true, + "center": [ + 68.4, + 25.0 + ], + "from": [ + 73.4, + 25.0 + ], + "tag": null, + "to": [ + 68.4, + 30.0 + ], + "type": "TangentialArcTo" }, - "width": { - "type": "Number", - "value": 68.4, - "__meta": [ - { - "sourceRange": [ - 25, - 29, - 0 - ] - }, - { - "sourceRange": [ - 31, - 35, - 0 - ] - }, - { - "sourceRange": [ - 37, - 41, - 0 - ] - }, - { - "sourceRange": [ - 43, - 47, - 0 - ] - } + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 649, + 708, + 0 + ] + }, + "from": [ + 68.4, + 30.0 + ], + "tag": null, + "to": [ + 55.6, + 30.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 714, + 773, + 0 + ] + }, + "ccw": false, + "center": [ + 55.60000000000001, + 35.0 + ], + "from": [ + 55.6, + 30.0 + ], + "tag": null, + "to": [ + 50.6, + 35.0 + ], + "type": "TangentialArcTo" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 779, + 831, + 0 + ] + }, + "from": [ + 50.6, + 35.0 + ], + "tag": null, + "to": [ + 50.6, + 97.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 837, + 895, + 0 + ] + }, + "ccw": false, + "center": [ + 55.60000000000001, + 97.0 + ], + "from": [ + 50.6, + 97.0 + ], + "tag": null, + "to": [ + 55.6, + 102.0 + ], + "type": "TangentialArcTo" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 901, + 937, + 0 + ] + }, + "from": [ + 55.6, + 102.0 + ], + "tag": null, + "to": [ + 60.6, + 102.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 943, + 1001, + 0 + ] + }, + "ccw": true, + "center": [ + 60.60000000000001, + 107.0 + ], + "from": [ + 60.6, + 102.0 + ], + "tag": null, + "to": [ + 65.6, + 107.0 + ], + "type": "TangentialArcTo" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1007, + 1037, + 0 + ] + }, + "from": [ + 65.6, + 107.0 + ], + "tag": null, + "to": [ + 65.6, + 125.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1043, + 1102, + 0 + ] + }, + "ccw": true, + "center": [ + 60.60000000000001, + 125.0 + ], + "from": [ + 65.6, + 125.0 + ], + "tag": null, + "to": [ + 60.6, + 130.0 + ], + "type": "TangentialArcTo" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1108, + 1171, + 0 + ] + }, + "from": [ + 60.6, + 130.0 + ], + "tag": null, + "to": [ + 16.6, + 130.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1177, + 1237, + 0 + ] + }, + "ccw": true, + "center": [ + 16.60000000000001, + 125.0 + ], + "from": [ + 16.6, + 130.0 + ], + "tag": null, + "to": [ + 11.6, + 125.0 + ], + "type": "TangentialArcTo" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1243, + 1276, + 0 + ] + }, + "from": [ + 11.6, + 125.0 + ], + "tag": null, + "to": [ + 11.6, + 107.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1282, + 1341, + 0 + ] + }, + "ccw": true, + "center": [ + 16.60000000000001, + 107.0 + ], + "from": [ + 11.6, + 107.0 + ], + "tag": null, + "to": [ + 16.6, + 102.0 + ], + "type": "TangentialArcTo" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1347, + 1383, + 0 + ] + }, + "from": [ + 16.6, + 102.0 + ], + "tag": null, + "to": [ + 21.6, + 102.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1389, + 1448, + 0 + ] + }, + "ccw": false, + "center": [ + 21.60000000000001, + 97.0 + ], + "from": [ + 21.6, + 102.0 + ], + "tag": null, + "to": [ + 26.6, + 97.0 + ], + "type": "TangentialArcTo" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1454, + 1509, + 0 + ] + }, + "from": [ + 26.6, + 97.0 + ], + "tag": null, + "to": [ + 26.6, + 35.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1515, + 1575, + 0 + ] + }, + "ccw": false, + "center": [ + 21.60000000000001, + 35.0 + ], + "from": [ + 26.6, + 35.0 + ], + "tag": null, + "to": [ + 21.6, + 30.0 + ], + "type": "TangentialArcTo" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1581, + 1705, + 0 + ] + }, + "from": [ + 21.6, + 30.0 + ], + "tag": null, + "to": [ + 5.0, + 30.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1711, + 1771, + 0 + ] + }, + "ccw": true, + "center": [ + 5.000000000000014, + 25.0 + ], + "from": [ + 5.0, + 30.0 + ], + "tag": null, + "to": [ + 0.0, + 25.0 + ], + "type": "TangentialArcTo" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1777, + 1810, + 0 + ] + }, + "from": [ + 0.0, + 25.0 + ], + "tag": null, + "to": [ + 0.0, + 5.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1816, + 1875, + 0 + ] + }, + "ccw": true, + "center": [ + 5.000000000000014, + 5.0 + ], + "from": [ + 0.0, + 5.0 + ], + "tag": null, + "to": [ + 5.0, + 0.0 + ], + "type": "TangentialArcTo" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1881, + 1889, + 0 + ] + }, + "from": [ + 5.0, + 0.0 + ], + "tag": null, + "to": [ + 5.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 5.0, + 0.0 + ], + "to": [ + 5.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 399, + 432, + 0 ] } }, - "snapshots": [], - "parent": null + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 399, + 432, + 0 + ] + } + ] } - ], - "currentEnv": [ - 0, - 0 - ], - "callStack": [] + }, + "corner_radius": { + "type": "Number", + "value": 5.0, + "__meta": [ + { + "sourceRange": [ + 216, + 219, + 0 + ] + } + ] + }, + "d_wrist_circumference": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 22.8, + "__meta": [ + { + "sourceRange": [ + 25, + 29, + 0 + ] + } + ] + }, + { + "type": "Number", + "value": 10.7, + "__meta": [ + { + "sourceRange": [ + 31, + 35, + 0 + ] + } + ] + }, + { + "type": "Number", + "value": 16.4, + "__meta": [ + { + "sourceRange": [ + 37, + 41, + 0 + ] + } + ] + }, + { + "type": "Number", + "value": 18.5, + "__meta": [ + { + "sourceRange": [ + 43, + 47, + 0 + ] + } + ] + } + ], + "__meta": [ + { + "sourceRange": [ + 24, + 48, + 0 + ] + } + ] + }, + "final": { + "type": "Solid", + "value": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 438, + 478, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 484, + 542, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 548, + 578, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 584, + 643, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 649, + 708, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 714, + 773, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 779, + 831, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 837, + 895, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 901, + 937, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 943, + 1001, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1007, + 1037, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1043, + 1102, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1108, + 1171, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1177, + 1237, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1243, + 1276, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1282, + 1341, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1347, + 1383, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1389, + 1448, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1454, + 1509, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1515, + 1575, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1581, + 1705, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1711, + 1771, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1777, + 1810, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1816, + 1875, + 0 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 438, + 478, + 0 + ] + }, + "from": [ + 5.0, + 0.0 + ], + "tag": null, + "to": [ + 68.4, + 0.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 484, + 542, + 0 + ] + }, + "ccw": true, + "center": [ + 68.4, + 5.0 + ], + "from": [ + 68.4, + 0.0 + ], + "tag": null, + "to": [ + 73.4, + 5.0 + ], + "type": "TangentialArcTo" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 548, + 578, + 0 + ] + }, + "from": [ + 73.4, + 5.0 + ], + "tag": null, + "to": [ + 73.4, + 25.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 584, + 643, + 0 + ] + }, + "ccw": true, + "center": [ + 68.4, + 25.0 + ], + "from": [ + 73.4, + 25.0 + ], + "tag": null, + "to": [ + 68.4, + 30.0 + ], + "type": "TangentialArcTo" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 649, + 708, + 0 + ] + }, + "from": [ + 68.4, + 30.0 + ], + "tag": null, + "to": [ + 55.6, + 30.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 714, + 773, + 0 + ] + }, + "ccw": false, + "center": [ + 55.60000000000001, + 35.0 + ], + "from": [ + 55.6, + 30.0 + ], + "tag": null, + "to": [ + 50.6, + 35.0 + ], + "type": "TangentialArcTo" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 779, + 831, + 0 + ] + }, + "from": [ + 50.6, + 35.0 + ], + "tag": null, + "to": [ + 50.6, + 97.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 837, + 895, + 0 + ] + }, + "ccw": false, + "center": [ + 55.60000000000001, + 97.0 + ], + "from": [ + 50.6, + 97.0 + ], + "tag": null, + "to": [ + 55.6, + 102.0 + ], + "type": "TangentialArcTo" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 901, + 937, + 0 + ] + }, + "from": [ + 55.6, + 102.0 + ], + "tag": null, + "to": [ + 60.6, + 102.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 943, + 1001, + 0 + ] + }, + "ccw": true, + "center": [ + 60.60000000000001, + 107.0 + ], + "from": [ + 60.6, + 102.0 + ], + "tag": null, + "to": [ + 65.6, + 107.0 + ], + "type": "TangentialArcTo" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1007, + 1037, + 0 + ] + }, + "from": [ + 65.6, + 107.0 + ], + "tag": null, + "to": [ + 65.6, + 125.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1043, + 1102, + 0 + ] + }, + "ccw": true, + "center": [ + 60.60000000000001, + 125.0 + ], + "from": [ + 65.6, + 125.0 + ], + "tag": null, + "to": [ + 60.6, + 130.0 + ], + "type": "TangentialArcTo" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1108, + 1171, + 0 + ] + }, + "from": [ + 60.6, + 130.0 + ], + "tag": null, + "to": [ + 16.6, + 130.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1177, + 1237, + 0 + ] + }, + "ccw": true, + "center": [ + 16.60000000000001, + 125.0 + ], + "from": [ + 16.6, + 130.0 + ], + "tag": null, + "to": [ + 11.6, + 125.0 + ], + "type": "TangentialArcTo" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1243, + 1276, + 0 + ] + }, + "from": [ + 11.6, + 125.0 + ], + "tag": null, + "to": [ + 11.6, + 107.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1282, + 1341, + 0 + ] + }, + "ccw": true, + "center": [ + 16.60000000000001, + 107.0 + ], + "from": [ + 11.6, + 107.0 + ], + "tag": null, + "to": [ + 16.6, + 102.0 + ], + "type": "TangentialArcTo" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1347, + 1383, + 0 + ] + }, + "from": [ + 16.6, + 102.0 + ], + "tag": null, + "to": [ + 21.6, + 102.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1389, + 1448, + 0 + ] + }, + "ccw": false, + "center": [ + 21.60000000000001, + 97.0 + ], + "from": [ + 21.6, + 102.0 + ], + "tag": null, + "to": [ + 26.6, + 97.0 + ], + "type": "TangentialArcTo" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1454, + 1509, + 0 + ] + }, + "from": [ + 26.6, + 97.0 + ], + "tag": null, + "to": [ + 26.6, + 35.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1515, + 1575, + 0 + ] + }, + "ccw": false, + "center": [ + 21.60000000000001, + 35.0 + ], + "from": [ + 26.6, + 35.0 + ], + "tag": null, + "to": [ + 21.6, + 30.0 + ], + "type": "TangentialArcTo" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1581, + 1705, + 0 + ] + }, + "from": [ + 21.6, + 30.0 + ], + "tag": null, + "to": [ + 5.0, + 30.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1711, + 1771, + 0 + ] + }, + "ccw": true, + "center": [ + 5.000000000000014, + 25.0 + ], + "from": [ + 5.0, + 30.0 + ], + "tag": null, + "to": [ + 0.0, + 25.0 + ], + "type": "TangentialArcTo" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1777, + 1810, + 0 + ] + }, + "from": [ + 0.0, + 25.0 + ], + "tag": null, + "to": [ + 0.0, + 5.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1816, + 1875, + 0 + ] + }, + "ccw": true, + "center": [ + 5.000000000000014, + 5.0 + ], + "from": [ + 0.0, + 5.0 + ], + "tag": null, + "to": [ + 5.0, + 0.0 + ], + "type": "TangentialArcTo" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1881, + 1889, + 0 + ] + }, + "from": [ + 5.0, + 0.0 + ], + "tag": null, + "to": [ + 5.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 5.0, + 0.0 + ], + "to": [ + 5.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 399, + 432, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 399, + 432, + 0 + ] + } + ] + }, + "height": 3.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 399, + 432, + 0 + ] + } + ] + } + }, + "hand_thickness": { + "type": "Number", + "value": 24.0, + "__meta": [ + { + "sourceRange": [ + 195, + 199, + 0 + ] + } + ] + }, + "inner": { + "type": "Sketch", + "value": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1926, + 1939, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 1.0, + 0.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1945, + 2003, + 0 + ] + }, + "ccw": true, + "center": [ + 1.0, + 5.0 + ], + "from": [ + 1.0, + 0.0 + ], + "tag": null, + "to": [ + 6.0, + 5.0 + ], + "type": "TangentialArcTo" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2009, + 2045, + 0 + ] + }, + "from": [ + 6.0, + 5.0 + ], + "tag": null, + "to": [ + 6.0, + 20.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2051, + 2110, + 0 + ] + }, + "ccw": true, + "center": [ + 1.0, + 20.0 + ], + "from": [ + 6.0, + 20.0 + ], + "tag": null, + "to": [ + 1.0, + 25.0 + ], + "type": "TangentialArcTo" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2116, + 2130, + 0 + ] + }, + "from": [ + 1.0, + 25.0 + ], + "tag": null, + "to": [ + 0.0, + 25.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2136, + 2196, + 0 + ] + }, + "ccw": true, + "center": [ + 0.0, + 20.0 + ], + "from": [ + 0.0, + 25.0 + ], + "tag": null, + "to": [ + -5.0, + 20.0 + ], + "type": "TangentialArcTo" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2202, + 2241, + 0 + ] + }, + "from": [ + -5.0, + 20.0 + ], + "tag": null, + "to": [ + -5.0, + 5.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2247, + 2306, + 0 + ] + }, + "ccw": true, + "center": [ + 0.0, + 5.0 + ], + "from": [ + -5.0, + 5.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "TangentialArcTo" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2312, + 2320, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1899, + 1920, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 1899, + 1920, + 0 + ] + } + ] + } + }, + "length": { + "type": "Number", + "value": 120.0, + "__meta": [ + { + "sourceRange": [ + 172, + 177, + 0 + ] + } + ] + }, + "width": { + "type": "Number", + "value": 68.4, + "__meta": [ + { + "sourceRange": [ + 25, + 29, + 0 + ] + }, + { + "sourceRange": [ + 31, + 35, + 0 + ] + }, + { + "sourceRange": [ + 37, + 41, + 0 + ] + }, + { + "sourceRange": [ + 43, + 47, + 0 + ] + } + ] + } } diff --git a/src/wasm-lib/kcl/tests/if_else/program_memory.snap b/src/wasm-lib/kcl/tests/if_else/program_memory.snap index 6e145b0d4..b1b247184 100644 --- a/src/wasm-lib/kcl/tests/if_else/program_memory.snap +++ b/src/wasm-lib/kcl/tests/if_else/program_memory.snap @@ -1,78 +1,65 @@ --- source: kcl/src/simulation_tests.rs -description: Program memory after executing if_else.kcl +description: Variables in memory after executing if_else.kcl --- { - "environments": [ - { - "bindings": { - "HALF_TURN": { - "type": "Number", - "value": 180.0, - "__meta": [] - }, - "QUARTER_TURN": { - "type": "Number", - "value": 90.0, - "__meta": [] - }, - "THREE_QUARTER_TURN": { - "type": "Number", - "value": 270.0, - "__meta": [] - }, - "ZERO": { - "type": "Number", - "value": 0.0, - "__meta": [] - }, - "a": { - "type": "Number", - "value": 3.0, - "__meta": [ - { - "sourceRange": [ - 64, - 65, - 0 - ] - } - ] - }, - "b": { - "type": "Number", - "value": 4.0, - "__meta": [ - { - "sourceRange": [ - 199, - 200, - 0 - ] - } - ] - }, - "c": { - "type": "Number", - "value": 5.0, - "__meta": [ - { - "sourceRange": [ - 332, - 333, - 0 - ] - } - ] - } - }, - "snapshots": [], - "parent": null - } - ], - "currentEnv": [ - 0, - 0 - ], - "callStack": [] + "HALF_TURN": { + "type": "Number", + "value": 180.0, + "__meta": [] + }, + "QUARTER_TURN": { + "type": "Number", + "value": 90.0, + "__meta": [] + }, + "THREE_QUARTER_TURN": { + "type": "Number", + "value": 270.0, + "__meta": [] + }, + "ZERO": { + "type": "Number", + "value": 0.0, + "__meta": [] + }, + "a": { + "type": "Number", + "value": 3.0, + "__meta": [ + { + "sourceRange": [ + 64, + 65, + 0 + ] + } + ] + }, + "b": { + "type": "Number", + "value": 4.0, + "__meta": [ + { + "sourceRange": [ + 199, + 200, + 0 + ] + } + ] + }, + "c": { + "type": "Number", + "value": 5.0, + "__meta": [ + { + "sourceRange": [ + 332, + 333, + 0 + ] + } + ] + } } diff --git a/src/wasm-lib/kcl/tests/import_constant/program_memory.snap b/src/wasm-lib/kcl/tests/import_constant/program_memory.snap index 7ae38dd36..84d065389 100644 --- a/src/wasm-lib/kcl/tests/import_constant/program_memory.snap +++ b/src/wasm-lib/kcl/tests/import_constant/program_memory.snap @@ -1,91 +1,39 @@ --- source: kcl/src/simulation_tests.rs -description: Program memory after executing import_constant.kcl +description: Variables in memory after executing import_constant.kcl --- { - "environments": [ - { - "bindings": { - "HALF_TURN": { - "type": "Number", - "value": 180.0, - "__meta": [] - }, - "QUARTER_TURN": { - "type": "Number", - "value": 90.0, - "__meta": [] - }, - "THREE_QUARTER_TURN": { - "type": "Number", - "value": 270.0, - "__meta": [] - }, - "ZERO": { - "type": "Number", - "value": 0.0, - "__meta": [] - }, - "three": { - "type": "Number", - "value": 3.0, - "__meta": [ - { - "sourceRange": [ - 15, - 16, - 1 - ] - } - ] - } - }, - "snapshots": [], - "parent": null - }, - { - "bindings": { - "HALF_TURN": { - "type": "Number", - "value": 180.0, - "__meta": [] - }, - "QUARTER_TURN": { - "type": "Number", - "value": 90.0, - "__meta": [] - }, - "THREE_QUARTER_TURN": { - "type": "Number", - "value": 270.0, - "__meta": [] - }, - "ZERO": { - "type": "Number", - "value": 0.0, - "__meta": [] - }, - "three": { - "type": "Number", - "value": 3.0, - "__meta": [ - { - "sourceRange": [ - 15, - 16, - 1 - ] - } - ] - } - }, - "snapshots": [], - "parent": null - } - ], - "currentEnv": [ - 0, - 0 - ], - "callStack": [] + "HALF_TURN": { + "type": "Number", + "value": 180.0, + "__meta": [] + }, + "QUARTER_TURN": { + "type": "Number", + "value": 90.0, + "__meta": [] + }, + "THREE_QUARTER_TURN": { + "type": "Number", + "value": 270.0, + "__meta": [] + }, + "ZERO": { + "type": "Number", + "value": 0.0, + "__meta": [] + }, + "three": { + "type": "Number", + "value": 3.0, + "__meta": [ + { + "sourceRange": [ + 15, + 16, + 1 + ] + } + ] + } } diff --git a/src/wasm-lib/kcl/tests/import_export/program_memory.snap b/src/wasm-lib/kcl/tests/import_export/program_memory.snap index f4422ff01..4bad48a1e 100644 --- a/src/wasm-lib/kcl/tests/import_export/program_memory.snap +++ b/src/wasm-lib/kcl/tests/import_export/program_memory.snap @@ -1,130 +1,39 @@ --- source: kcl/src/simulation_tests.rs -description: Program memory after executing import_export.kcl +description: Variables in memory after executing import_export.kcl --- { - "environments": [ - { - "bindings": { - "HALF_TURN": { - "type": "Number", - "value": 180.0, - "__meta": [] - }, - "QUARTER_TURN": { - "type": "Number", - "value": 90.0, - "__meta": [] - }, - "THREE_QUARTER_TURN": { - "type": "Number", - "value": 270.0, - "__meta": [] - }, - "ZERO": { - "type": "Number", - "value": 0.0, - "__meta": [] - }, - "three": { - "type": "Number", - "value": 3.0, - "__meta": [ - { - "sourceRange": [ - 15, - 16, - 2 - ] - } - ] - } - }, - "snapshots": [], - "parent": null - }, - { - "bindings": { - "HALF_TURN": { - "type": "Number", - "value": 180.0, - "__meta": [] - }, - "QUARTER_TURN": { - "type": "Number", - "value": 90.0, - "__meta": [] - }, - "THREE_QUARTER_TURN": { - "type": "Number", - "value": 270.0, - "__meta": [] - }, - "ZERO": { - "type": "Number", - "value": 0.0, - "__meta": [] - }, - "three": { - "type": "Number", - "value": 3.0, - "__meta": [ - { - "sourceRange": [ - 15, - 16, - 2 - ] - } - ] - } - }, - "snapshots": [], - "parent": null - }, - { - "bindings": { - "HALF_TURN": { - "type": "Number", - "value": 180.0, - "__meta": [] - }, - "QUARTER_TURN": { - "type": "Number", - "value": 90.0, - "__meta": [] - }, - "THREE_QUARTER_TURN": { - "type": "Number", - "value": 270.0, - "__meta": [] - }, - "ZERO": { - "type": "Number", - "value": 0.0, - "__meta": [] - }, - "three": { - "type": "Number", - "value": 3.0, - "__meta": [ - { - "sourceRange": [ - 15, - 16, - 2 - ] - } - ] - } - }, - "snapshots": [], - "parent": null - } - ], - "currentEnv": [ - 0, - 0 - ], - "callStack": [] + "HALF_TURN": { + "type": "Number", + "value": 180.0, + "__meta": [] + }, + "QUARTER_TURN": { + "type": "Number", + "value": 90.0, + "__meta": [] + }, + "THREE_QUARTER_TURN": { + "type": "Number", + "value": 270.0, + "__meta": [] + }, + "ZERO": { + "type": "Number", + "value": 0.0, + "__meta": [] + }, + "three": { + "type": "Number", + "value": 3.0, + "__meta": [ + { + "sourceRange": [ + 15, + 16, + 2 + ] + } + ] + } } diff --git a/src/wasm-lib/kcl/tests/import_foreign/program_memory.snap b/src/wasm-lib/kcl/tests/import_foreign/program_memory.snap index 32926d6c8..245fea9a4 100644 --- a/src/wasm-lib/kcl/tests/import_foreign/program_memory.snap +++ b/src/wasm-lib/kcl/tests/import_foreign/program_memory.snap @@ -1,68 +1,55 @@ --- source: kcl/src/simulation_tests.rs -description: Program memory after executing import_foreign.kcl +description: Variables in memory after executing import_foreign.kcl --- { - "environments": [ - { - "bindings": { - "HALF_TURN": { - "type": "Number", - "value": 180.0, - "__meta": [] - }, - "QUARTER_TURN": { - "type": "Number", - "value": 90.0, - "__meta": [] - }, - "THREE_QUARTER_TURN": { - "type": "Number", - "value": 270.0, - "__meta": [] - }, - "ZERO": { - "type": "Number", - "value": 0.0, - "__meta": [] - }, - "cube": { - "type": "Module", - "value": 1, - "__meta": [ - { - "sourceRange": [ - 0, - 36, - 0 - ] - } - ] - }, - "model": { - "type": "ImportedGeometry", - "id": "[uuid]", - "value": [ - "cube.gltf" - ], - "__meta": [ - { - "sourceRange": [ - 0, - 36, - 0 - ] - } - ] - } - }, - "snapshots": [], - "parent": null - } - ], - "currentEnv": [ - 0, - 0 - ], - "callStack": [] + "HALF_TURN": { + "type": "Number", + "value": 180.0, + "__meta": [] + }, + "QUARTER_TURN": { + "type": "Number", + "value": 90.0, + "__meta": [] + }, + "THREE_QUARTER_TURN": { + "type": "Number", + "value": 270.0, + "__meta": [] + }, + "ZERO": { + "type": "Number", + "value": 0.0, + "__meta": [] + }, + "cube": { + "type": "Module", + "value": 1, + "__meta": [ + { + "sourceRange": [ + 0, + 36, + 0 + ] + } + ] + }, + "model": { + "type": "ImportedGeometry", + "id": "[uuid]", + "value": [ + "cube.gltf" + ], + "__meta": [ + { + "sourceRange": [ + 0, + 36, + 0 + ] + } + ] + } } diff --git a/src/wasm-lib/kcl/tests/import_function_not_sketch/program_memory.snap b/src/wasm-lib/kcl/tests/import_function_not_sketch/program_memory.snap index 88cd55c75..9afbd8a56 100644 --- a/src/wasm-lib/kcl/tests/import_function_not_sketch/program_memory.snap +++ b/src/wasm-lib/kcl/tests/import_function_not_sketch/program_memory.snap @@ -1,592 +1,140 @@ --- source: kcl/src/simulation_tests.rs -description: Program memory after executing import_function_not_sketch.kcl +description: Variables in memory after executing import_function_not_sketch.kcl --- { - "environments": [ - { - "bindings": { - "HALF_TURN": { - "type": "Number", - "value": 180.0, - "__meta": [] - }, - "QUARTER_TURN": { - "type": "Number", - "value": 90.0, - "__meta": [] - }, - "THREE_QUARTER_TURN": { - "type": "Number", - "value": 270.0, - "__meta": [] - }, - "ZERO": { - "type": "Number", - "value": 0.0, - "__meta": [] - }, - "one": { - "type": "Function", - "expression": { - "body": { - "body": [ - { - "argument": { - "end": 106, - "left": { - "arguments": [], - "callee": { - "end": 100, - "name": "two", - "start": 97, - "type": "Identifier" - }, - "end": 102, - "start": 97, - "type": "CallExpression", - "type": "CallExpression" - }, - "operator": "-", - "right": { - "end": 106, - "raw": "1", - "start": 105, - "type": "Literal", - "type": "Literal", - "value": { - "value": 1.0, - "suffix": "None" - } - }, - "start": 97, - "type": "BinaryExpression", - "type": "BinaryExpression" - }, - "end": 106, - "start": 90, - "type": "ReturnStatement", - "type": "ReturnStatement" + "HALF_TURN": { + "type": "Number", + "value": 180.0, + "__meta": [] + }, + "QUARTER_TURN": { + "type": "Number", + "value": 90.0, + "__meta": [] + }, + "THREE_QUARTER_TURN": { + "type": "Number", + "value": 270.0, + "__meta": [] + }, + "ZERO": { + "type": "Number", + "value": 0.0, + "__meta": [] + }, + "one": { + "type": "Function", + "expression": { + "body": { + "body": [ + { + "argument": { + "end": 106, + "left": { + "arguments": [], + "callee": { + "end": 100, + "name": "two", + "start": 97, + "type": "Identifier" + }, + "end": 102, + "start": 97, + "type": "CallExpression", + "type": "CallExpression" + }, + "operator": "-", + "right": { + "end": 106, + "raw": "1", + "start": 105, + "type": "Literal", + "type": "Literal", + "value": { + "value": 1.0, + "suffix": "None" } - ], - "end": 108, - "start": 86 + }, + "start": 97, + "type": "BinaryExpression", + "type": "BinaryExpression" }, - "end": 108, - "params": [], - "start": 83, - "type": "FunctionExpression" - }, - "memory": [ - 0, - 1 - ], - "__meta": [ - { - "sourceRange": [ - 83, - 108, - 0 - ] - } - ] - }, - "two": { - "type": "Function", - "expression": { - "body": { - "body": [ - { - "argument": { - "end": 388, - "moduleId": 1, - "raw": "5", - "start": 387, - "type": "Literal", - "type": "Literal", - "value": { - "value": 5.0, - "suffix": "None" - } - }, - "end": 388, - "moduleId": 1, - "start": 380, - "type": "ReturnStatement", - "type": "ReturnStatement" - } - ], - "end": 390, - "moduleId": 1, - "start": 378 - }, - "end": 390, - "moduleId": 1, - "params": [], - "start": 372, - "type": "FunctionExpression" - }, - "memory": [ - 1, - 1 - ], - "__meta": [ - { - "sourceRange": [ - 372, - 390, - 1 - ] - } - ] - } - }, - "snapshots": [ - { - "parent_snapshot": null, - "data": { - "one": { - "type": "Tombstone", - "value": null, - "__meta": [] - } + "end": 106, + "start": 90, + "type": "ReturnStatement", + "type": "ReturnStatement" } - } - ], - "parent": null + ], + "end": 108, + "start": 86 + }, + "end": 108, + "params": [], + "start": 83, + "type": "FunctionExpression" }, - { - "bindings": { - "HALF_TURN": { - "type": "Number", - "value": 180.0, - "__meta": [] - }, - "QUARTER_TURN": { - "type": "Number", - "value": 90.0, - "__meta": [] - }, - "THREE_QUARTER_TURN": { - "type": "Number", - "value": 270.0, - "__meta": [] - }, - "ZERO": { - "type": "Number", - "value": 0.0, - "__meta": [] - }, - "part001": { - "type": "Solid", - "value": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 109, - 127, - 1 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 133, - 152, - 1 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 158, - 177, - 1 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 183, - 202, - 1 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 208, - 233, - 1 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 239, - 260, - 1 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 266, - 285, - 1 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 291, - 298, - 1 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 109, - 127, - 1 - ] - }, - "from": [ - 4.0, - 12.0 - ], - "tag": null, - "to": [ - 6.0, - 12.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 133, - 152, - 1 - ] - }, - "from": [ - 6.0, - 12.0 - ], - "tag": null, - "to": [ - 6.0, - 6.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 158, - 177, - 1 - ] - }, - "from": [ - 6.0, - 6.0 - ], - "tag": null, - "to": [ - 10.0, - 0.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 183, - 202, - 1 - ] - }, - "from": [ - 10.0, - 0.0 - ], - "tag": null, - "to": [ - 10.0, - -6.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 208, - 233, - 1 - ] - }, - "from": [ - 10.0, - -6.0 - ], - "tag": null, - "to": [ - 6.25, - -10.5 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 239, - 260, - 1 - ] - }, - "from": [ - 6.25, - -10.5 - ], - "tag": null, - "to": [ - 6.25, - -16.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 266, - 285, - 1 - ] - }, - "from": [ - 6.25, - -16.0 - ], - "tag": null, - "to": [ - 4.25, - -16.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 291, - 298, - 1 - ] - }, - "from": [ - 4.25, - -16.0 - ], - "tag": null, - "to": [ - 4.0, - 12.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 4.0, - 12.0 - ], - "to": [ - 4.0, - 12.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 77, - 103, - 1 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 77, - 103, - 1 - ] - } - ] - }, - "height": 0.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 77, - 103, - 1 - ] - } - ] - } - }, - "two": { - "type": "Function", - "expression": { - "body": { - "body": [ - { - "argument": { - "end": 388, - "moduleId": 1, - "raw": "5", - "start": 387, - "type": "Literal", - "type": "Literal", - "value": { - "value": 5.0, - "suffix": "None" - } - }, - "end": 388, - "moduleId": 1, - "start": 380, - "type": "ReturnStatement", - "type": "ReturnStatement" - } - ], - "end": 390, + "memory": [ + 0, + 1 + ], + "__meta": [ + { + "sourceRange": [ + 83, + 108, + 0 + ] + } + ] + }, + "two": { + "type": "Function", + "expression": { + "body": { + "body": [ + { + "argument": { + "end": 388, "moduleId": 1, - "start": 378 + "raw": "5", + "start": 387, + "type": "Literal", + "type": "Literal", + "value": { + "value": 5.0, + "suffix": "None" + } }, - "end": 390, + "end": 388, "moduleId": 1, - "params": [], - "start": 372, - "type": "FunctionExpression" - }, - "memory": [ - 1, - 1 - ], - "__meta": [ - { - "sourceRange": [ - 372, - 390, - 1 - ] - } - ] - } - }, - "snapshots": [ - { - "parent_snapshot": null, - "data": { - "two": { - "type": "Tombstone", - "value": null, - "__meta": [] - } + "start": 380, + "type": "ReturnStatement", + "type": "ReturnStatement" } - } - ], - "parent": null - } - ], - "currentEnv": [ - 0, - 0 - ], - "callStack": [] + ], + "end": 390, + "moduleId": 1, + "start": 378 + }, + "end": 390, + "moduleId": 1, + "params": [], + "start": 372, + "type": "FunctionExpression" + }, + "memory": [ + 1, + 1 + ], + "__meta": [ + { + "sourceRange": [ + 372, + 390, + 1 + ] + } + ] + } } diff --git a/src/wasm-lib/kcl/tests/import_glob/program_memory.snap b/src/wasm-lib/kcl/tests/import_glob/program_memory.snap index 933e9872c..eb51466a1 100644 --- a/src/wasm-lib/kcl/tests/import_glob/program_memory.snap +++ b/src/wasm-lib/kcl/tests/import_glob/program_memory.snap @@ -1,200 +1,88 @@ --- source: kcl/src/simulation_tests.rs -description: Program memory after executing import_glob.kcl +description: Variables in memory after executing import_glob.kcl --- { - "environments": [ - { - "bindings": { - "HALF_TURN": { - "type": "Number", - "value": 180.0, - "__meta": [] - }, - "QUARTER_TURN": { - "type": "Number", - "value": 90.0, - "__meta": [] - }, - "THREE_QUARTER_TURN": { - "type": "Number", - "value": 270.0, - "__meta": [] - }, - "ZERO": { - "type": "Number", - "value": 0.0, - "__meta": [] - }, - "foo": { - "type": "Function", - "expression": { - "body": { - "body": [ - { - "argument": { - "end": 47, - "moduleId": 1, - "raw": "42", - "start": 45, - "type": "Literal", - "type": "Literal", - "value": { - "value": 42.0, - "suffix": "None" - } - }, - "end": 47, - "moduleId": 1, - "start": 38, - "type": "ReturnStatement", - "type": "ReturnStatement" - } - ], - "end": 49, + "HALF_TURN": { + "type": "Number", + "value": 180.0, + "__meta": [] + }, + "QUARTER_TURN": { + "type": "Number", + "value": 90.0, + "__meta": [] + }, + "THREE_QUARTER_TURN": { + "type": "Number", + "value": 270.0, + "__meta": [] + }, + "ZERO": { + "type": "Number", + "value": 0.0, + "__meta": [] + }, + "foo": { + "type": "Function", + "expression": { + "body": { + "body": [ + { + "argument": { + "end": 47, "moduleId": 1, - "start": 34 + "raw": "42", + "start": 45, + "type": "Literal", + "type": "Literal", + "value": { + "value": 42.0, + "suffix": "None" + } }, - "end": 49, + "end": 47, "moduleId": 1, - "params": [], - "start": 31, - "type": "FunctionExpression" - }, - "memory": [ - 1, - 1 - ], - "__meta": [ - { - "sourceRange": [ - 31, - 49, - 1 - ] - } - ] - }, - "three": { - "type": "Number", - "value": 3.0, - "__meta": [ - { - "sourceRange": [ - 15, - 16, - 1 - ] - } - ] - } - }, - "snapshots": [], - "parent": null - }, - { - "bindings": { - "HALF_TURN": { - "type": "Number", - "value": 180.0, - "__meta": [] - }, - "QUARTER_TURN": { - "type": "Number", - "value": 90.0, - "__meta": [] - }, - "THREE_QUARTER_TURN": { - "type": "Number", - "value": 270.0, - "__meta": [] - }, - "ZERO": { - "type": "Number", - "value": 0.0, - "__meta": [] - }, - "foo": { - "type": "Function", - "expression": { - "body": { - "body": [ - { - "argument": { - "end": 47, - "moduleId": 1, - "raw": "42", - "start": 45, - "type": "Literal", - "type": "Literal", - "value": { - "value": 42.0, - "suffix": "None" - } - }, - "end": 47, - "moduleId": 1, - "start": 38, - "type": "ReturnStatement", - "type": "ReturnStatement" - } - ], - "end": 49, - "moduleId": 1, - "start": 34 - }, - "end": 49, - "moduleId": 1, - "params": [], - "start": 31, - "type": "FunctionExpression" - }, - "memory": [ - 1, - 1 - ], - "__meta": [ - { - "sourceRange": [ - 31, - 49, - 1 - ] - } - ] - }, - "three": { - "type": "Number", - "value": 3.0, - "__meta": [ - { - "sourceRange": [ - 15, - 16, - 1 - ] - } - ] - } - }, - "snapshots": [ - { - "parent_snapshot": null, - "data": { - "foo": { - "type": "Tombstone", - "value": null, - "__meta": [] - } + "start": 38, + "type": "ReturnStatement", + "type": "ReturnStatement" } - } - ], - "parent": null - } - ], - "currentEnv": [ - 0, - 0 - ], - "callStack": [] + ], + "end": 49, + "moduleId": 1, + "start": 34 + }, + "end": 49, + "moduleId": 1, + "params": [], + "start": 31, + "type": "FunctionExpression" + }, + "memory": [ + 1, + 1 + ], + "__meta": [ + { + "sourceRange": [ + 31, + 49, + 1 + ] + } + ] + }, + "three": { + "type": "Number", + "value": 3.0, + "__meta": [ + { + "sourceRange": [ + 15, + 16, + 1 + ] + } + ] + } } diff --git a/src/wasm-lib/kcl/tests/import_side_effect/program_memory.snap b/src/wasm-lib/kcl/tests/import_side_effect/program_memory.snap index b2456a0ea..93dc933d0 100644 --- a/src/wasm-lib/kcl/tests/import_side_effect/program_memory.snap +++ b/src/wasm-lib/kcl/tests/import_side_effect/program_memory.snap @@ -1,277 +1,75 @@ --- source: kcl/src/simulation_tests.rs -description: Program memory after executing import_side_effect.kcl +description: Variables in memory after executing import_side_effect.kcl --- { - "environments": [ - { - "bindings": { - "HALF_TURN": { - "type": "Number", - "value": 180.0, - "__meta": [] - }, - "QUARTER_TURN": { - "type": "Number", - "value": 90.0, - "__meta": [] - }, - "THREE_QUARTER_TURN": { - "type": "Number", - "value": 270.0, - "__meta": [] - }, - "ZERO": { - "type": "Number", - "value": 0.0, - "__meta": [] - }, - "foo": { - "type": "Function", - "expression": { - "body": { - "body": [ - { - "argument": { - "end": 32, - "moduleId": 1, - "raw": "0", - "start": 31, - "type": "Literal", - "type": "Literal", - "value": { - "value": 0.0, - "suffix": "None" - } - }, - "end": 32, - "moduleId": 1, - "start": 24, - "type": "ReturnStatement", - "type": "ReturnStatement" - } - ], - "end": 34, + "HALF_TURN": { + "type": "Number", + "value": 180.0, + "__meta": [] + }, + "QUARTER_TURN": { + "type": "Number", + "value": 90.0, + "__meta": [] + }, + "THREE_QUARTER_TURN": { + "type": "Number", + "value": 270.0, + "__meta": [] + }, + "ZERO": { + "type": "Number", + "value": 0.0, + "__meta": [] + }, + "foo": { + "type": "Function", + "expression": { + "body": { + "body": [ + { + "argument": { + "end": 32, "moduleId": 1, - "start": 22 + "raw": "0", + "start": 31, + "type": "Literal", + "type": "Literal", + "value": { + "value": 0.0, + "suffix": "None" + } }, - "end": 34, + "end": 32, "moduleId": 1, - "params": [], - "start": 16, - "type": "FunctionExpression" - }, - "memory": [ - 1, - 1 - ], - "__meta": [ - { - "sourceRange": [ - 16, - 34, - 1 - ] - } - ] - } + "start": 24, + "type": "ReturnStatement", + "type": "ReturnStatement" + } + ], + "end": 34, + "moduleId": 1, + "start": 22 }, - "snapshots": [], - "parent": null + "end": 34, + "moduleId": 1, + "params": [], + "start": 16, + "type": "FunctionExpression" }, - { - "bindings": { - "HALF_TURN": { - "type": "Number", - "value": 180.0, - "__meta": [] - }, - "QUARTER_TURN": { - "type": "Number", - "value": 90.0, - "__meta": [] - }, - "THREE_QUARTER_TURN": { - "type": "Number", - "value": 270.0, - "__meta": [] - }, - "ZERO": { - "type": "Number", - "value": 0.0, - "__meta": [] - }, - "foo": { - "type": "Function", - "expression": { - "body": { - "body": [ - { - "argument": { - "end": 32, - "moduleId": 1, - "raw": "0", - "start": 31, - "type": "Literal", - "type": "Literal", - "value": { - "value": 0.0, - "suffix": "None" - } - }, - "end": 32, - "moduleId": 1, - "start": 24, - "type": "ReturnStatement", - "type": "ReturnStatement" - } - ], - "end": 34, - "moduleId": 1, - "start": 22 - }, - "end": 34, - "moduleId": 1, - "params": [], - "start": 16, - "type": "FunctionExpression" - }, - "memory": [ - 1, - 1 - ], - "__meta": [ - { - "sourceRange": [ - 16, - 34, - 1 - ] - } - ] - }, - "part001": { - "type": "Sketch", - "value": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 106, - 149, - 1 - ] - }, - "ccw": true, - "center": [ - 0.0, - 0.0 - ], - "from": [ - 10.0, - 0.0 - ], - "radius": 10.0, - "tag": null, - "to": [ - 10.0, - 0.0 - ], - "type": "Circle" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 10.0, - 0.0 - ], - "to": [ - 10.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 106, - 149, - 1 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 106, - 149, - 1 - ] - } - ] - } - } - }, - "snapshots": [ - { - "parent_snapshot": null, - "data": { - "foo": { - "type": "Tombstone", - "value": null, - "__meta": [] - }, - "part001": { - "type": "Tombstone", - "value": null, - "__meta": [] - } - } - } - ], - "parent": null - } - ], - "currentEnv": [ - 0, - 0 - ], - "callStack": [] + "memory": [ + 1, + 1 + ], + "__meta": [ + { + "sourceRange": [ + 16, + 34, + 1 + ] + } + ] + } } diff --git a/src/wasm-lib/kcl/tests/import_whole/program_memory.snap b/src/wasm-lib/kcl/tests/import_whole/program_memory.snap index 567777e06..93fd446e4 100644 --- a/src/wasm-lib/kcl/tests/import_whole/program_memory.snap +++ b/src/wasm-lib/kcl/tests/import_whole/program_memory.snap @@ -1,210 +1,170 @@ --- source: kcl/src/simulation_tests.rs -description: Program memory after executing import_whole.kcl -snapshot_kind: text +description: Variables in memory after executing import_whole.kcl --- { - "environments": [ - { - "bindings": { - "HALF_TURN": { - "type": "Number", - "value": 180.0, - "__meta": [] - }, - "QUARTER_TURN": { - "type": "Number", - "value": 90.0, - "__meta": [] - }, - "THREE_QUARTER_TURN": { - "type": "Number", - "value": 270.0, - "__meta": [] - }, - "ZERO": { - "type": "Number", - "value": 0.0, - "__meta": [] - }, - "bar": { - "type": "Solid", - "value": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 61, - 104, - 1 - ], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", + "HALF_TURN": { + "type": "Number", + "value": 180.0, + "__meta": [] + }, + "QUARTER_TURN": { + "type": "Number", + "value": 90.0, + "__meta": [] + }, + "THREE_QUARTER_TURN": { + "type": "Number", + "value": 270.0, + "__meta": [] + }, + "ZERO": { + "type": "Number", + "value": 0.0, + "__meta": [] + }, + "bar": { + "type": "Solid", + "value": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 61, + 104, + 1 + ], + "tag": null, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 61, - 104, - 1 - ] - }, - "ccw": true, - "center": [ - 5.0, - 5.0 - ], - "from": [ - 15.0, - 5.0 - ], - "radius": 10.0, - "tag": null, - "to": [ - 15.0, - 5.0 - ], - "type": "Circle" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Inches" - }, - "__meta": [] - }, - "start": { - "from": [ - 15.0, - 5.0 - ], - "to": [ - 15.0, - 5.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 61, - 104, - 1 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - }, - "__meta": [ - { - "sourceRange": [ - 61, - 104, - 1 - ] - } + "sourceRange": [ + 61, + 104, + 1 ] }, - "height": 10.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - }, - "__meta": [ - { - "sourceRange": [ - 61, - 104, - 1 - ] - } + "ccw": true, + "center": [ + 5.0, + 5.0 + ], + "from": [ + 15.0, + 5.0 + ], + "radius": 10.0, + "tag": null, + "to": [ + 15.0, + 5.0 + ], + "type": "Circle" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Inches" + }, + "__meta": [] + }, + "start": { + "from": [ + 15.0, + 5.0 + ], + "to": [ + 15.0, + 5.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 61, + 104, + 1 ] } }, - "foo": { - "type": "Module", - "value": 1, - "__meta": [ - { - "sourceRange": [ - 34, - 66, - 0 - ] - } + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Inches" + }, + "__meta": [ + { + "sourceRange": [ + 61, + 104, + 1 + ] + } + ] + }, + "height": 10.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Inches" + }, + "__meta": [ + { + "sourceRange": [ + 61, + 104, + 1 ] } - }, - "snapshots": [], - "parent": null - }, - { - "bindings": { - "HALF_TURN": { - "type": "Number", - "value": 180.0, - "__meta": [] - }, - "QUARTER_TURN": { - "type": "Number", - "value": 90.0, - "__meta": [] - }, - "THREE_QUARTER_TURN": { - "type": "Number", - "value": 270.0, - "__meta": [] - }, - "ZERO": { - "type": "Number", - "value": 0.0, - "__meta": [] - } - }, - "snapshots": [], - "parent": null + ] } - ], - "currentEnv": [ - 0, - 0 - ], - "callStack": [] + }, + "foo": { + "type": "Module", + "value": 1, + "__meta": [ + { + "sourceRange": [ + 34, + 66, + 0 + ] + } + ] + } } diff --git a/src/wasm-lib/kcl/tests/index_of_array/program_memory.snap b/src/wasm-lib/kcl/tests/index_of_array/program_memory.snap index 6455f3bf3..ba91f6e15 100644 --- a/src/wasm-lib/kcl/tests/index_of_array/program_memory.snap +++ b/src/wasm-lib/kcl/tests/index_of_array/program_memory.snap @@ -1,131 +1,118 @@ --- source: kcl/src/simulation_tests.rs -description: Program memory after executing index_of_array.kcl +description: Variables in memory after executing index_of_array.kcl --- { - "environments": [ - { - "bindings": { - "HALF_TURN": { - "type": "Number", - "value": 180.0, - "__meta": [] - }, - "QUARTER_TURN": { - "type": "Number", - "value": 90.0, - "__meta": [] - }, - "THREE_QUARTER_TURN": { - "type": "Number", - "value": 270.0, - "__meta": [] - }, - "ZERO": { - "type": "Number", - "value": 0.0, - "__meta": [] - }, - "arr": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 90.0, - "__meta": [ - { - "sourceRange": [ - 42, - 44, - 0 - ] - } - ] - }, - { - "type": "Number", - "value": 91.0, - "__meta": [ - { - "sourceRange": [ - 46, - 48, - 0 - ] - } - ] - }, - { - "type": "Number", - "value": 92.0, - "__meta": [ - { - "sourceRange": [ - 50, - 52, - 0 - ] - } - ] - } - ], - "__meta": [ - { - "sourceRange": [ - 41, - 53, - 0 - ] - } - ] - }, - "i": { - "type": "Number", - "value": 1.0, - "__meta": [ - { - "sourceRange": [ - 252, - 262, - 0 - ] - } - ] - }, - "result0": { - "type": "Number", - "value": 91.0, - "__meta": [ - { - "sourceRange": [ - 46, - 48, - 0 - ] - } - ] - }, - "result1": { - "type": "Number", - "value": 91.0, - "__meta": [ - { - "sourceRange": [ - 46, - 48, - 0 - ] - } - ] - } + "HALF_TURN": { + "type": "Number", + "value": 180.0, + "__meta": [] + }, + "QUARTER_TURN": { + "type": "Number", + "value": 90.0, + "__meta": [] + }, + "THREE_QUARTER_TURN": { + "type": "Number", + "value": 270.0, + "__meta": [] + }, + "ZERO": { + "type": "Number", + "value": 0.0, + "__meta": [] + }, + "arr": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 90.0, + "__meta": [ + { + "sourceRange": [ + 42, + 44, + 0 + ] + } + ] }, - "snapshots": [], - "parent": null - } - ], - "currentEnv": [ - 0, - 0 - ], - "callStack": [] + { + "type": "Number", + "value": 91.0, + "__meta": [ + { + "sourceRange": [ + 46, + 48, + 0 + ] + } + ] + }, + { + "type": "Number", + "value": 92.0, + "__meta": [ + { + "sourceRange": [ + 50, + 52, + 0 + ] + } + ] + } + ], + "__meta": [ + { + "sourceRange": [ + 41, + 53, + 0 + ] + } + ] + }, + "i": { + "type": "Number", + "value": 1.0, + "__meta": [ + { + "sourceRange": [ + 252, + 262, + 0 + ] + } + ] + }, + "result0": { + "type": "Number", + "value": 91.0, + "__meta": [ + { + "sourceRange": [ + 46, + 48, + 0 + ] + } + ] + }, + "result1": { + "type": "Number", + "value": 91.0, + "__meta": [ + { + "sourceRange": [ + 46, + 48, + 0 + ] + } + ] + } } diff --git a/src/wasm-lib/kcl/tests/kittycad_svg/program_memory.snap b/src/wasm-lib/kcl/tests/kittycad_svg/program_memory.snap index c70b247af..9257aae5b 100644 --- a/src/wasm-lib/kcl/tests/kittycad_svg/program_memory.snap +++ b/src/wasm-lib/kcl/tests/kittycad_svg/program_memory.snap @@ -1,8865 +1,8851 @@ --- source: kcl/src/simulation_tests.rs -description: Program memory after executing kittycad_svg.kcl -snapshot_kind: text +description: Variables in memory after executing kittycad_svg.kcl --- { - "environments": [ - { - "bindings": { - "HALF_TURN": { - "type": "Number", - "value": 180.0, - "__meta": [] + "HALF_TURN": { + "type": "Number", + "value": 180.0, + "__meta": [] + }, + "QUARTER_TURN": { + "type": "Number", + "value": 90.0, + "__meta": [] + }, + "THREE_QUARTER_TURN": { + "type": "Number", + "value": 270.0, + "__meta": [] + }, + "ZERO": { + "type": "Number", + "value": 0.0, + "__meta": [] + }, + "svg": { + "type": "Solid", + "value": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 62, + 96, + 0 + ], + "tag": null, + "type": "extrudePlane" }, - "QUARTER_TURN": { - "type": "Number", - "value": 90.0, - "__meta": [] + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 118, + 151, + 0 + ], + "tag": null, + "type": "extrudePlane" }, - "THREE_QUARTER_TURN": { - "type": "Number", - "value": 270.0, - "__meta": [] + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 181, + 214, + 0 + ], + "tag": null, + "type": "extrudePlane" }, - "ZERO": { - "type": "Number", - "value": 0.0, - "__meta": [] + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 246, + 280, + 0 + ], + "tag": null, + "type": "extrudePlane" }, - "svg": { - "type": "Solid", - "value": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 62, - 96, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 118, - 151, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 181, - 214, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 246, - 280, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 310, - 341, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 373, - 403, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 433, - 466, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 498, - 531, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 561, - 594, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 626, - 659, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 689, - 722, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 754, - 786, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 816, - 848, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 880, - 913, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 943, - 977, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1009, - 1042, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1072, - 1105, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1137, - 1171, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1202, - 1236, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1268, - 1302, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1333, - 1367, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1399, - 1433, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1463, - 1494, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1526, - 1558, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1589, - 1624, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1656, - 1690, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1721, - 1755, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1787, - 1822, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1853, - 1888, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1920, - 1955, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1986, - 2020, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2052, - 2086, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2117, - 2152, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2184, - 2219, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2249, - 2283, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2315, - 2349, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2379, - 2412, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2444, - 2477, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2508, - 2542, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2574, - 2608, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2639, - 2672, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2704, - 2737, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2768, - 2802, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2834, - 2868, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2899, - 2937, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2959, - 2997, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 3028, - 3062, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 3094, - 3127, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 3158, - 3192, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 3224, - 3259, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 3290, - 3325, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 3357, - 3392, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 3440, - 3474, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 3496, - 3530, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 3561, - 3596, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 3628, - 3663, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 3694, - 3728, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 3750, - 3784, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 3815, - 3849, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 3881, - 3915, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 3946, - 3980, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 4002, - 4036, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 4067, - 4101, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 4133, - 4167, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 4198, - 4233, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 4255, - 4290, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 4321, - 4369, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 4401, - 4449, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 4480, - 4514, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 4536, - 4570, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 4601, - 4636, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 4668, - 4703, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 4734, - 4769, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 4791, - 4826, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 4857, - 4892, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 4924, - 4959, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 4990, - 5025, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 5047, - 5082, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 5113, - 5148, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 5180, - 5215, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 5246, - 5280, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 5302, - 5336, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 5366, - 5400, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 5432, - 5465, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 5495, - 5527, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 5559, - 5592, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 5622, - 5655, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 5687, - 5720, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 5750, - 5783, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 5815, - 5848, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 5878, - 5915, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 5947, - 5983, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 6013, - 6046, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 6078, - 6112, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 6142, - 6176, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 6208, - 6242, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 6272, - 6306, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 6328, - 6365, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 6397, - 6435, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 6465, - 6500, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 6532, - 6566, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 6588, - 6624, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 6654, - 6691, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 6723, - 6758, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 6788, - 6823, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 6855, - 6889, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 6920, - 6954, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 6986, - 7021, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 7052, - 7086, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 7118, - 7151, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 7181, - 7214, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 7246, - 7293, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 7324, - 7359, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 7381, - 7416, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 7447, - 7482, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 7514, - 7549, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 7647, - 7681, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 7703, - 7738, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 7770, - 7805, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 7836, - 7871, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 7908, - 7956, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 7987, - 8035, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 8067, - 8102, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 8133, - 8168, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 8200, - 8248, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 8279, - 8327, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 8359, - 8393, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 8423, - 8456, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 8488, - 8522, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 8552, - 8586, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 8618, - 8665, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 8696, - 8743, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 8775, - 8809, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 8840, - 8875, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 8907, - 8942, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 8972, - 9006, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 9038, - 9071, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 9093, - 9127, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 9157, - 9191, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 9223, - 9256, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 9286, - 9318, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 9350, - 9383, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 9414, - 9448, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 9480, - 9514, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 9545, - 9593, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 9625, - 9673, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 9704, - 9737, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 9769, - 9801, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 9832, - 9865, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 9887, - 9920, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 9950, - 9982, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 10014, - 10046, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 10076, - 10109, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 10141, - 10174, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 10204, - 10237, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 10269, - 10308, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 10338, - 10377, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 10409, - 10442, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 10472, - 10505, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 10537, - 10570, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 10600, - 10632, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 10664, - 10696, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 10727, - 10760, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 10792, - 10825, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 10856, - 10890, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 10912, - 10946, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 10976, - 11010, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 11042, - 11076, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 11106, - 11139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 11171, - 11204, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 11234, - 11268, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 11300, - 11334, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 11364, - 11398, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 11430, - 11470, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 11500, - 11540, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 11572, - 11606, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 11636, - 11683, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 11715, - 11762, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 11793, - 11826, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 11858, - 11891, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 11922, - 11956, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 11978, - 12009, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 12039, - 12083, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 12115, - 12162, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 12193, - 12226, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 12258, - 12291, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 12322, - 12356, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 12388, - 12422, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 12452, - 12485, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 12517, - 12550, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 12580, - 12614, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 12646, - 12680, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 12710, - 12744, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 12776, - 12816, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 12846, - 12886, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 12918, - 12952, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 12982, - 13016, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 13048, - 13082, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 13112, - 13145, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 13177, - 13210, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 13240, - 13274, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 13306, - 13340, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 13370, - 13403, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 13435, - 13468, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 13498, - 13531, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 13553, - 13583, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 13613, - 13643, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 13675, - 13708, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 13738, - 13770, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 13802, - 13834, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 13864, - 13897, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 13929, - 13962, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 13992, - 14024, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 14056, - 14088, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 14118, - 14151, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 14183, - 14216, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 14246, - 14279, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 14311, - 14350, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 14380, - 14419, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 14451, - 14484, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 14514, - 14547, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 14579, - 14612, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 14642, - 14674, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 14706, - 14738, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 14768, - 14801, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 14833, - 14866, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 14896, - 14928, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 14960, - 14992, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 15022, - 15056, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 15078, - 15112, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 15142, - 15176, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 15208, - 15241, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 15271, - 15304, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 15336, - 15370, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 15401, - 15448, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 15480, - 15527, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 15558, - 15591, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 15613, - 15645, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 15675, - 15707, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 15739, - 15772, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 15802, - 15835, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 15867, - 15900, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 15930, - 15963, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 15995, - 16028, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 16058, - 16092, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 16114, - 16148, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 16178, - 16211, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 16243, - 16275, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 16305, - 16338, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 16370, - 16404, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 16435, - 16469, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 16501, - 16535, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 16566, - 16599, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 16621, - 16654, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 16684, - 16717, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 16749, - 16782, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 16812, - 16845, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 16877, - 16909, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 16939, - 16970, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 17002, - 17034, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 17065, - 17096, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 17118, - 17150, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 17182, - 17215, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 17246, - 17280, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 17312, - 17346, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 17376, - 17409, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 17441, - 17474, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 17504, - 17536, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 17568, - 17601, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 17623, - 17655, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 17687, - 17720, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 17750, - 17784, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 17816, - 17850, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 17880, - 17914, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 17946, - 17980, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 18010, - 18044, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 18076, - 18111, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 18133, - 18168, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 18200, - 18235, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 18266, - 18301, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 18333, - 18341, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 310, + 341, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 373, + 403, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 433, + 466, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 498, + 531, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 561, + 594, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 626, + 659, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 689, + 722, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 754, + 786, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 816, + 848, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 880, + 913, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 943, + 977, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1009, + 1042, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1072, + 1105, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1137, + 1171, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1202, + 1236, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1268, + 1302, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1333, + 1367, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1399, + 1433, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1463, + 1494, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1526, + 1558, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1589, + 1624, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1656, + 1690, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1721, + 1755, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1787, + 1822, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1853, + 1888, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1920, + 1955, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1986, + 2020, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2052, + 2086, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2117, + 2152, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2184, + 2219, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2249, + 2283, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2315, + 2349, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2379, + 2412, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2444, + 2477, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2508, + 2542, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2574, + 2608, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2639, + 2672, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2704, + 2737, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2768, + 2802, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2834, + 2868, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2899, + 2937, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2959, + 2997, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 3028, + 3062, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 3094, + 3127, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 3158, + 3192, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 3224, + 3259, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 3290, + 3325, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 3357, + 3392, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 3440, + 3474, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 3496, + 3530, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 3561, + 3596, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 3628, + 3663, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 3694, + 3728, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 3750, + 3784, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 3815, + 3849, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 3881, + 3915, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 3946, + 3980, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 4002, + 4036, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 4067, + 4101, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 4133, + 4167, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 4198, + 4233, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 4255, + 4290, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 4321, + 4369, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 4401, + 4449, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 4480, + 4514, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 4536, + 4570, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 4601, + 4636, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 4668, + 4703, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 4734, + 4769, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 4791, + 4826, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 4857, + 4892, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 4924, + 4959, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 4990, + 5025, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5047, + 5082, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5113, + 5148, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5180, + 5215, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5246, + 5280, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5302, + 5336, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5366, + 5400, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5432, + 5465, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5495, + 5527, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5559, + 5592, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5622, + 5655, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5687, + 5720, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5750, + 5783, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5815, + 5848, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5878, + 5915, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5947, + 5983, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 6013, + 6046, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 6078, + 6112, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 6142, + 6176, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 6208, + 6242, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 6272, + 6306, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 6328, + 6365, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 6397, + 6435, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 6465, + 6500, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 6532, + 6566, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 6588, + 6624, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 6654, + 6691, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 6723, + 6758, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 6788, + 6823, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 6855, + 6889, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 6920, + 6954, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 6986, + 7021, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 7052, + 7086, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 7118, + 7151, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 7181, + 7214, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 7246, + 7293, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 7324, + 7359, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 7381, + 7416, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 7447, + 7482, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 7514, + 7549, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 7647, + 7681, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 7703, + 7738, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 7770, + 7805, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 7836, + 7871, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 7908, + 7956, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 7987, + 8035, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 8067, + 8102, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 8133, + 8168, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 8200, + 8248, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 8279, + 8327, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 8359, + 8393, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 8423, + 8456, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 8488, + 8522, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 8552, + 8586, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 8618, + 8665, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 8696, + 8743, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 8775, + 8809, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 8840, + 8875, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 8907, + 8942, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 8972, + 9006, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 9038, + 9071, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 9093, + 9127, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 9157, + 9191, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 9223, + 9256, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 9286, + 9318, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 9350, + 9383, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 9414, + 9448, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 9480, + 9514, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 9545, + 9593, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 9625, + 9673, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 9704, + 9737, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 9769, + 9801, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 9832, + 9865, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 9887, + 9920, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 9950, + 9982, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 10014, + 10046, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 10076, + 10109, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 10141, + 10174, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 10204, + 10237, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 10269, + 10308, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 10338, + 10377, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 10409, + 10442, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 10472, + 10505, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 10537, + 10570, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 10600, + 10632, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 10664, + 10696, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 10727, + 10760, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 10792, + 10825, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 10856, + 10890, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 10912, + 10946, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 10976, + 11010, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 11042, + 11076, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 11106, + 11139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 11171, + 11204, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 11234, + 11268, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 11300, + 11334, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 11364, + 11398, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 11430, + 11470, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 11500, + 11540, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 11572, + 11606, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 11636, + 11683, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 11715, + 11762, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 11793, + 11826, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 11858, + 11891, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 11922, + 11956, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 11978, + 12009, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 12039, + 12083, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 12115, + 12162, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 12193, + 12226, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 12258, + 12291, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 12322, + 12356, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 12388, + 12422, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 12452, + 12485, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 12517, + 12550, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 12580, + 12614, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 12646, + 12680, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 12710, + 12744, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 12776, + 12816, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 12846, + 12886, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 12918, + 12952, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 12982, + 13016, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 13048, + 13082, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 13112, + 13145, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 13177, + 13210, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 13240, + 13274, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 13306, + 13340, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 13370, + 13403, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 13435, + 13468, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 13498, + 13531, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 13553, + 13583, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 13613, + 13643, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 13675, + 13708, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 13738, + 13770, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 13802, + 13834, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 13864, + 13897, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 13929, + 13962, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 13992, + 14024, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 14056, + 14088, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 14118, + 14151, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 14183, + 14216, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 14246, + 14279, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 14311, + 14350, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 14380, + 14419, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 14451, + 14484, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 14514, + 14547, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 14579, + 14612, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 14642, + 14674, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 14706, + 14738, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 14768, + 14801, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 14833, + 14866, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 14896, + 14928, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 14960, + 14992, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 15022, + 15056, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 15078, + 15112, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 15142, + 15176, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 15208, + 15241, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 15271, + 15304, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 15336, + 15370, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 15401, + 15448, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 15480, + 15527, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 15558, + 15591, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 15613, + 15645, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 15675, + 15707, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 15739, + 15772, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 15802, + 15835, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 15867, + 15900, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 15930, + 15963, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 15995, + 16028, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 16058, + 16092, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 16114, + 16148, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 16178, + 16211, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 16243, + 16275, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 16305, + 16338, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 16370, + 16404, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 16435, + 16469, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 16501, + 16535, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 16566, + 16599, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 16621, + 16654, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 16684, + 16717, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 16749, + 16782, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 16812, + 16845, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 16877, + 16909, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 16939, + 16970, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 17002, + 17034, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 17065, + 17096, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 17118, + 17150, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 17182, + 17215, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 17246, + 17280, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 17312, + 17346, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 17376, + 17409, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 17441, + 17474, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 17504, + 17536, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 17568, + 17601, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 17623, + 17655, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 17687, + 17720, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 17750, + 17784, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 17816, + 17850, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 17880, + 17914, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 17946, + 17980, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 18010, + 18044, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 18076, + 18111, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 18133, + 18168, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 18200, + 18235, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 18266, + 18301, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 18333, + 18341, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 62, - 96, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 2.52, - -26.04 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 118, - 151, - 0 - ] - }, - "from": [ - 2.52, - -26.04 - ], - "tag": null, - "to": [ - 2.52, - -25.2 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 181, - 214, - 0 - ] - }, - "from": [ - 2.52, - -25.2 - ], - "tag": null, - "to": [ - 0.84, - -25.2 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 246, - 280, - 0 - ] - }, - "from": [ - 0.84, - -25.2 - ], - "tag": null, - "to": [ - 0.84, - -24.36 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 310, - 341, - 0 - ] - }, - "from": [ - 0.84, - -24.36 - ], - "tag": null, - "to": [ - 0.0, - -24.36 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 373, - 403, - 0 - ] - }, - "from": [ - 0.0, - -24.36 - ], - "tag": null, - "to": [ - 0.0, - -6.72 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 433, - 466, - 0 - ] - }, - "from": [ - 0.0, - -6.72 - ], - "tag": null, - "to": [ - 0.84, - -6.72 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 498, - 531, - 0 - ] - }, - "from": [ - 0.84, - -6.72 - ], - "tag": null, - "to": [ - 0.84, - -5.88 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 561, - 594, - 0 - ] - }, - "from": [ - 0.84, - -5.88 - ], - "tag": null, - "to": [ - 1.68, - -5.88 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 626, - 659, - 0 - ] - }, - "from": [ - 1.68, - -5.88 - ], - "tag": null, - "to": [ - 1.68, - -5.04 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 689, - 722, - 0 - ] - }, - "from": [ - 1.68, - -5.04 - ], - "tag": null, - "to": [ - 2.52, - -5.04 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 754, - 786, - 0 - ] - }, - "from": [ - 2.52, - -5.04 - ], - "tag": null, - "to": [ - 2.52, - -4.2 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 816, - 848, - 0 - ] - }, - "from": [ - 2.52, - -4.2 - ], - "tag": null, - "to": [ - 3.36, - -4.2 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 880, - 913, - 0 - ] - }, - "from": [ - 3.36, - -4.2 - ], - "tag": null, - "to": [ - 3.36, - -3.36 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 943, - 977, - 0 - ] - }, - "from": [ - 3.36, - -3.36 - ], - "tag": null, - "to": [ - 17.64, - -3.36 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1009, - 1042, - 0 - ] - }, - "from": [ - 17.64, - -3.36 - ], - "tag": null, - "to": [ - 17.64, - -4.2 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1072, - 1105, - 0 - ] - }, - "from": [ - 17.64, - -4.2 - ], - "tag": null, - "to": [ - 18.48, - -4.2 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1137, - 1171, - 0 - ] - }, - "from": [ - 18.48, - -4.2 - ], - "tag": null, - "to": [ - 18.48, - -5.04 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1202, - 1236, - 0 - ] - }, - "from": [ - 18.48, - -5.04 - ], - "tag": null, - "to": [ - 19.32, - -5.04 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1268, - 1302, - 0 - ] - }, - "from": [ - 19.32, - -5.04 - ], - "tag": null, - "to": [ - 19.32, - -5.88 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1333, - 1367, - 0 - ] - }, - "from": [ - 19.32, - -5.88 - ], - "tag": null, - "to": [ - 20.16, - -5.88 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1399, - 1433, - 0 - ] - }, - "from": [ - 20.16, - -5.88 - ], - "tag": null, - "to": [ - 20.16, - -6.72 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1463, - 1494, - 0 - ] - }, - "from": [ - 20.16, - -6.72 - ], - "tag": null, - "to": [ - 21.0, - -6.72 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1526, - 1558, - 0 - ] - }, - "from": [ - 21.0, - -6.72 - ], - "tag": null, - "to": [ - 21.0, - -24.36 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1589, - 1624, - 0 - ] - }, - "from": [ - 21.0, - -24.36 - ], - "tag": null, - "to": [ - 20.16, - -24.36 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1656, - 1690, - 0 - ] - }, - "from": [ - 20.16, - -24.36 - ], - "tag": null, - "to": [ - 20.16, - -25.2 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1721, - 1755, - 0 - ] - }, - "from": [ - 20.16, - -25.2 - ], - "tag": null, - "to": [ - 18.48, - -25.2 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1787, - 1822, - 0 - ] - }, - "from": [ - 18.48, - -25.2 - ], - "tag": null, - "to": [ - 18.48, - -26.04 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1853, - 1888, - 0 - ] - }, - "from": [ - 18.48, - -26.04 - ], - "tag": null, - "to": [ - 15.96, - -26.04 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1920, - 1955, - 0 - ] - }, - "from": [ - 15.96, - -26.04 - ], - "tag": null, - "to": [ - 15.96, - -26.88 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1986, - 2020, - 0 - ] - }, - "from": [ - 15.96, - -26.88 - ], - "tag": null, - "to": [ - 16.8, - -26.88 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2052, - 2086, - 0 - ] - }, - "from": [ - 16.8, - -26.88 - ], - "tag": null, - "to": [ - 16.8, - -28.56 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2117, - 2152, - 0 - ] - }, - "from": [ - 16.8, - -28.56 - ], - "tag": null, - "to": [ - 11.76, - -28.56 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2184, - 2219, - 0 - ] - }, - "from": [ - 11.76, - -28.56 - ], - "tag": null, - "to": [ - 11.76, - -26.88 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2249, - 2283, - 0 - ] - }, - "from": [ - 11.76, - -26.88 - ], - "tag": null, - "to": [ - 12.6, - -26.88 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2315, - 2349, - 0 - ] - }, - "from": [ - 12.6, - -26.88 - ], - "tag": null, - "to": [ - 12.6, - -26.04 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2379, - 2412, - 0 - ] - }, - "from": [ - 12.6, - -26.04 - ], - "tag": null, - "to": [ - 8.4, - -26.04 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2444, - 2477, - 0 - ] - }, - "from": [ - 8.4, - -26.04 - ], - "tag": null, - "to": [ - 8.4, - -26.88 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2508, - 2542, - 0 - ] - }, - "from": [ - 8.4, - -26.88 - ], - "tag": null, - "to": [ - 9.24, - -26.88 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2574, - 2608, - 0 - ] - }, - "from": [ - 9.24, - -26.88 - ], - "tag": null, - "to": [ - 9.24, - -28.56 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2639, - 2672, - 0 - ] - }, - "from": [ - 9.24, - -28.56 - ], - "tag": null, - "to": [ - 4.2, - -28.56 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2704, - 2737, - 0 - ] - }, - "from": [ - 4.2, - -28.56 - ], - "tag": null, - "to": [ - 4.2, - -26.88 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2768, - 2802, - 0 - ] - }, - "from": [ - 4.2, - -26.88 - ], - "tag": null, - "to": [ - 5.04, - -26.88 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2834, - 2868, - 0 - ] - }, - "from": [ - 5.04, - -26.88 - ], - "tag": null, - "to": [ - 5.04, - -26.04 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2899, - 2937, - 0 - ] - }, - "from": [ - 5.04, - -26.04 - ], - "tag": null, - "to": [ - 0.84, - -20.58 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2959, - 2997, - 0 - ] - }, - "from": [ - 0.84, - -20.58 - ], - "tag": null, - "to": [ - 0.84, - -24.36 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 3028, - 3062, - 0 - ] - }, - "from": [ - 0.84, - -24.36 - ], - "tag": null, - "to": [ - 2.52, - -24.36 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 3094, - 3127, - 0 - ] - }, - "from": [ - 2.52, - -24.36 - ], - "tag": null, - "to": [ - 2.52, - -25.2 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 3158, - 3192, - 0 - ] - }, - "from": [ - 2.52, - -25.2 - ], - "tag": null, - "to": [ - 18.48, - -25.2 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 3224, - 3259, - 0 - ] - }, - "from": [ - 18.48, - -25.2 - ], - "tag": null, - "to": [ - 18.48, - -24.36 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 3290, - 3325, - 0 - ] - }, - "from": [ - 18.48, - -24.36 - ], - "tag": null, - "to": [ - 20.16, - -24.36 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 3357, - 3392, - 0 - ] - }, - "from": [ - 20.16, - -24.36 - ], - "tag": null, - "to": [ - 20.16, - -20.58 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 3440, - 3474, - 0 - ] - }, - "from": [ - 20.16, - -20.58 - ], - "tag": null, - "to": [ - 7.56, - -24.36 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 3496, - 3530, - 0 - ] - }, - "from": [ - 7.56, - -24.36 - ], - "tag": null, - "to": [ - 7.56, - -22.68 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 3561, - 3596, - 0 - ] - }, - "from": [ - 7.56, - -22.68 - ], - "tag": null, - "to": [ - 13.44, - -22.68 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 3628, - 3663, - 0 - ] - }, - "from": [ - 13.44, - -22.68 - ], - "tag": null, - "to": [ - 13.44, - -24.36 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 3694, - 3728, - 0 - ] - }, - "from": [ - 13.44, - -24.36 - ], - "tag": null, - "to": [ - 1.68, - -22.68 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 3750, - 3784, - 0 - ] - }, - "from": [ - 1.68, - -22.68 - ], - "tag": null, - "to": [ - 1.68, - -21.84 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 3815, - 3849, - 0 - ] - }, - "from": [ - 1.68, - -21.84 - ], - "tag": null, - "to": [ - 5.88, - -21.84 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 3881, - 3915, - 0 - ] - }, - "from": [ - 5.88, - -21.84 - ], - "tag": null, - "to": [ - 5.88, - -22.68 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 3946, - 3980, - 0 - ] - }, - "from": [ - 5.88, - -22.68 - ], - "tag": null, - "to": [ - 3.36, - -24.36 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 4002, - 4036, - 0 - ] - }, - "from": [ - 3.36, - -24.36 - ], - "tag": null, - "to": [ - 3.36, - -23.52 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 4067, - 4101, - 0 - ] - }, - "from": [ - 3.36, - -23.52 - ], - "tag": null, - "to": [ - 5.88, - -23.52 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 4133, - 4167, - 0 - ] - }, - "from": [ - 5.88, - -23.52 - ], - "tag": null, - "to": [ - 5.88, - -24.36 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 4198, - 4233, - 0 - ] - }, - "from": [ - 5.88, - -24.36 - ], - "tag": null, - "to": [ - 15.12, - -22.68 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 4255, - 4290, - 0 - ] - }, - "from": [ - 15.12, - -22.68 - ], - "tag": null, - "to": [ - 15.12, - -21.84 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 4321, - 4369, - 0 - ] - }, - "from": [ - 15.12, - -21.84 - ], - "tag": null, - "to": [ - 15.96, - -21.84 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 4401, - 4449, - 0 - ] - }, - "from": [ - 15.96, - -21.84 - ], - "tag": null, - "to": [ - 15.96, - -22.68 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 4480, - 4514, - 0 - ] - }, - "from": [ - 15.96, - -22.68 - ], - "tag": null, - "to": [ - 16.8, - -22.68 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 4536, - 4570, - 0 - ] - }, - "from": [ - 16.8, - -22.68 - ], - "tag": null, - "to": [ - 16.8, - -21.84 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 4601, - 4636, - 0 - ] - }, - "from": [ - 16.8, - -21.84 - ], - "tag": null, - "to": [ - 17.64, - -21.84 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 4668, - 4703, - 0 - ] - }, - "from": [ - 17.64, - -21.84 - ], - "tag": null, - "to": [ - 17.64, - -22.68 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 4734, - 4769, - 0 - ] - }, - "from": [ - 17.64, - -22.68 - ], - "tag": null, - "to": [ - 18.48, - -22.68 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 4791, - 4826, - 0 - ] - }, - "from": [ - 18.48, - -22.68 - ], - "tag": null, - "to": [ - 18.48, - -21.84 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 4857, - 4892, - 0 - ] - }, - "from": [ - 18.48, - -21.84 - ], - "tag": null, - "to": [ - 19.32, - -21.84 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 4924, - 4959, - 0 - ] - }, - "from": [ - 19.32, - -21.84 - ], - "tag": null, - "to": [ - 19.32, - -22.68 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 4990, - 5025, - 0 - ] - }, - "from": [ - 19.32, - -22.68 - ], - "tag": null, - "to": [ - 15.12, - -24.36 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5047, - 5082, - 0 - ] - }, - "from": [ - 15.12, - -24.36 - ], - "tag": null, - "to": [ - 15.12, - -23.52 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5113, - 5148, - 0 - ] - }, - "from": [ - 15.12, - -23.52 - ], - "tag": null, - "to": [ - 17.64, - -23.52 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5180, - 5215, - 0 - ] - }, - "from": [ - 17.64, - -23.52 - ], - "tag": null, - "to": [ - 17.64, - -24.36 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5246, - 5280, - 0 - ] - }, - "from": [ - 17.64, - -24.36 - ], - "tag": null, - "to": [ - 18.48, - -5.88 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5302, - 5336, - 0 - ] - }, - "from": [ - 18.48, - -5.88 - ], - "tag": null, - "to": [ - 18.48, - -5.04 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5366, - 5400, - 0 - ] - }, - "from": [ - 18.48, - -5.04 - ], - "tag": null, - "to": [ - 17.64, - -5.04 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5432, - 5465, - 0 - ] - }, - "from": [ - 17.64, - -5.04 - ], - "tag": null, - "to": [ - 17.64, - -4.2 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5495, - 5527, - 0 - ] - }, - "from": [ - 17.64, - -4.2 - ], - "tag": null, - "to": [ - 3.36, - -4.2 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5559, - 5592, - 0 - ] - }, - "from": [ - 3.36, - -4.2 - ], - "tag": null, - "to": [ - 3.36, - -5.04 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5622, - 5655, - 0 - ] - }, - "from": [ - 3.36, - -5.04 - ], - "tag": null, - "to": [ - 2.52, - -5.04 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5687, - 5720, - 0 - ] - }, - "from": [ - 2.52, - -5.04 - ], - "tag": null, - "to": [ - 2.52, - -5.88 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5750, - 5783, - 0 - ] - }, - "from": [ - 2.52, - -5.88 - ], - "tag": null, - "to": [ - 1.68, - -5.88 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5815, - 5848, - 0 - ] - }, - "from": [ - 1.68, - -5.88 - ], - "tag": null, - "to": [ - 1.68, - -6.72 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5878, - 5915, - 0 - ] - }, - "from": [ - 1.68, - -6.72 - ], - "tag": null, - "to": [ - 0.84, - -6.72 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5947, - 5983, - 0 - ] - }, - "from": [ - 0.84, - -6.72 - ], - "tag": null, - "to": [ - 0.84, - -8.4 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 6013, - 6046, - 0 - ] - }, - "from": [ - 0.84, - -8.4 - ], - "tag": null, - "to": [ - 20.16, - -8.4 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 6078, - 6112, - 0 - ] - }, - "from": [ - 20.16, - -8.4 - ], - "tag": null, - "to": [ - 20.16, - -6.72 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 6142, - 6176, - 0 - ] - }, - "from": [ - 20.16, - -6.72 - ], - "tag": null, - "to": [ - 19.32, - -6.72 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 6208, - 6242, - 0 - ] - }, - "from": [ - 19.32, - -6.72 - ], - "tag": null, - "to": [ - 19.32, - -5.88 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 6272, - 6306, - 0 - ] - }, - "from": [ - 19.32, - -5.88 - ], - "tag": null, - "to": [ - 20.16, - -7.56 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 6328, - 6365, - 0 - ] - }, - "from": [ - 20.16, - -7.56 - ], - "tag": null, - "to": [ - 0.84, - -7.56 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 6397, - 6435, - 0 - ] - }, - "from": [ - 0.84, - -7.56 - ], - "tag": null, - "to": [ - 0.84, - -19.32 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 6465, - 6500, - 0 - ] - }, - "from": [ - 0.84, - -19.32 - ], - "tag": null, - "to": [ - 20.16, - -19.32 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 6532, - 6566, - 0 - ] - }, - "from": [ - 20.16, - -19.32 - ], - "tag": null, - "to": [ - 3.36, - -10.08 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 6588, - 6624, - 0 - ] - }, - "from": [ - 3.36, - -10.08 - ], - "tag": null, - "to": [ - 3.36, - -9.24 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 6654, - 6691, - 0 - ] - }, - "from": [ - 3.36, - -9.24 - ], - "tag": null, - "to": [ - 17.64, - -9.24 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 6723, - 6758, - 0 - ] - }, - "from": [ - 17.64, - -9.24 - ], - "tag": null, - "to": [ - 17.64, - -10.08 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 6788, - 6823, - 0 - ] - }, - "from": [ - 17.64, - -10.08 - ], - "tag": null, - "to": [ - 18.48, - -10.08 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 6855, - 6889, - 0 - ] - }, - "from": [ - 18.48, - -10.08 - ], - "tag": null, - "to": [ - 18.48, - -16.8 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 6920, - 6954, - 0 - ] - }, - "from": [ - 18.48, - -16.8 - ], - "tag": null, - "to": [ - 17.64, - -16.8 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 6986, - 7021, - 0 - ] - }, - "from": [ - 17.64, - -16.8 - ], - "tag": null, - "to": [ - 17.64, - -17.64 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 7052, - 7086, - 0 - ] - }, - "from": [ - 17.64, - -17.64 - ], - "tag": null, - "to": [ - 3.36, - -17.64 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 7118, - 7151, - 0 - ] - }, - "from": [ - 3.36, - -17.64 - ], - "tag": null, - "to": [ - 3.36, - -16.8 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 7181, - 7214, - 0 - ] - }, - "from": [ - 3.36, - -16.8 - ], - "tag": null, - "to": [ - 2.52, - -16.8 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 7246, - 7293, - 0 - ] - }, - "from": [ - 2.52, - -16.8 - ], - "tag": null, - "to": [ - 2.52, - -10.08 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 7324, - 7359, - 0 - ] - }, - "from": [ - 2.52, - -10.08 - ], - "tag": null, - "to": [ - 13.44, - -10.92 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 7381, - 7416, - 0 - ] - }, - "from": [ - 13.44, - -10.92 - ], - "tag": null, - "to": [ - 13.44, - -10.08 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 7447, - 7482, - 0 - ] - }, - "from": [ - 13.44, - -10.08 - ], - "tag": null, - "to": [ - 15.12, - -10.08 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 7514, - 7549, - 0 - ] - }, - "from": [ - 15.12, - -10.08 - ], - "tag": null, - "to": [ - 15.12, - -13.44 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 7580, - 7615, - 0 - ] - }, - "from": [ - 15.12, - -13.44 - ], - "tag": null, - "to": [ - 14.28, - -13.44 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 7647, - 7681, - 0 - ] - }, - "from": [ - 14.28, - -13.44 - ], - "tag": null, - "to": [ - 9.24, - -13.44 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 7703, - 7738, - 0 - ] - }, - "from": [ - 9.24, - -13.44 - ], - "tag": null, - "to": [ - 11.76, - -13.44 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 7770, - 7805, - 0 - ] - }, - "from": [ - 11.76, - -13.44 - ], - "tag": null, - "to": [ - 11.76, - -14.28 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 7836, - 7871, - 0 - ] - }, - "from": [ - 11.76, - -14.28 - ], - "tag": null, - "to": [ - 10.92, - -14.28 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 7908, - 7956, - 0 - ] - }, - "from": [ - 10.92, - -14.28 - ], - "tag": null, - "to": [ - 10.92, - -15.96 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 7987, - 8035, - 0 - ] - }, - "from": [ - 10.92, - -15.96 - ], - "tag": null, - "to": [ - 13.44, - -15.96 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 8067, - 8102, - 0 - ] - }, - "from": [ - 13.44, - -15.96 - ], - "tag": null, - "to": [ - 13.44, - -15.12 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 8133, - 8168, - 0 - ] - }, - "from": [ - 13.44, - -15.12 - ], - "tag": null, - "to": [ - 14.28, - -15.12 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 8200, - 8248, - 0 - ] - }, - "from": [ - 14.28, - -15.12 - ], - "tag": null, - "to": [ - 14.28, - -15.96 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 8279, - 8327, - 0 - ] - }, - "from": [ - 14.28, - -15.96 - ], - "tag": null, - "to": [ - 13.44, - -15.96 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 8359, - 8393, - 0 - ] - }, - "from": [ - 13.44, - -15.96 - ], - "tag": null, - "to": [ - 13.44, - -16.8 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 8423, - 8456, - 0 - ] - }, - "from": [ - 13.44, - -16.8 - ], - "tag": null, - "to": [ - 7.56, - -16.8 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 8488, - 8522, - 0 - ] - }, - "from": [ - 7.56, - -16.8 - ], - "tag": null, - "to": [ - 7.56, - -15.96 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 8552, - 8586, - 0 - ] - }, - "from": [ - 7.56, - -15.96 - ], - "tag": null, - "to": [ - 6.72, - -15.96 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 8618, - 8665, - 0 - ] - }, - "from": [ - 6.72, - -15.96 - ], - "tag": null, - "to": [ - 6.72, - -15.12 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 8696, - 8743, - 0 - ] - }, - "from": [ - 6.72, - -15.12 - ], - "tag": null, - "to": [ - 7.56, - -15.12 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 8775, - 8809, - 0 - ] - }, - "from": [ - 7.56, - -15.12 - ], - "tag": null, - "to": [ - 7.56, - -15.96 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 8840, - 8875, - 0 - ] - }, - "from": [ - 7.56, - -15.96 - ], - "tag": null, - "to": [ - 10.08, - -15.96 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 8907, - 8942, - 0 - ] - }, - "from": [ - 10.08, - -15.96 - ], - "tag": null, - "to": [ - 10.08, - -14.28 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 8972, - 9006, - 0 - ] - }, - "from": [ - 10.08, - -14.28 - ], - "tag": null, - "to": [ - 9.24, - -14.28 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 9038, - 9071, - 0 - ] - }, - "from": [ - 9.24, - -14.28 - ], - "tag": null, - "to": [ - 7.56, - -12.6 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 9093, - 9127, - 0 - ] - }, - "from": [ - 7.56, - -12.6 - ], - "tag": null, - "to": [ - 7.56, - -11.76 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 9157, - 9191, - 0 - ] - }, - "from": [ - 7.56, - -11.76 - ], - "tag": null, - "to": [ - 5.04, - -11.76 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 9223, - 9256, - 0 - ] - }, - "from": [ - 5.04, - -11.76 - ], - "tag": null, - "to": [ - 5.04, - -12.6 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 9286, - 9318, - 0 - ] - }, - "from": [ - 5.04, - -12.6 - ], - "tag": null, - "to": [ - 4.2, - -12.6 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 9350, - 9383, - 0 - ] - }, - "from": [ - 4.2, - -12.6 - ], - "tag": null, - "to": [ - 4.2, - -11.76 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 9414, - 9448, - 0 - ] - }, - "from": [ - 4.2, - -11.76 - ], - "tag": null, - "to": [ - 5.04, - -11.76 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 9480, - 9514, - 0 - ] - }, - "from": [ - 5.04, - -11.76 - ], - "tag": null, - "to": [ - 5.04, - -10.92 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 9545, - 9593, - 0 - ] - }, - "from": [ - 5.04, - -10.92 - ], - "tag": null, - "to": [ - 7.56, - -10.92 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 9625, - 9673, - 0 - ] - }, - "from": [ - 7.56, - -10.92 - ], - "tag": null, - "to": [ - 7.56, - -11.76 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 9704, - 9737, - 0 - ] - }, - "from": [ - 7.56, - -11.76 - ], - "tag": null, - "to": [ - 8.4, - -11.76 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 9769, - 9801, - 0 - ] - }, - "from": [ - 8.4, - -11.76 - ], - "tag": null, - "to": [ - 8.4, - -12.6 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 9832, - 9865, - 0 - ] - }, - "from": [ - 8.4, - -12.6 - ], - "tag": null, - "to": [ - 3.36, - -5.88 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 9887, - 9920, - 0 - ] - }, - "from": [ - 3.36, - -5.88 - ], - "tag": null, - "to": [ - 3.36, - -5.04 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 9950, - 9982, - 0 - ] - }, - "from": [ - 3.36, - -5.04 - ], - "tag": null, - "to": [ - 4.2, - -5.04 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 10014, - 10046, - 0 - ] - }, - "from": [ - 4.2, - -5.04 - ], - "tag": null, - "to": [ - 4.2, - -3.36 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 10076, - 10109, - 0 - ] - }, - "from": [ - 4.2, - -3.36 - ], - "tag": null, - "to": [ - 5.04, - -3.36 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 10141, - 10174, - 0 - ] - }, - "from": [ - 5.04, - -3.36 - ], - "tag": null, - "to": [ - 5.04, - -1.68 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 10204, - 10237, - 0 - ] - }, - "from": [ - 5.04, - -1.68 - ], - "tag": null, - "to": [ - 5.88, - -1.68 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 10269, - 10308, - 0 - ] - }, - "from": [ - 5.88, - -1.68 - ], - "tag": null, - "to": [ - 5.88, - -0.84 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 10338, - 10377, - 0 - ] - }, - "from": [ - 5.88, - -0.84 - ], - "tag": null, - "to": [ - 6.72, - -0.84 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 10409, - 10442, - 0 - ] - }, - "from": [ - 6.72, - -0.84 - ], - "tag": null, - "to": [ - 6.72, - -1.68 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 10472, - 10505, - 0 - ] - }, - "from": [ - 6.72, - -1.68 - ], - "tag": null, - "to": [ - 7.56, - -1.68 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 10537, - 10570, - 0 - ] - }, - "from": [ - 7.56, - -1.68 - ], - "tag": null, - "to": [ - 7.56, - -3.36 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 10600, - 10632, - 0 - ] - }, - "from": [ - 7.56, - -3.36 - ], - "tag": null, - "to": [ - 8.4, - -3.36 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 10664, - 10696, - 0 - ] - }, - "from": [ - 8.4, - -3.36 - ], - "tag": null, - "to": [ - 8.4, - -5.04 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 10727, - 10760, - 0 - ] - }, - "from": [ - 8.4, - -5.04 - ], - "tag": null, - "to": [ - 9.24, - -5.04 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 10792, - 10825, - 0 - ] - }, - "from": [ - 9.24, - -5.04 - ], - "tag": null, - "to": [ - 9.24, - -5.88 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 10856, - 10890, - 0 - ] - }, - "from": [ - 9.24, - -5.88 - ], - "tag": null, - "to": [ - 17.64, - -5.04 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 10912, - 10946, - 0 - ] - }, - "from": [ - 17.64, - -5.04 - ], - "tag": null, - "to": [ - 17.64, - -5.88 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 10976, - 11010, - 0 - ] - }, - "from": [ - 17.64, - -5.88 - ], - "tag": null, - "to": [ - 11.76, - -5.88 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 11042, - 11076, - 0 - ] - }, - "from": [ - 11.76, - -5.88 - ], - "tag": null, - "to": [ - 11.76, - -5.04 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 11106, - 11139, - 0 - ] - }, - "from": [ - 11.76, - -5.04 - ], - "tag": null, - "to": [ - 12.6, - -5.04 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 11171, - 11204, - 0 - ] - }, - "from": [ - 12.6, - -5.04 - ], - "tag": null, - "to": [ - 12.6, - -3.36 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 11234, - 11268, - 0 - ] - }, - "from": [ - 12.6, - -3.36 - ], - "tag": null, - "to": [ - 13.44, - -3.36 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 11300, - 11334, - 0 - ] - }, - "from": [ - 13.44, - -3.36 - ], - "tag": null, - "to": [ - 13.44, - -1.68 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 11364, - 11398, - 0 - ] - }, - "from": [ - 13.44, - -1.68 - ], - "tag": null, - "to": [ - 14.28, - -1.68 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 11430, - 11470, - 0 - ] - }, - "from": [ - 14.28, - -1.68 - ], - "tag": null, - "to": [ - 14.28, - -0.84 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 11500, - 11540, - 0 - ] - }, - "from": [ - 14.28, - -0.84 - ], - "tag": null, - "to": [ - 15.12, - -0.84 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 11572, - 11606, - 0 - ] - }, - "from": [ - 15.12, - -0.84 - ], - "tag": null, - "to": [ - 15.12, - -1.68 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 11636, - 11683, - 0 - ] - }, - "from": [ - 15.12, - -1.68 - ], - "tag": null, - "to": [ - 15.96, - -1.68 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 11715, - 11762, - 0 - ] - }, - "from": [ - 15.96, - -1.68 - ], - "tag": null, - "to": [ - 15.96, - -3.36 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 11793, - 11826, - 0 - ] - }, - "from": [ - 15.96, - -3.36 - ], - "tag": null, - "to": [ - 16.8, - -3.36 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 11858, - 11891, - 0 - ] - }, - "from": [ - 16.8, - -3.36 - ], - "tag": null, - "to": [ - 16.8, - -5.04 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 11922, - 11956, - 0 - ] - }, - "from": [ - 16.8, - -5.04 - ], - "tag": null, - "to": [ - 13.44, - -1.68 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 11978, - 12009, - 0 - ] - }, - "from": [ - 13.44, - -1.68 - ], - "tag": null, - "to": [ - 13.44, - -0.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 12039, - 12083, - 0 - ] - }, - "from": [ - 13.44, - -0.0 - ], - "tag": null, - "to": [ - 15.96, - -0.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 12115, - 12162, - 0 - ] - }, - "from": [ - 15.96, - -0.0 - ], - "tag": null, - "to": [ - 15.96, - -1.68 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 12193, - 12226, - 0 - ] - }, - "from": [ - 15.96, - -1.68 - ], - "tag": null, - "to": [ - 16.8, - -1.68 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 12258, - 12291, - 0 - ] - }, - "from": [ - 16.8, - -1.68 - ], - "tag": null, - "to": [ - 16.8, - -3.36 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 12322, - 12356, - 0 - ] - }, - "from": [ - 16.8, - -3.36 - ], - "tag": null, - "to": [ - 17.64, - -3.36 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 12388, - 12422, - 0 - ] - }, - "from": [ - 17.64, - -3.36 - ], - "tag": null, - "to": [ - 17.64, - -4.62 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 12452, - 12485, - 0 - ] - }, - "from": [ - 17.64, - -4.62 - ], - "tag": null, - "to": [ - 16.8, - -4.62 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 12517, - 12550, - 0 - ] - }, - "from": [ - 16.8, - -4.62 - ], - "tag": null, - "to": [ - 16.8, - -3.36 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 12580, - 12614, - 0 - ] - }, - "from": [ - 16.8, - -3.36 - ], - "tag": null, - "to": [ - 15.96, - -3.36 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 12646, - 12680, - 0 - ] - }, - "from": [ - 15.96, - -3.36 - ], - "tag": null, - "to": [ - 15.96, - -1.68 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 12710, - 12744, - 0 - ] - }, - "from": [ - 15.96, - -1.68 - ], - "tag": null, - "to": [ - 15.12, - -1.68 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 12776, - 12816, - 0 - ] - }, - "from": [ - 15.12, - -1.68 - ], - "tag": null, - "to": [ - 15.12, - -0.84 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 12846, - 12886, - 0 - ] - }, - "from": [ - 15.12, - -0.84 - ], - "tag": null, - "to": [ - 14.28, - -0.84 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 12918, - 12952, - 0 - ] - }, - "from": [ - 14.28, - -0.84 - ], - "tag": null, - "to": [ - 14.28, - -1.68 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 12982, - 13016, - 0 - ] - }, - "from": [ - 14.28, - -1.68 - ], - "tag": null, - "to": [ - 13.44, - -1.68 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 13048, - 13082, - 0 - ] - }, - "from": [ - 13.44, - -1.68 - ], - "tag": null, - "to": [ - 13.44, - -3.36 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 13112, - 13145, - 0 - ] - }, - "from": [ - 13.44, - -3.36 - ], - "tag": null, - "to": [ - 12.6, - -3.36 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 13177, - 13210, - 0 - ] - }, - "from": [ - 12.6, - -3.36 - ], - "tag": null, - "to": [ - 12.6, - -4.62 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 13240, - 13274, - 0 - ] - }, - "from": [ - 12.6, - -4.62 - ], - "tag": null, - "to": [ - 11.76, - -4.62 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 13306, - 13340, - 0 - ] - }, - "from": [ - 11.76, - -4.62 - ], - "tag": null, - "to": [ - 11.76, - -3.36 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 13370, - 13403, - 0 - ] - }, - "from": [ - 11.76, - -3.36 - ], - "tag": null, - "to": [ - 12.6, - -3.36 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 13435, - 13468, - 0 - ] - }, - "from": [ - 12.6, - -3.36 - ], - "tag": null, - "to": [ - 12.6, - -1.68 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 13498, - 13531, - 0 - ] - }, - "from": [ - 12.6, - -1.68 - ], - "tag": null, - "to": [ - 5.04, - -1.68 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 13553, - 13583, - 0 - ] - }, - "from": [ - 5.04, - -1.68 - ], - "tag": null, - "to": [ - 5.04, - -0.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 13613, - 13643, - 0 - ] - }, - "from": [ - 5.04, - -0.0 - ], - "tag": null, - "to": [ - 7.56, - -0.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 13675, - 13708, - 0 - ] - }, - "from": [ - 7.56, - -0.0 - ], - "tag": null, - "to": [ - 7.56, - -1.68 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 13738, - 13770, - 0 - ] - }, - "from": [ - 7.56, - -1.68 - ], - "tag": null, - "to": [ - 8.4, - -1.68 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 13802, - 13834, - 0 - ] - }, - "from": [ - 8.4, - -1.68 - ], - "tag": null, - "to": [ - 8.4, - -3.36 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 13864, - 13897, - 0 - ] - }, - "from": [ - 8.4, - -3.36 - ], - "tag": null, - "to": [ - 9.24, - -3.36 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 13929, - 13962, - 0 - ] - }, - "from": [ - 9.24, - -3.36 - ], - "tag": null, - "to": [ - 9.24, - -4.62 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 13992, - 14024, - 0 - ] - }, - "from": [ - 9.24, - -4.62 - ], - "tag": null, - "to": [ - 8.4, - -4.62 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 14056, - 14088, - 0 - ] - }, - "from": [ - 8.4, - -4.62 - ], - "tag": null, - "to": [ - 8.4, - -3.36 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 14118, - 14151, - 0 - ] - }, - "from": [ - 8.4, - -3.36 - ], - "tag": null, - "to": [ - 7.56, - -3.36 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 14183, - 14216, - 0 - ] - }, - "from": [ - 7.56, - -3.36 - ], - "tag": null, - "to": [ - 7.56, - -1.68 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 14246, - 14279, - 0 - ] - }, - "from": [ - 7.56, - -1.68 - ], - "tag": null, - "to": [ - 6.72, - -1.68 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 14311, - 14350, - 0 - ] - }, - "from": [ - 6.72, - -1.68 - ], - "tag": null, - "to": [ - 6.72, - -0.84 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 14380, - 14419, - 0 - ] - }, - "from": [ - 6.72, - -0.84 - ], - "tag": null, - "to": [ - 5.88, - -0.84 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 14451, - 14484, - 0 - ] - }, - "from": [ - 5.88, - -0.84 - ], - "tag": null, - "to": [ - 5.88, - -1.68 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 14514, - 14547, - 0 - ] - }, - "from": [ - 5.88, - -1.68 - ], - "tag": null, - "to": [ - 5.04, - -1.68 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 14579, - 14612, - 0 - ] - }, - "from": [ - 5.04, - -1.68 - ], - "tag": null, - "to": [ - 5.04, - -3.36 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 14642, - 14674, - 0 - ] - }, - "from": [ - 5.04, - -3.36 - ], - "tag": null, - "to": [ - 4.2, - -3.36 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 14706, - 14738, - 0 - ] - }, - "from": [ - 4.2, - -3.36 - ], - "tag": null, - "to": [ - 4.2, - -4.62 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 14768, - 14801, - 0 - ] - }, - "from": [ - 4.2, - -4.62 - ], - "tag": null, - "to": [ - 3.36, - -4.62 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 14833, - 14866, - 0 - ] - }, - "from": [ - 3.36, - -4.62 - ], - "tag": null, - "to": [ - 3.36, - -3.36 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 14896, - 14928, - 0 - ] - }, - "from": [ - 3.36, - -3.36 - ], - "tag": null, - "to": [ - 4.2, - -3.36 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 14960, - 14992, - 0 - ] - }, - "from": [ - 4.2, - -3.36 - ], - "tag": null, - "to": [ - 4.2, - -1.68 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 15022, - 15056, - 0 - ] - }, - "from": [ - 4.2, - -1.68 - ], - "tag": null, - "to": [ - 13.44, - -5.88 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 15078, - 15112, - 0 - ] - }, - "from": [ - 13.44, - -5.88 - ], - "tag": null, - "to": [ - 13.44, - -5.04 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 15142, - 15176, - 0 - ] - }, - "from": [ - 13.44, - -5.04 - ], - "tag": null, - "to": [ - 14.28, - -5.04 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 15208, - 15241, - 0 - ] - }, - "from": [ - 14.28, - -5.04 - ], - "tag": null, - "to": [ - 14.28, - -4.2 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 15271, - 15304, - 0 - ] - }, - "from": [ - 14.28, - -4.2 - ], - "tag": null, - "to": [ - 15.12, - -4.2 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 15336, - 15370, - 0 - ] - }, - "from": [ - 15.12, - -4.2 - ], - "tag": null, - "to": [ - 15.12, - -5.04 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 15401, - 15448, - 0 - ] - }, - "from": [ - 15.12, - -5.04 - ], - "tag": null, - "to": [ - 15.96, - -5.04 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 15480, - 15527, - 0 - ] - }, - "from": [ - 15.96, - -5.04 - ], - "tag": null, - "to": [ - 15.96, - -5.88 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 15558, - 15591, - 0 - ] - }, - "from": [ - 15.96, - -5.88 - ], - "tag": null, - "to": [ - 5.88, - -5.04 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 15613, - 15645, - 0 - ] - }, - "from": [ - 5.88, - -5.04 - ], - "tag": null, - "to": [ - 5.88, - -4.2 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 15675, - 15707, - 0 - ] - }, - "from": [ - 5.88, - -4.2 - ], - "tag": null, - "to": [ - 6.72, - -4.2 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 15739, - 15772, - 0 - ] - }, - "from": [ - 6.72, - -4.2 - ], - "tag": null, - "to": [ - 6.72, - -5.04 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 15802, - 15835, - 0 - ] - }, - "from": [ - 6.72, - -5.04 - ], - "tag": null, - "to": [ - 7.56, - -5.04 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 15867, - 15900, - 0 - ] - }, - "from": [ - 7.56, - -5.04 - ], - "tag": null, - "to": [ - 7.56, - -5.88 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 15930, - 15963, - 0 - ] - }, - "from": [ - 7.56, - -5.88 - ], - "tag": null, - "to": [ - 5.04, - -5.88 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 15995, - 16028, - 0 - ] - }, - "from": [ - 5.04, - -5.88 - ], - "tag": null, - "to": [ - 5.04, - -5.04 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 16058, - 16092, - 0 - ] - }, - "from": [ - 5.04, - -5.04 - ], - "tag": null, - "to": [ - 17.64, - -5.88 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 16114, - 16148, - 0 - ] - }, - "from": [ - 17.64, - -5.88 - ], - "tag": null, - "to": [ - 17.64, - -5.04 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 16178, - 16211, - 0 - ] - }, - "from": [ - 17.64, - -5.04 - ], - "tag": null, - "to": [ - 16.8, - -5.04 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 16243, - 16275, - 0 - ] - }, - "from": [ - 16.8, - -5.04 - ], - "tag": null, - "to": [ - 16.8, - -4.2 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 16305, - 16338, - 0 - ] - }, - "from": [ - 16.8, - -4.2 - ], - "tag": null, - "to": [ - 17.64, - -4.2 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 16370, - 16404, - 0 - ] - }, - "from": [ - 17.64, - -4.2 - ], - "tag": null, - "to": [ - 17.64, - -5.04 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 16435, - 16469, - 0 - ] - }, - "from": [ - 17.64, - -5.04 - ], - "tag": null, - "to": [ - 18.48, - -5.04 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 16501, - 16535, - 0 - ] - }, - "from": [ - 18.48, - -5.04 - ], - "tag": null, - "to": [ - 18.48, - -5.88 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 16566, - 16599, - 0 - ] - }, - "from": [ - 18.48, - -5.88 - ], - "tag": null, - "to": [ - 3.36, - -5.04 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 16621, - 16654, - 0 - ] - }, - "from": [ - 3.36, - -5.04 - ], - "tag": null, - "to": [ - 3.36, - -5.88 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 16684, - 16717, - 0 - ] - }, - "from": [ - 3.36, - -5.88 - ], - "tag": null, - "to": [ - 2.52, - -5.88 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 16749, - 16782, - 0 - ] - }, - "from": [ - 2.52, - -5.88 - ], - "tag": null, - "to": [ - 2.52, - -5.04 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 16812, - 16845, - 0 - ] - }, - "from": [ - 2.52, - -5.04 - ], - "tag": null, - "to": [ - 3.36, - -5.04 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 16877, - 16909, - 0 - ] - }, - "from": [ - 3.36, - -5.04 - ], - "tag": null, - "to": [ - 3.36, - -4.2 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 16939, - 16970, - 0 - ] - }, - "from": [ - 3.36, - -4.2 - ], - "tag": null, - "to": [ - 4.2, - -4.2 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 17002, - 17034, - 0 - ] - }, - "from": [ - 4.2, - -4.2 - ], - "tag": null, - "to": [ - 4.2, - -5.04 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 17065, - 17096, - 0 - ] - }, - "from": [ - 4.2, - -5.04 - ], - "tag": null, - "to": [ - 8.4, - -4.2 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 17118, - 17150, - 0 - ] - }, - "from": [ - 8.4, - -4.2 - ], - "tag": null, - "to": [ - 9.24, - -4.2 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 17182, - 17215, - 0 - ] - }, - "from": [ - 9.24, - -4.2 - ], - "tag": null, - "to": [ - 9.24, - -5.04 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 17246, - 17280, - 0 - ] - }, - "from": [ - 9.24, - -5.04 - ], - "tag": null, - "to": [ - 10.08, - -5.04 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 17312, - 17346, - 0 - ] - }, - "from": [ - 10.08, - -5.04 - ], - "tag": null, - "to": [ - 10.08, - -5.88 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 17376, - 17409, - 0 - ] - }, - "from": [ - 10.08, - -5.88 - ], - "tag": null, - "to": [ - 9.24, - -5.88 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 17441, - 17474, - 0 - ] - }, - "from": [ - 9.24, - -5.88 - ], - "tag": null, - "to": [ - 9.24, - -5.04 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 17504, - 17536, - 0 - ] - }, - "from": [ - 9.24, - -5.04 - ], - "tag": null, - "to": [ - 8.4, - -5.04 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 17568, - 17601, - 0 - ] - }, - "from": [ - 8.4, - -5.04 - ], - "tag": null, - "to": [ - 11.76, - -4.2 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 17623, - 17655, - 0 - ] - }, - "from": [ - 11.76, - -4.2 - ], - "tag": null, - "to": [ - 12.6, - -4.2 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 17687, - 17720, - 0 - ] - }, - "from": [ - 12.6, - -4.2 - ], - "tag": null, - "to": [ - 12.6, - -5.04 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 17750, - 17784, - 0 - ] - }, - "from": [ - 12.6, - -5.04 - ], - "tag": null, - "to": [ - 11.76, - -5.04 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 17816, - 17850, - 0 - ] - }, - "from": [ - 11.76, - -5.04 - ], - "tag": null, - "to": [ - 11.76, - -5.88 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 17880, - 17914, - 0 - ] - }, - "from": [ - 11.76, - -5.88 - ], - "tag": null, - "to": [ - 10.92, - -5.88 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 17946, - 17980, - 0 - ] - }, - "from": [ - 10.92, - -5.88 - ], - "tag": null, - "to": [ - 10.92, - -5.04 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 18010, - 18044, - 0 - ] - }, - "from": [ - 10.92, - -5.04 - ], - "tag": null, - "to": [ - 11.76, - -5.04 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 18076, - 18111, - 0 - ] - }, - "from": [ - 11.76, - -5.04 - ], - "tag": null, - "to": [ - 14.28, - -10.92 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 18133, - 18168, - 0 - ] - }, - "from": [ - 14.28, - -10.92 - ], - "tag": null, - "to": [ - 13.44, - -10.92 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 18200, - 18235, - 0 - ] - }, - "from": [ - 13.44, - -10.92 - ], - "tag": null, - "to": [ - 13.44, - -13.44 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 18266, - 18301, - 0 - ] - }, - "from": [ - 13.44, - -13.44 - ], - "tag": null, - "to": [ - 14.28, - -13.44 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 18333, - 18341, - 0 - ] - }, - "from": [ - 14.28, - -13.44 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 31, - 56, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 31, - 56, - 0 - ] - } + "sourceRange": [ + 62, + 96, + 0 ] }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 2.52, + -26.04 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 118, + 151, + 0 + ] }, - "__meta": [ - { - "sourceRange": [ - 31, - 56, - 0 - ] - } + "from": [ + 2.52, + -26.04 + ], + "tag": null, + "to": [ + 2.52, + -25.2 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 181, + 214, + 0 + ] + }, + "from": [ + 2.52, + -25.2 + ], + "tag": null, + "to": [ + 0.84, + -25.2 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 246, + 280, + 0 + ] + }, + "from": [ + 0.84, + -25.2 + ], + "tag": null, + "to": [ + 0.84, + -24.36 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 310, + 341, + 0 + ] + }, + "from": [ + 0.84, + -24.36 + ], + "tag": null, + "to": [ + 0.0, + -24.36 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 373, + 403, + 0 + ] + }, + "from": [ + 0.0, + -24.36 + ], + "tag": null, + "to": [ + 0.0, + -6.72 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 433, + 466, + 0 + ] + }, + "from": [ + 0.0, + -6.72 + ], + "tag": null, + "to": [ + 0.84, + -6.72 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 498, + 531, + 0 + ] + }, + "from": [ + 0.84, + -6.72 + ], + "tag": null, + "to": [ + 0.84, + -5.88 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 561, + 594, + 0 + ] + }, + "from": [ + 0.84, + -5.88 + ], + "tag": null, + "to": [ + 1.68, + -5.88 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 626, + 659, + 0 + ] + }, + "from": [ + 1.68, + -5.88 + ], + "tag": null, + "to": [ + 1.68, + -5.04 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 689, + 722, + 0 + ] + }, + "from": [ + 1.68, + -5.04 + ], + "tag": null, + "to": [ + 2.52, + -5.04 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 754, + 786, + 0 + ] + }, + "from": [ + 2.52, + -5.04 + ], + "tag": null, + "to": [ + 2.52, + -4.2 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 816, + 848, + 0 + ] + }, + "from": [ + 2.52, + -4.2 + ], + "tag": null, + "to": [ + 3.36, + -4.2 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 880, + 913, + 0 + ] + }, + "from": [ + 3.36, + -4.2 + ], + "tag": null, + "to": [ + 3.36, + -3.36 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 943, + 977, + 0 + ] + }, + "from": [ + 3.36, + -3.36 + ], + "tag": null, + "to": [ + 17.64, + -3.36 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1009, + 1042, + 0 + ] + }, + "from": [ + 17.64, + -3.36 + ], + "tag": null, + "to": [ + 17.64, + -4.2 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1072, + 1105, + 0 + ] + }, + "from": [ + 17.64, + -4.2 + ], + "tag": null, + "to": [ + 18.48, + -4.2 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1137, + 1171, + 0 + ] + }, + "from": [ + 18.48, + -4.2 + ], + "tag": null, + "to": [ + 18.48, + -5.04 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1202, + 1236, + 0 + ] + }, + "from": [ + 18.48, + -5.04 + ], + "tag": null, + "to": [ + 19.32, + -5.04 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1268, + 1302, + 0 + ] + }, + "from": [ + 19.32, + -5.04 + ], + "tag": null, + "to": [ + 19.32, + -5.88 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1333, + 1367, + 0 + ] + }, + "from": [ + 19.32, + -5.88 + ], + "tag": null, + "to": [ + 20.16, + -5.88 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1399, + 1433, + 0 + ] + }, + "from": [ + 20.16, + -5.88 + ], + "tag": null, + "to": [ + 20.16, + -6.72 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1463, + 1494, + 0 + ] + }, + "from": [ + 20.16, + -6.72 + ], + "tag": null, + "to": [ + 21.0, + -6.72 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1526, + 1558, + 0 + ] + }, + "from": [ + 21.0, + -6.72 + ], + "tag": null, + "to": [ + 21.0, + -24.36 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1589, + 1624, + 0 + ] + }, + "from": [ + 21.0, + -24.36 + ], + "tag": null, + "to": [ + 20.16, + -24.36 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1656, + 1690, + 0 + ] + }, + "from": [ + 20.16, + -24.36 + ], + "tag": null, + "to": [ + 20.16, + -25.2 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1721, + 1755, + 0 + ] + }, + "from": [ + 20.16, + -25.2 + ], + "tag": null, + "to": [ + 18.48, + -25.2 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1787, + 1822, + 0 + ] + }, + "from": [ + 18.48, + -25.2 + ], + "tag": null, + "to": [ + 18.48, + -26.04 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1853, + 1888, + 0 + ] + }, + "from": [ + 18.48, + -26.04 + ], + "tag": null, + "to": [ + 15.96, + -26.04 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1920, + 1955, + 0 + ] + }, + "from": [ + 15.96, + -26.04 + ], + "tag": null, + "to": [ + 15.96, + -26.88 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1986, + 2020, + 0 + ] + }, + "from": [ + 15.96, + -26.88 + ], + "tag": null, + "to": [ + 16.8, + -26.88 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2052, + 2086, + 0 + ] + }, + "from": [ + 16.8, + -26.88 + ], + "tag": null, + "to": [ + 16.8, + -28.56 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2117, + 2152, + 0 + ] + }, + "from": [ + 16.8, + -28.56 + ], + "tag": null, + "to": [ + 11.76, + -28.56 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2184, + 2219, + 0 + ] + }, + "from": [ + 11.76, + -28.56 + ], + "tag": null, + "to": [ + 11.76, + -26.88 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2249, + 2283, + 0 + ] + }, + "from": [ + 11.76, + -26.88 + ], + "tag": null, + "to": [ + 12.6, + -26.88 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2315, + 2349, + 0 + ] + }, + "from": [ + 12.6, + -26.88 + ], + "tag": null, + "to": [ + 12.6, + -26.04 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2379, + 2412, + 0 + ] + }, + "from": [ + 12.6, + -26.04 + ], + "tag": null, + "to": [ + 8.4, + -26.04 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2444, + 2477, + 0 + ] + }, + "from": [ + 8.4, + -26.04 + ], + "tag": null, + "to": [ + 8.4, + -26.88 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2508, + 2542, + 0 + ] + }, + "from": [ + 8.4, + -26.88 + ], + "tag": null, + "to": [ + 9.24, + -26.88 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2574, + 2608, + 0 + ] + }, + "from": [ + 9.24, + -26.88 + ], + "tag": null, + "to": [ + 9.24, + -28.56 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2639, + 2672, + 0 + ] + }, + "from": [ + 9.24, + -28.56 + ], + "tag": null, + "to": [ + 4.2, + -28.56 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2704, + 2737, + 0 + ] + }, + "from": [ + 4.2, + -28.56 + ], + "tag": null, + "to": [ + 4.2, + -26.88 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2768, + 2802, + 0 + ] + }, + "from": [ + 4.2, + -26.88 + ], + "tag": null, + "to": [ + 5.04, + -26.88 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2834, + 2868, + 0 + ] + }, + "from": [ + 5.04, + -26.88 + ], + "tag": null, + "to": [ + 5.04, + -26.04 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2899, + 2937, + 0 + ] + }, + "from": [ + 5.04, + -26.04 + ], + "tag": null, + "to": [ + 0.84, + -20.58 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2959, + 2997, + 0 + ] + }, + "from": [ + 0.84, + -20.58 + ], + "tag": null, + "to": [ + 0.84, + -24.36 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 3028, + 3062, + 0 + ] + }, + "from": [ + 0.84, + -24.36 + ], + "tag": null, + "to": [ + 2.52, + -24.36 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 3094, + 3127, + 0 + ] + }, + "from": [ + 2.52, + -24.36 + ], + "tag": null, + "to": [ + 2.52, + -25.2 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 3158, + 3192, + 0 + ] + }, + "from": [ + 2.52, + -25.2 + ], + "tag": null, + "to": [ + 18.48, + -25.2 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 3224, + 3259, + 0 + ] + }, + "from": [ + 18.48, + -25.2 + ], + "tag": null, + "to": [ + 18.48, + -24.36 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 3290, + 3325, + 0 + ] + }, + "from": [ + 18.48, + -24.36 + ], + "tag": null, + "to": [ + 20.16, + -24.36 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 3357, + 3392, + 0 + ] + }, + "from": [ + 20.16, + -24.36 + ], + "tag": null, + "to": [ + 20.16, + -20.58 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 3440, + 3474, + 0 + ] + }, + "from": [ + 20.16, + -20.58 + ], + "tag": null, + "to": [ + 7.56, + -24.36 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 3496, + 3530, + 0 + ] + }, + "from": [ + 7.56, + -24.36 + ], + "tag": null, + "to": [ + 7.56, + -22.68 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 3561, + 3596, + 0 + ] + }, + "from": [ + 7.56, + -22.68 + ], + "tag": null, + "to": [ + 13.44, + -22.68 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 3628, + 3663, + 0 + ] + }, + "from": [ + 13.44, + -22.68 + ], + "tag": null, + "to": [ + 13.44, + -24.36 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 3694, + 3728, + 0 + ] + }, + "from": [ + 13.44, + -24.36 + ], + "tag": null, + "to": [ + 1.68, + -22.68 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 3750, + 3784, + 0 + ] + }, + "from": [ + 1.68, + -22.68 + ], + "tag": null, + "to": [ + 1.68, + -21.84 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 3815, + 3849, + 0 + ] + }, + "from": [ + 1.68, + -21.84 + ], + "tag": null, + "to": [ + 5.88, + -21.84 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 3881, + 3915, + 0 + ] + }, + "from": [ + 5.88, + -21.84 + ], + "tag": null, + "to": [ + 5.88, + -22.68 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 3946, + 3980, + 0 + ] + }, + "from": [ + 5.88, + -22.68 + ], + "tag": null, + "to": [ + 3.36, + -24.36 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 4002, + 4036, + 0 + ] + }, + "from": [ + 3.36, + -24.36 + ], + "tag": null, + "to": [ + 3.36, + -23.52 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 4067, + 4101, + 0 + ] + }, + "from": [ + 3.36, + -23.52 + ], + "tag": null, + "to": [ + 5.88, + -23.52 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 4133, + 4167, + 0 + ] + }, + "from": [ + 5.88, + -23.52 + ], + "tag": null, + "to": [ + 5.88, + -24.36 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 4198, + 4233, + 0 + ] + }, + "from": [ + 5.88, + -24.36 + ], + "tag": null, + "to": [ + 15.12, + -22.68 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 4255, + 4290, + 0 + ] + }, + "from": [ + 15.12, + -22.68 + ], + "tag": null, + "to": [ + 15.12, + -21.84 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 4321, + 4369, + 0 + ] + }, + "from": [ + 15.12, + -21.84 + ], + "tag": null, + "to": [ + 15.96, + -21.84 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 4401, + 4449, + 0 + ] + }, + "from": [ + 15.96, + -21.84 + ], + "tag": null, + "to": [ + 15.96, + -22.68 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 4480, + 4514, + 0 + ] + }, + "from": [ + 15.96, + -22.68 + ], + "tag": null, + "to": [ + 16.8, + -22.68 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 4536, + 4570, + 0 + ] + }, + "from": [ + 16.8, + -22.68 + ], + "tag": null, + "to": [ + 16.8, + -21.84 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 4601, + 4636, + 0 + ] + }, + "from": [ + 16.8, + -21.84 + ], + "tag": null, + "to": [ + 17.64, + -21.84 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 4668, + 4703, + 0 + ] + }, + "from": [ + 17.64, + -21.84 + ], + "tag": null, + "to": [ + 17.64, + -22.68 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 4734, + 4769, + 0 + ] + }, + "from": [ + 17.64, + -22.68 + ], + "tag": null, + "to": [ + 18.48, + -22.68 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 4791, + 4826, + 0 + ] + }, + "from": [ + 18.48, + -22.68 + ], + "tag": null, + "to": [ + 18.48, + -21.84 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 4857, + 4892, + 0 + ] + }, + "from": [ + 18.48, + -21.84 + ], + "tag": null, + "to": [ + 19.32, + -21.84 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 4924, + 4959, + 0 + ] + }, + "from": [ + 19.32, + -21.84 + ], + "tag": null, + "to": [ + 19.32, + -22.68 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 4990, + 5025, + 0 + ] + }, + "from": [ + 19.32, + -22.68 + ], + "tag": null, + "to": [ + 15.12, + -24.36 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5047, + 5082, + 0 + ] + }, + "from": [ + 15.12, + -24.36 + ], + "tag": null, + "to": [ + 15.12, + -23.52 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5113, + 5148, + 0 + ] + }, + "from": [ + 15.12, + -23.52 + ], + "tag": null, + "to": [ + 17.64, + -23.52 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5180, + 5215, + 0 + ] + }, + "from": [ + 17.64, + -23.52 + ], + "tag": null, + "to": [ + 17.64, + -24.36 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5246, + 5280, + 0 + ] + }, + "from": [ + 17.64, + -24.36 + ], + "tag": null, + "to": [ + 18.48, + -5.88 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5302, + 5336, + 0 + ] + }, + "from": [ + 18.48, + -5.88 + ], + "tag": null, + "to": [ + 18.48, + -5.04 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5366, + 5400, + 0 + ] + }, + "from": [ + 18.48, + -5.04 + ], + "tag": null, + "to": [ + 17.64, + -5.04 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5432, + 5465, + 0 + ] + }, + "from": [ + 17.64, + -5.04 + ], + "tag": null, + "to": [ + 17.64, + -4.2 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5495, + 5527, + 0 + ] + }, + "from": [ + 17.64, + -4.2 + ], + "tag": null, + "to": [ + 3.36, + -4.2 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5559, + 5592, + 0 + ] + }, + "from": [ + 3.36, + -4.2 + ], + "tag": null, + "to": [ + 3.36, + -5.04 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5622, + 5655, + 0 + ] + }, + "from": [ + 3.36, + -5.04 + ], + "tag": null, + "to": [ + 2.52, + -5.04 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5687, + 5720, + 0 + ] + }, + "from": [ + 2.52, + -5.04 + ], + "tag": null, + "to": [ + 2.52, + -5.88 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5750, + 5783, + 0 + ] + }, + "from": [ + 2.52, + -5.88 + ], + "tag": null, + "to": [ + 1.68, + -5.88 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5815, + 5848, + 0 + ] + }, + "from": [ + 1.68, + -5.88 + ], + "tag": null, + "to": [ + 1.68, + -6.72 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5878, + 5915, + 0 + ] + }, + "from": [ + 1.68, + -6.72 + ], + "tag": null, + "to": [ + 0.84, + -6.72 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5947, + 5983, + 0 + ] + }, + "from": [ + 0.84, + -6.72 + ], + "tag": null, + "to": [ + 0.84, + -8.4 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 6013, + 6046, + 0 + ] + }, + "from": [ + 0.84, + -8.4 + ], + "tag": null, + "to": [ + 20.16, + -8.4 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 6078, + 6112, + 0 + ] + }, + "from": [ + 20.16, + -8.4 + ], + "tag": null, + "to": [ + 20.16, + -6.72 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 6142, + 6176, + 0 + ] + }, + "from": [ + 20.16, + -6.72 + ], + "tag": null, + "to": [ + 19.32, + -6.72 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 6208, + 6242, + 0 + ] + }, + "from": [ + 19.32, + -6.72 + ], + "tag": null, + "to": [ + 19.32, + -5.88 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 6272, + 6306, + 0 + ] + }, + "from": [ + 19.32, + -5.88 + ], + "tag": null, + "to": [ + 20.16, + -7.56 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 6328, + 6365, + 0 + ] + }, + "from": [ + 20.16, + -7.56 + ], + "tag": null, + "to": [ + 0.84, + -7.56 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 6397, + 6435, + 0 + ] + }, + "from": [ + 0.84, + -7.56 + ], + "tag": null, + "to": [ + 0.84, + -19.32 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 6465, + 6500, + 0 + ] + }, + "from": [ + 0.84, + -19.32 + ], + "tag": null, + "to": [ + 20.16, + -19.32 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 6532, + 6566, + 0 + ] + }, + "from": [ + 20.16, + -19.32 + ], + "tag": null, + "to": [ + 3.36, + -10.08 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 6588, + 6624, + 0 + ] + }, + "from": [ + 3.36, + -10.08 + ], + "tag": null, + "to": [ + 3.36, + -9.24 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 6654, + 6691, + 0 + ] + }, + "from": [ + 3.36, + -9.24 + ], + "tag": null, + "to": [ + 17.64, + -9.24 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 6723, + 6758, + 0 + ] + }, + "from": [ + 17.64, + -9.24 + ], + "tag": null, + "to": [ + 17.64, + -10.08 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 6788, + 6823, + 0 + ] + }, + "from": [ + 17.64, + -10.08 + ], + "tag": null, + "to": [ + 18.48, + -10.08 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 6855, + 6889, + 0 + ] + }, + "from": [ + 18.48, + -10.08 + ], + "tag": null, + "to": [ + 18.48, + -16.8 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 6920, + 6954, + 0 + ] + }, + "from": [ + 18.48, + -16.8 + ], + "tag": null, + "to": [ + 17.64, + -16.8 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 6986, + 7021, + 0 + ] + }, + "from": [ + 17.64, + -16.8 + ], + "tag": null, + "to": [ + 17.64, + -17.64 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 7052, + 7086, + 0 + ] + }, + "from": [ + 17.64, + -17.64 + ], + "tag": null, + "to": [ + 3.36, + -17.64 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 7118, + 7151, + 0 + ] + }, + "from": [ + 3.36, + -17.64 + ], + "tag": null, + "to": [ + 3.36, + -16.8 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 7181, + 7214, + 0 + ] + }, + "from": [ + 3.36, + -16.8 + ], + "tag": null, + "to": [ + 2.52, + -16.8 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 7246, + 7293, + 0 + ] + }, + "from": [ + 2.52, + -16.8 + ], + "tag": null, + "to": [ + 2.52, + -10.08 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 7324, + 7359, + 0 + ] + }, + "from": [ + 2.52, + -10.08 + ], + "tag": null, + "to": [ + 13.44, + -10.92 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 7381, + 7416, + 0 + ] + }, + "from": [ + 13.44, + -10.92 + ], + "tag": null, + "to": [ + 13.44, + -10.08 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 7447, + 7482, + 0 + ] + }, + "from": [ + 13.44, + -10.08 + ], + "tag": null, + "to": [ + 15.12, + -10.08 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 7514, + 7549, + 0 + ] + }, + "from": [ + 15.12, + -10.08 + ], + "tag": null, + "to": [ + 15.12, + -13.44 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 7580, + 7615, + 0 + ] + }, + "from": [ + 15.12, + -13.44 + ], + "tag": null, + "to": [ + 14.28, + -13.44 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 7647, + 7681, + 0 + ] + }, + "from": [ + 14.28, + -13.44 + ], + "tag": null, + "to": [ + 9.24, + -13.44 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 7703, + 7738, + 0 + ] + }, + "from": [ + 9.24, + -13.44 + ], + "tag": null, + "to": [ + 11.76, + -13.44 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 7770, + 7805, + 0 + ] + }, + "from": [ + 11.76, + -13.44 + ], + "tag": null, + "to": [ + 11.76, + -14.28 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 7836, + 7871, + 0 + ] + }, + "from": [ + 11.76, + -14.28 + ], + "tag": null, + "to": [ + 10.92, + -14.28 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 7908, + 7956, + 0 + ] + }, + "from": [ + 10.92, + -14.28 + ], + "tag": null, + "to": [ + 10.92, + -15.96 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 7987, + 8035, + 0 + ] + }, + "from": [ + 10.92, + -15.96 + ], + "tag": null, + "to": [ + 13.44, + -15.96 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 8067, + 8102, + 0 + ] + }, + "from": [ + 13.44, + -15.96 + ], + "tag": null, + "to": [ + 13.44, + -15.12 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 8133, + 8168, + 0 + ] + }, + "from": [ + 13.44, + -15.12 + ], + "tag": null, + "to": [ + 14.28, + -15.12 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 8200, + 8248, + 0 + ] + }, + "from": [ + 14.28, + -15.12 + ], + "tag": null, + "to": [ + 14.28, + -15.96 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 8279, + 8327, + 0 + ] + }, + "from": [ + 14.28, + -15.96 + ], + "tag": null, + "to": [ + 13.44, + -15.96 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 8359, + 8393, + 0 + ] + }, + "from": [ + 13.44, + -15.96 + ], + "tag": null, + "to": [ + 13.44, + -16.8 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 8423, + 8456, + 0 + ] + }, + "from": [ + 13.44, + -16.8 + ], + "tag": null, + "to": [ + 7.56, + -16.8 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 8488, + 8522, + 0 + ] + }, + "from": [ + 7.56, + -16.8 + ], + "tag": null, + "to": [ + 7.56, + -15.96 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 8552, + 8586, + 0 + ] + }, + "from": [ + 7.56, + -15.96 + ], + "tag": null, + "to": [ + 6.72, + -15.96 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 8618, + 8665, + 0 + ] + }, + "from": [ + 6.72, + -15.96 + ], + "tag": null, + "to": [ + 6.72, + -15.12 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 8696, + 8743, + 0 + ] + }, + "from": [ + 6.72, + -15.12 + ], + "tag": null, + "to": [ + 7.56, + -15.12 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 8775, + 8809, + 0 + ] + }, + "from": [ + 7.56, + -15.12 + ], + "tag": null, + "to": [ + 7.56, + -15.96 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 8840, + 8875, + 0 + ] + }, + "from": [ + 7.56, + -15.96 + ], + "tag": null, + "to": [ + 10.08, + -15.96 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 8907, + 8942, + 0 + ] + }, + "from": [ + 10.08, + -15.96 + ], + "tag": null, + "to": [ + 10.08, + -14.28 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 8972, + 9006, + 0 + ] + }, + "from": [ + 10.08, + -14.28 + ], + "tag": null, + "to": [ + 9.24, + -14.28 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 9038, + 9071, + 0 + ] + }, + "from": [ + 9.24, + -14.28 + ], + "tag": null, + "to": [ + 7.56, + -12.6 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 9093, + 9127, + 0 + ] + }, + "from": [ + 7.56, + -12.6 + ], + "tag": null, + "to": [ + 7.56, + -11.76 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 9157, + 9191, + 0 + ] + }, + "from": [ + 7.56, + -11.76 + ], + "tag": null, + "to": [ + 5.04, + -11.76 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 9223, + 9256, + 0 + ] + }, + "from": [ + 5.04, + -11.76 + ], + "tag": null, + "to": [ + 5.04, + -12.6 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 9286, + 9318, + 0 + ] + }, + "from": [ + 5.04, + -12.6 + ], + "tag": null, + "to": [ + 4.2, + -12.6 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 9350, + 9383, + 0 + ] + }, + "from": [ + 4.2, + -12.6 + ], + "tag": null, + "to": [ + 4.2, + -11.76 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 9414, + 9448, + 0 + ] + }, + "from": [ + 4.2, + -11.76 + ], + "tag": null, + "to": [ + 5.04, + -11.76 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 9480, + 9514, + 0 + ] + }, + "from": [ + 5.04, + -11.76 + ], + "tag": null, + "to": [ + 5.04, + -10.92 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 9545, + 9593, + 0 + ] + }, + "from": [ + 5.04, + -10.92 + ], + "tag": null, + "to": [ + 7.56, + -10.92 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 9625, + 9673, + 0 + ] + }, + "from": [ + 7.56, + -10.92 + ], + "tag": null, + "to": [ + 7.56, + -11.76 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 9704, + 9737, + 0 + ] + }, + "from": [ + 7.56, + -11.76 + ], + "tag": null, + "to": [ + 8.4, + -11.76 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 9769, + 9801, + 0 + ] + }, + "from": [ + 8.4, + -11.76 + ], + "tag": null, + "to": [ + 8.4, + -12.6 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 9832, + 9865, + 0 + ] + }, + "from": [ + 8.4, + -12.6 + ], + "tag": null, + "to": [ + 3.36, + -5.88 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 9887, + 9920, + 0 + ] + }, + "from": [ + 3.36, + -5.88 + ], + "tag": null, + "to": [ + 3.36, + -5.04 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 9950, + 9982, + 0 + ] + }, + "from": [ + 3.36, + -5.04 + ], + "tag": null, + "to": [ + 4.2, + -5.04 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 10014, + 10046, + 0 + ] + }, + "from": [ + 4.2, + -5.04 + ], + "tag": null, + "to": [ + 4.2, + -3.36 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 10076, + 10109, + 0 + ] + }, + "from": [ + 4.2, + -3.36 + ], + "tag": null, + "to": [ + 5.04, + -3.36 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 10141, + 10174, + 0 + ] + }, + "from": [ + 5.04, + -3.36 + ], + "tag": null, + "to": [ + 5.04, + -1.68 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 10204, + 10237, + 0 + ] + }, + "from": [ + 5.04, + -1.68 + ], + "tag": null, + "to": [ + 5.88, + -1.68 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 10269, + 10308, + 0 + ] + }, + "from": [ + 5.88, + -1.68 + ], + "tag": null, + "to": [ + 5.88, + -0.84 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 10338, + 10377, + 0 + ] + }, + "from": [ + 5.88, + -0.84 + ], + "tag": null, + "to": [ + 6.72, + -0.84 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 10409, + 10442, + 0 + ] + }, + "from": [ + 6.72, + -0.84 + ], + "tag": null, + "to": [ + 6.72, + -1.68 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 10472, + 10505, + 0 + ] + }, + "from": [ + 6.72, + -1.68 + ], + "tag": null, + "to": [ + 7.56, + -1.68 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 10537, + 10570, + 0 + ] + }, + "from": [ + 7.56, + -1.68 + ], + "tag": null, + "to": [ + 7.56, + -3.36 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 10600, + 10632, + 0 + ] + }, + "from": [ + 7.56, + -3.36 + ], + "tag": null, + "to": [ + 8.4, + -3.36 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 10664, + 10696, + 0 + ] + }, + "from": [ + 8.4, + -3.36 + ], + "tag": null, + "to": [ + 8.4, + -5.04 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 10727, + 10760, + 0 + ] + }, + "from": [ + 8.4, + -5.04 + ], + "tag": null, + "to": [ + 9.24, + -5.04 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 10792, + 10825, + 0 + ] + }, + "from": [ + 9.24, + -5.04 + ], + "tag": null, + "to": [ + 9.24, + -5.88 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 10856, + 10890, + 0 + ] + }, + "from": [ + 9.24, + -5.88 + ], + "tag": null, + "to": [ + 17.64, + -5.04 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 10912, + 10946, + 0 + ] + }, + "from": [ + 17.64, + -5.04 + ], + "tag": null, + "to": [ + 17.64, + -5.88 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 10976, + 11010, + 0 + ] + }, + "from": [ + 17.64, + -5.88 + ], + "tag": null, + "to": [ + 11.76, + -5.88 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 11042, + 11076, + 0 + ] + }, + "from": [ + 11.76, + -5.88 + ], + "tag": null, + "to": [ + 11.76, + -5.04 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 11106, + 11139, + 0 + ] + }, + "from": [ + 11.76, + -5.04 + ], + "tag": null, + "to": [ + 12.6, + -5.04 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 11171, + 11204, + 0 + ] + }, + "from": [ + 12.6, + -5.04 + ], + "tag": null, + "to": [ + 12.6, + -3.36 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 11234, + 11268, + 0 + ] + }, + "from": [ + 12.6, + -3.36 + ], + "tag": null, + "to": [ + 13.44, + -3.36 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 11300, + 11334, + 0 + ] + }, + "from": [ + 13.44, + -3.36 + ], + "tag": null, + "to": [ + 13.44, + -1.68 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 11364, + 11398, + 0 + ] + }, + "from": [ + 13.44, + -1.68 + ], + "tag": null, + "to": [ + 14.28, + -1.68 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 11430, + 11470, + 0 + ] + }, + "from": [ + 14.28, + -1.68 + ], + "tag": null, + "to": [ + 14.28, + -0.84 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 11500, + 11540, + 0 + ] + }, + "from": [ + 14.28, + -0.84 + ], + "tag": null, + "to": [ + 15.12, + -0.84 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 11572, + 11606, + 0 + ] + }, + "from": [ + 15.12, + -0.84 + ], + "tag": null, + "to": [ + 15.12, + -1.68 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 11636, + 11683, + 0 + ] + }, + "from": [ + 15.12, + -1.68 + ], + "tag": null, + "to": [ + 15.96, + -1.68 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 11715, + 11762, + 0 + ] + }, + "from": [ + 15.96, + -1.68 + ], + "tag": null, + "to": [ + 15.96, + -3.36 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 11793, + 11826, + 0 + ] + }, + "from": [ + 15.96, + -3.36 + ], + "tag": null, + "to": [ + 16.8, + -3.36 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 11858, + 11891, + 0 + ] + }, + "from": [ + 16.8, + -3.36 + ], + "tag": null, + "to": [ + 16.8, + -5.04 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 11922, + 11956, + 0 + ] + }, + "from": [ + 16.8, + -5.04 + ], + "tag": null, + "to": [ + 13.44, + -1.68 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 11978, + 12009, + 0 + ] + }, + "from": [ + 13.44, + -1.68 + ], + "tag": null, + "to": [ + 13.44, + -0.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 12039, + 12083, + 0 + ] + }, + "from": [ + 13.44, + -0.0 + ], + "tag": null, + "to": [ + 15.96, + -0.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 12115, + 12162, + 0 + ] + }, + "from": [ + 15.96, + -0.0 + ], + "tag": null, + "to": [ + 15.96, + -1.68 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 12193, + 12226, + 0 + ] + }, + "from": [ + 15.96, + -1.68 + ], + "tag": null, + "to": [ + 16.8, + -1.68 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 12258, + 12291, + 0 + ] + }, + "from": [ + 16.8, + -1.68 + ], + "tag": null, + "to": [ + 16.8, + -3.36 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 12322, + 12356, + 0 + ] + }, + "from": [ + 16.8, + -3.36 + ], + "tag": null, + "to": [ + 17.64, + -3.36 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 12388, + 12422, + 0 + ] + }, + "from": [ + 17.64, + -3.36 + ], + "tag": null, + "to": [ + 17.64, + -4.62 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 12452, + 12485, + 0 + ] + }, + "from": [ + 17.64, + -4.62 + ], + "tag": null, + "to": [ + 16.8, + -4.62 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 12517, + 12550, + 0 + ] + }, + "from": [ + 16.8, + -4.62 + ], + "tag": null, + "to": [ + 16.8, + -3.36 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 12580, + 12614, + 0 + ] + }, + "from": [ + 16.8, + -3.36 + ], + "tag": null, + "to": [ + 15.96, + -3.36 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 12646, + 12680, + 0 + ] + }, + "from": [ + 15.96, + -3.36 + ], + "tag": null, + "to": [ + 15.96, + -1.68 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 12710, + 12744, + 0 + ] + }, + "from": [ + 15.96, + -1.68 + ], + "tag": null, + "to": [ + 15.12, + -1.68 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 12776, + 12816, + 0 + ] + }, + "from": [ + 15.12, + -1.68 + ], + "tag": null, + "to": [ + 15.12, + -0.84 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 12846, + 12886, + 0 + ] + }, + "from": [ + 15.12, + -0.84 + ], + "tag": null, + "to": [ + 14.28, + -0.84 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 12918, + 12952, + 0 + ] + }, + "from": [ + 14.28, + -0.84 + ], + "tag": null, + "to": [ + 14.28, + -1.68 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 12982, + 13016, + 0 + ] + }, + "from": [ + 14.28, + -1.68 + ], + "tag": null, + "to": [ + 13.44, + -1.68 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 13048, + 13082, + 0 + ] + }, + "from": [ + 13.44, + -1.68 + ], + "tag": null, + "to": [ + 13.44, + -3.36 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 13112, + 13145, + 0 + ] + }, + "from": [ + 13.44, + -3.36 + ], + "tag": null, + "to": [ + 12.6, + -3.36 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 13177, + 13210, + 0 + ] + }, + "from": [ + 12.6, + -3.36 + ], + "tag": null, + "to": [ + 12.6, + -4.62 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 13240, + 13274, + 0 + ] + }, + "from": [ + 12.6, + -4.62 + ], + "tag": null, + "to": [ + 11.76, + -4.62 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 13306, + 13340, + 0 + ] + }, + "from": [ + 11.76, + -4.62 + ], + "tag": null, + "to": [ + 11.76, + -3.36 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 13370, + 13403, + 0 + ] + }, + "from": [ + 11.76, + -3.36 + ], + "tag": null, + "to": [ + 12.6, + -3.36 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 13435, + 13468, + 0 + ] + }, + "from": [ + 12.6, + -3.36 + ], + "tag": null, + "to": [ + 12.6, + -1.68 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 13498, + 13531, + 0 + ] + }, + "from": [ + 12.6, + -1.68 + ], + "tag": null, + "to": [ + 5.04, + -1.68 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 13553, + 13583, + 0 + ] + }, + "from": [ + 5.04, + -1.68 + ], + "tag": null, + "to": [ + 5.04, + -0.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 13613, + 13643, + 0 + ] + }, + "from": [ + 5.04, + -0.0 + ], + "tag": null, + "to": [ + 7.56, + -0.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 13675, + 13708, + 0 + ] + }, + "from": [ + 7.56, + -0.0 + ], + "tag": null, + "to": [ + 7.56, + -1.68 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 13738, + 13770, + 0 + ] + }, + "from": [ + 7.56, + -1.68 + ], + "tag": null, + "to": [ + 8.4, + -1.68 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 13802, + 13834, + 0 + ] + }, + "from": [ + 8.4, + -1.68 + ], + "tag": null, + "to": [ + 8.4, + -3.36 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 13864, + 13897, + 0 + ] + }, + "from": [ + 8.4, + -3.36 + ], + "tag": null, + "to": [ + 9.24, + -3.36 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 13929, + 13962, + 0 + ] + }, + "from": [ + 9.24, + -3.36 + ], + "tag": null, + "to": [ + 9.24, + -4.62 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 13992, + 14024, + 0 + ] + }, + "from": [ + 9.24, + -4.62 + ], + "tag": null, + "to": [ + 8.4, + -4.62 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 14056, + 14088, + 0 + ] + }, + "from": [ + 8.4, + -4.62 + ], + "tag": null, + "to": [ + 8.4, + -3.36 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 14118, + 14151, + 0 + ] + }, + "from": [ + 8.4, + -3.36 + ], + "tag": null, + "to": [ + 7.56, + -3.36 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 14183, + 14216, + 0 + ] + }, + "from": [ + 7.56, + -3.36 + ], + "tag": null, + "to": [ + 7.56, + -1.68 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 14246, + 14279, + 0 + ] + }, + "from": [ + 7.56, + -1.68 + ], + "tag": null, + "to": [ + 6.72, + -1.68 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 14311, + 14350, + 0 + ] + }, + "from": [ + 6.72, + -1.68 + ], + "tag": null, + "to": [ + 6.72, + -0.84 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 14380, + 14419, + 0 + ] + }, + "from": [ + 6.72, + -0.84 + ], + "tag": null, + "to": [ + 5.88, + -0.84 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 14451, + 14484, + 0 + ] + }, + "from": [ + 5.88, + -0.84 + ], + "tag": null, + "to": [ + 5.88, + -1.68 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 14514, + 14547, + 0 + ] + }, + "from": [ + 5.88, + -1.68 + ], + "tag": null, + "to": [ + 5.04, + -1.68 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 14579, + 14612, + 0 + ] + }, + "from": [ + 5.04, + -1.68 + ], + "tag": null, + "to": [ + 5.04, + -3.36 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 14642, + 14674, + 0 + ] + }, + "from": [ + 5.04, + -3.36 + ], + "tag": null, + "to": [ + 4.2, + -3.36 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 14706, + 14738, + 0 + ] + }, + "from": [ + 4.2, + -3.36 + ], + "tag": null, + "to": [ + 4.2, + -4.62 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 14768, + 14801, + 0 + ] + }, + "from": [ + 4.2, + -4.62 + ], + "tag": null, + "to": [ + 3.36, + -4.62 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 14833, + 14866, + 0 + ] + }, + "from": [ + 3.36, + -4.62 + ], + "tag": null, + "to": [ + 3.36, + -3.36 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 14896, + 14928, + 0 + ] + }, + "from": [ + 3.36, + -3.36 + ], + "tag": null, + "to": [ + 4.2, + -3.36 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 14960, + 14992, + 0 + ] + }, + "from": [ + 4.2, + -3.36 + ], + "tag": null, + "to": [ + 4.2, + -1.68 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 15022, + 15056, + 0 + ] + }, + "from": [ + 4.2, + -1.68 + ], + "tag": null, + "to": [ + 13.44, + -5.88 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 15078, + 15112, + 0 + ] + }, + "from": [ + 13.44, + -5.88 + ], + "tag": null, + "to": [ + 13.44, + -5.04 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 15142, + 15176, + 0 + ] + }, + "from": [ + 13.44, + -5.04 + ], + "tag": null, + "to": [ + 14.28, + -5.04 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 15208, + 15241, + 0 + ] + }, + "from": [ + 14.28, + -5.04 + ], + "tag": null, + "to": [ + 14.28, + -4.2 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 15271, + 15304, + 0 + ] + }, + "from": [ + 14.28, + -4.2 + ], + "tag": null, + "to": [ + 15.12, + -4.2 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 15336, + 15370, + 0 + ] + }, + "from": [ + 15.12, + -4.2 + ], + "tag": null, + "to": [ + 15.12, + -5.04 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 15401, + 15448, + 0 + ] + }, + "from": [ + 15.12, + -5.04 + ], + "tag": null, + "to": [ + 15.96, + -5.04 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 15480, + 15527, + 0 + ] + }, + "from": [ + 15.96, + -5.04 + ], + "tag": null, + "to": [ + 15.96, + -5.88 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 15558, + 15591, + 0 + ] + }, + "from": [ + 15.96, + -5.88 + ], + "tag": null, + "to": [ + 5.88, + -5.04 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 15613, + 15645, + 0 + ] + }, + "from": [ + 5.88, + -5.04 + ], + "tag": null, + "to": [ + 5.88, + -4.2 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 15675, + 15707, + 0 + ] + }, + "from": [ + 5.88, + -4.2 + ], + "tag": null, + "to": [ + 6.72, + -4.2 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 15739, + 15772, + 0 + ] + }, + "from": [ + 6.72, + -4.2 + ], + "tag": null, + "to": [ + 6.72, + -5.04 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 15802, + 15835, + 0 + ] + }, + "from": [ + 6.72, + -5.04 + ], + "tag": null, + "to": [ + 7.56, + -5.04 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 15867, + 15900, + 0 + ] + }, + "from": [ + 7.56, + -5.04 + ], + "tag": null, + "to": [ + 7.56, + -5.88 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 15930, + 15963, + 0 + ] + }, + "from": [ + 7.56, + -5.88 + ], + "tag": null, + "to": [ + 5.04, + -5.88 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 15995, + 16028, + 0 + ] + }, + "from": [ + 5.04, + -5.88 + ], + "tag": null, + "to": [ + 5.04, + -5.04 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 16058, + 16092, + 0 + ] + }, + "from": [ + 5.04, + -5.04 + ], + "tag": null, + "to": [ + 17.64, + -5.88 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 16114, + 16148, + 0 + ] + }, + "from": [ + 17.64, + -5.88 + ], + "tag": null, + "to": [ + 17.64, + -5.04 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 16178, + 16211, + 0 + ] + }, + "from": [ + 17.64, + -5.04 + ], + "tag": null, + "to": [ + 16.8, + -5.04 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 16243, + 16275, + 0 + ] + }, + "from": [ + 16.8, + -5.04 + ], + "tag": null, + "to": [ + 16.8, + -4.2 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 16305, + 16338, + 0 + ] + }, + "from": [ + 16.8, + -4.2 + ], + "tag": null, + "to": [ + 17.64, + -4.2 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 16370, + 16404, + 0 + ] + }, + "from": [ + 17.64, + -4.2 + ], + "tag": null, + "to": [ + 17.64, + -5.04 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 16435, + 16469, + 0 + ] + }, + "from": [ + 17.64, + -5.04 + ], + "tag": null, + "to": [ + 18.48, + -5.04 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 16501, + 16535, + 0 + ] + }, + "from": [ + 18.48, + -5.04 + ], + "tag": null, + "to": [ + 18.48, + -5.88 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 16566, + 16599, + 0 + ] + }, + "from": [ + 18.48, + -5.88 + ], + "tag": null, + "to": [ + 3.36, + -5.04 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 16621, + 16654, + 0 + ] + }, + "from": [ + 3.36, + -5.04 + ], + "tag": null, + "to": [ + 3.36, + -5.88 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 16684, + 16717, + 0 + ] + }, + "from": [ + 3.36, + -5.88 + ], + "tag": null, + "to": [ + 2.52, + -5.88 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 16749, + 16782, + 0 + ] + }, + "from": [ + 2.52, + -5.88 + ], + "tag": null, + "to": [ + 2.52, + -5.04 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 16812, + 16845, + 0 + ] + }, + "from": [ + 2.52, + -5.04 + ], + "tag": null, + "to": [ + 3.36, + -5.04 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 16877, + 16909, + 0 + ] + }, + "from": [ + 3.36, + -5.04 + ], + "tag": null, + "to": [ + 3.36, + -4.2 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 16939, + 16970, + 0 + ] + }, + "from": [ + 3.36, + -4.2 + ], + "tag": null, + "to": [ + 4.2, + -4.2 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 17002, + 17034, + 0 + ] + }, + "from": [ + 4.2, + -4.2 + ], + "tag": null, + "to": [ + 4.2, + -5.04 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 17065, + 17096, + 0 + ] + }, + "from": [ + 4.2, + -5.04 + ], + "tag": null, + "to": [ + 8.4, + -4.2 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 17118, + 17150, + 0 + ] + }, + "from": [ + 8.4, + -4.2 + ], + "tag": null, + "to": [ + 9.24, + -4.2 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 17182, + 17215, + 0 + ] + }, + "from": [ + 9.24, + -4.2 + ], + "tag": null, + "to": [ + 9.24, + -5.04 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 17246, + 17280, + 0 + ] + }, + "from": [ + 9.24, + -5.04 + ], + "tag": null, + "to": [ + 10.08, + -5.04 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 17312, + 17346, + 0 + ] + }, + "from": [ + 10.08, + -5.04 + ], + "tag": null, + "to": [ + 10.08, + -5.88 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 17376, + 17409, + 0 + ] + }, + "from": [ + 10.08, + -5.88 + ], + "tag": null, + "to": [ + 9.24, + -5.88 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 17441, + 17474, + 0 + ] + }, + "from": [ + 9.24, + -5.88 + ], + "tag": null, + "to": [ + 9.24, + -5.04 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 17504, + 17536, + 0 + ] + }, + "from": [ + 9.24, + -5.04 + ], + "tag": null, + "to": [ + 8.4, + -5.04 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 17568, + 17601, + 0 + ] + }, + "from": [ + 8.4, + -5.04 + ], + "tag": null, + "to": [ + 11.76, + -4.2 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 17623, + 17655, + 0 + ] + }, + "from": [ + 11.76, + -4.2 + ], + "tag": null, + "to": [ + 12.6, + -4.2 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 17687, + 17720, + 0 + ] + }, + "from": [ + 12.6, + -4.2 + ], + "tag": null, + "to": [ + 12.6, + -5.04 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 17750, + 17784, + 0 + ] + }, + "from": [ + 12.6, + -5.04 + ], + "tag": null, + "to": [ + 11.76, + -5.04 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 17816, + 17850, + 0 + ] + }, + "from": [ + 11.76, + -5.04 + ], + "tag": null, + "to": [ + 11.76, + -5.88 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 17880, + 17914, + 0 + ] + }, + "from": [ + 11.76, + -5.88 + ], + "tag": null, + "to": [ + 10.92, + -5.88 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 17946, + 17980, + 0 + ] + }, + "from": [ + 10.92, + -5.88 + ], + "tag": null, + "to": [ + 10.92, + -5.04 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 18010, + 18044, + 0 + ] + }, + "from": [ + 10.92, + -5.04 + ], + "tag": null, + "to": [ + 11.76, + -5.04 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 18076, + 18111, + 0 + ] + }, + "from": [ + 11.76, + -5.04 + ], + "tag": null, + "to": [ + 14.28, + -10.92 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 18133, + 18168, + 0 + ] + }, + "from": [ + 14.28, + -10.92 + ], + "tag": null, + "to": [ + 13.44, + -10.92 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 18200, + 18235, + 0 + ] + }, + "from": [ + 13.44, + -10.92 + ], + "tag": null, + "to": [ + 13.44, + -13.44 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 18266, + 18301, + 0 + ] + }, + "from": [ + 13.44, + -13.44 + ], + "tag": null, + "to": [ + 14.28, + -13.44 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 18333, + 18341, + 0 + ] + }, + "from": [ + 14.28, + -13.44 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 31, + 56, + 0 ] } - } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 31, + 56, + 0 + ] + } + ] }, - "snapshots": [], - "parent": null + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 31, + 56, + 0 + ] + } + ] } - ], - "currentEnv": [ - 0, - 0 - ], - "callStack": [] + } } diff --git a/src/wasm-lib/kcl/tests/kw_fn/program_memory.snap b/src/wasm-lib/kcl/tests/kw_fn/program_memory.snap index 915b4e2d3..5f40f3838 100644 --- a/src/wasm-lib/kcl/tests/kw_fn/program_memory.snap +++ b/src/wasm-lib/kcl/tests/kw_fn/program_memory.snap @@ -1,255 +1,211 @@ --- source: kcl/src/simulation_tests.rs -description: Program memory after executing kw_fn.kcl +description: Variables in memory after executing kw_fn.kcl --- { - "environments": [ - { - "bindings": { - "HALF_TURN": { - "type": "Number", - "value": 180.0, - "__meta": [] - }, - "QUARTER_TURN": { - "type": "Number", - "value": 90.0, - "__meta": [] - }, - "THREE_QUARTER_TURN": { - "type": "Number", - "value": 270.0, - "__meta": [] - }, - "ZERO": { - "type": "Number", - "value": 0.0, - "__meta": [] - }, - "add": { - "type": "Function", - "expression": { - "body": { - "body": [ - { - "argument": { - "end": 75, - "left": { - "end": 67, - "name": "x", - "start": 66, - "type": "Identifier", - "type": "Identifier" - }, - "operator": "+", - "right": { - "end": 75, - "name": "delta", - "start": 70, - "type": "Identifier", - "type": "Identifier" - }, - "start": 66, - "type": "BinaryExpression", - "type": "BinaryExpression" - }, - "end": 75, - "start": 59, - "type": "ReturnStatement", - "type": "ReturnStatement" - } - ], - "end": 77, - "start": 55 - }, - "end": 77, - "params": [ - { - "type": "Parameter", - "identifier": { - "end": 46, - "name": "x", - "start": 45, - "type": "Identifier" - }, - "labeled": false + "HALF_TURN": { + "type": "Number", + "value": 180.0, + "__meta": [] + }, + "QUARTER_TURN": { + "type": "Number", + "value": 90.0, + "__meta": [] + }, + "THREE_QUARTER_TURN": { + "type": "Number", + "value": 270.0, + "__meta": [] + }, + "ZERO": { + "type": "Number", + "value": 0.0, + "__meta": [] + }, + "add": { + "type": "Function", + "expression": { + "body": { + "body": [ + { + "argument": { + "end": 75, + "left": { + "end": 67, + "name": "x", + "start": 66, + "type": "Identifier", + "type": "Identifier" }, - { - "type": "Parameter", - "identifier": { - "end": 53, - "name": "delta", - "start": 48, - "type": "Identifier" - } - } - ], - "start": 43, - "type": "FunctionExpression" - }, - "memory": [ - 0, - 2 - ], - "__meta": [ - { - "sourceRange": [ - 43, - 77, - 0 - ] - } - ] - }, - "increment": { - "type": "Function", - "expression": { - "body": { - "body": [ - { - "argument": { - "end": 33, - "left": { - "end": 29, - "name": "x", - "start": 28, - "type": "Identifier", - "type": "Identifier" - }, - "operator": "+", - "right": { - "end": 33, - "raw": "1", - "start": 32, - "type": "Literal", - "type": "Literal", - "value": { - "value": 1.0, - "suffix": "None" - } - }, - "start": 28, - "type": "BinaryExpression", - "type": "BinaryExpression" - }, - "end": 33, - "start": 21, - "type": "ReturnStatement", - "type": "ReturnStatement" - } - ], - "end": 35, - "start": 17 + "operator": "+", + "right": { + "end": 75, + "name": "delta", + "start": 70, + "type": "Identifier", + "type": "Identifier" + }, + "start": 66, + "type": "BinaryExpression", + "type": "BinaryExpression" }, - "end": 35, - "params": [ - { - "type": "Parameter", - "identifier": { - "end": 15, - "name": "x", - "start": 14, - "type": "Identifier" - }, - "labeled": false - } - ], - "start": 12, - "type": "FunctionExpression" - }, - "memory": [ - 0, - 1 - ], - "__meta": [ - { - "sourceRange": [ - 12, - 35, - 0 - ] - } - ] - }, - "three": { - "type": "Number", - "value": 3.0, - "__meta": [ - { - "sourceRange": [ - 110, - 111, - 0 - ] - }, - { - "sourceRange": [ - 121, - 122, - 0 - ] - } - ] - }, - "two": { - "type": "Number", - "value": 2.0, - "__meta": [ - { - "sourceRange": [ - 95, - 96, - 0 - ] - }, - { - "sourceRange": [ - 32, - 33, - 0 - ] - } - ] - } - }, - "snapshots": [ - { - "parent_snapshot": null, - "data": { - "increment": { - "type": "Tombstone", - "value": null, - "__meta": [] - } + "end": 75, + "start": 59, + "type": "ReturnStatement", + "type": "ReturnStatement" } + ], + "end": 77, + "start": 55 + }, + "end": 77, + "params": [ + { + "type": "Parameter", + "identifier": { + "end": 46, + "name": "x", + "start": 45, + "type": "Identifier" + }, + "labeled": false }, { - "parent_snapshot": null, - "data": { - "add": { - "type": "Tombstone", - "value": null, - "__meta": [] - }, - "three": { - "type": "Tombstone", - "value": null, - "__meta": [] - }, - "two": { - "type": "Tombstone", - "value": null, - "__meta": [] - } + "type": "Parameter", + "identifier": { + "end": 53, + "name": "delta", + "start": 48, + "type": "Identifier" } } ], - "parent": null - } - ], - "currentEnv": [ - 0, - 0 - ], - "callStack": [] + "start": 43, + "type": "FunctionExpression" + }, + "memory": [ + 0, + 2 + ], + "__meta": [ + { + "sourceRange": [ + 43, + 77, + 0 + ] + } + ] + }, + "increment": { + "type": "Function", + "expression": { + "body": { + "body": [ + { + "argument": { + "end": 33, + "left": { + "end": 29, + "name": "x", + "start": 28, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "+", + "right": { + "end": 33, + "raw": "1", + "start": 32, + "type": "Literal", + "type": "Literal", + "value": { + "value": 1.0, + "suffix": "None" + } + }, + "start": 28, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "end": 33, + "start": 21, + "type": "ReturnStatement", + "type": "ReturnStatement" + } + ], + "end": 35, + "start": 17 + }, + "end": 35, + "params": [ + { + "type": "Parameter", + "identifier": { + "end": 15, + "name": "x", + "start": 14, + "type": "Identifier" + }, + "labeled": false + } + ], + "start": 12, + "type": "FunctionExpression" + }, + "memory": [ + 0, + 1 + ], + "__meta": [ + { + "sourceRange": [ + 12, + 35, + 0 + ] + } + ] + }, + "three": { + "type": "Number", + "value": 3.0, + "__meta": [ + { + "sourceRange": [ + 110, + 111, + 0 + ] + }, + { + "sourceRange": [ + 121, + 122, + 0 + ] + } + ] + }, + "two": { + "type": "Number", + "value": 2.0, + "__meta": [ + { + "sourceRange": [ + 95, + 96, + 0 + ] + }, + { + "sourceRange": [ + 32, + 33, + 0 + ] + } + ] + } } diff --git a/src/wasm-lib/kcl/tests/kw_fn_with_defaults/program_memory.snap b/src/wasm-lib/kcl/tests/kw_fn_with_defaults/program_memory.snap index b49b87cdd..0f256522f 100644 --- a/src/wasm-lib/kcl/tests/kw_fn_with_defaults/program_memory.snap +++ b/src/wasm-lib/kcl/tests/kw_fn_with_defaults/program_memory.snap @@ -1,177 +1,143 @@ --- source: kcl/src/simulation_tests.rs -description: Program memory after executing kw_fn_with_defaults.kcl +description: Variables in memory after executing kw_fn_with_defaults.kcl --- { - "environments": [ - { - "bindings": { - "HALF_TURN": { - "type": "Number", - "value": 180.0, - "__meta": [] - }, - "QUARTER_TURN": { - "type": "Number", - "value": 90.0, - "__meta": [] - }, - "THREE_QUARTER_TURN": { - "type": "Number", - "value": 270.0, - "__meta": [] - }, - "ZERO": { - "type": "Number", - "value": 0.0, - "__meta": [] - }, - "increment": { - "type": "Function", - "expression": { - "body": { - "body": [ - { - "argument": { - "end": 43, - "left": { - "end": 38, - "name": "x", - "start": 37, - "type": "Identifier", - "type": "Identifier" - }, - "operator": "+", - "right": { - "end": 43, - "name": "by", - "start": 41, - "type": "Identifier", - "type": "Identifier" - }, - "start": 37, - "type": "BinaryExpression", - "type": "BinaryExpression" - }, - "end": 43, - "start": 30, - "type": "ReturnStatement", - "type": "ReturnStatement" - } - ], - "end": 45, - "start": 26 - }, - "end": 45, - "params": [ - { - "type": "Parameter", - "identifier": { - "end": 15, - "name": "x", - "start": 14, - "type": "Identifier" - }, - "labeled": false + "HALF_TURN": { + "type": "Number", + "value": 180.0, + "__meta": [] + }, + "QUARTER_TURN": { + "type": "Number", + "value": 90.0, + "__meta": [] + }, + "THREE_QUARTER_TURN": { + "type": "Number", + "value": 270.0, + "__meta": [] + }, + "ZERO": { + "type": "Number", + "value": 0.0, + "__meta": [] + }, + "increment": { + "type": "Function", + "expression": { + "body": { + "body": [ + { + "argument": { + "end": 43, + "left": { + "end": 38, + "name": "x", + "start": 37, + "type": "Identifier", + "type": "Identifier" }, - { - "type": "Parameter", - "identifier": { - "end": 19, - "name": "by", - "start": 17, - "type": "Identifier" - }, - "default_value": { - "type": "Literal", - "type": "Literal", - "value": { - "value": 1.0, - "suffix": "None" - }, - "raw": "1" - } - } - ], - "start": 12, - "type": "FunctionExpression" - }, - "memory": [ - 0, - 1 - ], - "__meta": [ - { - "sourceRange": [ - 12, - 45, - 0 - ] - } - ] - }, - "twentyOne": { - "type": "Number", - "value": 21.0, - "__meta": [ - { - "sourceRange": [ - 88, - 89, - 0 - ] + "operator": "+", + "right": { + "end": 43, + "name": "by", + "start": 41, + "type": "Identifier", + "type": "Identifier" + }, + "start": 37, + "type": "BinaryExpression", + "type": "BinaryExpression" }, - { - "sourceRange": [ - 96, - 98, - 0 - ] - } - ] - }, - "two": { - "type": "Number", - "value": 2.0, - "__meta": [ - { - "sourceRange": [ - 63, - 64, - 0 - ] - } - ] - } + "end": 43, + "start": 30, + "type": "ReturnStatement", + "type": "ReturnStatement" + } + ], + "end": 45, + "start": 26 }, - "snapshots": [ + "end": 45, + "params": [ { - "parent_snapshot": null, - "data": { - "increment": { - "type": "Tombstone", - "value": null, - "__meta": [] + "type": "Parameter", + "identifier": { + "end": 15, + "name": "x", + "start": 14, + "type": "Identifier" + }, + "labeled": false + }, + { + "type": "Parameter", + "identifier": { + "end": 19, + "name": "by", + "start": 17, + "type": "Identifier" + }, + "default_value": { + "type": "Literal", + "type": "Literal", + "value": { + "value": 1.0, + "suffix": "None" }, - "twentyOne": { - "type": "Tombstone", - "value": null, - "__meta": [] - }, - "two": { - "type": "Tombstone", - "value": null, - "__meta": [] - } + "raw": "1" } } ], - "parent": null - } - ], - "currentEnv": [ - 0, - 0 - ], - "callStack": [] + "start": 12, + "type": "FunctionExpression" + }, + "memory": [ + 0, + 1 + ], + "__meta": [ + { + "sourceRange": [ + 12, + 45, + 0 + ] + } + ] + }, + "twentyOne": { + "type": "Number", + "value": 21.0, + "__meta": [ + { + "sourceRange": [ + 88, + 89, + 0 + ] + }, + { + "sourceRange": [ + 96, + 98, + 0 + ] + } + ] + }, + "two": { + "type": "Number", + "value": 2.0, + "__meta": [ + { + "sourceRange": [ + 63, + 64, + 0 + ] + } + ] + } } diff --git a/src/wasm-lib/kcl/tests/linear_pattern3d_a_pattern/program_memory.snap b/src/wasm-lib/kcl/tests/linear_pattern3d_a_pattern/program_memory.snap index 64d98ba0a..28f34e761 100644 --- a/src/wasm-lib/kcl/tests/linear_pattern3d_a_pattern/program_memory.snap +++ b/src/wasm-lib/kcl/tests/linear_pattern3d_a_pattern/program_memory.snap @@ -1,12308 +1,12294 @@ --- source: kcl/src/simulation_tests.rs -description: Program memory after executing linear_pattern3d_a_pattern.kcl -snapshot_kind: text +description: Variables in memory after executing linear_pattern3d_a_pattern.kcl --- { - "environments": [ - { - "bindings": { - "HALF_TURN": { - "type": "Number", - "value": 180.0, + "HALF_TURN": { + "type": "Number", + "value": 180.0, + "__meta": [] + }, + "QUARTER_TURN": { + "type": "Number", + "value": 90.0, + "__meta": [] + }, + "THREE_QUARTER_TURN": { + "type": "Number", + "value": 270.0, + "__meta": [] + }, + "ZERO": { + "type": "Number", + "value": 0.0, + "__meta": [] + }, + "exampleSketch": { + "type": "Solid", + "value": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, "__meta": [] }, - "QUARTER_TURN": { - "type": "Number", - "value": 90.0, - "__meta": [] - }, - "THREE_QUARTER_TURN": { - "type": "Number", - "value": 270.0, - "__meta": [] - }, - "ZERO": { - "type": "Number", - "value": 0.0, - "__meta": [] - }, - "exampleSketch": { - "type": "Solid", - "value": { - "type": "Solid", + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + } + }, + "pattn1": { + "type": "Solids", + "value": [ + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { "id": "[uuid]", "sourceRange": [ 72, 90, 0 - ], - "tag": null, - "type": "extrudePlane" + ] }, - { - "faceId": "[uuid]", + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { "id": "[uuid]", "sourceRange": [ 96, 114, 0 - ], - "tag": null, - "type": "extrudePlane" + ] }, - { - "faceId": "[uuid]", + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { "id": "[uuid]", "sourceRange": [ 120, 139, 0 - ], - "tag": null, - "type": "extrudePlane" + ] }, - { - "faceId": "[uuid]", + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { "id": "[uuid]", "sourceRange": [ 145, 153, 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } + ] + }, + "from": [ + 3.0, + -1.0 ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", "units": { "type": "Mm" }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 ] } - }, - "pattn1": { - "type": "Solids", - "value": [ - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - } - ] - }, - "pattn2": { - "type": "Solids", - "value": [ - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72, - 90, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 96, - 114, - 0 - ] - }, - "from": [ - 0.0, - 2.0 - ], - "tag": null, - "to": [ - 3.0, - 3.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 139, - 0 - ] - }, - "from": [ - 3.0, - 3.0 - ], - "tag": null, - "to": [ - 3.0, - -1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 145, - 153, - 0 - ] - }, - "from": [ - 3.0, - -1.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41, - 66, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 41, - 66, - 0 - ] - } - ] - } - ] - } + ] }, - "snapshots": [], - "parent": null - } - ], - "currentEnv": [ - 0, - 0 - ], - "callStack": [] + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + } + ] + }, + "pattn2": { + "type": "Solids", + "value": [ + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72, + 90, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 96, + 114, + 0 + ] + }, + "from": [ + 0.0, + 2.0 + ], + "tag": null, + "to": [ + 3.0, + 3.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 120, + 139, + 0 + ] + }, + "from": [ + 3.0, + 3.0 + ], + "tag": null, + "to": [ + 3.0, + -1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 145, + 153, + 0 + ] + }, + "from": [ + 3.0, + -1.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41, + 66, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 41, + 66, + 0 + ] + } + ] + } + ] + } } diff --git a/src/wasm-lib/kcl/tests/mike_stress_test/program_memory.snap b/src/wasm-lib/kcl/tests/mike_stress_test/program_memory.snap index 1207fbafe..0075bfb43 100644 --- a/src/wasm-lib/kcl/tests/mike_stress_test/program_memory.snap +++ b/src/wasm-lib/kcl/tests/mike_stress_test/program_memory.snap @@ -1,31165 +1,31151 @@ --- source: kcl/src/simulation_tests.rs -description: Program memory after executing mike_stress_test.kcl -snapshot_kind: text +description: Variables in memory after executing mike_stress_test.kcl --- { - "environments": [ - { - "bindings": { - "HALF_TURN": { - "type": "Number", - "value": 180.0, - "__meta": [] + "HALF_TURN": { + "type": "Number", + "value": 180.0, + "__meta": [] + }, + "QUARTER_TURN": { + "type": "Number", + "value": 90.0, + "__meta": [] + }, + "THREE_QUARTER_TURN": { + "type": "Number", + "value": 270.0, + "__meta": [] + }, + "ZERO": { + "type": "Number", + "value": 0.0, + "__meta": [] + }, + "part001": { + "type": "Solid", + "value": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 70, + 145, + 0 + ], + "tag": null, + "type": "extrudePlane" }, - "QUARTER_TURN": { - "type": "Number", - "value": 90.0, - "__meta": [] + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 151, + 225, + 0 + ], + "tag": null, + "type": "extrudePlane" }, - "THREE_QUARTER_TURN": { - "type": "Number", - "value": 270.0, - "__meta": [] + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 231, + 305, + 0 + ], + "tag": null, + "type": "extrudePlane" }, - "ZERO": { - "type": "Number", - "value": 0.0, - "__meta": [] + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 311, + 387, + 0 + ], + "tag": null, + "type": "extrudePlane" }, - "part001": { - "type": "Solid", - "value": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 70, - 145, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 151, - 225, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 231, - 305, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 311, - 387, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 393, - 468, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 474, - 549, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 555, - 630, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 636, - 713, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 719, - 794, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 800, - 877, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 883, - 957, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 963, - 1037, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1043, - 1095, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1101, - 1178, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1184, - 1260, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1266, - 1342, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1348, - 1399, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1405, - 1481, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1487, - 1538, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1544, - 1619, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1625, - 1677, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1683, - 1757, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1763, - 1815, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1821, - 1897, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1903, - 1977, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1983, - 2058, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2064, - 2141, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2147, - 2223, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2229, - 2304, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2310, - 2385, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2391, - 2443, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2449, - 2523, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2529, - 2604, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2610, - 2687, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2693, - 2768, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2774, - 2849, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2855, - 2907, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2913, - 2989, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 2995, - 3069, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 3075, - 3149, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 3155, - 3207, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 3213, - 3287, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 3293, - 3345, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 3351, - 3425, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 3431, - 3505, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 3511, - 3586, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 3592, - 3669, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 3675, - 3751, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 3757, - 3832, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 3838, - 3914, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 3920, - 3994, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 4000, - 4074, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 4080, - 4154, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 4160, - 4236, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 4242, - 4317, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 4323, - 4398, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 4404, - 4479, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 4485, - 4562, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 4568, - 4643, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 4649, - 4726, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 4732, - 4806, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 4812, - 4886, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 4892, - 4944, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 4950, - 5027, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 5033, - 5109, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 5115, - 5191, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 5197, - 5248, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 5254, - 5330, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 5336, - 5387, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 5393, - 5468, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 5474, - 5526, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 5532, - 5606, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 5612, - 5664, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 5670, - 5746, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 5752, - 5826, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 5832, - 5906, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 5912, - 5986, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 5992, - 6066, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 6072, - 6124, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 6130, - 6206, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 6212, - 6287, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 6293, - 6369, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 6375, - 6449, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 6455, - 6529, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 6535, - 6609, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 6615, - 6689, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 6695, - 6769, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 6775, - 6851, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 6857, - 6909, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 6915, - 6990, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 6996, - 7070, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 7076, - 7150, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 7156, - 7230, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 7236, - 7310, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 7316, - 7391, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 7397, - 7472, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 7478, - 7554, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 7560, - 7636, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 7642, - 7718, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 7724, - 7776, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 7782, - 7857, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 7863, - 7937, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 7943, - 8017, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 8023, - 8099, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 8105, - 8180, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 8186, - 8261, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 8267, - 8342, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 8348, - 8425, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 8431, - 8506, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 8512, - 8589, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 8595, - 8669, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 8675, - 8749, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 8755, - 8807, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 8813, - 8890, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 8896, - 8972, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 8978, - 9054, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 9060, - 9111, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 9117, - 9193, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 9199, - 9250, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 9256, - 9331, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 9337, - 9389, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 9395, - 9469, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 9475, - 9527, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 9533, - 9609, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 9615, - 9689, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 9695, - 9770, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 9776, - 9853, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 9859, - 9935, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 9941, - 10016, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 10022, - 10097, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 10103, - 10155, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 10161, - 10235, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 10241, - 10316, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 10322, - 10399, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 10405, - 10480, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 10486, - 10561, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 10567, - 10619, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 10625, - 10701, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 10707, - 10781, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 10787, - 10861, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 10867, - 10919, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 10925, - 10999, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 11005, - 11057, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 11063, - 11137, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 11143, - 11217, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 11223, - 11298, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 11304, - 11381, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 11387, - 11463, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 11469, - 11544, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 11550, - 11626, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 11632, - 11706, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 11712, - 11786, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 11792, - 11866, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 11872, - 11948, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 11954, - 12029, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 12035, - 12110, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 12116, - 12191, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 12197, - 12274, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 12280, - 12355, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 12361, - 12438, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 12444, - 12518, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 12524, - 12598, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 12604, - 12656, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 12662, - 12739, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 12745, - 12821, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 12827, - 12903, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 12909, - 12960, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 12966, - 13042, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 13048, - 13099, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 13105, - 13180, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 13186, - 13238, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 13244, - 13318, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 13324, - 13376, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 13382, - 13457, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 13463, - 13537, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 13543, - 13617, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 13623, - 13699, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 13705, - 13780, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 13786, - 13861, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 13867, - 13942, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 13948, - 14025, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 14031, - 14106, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 14112, - 14189, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 14195, - 14269, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 14275, - 14349, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 14355, - 14407, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 14413, - 14490, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 14496, - 14572, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 14578, - 14654, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 14660, - 14711, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 14717, - 14793, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 14799, - 14850, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 14856, - 14931, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 14937, - 14989, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 14995, - 15069, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 15075, - 15127, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 15133, - 15209, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 15215, - 15289, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 15295, - 15370, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 15376, - 15453, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 15459, - 15534, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 15540, - 15614, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 15620, - 15694, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 15700, - 15776, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 15782, - 15857, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 15863, - 15938, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 15944, - 16019, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 16025, - 16102, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 16108, - 16183, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 16189, - 16266, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 16272, - 16346, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 16352, - 16426, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 16432, - 16484, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 16490, - 16567, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 16573, - 16649, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 16655, - 16731, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 16737, - 16788, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 16794, - 16870, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 16876, - 16927, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 16933, - 17008, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 17014, - 17066, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 17072, - 17146, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 17152, - 17204, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 17210, - 17286, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 17292, - 17366, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 17372, - 17447, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 17453, - 17530, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 17536, - 17612, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 17618, - 17693, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 17699, - 17774, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 17780, - 17832, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 17838, - 17912, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 17918, - 17993, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 17999, - 18076, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 18082, - 18157, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 18163, - 18238, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 18244, - 18296, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 18302, - 18378, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 18384, - 18458, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 18464, - 18538, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 18544, - 18596, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 18602, - 18676, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 18682, - 18734, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 18740, - 18814, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 18820, - 18894, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 18900, - 18975, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 18981, - 19058, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 19064, - 19140, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 19146, - 19221, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 19227, - 19303, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 19309, - 19383, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 19389, - 19463, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 19469, - 19543, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 19549, - 19625, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 19631, - 19706, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 19712, - 19787, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 19793, - 19868, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 19874, - 19951, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 19957, - 20032, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 20038, - 20115, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 20121, - 20195, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 20201, - 20275, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 20281, - 20333, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 20339, - 20416, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 20422, - 20498, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 20504, - 20580, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 20586, - 20637, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 20643, - 20719, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 20725, - 20776, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 20782, - 20857, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 20863, - 20915, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 20921, - 20995, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 21001, - 21053, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 21059, - 21135, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 21141, - 21215, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 21221, - 21295, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 21301, - 21375, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 21381, - 21455, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 21461, - 21513, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 21519, - 21595, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 21601, - 21676, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 21682, - 21758, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 21764, - 21838, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 21844, - 21918, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 21924, - 21998, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 22004, - 22078, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 22084, - 22158, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 22164, - 22240, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 22246, - 22298, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 22304, - 22379, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 22385, - 22459, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 22465, - 22539, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 22545, - 22619, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 22625, - 22699, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 22705, - 22780, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 22786, - 22861, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 22867, - 22943, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 22949, - 23025, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 23031, - 23107, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 23113, - 23165, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 23171, - 23246, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 23252, - 23326, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 23332, - 23406, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 23412, - 23488, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 23494, - 23569, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 23575, - 23650, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 23656, - 23731, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 23737, - 23814, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 23820, - 23895, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 23901, - 23978, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 23984, - 24058, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 24064, - 24138, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 24144, - 24196, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 24202, - 24279, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 24285, - 24361, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 24367, - 24443, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 24449, - 24500, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 24506, - 24582, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 24588, - 24639, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 24645, - 24720, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 24726, - 24778, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 24784, - 24858, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 24864, - 24916, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 24922, - 24998, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 25004, - 25078, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 25084, - 25159, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 25165, - 25242, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 25248, - 25324, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 25330, - 25405, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 25411, - 25486, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 25492, - 25544, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 25550, - 25624, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 25630, - 25705, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 25711, - 25788, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 25794, - 25869, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 25875, - 25950, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 25956, - 26008, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 26014, - 26090, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 26096, - 26170, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 26176, - 26250, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 26256, - 26308, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 26314, - 26388, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 26394, - 26446, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 26452, - 26526, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 26532, - 26606, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 26612, - 26687, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 26693, - 26770, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 26776, - 26852, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 26858, - 26933, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 26939, - 27015, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 27021, - 27095, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 27101, - 27175, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 27181, - 27255, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 27261, - 27337, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 27343, - 27418, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 27424, - 27499, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 27505, - 27580, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 27586, - 27663, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 27669, - 27744, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 27750, - 27827, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 27833, - 27907, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 27913, - 27987, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 27993, - 28045, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 28051, - 28128, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 28134, - 28210, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 28216, - 28292, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 28298, - 28349, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 28355, - 28431, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 28437, - 28488, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 28494, - 28569, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 28575, - 28627, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 28633, - 28707, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 28713, - 28765, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 28771, - 28846, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 28852, - 28926, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 28932, - 29006, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 29012, - 29088, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 29094, - 29169, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 29175, - 29250, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 29256, - 29331, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 29337, - 29414, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 29420, - 29495, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 29501, - 29578, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 29584, - 29658, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 29664, - 29738, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 29744, - 29796, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 29802, - 29879, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 29885, - 29961, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 29967, - 30043, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 30049, - 30100, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 30106, - 30182, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 30188, - 30239, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 30245, - 30320, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 30326, - 30378, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 30384, - 30458, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 30464, - 30516, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 30522, - 30598, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 30604, - 30678, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 30684, - 30759, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 30765, - 30842, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 30848, - 30924, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 30930, - 31005, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 31011, - 31086, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 31092, - 31144, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 31150, - 31224, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 31230, - 31305, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 31311, - 31388, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 31394, - 31469, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 31475, - 31550, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 31556, - 31608, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 31614, - 31690, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 31696, - 31770, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 31776, - 31850, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 31856, - 31908, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 31914, - 31988, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 31994, - 32046, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 32052, - 32126, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 32132, - 32206, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 32212, - 32287, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 32293, - 32370, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 32376, - 32452, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 32458, - 32533, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 32539, - 32615, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 32621, - 32695, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 32701, - 32775, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 32781, - 32855, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 32861, - 32937, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 32943, - 33018, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 33024, - 33099, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 33105, - 33180, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 33186, - 33263, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 33269, - 33344, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 33350, - 33427, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 33433, - 33507, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 33513, - 33587, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 33593, - 33645, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 33651, - 33728, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 33734, - 33810, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 33816, - 33892, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 33898, - 33949, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 33955, - 34031, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 34037, - 34088, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 34094, - 34169, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 34175, - 34227, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 34233, - 34307, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 34313, - 34389, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 34395, - 34471, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 34477, - 34529, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 34535, - 34611, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 34617, - 34691, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 34697, - 34771, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 34777, - 34851, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 34857, - 34931, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 34937, - 34989, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 34995, - 35071, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 35077, - 35152, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 35158, - 35234, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 35240, - 35314, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 35320, - 35394, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 35400, - 35474, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 35480, - 35554, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 35560, - 35634, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 35640, - 35716, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 35722, - 35774, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 35780, - 35855, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 35861, - 35935, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 35941, - 36015, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 36021, - 36095, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 36101, - 36175, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 36181, - 36256, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 36262, - 36337, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 36343, - 36419, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 36425, - 36501, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 36507, - 36583, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 36589, - 36641, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 36647, - 36721, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 36727, - 36802, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 36808, - 36882, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 36888, - 36940, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 36946, - 37022, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 37028, - 37103, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 37109, - 37185, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 37191, - 37268, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 37274, - 37348, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 37354, - 37406, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 37412, - 37486, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 37492, - 37570, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 37576, - 37652, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 37658, - 37709, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 37715, - 37789, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 37795, - 37870, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 37876, - 37951, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 37957, - 38031, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 38037, - 38089, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 38095, - 38170, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 38176, - 38250, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 38256, - 38330, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 38336, - 38411, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 38417, - 38493, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 38499, - 38573, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 38579, - 38654, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 38660, - 38734, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 38740, - 38814, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 38820, - 38896, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 38902, - 38977, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 38983, - 39058, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 39064, - 39139, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 39145, - 39222, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 39228, - 39303, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 39309, - 39386, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 39392, - 39466, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 39472, - 39546, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 39552, - 39604, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 39610, - 39687, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 39693, - 39769, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 39775, - 39851, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 39857, - 39908, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 39914, - 39990, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 39996, - 40047, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 40053, - 40128, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 40134, - 40186, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 40192, - 40266, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 40272, - 40324, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 40330, - 40406, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 40412, - 40486, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 40492, - 40567, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 40573, - 40650, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 40656, - 40732, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 40738, - 40813, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 40819, - 40894, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 40900, - 40952, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 40958, - 41032, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 41038, - 41113, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 41119, - 41196, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 41202, - 41277, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 41283, - 41358, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 41364, - 41416, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 41422, - 41498, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 41504, - 41578, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 41584, - 41658, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 41664, - 41716, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 41722, - 41796, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 41802, - 41854, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 41860, - 41934, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 41940, - 42014, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 42020, - 42095, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 42101, - 42178, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 42184, - 42260, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 42266, - 42341, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 42347, - 42423, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 42429, - 42503, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 42509, - 42583, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 42589, - 42663, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 42669, - 42745, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 42751, - 42826, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 42832, - 42907, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 42913, - 42988, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 42994, - 43071, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 43077, - 43152, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 43158, - 43235, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 43241, - 43315, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 43321, - 43395, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 43401, - 43453, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 43459, - 43536, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 43542, - 43618, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 43624, - 43700, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 43706, - 43757, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 43763, - 43839, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 43845, - 43896, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 43902, - 43977, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 43983, - 44035, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 44041, - 44115, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 44121, - 44173, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 44179, - 44255, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 44261, - 44335, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 44341, - 44415, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 44421, - 44495, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 44501, - 44575, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 44581, - 44633, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 44639, - 44715, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 44721, - 44796, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 44802, - 44878, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 44884, - 44958, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 44964, - 45038, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 45044, - 45118, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 45124, - 45198, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 45204, - 45278, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 45284, - 45360, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 45366, - 45418, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 45424, - 45499, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 45505, - 45579, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 45585, - 45659, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 45665, - 45739, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 45745, - 45819, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 45825, - 45900, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 45906, - 45981, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 45987, - 46063, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 46069, - 46145, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 46151, - 46227, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 46233, - 46285, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 46291, - 46366, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 46372, - 46446, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 46452, - 46526, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 46532, - 46608, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 46614, - 46689, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 46695, - 46770, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 46776, - 46851, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 46857, - 46934, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 46940, - 47015, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 47021, - 47098, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 47104, - 47178, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 47184, - 47258, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 47264, - 47316, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 47322, - 47399, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 47405, - 47481, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 47487, - 47563, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 47569, - 47620, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 47626, - 47702, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 47708, - 47759, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 47765, - 47840, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 47846, - 47898, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 47904, - 47978, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 47984, - 48036, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 48042, - 48118, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 48124, - 48198, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 48204, - 48279, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 48285, - 48362, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 48368, - 48444, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 48450, - 48525, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 48531, - 48606, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 48612, - 48664, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 48670, - 48744, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 48750, - 48825, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 48831, - 48908, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 48914, - 48989, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 48995, - 49070, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 49076, - 49128, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 49134, - 49210, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 49216, - 49290, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 49296, - 49370, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 49376, - 49428, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 49434, - 49508, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 49514, - 49566, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 49572, - 49646, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 49652, - 49726, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 49732, - 49807, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 49813, - 49890, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 49896, - 49972, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 49978, - 50053, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 50059, - 50135, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 50141, - 50215, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 50221, - 50295, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 50301, - 50375, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 50381, - 50457, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 50463, - 50538, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 50544, - 50619, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 50625, - 50700, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 50706, - 50783, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 50789, - 50864, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 50870, - 50947, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 50953, - 51027, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 51033, - 51107, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 51113, - 51165, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 51171, - 51248, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 51254, - 51330, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 51336, - 51412, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 51418, - 51469, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 51475, - 51551, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 51557, - 51608, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 51614, - 51689, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 51695, - 51747, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 51753, - 51827, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 51833, - 51885, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 51891, - 51966, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 51972, - 52046, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 52052, - 52126, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 52132, - 52208, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 52214, - 52289, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 52295, - 52370, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 52376, - 52451, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 52457, - 52534, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 52540, - 52615, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 52621, - 52698, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 52704, - 52778, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 52784, - 52858, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 52864, - 52916, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 52922, - 52999, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 53005, - 53081, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 53087, - 53163, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 53169, - 53220, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 53226, - 53302, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 53308, - 53359, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 53365, - 53440, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 53446, - 53498, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 53504, - 53578, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 53584, - 53636, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 53642, - 53718, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 53724, - 53798, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 53804, - 53879, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 53885, - 53962, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 53968, - 54043, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 54049, - 54123, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 54129, - 54203, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 54209, - 54285, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 54291, - 54366, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 54372, - 54447, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 54453, - 54528, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 54534, - 54611, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 54617, - 54692, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 54698, - 54775, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 54781, - 54855, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 54861, - 54935, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 54941, - 54993, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 54999, - 55076, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 55082, - 55158, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 55164, - 55240, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 55246, - 55297, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 55303, - 55379, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 55385, - 55436, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 55442, - 55517, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 55523, - 55575, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 55581, - 55655, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 55661, - 55713, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 55719, - 55795, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 55801, - 55875, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 55881, - 55956, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 55962, - 56039, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 56045, - 56121, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 56127, - 56202, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 56208, - 56283, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 56289, - 56341, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 56347, - 56421, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 56427, - 56502, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 56508, - 56585, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 56591, - 56666, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 56672, - 56747, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 56753, - 56805, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 56811, - 56887, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 56893, - 56967, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 56973, - 57047, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 57053, - 57105, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 57111, - 57185, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 57191, - 57243, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 57249, - 57323, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 57329, - 57403, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 57409, - 57484, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 57490, - 57567, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 57573, - 57649, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 57655, - 57730, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 57736, - 57812, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 57818, - 57892, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 57898, - 57972, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 57978, - 58052, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 58058, - 58134, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 58140, - 58215, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 58221, - 58296, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 58302, - 58377, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 58383, - 58460, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 58466, - 58541, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 58547, - 58624, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 58630, - 58704, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 58710, - 58784, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 58790, - 58842, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 58848, - 58925, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 58931, - 59007, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 59013, - 59089, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 59095, - 59146, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 59152, - 59228, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 59234, - 59285, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 59291, - 59366, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 59372, - 59424, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 59430, - 59504, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 59510, - 59562, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 59568, - 59644, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 59650, - 59724, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 59730, - 59804, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 59810, - 59884, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 59890, - 59964, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 59970, - 60022, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 60028, - 60104, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 60110, - 60185, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 60191, - 60267, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 60273, - 60347, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 60353, - 60427, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 60433, - 60507, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 60513, - 60587, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 60593, - 60667, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 60673, - 60749, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 60755, - 60807, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 60813, - 60888, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 60894, - 60968, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 60974, - 61048, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 61054, - 61128, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 61134, - 61208, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 61214, - 61289, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 61295, - 61370, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 61376, - 61452, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 61458, - 61534, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 61540, - 61616, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 61622, - 61674, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 61680, - 61755, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 61761, - 61835, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 61841, - 61915, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 61921, - 61997, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 62003, - 62078, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 62084, - 62159, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 62165, - 62240, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 62246, - 62323, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 62329, - 62404, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 62410, - 62487, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 62493, - 62567, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 62573, - 62647, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 62653, - 62705, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 62711, - 62788, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 62794, - 62870, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 62876, - 62952, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 62958, - 63009, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 63015, - 63091, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 63097, - 63148, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 63154, - 63229, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 63235, - 63287, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 63293, - 63367, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 63373, - 63425, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 63431, - 63507, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 63513, - 63587, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 63593, - 63668, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 63674, - 63751, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 63757, - 63833, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 63839, - 63914, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 63920, - 63995, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 64001, - 64053, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 64059, - 64133, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 64139, - 64214, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 64220, - 64297, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 64303, - 64378, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 64384, - 64459, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 64465, - 64517, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 64523, - 64599, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 64605, - 64679, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 64685, - 64759, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 64765, - 64817, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 64823, - 64897, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 64903, - 64955, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 64961, - 65035, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 65041, - 65115, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 65121, - 65196, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 65202, - 65279, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 65285, - 65361, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 65367, - 65442, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 65448, - 65524, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 65530, - 65604, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 65610, - 65684, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 65690, - 65764, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 65770, - 65846, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 65852, - 65927, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 65933, - 66008, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 66014, - 66089, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 66095, - 66172, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 66178, - 66253, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 66259, - 66336, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 66342, - 66416, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 66422, - 66496, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 66502, - 66554, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 66560, - 66637, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 66643, - 66719, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 66725, - 66801, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 66807, - 66858, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 66864, - 66940, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 66946, - 66997, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 67003, - 67078, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 67084, - 67136, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 67142, - 67216, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 67222, - 67274, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 67280, - 67355, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 67361, - 67435, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 67441, - 67515, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 67521, - 67597, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 67603, - 67678, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 67684, - 67759, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 67765, - 67840, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 67846, - 67923, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 67929, - 68004, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 68010, - 68087, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 68093, - 68167, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 68173, - 68247, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 68253, - 68305, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 68311, - 68388, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 68394, - 68470, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 68476, - 68552, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 68558, - 68609, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 68615, - 68691, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 68697, - 68748, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 68754, - 68829, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 68835, - 68887, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 68893, - 68967, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 68973, - 69025, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 69031, - 69107, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 69113, - 69187, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 69193, - 69268, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 69274, - 69351, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 69357, - 69433, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 69439, - 69514, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 69520, - 69595, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 69601, - 69653, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 69659, - 69733, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 69739, - 69814, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 69820, - 69897, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 69903, - 69978, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 69984, - 70059, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 70065, - 70117, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 70123, - 70199, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 70205, - 70279, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 70285, - 70359, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 70365, - 70417, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 70423, - 70497, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 70503, - 70555, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 70561, - 70635, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 70641, - 70715, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 70721, - 70796, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 70802, - 70879, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 70885, - 70961, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 70967, - 71042, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 71048, - 71124, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 71130, - 71204, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 71210, - 71284, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 71290, - 71364, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 71370, - 71446, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 71452, - 71527, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 71533, - 71608, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 71614, - 71689, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 71695, - 71772, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 71778, - 71853, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 71859, - 71936, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 71942, - 72016, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72022, - 72096, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72102, - 72154, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72160, - 72237, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72243, - 72319, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72325, - 72401, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72407, - 72458, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72464, - 72540, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72546, - 72597, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72603, - 72678, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72684, - 72736, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72742, - 72816, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72822, - 72898, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72904, - 72980, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 72986, - 73038, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 73044, - 73120, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 73126, - 73200, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 73206, - 73280, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 73286, - 73360, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 73366, - 73440, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 73446, - 73498, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 73504, - 73580, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 73586, - 73661, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 73667, - 73743, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 73749, - 73823, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 73829, - 73903, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 73909, - 73983, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 73989, - 74063, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 74069, - 74143, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 74149, - 74225, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 74231, - 74283, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 74289, - 74364, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 74370, - 74444, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 74450, - 74524, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 74530, - 74604, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 74610, - 74684, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 74690, - 74765, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 74771, - 74846, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 74852, - 74928, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 74934, - 75010, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 75016, - 75092, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 75098, - 75150, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 75156, - 75230, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 75236, - 75311, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 75317, - 75391, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 75397, - 75449, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 75455, - 75531, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 75537, - 75612, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 75618, - 75694, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 75700, - 75777, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 75783, - 75857, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 75863, - 75915, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 75921, - 75995, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 76001, - 76079, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 76085, - 76161, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 76167, - 76218, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 76224, - 76298, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 76304, - 76379, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 76385, - 76460, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 76466, - 76540, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 76546, - 76598, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 76604, - 76679, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 76685, - 76759, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 76765, - 76839, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 76845, - 76920, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 76926, - 77002, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 77008, - 77082, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 77088, - 77096, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 393, + 468, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 474, + 549, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 555, + 630, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 636, + 713, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 719, + 794, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 800, + 877, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 883, + 957, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 963, + 1037, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1043, + 1095, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1101, + 1178, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1184, + 1260, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1266, + 1342, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1348, + 1399, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1405, + 1481, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1487, + 1538, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1544, + 1619, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1625, + 1677, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1683, + 1757, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1763, + 1815, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1821, + 1897, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1903, + 1977, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1983, + 2058, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2064, + 2141, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2147, + 2223, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2229, + 2304, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2310, + 2385, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2391, + 2443, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2449, + 2523, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2529, + 2604, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2610, + 2687, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2693, + 2768, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2774, + 2849, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2855, + 2907, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2913, + 2989, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 2995, + 3069, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 3075, + 3149, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 3155, + 3207, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 3213, + 3287, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 3293, + 3345, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 3351, + 3425, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 3431, + 3505, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 3511, + 3586, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 3592, + 3669, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 3675, + 3751, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 3757, + 3832, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 3838, + 3914, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 3920, + 3994, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 4000, + 4074, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 4080, + 4154, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 4160, + 4236, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 4242, + 4317, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 4323, + 4398, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 4404, + 4479, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 4485, + 4562, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 4568, + 4643, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 4649, + 4726, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 4732, + 4806, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 4812, + 4886, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 4892, + 4944, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 4950, + 5027, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5033, + 5109, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5115, + 5191, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5197, + 5248, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5254, + 5330, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5336, + 5387, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5393, + 5468, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5474, + 5526, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5532, + 5606, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5612, + 5664, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5670, + 5746, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5752, + 5826, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5832, + 5906, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5912, + 5986, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 5992, + 6066, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 6072, + 6124, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 6130, + 6206, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 6212, + 6287, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 6293, + 6369, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 6375, + 6449, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 6455, + 6529, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 6535, + 6609, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 6615, + 6689, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 6695, + 6769, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 6775, + 6851, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 6857, + 6909, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 6915, + 6990, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 6996, + 7070, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 7076, + 7150, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 7156, + 7230, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 7236, + 7310, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 7316, + 7391, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 7397, + 7472, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 7478, + 7554, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 7560, + 7636, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 7642, + 7718, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 7724, + 7776, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 7782, + 7857, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 7863, + 7937, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 7943, + 8017, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 8023, + 8099, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 8105, + 8180, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 8186, + 8261, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 8267, + 8342, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 8348, + 8425, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 8431, + 8506, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 8512, + 8589, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 8595, + 8669, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 8675, + 8749, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 8755, + 8807, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 8813, + 8890, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 8896, + 8972, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 8978, + 9054, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 9060, + 9111, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 9117, + 9193, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 9199, + 9250, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 9256, + 9331, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 9337, + 9389, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 9395, + 9469, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 9475, + 9527, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 9533, + 9609, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 9615, + 9689, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 9695, + 9770, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 9776, + 9853, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 9859, + 9935, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 9941, + 10016, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 10022, + 10097, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 10103, + 10155, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 10161, + 10235, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 10241, + 10316, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 10322, + 10399, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 10405, + 10480, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 10486, + 10561, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 10567, + 10619, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 10625, + 10701, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 10707, + 10781, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 10787, + 10861, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 10867, + 10919, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 10925, + 10999, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 11005, + 11057, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 11063, + 11137, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 11143, + 11217, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 11223, + 11298, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 11304, + 11381, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 11387, + 11463, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 11469, + 11544, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 11550, + 11626, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 11632, + 11706, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 11712, + 11786, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 11792, + 11866, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 11872, + 11948, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 11954, + 12029, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 12035, + 12110, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 12116, + 12191, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 12197, + 12274, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 12280, + 12355, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 12361, + 12438, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 12444, + 12518, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 12524, + 12598, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 12604, + 12656, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 12662, + 12739, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 12745, + 12821, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 12827, + 12903, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 12909, + 12960, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 12966, + 13042, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 13048, + 13099, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 13105, + 13180, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 13186, + 13238, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 13244, + 13318, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 13324, + 13376, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 13382, + 13457, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 13463, + 13537, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 13543, + 13617, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 13623, + 13699, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 13705, + 13780, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 13786, + 13861, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 13867, + 13942, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 13948, + 14025, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 14031, + 14106, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 14112, + 14189, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 14195, + 14269, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 14275, + 14349, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 14355, + 14407, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 14413, + 14490, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 14496, + 14572, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 14578, + 14654, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 14660, + 14711, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 14717, + 14793, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 14799, + 14850, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 14856, + 14931, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 14937, + 14989, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 14995, + 15069, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 15075, + 15127, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 15133, + 15209, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 15215, + 15289, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 15295, + 15370, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 15376, + 15453, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 15459, + 15534, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 15540, + 15614, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 15620, + 15694, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 15700, + 15776, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 15782, + 15857, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 15863, + 15938, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 15944, + 16019, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 16025, + 16102, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 16108, + 16183, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 16189, + 16266, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 16272, + 16346, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 16352, + 16426, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 16432, + 16484, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 16490, + 16567, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 16573, + 16649, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 16655, + 16731, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 16737, + 16788, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 16794, + 16870, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 16876, + 16927, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 16933, + 17008, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 17014, + 17066, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 17072, + 17146, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 17152, + 17204, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 17210, + 17286, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 17292, + 17366, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 17372, + 17447, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 17453, + 17530, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 17536, + 17612, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 17618, + 17693, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 17699, + 17774, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 17780, + 17832, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 17838, + 17912, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 17918, + 17993, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 17999, + 18076, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 18082, + 18157, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 18163, + 18238, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 18244, + 18296, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 18302, + 18378, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 18384, + 18458, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 18464, + 18538, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 18544, + 18596, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 18602, + 18676, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 18682, + 18734, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 18740, + 18814, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 18820, + 18894, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 18900, + 18975, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 18981, + 19058, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 19064, + 19140, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 19146, + 19221, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 19227, + 19303, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 19309, + 19383, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 19389, + 19463, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 19469, + 19543, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 19549, + 19625, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 19631, + 19706, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 19712, + 19787, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 19793, + 19868, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 19874, + 19951, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 19957, + 20032, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 20038, + 20115, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 20121, + 20195, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 20201, + 20275, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 20281, + 20333, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 20339, + 20416, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 20422, + 20498, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 20504, + 20580, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 20586, + 20637, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 20643, + 20719, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 20725, + 20776, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 20782, + 20857, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 20863, + 20915, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 20921, + 20995, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 21001, + 21053, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 21059, + 21135, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 21141, + 21215, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 21221, + 21295, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 21301, + 21375, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 21381, + 21455, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 21461, + 21513, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 21519, + 21595, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 21601, + 21676, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 21682, + 21758, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 21764, + 21838, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 21844, + 21918, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 21924, + 21998, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 22004, + 22078, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 22084, + 22158, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 22164, + 22240, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 22246, + 22298, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 22304, + 22379, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 22385, + 22459, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 22465, + 22539, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 22545, + 22619, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 22625, + 22699, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 22705, + 22780, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 22786, + 22861, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 22867, + 22943, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 22949, + 23025, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 23031, + 23107, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 23113, + 23165, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 23171, + 23246, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 23252, + 23326, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 23332, + 23406, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 23412, + 23488, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 23494, + 23569, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 23575, + 23650, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 23656, + 23731, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 23737, + 23814, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 23820, + 23895, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 23901, + 23978, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 23984, + 24058, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 24064, + 24138, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 24144, + 24196, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 24202, + 24279, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 24285, + 24361, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 24367, + 24443, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 24449, + 24500, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 24506, + 24582, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 24588, + 24639, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 24645, + 24720, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 24726, + 24778, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 24784, + 24858, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 24864, + 24916, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 24922, + 24998, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 25004, + 25078, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 25084, + 25159, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 25165, + 25242, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 25248, + 25324, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 25330, + 25405, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 25411, + 25486, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 25492, + 25544, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 25550, + 25624, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 25630, + 25705, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 25711, + 25788, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 25794, + 25869, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 25875, + 25950, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 25956, + 26008, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 26014, + 26090, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 26096, + 26170, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 26176, + 26250, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 26256, + 26308, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 26314, + 26388, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 26394, + 26446, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 26452, + 26526, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 26532, + 26606, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 26612, + 26687, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 26693, + 26770, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 26776, + 26852, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 26858, + 26933, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 26939, + 27015, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 27021, + 27095, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 27101, + 27175, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 27181, + 27255, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 27261, + 27337, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 27343, + 27418, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 27424, + 27499, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 27505, + 27580, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 27586, + 27663, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 27669, + 27744, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 27750, + 27827, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 27833, + 27907, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 27913, + 27987, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 27993, + 28045, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 28051, + 28128, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 28134, + 28210, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 28216, + 28292, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 28298, + 28349, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 28355, + 28431, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 28437, + 28488, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 28494, + 28569, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 28575, + 28627, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 28633, + 28707, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 28713, + 28765, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 28771, + 28846, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 28852, + 28926, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 28932, + 29006, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 29012, + 29088, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 29094, + 29169, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 29175, + 29250, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 29256, + 29331, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 29337, + 29414, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 29420, + 29495, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 29501, + 29578, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 29584, + 29658, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 29664, + 29738, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 29744, + 29796, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 29802, + 29879, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 29885, + 29961, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 29967, + 30043, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 30049, + 30100, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 30106, + 30182, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 30188, + 30239, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 30245, + 30320, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 30326, + 30378, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 30384, + 30458, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 30464, + 30516, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 30522, + 30598, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 30604, + 30678, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 30684, + 30759, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 30765, + 30842, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 30848, + 30924, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 30930, + 31005, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 31011, + 31086, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 31092, + 31144, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 31150, + 31224, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 31230, + 31305, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 31311, + 31388, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 31394, + 31469, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 31475, + 31550, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 31556, + 31608, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 31614, + 31690, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 31696, + 31770, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 31776, + 31850, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 31856, + 31908, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 31914, + 31988, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 31994, + 32046, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 32052, + 32126, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 32132, + 32206, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 32212, + 32287, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 32293, + 32370, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 32376, + 32452, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 32458, + 32533, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 32539, + 32615, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 32621, + 32695, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 32701, + 32775, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 32781, + 32855, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 32861, + 32937, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 32943, + 33018, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 33024, + 33099, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 33105, + 33180, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 33186, + 33263, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 33269, + 33344, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 33350, + 33427, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 33433, + 33507, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 33513, + 33587, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 33593, + 33645, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 33651, + 33728, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 33734, + 33810, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 33816, + 33892, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 33898, + 33949, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 33955, + 34031, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 34037, + 34088, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 34094, + 34169, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 34175, + 34227, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 34233, + 34307, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 34313, + 34389, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 34395, + 34471, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 34477, + 34529, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 34535, + 34611, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 34617, + 34691, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 34697, + 34771, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 34777, + 34851, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 34857, + 34931, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 34937, + 34989, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 34995, + 35071, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 35077, + 35152, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 35158, + 35234, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 35240, + 35314, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 35320, + 35394, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 35400, + 35474, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 35480, + 35554, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 35560, + 35634, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 35640, + 35716, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 35722, + 35774, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 35780, + 35855, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 35861, + 35935, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 35941, + 36015, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 36021, + 36095, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 36101, + 36175, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 36181, + 36256, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 36262, + 36337, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 36343, + 36419, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 36425, + 36501, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 36507, + 36583, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 36589, + 36641, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 36647, + 36721, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 36727, + 36802, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 36808, + 36882, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 36888, + 36940, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 36946, + 37022, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 37028, + 37103, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 37109, + 37185, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 37191, + 37268, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 37274, + 37348, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 37354, + 37406, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 37412, + 37486, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 37492, + 37570, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 37576, + 37652, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 37658, + 37709, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 37715, + 37789, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 37795, + 37870, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 37876, + 37951, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 37957, + 38031, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 38037, + 38089, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 38095, + 38170, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 38176, + 38250, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 38256, + 38330, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 38336, + 38411, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 38417, + 38493, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 38499, + 38573, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 38579, + 38654, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 38660, + 38734, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 38740, + 38814, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 38820, + 38896, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 38902, + 38977, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 38983, + 39058, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 39064, + 39139, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 39145, + 39222, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 39228, + 39303, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 39309, + 39386, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 39392, + 39466, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 39472, + 39546, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 39552, + 39604, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 39610, + 39687, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 39693, + 39769, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 39775, + 39851, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 39857, + 39908, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 39914, + 39990, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 39996, + 40047, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 40053, + 40128, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 40134, + 40186, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 40192, + 40266, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 40272, + 40324, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 40330, + 40406, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 40412, + 40486, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 40492, + 40567, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 40573, + 40650, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 40656, + 40732, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 40738, + 40813, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 40819, + 40894, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 40900, + 40952, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 40958, + 41032, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 41038, + 41113, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 41119, + 41196, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 41202, + 41277, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 41283, + 41358, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 41364, + 41416, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 41422, + 41498, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 41504, + 41578, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 41584, + 41658, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 41664, + 41716, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 41722, + 41796, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 41802, + 41854, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 41860, + 41934, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 41940, + 42014, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 42020, + 42095, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 42101, + 42178, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 42184, + 42260, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 42266, + 42341, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 42347, + 42423, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 42429, + 42503, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 42509, + 42583, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 42589, + 42663, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 42669, + 42745, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 42751, + 42826, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 42832, + 42907, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 42913, + 42988, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 42994, + 43071, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 43077, + 43152, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 43158, + 43235, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 43241, + 43315, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 43321, + 43395, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 43401, + 43453, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 43459, + 43536, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 43542, + 43618, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 43624, + 43700, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 43706, + 43757, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 43763, + 43839, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 43845, + 43896, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 43902, + 43977, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 43983, + 44035, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 44041, + 44115, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 44121, + 44173, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 44179, + 44255, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 44261, + 44335, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 44341, + 44415, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 44421, + 44495, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 44501, + 44575, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 44581, + 44633, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 44639, + 44715, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 44721, + 44796, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 44802, + 44878, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 44884, + 44958, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 44964, + 45038, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 45044, + 45118, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 45124, + 45198, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 45204, + 45278, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 45284, + 45360, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 45366, + 45418, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 45424, + 45499, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 45505, + 45579, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 45585, + 45659, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 45665, + 45739, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 45745, + 45819, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 45825, + 45900, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 45906, + 45981, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 45987, + 46063, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 46069, + 46145, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 46151, + 46227, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 46233, + 46285, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 46291, + 46366, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 46372, + 46446, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 46452, + 46526, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 46532, + 46608, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 46614, + 46689, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 46695, + 46770, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 46776, + 46851, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 46857, + 46934, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 46940, + 47015, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 47021, + 47098, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 47104, + 47178, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 47184, + 47258, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 47264, + 47316, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 47322, + 47399, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 47405, + 47481, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 47487, + 47563, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 47569, + 47620, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 47626, + 47702, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 47708, + 47759, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 47765, + 47840, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 47846, + 47898, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 47904, + 47978, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 47984, + 48036, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 48042, + 48118, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 48124, + 48198, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 48204, + 48279, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 48285, + 48362, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 48368, + 48444, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 48450, + 48525, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 48531, + 48606, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 48612, + 48664, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 48670, + 48744, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 48750, + 48825, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 48831, + 48908, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 48914, + 48989, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 48995, + 49070, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 49076, + 49128, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 49134, + 49210, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 49216, + 49290, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 49296, + 49370, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 49376, + 49428, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 49434, + 49508, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 49514, + 49566, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 49572, + 49646, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 49652, + 49726, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 49732, + 49807, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 49813, + 49890, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 49896, + 49972, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 49978, + 50053, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 50059, + 50135, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 50141, + 50215, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 50221, + 50295, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 50301, + 50375, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 50381, + 50457, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 50463, + 50538, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 50544, + 50619, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 50625, + 50700, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 50706, + 50783, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 50789, + 50864, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 50870, + 50947, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 50953, + 51027, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 51033, + 51107, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 51113, + 51165, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 51171, + 51248, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 51254, + 51330, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 51336, + 51412, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 51418, + 51469, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 51475, + 51551, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 51557, + 51608, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 51614, + 51689, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 51695, + 51747, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 51753, + 51827, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 51833, + 51885, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 51891, + 51966, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 51972, + 52046, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 52052, + 52126, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 52132, + 52208, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 52214, + 52289, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 52295, + 52370, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 52376, + 52451, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 52457, + 52534, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 52540, + 52615, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 52621, + 52698, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 52704, + 52778, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 52784, + 52858, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 52864, + 52916, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 52922, + 52999, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 53005, + 53081, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 53087, + 53163, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 53169, + 53220, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 53226, + 53302, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 53308, + 53359, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 53365, + 53440, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 53446, + 53498, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 53504, + 53578, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 53584, + 53636, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 53642, + 53718, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 53724, + 53798, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 53804, + 53879, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 53885, + 53962, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 53968, + 54043, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 54049, + 54123, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 54129, + 54203, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 54209, + 54285, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 54291, + 54366, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 54372, + 54447, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 54453, + 54528, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 54534, + 54611, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 54617, + 54692, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 54698, + 54775, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 54781, + 54855, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 54861, + 54935, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 54941, + 54993, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 54999, + 55076, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 55082, + 55158, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 55164, + 55240, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 55246, + 55297, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 55303, + 55379, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 55385, + 55436, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 55442, + 55517, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 55523, + 55575, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 55581, + 55655, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 55661, + 55713, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 55719, + 55795, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 55801, + 55875, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 55881, + 55956, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 55962, + 56039, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 56045, + 56121, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 56127, + 56202, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 56208, + 56283, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 56289, + 56341, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 56347, + 56421, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 56427, + 56502, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 56508, + 56585, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 56591, + 56666, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 56672, + 56747, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 56753, + 56805, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 56811, + 56887, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 56893, + 56967, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 56973, + 57047, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 57053, + 57105, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 57111, + 57185, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 57191, + 57243, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 57249, + 57323, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 57329, + 57403, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 57409, + 57484, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 57490, + 57567, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 57573, + 57649, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 57655, + 57730, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 57736, + 57812, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 57818, + 57892, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 57898, + 57972, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 57978, + 58052, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 58058, + 58134, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 58140, + 58215, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 58221, + 58296, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 58302, + 58377, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 58383, + 58460, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 58466, + 58541, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 58547, + 58624, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 58630, + 58704, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 58710, + 58784, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 58790, + 58842, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 58848, + 58925, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 58931, + 59007, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 59013, + 59089, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 59095, + 59146, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 59152, + 59228, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 59234, + 59285, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 59291, + 59366, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 59372, + 59424, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 59430, + 59504, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 59510, + 59562, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 59568, + 59644, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 59650, + 59724, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 59730, + 59804, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 59810, + 59884, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 59890, + 59964, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 59970, + 60022, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 60028, + 60104, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 60110, + 60185, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 60191, + 60267, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 60273, + 60347, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 60353, + 60427, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 60433, + 60507, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 60513, + 60587, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 60593, + 60667, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 60673, + 60749, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 60755, + 60807, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 60813, + 60888, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 60894, + 60968, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 60974, + 61048, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 61054, + 61128, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 61134, + 61208, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 61214, + 61289, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 61295, + 61370, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 61376, + 61452, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 61458, + 61534, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 61540, + 61616, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 61622, + 61674, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 61680, + 61755, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 61761, + 61835, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 61841, + 61915, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 61921, + 61997, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 62003, + 62078, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 62084, + 62159, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 62165, + 62240, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 62246, + 62323, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 62329, + 62404, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 62410, + 62487, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 62493, + 62567, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 62573, + 62647, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 62653, + 62705, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 62711, + 62788, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 62794, + 62870, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 62876, + 62952, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 62958, + 63009, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 63015, + 63091, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 63097, + 63148, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 63154, + 63229, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 63235, + 63287, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 63293, + 63367, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 63373, + 63425, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 63431, + 63507, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 63513, + 63587, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 63593, + 63668, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 63674, + 63751, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 63757, + 63833, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 63839, + 63914, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 63920, + 63995, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 64001, + 64053, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 64059, + 64133, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 64139, + 64214, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 64220, + 64297, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 64303, + 64378, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 64384, + 64459, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 64465, + 64517, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 64523, + 64599, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 64605, + 64679, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 64685, + 64759, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 64765, + 64817, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 64823, + 64897, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 64903, + 64955, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 64961, + 65035, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 65041, + 65115, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 65121, + 65196, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 65202, + 65279, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 65285, + 65361, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 65367, + 65442, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 65448, + 65524, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 65530, + 65604, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 65610, + 65684, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 65690, + 65764, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 65770, + 65846, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 65852, + 65927, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 65933, + 66008, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 66014, + 66089, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 66095, + 66172, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 66178, + 66253, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 66259, + 66336, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 66342, + 66416, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 66422, + 66496, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 66502, + 66554, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 66560, + 66637, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 66643, + 66719, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 66725, + 66801, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 66807, + 66858, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 66864, + 66940, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 66946, + 66997, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 67003, + 67078, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 67084, + 67136, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 67142, + 67216, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 67222, + 67274, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 67280, + 67355, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 67361, + 67435, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 67441, + 67515, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 67521, + 67597, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 67603, + 67678, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 67684, + 67759, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 67765, + 67840, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 67846, + 67923, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 67929, + 68004, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 68010, + 68087, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 68093, + 68167, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 68173, + 68247, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 68253, + 68305, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 68311, + 68388, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 68394, + 68470, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 68476, + 68552, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 68558, + 68609, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 68615, + 68691, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 68697, + 68748, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 68754, + 68829, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 68835, + 68887, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 68893, + 68967, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 68973, + 69025, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 69031, + 69107, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 69113, + 69187, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 69193, + 69268, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 69274, + 69351, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 69357, + 69433, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 69439, + 69514, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 69520, + 69595, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 69601, + 69653, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 69659, + 69733, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 69739, + 69814, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 69820, + 69897, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 69903, + 69978, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 69984, + 70059, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 70065, + 70117, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 70123, + 70199, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 70205, + 70279, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 70285, + 70359, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 70365, + 70417, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 70423, + 70497, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 70503, + 70555, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 70561, + 70635, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 70641, + 70715, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 70721, + 70796, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 70802, + 70879, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 70885, + 70961, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 70967, + 71042, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 71048, + 71124, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 71130, + 71204, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 71210, + 71284, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 71290, + 71364, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 71370, + 71446, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 71452, + 71527, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 71533, + 71608, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 71614, + 71689, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 71695, + 71772, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 71778, + 71853, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 71859, + 71936, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 71942, + 72016, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72022, + 72096, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72102, + 72154, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72160, + 72237, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72243, + 72319, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72325, + 72401, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72407, + 72458, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72464, + 72540, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72546, + 72597, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72603, + 72678, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72684, + 72736, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72742, + 72816, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72822, + 72898, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72904, + 72980, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 72986, + 73038, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 73044, + 73120, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 73126, + 73200, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 73206, + 73280, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 73286, + 73360, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 73366, + 73440, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 73446, + 73498, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 73504, + 73580, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 73586, + 73661, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 73667, + 73743, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 73749, + 73823, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 73829, + 73903, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 73909, + 73983, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 73989, + 74063, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 74069, + 74143, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 74149, + 74225, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 74231, + 74283, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 74289, + 74364, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 74370, + 74444, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 74450, + 74524, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 74530, + 74604, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 74610, + 74684, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 74690, + 74765, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 74771, + 74846, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 74852, + 74928, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 74934, + 75010, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 75016, + 75092, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 75098, + 75150, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 75156, + 75230, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 75236, + 75311, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 75317, + 75391, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 75397, + 75449, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 75455, + 75531, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 75537, + 75612, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 75618, + 75694, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 75700, + 75777, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 75783, + 75857, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 75863, + 75915, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 75921, + 75995, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 76001, + 76079, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 76085, + 76161, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 76167, + 76218, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 76224, + 76298, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 76304, + 76379, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 76385, + 76460, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 76466, + 76540, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 76546, + 76598, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 76604, + 76679, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 76685, + 76759, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 76765, + 76839, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 76845, + 76920, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 76926, + 77002, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 77008, + 77082, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 77088, + 77096, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 70, - 145, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - -0.367, - 0.212 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 151, - 225, - 0 - ] - }, - "from": [ - -0.367, - 0.212 - ], - "tag": null, - "to": [ - -0.8378, - 0.7025 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 231, - 305, - 0 - ] - }, - "from": [ - -0.8378, - 0.7025 - ], - "tag": null, - "to": [ - -1.6706, - 1.1703 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 311, - 387, - 0 - ] - }, - "from": [ - -1.6706, - 1.1703 - ], - "tag": null, - "to": [ - -2.4818, - 0.7521 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 393, - 468, - 0 - ] - }, - "from": [ - -2.4818, - 0.7521 - ], - "tag": null, - "to": [ - -2.4437, - 1.0088 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 474, - 549, - 0 - ] - }, - "from": [ - -2.4437, - 1.0088 - ], - "tag": null, - "to": [ - -2.2042, - 1.4457 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 555, - 630, - 0 - ] - }, - "from": [ - -2.2042, - 1.4457 - ], - "tag": null, - "to": [ - -2.367, - 2.2522 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 636, - 713, - 0 - ] - }, - "from": [ - -2.367, - 2.2522 - ], - "tag": null, - "to": [ - -2.4567, - 2.1633 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 719, - 794, - 0 - ] - }, - "from": [ - -2.4567, - 2.1633 - ], - "tag": null, - "to": [ - -1.5364, - 1.9899 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 800, - 877, - 0 - ] - }, - "from": [ - -1.5364, - 1.9899 - ], - "tag": null, - "to": [ - -1.5346, - 1.472 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 883, - 957, - 0 - ] - }, - "from": [ - -1.5346, - 1.472 - ], - "tag": null, - "to": [ - -0.914, - 0.5987 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 963, - 1037, - 0 - ] - }, - "from": [ - -0.914, - 0.5987 - ], - "tag": null, - "to": [ - -1.6916, - 1.3589 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1043, - 1095, - 0 - ] - }, - "from": [ - -1.6916, - 1.3589 - ], - "tag": null, - "to": [ - -1.1477, - 2.2039 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1101, - 1178, - 0 - ] - }, - "from": [ - -1.1477, - 2.2039 - ], - "tag": null, - "to": [ - -1.278, - 2.2159 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1184, - 1260, - 0 - ] - }, - "from": [ - -1.278, - 2.2159 - ], - "tag": null, - "to": [ - -1.4437, - 2.0082 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1266, - 1342, - 0 - ] - }, - "from": [ - -1.4437, - 2.0082 - ], - "tag": null, - "to": [ - -1.54, - 1.954 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1348, - 1399, - 0 - ] - }, - "from": [ - -1.54, - 1.954 - ], - "tag": null, - "to": [ - -0.6379, - 2.3499 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1405, - 1481, - 0 - ] - }, - "from": [ - -0.6379, - 2.3499 - ], - "tag": null, - "to": [ - -0.3579, - 2.1721 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1487, - 1538, - 0 - ] - }, - "from": [ - -0.3579, - 2.1721 - ], - "tag": null, - "to": [ - 0.1657, - 2.8664 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1544, - 1619, - 0 - ] - }, - "from": [ - 0.1657, - 2.8664 - ], - "tag": null, - "to": [ - 0.5571, - 2.0824 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1625, - 1677, - 0 - ] - }, - "from": [ - 0.5571, - 2.0824 - ], - "tag": null, - "to": [ - 1.3985, - 2.622 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1683, - 1757, - 0 - ] - }, - "from": [ - 1.3985, - 2.622 - ], - "tag": null, - "to": [ - 2.0123, - 2.8432 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1763, - 1815, - 0 - ] - }, - "from": [ - 2.0123, - 2.8432 - ], - "tag": null, - "to": [ - 2.8954, - 3.5429 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1821, - 1897, - 0 - ] - }, - "from": [ - 2.8954, - 3.5429 - ], - "tag": null, - "to": [ - 2.4824, - 3.1276 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1903, - 1977, - 0 - ] - }, - "from": [ - 2.4824, - 3.1276 - ], - "tag": null, - "to": [ - 2.9994, - 2.219 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1983, - 2058, - 0 - ] - }, - "from": [ - 2.9994, - 2.219 - ], - "tag": null, - "to": [ - 2.3278, - 1.2585 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2064, - 2141, - 0 - ] - }, - "from": [ - 2.3278, - 1.2585 - ], - "tag": null, - "to": [ - 2.338, - 0.885 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2147, - 2223, - 0 - ] - }, - "from": [ - 2.338, - 0.885 - ], - "tag": null, - "to": [ - 2.4416, - 0.4621 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2229, - 2304, - 0 - ] - }, - "from": [ - 2.4416, - 0.4621 - ], - "tag": null, - "to": [ - 2.8937, - 0.3498 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2310, - 2385, - 0 - ] - }, - "from": [ - 2.8937, - 0.3498 - ], - "tag": null, - "to": [ - 2.0115, - -0.3657 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2391, - 2443, - 0 - ] - }, - "from": [ - 2.0115, - -0.3657 - ], - "tag": null, - "to": [ - 2.9311, - -0.0966 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2449, - 2523, - 0 - ] - }, - "from": [ - 2.9311, - -0.0966 - ], - "tag": null, - "to": [ - 3.641, - 0.0205 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2529, - 2604, - 0 - ] - }, - "from": [ - 3.641, - 0.0205 - ], - "tag": null, - "to": [ - 3.2622, - 0.7312 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2610, - 2687, - 0 - ] - }, - "from": [ - 3.2622, - 0.7312 - ], - "tag": null, - "to": [ - 2.9649, - 0.6647 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2693, - 2768, - 0 - ] - }, - "from": [ - 2.9649, - 0.6647 - ], - "tag": null, - "to": [ - 3.1946, - -0.0955 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2774, - 2849, - 0 - ] - }, - "from": [ - 3.1946, - -0.0955 - ], - "tag": null, - "to": [ - 2.5589, - 0.0991 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2855, - 2907, - 0 - ] - }, - "from": [ - 2.5589, - 0.0991 - ], - "tag": null, - "to": [ - 3.1311, - 0.388 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2913, - 2989, - 0 - ] - }, - "from": [ - 3.1311, - 0.388 - ], - "tag": null, - "to": [ - 2.173, - 0.3655 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 2995, - 3069, - 0 - ] - }, - "from": [ - 2.173, - 0.3655 - ], - "tag": null, - "to": [ - 2.5029, - -0.4699 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 3075, - 3149, - 0 - ] - }, - "from": [ - 2.5029, - -0.4699 - ], - "tag": null, - "to": [ - 3.2464, - -1.2618 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 3155, - 3207, - 0 - ] - }, - "from": [ - 3.2464, - -1.2618 - ], - "tag": null, - "to": [ - 4.24, - -0.3576 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 3213, - 3287, - 0 - ] - }, - "from": [ - 4.24, - -0.3576 - ], - "tag": null, - "to": [ - 3.7364, - 0.1575 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 3293, - 3345, - 0 - ] - }, - "from": [ - 3.7364, - 0.1575 - ], - "tag": null, - "to": [ - 4.289, - 0.9188 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 3351, - 3425, - 0 - ] - }, - "from": [ - 4.289, - 0.9188 - ], - "tag": null, - "to": [ - 5.1484, - 1.0029 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 3431, - 3505, - 0 - ] - }, - "from": [ - 5.1484, - 1.0029 - ], - "tag": null, - "to": [ - 4.3302, - 0.0994 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 3511, - 3586, - 0 - ] - }, - "from": [ - 4.3302, - 0.0994 - ], - "tag": null, - "to": [ - 4.6468, - -0.1425 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 3592, - 3669, - 0 - ] - }, - "from": [ - 4.6468, - -0.1425 - ], - "tag": null, - "to": [ - 4.2029, - -0.4016 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 3675, - 3751, - 0 - ] - }, - "from": [ - 4.2029, - -0.4016 - ], - "tag": null, - "to": [ - 3.5424, - -0.8052 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 3757, - 3832, - 0 - ] - }, - "from": [ - 3.5424, - -0.8052 - ], - "tag": null, - "to": [ - 2.8254, - -0.5706 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 3838, - 3914, - 0 - ] - }, - "from": [ - 2.8254, - -0.5706 - ], - "tag": null, - "to": [ - 2.5685, - -1.0209 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 3920, - 3994, - 0 - ] - }, - "from": [ - 2.5685, - -1.0209 - ], - "tag": null, - "to": [ - 3.2437, - -1.9919 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 4000, - 4074, - 0 - ] - }, - "from": [ - 3.2437, - -1.9919 - ], - "tag": null, - "to": [ - 2.6748, - -1.4 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 4080, - 4154, - 0 - ] - }, - "from": [ - 2.6748, - -1.4 - ], - "tag": null, - "to": [ - 1.8419, - -0.9322 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 4160, - 4236, - 0 - ] - }, - "from": [ - 1.8419, - -0.9322 - ], - "tag": null, - "to": [ - 1.0308, - -1.3504 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 4242, - 4317, - 0 - ] - }, - "from": [ - 1.0308, - -1.3504 - ], - "tag": null, - "to": [ - 1.0689, - -1.0937 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 4323, - 4398, - 0 - ] - }, - "from": [ - 1.0689, - -1.0937 - ], - "tag": null, - "to": [ - 1.3084, - -0.6568 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 4404, - 4479, - 0 - ] - }, - "from": [ - 1.3084, - -0.6568 - ], - "tag": null, - "to": [ - 1.1456, - 0.1496 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 4485, - 4562, - 0 - ] - }, - "from": [ - 1.1456, - 0.1496 - ], - "tag": null, - "to": [ - 1.0558, - 0.0608 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 4568, - 4643, - 0 - ] - }, - "from": [ - 1.0558, - 0.0608 - ], - "tag": null, - "to": [ - 1.9762, - -0.1127 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 4649, - 4726, - 0 - ] - }, - "from": [ - 1.9762, - -0.1127 - ], - "tag": null, - "to": [ - 1.9779, - -0.6305 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 4732, - 4806, - 0 - ] - }, - "from": [ - 1.9779, - -0.6305 - ], - "tag": null, - "to": [ - 2.5986, - -1.5039 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 4812, - 4886, - 0 - ] - }, - "from": [ - 2.5986, - -1.5039 - ], - "tag": null, - "to": [ - 1.8209, - -0.7436 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 4892, - 4944, - 0 - ] - }, - "from": [ - 1.8209, - -0.7436 - ], - "tag": null, - "to": [ - 2.3649, - 0.1013 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 4950, - 5027, - 0 - ] - }, - "from": [ - 2.3649, - 0.1013 - ], - "tag": null, - "to": [ - 2.2345, - 0.1134 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5033, - 5109, - 0 - ] - }, - "from": [ - 2.2345, - 0.1134 - ], - "tag": null, - "to": [ - 2.0688, - -0.0944 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5115, - 5191, - 0 - ] - }, - "from": [ - 2.0688, - -0.0944 - ], - "tag": null, - "to": [ - 1.9726, - -0.1485 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5197, - 5248, - 0 - ] - }, - "from": [ - 1.9726, - -0.1485 - ], - "tag": null, - "to": [ - 2.8747, - 0.2474 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5254, - 5330, - 0 - ] - }, - "from": [ - 2.8747, - 0.2474 - ], - "tag": null, - "to": [ - 3.1547, - 0.0696 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5336, - 5387, - 0 - ] - }, - "from": [ - 3.1547, - 0.0696 - ], - "tag": null, - "to": [ - 3.6782, - 0.7639 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5393, - 5468, - 0 - ] - }, - "from": [ - 3.6782, - 0.7639 - ], - "tag": null, - "to": [ - 4.0697, - -0.0201 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5474, - 5526, - 0 - ] - }, - "from": [ - 4.0697, - -0.0201 - ], - "tag": null, - "to": [ - 4.9111, - 0.5195 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5532, - 5606, - 0 - ] - }, - "from": [ - 4.9111, - 0.5195 - ], - "tag": null, - "to": [ - 5.5248, - 0.7407 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5612, - 5664, - 0 - ] - }, - "from": [ - 5.5248, - 0.7407 - ], - "tag": null, - "to": [ - 6.4079, - 1.4403 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5670, - 5746, - 0 - ] - }, - "from": [ - 6.4079, - 1.4403 - ], - "tag": null, - "to": [ - 5.995, - 1.0251 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5752, - 5826, - 0 - ] - }, - "from": [ - 5.995, - 1.0251 - ], - "tag": null, - "to": [ - 6.5119, - 0.1165 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5832, - 5906, - 0 - ] - }, - "from": [ - 6.5119, - 0.1165 - ], - "tag": null, - "to": [ - 7.1871, - -0.8544 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5912, - 5986, - 0 - ] - }, - "from": [ - 7.1871, - -0.8544 - ], - "tag": null, - "to": [ - 6.6182, - -0.2625 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 5992, - 6066, - 0 - ] - }, - "from": [ - 6.6182, - -0.2625 - ], - "tag": null, - "to": [ - 7.5646, - -0.531 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 6072, - 6124, - 0 - ] - }, - "from": [ - 7.5646, - -0.531 - ], - "tag": null, - "to": [ - 8.0888, - 0.3701 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 6130, - 6206, - 0 - ] - }, - "from": [ - 8.0888, - 0.3701 - ], - "tag": null, - "to": [ - 7.9462, - -0.1493 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 6212, - 6287, - 0 - ] - }, - "from": [ - 7.9462, - -0.1493 - ], - "tag": null, - "to": [ - 7.5175, - -0.5717 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 6293, - 6369, - 0 - ] - }, - "from": [ - 7.5175, - -0.5717 - ], - "tag": null, - "to": [ - 7.4244, - -1.478 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 6375, - 6449, - 0 - ] - }, - "from": [ - 7.4244, - -1.478 - ], - "tag": null, - "to": [ - 7.1476, - -0.7963 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 6455, - 6529, - 0 - ] - }, - "from": [ - 7.1476, - -0.7963 - ], - "tag": null, - "to": [ - 8.1273, - -0.8786 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 6535, - 6609, - 0 - ] - }, - "from": [ - 8.1273, - -0.8786 - ], - "tag": null, - "to": [ - 7.2606, - -1.1796 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 6615, - 6689, - 0 - ] - }, - "from": [ - 7.2606, - -1.1796 - ], - "tag": null, - "to": [ - 7.798, - -1.1593 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 6695, - 6769, - 0 - ] - }, - "from": [ - 7.798, - -1.1593 - ], - "tag": null, - "to": [ - 8.7313, - -1.7822 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 6775, - 6851, - 0 - ] - }, - "from": [ - 8.7313, - -1.7822 - ], - "tag": null, - "to": [ - 8.9118, - -2.1511 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 6857, - 6909, - 0 - ] - }, - "from": [ - 8.9118, - -2.1511 - ], - "tag": null, - "to": [ - 9.4502, - -1.9133 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 6915, - 6990, - 0 - ] - }, - "from": [ - 9.4502, - -1.9133 - ], - "tag": null, - "to": [ - 9.8407, - -1.7706 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 6996, - 7070, - 0 - ] - }, - "from": [ - 9.8407, - -1.7706 - ], - "tag": null, - "to": [ - 9.9385, - -0.7798 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 7076, - 7150, - 0 - ] - }, - "from": [ - 9.9385, - -0.7798 - ], - "tag": null, - "to": [ - 10.4672, - -1.5723 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 7156, - 7230, - 0 - ] - }, - "from": [ - 10.4672, - -1.5723 - ], - "tag": null, - "to": [ - 10.8461, - -1.4483 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 7236, - 7310, - 0 - ] - }, - "from": [ - 10.8461, - -1.4483 - ], - "tag": null, - "to": [ - 9.8977, - -0.7754 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 7316, - 7391, - 0 - ] - }, - "from": [ - 9.8977, - -0.7754 - ], - "tag": null, - "to": [ - 10.6428, - -0.9886 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 7397, - 7472, - 0 - ] - }, - "from": [ - 10.6428, - -0.9886 - ], - "tag": null, - "to": [ - 10.8302, - -1.1482 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 7478, - 7554, - 0 - ] - }, - "from": [ - 10.8302, - -1.1482 - ], - "tag": null, - "to": [ - 10.7729, - -1.6918 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 7560, - 7636, - 0 - ] - }, - "from": [ - 10.7729, - -1.6918 - ], - "tag": null, - "to": [ - 10.677, - -2.4452 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 7642, - 7718, - 0 - ] - }, - "from": [ - 10.677, - -2.4452 - ], - "tag": null, - "to": [ - 10.5045, - -3.2121 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 7724, - 7776, - 0 - ] - }, - "from": [ - 10.5045, - -3.2121 - ], - "tag": null, - "to": [ - 11.399, - -2.6028 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 7782, - 7857, - 0 - ] - }, - "from": [ - 11.399, - -2.6028 - ], - "tag": null, - "to": [ - 11.0319, - -2.3908 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 7863, - 7937, - 0 - ] - }, - "from": [ - 11.0319, - -2.3908 - ], - "tag": null, - "to": [ - 10.5612, - -1.9002 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 7943, - 8017, - 0 - ] - }, - "from": [ - 10.5612, - -1.9002 - ], - "tag": null, - "to": [ - 9.7284, - -1.4325 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 8023, - 8099, - 0 - ] - }, - "from": [ - 9.7284, - -1.4325 - ], - "tag": null, - "to": [ - 8.9172, - -1.8506 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 8105, - 8180, - 0 - ] - }, - "from": [ - 8.9172, - -1.8506 - ], - "tag": null, - "to": [ - 8.9553, - -1.594 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 8186, - 8261, - 0 - ] - }, - "from": [ - 8.9553, - -1.594 - ], - "tag": null, - "to": [ - 9.1948, - -1.157 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 8267, - 8342, - 0 - ] - }, - "from": [ - 9.1948, - -1.157 - ], - "tag": null, - "to": [ - 9.032, - -0.3506 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 8348, - 8425, - 0 - ] - }, - "from": [ - 9.032, - -0.3506 - ], - "tag": null, - "to": [ - 8.9423, - -0.4395 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 8431, - 8506, - 0 - ] - }, - "from": [ - 8.9423, - -0.4395 - ], - "tag": null, - "to": [ - 9.8626, - -0.6129 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 8512, - 8589, - 0 - ] - }, - "from": [ - 9.8626, - -0.6129 - ], - "tag": null, - "to": [ - 9.8644, - -1.1308 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 8595, - 8669, - 0 - ] - }, - "from": [ - 9.8644, - -1.1308 - ], - "tag": null, - "to": [ - 10.485, - -2.0041 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 8675, - 8749, - 0 - ] - }, - "from": [ - 10.485, - -2.0041 - ], - "tag": null, - "to": [ - 9.7074, - -1.2438 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 8755, - 8807, - 0 - ] - }, - "from": [ - 9.7074, - -1.2438 - ], - "tag": null, - "to": [ - 10.2513, - -0.3989 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 8813, - 8890, - 0 - ] - }, - "from": [ - 10.2513, - -0.3989 - ], - "tag": null, - "to": [ - 10.1209, - -0.3869 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 8896, - 8972, - 0 - ] - }, - "from": [ - 10.1209, - -0.3869 - ], - "tag": null, - "to": [ - 9.9553, - -0.5946 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 8978, - 9054, - 0 - ] - }, - "from": [ - 9.9553, - -0.5946 - ], - "tag": null, - "to": [ - 9.859, - -0.6488 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 9060, - 9111, - 0 - ] - }, - "from": [ - 9.859, - -0.6488 - ], - "tag": null, - "to": [ - 10.7611, - -0.2529 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 9117, - 9193, - 0 - ] - }, - "from": [ - 10.7611, - -0.2529 - ], - "tag": null, - "to": [ - 11.0411, - -0.4307 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 9199, - 9250, - 0 - ] - }, - "from": [ - 11.0411, - -0.4307 - ], - "tag": null, - "to": [ - 11.5647, - 0.2637 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 9256, - 9331, - 0 - ] - }, - "from": [ - 11.5647, - 0.2637 - ], - "tag": null, - "to": [ - 11.9561, - -0.5203 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 9337, - 9389, - 0 - ] - }, - "from": [ - 11.9561, - -0.5203 - ], - "tag": null, - "to": [ - 12.7975, - 0.0192 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 9395, - 9469, - 0 - ] - }, - "from": [ - 12.7975, - 0.0192 - ], - "tag": null, - "to": [ - 13.4113, - 0.2404 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 9475, - 9527, - 0 - ] - }, - "from": [ - 13.4113, - 0.2404 - ], - "tag": null, - "to": [ - 14.2943, - 0.9401 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 9533, - 9609, - 0 - ] - }, - "from": [ - 14.2943, - 0.9401 - ], - "tag": null, - "to": [ - 13.8814, - 0.5248 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 9615, - 9689, - 0 - ] - }, - "from": [ - 13.8814, - 0.5248 - ], - "tag": null, - "to": [ - 14.3984, - -0.3837 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 9695, - 9770, - 0 - ] - }, - "from": [ - 14.3984, - -0.3837 - ], - "tag": null, - "to": [ - 13.7267, - -1.3443 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 9776, - 9853, - 0 - ] - }, - "from": [ - 13.7267, - -1.3443 - ], - "tag": null, - "to": [ - 13.737, - -1.7177 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 9859, - 9935, - 0 - ] - }, - "from": [ - 13.737, - -1.7177 - ], - "tag": null, - "to": [ - 13.8406, - -2.1407 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 9941, - 10016, - 0 - ] - }, - "from": [ - 13.8406, - -2.1407 - ], - "tag": null, - "to": [ - 14.2926, - -2.253 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 10022, - 10097, - 0 - ] - }, - "from": [ - 14.2926, - -2.253 - ], - "tag": null, - "to": [ - 13.4105, - -2.9685 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 10103, - 10155, - 0 - ] - }, - "from": [ - 13.4105, - -2.9685 - ], - "tag": null, - "to": [ - 14.33, - -2.6993 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 10161, - 10235, - 0 - ] - }, - "from": [ - 14.33, - -2.6993 - ], - "tag": null, - "to": [ - 15.0399, - -2.5822 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 10241, - 10316, - 0 - ] - }, - "from": [ - 15.0399, - -2.5822 - ], - "tag": null, - "to": [ - 14.6612, - -1.8716 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 10322, - 10399, - 0 - ] - }, - "from": [ - 14.6612, - -1.8716 - ], - "tag": null, - "to": [ - 14.3639, - -1.9381 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 10405, - 10480, - 0 - ] - }, - "from": [ - 14.3639, - -1.9381 - ], - "tag": null, - "to": [ - 14.5936, - -2.6983 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 10486, - 10561, - 0 - ] - }, - "from": [ - 14.5936, - -2.6983 - ], - "tag": null, - "to": [ - 13.9579, - -2.5037 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 10567, - 10619, - 0 - ] - }, - "from": [ - 13.9579, - -2.5037 - ], - "tag": null, - "to": [ - 14.53, - -2.2148 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 10625, - 10701, - 0 - ] - }, - "from": [ - 14.53, - -2.2148 - ], - "tag": null, - "to": [ - 13.572, - -2.2372 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 10707, - 10781, - 0 - ] - }, - "from": [ - 13.572, - -2.2372 - ], - "tag": null, - "to": [ - 13.9019, - -3.0726 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 10787, - 10861, - 0 - ] - }, - "from": [ - 13.9019, - -3.0726 - ], - "tag": null, - "to": [ - 14.6454, - -3.8646 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 10867, - 10919, - 0 - ] - }, - "from": [ - 14.6454, - -3.8646 - ], - "tag": null, - "to": [ - 15.639, - -2.9603 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 10925, - 10999, - 0 - ] - }, - "from": [ - 15.639, - -2.9603 - ], - "tag": null, - "to": [ - 15.1354, - -2.4452 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 11005, - 11057, - 0 - ] - }, - "from": [ - 15.1354, - -2.4452 - ], - "tag": null, - "to": [ - 15.688, - -1.684 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 11063, - 11137, - 0 - ] - }, - "from": [ - 15.688, - -1.684 - ], - "tag": null, - "to": [ - 16.5473, - -1.5998 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 11143, - 11217, - 0 - ] - }, - "from": [ - 16.5473, - -1.5998 - ], - "tag": null, - "to": [ - 15.7292, - -2.5034 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 11223, - 11298, - 0 - ] - }, - "from": [ - 15.7292, - -2.5034 - ], - "tag": null, - "to": [ - 16.0458, - -2.7453 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 11304, - 11381, - 0 - ] - }, - "from": [ - 16.0458, - -2.7453 - ], - "tag": null, - "to": [ - 15.6019, - -3.0044 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 11387, - 11463, - 0 - ] - }, - "from": [ - 15.6019, - -3.0044 - ], - "tag": null, - "to": [ - 14.9414, - -3.4079 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 11469, - 11544, - 0 - ] - }, - "from": [ - 14.9414, - -3.4079 - ], - "tag": null, - "to": [ - 14.2243, - -3.1734 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 11550, - 11626, - 0 - ] - }, - "from": [ - 14.2243, - -3.1734 - ], - "tag": null, - "to": [ - 13.9675, - -3.6237 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 11632, - 11706, - 0 - ] - }, - "from": [ - 13.9675, - -3.6237 - ], - "tag": null, - "to": [ - 14.6427, - -4.5947 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 11712, - 11786, - 0 - ] - }, - "from": [ - 14.6427, - -4.5947 - ], - "tag": null, - "to": [ - 14.0737, - -4.0028 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 11792, - 11866, - 0 - ] - }, - "from": [ - 14.0737, - -4.0028 - ], - "tag": null, - "to": [ - 13.2409, - -3.535 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 11872, - 11948, - 0 - ] - }, - "from": [ - 13.2409, - -3.535 - ], - "tag": null, - "to": [ - 12.4298, - -3.9532 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 11954, - 12029, - 0 - ] - }, - "from": [ - 12.4298, - -3.9532 - ], - "tag": null, - "to": [ - 12.4678, - -3.6965 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 12035, - 12110, - 0 - ] - }, - "from": [ - 12.4678, - -3.6965 - ], - "tag": null, - "to": [ - 12.7073, - -3.2596 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 12116, - 12191, - 0 - ] - }, - "from": [ - 12.7073, - -3.2596 - ], - "tag": null, - "to": [ - 12.5445, - -2.4531 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 12197, - 12274, - 0 - ] - }, - "from": [ - 12.5445, - -2.4531 - ], - "tag": null, - "to": [ - 12.4548, - -2.542 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 12280, - 12355, - 0 - ] - }, - "from": [ - 12.4548, - -2.542 - ], - "tag": null, - "to": [ - 13.3752, - -2.7154 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 12361, - 12438, - 0 - ] - }, - "from": [ - 13.3752, - -2.7154 - ], - "tag": null, - "to": [ - 13.3769, - -3.2333 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 12444, - 12518, - 0 - ] - }, - "from": [ - 13.3769, - -3.2333 - ], - "tag": null, - "to": [ - 13.9975, - -4.1066 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 12524, - 12598, - 0 - ] - }, - "from": [ - 13.9975, - -4.1066 - ], - "tag": null, - "to": [ - 13.2199, - -3.3463 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 12604, - 12656, - 0 - ] - }, - "from": [ - 13.2199, - -3.3463 - ], - "tag": null, - "to": [ - 13.7638, - -2.5014 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 12662, - 12739, - 0 - ] - }, - "from": [ - 13.7638, - -2.5014 - ], - "tag": null, - "to": [ - 13.6335, - -2.4894 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 12745, - 12821, - 0 - ] - }, - "from": [ - 13.6335, - -2.4894 - ], - "tag": null, - "to": [ - 13.4678, - -2.6971 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 12827, - 12903, - 0 - ] - }, - "from": [ - 13.4678, - -2.6971 - ], - "tag": null, - "to": [ - 13.3715, - -2.7513 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 12909, - 12960, - 0 - ] - }, - "from": [ - 13.3715, - -2.7513 - ], - "tag": null, - "to": [ - 14.2737, - -2.3554 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 12966, - 13042, - 0 - ] - }, - "from": [ - 14.2737, - -2.3554 - ], - "tag": null, - "to": [ - 14.5536, - -2.5332 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 13048, - 13099, - 0 - ] - }, - "from": [ - 14.5536, - -2.5332 - ], - "tag": null, - "to": [ - 15.0772, - -1.8389 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 13105, - 13180, - 0 - ] - }, - "from": [ - 15.0772, - -1.8389 - ], - "tag": null, - "to": [ - 15.4686, - -2.6229 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 13186, - 13238, - 0 - ] - }, - "from": [ - 15.4686, - -2.6229 - ], - "tag": null, - "to": [ - 16.31, - -2.0833 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 13244, - 13318, - 0 - ] - }, - "from": [ - 16.31, - -2.0833 - ], - "tag": null, - "to": [ - 16.9238, - -1.8621 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 13324, - 13376, - 0 - ] - }, - "from": [ - 16.9238, - -1.8621 - ], - "tag": null, - "to": [ - 17.8069, - -1.1624 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 13382, - 13457, - 0 - ] - }, - "from": [ - 17.8069, - -1.1624 - ], - "tag": null, - "to": [ - 17.4398, - -0.9504 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 13463, - 13537, - 0 - ] - }, - "from": [ - 17.4398, - -0.9504 - ], - "tag": null, - "to": [ - 16.9691, - -0.4599 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 13543, - 13617, - 0 - ] - }, - "from": [ - 16.9691, - -0.4599 - ], - "tag": null, - "to": [ - 16.1363, - 0.0079 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 13623, - 13699, - 0 - ] - }, - "from": [ - 16.1363, - 0.0079 - ], - "tag": null, - "to": [ - 15.3251, - -0.4103 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 13705, - 13780, - 0 - ] - }, - "from": [ - 15.3251, - -0.4103 - ], - "tag": null, - "to": [ - 15.3632, - -0.1536 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 13786, - 13861, - 0 - ] - }, - "from": [ - 15.3632, - -0.1536 - ], - "tag": null, - "to": [ - 15.6027, - 0.2833 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 13867, - 13942, - 0 - ] - }, - "from": [ - 15.6027, - 0.2833 - ], - "tag": null, - "to": [ - 15.4399, - 1.0897 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 13948, - 14025, - 0 - ] - }, - "from": [ - 15.4399, - 1.0897 - ], - "tag": null, - "to": [ - 15.3502, - 1.0009 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 14031, - 14106, - 0 - ] - }, - "from": [ - 15.3502, - 1.0009 - ], - "tag": null, - "to": [ - 16.2705, - 0.8274 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 14112, - 14189, - 0 - ] - }, - "from": [ - 16.2705, - 0.8274 - ], - "tag": null, - "to": [ - 16.2723, - 0.3096 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 14195, - 14269, - 0 - ] - }, - "from": [ - 16.2723, - 0.3096 - ], - "tag": null, - "to": [ - 16.8929, - -0.5638 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 14275, - 14349, - 0 - ] - }, - "from": [ - 16.8929, - -0.5638 - ], - "tag": null, - "to": [ - 16.1152, - 0.1965 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 14355, - 14407, - 0 - ] - }, - "from": [ - 16.1152, - 0.1965 - ], - "tag": null, - "to": [ - 16.6592, - 1.0414 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 14413, - 14490, - 0 - ] - }, - "from": [ - 16.6592, - 1.0414 - ], - "tag": null, - "to": [ - 16.5288, - 1.0535 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 14496, - 14572, - 0 - ] - }, - "from": [ - 16.5288, - 1.0535 - ], - "tag": null, - "to": [ - 16.3632, - 0.8457 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 14578, - 14654, - 0 - ] - }, - "from": [ - 16.3632, - 0.8457 - ], - "tag": null, - "to": [ - 16.2669, - 0.7916 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 14660, - 14711, - 0 - ] - }, - "from": [ - 16.2669, - 0.7916 - ], - "tag": null, - "to": [ - 17.169, - 1.1875 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 14717, - 14793, - 0 - ] - }, - "from": [ - 17.169, - 1.1875 - ], - "tag": null, - "to": [ - 17.449, - 1.0097 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 14799, - 14850, - 0 - ] - }, - "from": [ - 17.449, - 1.0097 - ], - "tag": null, - "to": [ - 17.9726, - 1.704 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 14856, - 14931, - 0 - ] - }, - "from": [ - 17.9726, - 1.704 - ], - "tag": null, - "to": [ - 18.364, - 0.92 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 14937, - 14989, - 0 - ] - }, - "from": [ - 18.364, - 0.92 - ], - "tag": null, - "to": [ - 19.2054, - 1.4596 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 14995, - 15069, - 0 - ] - }, - "from": [ - 19.2054, - 1.4596 - ], - "tag": null, - "to": [ - 19.8192, - 1.6808 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 15075, - 15127, - 0 - ] - }, - "from": [ - 19.8192, - 1.6808 - ], - "tag": null, - "to": [ - 20.7022, - 2.3804 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 15133, - 15209, - 0 - ] - }, - "from": [ - 20.7022, - 2.3804 - ], - "tag": null, - "to": [ - 20.2893, - 1.9652 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 15215, - 15289, - 0 - ] - }, - "from": [ - 20.2893, - 1.9652 - ], - "tag": null, - "to": [ - 20.8063, - 1.0566 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 15295, - 15370, - 0 - ] - }, - "from": [ - 20.8063, - 1.0566 - ], - "tag": null, - "to": [ - 20.1346, - 0.0961 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 15376, - 15453, - 0 - ] - }, - "from": [ - 20.1346, - 0.0961 - ], - "tag": null, - "to": [ - 20.1449, - -0.2774 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 15459, - 15534, - 0 - ] - }, - "from": [ - 20.1449, - -0.2774 - ], - "tag": null, - "to": [ - 19.7779, - -0.0654 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 15540, - 15614, - 0 - ] - }, - "from": [ - 19.7779, - -0.0654 - ], - "tag": null, - "to": [ - 19.3071, - 0.4252 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 15620, - 15694, - 0 - ] - }, - "from": [ - 19.3071, - 0.4252 - ], - "tag": null, - "to": [ - 18.4743, - 0.8929 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 15700, - 15776, - 0 - ] - }, - "from": [ - 18.4743, - 0.8929 - ], - "tag": null, - "to": [ - 17.6632, - 0.4748 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 15782, - 15857, - 0 - ] - }, - "from": [ - 17.6632, - 0.4748 - ], - "tag": null, - "to": [ - 17.7012, - 0.7314 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 15863, - 15938, - 0 - ] - }, - "from": [ - 17.7012, - 0.7314 - ], - "tag": null, - "to": [ - 17.9407, - 1.1683 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 15944, - 16019, - 0 - ] - }, - "from": [ - 17.9407, - 1.1683 - ], - "tag": null, - "to": [ - 17.7779, - 1.9748 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 16025, - 16102, - 0 - ] - }, - "from": [ - 17.7779, - 1.9748 - ], - "tag": null, - "to": [ - 17.6882, - 1.8859 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 16108, - 16183, - 0 - ] - }, - "from": [ - 17.6882, - 1.8859 - ], - "tag": null, - "to": [ - 18.6086, - 1.7125 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 16189, - 16266, - 0 - ] - }, - "from": [ - 18.6086, - 1.7125 - ], - "tag": null, - "to": [ - 18.6103, - 1.1946 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 16272, - 16346, - 0 - ] - }, - "from": [ - 18.6103, - 1.1946 - ], - "tag": null, - "to": [ - 19.2309, - 0.3213 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 16352, - 16426, - 0 - ] - }, - "from": [ - 19.2309, - 0.3213 - ], - "tag": null, - "to": [ - 18.4533, - 1.0816 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 16432, - 16484, - 0 - ] - }, - "from": [ - 18.4533, - 1.0816 - ], - "tag": null, - "to": [ - 18.9972, - 1.9265 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 16490, - 16567, - 0 - ] - }, - "from": [ - 18.9972, - 1.9265 - ], - "tag": null, - "to": [ - 18.8669, - 1.9385 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 16573, - 16649, - 0 - ] - }, - "from": [ - 18.8669, - 1.9385 - ], - "tag": null, - "to": [ - 18.7012, - 1.7308 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 16655, - 16731, - 0 - ] - }, - "from": [ - 18.7012, - 1.7308 - ], - "tag": null, - "to": [ - 18.6049, - 1.6766 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 16737, - 16788, - 0 - ] - }, - "from": [ - 18.6049, - 1.6766 - ], - "tag": null, - "to": [ - 19.5071, - 2.0725 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 16794, - 16870, - 0 - ] - }, - "from": [ - 19.5071, - 2.0725 - ], - "tag": null, - "to": [ - 19.787, - 1.8947 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 16876, - 16927, - 0 - ] - }, - "from": [ - 19.787, - 1.8947 - ], - "tag": null, - "to": [ - 20.3106, - 2.589 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 16933, - 17008, - 0 - ] - }, - "from": [ - 20.3106, - 2.589 - ], - "tag": null, - "to": [ - 20.702, - 1.8051 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 17014, - 17066, - 0 - ] - }, - "from": [ - 20.702, - 1.8051 - ], - "tag": null, - "to": [ - 21.5434, - 2.3446 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 17072, - 17146, - 0 - ] - }, - "from": [ - 21.5434, - 2.3446 - ], - "tag": null, - "to": [ - 22.1572, - 2.5658 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 17152, - 17204, - 0 - ] - }, - "from": [ - 22.1572, - 2.5658 - ], - "tag": null, - "to": [ - 23.0403, - 3.2655 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 17210, - 17286, - 0 - ] - }, - "from": [ - 23.0403, - 3.2655 - ], - "tag": null, - "to": [ - 22.6274, - 2.8502 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 17292, - 17366, - 0 - ] - }, - "from": [ - 22.6274, - 2.8502 - ], - "tag": null, - "to": [ - 23.1443, - 1.9417 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 17372, - 17447, - 0 - ] - }, - "from": [ - 23.1443, - 1.9417 - ], - "tag": null, - "to": [ - 22.4727, - 0.9811 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 17453, - 17530, - 0 - ] - }, - "from": [ - 22.4727, - 0.9811 - ], - "tag": null, - "to": [ - 22.483, - 0.6077 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 17536, - 17612, - 0 - ] - }, - "from": [ - 22.483, - 0.6077 - ], - "tag": null, - "to": [ - 22.5865, - 0.1847 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 17618, - 17693, - 0 - ] - }, - "from": [ - 22.5865, - 0.1847 - ], - "tag": null, - "to": [ - 23.0386, - 0.0724 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 17699, - 17774, - 0 - ] - }, - "from": [ - 23.0386, - 0.0724 - ], - "tag": null, - "to": [ - 22.1564, - -0.6431 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 17780, - 17832, - 0 - ] - }, - "from": [ - 22.1564, - -0.6431 - ], - "tag": null, - "to": [ - 23.076, - -0.3739 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 17838, - 17912, - 0 - ] - }, - "from": [ - 23.076, - -0.3739 - ], - "tag": null, - "to": [ - 23.7859, - -0.2568 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 17918, - 17993, - 0 - ] - }, - "from": [ - 23.7859, - -0.2568 - ], - "tag": null, - "to": [ - 23.4071, - 0.4538 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 17999, - 18076, - 0 - ] - }, - "from": [ - 23.4071, - 0.4538 - ], - "tag": null, - "to": [ - 23.1098, - 0.3873 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 18082, - 18157, - 0 - ] - }, - "from": [ - 23.1098, - 0.3873 - ], - "tag": null, - "to": [ - 23.3395, - -0.3729 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 18163, - 18238, - 0 - ] - }, - "from": [ - 23.3395, - -0.3729 - ], - "tag": null, - "to": [ - 22.7038, - -0.1783 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 18244, - 18296, - 0 - ] - }, - "from": [ - 22.7038, - -0.1783 - ], - "tag": null, - "to": [ - 23.276, - 0.1106 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 18302, - 18378, - 0 - ] - }, - "from": [ - 23.276, - 0.1106 - ], - "tag": null, - "to": [ - 22.3179, - 0.0881 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 18384, - 18458, - 0 - ] - }, - "from": [ - 22.3179, - 0.0881 - ], - "tag": null, - "to": [ - 22.6479, - -0.7472 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 18464, - 18538, - 0 - ] - }, - "from": [ - 22.6479, - -0.7472 - ], - "tag": null, - "to": [ - 23.3913, - -1.5392 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 18544, - 18596, - 0 - ] - }, - "from": [ - 23.3913, - -1.5392 - ], - "tag": null, - "to": [ - 24.3849, - -0.6349 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 18602, - 18676, - 0 - ] - }, - "from": [ - 24.3849, - -0.6349 - ], - "tag": null, - "to": [ - 23.8813, - -0.1198 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 18682, - 18734, - 0 - ] - }, - "from": [ - 23.8813, - -0.1198 - ], - "tag": null, - "to": [ - 24.4339, - 0.6414 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 18740, - 18814, - 0 - ] - }, - "from": [ - 24.4339, - 0.6414 - ], - "tag": null, - "to": [ - 25.2933, - 0.7256 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 18820, - 18894, - 0 - ] - }, - "from": [ - 25.2933, - 0.7256 - ], - "tag": null, - "to": [ - 24.4752, - -0.178 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 18900, - 18975, - 0 - ] - }, - "from": [ - 24.4752, - -0.178 - ], - "tag": null, - "to": [ - 24.7917, - -0.4199 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 18981, - 19058, - 0 - ] - }, - "from": [ - 24.7917, - -0.4199 - ], - "tag": null, - "to": [ - 24.3478, - -0.679 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 19064, - 19140, - 0 - ] - }, - "from": [ - 24.3478, - -0.679 - ], - "tag": null, - "to": [ - 23.6873, - -1.0825 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 19146, - 19221, - 0 - ] - }, - "from": [ - 23.6873, - -1.0825 - ], - "tag": null, - "to": [ - 22.9703, - -0.848 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 19227, - 19303, - 0 - ] - }, - "from": [ - 22.9703, - -0.848 - ], - "tag": null, - "to": [ - 22.7134, - -1.2983 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 19309, - 19383, - 0 - ] - }, - "from": [ - 22.7134, - -1.2983 - ], - "tag": null, - "to": [ - 23.3886, - -2.2693 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 19389, - 19463, - 0 - ] - }, - "from": [ - 23.3886, - -2.2693 - ], - "tag": null, - "to": [ - 22.8197, - -1.6774 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 19469, - 19543, - 0 - ] - }, - "from": [ - 22.8197, - -1.6774 - ], - "tag": null, - "to": [ - 21.9868, - -1.2096 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 19549, - 19625, - 0 - ] - }, - "from": [ - 21.9868, - -1.2096 - ], - "tag": null, - "to": [ - 21.1757, - -1.6278 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 19631, - 19706, - 0 - ] - }, - "from": [ - 21.1757, - -1.6278 - ], - "tag": null, - "to": [ - 21.2138, - -1.3711 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 19712, - 19787, - 0 - ] - }, - "from": [ - 21.2138, - -1.3711 - ], - "tag": null, - "to": [ - 21.4533, - -0.9342 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 19793, - 19868, - 0 - ] - }, - "from": [ - 21.4533, - -0.9342 - ], - "tag": null, - "to": [ - 21.2905, - -0.1277 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 19874, - 19951, - 0 - ] - }, - "from": [ - 21.2905, - -0.1277 - ], - "tag": null, - "to": [ - 21.2007, - -0.2166 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 19957, - 20032, - 0 - ] - }, - "from": [ - 21.2007, - -0.2166 - ], - "tag": null, - "to": [ - 22.1211, - -0.39 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 20038, - 20115, - 0 - ] - }, - "from": [ - 22.1211, - -0.39 - ], - "tag": null, - "to": [ - 22.1228, - -0.9079 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 20121, - 20195, - 0 - ] - }, - "from": [ - 22.1228, - -0.9079 - ], - "tag": null, - "to": [ - 22.7435, - -1.7812 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 20201, - 20275, - 0 - ] - }, - "from": [ - 22.7435, - -1.7812 - ], - "tag": null, - "to": [ - 21.9658, - -1.021 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 20281, - 20333, - 0 - ] - }, - "from": [ - 21.9658, - -1.021 - ], - "tag": null, - "to": [ - 22.5098, - -0.176 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 20339, - 20416, - 0 - ] - }, - "from": [ - 22.5098, - -0.176 - ], - "tag": null, - "to": [ - 22.3794, - -0.164 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 20422, - 20498, - 0 - ] - }, - "from": [ - 22.3794, - -0.164 - ], - "tag": null, - "to": [ - 22.2138, - -0.3717 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 20504, - 20580, - 0 - ] - }, - "from": [ - 22.2138, - -0.3717 - ], - "tag": null, - "to": [ - 22.1175, - -0.4259 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 20586, - 20637, - 0 - ] - }, - "from": [ - 22.1175, - -0.4259 - ], - "tag": null, - "to": [ - 23.0196, - -0.03 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 20643, - 20719, - 0 - ] - }, - "from": [ - 23.0196, - -0.03 - ], - "tag": null, - "to": [ - 23.2996, - -0.2078 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 20725, - 20776, - 0 - ] - }, - "from": [ - 23.2996, - -0.2078 - ], - "tag": null, - "to": [ - 23.8232, - 0.4865 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 20782, - 20857, - 0 - ] - }, - "from": [ - 23.8232, - 0.4865 - ], - "tag": null, - "to": [ - 24.2146, - -0.2975 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 20863, - 20915, - 0 - ] - }, - "from": [ - 24.2146, - -0.2975 - ], - "tag": null, - "to": [ - 25.056, - 0.2421 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 20921, - 20995, - 0 - ] - }, - "from": [ - 25.056, - 0.2421 - ], - "tag": null, - "to": [ - 25.6697, - 0.4633 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 21001, - 21053, - 0 - ] - }, - "from": [ - 25.6697, - 0.4633 - ], - "tag": null, - "to": [ - 26.5528, - 1.163 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 21059, - 21135, - 0 - ] - }, - "from": [ - 26.5528, - 1.163 - ], - "tag": null, - "to": [ - 26.1399, - 0.7477 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 21141, - 21215, - 0 - ] - }, - "from": [ - 26.1399, - 0.7477 - ], - "tag": null, - "to": [ - 26.6568, - -0.1609 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 21221, - 21295, - 0 - ] - }, - "from": [ - 26.6568, - -0.1609 - ], - "tag": null, - "to": [ - 27.332, - -1.1318 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 21301, - 21375, - 0 - ] - }, - "from": [ - 27.332, - -1.1318 - ], - "tag": null, - "to": [ - 26.7631, - -0.5399 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 21381, - 21455, - 0 - ] - }, - "from": [ - 26.7631, - -0.5399 - ], - "tag": null, - "to": [ - 27.7095, - -0.8084 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 21461, - 21513, - 0 - ] - }, - "from": [ - 27.7095, - -0.8084 - ], - "tag": null, - "to": [ - 28.2337, - 0.0928 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 21519, - 21595, - 0 - ] - }, - "from": [ - 28.2337, - 0.0928 - ], - "tag": null, - "to": [ - 28.0911, - -0.4267 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 21601, - 21676, - 0 - ] - }, - "from": [ - 28.0911, - -0.4267 - ], - "tag": null, - "to": [ - 27.6624, - -0.849 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 21682, - 21758, - 0 - ] - }, - "from": [ - 27.6624, - -0.849 - ], - "tag": null, - "to": [ - 27.5693, - -1.7553 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 21764, - 21838, - 0 - ] - }, - "from": [ - 27.5693, - -1.7553 - ], - "tag": null, - "to": [ - 27.2925, - -1.0737 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 21844, - 21918, - 0 - ] - }, - "from": [ - 27.2925, - -1.0737 - ], - "tag": null, - "to": [ - 28.2722, - -1.1559 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 21924, - 21998, - 0 - ] - }, - "from": [ - 28.2722, - -1.1559 - ], - "tag": null, - "to": [ - 27.4055, - -1.457 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 22004, - 22078, - 0 - ] - }, - "from": [ - 27.4055, - -1.457 - ], - "tag": null, - "to": [ - 27.9429, - -1.4367 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 22084, - 22158, - 0 - ] - }, - "from": [ - 27.9429, - -1.4367 - ], - "tag": null, - "to": [ - 28.8762, - -2.0595 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 22164, - 22240, - 0 - ] - }, - "from": [ - 28.8762, - -2.0595 - ], - "tag": null, - "to": [ - 29.0567, - -2.4285 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 22246, - 22298, - 0 - ] - }, - "from": [ - 29.0567, - -2.4285 - ], - "tag": null, - "to": [ - 29.5951, - -2.1907 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 22304, - 22379, - 0 - ] - }, - "from": [ - 29.5951, - -2.1907 - ], - "tag": null, - "to": [ - 29.9856, - -2.048 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 22385, - 22459, - 0 - ] - }, - "from": [ - 29.9856, - -2.048 - ], - "tag": null, - "to": [ - 30.0834, - -1.0572 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 22465, - 22539, - 0 - ] - }, - "from": [ - 30.0834, - -1.0572 - ], - "tag": null, - "to": [ - 30.6121, - -1.8497 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 22545, - 22619, - 0 - ] - }, - "from": [ - 30.6121, - -1.8497 - ], - "tag": null, - "to": [ - 30.9911, - -1.7257 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 22625, - 22699, - 0 - ] - }, - "from": [ - 30.9911, - -1.7257 - ], - "tag": null, - "to": [ - 30.0426, - -1.0527 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 22705, - 22780, - 0 - ] - }, - "from": [ - 30.0426, - -1.0527 - ], - "tag": null, - "to": [ - 30.7877, - -1.2659 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 22786, - 22861, - 0 - ] - }, - "from": [ - 30.7877, - -1.2659 - ], - "tag": null, - "to": [ - 30.9751, - -1.4255 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 22867, - 22943, - 0 - ] - }, - "from": [ - 30.9751, - -1.4255 - ], - "tag": null, - "to": [ - 30.9178, - -1.9692 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 22949, - 23025, - 0 - ] - }, - "from": [ - 30.9178, - -1.9692 - ], - "tag": null, - "to": [ - 30.8219, - -2.7226 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 23031, - 23107, - 0 - ] - }, - "from": [ - 30.8219, - -2.7226 - ], - "tag": null, - "to": [ - 30.6494, - -3.4895 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 23113, - 23165, - 0 - ] - }, - "from": [ - 30.6494, - -3.4895 - ], - "tag": null, - "to": [ - 31.5439, - -2.8801 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 23171, - 23246, - 0 - ] - }, - "from": [ - 31.5439, - -2.8801 - ], - "tag": null, - "to": [ - 31.1769, - -2.6681 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 23252, - 23326, - 0 - ] - }, - "from": [ - 31.1769, - -2.6681 - ], - "tag": null, - "to": [ - 30.7061, - -2.1776 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 23332, - 23406, - 0 - ] - }, - "from": [ - 30.7061, - -2.1776 - ], - "tag": null, - "to": [ - 29.8733, - -1.7099 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 23412, - 23488, - 0 - ] - }, - "from": [ - 29.8733, - -1.7099 - ], - "tag": null, - "to": [ - 29.0621, - -2.128 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 23494, - 23569, - 0 - ] - }, - "from": [ - 29.0621, - -2.128 - ], - "tag": null, - "to": [ - 29.1002, - -1.8714 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 23575, - 23650, - 0 - ] - }, - "from": [ - 29.1002, - -1.8714 - ], - "tag": null, - "to": [ - 29.3397, - -1.4344 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 23656, - 23731, - 0 - ] - }, - "from": [ - 29.3397, - -1.4344 - ], - "tag": null, - "to": [ - 29.1769, - -0.628 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 23737, - 23814, - 0 - ] - }, - "from": [ - 29.1769, - -0.628 - ], - "tag": null, - "to": [ - 29.0872, - -0.7169 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 23820, - 23895, - 0 - ] - }, - "from": [ - 29.0872, - -0.7169 - ], - "tag": null, - "to": [ - 30.0075, - -0.8903 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 23901, - 23978, - 0 - ] - }, - "from": [ - 30.0075, - -0.8903 - ], - "tag": null, - "to": [ - 30.0093, - -1.4081 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 23984, - 24058, - 0 - ] - }, - "from": [ - 30.0093, - -1.4081 - ], - "tag": null, - "to": [ - 30.6299, - -2.2815 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 24064, - 24138, - 0 - ] - }, - "from": [ - 30.6299, - -2.2815 - ], - "tag": null, - "to": [ - 29.8523, - -1.5212 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 24144, - 24196, - 0 - ] - }, - "from": [ - 29.8523, - -1.5212 - ], - "tag": null, - "to": [ - 30.3962, - -0.6763 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 24202, - 24279, - 0 - ] - }, - "from": [ - 30.3962, - -0.6763 - ], - "tag": null, - "to": [ - 30.2658, - -0.6642 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 24285, - 24361, - 0 - ] - }, - "from": [ - 30.2658, - -0.6642 - ], - "tag": null, - "to": [ - 30.1002, - -0.872 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 24367, - 24443, - 0 - ] - }, - "from": [ - 30.1002, - -0.872 - ], - "tag": null, - "to": [ - 30.0039, - -0.9262 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 24449, - 24500, - 0 - ] - }, - "from": [ - 30.0039, - -0.9262 - ], - "tag": null, - "to": [ - 30.906, - -0.5303 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 24506, - 24582, - 0 - ] - }, - "from": [ - 30.906, - -0.5303 - ], - "tag": null, - "to": [ - 31.186, - -0.708 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 24588, - 24639, - 0 - ] - }, - "from": [ - 31.186, - -0.708 - ], - "tag": null, - "to": [ - 31.7096, - -0.0137 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 24645, - 24720, - 0 - ] - }, - "from": [ - 31.7096, - -0.0137 - ], - "tag": null, - "to": [ - 32.101, - -0.7977 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 24726, - 24778, - 0 - ] - }, - "from": [ - 32.101, - -0.7977 - ], - "tag": null, - "to": [ - 32.9424, - -0.2581 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 24784, - 24858, - 0 - ] - }, - "from": [ - 32.9424, - -0.2581 - ], - "tag": null, - "to": [ - 33.5562, - -0.0369 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 24864, - 24916, - 0 - ] - }, - "from": [ - 33.5562, - -0.0369 - ], - "tag": null, - "to": [ - 34.4392, - 0.6627 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 24922, - 24998, - 0 - ] - }, - "from": [ - 34.4392, - 0.6627 - ], - "tag": null, - "to": [ - 34.0263, - 0.2475 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 25004, - 25078, - 0 - ] - }, - "from": [ - 34.0263, - 0.2475 - ], - "tag": null, - "to": [ - 34.5433, - -0.6611 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 25084, - 25159, - 0 - ] - }, - "from": [ - 34.5433, - -0.6611 - ], - "tag": null, - "to": [ - 33.8716, - -1.6217 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 25165, - 25242, - 0 - ] - }, - "from": [ - 33.8716, - -1.6217 - ], - "tag": null, - "to": [ - 33.8819, - -1.9951 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 25248, - 25324, - 0 - ] - }, - "from": [ - 33.8819, - -1.9951 - ], - "tag": null, - "to": [ - 33.9855, - -2.418 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 25330, - 25405, - 0 - ] - }, - "from": [ - 33.9855, - -2.418 - ], - "tag": null, - "to": [ - 34.4375, - -2.5304 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 25411, - 25486, - 0 - ] - }, - "from": [ - 34.4375, - -2.5304 - ], - "tag": null, - "to": [ - 33.5554, - -3.2459 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 25492, - 25544, - 0 - ] - }, - "from": [ - 33.5554, - -3.2459 - ], - "tag": null, - "to": [ - 34.475, - -2.9767 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 25550, - 25624, - 0 - ] - }, - "from": [ - 34.475, - -2.9767 - ], - "tag": null, - "to": [ - 35.1849, - -2.8596 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 25630, - 25705, - 0 - ] - }, - "from": [ - 35.1849, - -2.8596 - ], - "tag": null, - "to": [ - 34.8061, - -2.1489 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 25711, - 25788, - 0 - ] - }, - "from": [ - 34.8061, - -2.1489 - ], - "tag": null, - "to": [ - 34.5088, - -2.2154 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 25794, - 25869, - 0 - ] - }, - "from": [ - 34.5088, - -2.2154 - ], - "tag": null, - "to": [ - 34.7385, - -2.9756 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 25875, - 25950, - 0 - ] - }, - "from": [ - 34.7385, - -2.9756 - ], - "tag": null, - "to": [ - 34.1028, - -2.781 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 25956, - 26008, - 0 - ] - }, - "from": [ - 34.1028, - -2.781 - ], - "tag": null, - "to": [ - 34.6749, - -2.4922 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 26014, - 26090, - 0 - ] - }, - "from": [ - 34.6749, - -2.4922 - ], - "tag": null, - "to": [ - 33.7169, - -2.5146 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 26096, - 26170, - 0 - ] - }, - "from": [ - 33.7169, - -2.5146 - ], - "tag": null, - "to": [ - 34.0468, - -3.35 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 26176, - 26250, - 0 - ] - }, - "from": [ - 34.0468, - -3.35 - ], - "tag": null, - "to": [ - 34.7903, - -4.142 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 26256, - 26308, - 0 - ] - }, - "from": [ - 34.7903, - -4.142 - ], - "tag": null, - "to": [ - 35.7839, - -3.2377 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 26314, - 26388, - 0 - ] - }, - "from": [ - 35.7839, - -3.2377 - ], - "tag": null, - "to": [ - 35.2803, - -2.7226 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 26394, - 26446, - 0 - ] - }, - "from": [ - 35.2803, - -2.7226 - ], - "tag": null, - "to": [ - 35.8329, - -1.9613 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 26452, - 26526, - 0 - ] - }, - "from": [ - 35.8329, - -1.9613 - ], - "tag": null, - "to": [ - 36.6922, - -1.8772 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 26532, - 26606, - 0 - ] - }, - "from": [ - 36.6922, - -1.8772 - ], - "tag": null, - "to": [ - 35.8741, - -2.7807 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 26612, - 26687, - 0 - ] - }, - "from": [ - 35.8741, - -2.7807 - ], - "tag": null, - "to": [ - 36.1907, - -3.0226 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 26693, - 26770, - 0 - ] - }, - "from": [ - 36.1907, - -3.0226 - ], - "tag": null, - "to": [ - 35.7468, - -3.2818 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 26776, - 26852, - 0 - ] - }, - "from": [ - 35.7468, - -3.2818 - ], - "tag": null, - "to": [ - 35.0863, - -3.6853 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 26858, - 26933, - 0 - ] - }, - "from": [ - 35.0863, - -3.6853 - ], - "tag": null, - "to": [ - 34.3692, - -3.4508 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 26939, - 27015, - 0 - ] - }, - "from": [ - 34.3692, - -3.4508 - ], - "tag": null, - "to": [ - 34.1124, - -3.9011 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 27021, - 27095, - 0 - ] - }, - "from": [ - 34.1124, - -3.9011 - ], - "tag": null, - "to": [ - 34.7876, - -4.872 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 27101, - 27175, - 0 - ] - }, - "from": [ - 34.7876, - -4.872 - ], - "tag": null, - "to": [ - 34.2186, - -4.2801 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 27181, - 27255, - 0 - ] - }, - "from": [ - 34.2186, - -4.2801 - ], - "tag": null, - "to": [ - 33.3858, - -3.8124 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 27261, - 27337, - 0 - ] - }, - "from": [ - 33.3858, - -3.8124 - ], - "tag": null, - "to": [ - 32.5747, - -4.2305 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 27343, - 27418, - 0 - ] - }, - "from": [ - 32.5747, - -4.2305 - ], - "tag": null, - "to": [ - 32.6127, - -3.9739 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 27424, - 27499, - 0 - ] - }, - "from": [ - 32.6127, - -3.9739 - ], - "tag": null, - "to": [ - 32.8522, - -3.5369 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 27505, - 27580, - 0 - ] - }, - "from": [ - 32.8522, - -3.5369 - ], - "tag": null, - "to": [ - 32.6894, - -2.7305 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 27586, - 27663, - 0 - ] - }, - "from": [ - 32.6894, - -2.7305 - ], - "tag": null, - "to": [ - 32.5997, - -2.8194 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 27669, - 27744, - 0 - ] - }, - "from": [ - 32.5997, - -2.8194 - ], - "tag": null, - "to": [ - 33.5201, - -2.9928 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 27750, - 27827, - 0 - ] - }, - "from": [ - 33.5201, - -2.9928 - ], - "tag": null, - "to": [ - 33.5218, - -3.5107 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 27833, - 27907, - 0 - ] - }, - "from": [ - 33.5218, - -3.5107 - ], - "tag": null, - "to": [ - 34.1424, - -4.384 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 27913, - 27987, - 0 - ] - }, - "from": [ - 34.1424, - -4.384 - ], - "tag": null, - "to": [ - 33.3648, - -3.6237 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 27993, - 28045, - 0 - ] - }, - "from": [ - 33.3648, - -3.6237 - ], - "tag": null, - "to": [ - 33.9087, - -2.7788 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 28051, - 28128, - 0 - ] - }, - "from": [ - 33.9087, - -2.7788 - ], - "tag": null, - "to": [ - 33.7784, - -2.7668 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 28134, - 28210, - 0 - ] - }, - "from": [ - 33.7784, - -2.7668 - ], - "tag": null, - "to": [ - 33.6127, - -2.9745 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 28216, - 28292, - 0 - ] - }, - "from": [ - 33.6127, - -2.9745 - ], - "tag": null, - "to": [ - 33.5164, - -3.0287 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 28298, - 28349, - 0 - ] - }, - "from": [ - 33.5164, - -3.0287 - ], - "tag": null, - "to": [ - 34.4186, - -2.6328 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 28355, - 28431, - 0 - ] - }, - "from": [ - 34.4186, - -2.6328 - ], - "tag": null, - "to": [ - 34.6985, - -2.8106 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 28437, - 28488, - 0 - ] - }, - "from": [ - 34.6985, - -2.8106 - ], - "tag": null, - "to": [ - 35.2221, - -2.1163 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 28494, - 28569, - 0 - ] - }, - "from": [ - 35.2221, - -2.1163 - ], - "tag": null, - "to": [ - 35.6135, - -2.9002 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 28575, - 28627, - 0 - ] - }, - "from": [ - 35.6135, - -2.9002 - ], - "tag": null, - "to": [ - 36.4549, - -2.3607 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 28633, - 28707, - 0 - ] - }, - "from": [ - 36.4549, - -2.3607 - ], - "tag": null, - "to": [ - 37.0687, - -2.1395 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 28713, - 28765, - 0 - ] - }, - "from": [ - 37.0687, - -2.1395 - ], - "tag": null, - "to": [ - 37.9518, - -1.4398 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 28771, - 28846, - 0 - ] - }, - "from": [ - 37.9518, - -1.4398 - ], - "tag": null, - "to": [ - 37.5847, - -1.2278 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 28852, - 28926, - 0 - ] - }, - "from": [ - 37.5847, - -1.2278 - ], - "tag": null, - "to": [ - 37.114, - -0.7373 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 28932, - 29006, - 0 - ] - }, - "from": [ - 37.114, - -0.7373 - ], - "tag": null, - "to": [ - 36.2812, - -0.2695 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 29012, - 29088, - 0 - ] - }, - "from": [ - 36.2812, - -0.2695 - ], - "tag": null, - "to": [ - 35.47, - -0.6877 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 29094, - 29169, - 0 - ] - }, - "from": [ - 35.47, - -0.6877 - ], - "tag": null, - "to": [ - 35.5081, - -0.431 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 29175, - 29250, - 0 - ] - }, - "from": [ - 35.5081, - -0.431 - ], - "tag": null, - "to": [ - 35.7476, - 0.0059 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 29256, - 29331, - 0 - ] - }, - "from": [ - 35.7476, - 0.0059 - ], - "tag": null, - "to": [ - 35.5848, - 0.8124 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 29337, - 29414, - 0 - ] - }, - "from": [ - 35.5848, - 0.8124 - ], - "tag": null, - "to": [ - 35.4951, - 0.7235 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 29420, - 29495, - 0 - ] - }, - "from": [ - 35.4951, - 0.7235 - ], - "tag": null, - "to": [ - 36.4154, - 0.5501 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 29501, - 29578, - 0 - ] - }, - "from": [ - 36.4154, - 0.5501 - ], - "tag": null, - "to": [ - 36.4172, - 0.0322 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 29584, - 29658, - 0 - ] - }, - "from": [ - 36.4172, - 0.0322 - ], - "tag": null, - "to": [ - 37.0378, - -0.8411 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 29664, - 29738, - 0 - ] - }, - "from": [ - 37.0378, - -0.8411 - ], - "tag": null, - "to": [ - 36.2601, - -0.0809 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 29744, - 29796, - 0 - ] - }, - "from": [ - 36.2601, - -0.0809 - ], - "tag": null, - "to": [ - 36.8041, - 0.7641 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 29802, - 29879, - 0 - ] - }, - "from": [ - 36.8041, - 0.7641 - ], - "tag": null, - "to": [ - 36.6737, - 0.7761 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 29885, - 29961, - 0 - ] - }, - "from": [ - 36.6737, - 0.7761 - ], - "tag": null, - "to": [ - 36.5081, - 0.5684 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 29967, - 30043, - 0 - ] - }, - "from": [ - 36.5081, - 0.5684 - ], - "tag": null, - "to": [ - 36.4118, - 0.5142 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 30049, - 30100, - 0 - ] - }, - "from": [ - 36.4118, - 0.5142 - ], - "tag": null, - "to": [ - 37.3139, - 0.9101 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 30106, - 30182, - 0 - ] - }, - "from": [ - 37.3139, - 0.9101 - ], - "tag": null, - "to": [ - 37.5939, - 0.7323 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 30188, - 30239, - 0 - ] - }, - "from": [ - 37.5939, - 0.7323 - ], - "tag": null, - "to": [ - 38.1175, - 1.4266 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 30245, - 30320, - 0 - ] - }, - "from": [ - 38.1175, - 1.4266 - ], - "tag": null, - "to": [ - 38.5089, - 0.6426 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 30326, - 30378, - 0 - ] - }, - "from": [ - 38.5089, - 0.6426 - ], - "tag": null, - "to": [ - 39.3503, - 1.1822 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 30384, - 30458, - 0 - ] - }, - "from": [ - 39.3503, - 1.1822 - ], - "tag": null, - "to": [ - 39.9641, - 1.4034 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 30464, - 30516, - 0 - ] - }, - "from": [ - 39.9641, - 1.4034 - ], - "tag": null, - "to": [ - 40.8471, - 2.1031 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 30522, - 30598, - 0 - ] - }, - "from": [ - 40.8471, - 2.1031 - ], - "tag": null, - "to": [ - 40.4342, - 1.6878 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 30604, - 30678, - 0 - ] - }, - "from": [ - 40.4342, - 1.6878 - ], - "tag": null, - "to": [ - 40.9512, - 0.7792 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 30684, - 30759, - 0 - ] - }, - "from": [ - 40.9512, - 0.7792 - ], - "tag": null, - "to": [ - 40.2795, - -0.1813 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 30765, - 30842, - 0 - ] - }, - "from": [ - 40.2795, - -0.1813 - ], - "tag": null, - "to": [ - 40.2898, - -0.5548 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 30848, - 30924, - 0 - ] - }, - "from": [ - 40.2898, - -0.5548 - ], - "tag": null, - "to": [ - 40.3934, - -0.9777 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 30930, - 31005, - 0 - ] - }, - "from": [ - 40.3934, - -0.9777 - ], - "tag": null, - "to": [ - 40.8454, - -1.09 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 31011, - 31086, - 0 - ] - }, - "from": [ - 40.8454, - -1.09 - ], - "tag": null, - "to": [ - 39.9633, - -1.8055 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 31092, - 31144, - 0 - ] - }, - "from": [ - 39.9633, - -1.8055 - ], - "tag": null, - "to": [ - 40.8828, - -1.5364 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 31150, - 31224, - 0 - ] - }, - "from": [ - 40.8828, - -1.5364 - ], - "tag": null, - "to": [ - 41.5927, - -1.4193 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 31230, - 31305, - 0 - ] - }, - "from": [ - 41.5927, - -1.4193 - ], - "tag": null, - "to": [ - 41.214, - -0.7086 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 31311, - 31388, - 0 - ] - }, - "from": [ - 41.214, - -0.7086 - ], - "tag": null, - "to": [ - 40.9167, - -0.7751 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 31394, - 31469, - 0 - ] - }, - "from": [ - 40.9167, - -0.7751 - ], - "tag": null, - "to": [ - 41.1464, - -1.5353 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 31475, - 31550, - 0 - ] - }, - "from": [ - 41.1464, - -1.5353 - ], - "tag": null, - "to": [ - 40.5107, - -1.3407 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 31556, - 31608, - 0 - ] - }, - "from": [ - 40.5107, - -1.3407 - ], - "tag": null, - "to": [ - 41.0828, - -1.0518 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 31614, - 31690, - 0 - ] - }, - "from": [ - 41.0828, - -1.0518 - ], - "tag": null, - "to": [ - 40.1248, - -1.0743 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 31696, - 31770, - 0 - ] - }, - "from": [ - 40.1248, - -1.0743 - ], - "tag": null, - "to": [ - 40.4547, - -1.9097 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 31776, - 31850, - 0 - ] - }, - "from": [ - 40.4547, - -1.9097 - ], - "tag": null, - "to": [ - 41.1982, - -2.7016 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 31856, - 31908, - 0 - ] - }, - "from": [ - 41.1982, - -2.7016 - ], - "tag": null, - "to": [ - 42.1917, - -1.7974 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 31914, - 31988, - 0 - ] - }, - "from": [ - 42.1917, - -1.7974 - ], - "tag": null, - "to": [ - 41.6882, - -1.2823 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 31994, - 32046, - 0 - ] - }, - "from": [ - 41.6882, - -1.2823 - ], - "tag": null, - "to": [ - 42.2408, - -0.521 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 32052, - 32126, - 0 - ] - }, - "from": [ - 42.2408, - -0.521 - ], - "tag": null, - "to": [ - 43.1001, - -0.4369 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 32132, - 32206, - 0 - ] - }, - "from": [ - 43.1001, - -0.4369 - ], - "tag": null, - "to": [ - 42.282, - -1.3404 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 32212, - 32287, - 0 - ] - }, - "from": [ - 42.282, - -1.3404 - ], - "tag": null, - "to": [ - 42.5986, - -1.5823 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 32293, - 32370, - 0 - ] - }, - "from": [ - 42.5986, - -1.5823 - ], - "tag": null, - "to": [ - 42.1547, - -1.8414 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 32376, - 32452, - 0 - ] - }, - "from": [ - 42.1547, - -1.8414 - ], - "tag": null, - "to": [ - 41.4942, - -2.245 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 32458, - 32533, - 0 - ] - }, - "from": [ - 41.4942, - -2.245 - ], - "tag": null, - "to": [ - 40.7771, - -2.0104 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 32539, - 32615, - 0 - ] - }, - "from": [ - 40.7771, - -2.0104 - ], - "tag": null, - "to": [ - 40.5203, - -2.4607 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 32621, - 32695, - 0 - ] - }, - "from": [ - 40.5203, - -2.4607 - ], - "tag": null, - "to": [ - 41.1955, - -3.4317 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 32701, - 32775, - 0 - ] - }, - "from": [ - 41.1955, - -3.4317 - ], - "tag": null, - "to": [ - 40.6265, - -2.8398 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 32781, - 32855, - 0 - ] - }, - "from": [ - 40.6265, - -2.8398 - ], - "tag": null, - "to": [ - 39.7937, - -2.372 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 32861, - 32937, - 0 - ] - }, - "from": [ - 39.7937, - -2.372 - ], - "tag": null, - "to": [ - 38.9826, - -2.7902 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 32943, - 33018, - 0 - ] - }, - "from": [ - 38.9826, - -2.7902 - ], - "tag": null, - "to": [ - 39.0206, - -2.5335 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 33024, - 33099, - 0 - ] - }, - "from": [ - 39.0206, - -2.5335 - ], - "tag": null, - "to": [ - 39.2601, - -2.0966 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 33105, - 33180, - 0 - ] - }, - "from": [ - 39.2601, - -2.0966 - ], - "tag": null, - "to": [ - 39.0973, - -1.2902 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 33186, - 33263, - 0 - ] - }, - "from": [ - 39.0973, - -1.2902 - ], - "tag": null, - "to": [ - 39.0076, - -1.379 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 33269, - 33344, - 0 - ] - }, - "from": [ - 39.0076, - -1.379 - ], - "tag": null, - "to": [ - 39.9279, - -1.5525 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 33350, - 33427, - 0 - ] - }, - "from": [ - 39.9279, - -1.5525 - ], - "tag": null, - "to": [ - 39.9297, - -2.0703 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 33433, - 33507, - 0 - ] - }, - "from": [ - 39.9297, - -2.0703 - ], - "tag": null, - "to": [ - 40.5503, - -2.9437 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 33513, - 33587, - 0 - ] - }, - "from": [ - 40.5503, - -2.9437 - ], - "tag": null, - "to": [ - 39.7727, - -2.1834 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 33593, - 33645, - 0 - ] - }, - "from": [ - 39.7727, - -2.1834 - ], - "tag": null, - "to": [ - 40.3166, - -1.3385 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 33651, - 33728, - 0 - ] - }, - "from": [ - 40.3166, - -1.3385 - ], - "tag": null, - "to": [ - 40.1863, - -1.3264 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 33734, - 33810, - 0 - ] - }, - "from": [ - 40.1863, - -1.3264 - ], - "tag": null, - "to": [ - 40.0206, - -1.5342 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 33816, - 33892, - 0 - ] - }, - "from": [ - 40.0206, - -1.5342 - ], - "tag": null, - "to": [ - 39.9243, - -1.5883 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 33898, - 33949, - 0 - ] - }, - "from": [ - 39.9243, - -1.5883 - ], - "tag": null, - "to": [ - 40.8264, - -1.1924 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 33955, - 34031, - 0 - ] - }, - "from": [ - 40.8264, - -1.1924 - ], - "tag": null, - "to": [ - 41.1064, - -1.3702 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 34037, - 34088, - 0 - ] - }, - "from": [ - 41.1064, - -1.3702 - ], - "tag": null, - "to": [ - 41.63, - -0.6759 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 34094, - 34169, - 0 - ] - }, - "from": [ - 41.63, - -0.6759 - ], - "tag": null, - "to": [ - 42.0214, - -1.4599 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 34175, - 34227, - 0 - ] - }, - "from": [ - 42.0214, - -1.4599 - ], - "tag": null, - "to": [ - 42.8628, - -0.9203 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 34233, - 34307, - 0 - ] - }, - "from": [ - 42.8628, - -0.9203 - ], - "tag": null, - "to": [ - 43.4766, - -0.6991 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 34313, - 34389, - 0 - ] - }, - "from": [ - 43.4766, - -0.6991 - ], - "tag": null, - "to": [ - 43.3808, - -1.4525 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 34395, - 34471, - 0 - ] - }, - "from": [ - 43.3808, - -1.4525 - ], - "tag": null, - "to": [ - 43.2082, - -2.2194 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 34477, - 34529, - 0 - ] - }, - "from": [ - 43.2082, - -2.2194 - ], - "tag": null, - "to": [ - 44.1027, - -1.6101 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 34535, - 34611, - 0 - ] - }, - "from": [ - 44.1027, - -1.6101 - ], - "tag": null, - "to": [ - 43.6898, - -2.0254 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 34617, - 34691, - 0 - ] - }, - "from": [ - 43.6898, - -2.0254 - ], - "tag": null, - "to": [ - 44.2068, - -2.9339 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 34697, - 34771, - 0 - ] - }, - "from": [ - 44.2068, - -2.9339 - ], - "tag": null, - "to": [ - 44.882, - -3.9049 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 34777, - 34851, - 0 - ] - }, - "from": [ - 44.882, - -3.9049 - ], - "tag": null, - "to": [ - 44.313, - -3.313 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 34857, - 34931, - 0 - ] - }, - "from": [ - 44.313, - -3.313 - ], - "tag": null, - "to": [ - 45.2594, - -3.5815 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 34937, - 34989, - 0 - ] - }, - "from": [ - 45.2594, - -3.5815 - ], - "tag": null, - "to": [ - 45.7836, - -2.6803 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 34995, - 35071, - 0 - ] - }, - "from": [ - 45.7836, - -2.6803 - ], - "tag": null, - "to": [ - 45.6411, - -3.1997 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 35077, - 35152, - 0 - ] - }, - "from": [ - 45.6411, - -3.1997 - ], - "tag": null, - "to": [ - 45.2123, - -3.6221 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 35158, - 35234, - 0 - ] - }, - "from": [ - 45.2123, - -3.6221 - ], - "tag": null, - "to": [ - 45.1192, - -4.5284 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 35240, - 35314, - 0 - ] - }, - "from": [ - 45.1192, - -4.5284 - ], - "tag": null, - "to": [ - 44.8424, - -3.8468 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 35320, - 35394, - 0 - ] - }, - "from": [ - 44.8424, - -3.8468 - ], - "tag": null, - "to": [ - 45.8221, - -3.929 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 35400, - 35474, - 0 - ] - }, - "from": [ - 45.8221, - -3.929 - ], - "tag": null, - "to": [ - 44.9554, - -4.23 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 35480, - 35554, - 0 - ] - }, - "from": [ - 44.9554, - -4.23 - ], - "tag": null, - "to": [ - 45.4928, - -4.2098 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 35560, - 35634, - 0 - ] - }, - "from": [ - 45.4928, - -4.2098 - ], - "tag": null, - "to": [ - 46.4261, - -4.8326 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 35640, - 35716, - 0 - ] - }, - "from": [ - 46.4261, - -4.8326 - ], - "tag": null, - "to": [ - 46.6066, - -5.2015 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 35722, - 35774, - 0 - ] - }, - "from": [ - 46.6066, - -5.2015 - ], - "tag": null, - "to": [ - 47.1451, - -4.9638 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 35780, - 35855, - 0 - ] - }, - "from": [ - 47.1451, - -4.9638 - ], - "tag": null, - "to": [ - 47.5355, - -4.821 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 35861, - 35935, - 0 - ] - }, - "from": [ - 47.5355, - -4.821 - ], - "tag": null, - "to": [ - 47.6333, - -3.8303 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 35941, - 36015, - 0 - ] - }, - "from": [ - 47.6333, - -3.8303 - ], - "tag": null, - "to": [ - 48.162, - -4.6227 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 36021, - 36095, - 0 - ] - }, - "from": [ - 48.162, - -4.6227 - ], - "tag": null, - "to": [ - 48.541, - -4.4988 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 36101, - 36175, - 0 - ] - }, - "from": [ - 48.541, - -4.4988 - ], - "tag": null, - "to": [ - 47.5925, - -3.8258 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 36181, - 36256, - 0 - ] - }, - "from": [ - 47.5925, - -3.8258 - ], - "tag": null, - "to": [ - 48.3377, - -4.039 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 36262, - 36337, - 0 - ] - }, - "from": [ - 48.3377, - -4.039 - ], - "tag": null, - "to": [ - 48.525, - -4.1986 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 36343, - 36419, - 0 - ] - }, - "from": [ - 48.525, - -4.1986 - ], - "tag": null, - "to": [ - 48.4677, - -4.7422 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 36425, - 36501, - 0 - ] - }, - "from": [ - 48.4677, - -4.7422 - ], - "tag": null, - "to": [ - 48.3719, - -5.4956 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 36507, - 36583, - 0 - ] - }, - "from": [ - 48.3719, - -5.4956 - ], - "tag": null, - "to": [ - 48.1993, - -6.2625 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 36589, - 36641, - 0 - ] - }, - "from": [ - 48.1993, - -6.2625 - ], - "tag": null, - "to": [ - 49.0938, - -5.6532 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 36647, - 36721, - 0 - ] - }, - "from": [ - 49.0938, - -5.6532 - ], - "tag": null, - "to": [ - 48.4699, - -5.2478 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 36727, - 36802, - 0 - ] - }, - "from": [ - 48.4699, - -5.2478 - ], - "tag": null, - "to": [ - 48.6079, - -5.7266 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 36808, - 36882, - 0 - ] - }, - "from": [ - 48.6079, - -5.7266 - ], - "tag": null, - "to": [ - 47.6562, - -4.8646 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 36888, - 36940, - 0 - ] - }, - "from": [ - 47.6562, - -4.8646 - ], - "tag": null, - "to": [ - 48.5961, - -4.2319 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 36946, - 37022, - 0 - ] - }, - "from": [ - 48.5961, - -4.2319 - ], - "tag": null, - "to": [ - 47.7329, - -4.2158 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 37028, - 37103, - 0 - ] - }, - "from": [ - 47.7329, - -4.2158 - ], - "tag": null, - "to": [ - 47.9246, - -4.7074 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 37109, - 37185, - 0 - ] - }, - "from": [ - 47.9246, - -4.7074 - ], - "tag": null, - "to": [ - 47.0601, - -4.8218 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 37191, - 37268, - 0 - ] - }, - "from": [ - 47.0601, - -4.8218 - ], - "tag": null, - "to": [ - 47.031, - -5.3432 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 37274, - 37348, - 0 - ] - }, - "from": [ - 47.031, - -5.3432 - ], - "tag": null, - "to": [ - 46.1597, - -4.5566 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 37354, - 37406, - 0 - ] - }, - "from": [ - 46.1597, - -4.5566 - ], - "tag": null, - "to": [ - 47.0441, - -4.7391 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 37412, - 37486, - 0 - ] - }, - "from": [ - 47.0441, - -4.7391 - ], - "tag": null, - "to": [ - 46.3462, - -4.695 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 37492, - 37570, - 0 - ] - }, - "from": [ - 46.3462, - -4.695 - ], - "tag": null, - "to": [ - 45.8657, - -4.7236 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 37576, - 37652, - 0 - ] - }, - "from": [ - 45.8657, - -4.7236 - ], - "tag": null, - "to": [ - 46.2785, - -5.173 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 37658, - 37709, - 0 - ] - }, - "from": [ - 46.2785, - -5.173 - ], - "tag": null, - "to": [ - 47.0697, - -4.2795 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 37715, - 37789, - 0 - ] - }, - "from": [ - 47.0697, - -4.2795 - ], - "tag": null, - "to": [ - 47.7204, - -4.9685 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 37795, - 37870, - 0 - ] - }, - "from": [ - 47.7204, - -4.9685 - ], - "tag": null, - "to": [ - 47.8253, - -5.5153 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 37876, - 37951, - 0 - ] - }, - "from": [ - 47.8253, - -5.5153 - ], - "tag": null, - "to": [ - 47.2492, - -5.7793 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 37957, - 38031, - 0 - ] - }, - "from": [ - 47.2492, - -5.7793 - ], - "tag": null, - "to": [ - 47.6475, - -4.9756 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 38037, - 38089, - 0 - ] - }, - "from": [ - 47.6475, - -4.9756 - ], - "tag": null, - "to": [ - 46.9737, - -5.894 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 38095, - 38170, - 0 - ] - }, - "from": [ - 46.9737, - -5.894 - ], - "tag": null, - "to": [ - 46.1137, - -6.844 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 38176, - 38250, - 0 - ] - }, - "from": [ - 46.1137, - -6.844 - ], - "tag": null, - "to": [ - 46.7423, - -7.3626 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 38256, - 38330, - 0 - ] - }, - "from": [ - 46.7423, - -7.3626 - ], - "tag": null, - "to": [ - 47.0645, - -7.1164 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 38336, - 38411, - 0 - ] - }, - "from": [ - 47.0645, - -7.1164 - ], - "tag": null, - "to": [ - 47.262, - -7.8693 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 38417, - 38493, - 0 - ] - }, - "from": [ - 47.262, - -7.8693 - ], - "tag": null, - "to": [ - 46.8302, - -7.6799 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 38499, - 38573, - 0 - ] - }, - "from": [ - 46.8302, - -7.6799 - ], - "tag": null, - "to": [ - 47.7017, - -8.4015 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 38579, - 38654, - 0 - ] - }, - "from": [ - 47.7017, - -8.4015 - ], - "tag": null, - "to": [ - 47.3347, - -8.1895 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 38660, - 38734, - 0 - ] - }, - "from": [ - 47.3347, - -8.1895 - ], - "tag": null, - "to": [ - 46.8639, - -7.6989 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 38740, - 38814, - 0 - ] - }, - "from": [ - 46.8639, - -7.6989 - ], - "tag": null, - "to": [ - 46.0311, - -7.2312 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 38820, - 38896, - 0 - ] - }, - "from": [ - 46.0311, - -7.2312 - ], - "tag": null, - "to": [ - 45.2199, - -7.6493 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 38902, - 38977, - 0 - ] - }, - "from": [ - 45.2199, - -7.6493 - ], - "tag": null, - "to": [ - 45.258, - -7.3927 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 38983, - 39058, - 0 - ] - }, - "from": [ - 45.258, - -7.3927 - ], - "tag": null, - "to": [ - 45.4975, - -6.9558 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 39064, - 39139, - 0 - ] - }, - "from": [ - 45.4975, - -6.9558 - ], - "tag": null, - "to": [ - 45.3347, - -6.1493 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 39145, - 39222, - 0 - ] - }, - "from": [ - 45.3347, - -6.1493 - ], - "tag": null, - "to": [ - 45.245, - -6.2382 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 39228, - 39303, - 0 - ] - }, - "from": [ - 45.245, - -6.2382 - ], - "tag": null, - "to": [ - 46.1653, - -6.4116 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 39309, - 39386, - 0 - ] - }, - "from": [ - 46.1653, - -6.4116 - ], - "tag": null, - "to": [ - 46.1671, - -6.9295 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 39392, - 39466, - 0 - ] - }, - "from": [ - 46.1671, - -6.9295 - ], - "tag": null, - "to": [ - 46.7877, - -7.8028 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 39472, - 39546, - 0 - ] - }, - "from": [ - 46.7877, - -7.8028 - ], - "tag": null, - "to": [ - 46.0101, - -7.0425 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 39552, - 39604, - 0 - ] - }, - "from": [ - 46.0101, - -7.0425 - ], - "tag": null, - "to": [ - 46.554, - -6.1976 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 39610, - 39687, - 0 - ] - }, - "from": [ - 46.554, - -6.1976 - ], - "tag": null, - "to": [ - 46.4236, - -6.1856 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 39693, - 39769, - 0 - ] - }, - "from": [ - 46.4236, - -6.1856 - ], - "tag": null, - "to": [ - 46.258, - -6.3933 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 39775, - 39851, - 0 - ] - }, - "from": [ - 46.258, - -6.3933 - ], - "tag": null, - "to": [ - 46.1617, - -6.4475 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 39857, - 39908, - 0 - ] - }, - "from": [ - 46.1617, - -6.4475 - ], - "tag": null, - "to": [ - 47.0638, - -6.0516 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 39914, - 39990, - 0 - ] - }, - "from": [ - 47.0638, - -6.0516 - ], - "tag": null, - "to": [ - 47.3438, - -6.2294 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 39996, - 40047, - 0 - ] - }, - "from": [ - 47.3438, - -6.2294 - ], - "tag": null, - "to": [ - 47.8674, - -5.5351 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 40053, - 40128, - 0 - ] - }, - "from": [ - 47.8674, - -5.5351 - ], - "tag": null, - "to": [ - 48.2588, - -6.319 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 40134, - 40186, - 0 - ] - }, - "from": [ - 48.2588, - -6.319 - ], - "tag": null, - "to": [ - 49.1002, - -5.7795 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 40192, - 40266, - 0 - ] - }, - "from": [ - 49.1002, - -5.7795 - ], - "tag": null, - "to": [ - 49.714, - -5.5583 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 40272, - 40324, - 0 - ] - }, - "from": [ - 49.714, - -5.5583 - ], - "tag": null, - "to": [ - 50.597, - -4.8586 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 40330, - 40406, - 0 - ] - }, - "from": [ - 50.597, - -4.8586 - ], - "tag": null, - "to": [ - 50.1841, - -5.2739 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 40412, - 40486, - 0 - ] - }, - "from": [ - 50.1841, - -5.2739 - ], - "tag": null, - "to": [ - 50.7011, - -6.1824 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 40492, - 40567, - 0 - ] - }, - "from": [ - 50.7011, - -6.1824 - ], - "tag": null, - "to": [ - 50.0294, - -7.143 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 40573, - 40650, - 0 - ] - }, - "from": [ - 50.0294, - -7.143 - ], - "tag": null, - "to": [ - 50.0397, - -7.5164 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 40656, - 40732, - 0 - ] - }, - "from": [ - 50.0397, - -7.5164 - ], - "tag": null, - "to": [ - 50.1433, - -7.9394 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 40738, - 40813, - 0 - ] - }, - "from": [ - 50.1433, - -7.9394 - ], - "tag": null, - "to": [ - 50.5953, - -8.0517 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 40819, - 40894, - 0 - ] - }, - "from": [ - 50.5953, - -8.0517 - ], - "tag": null, - "to": [ - 49.7132, - -8.7672 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 40900, - 40952, - 0 - ] - }, - "from": [ - 49.7132, - -8.7672 - ], - "tag": null, - "to": [ - 50.6328, - -8.4981 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 40958, - 41032, - 0 - ] - }, - "from": [ - 50.6328, - -8.4981 - ], - "tag": null, - "to": [ - 51.3427, - -8.381 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41038, - 41113, - 0 - ] - }, - "from": [ - 51.3427, - -8.381 - ], - "tag": null, - "to": [ - 50.9639, - -7.6703 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41119, - 41196, - 0 - ] - }, - "from": [ - 50.9639, - -7.6703 - ], - "tag": null, - "to": [ - 50.6666, - -7.7368 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41202, - 41277, - 0 - ] - }, - "from": [ - 50.6666, - -7.7368 - ], - "tag": null, - "to": [ - 50.8963, - -8.497 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41283, - 41358, - 0 - ] - }, - "from": [ - 50.8963, - -8.497 - ], - "tag": null, - "to": [ - 50.2606, - -8.3024 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41364, - 41416, - 0 - ] - }, - "from": [ - 50.2606, - -8.3024 - ], - "tag": null, - "to": [ - 50.8327, - -8.0135 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41422, - 41498, - 0 - ] - }, - "from": [ - 50.8327, - -8.0135 - ], - "tag": null, - "to": [ - 49.8747, - -8.036 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41504, - 41578, - 0 - ] - }, - "from": [ - 49.8747, - -8.036 - ], - "tag": null, - "to": [ - 50.2046, - -8.8713 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41584, - 41658, - 0 - ] - }, - "from": [ - 50.2046, - -8.8713 - ], - "tag": null, - "to": [ - 50.9481, - -9.6633 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41664, - 41716, - 0 - ] - }, - "from": [ - 50.9481, - -9.6633 - ], - "tag": null, - "to": [ - 51.9417, - -8.759 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41722, - 41796, - 0 - ] - }, - "from": [ - 51.9417, - -8.759 - ], - "tag": null, - "to": [ - 51.4381, - -8.2439 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41802, - 41854, - 0 - ] - }, - "from": [ - 51.4381, - -8.2439 - ], - "tag": null, - "to": [ - 51.9907, - -7.4827 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41860, - 41934, - 0 - ] - }, - "from": [ - 51.9907, - -7.4827 - ], - "tag": null, - "to": [ - 52.85, - -7.3985 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 41940, - 42014, - 0 - ] - }, - "from": [ - 52.85, - -7.3985 - ], - "tag": null, - "to": [ - 52.0319, - -8.3021 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 42020, - 42095, - 0 - ] - }, - "from": [ - 52.0319, - -8.3021 - ], - "tag": null, - "to": [ - 52.3485, - -8.544 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 42101, - 42178, - 0 - ] - }, - "from": [ - 52.3485, - -8.544 - ], - "tag": null, - "to": [ - 51.9046, - -8.8031 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 42184, - 42260, - 0 - ] - }, - "from": [ - 51.9046, - -8.8031 - ], - "tag": null, - "to": [ - 51.2441, - -9.2067 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 42266, - 42341, - 0 - ] - }, - "from": [ - 51.2441, - -9.2067 - ], - "tag": null, - "to": [ - 50.527, - -8.9721 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 42347, - 42423, - 0 - ] - }, - "from": [ - 50.527, - -8.9721 - ], - "tag": null, - "to": [ - 50.2702, - -9.4224 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 42429, - 42503, - 0 - ] - }, - "from": [ - 50.2702, - -9.4224 - ], - "tag": null, - "to": [ - 50.9454, - -10.3934 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 42509, - 42583, - 0 - ] - }, - "from": [ - 50.9454, - -10.3934 - ], - "tag": null, - "to": [ - 50.3764, - -9.8015 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 42589, - 42663, - 0 - ] - }, - "from": [ - 50.3764, - -9.8015 - ], - "tag": null, - "to": [ - 49.5436, - -9.3337 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 42669, - 42745, - 0 - ] - }, - "from": [ - 49.5436, - -9.3337 - ], - "tag": null, - "to": [ - 48.7325, - -9.7519 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 42751, - 42826, - 0 - ] - }, - "from": [ - 48.7325, - -9.7519 - ], - "tag": null, - "to": [ - 48.7705, - -9.4952 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 42832, - 42907, - 0 - ] - }, - "from": [ - 48.7705, - -9.4952 - ], - "tag": null, - "to": [ - 49.01, - -9.0583 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 42913, - 42988, - 0 - ] - }, - "from": [ - 49.01, - -9.0583 - ], - "tag": null, - "to": [ - 48.8473, - -8.2518 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 42994, - 43071, - 0 - ] - }, - "from": [ - 48.8473, - -8.2518 - ], - "tag": null, - "to": [ - 48.7575, - -8.3407 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 43077, - 43152, - 0 - ] - }, - "from": [ - 48.7575, - -8.3407 - ], - "tag": null, - "to": [ - 49.6779, - -8.5141 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 43158, - 43235, - 0 - ] - }, - "from": [ - 49.6779, - -8.5141 - ], - "tag": null, - "to": [ - 49.6796, - -9.032 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 43241, - 43315, - 0 - ] - }, - "from": [ - 49.6796, - -9.032 - ], - "tag": null, - "to": [ - 50.3002, - -9.9053 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 43321, - 43395, - 0 - ] - }, - "from": [ - 50.3002, - -9.9053 - ], - "tag": null, - "to": [ - 49.5226, - -9.1451 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 43401, - 43453, - 0 - ] - }, - "from": [ - 49.5226, - -9.1451 - ], - "tag": null, - "to": [ - 50.0665, - -8.3001 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 43459, - 43536, - 0 - ] - }, - "from": [ - 50.0665, - -8.3001 - ], - "tag": null, - "to": [ - 49.9362, - -8.2881 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 43542, - 43618, - 0 - ] - }, - "from": [ - 49.9362, - -8.2881 - ], - "tag": null, - "to": [ - 49.7705, - -8.4958 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 43624, - 43700, - 0 - ] - }, - "from": [ - 49.7705, - -8.4958 - ], - "tag": null, - "to": [ - 49.6743, - -8.55 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 43706, - 43757, - 0 - ] - }, - "from": [ - 49.6743, - -8.55 - ], - "tag": null, - "to": [ - 50.5764, - -8.1541 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 43763, - 43839, - 0 - ] - }, - "from": [ - 50.5764, - -8.1541 - ], - "tag": null, - "to": [ - 50.8563, - -8.3319 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 43845, - 43896, - 0 - ] - }, - "from": [ - 50.8563, - -8.3319 - ], - "tag": null, - "to": [ - 51.3799, - -7.6376 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 43902, - 43977, - 0 - ] - }, - "from": [ - 51.3799, - -7.6376 - ], - "tag": null, - "to": [ - 51.7713, - -8.4216 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 43983, - 44035, - 0 - ] - }, - "from": [ - 51.7713, - -8.4216 - ], - "tag": null, - "to": [ - 52.6128, - -7.882 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 44041, - 44115, - 0 - ] - }, - "from": [ - 52.6128, - -7.882 - ], - "tag": null, - "to": [ - 53.2265, - -7.6608 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 44121, - 44173, - 0 - ] - }, - "from": [ - 53.2265, - -7.6608 - ], - "tag": null, - "to": [ - 54.1096, - -6.9611 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 44179, - 44255, - 0 - ] - }, - "from": [ - 54.1096, - -6.9611 - ], - "tag": null, - "to": [ - 53.6967, - -7.3764 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 44261, - 44335, - 0 - ] - }, - "from": [ - 53.6967, - -7.3764 - ], - "tag": null, - "to": [ - 54.2136, - -8.285 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 44341, - 44415, - 0 - ] - }, - "from": [ - 54.2136, - -8.285 - ], - "tag": null, - "to": [ - 54.8888, - -9.2559 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 44421, - 44495, - 0 - ] - }, - "from": [ - 54.8888, - -9.2559 - ], - "tag": null, - "to": [ - 54.3199, - -8.664 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 44501, - 44575, - 0 - ] - }, - "from": [ - 54.3199, - -8.664 - ], - "tag": null, - "to": [ - 55.2663, - -8.9325 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 44581, - 44633, - 0 - ] - }, - "from": [ - 55.2663, - -8.9325 - ], - "tag": null, - "to": [ - 55.7905, - -8.0314 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 44639, - 44715, - 0 - ] - }, - "from": [ - 55.7905, - -8.0314 - ], - "tag": null, - "to": [ - 55.6479, - -8.5508 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 44721, - 44796, - 0 - ] - }, - "from": [ - 55.6479, - -8.5508 - ], - "tag": null, - "to": [ - 55.2192, - -8.9731 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 44802, - 44878, - 0 - ] - }, - "from": [ - 55.2192, - -8.9731 - ], - "tag": null, - "to": [ - 55.126, - -9.8794 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 44884, - 44958, - 0 - ] - }, - "from": [ - 55.126, - -9.8794 - ], - "tag": null, - "to": [ - 54.8493, - -9.1978 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 44964, - 45038, - 0 - ] - }, - "from": [ - 54.8493, - -9.1978 - ], - "tag": null, - "to": [ - 55.8289, - -9.28 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 45044, - 45118, - 0 - ] - }, - "from": [ - 55.8289, - -9.28 - ], - "tag": null, - "to": [ - 54.9623, - -9.5811 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 45124, - 45198, - 0 - ] - }, - "from": [ - 54.9623, - -9.5811 - ], - "tag": null, - "to": [ - 55.4997, - -9.5608 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 45204, - 45278, - 0 - ] - }, - "from": [ - 55.4997, - -9.5608 - ], - "tag": null, - "to": [ - 56.4329, - -10.1836 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 45284, - 45360, - 0 - ] - }, - "from": [ - 56.4329, - -10.1836 - ], - "tag": null, - "to": [ - 56.6135, - -10.5526 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 45366, - 45418, - 0 - ] - }, - "from": [ - 56.6135, - -10.5526 - ], - "tag": null, - "to": [ - 57.1519, - -10.3148 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 45424, - 45499, - 0 - ] - }, - "from": [ - 57.1519, - -10.3148 - ], - "tag": null, - "to": [ - 57.5423, - -10.1721 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 45505, - 45579, - 0 - ] - }, - "from": [ - 57.5423, - -10.1721 - ], - "tag": null, - "to": [ - 57.6402, - -9.1813 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 45585, - 45659, - 0 - ] - }, - "from": [ - 57.6402, - -9.1813 - ], - "tag": null, - "to": [ - 58.1688, - -9.9738 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 45665, - 45739, - 0 - ] - }, - "from": [ - 58.1688, - -9.9738 - ], - "tag": null, - "to": [ - 58.5478, - -9.8498 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 45745, - 45819, - 0 - ] - }, - "from": [ - 58.5478, - -9.8498 - ], - "tag": null, - "to": [ - 57.5993, - -9.1768 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 45825, - 45900, - 0 - ] - }, - "from": [ - 57.5993, - -9.1768 - ], - "tag": null, - "to": [ - 58.3445, - -9.39 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 45906, - 45981, - 0 - ] - }, - "from": [ - 58.3445, - -9.39 - ], - "tag": null, - "to": [ - 58.5318, - -9.5496 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 45987, - 46063, - 0 - ] - }, - "from": [ - 58.5318, - -9.5496 - ], - "tag": null, - "to": [ - 58.4745, - -10.0933 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 46069, - 46145, - 0 - ] - }, - "from": [ - 58.4745, - -10.0933 - ], - "tag": null, - "to": [ - 58.3787, - -10.8467 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 46151, - 46227, - 0 - ] - }, - "from": [ - 58.3787, - -10.8467 - ], - "tag": null, - "to": [ - 58.2062, - -11.6136 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 46233, - 46285, - 0 - ] - }, - "from": [ - 58.2062, - -11.6136 - ], - "tag": null, - "to": [ - 59.1006, - -11.0042 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 46291, - 46366, - 0 - ] - }, - "from": [ - 59.1006, - -11.0042 - ], - "tag": null, - "to": [ - 58.7336, - -10.7922 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 46372, - 46446, - 0 - ] - }, - "from": [ - 58.7336, - -10.7922 - ], - "tag": null, - "to": [ - 58.2629, - -10.3017 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 46452, - 46526, - 0 - ] - }, - "from": [ - 58.2629, - -10.3017 - ], - "tag": null, - "to": [ - 57.43, - -9.834 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 46532, - 46608, - 0 - ] - }, - "from": [ - 57.43, - -9.834 - ], - "tag": null, - "to": [ - 56.6189, - -10.2521 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 46614, - 46689, - 0 - ] - }, - "from": [ - 56.6189, - -10.2521 - ], - "tag": null, - "to": [ - 56.657, - -9.9955 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 46695, - 46770, - 0 - ] - }, - "from": [ - 56.657, - -9.9955 - ], - "tag": null, - "to": [ - 56.8965, - -9.5585 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 46776, - 46851, - 0 - ] - }, - "from": [ - 56.8965, - -9.5585 - ], - "tag": null, - "to": [ - 56.7337, - -8.7521 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 46857, - 46934, - 0 - ] - }, - "from": [ - 56.7337, - -8.7521 - ], - "tag": null, - "to": [ - 56.644, - -8.841 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 46940, - 47015, - 0 - ] - }, - "from": [ - 56.644, - -8.841 - ], - "tag": null, - "to": [ - 57.5643, - -9.0144 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 47021, - 47098, - 0 - ] - }, - "from": [ - 57.5643, - -9.0144 - ], - "tag": null, - "to": [ - 57.566, - -9.5322 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 47104, - 47178, - 0 - ] - }, - "from": [ - 57.566, - -9.5322 - ], - "tag": null, - "to": [ - 58.1867, - -10.4056 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 47184, - 47258, - 0 - ] - }, - "from": [ - 58.1867, - -10.4056 - ], - "tag": null, - "to": [ - 57.409, - -9.6453 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 47264, - 47316, - 0 - ] - }, - "from": [ - 57.409, - -9.6453 - ], - "tag": null, - "to": [ - 57.953, - -8.8004 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 47322, - 47399, - 0 - ] - }, - "from": [ - 57.953, - -8.8004 - ], - "tag": null, - "to": [ - 57.8226, - -8.7883 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 47405, - 47481, - 0 - ] - }, - "from": [ - 57.8226, - -8.7883 - ], - "tag": null, - "to": [ - 57.657, - -8.9961 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 47487, - 47563, - 0 - ] - }, - "from": [ - 57.657, - -8.9961 - ], - "tag": null, - "to": [ - 57.5607, - -9.0503 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 47569, - 47620, - 0 - ] - }, - "from": [ - 57.5607, - -9.0503 - ], - "tag": null, - "to": [ - 58.4628, - -8.6544 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 47626, - 47702, - 0 - ] - }, - "from": [ - 58.4628, - -8.6544 - ], - "tag": null, - "to": [ - 58.7428, - -8.8321 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 47708, - 47759, - 0 - ] - }, - "from": [ - 58.7428, - -8.8321 - ], - "tag": null, - "to": [ - 59.2664, - -8.1378 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 47765, - 47840, - 0 - ] - }, - "from": [ - 59.2664, - -8.1378 - ], - "tag": null, - "to": [ - 59.6578, - -8.9218 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 47846, - 47898, - 0 - ] - }, - "from": [ - 59.6578, - -8.9218 - ], - "tag": null, - "to": [ - 60.4992, - -8.3822 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 47904, - 47978, - 0 - ] - }, - "from": [ - 60.4992, - -8.3822 - ], - "tag": null, - "to": [ - 61.113, - -8.161 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 47984, - 48036, - 0 - ] - }, - "from": [ - 61.113, - -8.161 - ], - "tag": null, - "to": [ - 61.996, - -7.4614 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 48042, - 48118, - 0 - ] - }, - "from": [ - 61.996, - -7.4614 - ], - "tag": null, - "to": [ - 61.5831, - -7.8766 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 48124, - 48198, - 0 - ] - }, - "from": [ - 61.5831, - -7.8766 - ], - "tag": null, - "to": [ - 62.1, - -8.7852 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 48204, - 48279, - 0 - ] - }, - "from": [ - 62.1, - -8.7852 - ], - "tag": null, - "to": [ - 61.4284, - -9.7458 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 48285, - 48362, - 0 - ] - }, - "from": [ - 61.4284, - -9.7458 - ], - "tag": null, - "to": [ - 61.4387, - -10.1192 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 48368, - 48444, - 0 - ] - }, - "from": [ - 61.4387, - -10.1192 - ], - "tag": null, - "to": [ - 61.5423, - -10.5421 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 48450, - 48525, - 0 - ] - }, - "from": [ - 61.5423, - -10.5421 - ], - "tag": null, - "to": [ - 61.9943, - -10.6545 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 48531, - 48606, - 0 - ] - }, - "from": [ - 61.9943, - -10.6545 - ], - "tag": null, - "to": [ - 61.1122, - -11.37 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 48612, - 48664, - 0 - ] - }, - "from": [ - 61.1122, - -11.37 - ], - "tag": null, - "to": [ - 62.0317, - -11.1008 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 48670, - 48744, - 0 - ] - }, - "from": [ - 62.0317, - -11.1008 - ], - "tag": null, - "to": [ - 62.7416, - -10.9837 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 48750, - 48825, - 0 - ] - }, - "from": [ - 62.7416, - -10.9837 - ], - "tag": null, - "to": [ - 62.3629, - -10.273 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 48831, - 48908, - 0 - ] - }, - "from": [ - 62.3629, - -10.273 - ], - "tag": null, - "to": [ - 62.0656, - -10.3395 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 48914, - 48989, - 0 - ] - }, - "from": [ - 62.0656, - -10.3395 - ], - "tag": null, - "to": [ - 62.2952, - -11.0997 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 48995, - 49070, - 0 - ] - }, - "from": [ - 62.2952, - -11.0997 - ], - "tag": null, - "to": [ - 61.6596, - -10.9051 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 49076, - 49128, - 0 - ] - }, - "from": [ - 61.6596, - -10.9051 - ], - "tag": null, - "to": [ - 62.2317, - -10.6163 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 49134, - 49210, - 0 - ] - }, - "from": [ - 62.2317, - -10.6163 - ], - "tag": null, - "to": [ - 61.2737, - -10.6387 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 49216, - 49290, - 0 - ] - }, - "from": [ - 61.2737, - -10.6387 - ], - "tag": null, - "to": [ - 61.6036, - -11.4741 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 49296, - 49370, - 0 - ] - }, - "from": [ - 61.6036, - -11.4741 - ], - "tag": null, - "to": [ - 62.3471, - -12.2661 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 49376, - 49428, - 0 - ] - }, - "from": [ - 62.3471, - -12.2661 - ], - "tag": null, - "to": [ - 63.3406, - -11.3618 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 49434, - 49508, - 0 - ] - }, - "from": [ - 63.3406, - -11.3618 - ], - "tag": null, - "to": [ - 62.8371, - -10.8467 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 49514, - 49566, - 0 - ] - }, - "from": [ - 62.8371, - -10.8467 - ], - "tag": null, - "to": [ - 63.3897, - -10.0854 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 49572, - 49646, - 0 - ] - }, - "from": [ - 63.3897, - -10.0854 - ], - "tag": null, - "to": [ - 64.249, - -10.0013 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 49652, - 49726, - 0 - ] - }, - "from": [ - 64.249, - -10.0013 - ], - "tag": null, - "to": [ - 63.4309, - -10.9048 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 49732, - 49807, - 0 - ] - }, - "from": [ - 63.4309, - -10.9048 - ], - "tag": null, - "to": [ - 63.7475, - -11.1467 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 49813, - 49890, - 0 - ] - }, - "from": [ - 63.7475, - -11.1467 - ], - "tag": null, - "to": [ - 63.3036, - -11.4059 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 49896, - 49972, - 0 - ] - }, - "from": [ - 63.3036, - -11.4059 - ], - "tag": null, - "to": [ - 62.643, - -11.8094 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 49978, - 50053, - 0 - ] - }, - "from": [ - 62.643, - -11.8094 - ], - "tag": null, - "to": [ - 61.926, - -11.5749 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 50059, - 50135, - 0 - ] - }, - "from": [ - 61.926, - -11.5749 - ], - "tag": null, - "to": [ - 61.6692, - -12.0252 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 50141, - 50215, - 0 - ] - }, - "from": [ - 61.6692, - -12.0252 - ], - "tag": null, - "to": [ - 62.3444, - -12.9961 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 50221, - 50295, - 0 - ] - }, - "from": [ - 62.3444, - -12.9961 - ], - "tag": null, - "to": [ - 61.7754, - -12.4042 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 50301, - 50375, - 0 - ] - }, - "from": [ - 61.7754, - -12.4042 - ], - "tag": null, - "to": [ - 60.9426, - -11.9365 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 50381, - 50457, - 0 - ] - }, - "from": [ - 60.9426, - -11.9365 - ], - "tag": null, - "to": [ - 60.1314, - -12.3546 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 50463, - 50538, - 0 - ] - }, - "from": [ - 60.1314, - -12.3546 - ], - "tag": null, - "to": [ - 60.1695, - -12.098 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 50544, - 50619, - 0 - ] - }, - "from": [ - 60.1695, - -12.098 - ], - "tag": null, - "to": [ - 60.409, - -11.6611 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 50625, - 50700, - 0 - ] - }, - "from": [ - 60.409, - -11.6611 - ], - "tag": null, - "to": [ - 60.2462, - -10.8546 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 50706, - 50783, - 0 - ] - }, - "from": [ - 60.2462, - -10.8546 - ], - "tag": null, - "to": [ - 60.1565, - -10.9435 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 50789, - 50864, - 0 - ] - }, - "from": [ - 60.1565, - -10.9435 - ], - "tag": null, - "to": [ - 61.0768, - -11.1169 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 50870, - 50947, - 0 - ] - }, - "from": [ - 61.0768, - -11.1169 - ], - "tag": null, - "to": [ - 61.0786, - -11.6348 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 50953, - 51027, - 0 - ] - }, - "from": [ - 61.0786, - -11.6348 - ], - "tag": null, - "to": [ - 61.6992, - -12.5081 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 51033, - 51107, - 0 - ] - }, - "from": [ - 61.6992, - -12.5081 - ], - "tag": null, - "to": [ - 60.9216, - -11.7478 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 51113, - 51165, - 0 - ] - }, - "from": [ - 60.9216, - -11.7478 - ], - "tag": null, - "to": [ - 61.4655, - -10.9029 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 51171, - 51248, - 0 - ] - }, - "from": [ - 61.4655, - -10.9029 - ], - "tag": null, - "to": [ - 61.3351, - -10.8909 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 51254, - 51330, - 0 - ] - }, - "from": [ - 61.3351, - -10.8909 - ], - "tag": null, - "to": [ - 61.1695, - -11.0986 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 51336, - 51412, - 0 - ] - }, - "from": [ - 61.1695, - -11.0986 - ], - "tag": null, - "to": [ - 61.0732, - -11.1528 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 51418, - 51469, - 0 - ] - }, - "from": [ - 61.0732, - -11.1528 - ], - "tag": null, - "to": [ - 61.9753, - -10.7569 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 51475, - 51551, - 0 - ] - }, - "from": [ - 61.9753, - -10.7569 - ], - "tag": null, - "to": [ - 62.2553, - -10.9347 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 51557, - 51608, - 0 - ] - }, - "from": [ - 62.2553, - -10.9347 - ], - "tag": null, - "to": [ - 62.7789, - -10.2404 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 51614, - 51689, - 0 - ] - }, - "from": [ - 62.7789, - -10.2404 - ], - "tag": null, - "to": [ - 63.1703, - -11.0243 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 51695, - 51747, - 0 - ] - }, - "from": [ - 63.1703, - -11.0243 - ], - "tag": null, - "to": [ - 64.0117, - -10.4848 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 51753, - 51827, - 0 - ] - }, - "from": [ - 64.0117, - -10.4848 - ], - "tag": null, - "to": [ - 64.6255, - -10.2636 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 51833, - 51885, - 0 - ] - }, - "from": [ - 64.6255, - -10.2636 - ], - "tag": null, - "to": [ - 65.5085, - -9.5639 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 51891, - 51966, - 0 - ] - }, - "from": [ - 65.5085, - -9.5639 - ], - "tag": null, - "to": [ - 65.1415, - -9.3519 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 51972, - 52046, - 0 - ] - }, - "from": [ - 65.1415, - -9.3519 - ], - "tag": null, - "to": [ - 64.6708, - -8.8614 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 52052, - 52126, - 0 - ] - }, - "from": [ - 64.6708, - -8.8614 - ], - "tag": null, - "to": [ - 63.8379, - -8.3936 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 52132, - 52208, - 0 - ] - }, - "from": [ - 63.8379, - -8.3936 - ], - "tag": null, - "to": [ - 63.0268, - -8.8118 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 52214, - 52289, - 0 - ] - }, - "from": [ - 63.0268, - -8.8118 - ], - "tag": null, - "to": [ - 63.0649, - -8.5551 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 52295, - 52370, - 0 - ] - }, - "from": [ - 63.0649, - -8.5551 - ], - "tag": null, - "to": [ - 63.3044, - -8.1182 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 52376, - 52451, - 0 - ] - }, - "from": [ - 63.3044, - -8.1182 - ], - "tag": null, - "to": [ - 63.1416, - -7.3117 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 52457, - 52534, - 0 - ] - }, - "from": [ - 63.1416, - -7.3117 - ], - "tag": null, - "to": [ - 63.0518, - -7.4006 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 52540, - 52615, - 0 - ] - }, - "from": [ - 63.0518, - -7.4006 - ], - "tag": null, - "to": [ - 63.9722, - -7.574 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 52621, - 52698, - 0 - ] - }, - "from": [ - 63.9722, - -7.574 - ], - "tag": null, - "to": [ - 63.9739, - -8.0919 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 52704, - 52778, - 0 - ] - }, - "from": [ - 63.9739, - -8.0919 - ], - "tag": null, - "to": [ - 64.5946, - -8.9652 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 52784, - 52858, - 0 - ] - }, - "from": [ - 64.5946, - -8.9652 - ], - "tag": null, - "to": [ - 63.8169, - -8.205 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 52864, - 52916, - 0 - ] - }, - "from": [ - 63.8169, - -8.205 - ], - "tag": null, - "to": [ - 64.3609, - -7.36 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 52922, - 52999, - 0 - ] - }, - "from": [ - 64.3609, - -7.36 - ], - "tag": null, - "to": [ - 64.2305, - -7.348 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 53005, - 53081, - 0 - ] - }, - "from": [ - 64.2305, - -7.348 - ], - "tag": null, - "to": [ - 64.0648, - -7.5557 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 53087, - 53163, - 0 - ] - }, - "from": [ - 64.0648, - -7.5557 - ], - "tag": null, - "to": [ - 63.9686, - -7.6099 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 53169, - 53220, - 0 - ] - }, - "from": [ - 63.9686, - -7.6099 - ], - "tag": null, - "to": [ - 64.8707, - -7.214 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 53226, - 53302, - 0 - ] - }, - "from": [ - 64.8707, - -7.214 - ], - "tag": null, - "to": [ - 65.1507, - -7.3918 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 53308, - 53359, - 0 - ] - }, - "from": [ - 65.1507, - -7.3918 - ], - "tag": null, - "to": [ - 65.6742, - -6.6975 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 53365, - 53440, - 0 - ] - }, - "from": [ - 65.6742, - -6.6975 - ], - "tag": null, - "to": [ - 66.0657, - -7.4815 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 53446, - 53498, - 0 - ] - }, - "from": [ - 66.0657, - -7.4815 - ], - "tag": null, - "to": [ - 66.9071, - -6.9419 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 53504, - 53578, - 0 - ] - }, - "from": [ - 66.9071, - -6.9419 - ], - "tag": null, - "to": [ - 67.5208, - -6.7207 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 53584, - 53636, - 0 - ] - }, - "from": [ - 67.5208, - -6.7207 - ], - "tag": null, - "to": [ - 68.4039, - -6.021 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 53642, - 53718, - 0 - ] - }, - "from": [ - 68.4039, - -6.021 - ], - "tag": null, - "to": [ - 67.991, - -6.4363 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 53724, - 53798, - 0 - ] - }, - "from": [ - 67.991, - -6.4363 - ], - "tag": null, - "to": [ - 68.5079, - -7.3449 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 53804, - 53879, - 0 - ] - }, - "from": [ - 68.5079, - -7.3449 - ], - "tag": null, - "to": [ - 67.8363, - -8.3054 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 53885, - 53962, - 0 - ] - }, - "from": [ - 67.8363, - -8.3054 - ], - "tag": null, - "to": [ - 67.8466, - -8.6789 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 53968, - 54043, - 0 - ] - }, - "from": [ - 67.8466, - -8.6789 - ], - "tag": null, - "to": [ - 67.4796, - -8.4668 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 54049, - 54123, - 0 - ] - }, - "from": [ - 67.4796, - -8.4668 - ], - "tag": null, - "to": [ - 67.0088, - -7.9763 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 54129, - 54203, - 0 - ] - }, - "from": [ - 67.0088, - -7.9763 - ], - "tag": null, - "to": [ - 66.176, - -7.5086 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 54209, - 54285, - 0 - ] - }, - "from": [ - 66.176, - -7.5086 - ], - "tag": null, - "to": [ - 65.3648, - -7.9267 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 54291, - 54366, - 0 - ] - }, - "from": [ - 65.3648, - -7.9267 - ], - "tag": null, - "to": [ - 65.4029, - -7.6701 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 54372, - 54447, - 0 - ] - }, - "from": [ - 65.4029, - -7.6701 - ], - "tag": null, - "to": [ - 65.6424, - -7.2331 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 54453, - 54528, - 0 - ] - }, - "from": [ - 65.6424, - -7.2331 - ], - "tag": null, - "to": [ - 65.4796, - -6.4267 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 54534, - 54611, - 0 - ] - }, - "from": [ - 65.4796, - -6.4267 - ], - "tag": null, - "to": [ - 65.3899, - -6.5156 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 54617, - 54692, - 0 - ] - }, - "from": [ - 65.3899, - -6.5156 - ], - "tag": null, - "to": [ - 66.3102, - -6.689 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 54698, - 54775, - 0 - ] - }, - "from": [ - 66.3102, - -6.689 - ], - "tag": null, - "to": [ - 66.312, - -7.2068 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 54781, - 54855, - 0 - ] - }, - "from": [ - 66.312, - -7.2068 - ], - "tag": null, - "to": [ - 66.9326, - -8.0802 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 54861, - 54935, - 0 - ] - }, - "from": [ - 66.9326, - -8.0802 - ], - "tag": null, - "to": [ - 66.155, - -7.3199 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 54941, - 54993, - 0 - ] - }, - "from": [ - 66.155, - -7.3199 - ], - "tag": null, - "to": [ - 66.6989, - -6.475 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 54999, - 55076, - 0 - ] - }, - "from": [ - 66.6989, - -6.475 - ], - "tag": null, - "to": [ - 66.5685, - -6.4629 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 55082, - 55158, - 0 - ] - }, - "from": [ - 66.5685, - -6.4629 - ], - "tag": null, - "to": [ - 66.4029, - -6.6707 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 55164, - 55240, - 0 - ] - }, - "from": [ - 66.4029, - -6.6707 - ], - "tag": null, - "to": [ - 66.3066, - -6.7249 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 55246, - 55297, - 0 - ] - }, - "from": [ - 66.3066, - -6.7249 - ], - "tag": null, - "to": [ - 67.2087, - -6.329 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 55303, - 55379, - 0 - ] - }, - "from": [ - 67.2087, - -6.329 - ], - "tag": null, - "to": [ - 67.4887, - -6.5068 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 55385, - 55436, - 0 - ] - }, - "from": [ - 67.4887, - -6.5068 - ], - "tag": null, - "to": [ - 68.0123, - -5.8124 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 55442, - 55517, - 0 - ] - }, - "from": [ - 68.0123, - -5.8124 - ], - "tag": null, - "to": [ - 68.4037, - -6.5964 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 55523, - 55575, - 0 - ] - }, - "from": [ - 68.4037, - -6.5964 - ], - "tag": null, - "to": [ - 69.2451, - -6.0569 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 55581, - 55655, - 0 - ] - }, - "from": [ - 69.2451, - -6.0569 - ], - "tag": null, - "to": [ - 69.8589, - -5.8357 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 55661, - 55713, - 0 - ] - }, - "from": [ - 69.8589, - -5.8357 - ], - "tag": null, - "to": [ - 70.7419, - -5.136 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 55719, - 55795, - 0 - ] - }, - "from": [ - 70.7419, - -5.136 - ], - "tag": null, - "to": [ - 70.329, - -5.5513 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 55801, - 55875, - 0 - ] - }, - "from": [ - 70.329, - -5.5513 - ], - "tag": null, - "to": [ - 70.846, - -6.4598 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 55881, - 55956, - 0 - ] - }, - "from": [ - 70.846, - -6.4598 - ], - "tag": null, - "to": [ - 70.1744, - -7.4204 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 55962, - 56039, - 0 - ] - }, - "from": [ - 70.1744, - -7.4204 - ], - "tag": null, - "to": [ - 70.1846, - -7.7938 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 56045, - 56121, - 0 - ] - }, - "from": [ - 70.1846, - -7.7938 - ], - "tag": null, - "to": [ - 70.2882, - -8.2167 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 56127, - 56202, - 0 - ] - }, - "from": [ - 70.2882, - -8.2167 - ], - "tag": null, - "to": [ - 70.7402, - -8.3291 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 56208, - 56283, - 0 - ] - }, - "from": [ - 70.7402, - -8.3291 - ], - "tag": null, - "to": [ - 69.8581, - -9.0446 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 56289, - 56341, - 0 - ] - }, - "from": [ - 69.8581, - -9.0446 - ], - "tag": null, - "to": [ - 70.7777, - -8.7754 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 56347, - 56421, - 0 - ] - }, - "from": [ - 70.7777, - -8.7754 - ], - "tag": null, - "to": [ - 71.4876, - -8.6583 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 56427, - 56502, - 0 - ] - }, - "from": [ - 71.4876, - -8.6583 - ], - "tag": null, - "to": [ - 71.1088, - -7.9477 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 56508, - 56585, - 0 - ] - }, - "from": [ - 71.1088, - -7.9477 - ], - "tag": null, - "to": [ - 70.8115, - -8.0142 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 56591, - 56666, - 0 - ] - }, - "from": [ - 70.8115, - -8.0142 - ], - "tag": null, - "to": [ - 71.0412, - -8.7743 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 56672, - 56747, - 0 - ] - }, - "from": [ - 71.0412, - -8.7743 - ], - "tag": null, - "to": [ - 70.4055, - -8.5798 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 56753, - 56805, - 0 - ] - }, - "from": [ - 70.4055, - -8.5798 - ], - "tag": null, - "to": [ - 70.9777, - -8.2909 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 56811, - 56887, - 0 - ] - }, - "from": [ - 70.9777, - -8.2909 - ], - "tag": null, - "to": [ - 70.0196, - -8.3133 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 56893, - 56967, - 0 - ] - }, - "from": [ - 70.0196, - -8.3133 - ], - "tag": null, - "to": [ - 70.3495, - -9.1487 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 56973, - 57047, - 0 - ] - }, - "from": [ - 70.3495, - -9.1487 - ], - "tag": null, - "to": [ - 71.093, - -9.9407 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 57053, - 57105, - 0 - ] - }, - "from": [ - 71.093, - -9.9407 - ], - "tag": null, - "to": [ - 72.0866, - -9.0364 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 57111, - 57185, - 0 - ] - }, - "from": [ - 72.0866, - -9.0364 - ], - "tag": null, - "to": [ - 71.583, - -8.5213 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 57191, - 57243, - 0 - ] - }, - "from": [ - 71.583, - -8.5213 - ], - "tag": null, - "to": [ - 72.1356, - -7.7601 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 57249, - 57323, - 0 - ] - }, - "from": [ - 72.1356, - -7.7601 - ], - "tag": null, - "to": [ - 72.9949, - -7.6759 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 57329, - 57403, - 0 - ] - }, - "from": [ - 72.9949, - -7.6759 - ], - "tag": null, - "to": [ - 72.1768, - -8.5795 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 57409, - 57484, - 0 - ] - }, - "from": [ - 72.1768, - -8.5795 - ], - "tag": null, - "to": [ - 72.4934, - -8.8214 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 57490, - 57567, - 0 - ] - }, - "from": [ - 72.4934, - -8.8214 - ], - "tag": null, - "to": [ - 72.0495, - -9.0805 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 57573, - 57649, - 0 - ] - }, - "from": [ - 72.0495, - -9.0805 - ], - "tag": null, - "to": [ - 71.389, - -9.484 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 57655, - 57730, - 0 - ] - }, - "from": [ - 71.389, - -9.484 - ], - "tag": null, - "to": [ - 70.6719, - -9.2495 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 57736, - 57812, - 0 - ] - }, - "from": [ - 70.6719, - -9.2495 - ], - "tag": null, - "to": [ - 70.4151, - -9.6998 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 57818, - 57892, - 0 - ] - }, - "from": [ - 70.4151, - -9.6998 - ], - "tag": null, - "to": [ - 71.0903, - -10.6707 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 57898, - 57972, - 0 - ] - }, - "from": [ - 71.0903, - -10.6707 - ], - "tag": null, - "to": [ - 70.5214, - -10.0788 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 57978, - 58052, - 0 - ] - }, - "from": [ - 70.5214, - -10.0788 - ], - "tag": null, - "to": [ - 69.6885, - -9.6111 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 58058, - 58134, - 0 - ] - }, - "from": [ - 69.6885, - -9.6111 - ], - "tag": null, - "to": [ - 68.8774, - -10.0292 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 58140, - 58215, - 0 - ] - }, - "from": [ - 68.8774, - -10.0292 - ], - "tag": null, - "to": [ - 68.9155, - -9.7726 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 58221, - 58296, - 0 - ] - }, - "from": [ - 68.9155, - -9.7726 - ], - "tag": null, - "to": [ - 69.155, - -9.3357 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 58302, - 58377, - 0 - ] - }, - "from": [ - 69.155, - -9.3357 - ], - "tag": null, - "to": [ - 68.9922, - -8.5292 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 58383, - 58460, - 0 - ] - }, - "from": [ - 68.9922, - -8.5292 - ], - "tag": null, - "to": [ - 68.9024, - -8.6181 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 58466, - 58541, - 0 - ] - }, - "from": [ - 68.9024, - -8.6181 - ], - "tag": null, - "to": [ - 69.8228, - -8.7915 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 58547, - 58624, - 0 - ] - }, - "from": [ - 69.8228, - -8.7915 - ], - "tag": null, - "to": [ - 69.8245, - -9.3094 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 58630, - 58704, - 0 - ] - }, - "from": [ - 69.8245, - -9.3094 - ], - "tag": null, - "to": [ - 70.4451, - -10.1827 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 58710, - 58784, - 0 - ] - }, - "from": [ - 70.4451, - -10.1827 - ], - "tag": null, - "to": [ - 69.6675, - -9.4224 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 58790, - 58842, - 0 - ] - }, - "from": [ - 69.6675, - -9.4224 - ], - "tag": null, - "to": [ - 70.2114, - -8.5775 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 58848, - 58925, - 0 - ] - }, - "from": [ - 70.2114, - -8.5775 - ], - "tag": null, - "to": [ - 70.0811, - -8.5655 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 58931, - 59007, - 0 - ] - }, - "from": [ - 70.0811, - -8.5655 - ], - "tag": null, - "to": [ - 69.9154, - -8.7732 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 59013, - 59089, - 0 - ] - }, - "from": [ - 69.9154, - -8.7732 - ], - "tag": null, - "to": [ - 69.8192, - -8.8274 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 59095, - 59146, - 0 - ] - }, - "from": [ - 69.8192, - -8.8274 - ], - "tag": null, - "to": [ - 70.7213, - -8.4315 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 59152, - 59228, - 0 - ] - }, - "from": [ - 70.7213, - -8.4315 - ], - "tag": null, - "to": [ - 71.0012, - -8.6093 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 59234, - 59285, - 0 - ] - }, - "from": [ - 71.0012, - -8.6093 - ], - "tag": null, - "to": [ - 71.5248, - -7.915 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 59291, - 59366, - 0 - ] - }, - "from": [ - 71.5248, - -7.915 - ], - "tag": null, - "to": [ - 71.9162, - -8.6989 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 59372, - 59424, - 0 - ] - }, - "from": [ - 71.9162, - -8.6989 - ], - "tag": null, - "to": [ - 72.7577, - -8.1594 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 59430, - 59504, - 0 - ] - }, - "from": [ - 72.7577, - -8.1594 - ], - "tag": null, - "to": [ - 73.3714, - -7.9382 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 59510, - 59562, - 0 - ] - }, - "from": [ - 73.3714, - -7.9382 - ], - "tag": null, - "to": [ - 74.2545, - -7.2385 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 59568, - 59644, - 0 - ] - }, - "from": [ - 74.2545, - -7.2385 - ], - "tag": null, - "to": [ - 73.8416, - -7.6538 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 59650, - 59724, - 0 - ] - }, - "from": [ - 73.8416, - -7.6538 - ], - "tag": null, - "to": [ - 74.3585, - -8.5623 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 59730, - 59804, - 0 - ] - }, - "from": [ - 74.3585, - -8.5623 - ], - "tag": null, - "to": [ - 75.0337, - -9.5333 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 59810, - 59884, - 0 - ] - }, - "from": [ - 75.0337, - -9.5333 - ], - "tag": null, - "to": [ - 74.4648, - -8.9414 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 59890, - 59964, - 0 - ] - }, - "from": [ - 74.4648, - -8.9414 - ], - "tag": null, - "to": [ - 75.4112, - -9.2099 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 59970, - 60022, - 0 - ] - }, - "from": [ - 75.4112, - -9.2099 - ], - "tag": null, - "to": [ - 75.9354, - -8.3087 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 60028, - 60104, - 0 - ] - }, - "from": [ - 75.9354, - -8.3087 - ], - "tag": null, - "to": [ - 75.7928, - -8.8282 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 60110, - 60185, - 0 - ] - }, - "from": [ - 75.7928, - -8.8282 - ], - "tag": null, - "to": [ - 75.3641, - -9.2505 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 60191, - 60267, - 0 - ] - }, - "from": [ - 75.3641, - -9.2505 - ], - "tag": null, - "to": [ - 75.2709, - -10.1568 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 60273, - 60347, - 0 - ] - }, - "from": [ - 75.2709, - -10.1568 - ], - "tag": null, - "to": [ - 74.9942, - -9.4752 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 60353, - 60427, - 0 - ] - }, - "from": [ - 74.9942, - -9.4752 - ], - "tag": null, - "to": [ - 75.9738, - -9.5574 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 60433, - 60507, - 0 - ] - }, - "from": [ - 75.9738, - -9.5574 - ], - "tag": null, - "to": [ - 75.1072, - -9.8585 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 60513, - 60587, - 0 - ] - }, - "from": [ - 75.1072, - -9.8585 - ], - "tag": null, - "to": [ - 75.6446, - -9.8382 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 60593, - 60667, - 0 - ] - }, - "from": [ - 75.6446, - -9.8382 - ], - "tag": null, - "to": [ - 76.5779, - -10.461 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 60673, - 60749, - 0 - ] - }, - "from": [ - 76.5779, - -10.461 - ], - "tag": null, - "to": [ - 76.7584, - -10.83 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 60755, - 60807, - 0 - ] - }, - "from": [ - 76.7584, - -10.83 - ], - "tag": null, - "to": [ - 77.2968, - -10.5922 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 60813, - 60888, - 0 - ] - }, - "from": [ - 77.2968, - -10.5922 - ], - "tag": null, - "to": [ - 77.6872, - -10.4495 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 60894, - 60968, - 0 - ] - }, - "from": [ - 77.6872, - -10.4495 - ], - "tag": null, - "to": [ - 77.7851, - -9.4587 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 60974, - 61048, - 0 - ] - }, - "from": [ - 77.7851, - -9.4587 - ], - "tag": null, - "to": [ - 78.3137, - -10.2511 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 61054, - 61128, - 0 - ] - }, - "from": [ - 78.3137, - -10.2511 - ], - "tag": null, - "to": [ - 78.6927, - -10.1272 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 61134, - 61208, - 0 - ] - }, - "from": [ - 78.6927, - -10.1272 - ], - "tag": null, - "to": [ - 77.7442, - -9.4542 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 61214, - 61289, - 0 - ] - }, - "from": [ - 77.7442, - -9.4542 - ], - "tag": null, - "to": [ - 78.4894, - -9.6674 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 61295, - 61370, - 0 - ] - }, - "from": [ - 78.4894, - -9.6674 - ], - "tag": null, - "to": [ - 78.6767, - -9.827 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 61376, - 61452, - 0 - ] - }, - "from": [ - 78.6767, - -9.827 - ], - "tag": null, - "to": [ - 78.6194, - -10.3707 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 61458, - 61534, - 0 - ] - }, - "from": [ - 78.6194, - -10.3707 - ], - "tag": null, - "to": [ - 78.5236, - -11.124 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 61540, - 61616, - 0 - ] - }, - "from": [ - 78.5236, - -11.124 - ], - "tag": null, - "to": [ - 78.3511, - -11.891 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 61622, - 61674, - 0 - ] - }, - "from": [ - 78.3511, - -11.891 - ], - "tag": null, - "to": [ - 79.2456, - -11.2816 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 61680, - 61755, - 0 - ] - }, - "from": [ - 79.2456, - -11.2816 - ], - "tag": null, - "to": [ - 78.8785, - -11.0696 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 61761, - 61835, - 0 - ] - }, - "from": [ - 78.8785, - -11.0696 - ], - "tag": null, - "to": [ - 78.4078, - -10.5791 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 61841, - 61915, - 0 - ] - }, - "from": [ - 78.4078, - -10.5791 - ], - "tag": null, - "to": [ - 77.5749, - -10.1113 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 61921, - 61997, - 0 - ] - }, - "from": [ - 77.5749, - -10.1113 - ], - "tag": null, - "to": [ - 76.7638, - -10.5295 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 62003, - 62078, - 0 - ] - }, - "from": [ - 76.7638, - -10.5295 - ], - "tag": null, - "to": [ - 76.8019, - -10.2728 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 62084, - 62159, - 0 - ] - }, - "from": [ - 76.8019, - -10.2728 - ], - "tag": null, - "to": [ - 77.0414, - -9.8359 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 62165, - 62240, - 0 - ] - }, - "from": [ - 77.0414, - -9.8359 - ], - "tag": null, - "to": [ - 76.8786, - -9.0295 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 62246, - 62323, - 0 - ] - }, - "from": [ - 76.8786, - -9.0295 - ], - "tag": null, - "to": [ - 76.7889, - -9.1183 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 62329, - 62404, - 0 - ] - }, - "from": [ - 76.7889, - -9.1183 - ], - "tag": null, - "to": [ - 77.7092, - -9.2918 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 62410, - 62487, - 0 - ] - }, - "from": [ - 77.7092, - -9.2918 - ], - "tag": null, - "to": [ - 77.711, - -9.8096 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 62493, - 62567, - 0 - ] - }, - "from": [ - 77.711, - -9.8096 - ], - "tag": null, - "to": [ - 78.3316, - -10.683 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 62573, - 62647, - 0 - ] - }, - "from": [ - 78.3316, - -10.683 - ], - "tag": null, - "to": [ - 77.5539, - -9.9227 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 62653, - 62705, - 0 - ] - }, - "from": [ - 77.5539, - -9.9227 - ], - "tag": null, - "to": [ - 78.0979, - -9.0778 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 62711, - 62788, - 0 - ] - }, - "from": [ - 78.0979, - -9.0778 - ], - "tag": null, - "to": [ - 77.9675, - -9.0657 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 62794, - 62870, - 0 - ] - }, - "from": [ - 77.9675, - -9.0657 - ], - "tag": null, - "to": [ - 77.8019, - -9.2735 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 62876, - 62952, - 0 - ] - }, - "from": [ - 77.8019, - -9.2735 - ], - "tag": null, - "to": [ - 77.7056, - -9.3276 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 62958, - 63009, - 0 - ] - }, - "from": [ - 77.7056, - -9.3276 - ], - "tag": null, - "to": [ - 78.6077, - -8.9317 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 63015, - 63091, - 0 - ] - }, - "from": [ - 78.6077, - -8.9317 - ], - "tag": null, - "to": [ - 78.8877, - -9.1095 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 63097, - 63148, - 0 - ] - }, - "from": [ - 78.8877, - -9.1095 - ], - "tag": null, - "to": [ - 79.4113, - -8.4152 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 63154, - 63229, - 0 - ] - }, - "from": [ - 79.4113, - -8.4152 - ], - "tag": null, - "to": [ - 79.8027, - -9.1992 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 63235, - 63287, - 0 - ] - }, - "from": [ - 79.8027, - -9.1992 - ], - "tag": null, - "to": [ - 80.6441, - -8.6596 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 63293, - 63367, - 0 - ] - }, - "from": [ - 80.6441, - -8.6596 - ], - "tag": null, - "to": [ - 81.2579, - -8.4384 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 63373, - 63425, - 0 - ] - }, - "from": [ - 81.2579, - -8.4384 - ], - "tag": null, - "to": [ - 82.1409, - -7.7388 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 63431, - 63507, - 0 - ] - }, - "from": [ - 82.1409, - -7.7388 - ], - "tag": null, - "to": [ - 81.728, - -8.154 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 63513, - 63587, - 0 - ] - }, - "from": [ - 81.728, - -8.154 - ], - "tag": null, - "to": [ - 82.245, - -9.0626 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 63593, - 63668, - 0 - ] - }, - "from": [ - 82.245, - -9.0626 - ], - "tag": null, - "to": [ - 81.5733, - -10.0231 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 63674, - 63751, - 0 - ] - }, - "from": [ - 81.5733, - -10.0231 - ], - "tag": null, - "to": [ - 81.5836, - -10.3966 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 63757, - 63833, - 0 - ] - }, - "from": [ - 81.5836, - -10.3966 - ], - "tag": null, - "to": [ - 81.6872, - -10.8195 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 63839, - 63914, - 0 - ] - }, - "from": [ - 81.6872, - -10.8195 - ], - "tag": null, - "to": [ - 82.1392, - -10.9318 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 63920, - 63995, - 0 - ] - }, - "from": [ - 82.1392, - -10.9318 - ], - "tag": null, - "to": [ - 81.2571, - -11.6474 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 64001, - 64053, - 0 - ] - }, - "from": [ - 81.2571, - -11.6474 - ], - "tag": null, - "to": [ - 82.1766, - -11.3782 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 64059, - 64133, - 0 - ] - }, - "from": [ - 82.1766, - -11.3782 - ], - "tag": null, - "to": [ - 82.8865, - -11.2611 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 64139, - 64214, - 0 - ] - }, - "from": [ - 82.8865, - -11.2611 - ], - "tag": null, - "to": [ - 82.5078, - -10.5504 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 64220, - 64297, - 0 - ] - }, - "from": [ - 82.5078, - -10.5504 - ], - "tag": null, - "to": [ - 82.2105, - -10.6169 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 64303, - 64378, - 0 - ] - }, - "from": [ - 82.2105, - -10.6169 - ], - "tag": null, - "to": [ - 82.4401, - -11.3771 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 64384, - 64459, - 0 - ] - }, - "from": [ - 82.4401, - -11.3771 - ], - "tag": null, - "to": [ - 81.8045, - -11.1825 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 64465, - 64517, - 0 - ] - }, - "from": [ - 81.8045, - -11.1825 - ], - "tag": null, - "to": [ - 82.3766, - -10.8937 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 64523, - 64599, - 0 - ] - }, - "from": [ - 82.3766, - -10.8937 - ], - "tag": null, - "to": [ - 81.4186, - -10.9161 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 64605, - 64679, - 0 - ] - }, - "from": [ - 81.4186, - -10.9161 - ], - "tag": null, - "to": [ - 81.7485, - -11.7515 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 64685, - 64759, - 0 - ] - }, - "from": [ - 81.7485, - -11.7515 - ], - "tag": null, - "to": [ - 82.492, - -12.5434 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 64765, - 64817, - 0 - ] - }, - "from": [ - 82.492, - -12.5434 - ], - "tag": null, - "to": [ - 83.4855, - -11.6392 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 64823, - 64897, - 0 - ] - }, - "from": [ - 83.4855, - -11.6392 - ], - "tag": null, - "to": [ - 82.982, - -11.1241 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 64903, - 64955, - 0 - ] - }, - "from": [ - 82.982, - -11.1241 - ], - "tag": null, - "to": [ - 83.5346, - -10.3628 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 64961, - 65035, - 0 - ] - }, - "from": [ - 83.5346, - -10.3628 - ], - "tag": null, - "to": [ - 84.3939, - -10.2787 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 65041, - 65115, - 0 - ] - }, - "from": [ - 84.3939, - -10.2787 - ], - "tag": null, - "to": [ - 83.5758, - -11.1822 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 65121, - 65196, - 0 - ] - }, - "from": [ - 83.5758, - -11.1822 - ], - "tag": null, - "to": [ - 83.8924, - -11.4241 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 65202, - 65279, - 0 - ] - }, - "from": [ - 83.8924, - -11.4241 - ], - "tag": null, - "to": [ - 83.4485, - -11.6832 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 65285, - 65361, - 0 - ] - }, - "from": [ - 83.4485, - -11.6832 - ], - "tag": null, - "to": [ - 82.788, - -12.0868 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 65367, - 65442, - 0 - ] - }, - "from": [ - 82.788, - -12.0868 - ], - "tag": null, - "to": [ - 82.0709, - -11.8523 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 65448, - 65524, - 0 - ] - }, - "from": [ - 82.0709, - -11.8523 - ], - "tag": null, - "to": [ - 81.8141, - -12.3026 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 65530, - 65604, - 0 - ] - }, - "from": [ - 81.8141, - -12.3026 - ], - "tag": null, - "to": [ - 82.4893, - -13.2735 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 65610, - 65684, - 0 - ] - }, - "from": [ - 82.4893, - -13.2735 - ], - "tag": null, - "to": [ - 81.9203, - -12.6816 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 65690, - 65764, - 0 - ] - }, - "from": [ - 81.9203, - -12.6816 - ], - "tag": null, - "to": [ - 81.0875, - -12.2139 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 65770, - 65846, - 0 - ] - }, - "from": [ - 81.0875, - -12.2139 - ], - "tag": null, - "to": [ - 80.2763, - -12.632 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 65852, - 65927, - 0 - ] - }, - "from": [ - 80.2763, - -12.632 - ], - "tag": null, - "to": [ - 80.3144, - -12.3754 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 65933, - 66008, - 0 - ] - }, - "from": [ - 80.3144, - -12.3754 - ], - "tag": null, - "to": [ - 80.5539, - -11.9384 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 66014, - 66089, - 0 - ] - }, - "from": [ - 80.5539, - -11.9384 - ], - "tag": null, - "to": [ - 80.3911, - -11.132 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 66095, - 66172, - 0 - ] - }, - "from": [ - 80.3911, - -11.132 - ], - "tag": null, - "to": [ - 80.3014, - -11.2209 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 66178, - 66253, - 0 - ] - }, - "from": [ - 80.3014, - -11.2209 - ], - "tag": null, - "to": [ - 81.2217, - -11.3943 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 66259, - 66336, - 0 - ] - }, - "from": [ - 81.2217, - -11.3943 - ], - "tag": null, - "to": [ - 81.2235, - -11.9121 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 66342, - 66416, - 0 - ] - }, - "from": [ - 81.2235, - -11.9121 - ], - "tag": null, - "to": [ - 81.8441, - -12.7855 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 66422, - 66496, - 0 - ] - }, - "from": [ - 81.8441, - -12.7855 - ], - "tag": null, - "to": [ - 81.0665, - -12.0252 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 66502, - 66554, - 0 - ] - }, - "from": [ - 81.0665, - -12.0252 - ], - "tag": null, - "to": [ - 81.6104, - -11.1803 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 66560, - 66637, - 0 - ] - }, - "from": [ - 81.6104, - -11.1803 - ], - "tag": null, - "to": [ - 81.48, - -11.1682 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 66643, - 66719, - 0 - ] - }, - "from": [ - 81.48, - -11.1682 - ], - "tag": null, - "to": [ - 81.3144, - -11.376 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 66725, - 66801, - 0 - ] - }, - "from": [ - 81.3144, - -11.376 - ], - "tag": null, - "to": [ - 81.2181, - -11.4302 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 66807, - 66858, - 0 - ] - }, - "from": [ - 81.2181, - -11.4302 - ], - "tag": null, - "to": [ - 82.1202, - -11.0343 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 66864, - 66940, - 0 - ] - }, - "from": [ - 82.1202, - -11.0343 - ], - "tag": null, - "to": [ - 82.4002, - -11.212 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 66946, - 66997, - 0 - ] - }, - "from": [ - 82.4002, - -11.212 - ], - "tag": null, - "to": [ - 82.9238, - -10.5177 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 67003, - 67078, - 0 - ] - }, - "from": [ - 82.9238, - -10.5177 - ], - "tag": null, - "to": [ - 83.3152, - -11.3017 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 67084, - 67136, - 0 - ] - }, - "from": [ - 83.3152, - -11.3017 - ], - "tag": null, - "to": [ - 84.1566, - -10.7621 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 67142, - 67216, - 0 - ] - }, - "from": [ - 84.1566, - -10.7621 - ], - "tag": null, - "to": [ - 84.7704, - -10.541 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 67222, - 67274, - 0 - ] - }, - "from": [ - 84.7704, - -10.541 - ], - "tag": null, - "to": [ - 85.6534, - -9.8413 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 67280, - 67355, - 0 - ] - }, - "from": [ - 85.6534, - -9.8413 - ], - "tag": null, - "to": [ - 85.2864, - -9.6293 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 67361, - 67435, - 0 - ] - }, - "from": [ - 85.2864, - -9.6293 - ], - "tag": null, - "to": [ - 84.8157, - -9.1387 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 67441, - 67515, - 0 - ] - }, - "from": [ - 84.8157, - -9.1387 - ], - "tag": null, - "to": [ - 83.9828, - -8.671 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 67521, - 67597, - 0 - ] - }, - "from": [ - 83.9828, - -8.671 - ], - "tag": null, - "to": [ - 83.1717, - -9.0891 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 67603, - 67678, - 0 - ] - }, - "from": [ - 83.1717, - -9.0891 - ], - "tag": null, - "to": [ - 83.2098, - -8.8325 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 67684, - 67759, - 0 - ] - }, - "from": [ - 83.2098, - -8.8325 - ], - "tag": null, - "to": [ - 83.4493, - -8.3956 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 67765, - 67840, - 0 - ] - }, - "from": [ - 83.4493, - -8.3956 - ], - "tag": null, - "to": [ - 83.2865, - -7.5891 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 67846, - 67923, - 0 - ] - }, - "from": [ - 83.2865, - -7.5891 - ], - "tag": null, - "to": [ - 83.1967, - -7.678 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 67929, - 68004, - 0 - ] - }, - "from": [ - 83.1967, - -7.678 - ], - "tag": null, - "to": [ - 84.1171, - -7.8514 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 68010, - 68087, - 0 - ] - }, - "from": [ - 84.1171, - -7.8514 - ], - "tag": null, - "to": [ - 84.1188, - -8.3693 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 68093, - 68167, - 0 - ] - }, - "from": [ - 84.1188, - -8.3693 - ], - "tag": null, - "to": [ - 84.7395, - -9.2426 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 68173, - 68247, - 0 - ] - }, - "from": [ - 84.7395, - -9.2426 - ], - "tag": null, - "to": [ - 83.9618, - -8.4823 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 68253, - 68305, - 0 - ] - }, - "from": [ - 83.9618, - -8.4823 - ], - "tag": null, - "to": [ - 84.5058, - -7.6374 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 68311, - 68388, - 0 - ] - }, - "from": [ - 84.5058, - -7.6374 - ], - "tag": null, - "to": [ - 84.3754, - -7.6254 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 68394, - 68470, - 0 - ] - }, - "from": [ - 84.3754, - -7.6254 - ], - "tag": null, - "to": [ - 84.2098, - -7.8331 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 68476, - 68552, - 0 - ] - }, - "from": [ - 84.2098, - -7.8331 - ], - "tag": null, - "to": [ - 84.1135, - -7.8873 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 68558, - 68609, - 0 - ] - }, - "from": [ - 84.1135, - -7.8873 - ], - "tag": null, - "to": [ - 85.0156, - -7.4914 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 68615, - 68691, - 0 - ] - }, - "from": [ - 85.0156, - -7.4914 - ], - "tag": null, - "to": [ - 85.2956, - -7.6692 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 68697, - 68748, - 0 - ] - }, - "from": [ - 85.2956, - -7.6692 - ], - "tag": null, - "to": [ - 85.8192, - -6.9749 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 68754, - 68829, - 0 - ] - }, - "from": [ - 85.8192, - -6.9749 - ], - "tag": null, - "to": [ - 86.2106, - -7.7588 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 68835, - 68887, - 0 - ] - }, - "from": [ - 86.2106, - -7.7588 - ], - "tag": null, - "to": [ - 87.052, - -7.2193 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 68893, - 68967, - 0 - ] - }, - "from": [ - 87.052, - -7.2193 - ], - "tag": null, - "to": [ - 87.6657, - -6.9981 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 68973, - 69025, - 0 - ] - }, - "from": [ - 87.6657, - -6.9981 - ], - "tag": null, - "to": [ - 88.5488, - -6.2984 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 69031, - 69107, - 0 - ] - }, - "from": [ - 88.5488, - -6.2984 - ], - "tag": null, - "to": [ - 88.1359, - -6.7137 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 69113, - 69187, - 0 - ] - }, - "from": [ - 88.1359, - -6.7137 - ], - "tag": null, - "to": [ - 88.6528, - -7.6222 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 69193, - 69268, - 0 - ] - }, - "from": [ - 88.6528, - -7.6222 - ], - "tag": null, - "to": [ - 87.9812, - -8.5828 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 69274, - 69351, - 0 - ] - }, - "from": [ - 87.9812, - -8.5828 - ], - "tag": null, - "to": [ - 87.9915, - -8.9562 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 69357, - 69433, - 0 - ] - }, - "from": [ - 87.9915, - -8.9562 - ], - "tag": null, - "to": [ - 88.0951, - -9.3792 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 69439, - 69514, - 0 - ] - }, - "from": [ - 88.0951, - -9.3792 - ], - "tag": null, - "to": [ - 88.5471, - -9.4915 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 69520, - 69595, - 0 - ] - }, - "from": [ - 88.5471, - -9.4915 - ], - "tag": null, - "to": [ - 87.665, - -10.207 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 69601, - 69653, - 0 - ] - }, - "from": [ - 87.665, - -10.207 - ], - "tag": null, - "to": [ - 88.5845, - -9.9379 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 69659, - 69733, - 0 - ] - }, - "from": [ - 88.5845, - -9.9379 - ], - "tag": null, - "to": [ - 89.2944, - -9.8208 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 69739, - 69814, - 0 - ] - }, - "from": [ - 89.2944, - -9.8208 - ], - "tag": null, - "to": [ - 88.9157, - -9.1101 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 69820, - 69897, - 0 - ] - }, - "from": [ - 88.9157, - -9.1101 - ], - "tag": null, - "to": [ - 88.6184, - -9.1766 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 69903, - 69978, - 0 - ] - }, - "from": [ - 88.6184, - -9.1766 - ], - "tag": null, - "to": [ - 88.848, - -9.9368 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 69984, - 70059, - 0 - ] - }, - "from": [ - 88.848, - -9.9368 - ], - "tag": null, - "to": [ - 88.2124, - -9.7422 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 70065, - 70117, - 0 - ] - }, - "from": [ - 88.2124, - -9.7422 - ], - "tag": null, - "to": [ - 88.7845, - -9.4533 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 70123, - 70199, - 0 - ] - }, - "from": [ - 88.7845, - -9.4533 - ], - "tag": null, - "to": [ - 87.8265, - -9.4758 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 70205, - 70279, - 0 - ] - }, - "from": [ - 87.8265, - -9.4758 - ], - "tag": null, - "to": [ - 88.1564, - -10.3111 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 70285, - 70359, - 0 - ] - }, - "from": [ - 88.1564, - -10.3111 - ], - "tag": null, - "to": [ - 88.8999, - -11.1031 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 70365, - 70417, - 0 - ] - }, - "from": [ - 88.8999, - -11.1031 - ], - "tag": null, - "to": [ - 89.8934, - -10.1988 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 70423, - 70497, - 0 - ] - }, - "from": [ - 89.8934, - -10.1988 - ], - "tag": null, - "to": [ - 89.3898, - -9.6837 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 70503, - 70555, - 0 - ] - }, - "from": [ - 89.3898, - -9.6837 - ], - "tag": null, - "to": [ - 89.9425, - -8.9225 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 70561, - 70635, - 0 - ] - }, - "from": [ - 89.9425, - -8.9225 - ], - "tag": null, - "to": [ - 90.8018, - -8.8383 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 70641, - 70715, - 0 - ] - }, - "from": [ - 90.8018, - -8.8383 - ], - "tag": null, - "to": [ - 89.9837, - -9.7419 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 70721, - 70796, - 0 - ] - }, - "from": [ - 89.9837, - -9.7419 - ], - "tag": null, - "to": [ - 90.3003, - -9.9838 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 70802, - 70879, - 0 - ] - }, - "from": [ - 90.3003, - -9.9838 - ], - "tag": null, - "to": [ - 89.8564, - -10.2429 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 70885, - 70961, - 0 - ] - }, - "from": [ - 89.8564, - -10.2429 - ], - "tag": null, - "to": [ - 89.1958, - -10.6465 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 70967, - 71042, - 0 - ] - }, - "from": [ - 89.1958, - -10.6465 - ], - "tag": null, - "to": [ - 88.4788, - -10.4119 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 71048, - 71124, - 0 - ] - }, - "from": [ - 88.4788, - -10.4119 - ], - "tag": null, - "to": [ - 88.222, - -10.8622 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 71130, - 71204, - 0 - ] - }, - "from": [ - 88.222, - -10.8622 - ], - "tag": null, - "to": [ - 88.8972, - -11.8332 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 71210, - 71284, - 0 - ] - }, - "from": [ - 88.8972, - -11.8332 - ], - "tag": null, - "to": [ - 88.3282, - -11.2413 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 71290, - 71364, - 0 - ] - }, - "from": [ - 88.3282, - -11.2413 - ], - "tag": null, - "to": [ - 87.4954, - -10.7735 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 71370, - 71446, - 0 - ] - }, - "from": [ - 87.4954, - -10.7735 - ], - "tag": null, - "to": [ - 86.6842, - -11.1917 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 71452, - 71527, - 0 - ] - }, - "from": [ - 86.6842, - -11.1917 - ], - "tag": null, - "to": [ - 86.7223, - -10.935 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 71533, - 71608, - 0 - ] - }, - "from": [ - 86.7223, - -10.935 - ], - "tag": null, - "to": [ - 86.9618, - -10.4981 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 71614, - 71689, - 0 - ] - }, - "from": [ - 86.9618, - -10.4981 - ], - "tag": null, - "to": [ - 86.799, - -9.6916 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 71695, - 71772, - 0 - ] - }, - "from": [ - 86.799, - -9.6916 - ], - "tag": null, - "to": [ - 86.7093, - -9.7805 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 71778, - 71853, - 0 - ] - }, - "from": [ - 86.7093, - -9.7805 - ], - "tag": null, - "to": [ - 87.6296, - -9.9539 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 71859, - 71936, - 0 - ] - }, - "from": [ - 87.6296, - -9.9539 - ], - "tag": null, - "to": [ - 87.6314, - -10.4718 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 71942, - 72016, - 0 - ] - }, - "from": [ - 87.6314, - -10.4718 - ], - "tag": null, - "to": [ - 88.252, - -11.3451 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72022, - 72096, - 0 - ] - }, - "from": [ - 88.252, - -11.3451 - ], - "tag": null, - "to": [ - 87.4744, - -10.5849 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72102, - 72154, - 0 - ] - }, - "from": [ - 87.4744, - -10.5849 - ], - "tag": null, - "to": [ - 88.0183, - -9.7399 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72160, - 72237, - 0 - ] - }, - "from": [ - 88.0183, - -9.7399 - ], - "tag": null, - "to": [ - 87.8879, - -9.7279 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72243, - 72319, - 0 - ] - }, - "from": [ - 87.8879, - -9.7279 - ], - "tag": null, - "to": [ - 87.7223, - -9.9356 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72325, - 72401, - 0 - ] - }, - "from": [ - 87.7223, - -9.9356 - ], - "tag": null, - "to": [ - 87.626, - -9.9898 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72407, - 72458, - 0 - ] - }, - "from": [ - 87.626, - -9.9898 - ], - "tag": null, - "to": [ - 88.5281, - -9.5939 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72464, - 72540, - 0 - ] - }, - "from": [ - 88.5281, - -9.5939 - ], - "tag": null, - "to": [ - 88.8081, - -9.7717 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72546, - 72597, - 0 - ] - }, - "from": [ - 88.8081, - -9.7717 - ], - "tag": null, - "to": [ - 89.3317, - -9.0774 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72603, - 72678, - 0 - ] - }, - "from": [ - 89.3317, - -9.0774 - ], - "tag": null, - "to": [ - 89.7231, - -9.8614 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72684, - 72736, - 0 - ] - }, - "from": [ - 89.7231, - -9.8614 - ], - "tag": null, - "to": [ - 90.5645, - -9.3218 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72742, - 72816, - 0 - ] - }, - "from": [ - 90.5645, - -9.3218 - ], - "tag": null, - "to": [ - 91.1783, - -9.1006 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72822, - 72898, - 0 - ] - }, - "from": [ - 91.1783, - -9.1006 - ], - "tag": null, - "to": [ - 91.0825, - -9.854 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72904, - 72980, - 0 - ] - }, - "from": [ - 91.0825, - -9.854 - ], - "tag": null, - "to": [ - 90.9099, - -10.6209 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 72986, - 73038, - 0 - ] - }, - "from": [ - 90.9099, - -10.6209 - ], - "tag": null, - "to": [ - 91.8044, - -10.0116 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 73044, - 73120, - 0 - ] - }, - "from": [ - 91.8044, - -10.0116 - ], - "tag": null, - "to": [ - 91.3915, - -10.4268 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 73126, - 73200, - 0 - ] - }, - "from": [ - 91.3915, - -10.4268 - ], - "tag": null, - "to": [ - 91.9084, - -11.3354 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 73206, - 73280, - 0 - ] - }, - "from": [ - 91.9084, - -11.3354 - ], - "tag": null, - "to": [ - 92.5836, - -12.3063 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 73286, - 73360, - 0 - ] - }, - "from": [ - 92.5836, - -12.3063 - ], - "tag": null, - "to": [ - 92.0147, - -11.7144 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 73366, - 73440, - 0 - ] - }, - "from": [ - 92.0147, - -11.7144 - ], - "tag": null, - "to": [ - 92.9611, - -11.9829 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 73446, - 73498, - 0 - ] - }, - "from": [ - 92.9611, - -11.9829 - ], - "tag": null, - "to": [ - 93.4853, - -11.0818 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 73504, - 73580, - 0 - ] - }, - "from": [ - 93.4853, - -11.0818 - ], - "tag": null, - "to": [ - 93.3427, - -11.6012 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 73586, - 73661, - 0 - ] - }, - "from": [ - 93.3427, - -11.6012 - ], - "tag": null, - "to": [ - 92.914, - -12.0236 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 73667, - 73743, - 0 - ] - }, - "from": [ - 92.914, - -12.0236 - ], - "tag": null, - "to": [ - 92.8209, - -12.9299 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 73749, - 73823, - 0 - ] - }, - "from": [ - 92.8209, - -12.9299 - ], - "tag": null, - "to": [ - 92.5441, - -12.2483 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 73829, - 73903, - 0 - ] - }, - "from": [ - 92.5441, - -12.2483 - ], - "tag": null, - "to": [ - 93.5238, - -12.3305 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 73909, - 73983, - 0 - ] - }, - "from": [ - 93.5238, - -12.3305 - ], - "tag": null, - "to": [ - 92.6571, - -12.6315 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 73989, - 74063, - 0 - ] - }, - "from": [ - 92.6571, - -12.6315 - ], - "tag": null, - "to": [ - 93.1945, - -12.6113 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 74069, - 74143, - 0 - ] - }, - "from": [ - 93.1945, - -12.6113 - ], - "tag": null, - "to": [ - 94.1278, - -13.2341 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 74149, - 74225, - 0 - ] - }, - "from": [ - 94.1278, - -13.2341 - ], - "tag": null, - "to": [ - 94.3083, - -13.603 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 74231, - 74283, - 0 - ] - }, - "from": [ - 94.3083, - -13.603 - ], - "tag": null, - "to": [ - 94.8467, - -13.3653 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 74289, - 74364, - 0 - ] - }, - "from": [ - 94.8467, - -13.3653 - ], - "tag": null, - "to": [ - 95.2372, - -13.2225 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 74370, - 74444, - 0 - ] - }, - "from": [ - 95.2372, - -13.2225 - ], - "tag": null, - "to": [ - 95.335, - -12.2318 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 74450, - 74524, - 0 - ] - }, - "from": [ - 95.335, - -12.2318 - ], - "tag": null, - "to": [ - 95.8637, - -13.0242 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 74530, - 74604, - 0 - ] - }, - "from": [ - 95.8637, - -13.0242 - ], - "tag": null, - "to": [ - 96.2427, - -12.9003 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 74610, - 74684, - 0 - ] - }, - "from": [ - 96.2427, - -12.9003 - ], - "tag": null, - "to": [ - 95.2942, - -12.2273 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 74690, - 74765, - 0 - ] - }, - "from": [ - 95.2942, - -12.2273 - ], - "tag": null, - "to": [ - 96.0393, - -12.4405 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 74771, - 74846, - 0 - ] - }, - "from": [ - 96.0393, - -12.4405 - ], - "tag": null, - "to": [ - 96.2267, - -12.6001 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 74852, - 74928, - 0 - ] - }, - "from": [ - 96.2267, - -12.6001 - ], - "tag": null, - "to": [ - 96.1694, - -13.1437 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 74934, - 75010, - 0 - ] - }, - "from": [ - 96.1694, - -13.1437 - ], - "tag": null, - "to": [ - 96.0735, - -13.8971 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 75016, - 75092, - 0 - ] - }, - "from": [ - 96.0735, - -13.8971 - ], - "tag": null, - "to": [ - 95.901, - -14.664 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 75098, - 75150, - 0 - ] - }, - "from": [ - 95.901, - -14.664 - ], - "tag": null, - "to": [ - 96.7955, - -14.0547 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 75156, - 75230, - 0 - ] - }, - "from": [ - 96.7955, - -14.0547 - ], - "tag": null, - "to": [ - 96.1716, - -13.6493 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 75236, - 75311, - 0 - ] - }, - "from": [ - 96.1716, - -13.6493 - ], - "tag": null, - "to": [ - 96.3096, - -14.128 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 75317, - 75391, - 0 - ] - }, - "from": [ - 96.3096, - -14.128 - ], - "tag": null, - "to": [ - 95.3579, - -13.266 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 75397, - 75449, - 0 - ] - }, - "from": [ - 95.3579, - -13.266 - ], - "tag": null, - "to": [ - 96.2978, - -12.6334 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 75455, - 75531, - 0 - ] - }, - "from": [ - 96.2978, - -12.6334 - ], - "tag": null, - "to": [ - 95.4346, - -12.6173 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 75537, - 75612, - 0 - ] - }, - "from": [ - 95.4346, - -12.6173 - ], - "tag": null, - "to": [ - 95.6262, - -13.1089 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 75618, - 75694, - 0 - ] - }, - "from": [ - 95.6262, - -13.1089 - ], - "tag": null, - "to": [ - 94.7618, - -13.2233 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 75700, - 75777, - 0 - ] - }, - "from": [ - 94.7618, - -13.2233 - ], - "tag": null, - "to": [ - 94.7327, - -13.7447 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 75783, - 75857, - 0 - ] - }, - "from": [ - 94.7327, - -13.7447 - ], - "tag": null, - "to": [ - 93.8614, - -12.958 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 75863, - 75915, - 0 - ] - }, - "from": [ - 93.8614, - -12.958 - ], - "tag": null, - "to": [ - 94.7458, - -13.1406 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 75921, - 75995, - 0 - ] - }, - "from": [ - 94.7458, - -13.1406 - ], - "tag": null, - "to": [ - 94.0479, - -13.0965 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 76001, - 76079, - 0 - ] - }, - "from": [ - 94.0479, - -13.0965 - ], - "tag": null, - "to": [ - 93.5674, - -13.1251 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 76085, - 76161, - 0 - ] - }, - "from": [ - 93.5674, - -13.1251 - ], - "tag": null, - "to": [ - 93.9802, - -13.5744 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 76167, - 76218, - 0 - ] - }, - "from": [ - 93.9802, - -13.5744 - ], - "tag": null, - "to": [ - 94.7713, - -12.681 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 76224, - 76298, - 0 - ] - }, - "from": [ - 94.7713, - -12.681 - ], - "tag": null, - "to": [ - 95.4221, - -13.37 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 76304, - 76379, - 0 - ] - }, - "from": [ - 95.4221, - -13.37 - ], - "tag": null, - "to": [ - 95.527, - -13.9168 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 76385, - 76460, - 0 - ] - }, - "from": [ - 95.527, - -13.9168 - ], - "tag": null, - "to": [ - 94.9509, - -14.1807 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 76466, - 76540, - 0 - ] - }, - "from": [ - 94.9509, - -14.1807 - ], - "tag": null, - "to": [ - 95.3492, - -13.3771 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 76546, - 76598, - 0 - ] - }, - "from": [ - 95.3492, - -13.3771 - ], - "tag": null, - "to": [ - 94.6753, - -14.2955 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 76604, - 76679, - 0 - ] - }, - "from": [ - 94.6753, - -14.2955 - ], - "tag": null, - "to": [ - 93.8154, - -15.2455 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 76685, - 76759, - 0 - ] - }, - "from": [ - 93.8154, - -15.2455 - ], - "tag": null, - "to": [ - 94.4439, - -15.7641 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 76765, - 76839, - 0 - ] - }, - "from": [ - 94.4439, - -15.7641 - ], - "tag": null, - "to": [ - 94.7662, - -15.5179 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 76845, - 76920, - 0 - ] - }, - "from": [ - 94.7662, - -15.5179 - ], - "tag": null, - "to": [ - 94.9637, - -16.2708 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 76926, - 77002, - 0 - ] - }, - "from": [ - 94.9637, - -16.2708 - ], - "tag": null, - "to": [ - 94.5319, - -16.0814 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 77008, - 77082, - 0 - ] - }, - "from": [ - 94.5319, - -16.0814 - ], - "tag": null, - "to": [ - 95.4034, - -16.803 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 77088, - 77096, - 0 - ] - }, - "from": [ - 95.4034, - -16.803 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 35, - 64, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 35, - 64, - 0 - ] - } + "sourceRange": [ + 70, + 145, + 0 ] }, - "height": 5.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + -0.367, + 0.212 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 151, + 225, + 0 + ] }, - "__meta": [ - { - "sourceRange": [ - 35, - 64, - 0 - ] - } + "from": [ + -0.367, + 0.212 + ], + "tag": null, + "to": [ + -0.8378, + 0.7025 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 231, + 305, + 0 + ] + }, + "from": [ + -0.8378, + 0.7025 + ], + "tag": null, + "to": [ + -1.6706, + 1.1703 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 311, + 387, + 0 + ] + }, + "from": [ + -1.6706, + 1.1703 + ], + "tag": null, + "to": [ + -2.4818, + 0.7521 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 393, + 468, + 0 + ] + }, + "from": [ + -2.4818, + 0.7521 + ], + "tag": null, + "to": [ + -2.4437, + 1.0088 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 474, + 549, + 0 + ] + }, + "from": [ + -2.4437, + 1.0088 + ], + "tag": null, + "to": [ + -2.2042, + 1.4457 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 555, + 630, + 0 + ] + }, + "from": [ + -2.2042, + 1.4457 + ], + "tag": null, + "to": [ + -2.367, + 2.2522 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 636, + 713, + 0 + ] + }, + "from": [ + -2.367, + 2.2522 + ], + "tag": null, + "to": [ + -2.4567, + 2.1633 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 719, + 794, + 0 + ] + }, + "from": [ + -2.4567, + 2.1633 + ], + "tag": null, + "to": [ + -1.5364, + 1.9899 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 800, + 877, + 0 + ] + }, + "from": [ + -1.5364, + 1.9899 + ], + "tag": null, + "to": [ + -1.5346, + 1.472 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 883, + 957, + 0 + ] + }, + "from": [ + -1.5346, + 1.472 + ], + "tag": null, + "to": [ + -0.914, + 0.5987 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 963, + 1037, + 0 + ] + }, + "from": [ + -0.914, + 0.5987 + ], + "tag": null, + "to": [ + -1.6916, + 1.3589 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1043, + 1095, + 0 + ] + }, + "from": [ + -1.6916, + 1.3589 + ], + "tag": null, + "to": [ + -1.1477, + 2.2039 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1101, + 1178, + 0 + ] + }, + "from": [ + -1.1477, + 2.2039 + ], + "tag": null, + "to": [ + -1.278, + 2.2159 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1184, + 1260, + 0 + ] + }, + "from": [ + -1.278, + 2.2159 + ], + "tag": null, + "to": [ + -1.4437, + 2.0082 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1266, + 1342, + 0 + ] + }, + "from": [ + -1.4437, + 2.0082 + ], + "tag": null, + "to": [ + -1.54, + 1.954 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1348, + 1399, + 0 + ] + }, + "from": [ + -1.54, + 1.954 + ], + "tag": null, + "to": [ + -0.6379, + 2.3499 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1405, + 1481, + 0 + ] + }, + "from": [ + -0.6379, + 2.3499 + ], + "tag": null, + "to": [ + -0.3579, + 2.1721 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1487, + 1538, + 0 + ] + }, + "from": [ + -0.3579, + 2.1721 + ], + "tag": null, + "to": [ + 0.1657, + 2.8664 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1544, + 1619, + 0 + ] + }, + "from": [ + 0.1657, + 2.8664 + ], + "tag": null, + "to": [ + 0.5571, + 2.0824 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1625, + 1677, + 0 + ] + }, + "from": [ + 0.5571, + 2.0824 + ], + "tag": null, + "to": [ + 1.3985, + 2.622 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1683, + 1757, + 0 + ] + }, + "from": [ + 1.3985, + 2.622 + ], + "tag": null, + "to": [ + 2.0123, + 2.8432 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1763, + 1815, + 0 + ] + }, + "from": [ + 2.0123, + 2.8432 + ], + "tag": null, + "to": [ + 2.8954, + 3.5429 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1821, + 1897, + 0 + ] + }, + "from": [ + 2.8954, + 3.5429 + ], + "tag": null, + "to": [ + 2.4824, + 3.1276 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1903, + 1977, + 0 + ] + }, + "from": [ + 2.4824, + 3.1276 + ], + "tag": null, + "to": [ + 2.9994, + 2.219 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1983, + 2058, + 0 + ] + }, + "from": [ + 2.9994, + 2.219 + ], + "tag": null, + "to": [ + 2.3278, + 1.2585 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2064, + 2141, + 0 + ] + }, + "from": [ + 2.3278, + 1.2585 + ], + "tag": null, + "to": [ + 2.338, + 0.885 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2147, + 2223, + 0 + ] + }, + "from": [ + 2.338, + 0.885 + ], + "tag": null, + "to": [ + 2.4416, + 0.4621 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2229, + 2304, + 0 + ] + }, + "from": [ + 2.4416, + 0.4621 + ], + "tag": null, + "to": [ + 2.8937, + 0.3498 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2310, + 2385, + 0 + ] + }, + "from": [ + 2.8937, + 0.3498 + ], + "tag": null, + "to": [ + 2.0115, + -0.3657 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2391, + 2443, + 0 + ] + }, + "from": [ + 2.0115, + -0.3657 + ], + "tag": null, + "to": [ + 2.9311, + -0.0966 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2449, + 2523, + 0 + ] + }, + "from": [ + 2.9311, + -0.0966 + ], + "tag": null, + "to": [ + 3.641, + 0.0205 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2529, + 2604, + 0 + ] + }, + "from": [ + 3.641, + 0.0205 + ], + "tag": null, + "to": [ + 3.2622, + 0.7312 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2610, + 2687, + 0 + ] + }, + "from": [ + 3.2622, + 0.7312 + ], + "tag": null, + "to": [ + 2.9649, + 0.6647 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2693, + 2768, + 0 + ] + }, + "from": [ + 2.9649, + 0.6647 + ], + "tag": null, + "to": [ + 3.1946, + -0.0955 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2774, + 2849, + 0 + ] + }, + "from": [ + 3.1946, + -0.0955 + ], + "tag": null, + "to": [ + 2.5589, + 0.0991 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2855, + 2907, + 0 + ] + }, + "from": [ + 2.5589, + 0.0991 + ], + "tag": null, + "to": [ + 3.1311, + 0.388 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2913, + 2989, + 0 + ] + }, + "from": [ + 3.1311, + 0.388 + ], + "tag": null, + "to": [ + 2.173, + 0.3655 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 2995, + 3069, + 0 + ] + }, + "from": [ + 2.173, + 0.3655 + ], + "tag": null, + "to": [ + 2.5029, + -0.4699 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 3075, + 3149, + 0 + ] + }, + "from": [ + 2.5029, + -0.4699 + ], + "tag": null, + "to": [ + 3.2464, + -1.2618 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 3155, + 3207, + 0 + ] + }, + "from": [ + 3.2464, + -1.2618 + ], + "tag": null, + "to": [ + 4.24, + -0.3576 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 3213, + 3287, + 0 + ] + }, + "from": [ + 4.24, + -0.3576 + ], + "tag": null, + "to": [ + 3.7364, + 0.1575 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 3293, + 3345, + 0 + ] + }, + "from": [ + 3.7364, + 0.1575 + ], + "tag": null, + "to": [ + 4.289, + 0.9188 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 3351, + 3425, + 0 + ] + }, + "from": [ + 4.289, + 0.9188 + ], + "tag": null, + "to": [ + 5.1484, + 1.0029 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 3431, + 3505, + 0 + ] + }, + "from": [ + 5.1484, + 1.0029 + ], + "tag": null, + "to": [ + 4.3302, + 0.0994 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 3511, + 3586, + 0 + ] + }, + "from": [ + 4.3302, + 0.0994 + ], + "tag": null, + "to": [ + 4.6468, + -0.1425 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 3592, + 3669, + 0 + ] + }, + "from": [ + 4.6468, + -0.1425 + ], + "tag": null, + "to": [ + 4.2029, + -0.4016 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 3675, + 3751, + 0 + ] + }, + "from": [ + 4.2029, + -0.4016 + ], + "tag": null, + "to": [ + 3.5424, + -0.8052 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 3757, + 3832, + 0 + ] + }, + "from": [ + 3.5424, + -0.8052 + ], + "tag": null, + "to": [ + 2.8254, + -0.5706 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 3838, + 3914, + 0 + ] + }, + "from": [ + 2.8254, + -0.5706 + ], + "tag": null, + "to": [ + 2.5685, + -1.0209 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 3920, + 3994, + 0 + ] + }, + "from": [ + 2.5685, + -1.0209 + ], + "tag": null, + "to": [ + 3.2437, + -1.9919 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 4000, + 4074, + 0 + ] + }, + "from": [ + 3.2437, + -1.9919 + ], + "tag": null, + "to": [ + 2.6748, + -1.4 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 4080, + 4154, + 0 + ] + }, + "from": [ + 2.6748, + -1.4 + ], + "tag": null, + "to": [ + 1.8419, + -0.9322 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 4160, + 4236, + 0 + ] + }, + "from": [ + 1.8419, + -0.9322 + ], + "tag": null, + "to": [ + 1.0308, + -1.3504 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 4242, + 4317, + 0 + ] + }, + "from": [ + 1.0308, + -1.3504 + ], + "tag": null, + "to": [ + 1.0689, + -1.0937 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 4323, + 4398, + 0 + ] + }, + "from": [ + 1.0689, + -1.0937 + ], + "tag": null, + "to": [ + 1.3084, + -0.6568 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 4404, + 4479, + 0 + ] + }, + "from": [ + 1.3084, + -0.6568 + ], + "tag": null, + "to": [ + 1.1456, + 0.1496 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 4485, + 4562, + 0 + ] + }, + "from": [ + 1.1456, + 0.1496 + ], + "tag": null, + "to": [ + 1.0558, + 0.0608 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 4568, + 4643, + 0 + ] + }, + "from": [ + 1.0558, + 0.0608 + ], + "tag": null, + "to": [ + 1.9762, + -0.1127 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 4649, + 4726, + 0 + ] + }, + "from": [ + 1.9762, + -0.1127 + ], + "tag": null, + "to": [ + 1.9779, + -0.6305 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 4732, + 4806, + 0 + ] + }, + "from": [ + 1.9779, + -0.6305 + ], + "tag": null, + "to": [ + 2.5986, + -1.5039 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 4812, + 4886, + 0 + ] + }, + "from": [ + 2.5986, + -1.5039 + ], + "tag": null, + "to": [ + 1.8209, + -0.7436 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 4892, + 4944, + 0 + ] + }, + "from": [ + 1.8209, + -0.7436 + ], + "tag": null, + "to": [ + 2.3649, + 0.1013 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 4950, + 5027, + 0 + ] + }, + "from": [ + 2.3649, + 0.1013 + ], + "tag": null, + "to": [ + 2.2345, + 0.1134 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5033, + 5109, + 0 + ] + }, + "from": [ + 2.2345, + 0.1134 + ], + "tag": null, + "to": [ + 2.0688, + -0.0944 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5115, + 5191, + 0 + ] + }, + "from": [ + 2.0688, + -0.0944 + ], + "tag": null, + "to": [ + 1.9726, + -0.1485 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5197, + 5248, + 0 + ] + }, + "from": [ + 1.9726, + -0.1485 + ], + "tag": null, + "to": [ + 2.8747, + 0.2474 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5254, + 5330, + 0 + ] + }, + "from": [ + 2.8747, + 0.2474 + ], + "tag": null, + "to": [ + 3.1547, + 0.0696 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5336, + 5387, + 0 + ] + }, + "from": [ + 3.1547, + 0.0696 + ], + "tag": null, + "to": [ + 3.6782, + 0.7639 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5393, + 5468, + 0 + ] + }, + "from": [ + 3.6782, + 0.7639 + ], + "tag": null, + "to": [ + 4.0697, + -0.0201 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5474, + 5526, + 0 + ] + }, + "from": [ + 4.0697, + -0.0201 + ], + "tag": null, + "to": [ + 4.9111, + 0.5195 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5532, + 5606, + 0 + ] + }, + "from": [ + 4.9111, + 0.5195 + ], + "tag": null, + "to": [ + 5.5248, + 0.7407 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5612, + 5664, + 0 + ] + }, + "from": [ + 5.5248, + 0.7407 + ], + "tag": null, + "to": [ + 6.4079, + 1.4403 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5670, + 5746, + 0 + ] + }, + "from": [ + 6.4079, + 1.4403 + ], + "tag": null, + "to": [ + 5.995, + 1.0251 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5752, + 5826, + 0 + ] + }, + "from": [ + 5.995, + 1.0251 + ], + "tag": null, + "to": [ + 6.5119, + 0.1165 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5832, + 5906, + 0 + ] + }, + "from": [ + 6.5119, + 0.1165 + ], + "tag": null, + "to": [ + 7.1871, + -0.8544 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5912, + 5986, + 0 + ] + }, + "from": [ + 7.1871, + -0.8544 + ], + "tag": null, + "to": [ + 6.6182, + -0.2625 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 5992, + 6066, + 0 + ] + }, + "from": [ + 6.6182, + -0.2625 + ], + "tag": null, + "to": [ + 7.5646, + -0.531 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 6072, + 6124, + 0 + ] + }, + "from": [ + 7.5646, + -0.531 + ], + "tag": null, + "to": [ + 8.0888, + 0.3701 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 6130, + 6206, + 0 + ] + }, + "from": [ + 8.0888, + 0.3701 + ], + "tag": null, + "to": [ + 7.9462, + -0.1493 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 6212, + 6287, + 0 + ] + }, + "from": [ + 7.9462, + -0.1493 + ], + "tag": null, + "to": [ + 7.5175, + -0.5717 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 6293, + 6369, + 0 + ] + }, + "from": [ + 7.5175, + -0.5717 + ], + "tag": null, + "to": [ + 7.4244, + -1.478 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 6375, + 6449, + 0 + ] + }, + "from": [ + 7.4244, + -1.478 + ], + "tag": null, + "to": [ + 7.1476, + -0.7963 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 6455, + 6529, + 0 + ] + }, + "from": [ + 7.1476, + -0.7963 + ], + "tag": null, + "to": [ + 8.1273, + -0.8786 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 6535, + 6609, + 0 + ] + }, + "from": [ + 8.1273, + -0.8786 + ], + "tag": null, + "to": [ + 7.2606, + -1.1796 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 6615, + 6689, + 0 + ] + }, + "from": [ + 7.2606, + -1.1796 + ], + "tag": null, + "to": [ + 7.798, + -1.1593 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 6695, + 6769, + 0 + ] + }, + "from": [ + 7.798, + -1.1593 + ], + "tag": null, + "to": [ + 8.7313, + -1.7822 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 6775, + 6851, + 0 + ] + }, + "from": [ + 8.7313, + -1.7822 + ], + "tag": null, + "to": [ + 8.9118, + -2.1511 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 6857, + 6909, + 0 + ] + }, + "from": [ + 8.9118, + -2.1511 + ], + "tag": null, + "to": [ + 9.4502, + -1.9133 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 6915, + 6990, + 0 + ] + }, + "from": [ + 9.4502, + -1.9133 + ], + "tag": null, + "to": [ + 9.8407, + -1.7706 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 6996, + 7070, + 0 + ] + }, + "from": [ + 9.8407, + -1.7706 + ], + "tag": null, + "to": [ + 9.9385, + -0.7798 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 7076, + 7150, + 0 + ] + }, + "from": [ + 9.9385, + -0.7798 + ], + "tag": null, + "to": [ + 10.4672, + -1.5723 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 7156, + 7230, + 0 + ] + }, + "from": [ + 10.4672, + -1.5723 + ], + "tag": null, + "to": [ + 10.8461, + -1.4483 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 7236, + 7310, + 0 + ] + }, + "from": [ + 10.8461, + -1.4483 + ], + "tag": null, + "to": [ + 9.8977, + -0.7754 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 7316, + 7391, + 0 + ] + }, + "from": [ + 9.8977, + -0.7754 + ], + "tag": null, + "to": [ + 10.6428, + -0.9886 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 7397, + 7472, + 0 + ] + }, + "from": [ + 10.6428, + -0.9886 + ], + "tag": null, + "to": [ + 10.8302, + -1.1482 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 7478, + 7554, + 0 + ] + }, + "from": [ + 10.8302, + -1.1482 + ], + "tag": null, + "to": [ + 10.7729, + -1.6918 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 7560, + 7636, + 0 + ] + }, + "from": [ + 10.7729, + -1.6918 + ], + "tag": null, + "to": [ + 10.677, + -2.4452 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 7642, + 7718, + 0 + ] + }, + "from": [ + 10.677, + -2.4452 + ], + "tag": null, + "to": [ + 10.5045, + -3.2121 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 7724, + 7776, + 0 + ] + }, + "from": [ + 10.5045, + -3.2121 + ], + "tag": null, + "to": [ + 11.399, + -2.6028 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 7782, + 7857, + 0 + ] + }, + "from": [ + 11.399, + -2.6028 + ], + "tag": null, + "to": [ + 11.0319, + -2.3908 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 7863, + 7937, + 0 + ] + }, + "from": [ + 11.0319, + -2.3908 + ], + "tag": null, + "to": [ + 10.5612, + -1.9002 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 7943, + 8017, + 0 + ] + }, + "from": [ + 10.5612, + -1.9002 + ], + "tag": null, + "to": [ + 9.7284, + -1.4325 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 8023, + 8099, + 0 + ] + }, + "from": [ + 9.7284, + -1.4325 + ], + "tag": null, + "to": [ + 8.9172, + -1.8506 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 8105, + 8180, + 0 + ] + }, + "from": [ + 8.9172, + -1.8506 + ], + "tag": null, + "to": [ + 8.9553, + -1.594 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 8186, + 8261, + 0 + ] + }, + "from": [ + 8.9553, + -1.594 + ], + "tag": null, + "to": [ + 9.1948, + -1.157 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 8267, + 8342, + 0 + ] + }, + "from": [ + 9.1948, + -1.157 + ], + "tag": null, + "to": [ + 9.032, + -0.3506 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 8348, + 8425, + 0 + ] + }, + "from": [ + 9.032, + -0.3506 + ], + "tag": null, + "to": [ + 8.9423, + -0.4395 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 8431, + 8506, + 0 + ] + }, + "from": [ + 8.9423, + -0.4395 + ], + "tag": null, + "to": [ + 9.8626, + -0.6129 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 8512, + 8589, + 0 + ] + }, + "from": [ + 9.8626, + -0.6129 + ], + "tag": null, + "to": [ + 9.8644, + -1.1308 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 8595, + 8669, + 0 + ] + }, + "from": [ + 9.8644, + -1.1308 + ], + "tag": null, + "to": [ + 10.485, + -2.0041 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 8675, + 8749, + 0 + ] + }, + "from": [ + 10.485, + -2.0041 + ], + "tag": null, + "to": [ + 9.7074, + -1.2438 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 8755, + 8807, + 0 + ] + }, + "from": [ + 9.7074, + -1.2438 + ], + "tag": null, + "to": [ + 10.2513, + -0.3989 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 8813, + 8890, + 0 + ] + }, + "from": [ + 10.2513, + -0.3989 + ], + "tag": null, + "to": [ + 10.1209, + -0.3869 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 8896, + 8972, + 0 + ] + }, + "from": [ + 10.1209, + -0.3869 + ], + "tag": null, + "to": [ + 9.9553, + -0.5946 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 8978, + 9054, + 0 + ] + }, + "from": [ + 9.9553, + -0.5946 + ], + "tag": null, + "to": [ + 9.859, + -0.6488 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 9060, + 9111, + 0 + ] + }, + "from": [ + 9.859, + -0.6488 + ], + "tag": null, + "to": [ + 10.7611, + -0.2529 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 9117, + 9193, + 0 + ] + }, + "from": [ + 10.7611, + -0.2529 + ], + "tag": null, + "to": [ + 11.0411, + -0.4307 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 9199, + 9250, + 0 + ] + }, + "from": [ + 11.0411, + -0.4307 + ], + "tag": null, + "to": [ + 11.5647, + 0.2637 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 9256, + 9331, + 0 + ] + }, + "from": [ + 11.5647, + 0.2637 + ], + "tag": null, + "to": [ + 11.9561, + -0.5203 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 9337, + 9389, + 0 + ] + }, + "from": [ + 11.9561, + -0.5203 + ], + "tag": null, + "to": [ + 12.7975, + 0.0192 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 9395, + 9469, + 0 + ] + }, + "from": [ + 12.7975, + 0.0192 + ], + "tag": null, + "to": [ + 13.4113, + 0.2404 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 9475, + 9527, + 0 + ] + }, + "from": [ + 13.4113, + 0.2404 + ], + "tag": null, + "to": [ + 14.2943, + 0.9401 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 9533, + 9609, + 0 + ] + }, + "from": [ + 14.2943, + 0.9401 + ], + "tag": null, + "to": [ + 13.8814, + 0.5248 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 9615, + 9689, + 0 + ] + }, + "from": [ + 13.8814, + 0.5248 + ], + "tag": null, + "to": [ + 14.3984, + -0.3837 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 9695, + 9770, + 0 + ] + }, + "from": [ + 14.3984, + -0.3837 + ], + "tag": null, + "to": [ + 13.7267, + -1.3443 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 9776, + 9853, + 0 + ] + }, + "from": [ + 13.7267, + -1.3443 + ], + "tag": null, + "to": [ + 13.737, + -1.7177 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 9859, + 9935, + 0 + ] + }, + "from": [ + 13.737, + -1.7177 + ], + "tag": null, + "to": [ + 13.8406, + -2.1407 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 9941, + 10016, + 0 + ] + }, + "from": [ + 13.8406, + -2.1407 + ], + "tag": null, + "to": [ + 14.2926, + -2.253 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 10022, + 10097, + 0 + ] + }, + "from": [ + 14.2926, + -2.253 + ], + "tag": null, + "to": [ + 13.4105, + -2.9685 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 10103, + 10155, + 0 + ] + }, + "from": [ + 13.4105, + -2.9685 + ], + "tag": null, + "to": [ + 14.33, + -2.6993 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 10161, + 10235, + 0 + ] + }, + "from": [ + 14.33, + -2.6993 + ], + "tag": null, + "to": [ + 15.0399, + -2.5822 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 10241, + 10316, + 0 + ] + }, + "from": [ + 15.0399, + -2.5822 + ], + "tag": null, + "to": [ + 14.6612, + -1.8716 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 10322, + 10399, + 0 + ] + }, + "from": [ + 14.6612, + -1.8716 + ], + "tag": null, + "to": [ + 14.3639, + -1.9381 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 10405, + 10480, + 0 + ] + }, + "from": [ + 14.3639, + -1.9381 + ], + "tag": null, + "to": [ + 14.5936, + -2.6983 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 10486, + 10561, + 0 + ] + }, + "from": [ + 14.5936, + -2.6983 + ], + "tag": null, + "to": [ + 13.9579, + -2.5037 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 10567, + 10619, + 0 + ] + }, + "from": [ + 13.9579, + -2.5037 + ], + "tag": null, + "to": [ + 14.53, + -2.2148 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 10625, + 10701, + 0 + ] + }, + "from": [ + 14.53, + -2.2148 + ], + "tag": null, + "to": [ + 13.572, + -2.2372 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 10707, + 10781, + 0 + ] + }, + "from": [ + 13.572, + -2.2372 + ], + "tag": null, + "to": [ + 13.9019, + -3.0726 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 10787, + 10861, + 0 + ] + }, + "from": [ + 13.9019, + -3.0726 + ], + "tag": null, + "to": [ + 14.6454, + -3.8646 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 10867, + 10919, + 0 + ] + }, + "from": [ + 14.6454, + -3.8646 + ], + "tag": null, + "to": [ + 15.639, + -2.9603 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 10925, + 10999, + 0 + ] + }, + "from": [ + 15.639, + -2.9603 + ], + "tag": null, + "to": [ + 15.1354, + -2.4452 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 11005, + 11057, + 0 + ] + }, + "from": [ + 15.1354, + -2.4452 + ], + "tag": null, + "to": [ + 15.688, + -1.684 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 11063, + 11137, + 0 + ] + }, + "from": [ + 15.688, + -1.684 + ], + "tag": null, + "to": [ + 16.5473, + -1.5998 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 11143, + 11217, + 0 + ] + }, + "from": [ + 16.5473, + -1.5998 + ], + "tag": null, + "to": [ + 15.7292, + -2.5034 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 11223, + 11298, + 0 + ] + }, + "from": [ + 15.7292, + -2.5034 + ], + "tag": null, + "to": [ + 16.0458, + -2.7453 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 11304, + 11381, + 0 + ] + }, + "from": [ + 16.0458, + -2.7453 + ], + "tag": null, + "to": [ + 15.6019, + -3.0044 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 11387, + 11463, + 0 + ] + }, + "from": [ + 15.6019, + -3.0044 + ], + "tag": null, + "to": [ + 14.9414, + -3.4079 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 11469, + 11544, + 0 + ] + }, + "from": [ + 14.9414, + -3.4079 + ], + "tag": null, + "to": [ + 14.2243, + -3.1734 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 11550, + 11626, + 0 + ] + }, + "from": [ + 14.2243, + -3.1734 + ], + "tag": null, + "to": [ + 13.9675, + -3.6237 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 11632, + 11706, + 0 + ] + }, + "from": [ + 13.9675, + -3.6237 + ], + "tag": null, + "to": [ + 14.6427, + -4.5947 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 11712, + 11786, + 0 + ] + }, + "from": [ + 14.6427, + -4.5947 + ], + "tag": null, + "to": [ + 14.0737, + -4.0028 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 11792, + 11866, + 0 + ] + }, + "from": [ + 14.0737, + -4.0028 + ], + "tag": null, + "to": [ + 13.2409, + -3.535 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 11872, + 11948, + 0 + ] + }, + "from": [ + 13.2409, + -3.535 + ], + "tag": null, + "to": [ + 12.4298, + -3.9532 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 11954, + 12029, + 0 + ] + }, + "from": [ + 12.4298, + -3.9532 + ], + "tag": null, + "to": [ + 12.4678, + -3.6965 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 12035, + 12110, + 0 + ] + }, + "from": [ + 12.4678, + -3.6965 + ], + "tag": null, + "to": [ + 12.7073, + -3.2596 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 12116, + 12191, + 0 + ] + }, + "from": [ + 12.7073, + -3.2596 + ], + "tag": null, + "to": [ + 12.5445, + -2.4531 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 12197, + 12274, + 0 + ] + }, + "from": [ + 12.5445, + -2.4531 + ], + "tag": null, + "to": [ + 12.4548, + -2.542 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 12280, + 12355, + 0 + ] + }, + "from": [ + 12.4548, + -2.542 + ], + "tag": null, + "to": [ + 13.3752, + -2.7154 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 12361, + 12438, + 0 + ] + }, + "from": [ + 13.3752, + -2.7154 + ], + "tag": null, + "to": [ + 13.3769, + -3.2333 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 12444, + 12518, + 0 + ] + }, + "from": [ + 13.3769, + -3.2333 + ], + "tag": null, + "to": [ + 13.9975, + -4.1066 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 12524, + 12598, + 0 + ] + }, + "from": [ + 13.9975, + -4.1066 + ], + "tag": null, + "to": [ + 13.2199, + -3.3463 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 12604, + 12656, + 0 + ] + }, + "from": [ + 13.2199, + -3.3463 + ], + "tag": null, + "to": [ + 13.7638, + -2.5014 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 12662, + 12739, + 0 + ] + }, + "from": [ + 13.7638, + -2.5014 + ], + "tag": null, + "to": [ + 13.6335, + -2.4894 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 12745, + 12821, + 0 + ] + }, + "from": [ + 13.6335, + -2.4894 + ], + "tag": null, + "to": [ + 13.4678, + -2.6971 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 12827, + 12903, + 0 + ] + }, + "from": [ + 13.4678, + -2.6971 + ], + "tag": null, + "to": [ + 13.3715, + -2.7513 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 12909, + 12960, + 0 + ] + }, + "from": [ + 13.3715, + -2.7513 + ], + "tag": null, + "to": [ + 14.2737, + -2.3554 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 12966, + 13042, + 0 + ] + }, + "from": [ + 14.2737, + -2.3554 + ], + "tag": null, + "to": [ + 14.5536, + -2.5332 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 13048, + 13099, + 0 + ] + }, + "from": [ + 14.5536, + -2.5332 + ], + "tag": null, + "to": [ + 15.0772, + -1.8389 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 13105, + 13180, + 0 + ] + }, + "from": [ + 15.0772, + -1.8389 + ], + "tag": null, + "to": [ + 15.4686, + -2.6229 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 13186, + 13238, + 0 + ] + }, + "from": [ + 15.4686, + -2.6229 + ], + "tag": null, + "to": [ + 16.31, + -2.0833 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 13244, + 13318, + 0 + ] + }, + "from": [ + 16.31, + -2.0833 + ], + "tag": null, + "to": [ + 16.9238, + -1.8621 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 13324, + 13376, + 0 + ] + }, + "from": [ + 16.9238, + -1.8621 + ], + "tag": null, + "to": [ + 17.8069, + -1.1624 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 13382, + 13457, + 0 + ] + }, + "from": [ + 17.8069, + -1.1624 + ], + "tag": null, + "to": [ + 17.4398, + -0.9504 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 13463, + 13537, + 0 + ] + }, + "from": [ + 17.4398, + -0.9504 + ], + "tag": null, + "to": [ + 16.9691, + -0.4599 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 13543, + 13617, + 0 + ] + }, + "from": [ + 16.9691, + -0.4599 + ], + "tag": null, + "to": [ + 16.1363, + 0.0079 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 13623, + 13699, + 0 + ] + }, + "from": [ + 16.1363, + 0.0079 + ], + "tag": null, + "to": [ + 15.3251, + -0.4103 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 13705, + 13780, + 0 + ] + }, + "from": [ + 15.3251, + -0.4103 + ], + "tag": null, + "to": [ + 15.3632, + -0.1536 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 13786, + 13861, + 0 + ] + }, + "from": [ + 15.3632, + -0.1536 + ], + "tag": null, + "to": [ + 15.6027, + 0.2833 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 13867, + 13942, + 0 + ] + }, + "from": [ + 15.6027, + 0.2833 + ], + "tag": null, + "to": [ + 15.4399, + 1.0897 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 13948, + 14025, + 0 + ] + }, + "from": [ + 15.4399, + 1.0897 + ], + "tag": null, + "to": [ + 15.3502, + 1.0009 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 14031, + 14106, + 0 + ] + }, + "from": [ + 15.3502, + 1.0009 + ], + "tag": null, + "to": [ + 16.2705, + 0.8274 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 14112, + 14189, + 0 + ] + }, + "from": [ + 16.2705, + 0.8274 + ], + "tag": null, + "to": [ + 16.2723, + 0.3096 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 14195, + 14269, + 0 + ] + }, + "from": [ + 16.2723, + 0.3096 + ], + "tag": null, + "to": [ + 16.8929, + -0.5638 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 14275, + 14349, + 0 + ] + }, + "from": [ + 16.8929, + -0.5638 + ], + "tag": null, + "to": [ + 16.1152, + 0.1965 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 14355, + 14407, + 0 + ] + }, + "from": [ + 16.1152, + 0.1965 + ], + "tag": null, + "to": [ + 16.6592, + 1.0414 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 14413, + 14490, + 0 + ] + }, + "from": [ + 16.6592, + 1.0414 + ], + "tag": null, + "to": [ + 16.5288, + 1.0535 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 14496, + 14572, + 0 + ] + }, + "from": [ + 16.5288, + 1.0535 + ], + "tag": null, + "to": [ + 16.3632, + 0.8457 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 14578, + 14654, + 0 + ] + }, + "from": [ + 16.3632, + 0.8457 + ], + "tag": null, + "to": [ + 16.2669, + 0.7916 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 14660, + 14711, + 0 + ] + }, + "from": [ + 16.2669, + 0.7916 + ], + "tag": null, + "to": [ + 17.169, + 1.1875 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 14717, + 14793, + 0 + ] + }, + "from": [ + 17.169, + 1.1875 + ], + "tag": null, + "to": [ + 17.449, + 1.0097 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 14799, + 14850, + 0 + ] + }, + "from": [ + 17.449, + 1.0097 + ], + "tag": null, + "to": [ + 17.9726, + 1.704 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 14856, + 14931, + 0 + ] + }, + "from": [ + 17.9726, + 1.704 + ], + "tag": null, + "to": [ + 18.364, + 0.92 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 14937, + 14989, + 0 + ] + }, + "from": [ + 18.364, + 0.92 + ], + "tag": null, + "to": [ + 19.2054, + 1.4596 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 14995, + 15069, + 0 + ] + }, + "from": [ + 19.2054, + 1.4596 + ], + "tag": null, + "to": [ + 19.8192, + 1.6808 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 15075, + 15127, + 0 + ] + }, + "from": [ + 19.8192, + 1.6808 + ], + "tag": null, + "to": [ + 20.7022, + 2.3804 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 15133, + 15209, + 0 + ] + }, + "from": [ + 20.7022, + 2.3804 + ], + "tag": null, + "to": [ + 20.2893, + 1.9652 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 15215, + 15289, + 0 + ] + }, + "from": [ + 20.2893, + 1.9652 + ], + "tag": null, + "to": [ + 20.8063, + 1.0566 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 15295, + 15370, + 0 + ] + }, + "from": [ + 20.8063, + 1.0566 + ], + "tag": null, + "to": [ + 20.1346, + 0.0961 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 15376, + 15453, + 0 + ] + }, + "from": [ + 20.1346, + 0.0961 + ], + "tag": null, + "to": [ + 20.1449, + -0.2774 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 15459, + 15534, + 0 + ] + }, + "from": [ + 20.1449, + -0.2774 + ], + "tag": null, + "to": [ + 19.7779, + -0.0654 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 15540, + 15614, + 0 + ] + }, + "from": [ + 19.7779, + -0.0654 + ], + "tag": null, + "to": [ + 19.3071, + 0.4252 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 15620, + 15694, + 0 + ] + }, + "from": [ + 19.3071, + 0.4252 + ], + "tag": null, + "to": [ + 18.4743, + 0.8929 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 15700, + 15776, + 0 + ] + }, + "from": [ + 18.4743, + 0.8929 + ], + "tag": null, + "to": [ + 17.6632, + 0.4748 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 15782, + 15857, + 0 + ] + }, + "from": [ + 17.6632, + 0.4748 + ], + "tag": null, + "to": [ + 17.7012, + 0.7314 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 15863, + 15938, + 0 + ] + }, + "from": [ + 17.7012, + 0.7314 + ], + "tag": null, + "to": [ + 17.9407, + 1.1683 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 15944, + 16019, + 0 + ] + }, + "from": [ + 17.9407, + 1.1683 + ], + "tag": null, + "to": [ + 17.7779, + 1.9748 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 16025, + 16102, + 0 + ] + }, + "from": [ + 17.7779, + 1.9748 + ], + "tag": null, + "to": [ + 17.6882, + 1.8859 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 16108, + 16183, + 0 + ] + }, + "from": [ + 17.6882, + 1.8859 + ], + "tag": null, + "to": [ + 18.6086, + 1.7125 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 16189, + 16266, + 0 + ] + }, + "from": [ + 18.6086, + 1.7125 + ], + "tag": null, + "to": [ + 18.6103, + 1.1946 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 16272, + 16346, + 0 + ] + }, + "from": [ + 18.6103, + 1.1946 + ], + "tag": null, + "to": [ + 19.2309, + 0.3213 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 16352, + 16426, + 0 + ] + }, + "from": [ + 19.2309, + 0.3213 + ], + "tag": null, + "to": [ + 18.4533, + 1.0816 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 16432, + 16484, + 0 + ] + }, + "from": [ + 18.4533, + 1.0816 + ], + "tag": null, + "to": [ + 18.9972, + 1.9265 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 16490, + 16567, + 0 + ] + }, + "from": [ + 18.9972, + 1.9265 + ], + "tag": null, + "to": [ + 18.8669, + 1.9385 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 16573, + 16649, + 0 + ] + }, + "from": [ + 18.8669, + 1.9385 + ], + "tag": null, + "to": [ + 18.7012, + 1.7308 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 16655, + 16731, + 0 + ] + }, + "from": [ + 18.7012, + 1.7308 + ], + "tag": null, + "to": [ + 18.6049, + 1.6766 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 16737, + 16788, + 0 + ] + }, + "from": [ + 18.6049, + 1.6766 + ], + "tag": null, + "to": [ + 19.5071, + 2.0725 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 16794, + 16870, + 0 + ] + }, + "from": [ + 19.5071, + 2.0725 + ], + "tag": null, + "to": [ + 19.787, + 1.8947 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 16876, + 16927, + 0 + ] + }, + "from": [ + 19.787, + 1.8947 + ], + "tag": null, + "to": [ + 20.3106, + 2.589 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 16933, + 17008, + 0 + ] + }, + "from": [ + 20.3106, + 2.589 + ], + "tag": null, + "to": [ + 20.702, + 1.8051 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 17014, + 17066, + 0 + ] + }, + "from": [ + 20.702, + 1.8051 + ], + "tag": null, + "to": [ + 21.5434, + 2.3446 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 17072, + 17146, + 0 + ] + }, + "from": [ + 21.5434, + 2.3446 + ], + "tag": null, + "to": [ + 22.1572, + 2.5658 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 17152, + 17204, + 0 + ] + }, + "from": [ + 22.1572, + 2.5658 + ], + "tag": null, + "to": [ + 23.0403, + 3.2655 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 17210, + 17286, + 0 + ] + }, + "from": [ + 23.0403, + 3.2655 + ], + "tag": null, + "to": [ + 22.6274, + 2.8502 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 17292, + 17366, + 0 + ] + }, + "from": [ + 22.6274, + 2.8502 + ], + "tag": null, + "to": [ + 23.1443, + 1.9417 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 17372, + 17447, + 0 + ] + }, + "from": [ + 23.1443, + 1.9417 + ], + "tag": null, + "to": [ + 22.4727, + 0.9811 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 17453, + 17530, + 0 + ] + }, + "from": [ + 22.4727, + 0.9811 + ], + "tag": null, + "to": [ + 22.483, + 0.6077 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 17536, + 17612, + 0 + ] + }, + "from": [ + 22.483, + 0.6077 + ], + "tag": null, + "to": [ + 22.5865, + 0.1847 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 17618, + 17693, + 0 + ] + }, + "from": [ + 22.5865, + 0.1847 + ], + "tag": null, + "to": [ + 23.0386, + 0.0724 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 17699, + 17774, + 0 + ] + }, + "from": [ + 23.0386, + 0.0724 + ], + "tag": null, + "to": [ + 22.1564, + -0.6431 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 17780, + 17832, + 0 + ] + }, + "from": [ + 22.1564, + -0.6431 + ], + "tag": null, + "to": [ + 23.076, + -0.3739 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 17838, + 17912, + 0 + ] + }, + "from": [ + 23.076, + -0.3739 + ], + "tag": null, + "to": [ + 23.7859, + -0.2568 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 17918, + 17993, + 0 + ] + }, + "from": [ + 23.7859, + -0.2568 + ], + "tag": null, + "to": [ + 23.4071, + 0.4538 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 17999, + 18076, + 0 + ] + }, + "from": [ + 23.4071, + 0.4538 + ], + "tag": null, + "to": [ + 23.1098, + 0.3873 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 18082, + 18157, + 0 + ] + }, + "from": [ + 23.1098, + 0.3873 + ], + "tag": null, + "to": [ + 23.3395, + -0.3729 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 18163, + 18238, + 0 + ] + }, + "from": [ + 23.3395, + -0.3729 + ], + "tag": null, + "to": [ + 22.7038, + -0.1783 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 18244, + 18296, + 0 + ] + }, + "from": [ + 22.7038, + -0.1783 + ], + "tag": null, + "to": [ + 23.276, + 0.1106 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 18302, + 18378, + 0 + ] + }, + "from": [ + 23.276, + 0.1106 + ], + "tag": null, + "to": [ + 22.3179, + 0.0881 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 18384, + 18458, + 0 + ] + }, + "from": [ + 22.3179, + 0.0881 + ], + "tag": null, + "to": [ + 22.6479, + -0.7472 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 18464, + 18538, + 0 + ] + }, + "from": [ + 22.6479, + -0.7472 + ], + "tag": null, + "to": [ + 23.3913, + -1.5392 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 18544, + 18596, + 0 + ] + }, + "from": [ + 23.3913, + -1.5392 + ], + "tag": null, + "to": [ + 24.3849, + -0.6349 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 18602, + 18676, + 0 + ] + }, + "from": [ + 24.3849, + -0.6349 + ], + "tag": null, + "to": [ + 23.8813, + -0.1198 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 18682, + 18734, + 0 + ] + }, + "from": [ + 23.8813, + -0.1198 + ], + "tag": null, + "to": [ + 24.4339, + 0.6414 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 18740, + 18814, + 0 + ] + }, + "from": [ + 24.4339, + 0.6414 + ], + "tag": null, + "to": [ + 25.2933, + 0.7256 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 18820, + 18894, + 0 + ] + }, + "from": [ + 25.2933, + 0.7256 + ], + "tag": null, + "to": [ + 24.4752, + -0.178 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 18900, + 18975, + 0 + ] + }, + "from": [ + 24.4752, + -0.178 + ], + "tag": null, + "to": [ + 24.7917, + -0.4199 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 18981, + 19058, + 0 + ] + }, + "from": [ + 24.7917, + -0.4199 + ], + "tag": null, + "to": [ + 24.3478, + -0.679 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 19064, + 19140, + 0 + ] + }, + "from": [ + 24.3478, + -0.679 + ], + "tag": null, + "to": [ + 23.6873, + -1.0825 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 19146, + 19221, + 0 + ] + }, + "from": [ + 23.6873, + -1.0825 + ], + "tag": null, + "to": [ + 22.9703, + -0.848 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 19227, + 19303, + 0 + ] + }, + "from": [ + 22.9703, + -0.848 + ], + "tag": null, + "to": [ + 22.7134, + -1.2983 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 19309, + 19383, + 0 + ] + }, + "from": [ + 22.7134, + -1.2983 + ], + "tag": null, + "to": [ + 23.3886, + -2.2693 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 19389, + 19463, + 0 + ] + }, + "from": [ + 23.3886, + -2.2693 + ], + "tag": null, + "to": [ + 22.8197, + -1.6774 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 19469, + 19543, + 0 + ] + }, + "from": [ + 22.8197, + -1.6774 + ], + "tag": null, + "to": [ + 21.9868, + -1.2096 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 19549, + 19625, + 0 + ] + }, + "from": [ + 21.9868, + -1.2096 + ], + "tag": null, + "to": [ + 21.1757, + -1.6278 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 19631, + 19706, + 0 + ] + }, + "from": [ + 21.1757, + -1.6278 + ], + "tag": null, + "to": [ + 21.2138, + -1.3711 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 19712, + 19787, + 0 + ] + }, + "from": [ + 21.2138, + -1.3711 + ], + "tag": null, + "to": [ + 21.4533, + -0.9342 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 19793, + 19868, + 0 + ] + }, + "from": [ + 21.4533, + -0.9342 + ], + "tag": null, + "to": [ + 21.2905, + -0.1277 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 19874, + 19951, + 0 + ] + }, + "from": [ + 21.2905, + -0.1277 + ], + "tag": null, + "to": [ + 21.2007, + -0.2166 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 19957, + 20032, + 0 + ] + }, + "from": [ + 21.2007, + -0.2166 + ], + "tag": null, + "to": [ + 22.1211, + -0.39 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 20038, + 20115, + 0 + ] + }, + "from": [ + 22.1211, + -0.39 + ], + "tag": null, + "to": [ + 22.1228, + -0.9079 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 20121, + 20195, + 0 + ] + }, + "from": [ + 22.1228, + -0.9079 + ], + "tag": null, + "to": [ + 22.7435, + -1.7812 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 20201, + 20275, + 0 + ] + }, + "from": [ + 22.7435, + -1.7812 + ], + "tag": null, + "to": [ + 21.9658, + -1.021 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 20281, + 20333, + 0 + ] + }, + "from": [ + 21.9658, + -1.021 + ], + "tag": null, + "to": [ + 22.5098, + -0.176 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 20339, + 20416, + 0 + ] + }, + "from": [ + 22.5098, + -0.176 + ], + "tag": null, + "to": [ + 22.3794, + -0.164 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 20422, + 20498, + 0 + ] + }, + "from": [ + 22.3794, + -0.164 + ], + "tag": null, + "to": [ + 22.2138, + -0.3717 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 20504, + 20580, + 0 + ] + }, + "from": [ + 22.2138, + -0.3717 + ], + "tag": null, + "to": [ + 22.1175, + -0.4259 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 20586, + 20637, + 0 + ] + }, + "from": [ + 22.1175, + -0.4259 + ], + "tag": null, + "to": [ + 23.0196, + -0.03 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 20643, + 20719, + 0 + ] + }, + "from": [ + 23.0196, + -0.03 + ], + "tag": null, + "to": [ + 23.2996, + -0.2078 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 20725, + 20776, + 0 + ] + }, + "from": [ + 23.2996, + -0.2078 + ], + "tag": null, + "to": [ + 23.8232, + 0.4865 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 20782, + 20857, + 0 + ] + }, + "from": [ + 23.8232, + 0.4865 + ], + "tag": null, + "to": [ + 24.2146, + -0.2975 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 20863, + 20915, + 0 + ] + }, + "from": [ + 24.2146, + -0.2975 + ], + "tag": null, + "to": [ + 25.056, + 0.2421 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 20921, + 20995, + 0 + ] + }, + "from": [ + 25.056, + 0.2421 + ], + "tag": null, + "to": [ + 25.6697, + 0.4633 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 21001, + 21053, + 0 + ] + }, + "from": [ + 25.6697, + 0.4633 + ], + "tag": null, + "to": [ + 26.5528, + 1.163 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 21059, + 21135, + 0 + ] + }, + "from": [ + 26.5528, + 1.163 + ], + "tag": null, + "to": [ + 26.1399, + 0.7477 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 21141, + 21215, + 0 + ] + }, + "from": [ + 26.1399, + 0.7477 + ], + "tag": null, + "to": [ + 26.6568, + -0.1609 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 21221, + 21295, + 0 + ] + }, + "from": [ + 26.6568, + -0.1609 + ], + "tag": null, + "to": [ + 27.332, + -1.1318 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 21301, + 21375, + 0 + ] + }, + "from": [ + 27.332, + -1.1318 + ], + "tag": null, + "to": [ + 26.7631, + -0.5399 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 21381, + 21455, + 0 + ] + }, + "from": [ + 26.7631, + -0.5399 + ], + "tag": null, + "to": [ + 27.7095, + -0.8084 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 21461, + 21513, + 0 + ] + }, + "from": [ + 27.7095, + -0.8084 + ], + "tag": null, + "to": [ + 28.2337, + 0.0928 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 21519, + 21595, + 0 + ] + }, + "from": [ + 28.2337, + 0.0928 + ], + "tag": null, + "to": [ + 28.0911, + -0.4267 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 21601, + 21676, + 0 + ] + }, + "from": [ + 28.0911, + -0.4267 + ], + "tag": null, + "to": [ + 27.6624, + -0.849 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 21682, + 21758, + 0 + ] + }, + "from": [ + 27.6624, + -0.849 + ], + "tag": null, + "to": [ + 27.5693, + -1.7553 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 21764, + 21838, + 0 + ] + }, + "from": [ + 27.5693, + -1.7553 + ], + "tag": null, + "to": [ + 27.2925, + -1.0737 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 21844, + 21918, + 0 + ] + }, + "from": [ + 27.2925, + -1.0737 + ], + "tag": null, + "to": [ + 28.2722, + -1.1559 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 21924, + 21998, + 0 + ] + }, + "from": [ + 28.2722, + -1.1559 + ], + "tag": null, + "to": [ + 27.4055, + -1.457 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 22004, + 22078, + 0 + ] + }, + "from": [ + 27.4055, + -1.457 + ], + "tag": null, + "to": [ + 27.9429, + -1.4367 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 22084, + 22158, + 0 + ] + }, + "from": [ + 27.9429, + -1.4367 + ], + "tag": null, + "to": [ + 28.8762, + -2.0595 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 22164, + 22240, + 0 + ] + }, + "from": [ + 28.8762, + -2.0595 + ], + "tag": null, + "to": [ + 29.0567, + -2.4285 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 22246, + 22298, + 0 + ] + }, + "from": [ + 29.0567, + -2.4285 + ], + "tag": null, + "to": [ + 29.5951, + -2.1907 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 22304, + 22379, + 0 + ] + }, + "from": [ + 29.5951, + -2.1907 + ], + "tag": null, + "to": [ + 29.9856, + -2.048 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 22385, + 22459, + 0 + ] + }, + "from": [ + 29.9856, + -2.048 + ], + "tag": null, + "to": [ + 30.0834, + -1.0572 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 22465, + 22539, + 0 + ] + }, + "from": [ + 30.0834, + -1.0572 + ], + "tag": null, + "to": [ + 30.6121, + -1.8497 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 22545, + 22619, + 0 + ] + }, + "from": [ + 30.6121, + -1.8497 + ], + "tag": null, + "to": [ + 30.9911, + -1.7257 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 22625, + 22699, + 0 + ] + }, + "from": [ + 30.9911, + -1.7257 + ], + "tag": null, + "to": [ + 30.0426, + -1.0527 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 22705, + 22780, + 0 + ] + }, + "from": [ + 30.0426, + -1.0527 + ], + "tag": null, + "to": [ + 30.7877, + -1.2659 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 22786, + 22861, + 0 + ] + }, + "from": [ + 30.7877, + -1.2659 + ], + "tag": null, + "to": [ + 30.9751, + -1.4255 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 22867, + 22943, + 0 + ] + }, + "from": [ + 30.9751, + -1.4255 + ], + "tag": null, + "to": [ + 30.9178, + -1.9692 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 22949, + 23025, + 0 + ] + }, + "from": [ + 30.9178, + -1.9692 + ], + "tag": null, + "to": [ + 30.8219, + -2.7226 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 23031, + 23107, + 0 + ] + }, + "from": [ + 30.8219, + -2.7226 + ], + "tag": null, + "to": [ + 30.6494, + -3.4895 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 23113, + 23165, + 0 + ] + }, + "from": [ + 30.6494, + -3.4895 + ], + "tag": null, + "to": [ + 31.5439, + -2.8801 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 23171, + 23246, + 0 + ] + }, + "from": [ + 31.5439, + -2.8801 + ], + "tag": null, + "to": [ + 31.1769, + -2.6681 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 23252, + 23326, + 0 + ] + }, + "from": [ + 31.1769, + -2.6681 + ], + "tag": null, + "to": [ + 30.7061, + -2.1776 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 23332, + 23406, + 0 + ] + }, + "from": [ + 30.7061, + -2.1776 + ], + "tag": null, + "to": [ + 29.8733, + -1.7099 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 23412, + 23488, + 0 + ] + }, + "from": [ + 29.8733, + -1.7099 + ], + "tag": null, + "to": [ + 29.0621, + -2.128 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 23494, + 23569, + 0 + ] + }, + "from": [ + 29.0621, + -2.128 + ], + "tag": null, + "to": [ + 29.1002, + -1.8714 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 23575, + 23650, + 0 + ] + }, + "from": [ + 29.1002, + -1.8714 + ], + "tag": null, + "to": [ + 29.3397, + -1.4344 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 23656, + 23731, + 0 + ] + }, + "from": [ + 29.3397, + -1.4344 + ], + "tag": null, + "to": [ + 29.1769, + -0.628 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 23737, + 23814, + 0 + ] + }, + "from": [ + 29.1769, + -0.628 + ], + "tag": null, + "to": [ + 29.0872, + -0.7169 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 23820, + 23895, + 0 + ] + }, + "from": [ + 29.0872, + -0.7169 + ], + "tag": null, + "to": [ + 30.0075, + -0.8903 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 23901, + 23978, + 0 + ] + }, + "from": [ + 30.0075, + -0.8903 + ], + "tag": null, + "to": [ + 30.0093, + -1.4081 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 23984, + 24058, + 0 + ] + }, + "from": [ + 30.0093, + -1.4081 + ], + "tag": null, + "to": [ + 30.6299, + -2.2815 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 24064, + 24138, + 0 + ] + }, + "from": [ + 30.6299, + -2.2815 + ], + "tag": null, + "to": [ + 29.8523, + -1.5212 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 24144, + 24196, + 0 + ] + }, + "from": [ + 29.8523, + -1.5212 + ], + "tag": null, + "to": [ + 30.3962, + -0.6763 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 24202, + 24279, + 0 + ] + }, + "from": [ + 30.3962, + -0.6763 + ], + "tag": null, + "to": [ + 30.2658, + -0.6642 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 24285, + 24361, + 0 + ] + }, + "from": [ + 30.2658, + -0.6642 + ], + "tag": null, + "to": [ + 30.1002, + -0.872 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 24367, + 24443, + 0 + ] + }, + "from": [ + 30.1002, + -0.872 + ], + "tag": null, + "to": [ + 30.0039, + -0.9262 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 24449, + 24500, + 0 + ] + }, + "from": [ + 30.0039, + -0.9262 + ], + "tag": null, + "to": [ + 30.906, + -0.5303 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 24506, + 24582, + 0 + ] + }, + "from": [ + 30.906, + -0.5303 + ], + "tag": null, + "to": [ + 31.186, + -0.708 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 24588, + 24639, + 0 + ] + }, + "from": [ + 31.186, + -0.708 + ], + "tag": null, + "to": [ + 31.7096, + -0.0137 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 24645, + 24720, + 0 + ] + }, + "from": [ + 31.7096, + -0.0137 + ], + "tag": null, + "to": [ + 32.101, + -0.7977 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 24726, + 24778, + 0 + ] + }, + "from": [ + 32.101, + -0.7977 + ], + "tag": null, + "to": [ + 32.9424, + -0.2581 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 24784, + 24858, + 0 + ] + }, + "from": [ + 32.9424, + -0.2581 + ], + "tag": null, + "to": [ + 33.5562, + -0.0369 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 24864, + 24916, + 0 + ] + }, + "from": [ + 33.5562, + -0.0369 + ], + "tag": null, + "to": [ + 34.4392, + 0.6627 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 24922, + 24998, + 0 + ] + }, + "from": [ + 34.4392, + 0.6627 + ], + "tag": null, + "to": [ + 34.0263, + 0.2475 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 25004, + 25078, + 0 + ] + }, + "from": [ + 34.0263, + 0.2475 + ], + "tag": null, + "to": [ + 34.5433, + -0.6611 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 25084, + 25159, + 0 + ] + }, + "from": [ + 34.5433, + -0.6611 + ], + "tag": null, + "to": [ + 33.8716, + -1.6217 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 25165, + 25242, + 0 + ] + }, + "from": [ + 33.8716, + -1.6217 + ], + "tag": null, + "to": [ + 33.8819, + -1.9951 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 25248, + 25324, + 0 + ] + }, + "from": [ + 33.8819, + -1.9951 + ], + "tag": null, + "to": [ + 33.9855, + -2.418 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 25330, + 25405, + 0 + ] + }, + "from": [ + 33.9855, + -2.418 + ], + "tag": null, + "to": [ + 34.4375, + -2.5304 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 25411, + 25486, + 0 + ] + }, + "from": [ + 34.4375, + -2.5304 + ], + "tag": null, + "to": [ + 33.5554, + -3.2459 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 25492, + 25544, + 0 + ] + }, + "from": [ + 33.5554, + -3.2459 + ], + "tag": null, + "to": [ + 34.475, + -2.9767 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 25550, + 25624, + 0 + ] + }, + "from": [ + 34.475, + -2.9767 + ], + "tag": null, + "to": [ + 35.1849, + -2.8596 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 25630, + 25705, + 0 + ] + }, + "from": [ + 35.1849, + -2.8596 + ], + "tag": null, + "to": [ + 34.8061, + -2.1489 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 25711, + 25788, + 0 + ] + }, + "from": [ + 34.8061, + -2.1489 + ], + "tag": null, + "to": [ + 34.5088, + -2.2154 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 25794, + 25869, + 0 + ] + }, + "from": [ + 34.5088, + -2.2154 + ], + "tag": null, + "to": [ + 34.7385, + -2.9756 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 25875, + 25950, + 0 + ] + }, + "from": [ + 34.7385, + -2.9756 + ], + "tag": null, + "to": [ + 34.1028, + -2.781 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 25956, + 26008, + 0 + ] + }, + "from": [ + 34.1028, + -2.781 + ], + "tag": null, + "to": [ + 34.6749, + -2.4922 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 26014, + 26090, + 0 + ] + }, + "from": [ + 34.6749, + -2.4922 + ], + "tag": null, + "to": [ + 33.7169, + -2.5146 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 26096, + 26170, + 0 + ] + }, + "from": [ + 33.7169, + -2.5146 + ], + "tag": null, + "to": [ + 34.0468, + -3.35 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 26176, + 26250, + 0 + ] + }, + "from": [ + 34.0468, + -3.35 + ], + "tag": null, + "to": [ + 34.7903, + -4.142 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 26256, + 26308, + 0 + ] + }, + "from": [ + 34.7903, + -4.142 + ], + "tag": null, + "to": [ + 35.7839, + -3.2377 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 26314, + 26388, + 0 + ] + }, + "from": [ + 35.7839, + -3.2377 + ], + "tag": null, + "to": [ + 35.2803, + -2.7226 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 26394, + 26446, + 0 + ] + }, + "from": [ + 35.2803, + -2.7226 + ], + "tag": null, + "to": [ + 35.8329, + -1.9613 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 26452, + 26526, + 0 + ] + }, + "from": [ + 35.8329, + -1.9613 + ], + "tag": null, + "to": [ + 36.6922, + -1.8772 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 26532, + 26606, + 0 + ] + }, + "from": [ + 36.6922, + -1.8772 + ], + "tag": null, + "to": [ + 35.8741, + -2.7807 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 26612, + 26687, + 0 + ] + }, + "from": [ + 35.8741, + -2.7807 + ], + "tag": null, + "to": [ + 36.1907, + -3.0226 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 26693, + 26770, + 0 + ] + }, + "from": [ + 36.1907, + -3.0226 + ], + "tag": null, + "to": [ + 35.7468, + -3.2818 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 26776, + 26852, + 0 + ] + }, + "from": [ + 35.7468, + -3.2818 + ], + "tag": null, + "to": [ + 35.0863, + -3.6853 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 26858, + 26933, + 0 + ] + }, + "from": [ + 35.0863, + -3.6853 + ], + "tag": null, + "to": [ + 34.3692, + -3.4508 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 26939, + 27015, + 0 + ] + }, + "from": [ + 34.3692, + -3.4508 + ], + "tag": null, + "to": [ + 34.1124, + -3.9011 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 27021, + 27095, + 0 + ] + }, + "from": [ + 34.1124, + -3.9011 + ], + "tag": null, + "to": [ + 34.7876, + -4.872 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 27101, + 27175, + 0 + ] + }, + "from": [ + 34.7876, + -4.872 + ], + "tag": null, + "to": [ + 34.2186, + -4.2801 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 27181, + 27255, + 0 + ] + }, + "from": [ + 34.2186, + -4.2801 + ], + "tag": null, + "to": [ + 33.3858, + -3.8124 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 27261, + 27337, + 0 + ] + }, + "from": [ + 33.3858, + -3.8124 + ], + "tag": null, + "to": [ + 32.5747, + -4.2305 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 27343, + 27418, + 0 + ] + }, + "from": [ + 32.5747, + -4.2305 + ], + "tag": null, + "to": [ + 32.6127, + -3.9739 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 27424, + 27499, + 0 + ] + }, + "from": [ + 32.6127, + -3.9739 + ], + "tag": null, + "to": [ + 32.8522, + -3.5369 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 27505, + 27580, + 0 + ] + }, + "from": [ + 32.8522, + -3.5369 + ], + "tag": null, + "to": [ + 32.6894, + -2.7305 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 27586, + 27663, + 0 + ] + }, + "from": [ + 32.6894, + -2.7305 + ], + "tag": null, + "to": [ + 32.5997, + -2.8194 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 27669, + 27744, + 0 + ] + }, + "from": [ + 32.5997, + -2.8194 + ], + "tag": null, + "to": [ + 33.5201, + -2.9928 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 27750, + 27827, + 0 + ] + }, + "from": [ + 33.5201, + -2.9928 + ], + "tag": null, + "to": [ + 33.5218, + -3.5107 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 27833, + 27907, + 0 + ] + }, + "from": [ + 33.5218, + -3.5107 + ], + "tag": null, + "to": [ + 34.1424, + -4.384 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 27913, + 27987, + 0 + ] + }, + "from": [ + 34.1424, + -4.384 + ], + "tag": null, + "to": [ + 33.3648, + -3.6237 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 27993, + 28045, + 0 + ] + }, + "from": [ + 33.3648, + -3.6237 + ], + "tag": null, + "to": [ + 33.9087, + -2.7788 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 28051, + 28128, + 0 + ] + }, + "from": [ + 33.9087, + -2.7788 + ], + "tag": null, + "to": [ + 33.7784, + -2.7668 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 28134, + 28210, + 0 + ] + }, + "from": [ + 33.7784, + -2.7668 + ], + "tag": null, + "to": [ + 33.6127, + -2.9745 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 28216, + 28292, + 0 + ] + }, + "from": [ + 33.6127, + -2.9745 + ], + "tag": null, + "to": [ + 33.5164, + -3.0287 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 28298, + 28349, + 0 + ] + }, + "from": [ + 33.5164, + -3.0287 + ], + "tag": null, + "to": [ + 34.4186, + -2.6328 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 28355, + 28431, + 0 + ] + }, + "from": [ + 34.4186, + -2.6328 + ], + "tag": null, + "to": [ + 34.6985, + -2.8106 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 28437, + 28488, + 0 + ] + }, + "from": [ + 34.6985, + -2.8106 + ], + "tag": null, + "to": [ + 35.2221, + -2.1163 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 28494, + 28569, + 0 + ] + }, + "from": [ + 35.2221, + -2.1163 + ], + "tag": null, + "to": [ + 35.6135, + -2.9002 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 28575, + 28627, + 0 + ] + }, + "from": [ + 35.6135, + -2.9002 + ], + "tag": null, + "to": [ + 36.4549, + -2.3607 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 28633, + 28707, + 0 + ] + }, + "from": [ + 36.4549, + -2.3607 + ], + "tag": null, + "to": [ + 37.0687, + -2.1395 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 28713, + 28765, + 0 + ] + }, + "from": [ + 37.0687, + -2.1395 + ], + "tag": null, + "to": [ + 37.9518, + -1.4398 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 28771, + 28846, + 0 + ] + }, + "from": [ + 37.9518, + -1.4398 + ], + "tag": null, + "to": [ + 37.5847, + -1.2278 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 28852, + 28926, + 0 + ] + }, + "from": [ + 37.5847, + -1.2278 + ], + "tag": null, + "to": [ + 37.114, + -0.7373 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 28932, + 29006, + 0 + ] + }, + "from": [ + 37.114, + -0.7373 + ], + "tag": null, + "to": [ + 36.2812, + -0.2695 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 29012, + 29088, + 0 + ] + }, + "from": [ + 36.2812, + -0.2695 + ], + "tag": null, + "to": [ + 35.47, + -0.6877 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 29094, + 29169, + 0 + ] + }, + "from": [ + 35.47, + -0.6877 + ], + "tag": null, + "to": [ + 35.5081, + -0.431 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 29175, + 29250, + 0 + ] + }, + "from": [ + 35.5081, + -0.431 + ], + "tag": null, + "to": [ + 35.7476, + 0.0059 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 29256, + 29331, + 0 + ] + }, + "from": [ + 35.7476, + 0.0059 + ], + "tag": null, + "to": [ + 35.5848, + 0.8124 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 29337, + 29414, + 0 + ] + }, + "from": [ + 35.5848, + 0.8124 + ], + "tag": null, + "to": [ + 35.4951, + 0.7235 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 29420, + 29495, + 0 + ] + }, + "from": [ + 35.4951, + 0.7235 + ], + "tag": null, + "to": [ + 36.4154, + 0.5501 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 29501, + 29578, + 0 + ] + }, + "from": [ + 36.4154, + 0.5501 + ], + "tag": null, + "to": [ + 36.4172, + 0.0322 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 29584, + 29658, + 0 + ] + }, + "from": [ + 36.4172, + 0.0322 + ], + "tag": null, + "to": [ + 37.0378, + -0.8411 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 29664, + 29738, + 0 + ] + }, + "from": [ + 37.0378, + -0.8411 + ], + "tag": null, + "to": [ + 36.2601, + -0.0809 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 29744, + 29796, + 0 + ] + }, + "from": [ + 36.2601, + -0.0809 + ], + "tag": null, + "to": [ + 36.8041, + 0.7641 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 29802, + 29879, + 0 + ] + }, + "from": [ + 36.8041, + 0.7641 + ], + "tag": null, + "to": [ + 36.6737, + 0.7761 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 29885, + 29961, + 0 + ] + }, + "from": [ + 36.6737, + 0.7761 + ], + "tag": null, + "to": [ + 36.5081, + 0.5684 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 29967, + 30043, + 0 + ] + }, + "from": [ + 36.5081, + 0.5684 + ], + "tag": null, + "to": [ + 36.4118, + 0.5142 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 30049, + 30100, + 0 + ] + }, + "from": [ + 36.4118, + 0.5142 + ], + "tag": null, + "to": [ + 37.3139, + 0.9101 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 30106, + 30182, + 0 + ] + }, + "from": [ + 37.3139, + 0.9101 + ], + "tag": null, + "to": [ + 37.5939, + 0.7323 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 30188, + 30239, + 0 + ] + }, + "from": [ + 37.5939, + 0.7323 + ], + "tag": null, + "to": [ + 38.1175, + 1.4266 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 30245, + 30320, + 0 + ] + }, + "from": [ + 38.1175, + 1.4266 + ], + "tag": null, + "to": [ + 38.5089, + 0.6426 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 30326, + 30378, + 0 + ] + }, + "from": [ + 38.5089, + 0.6426 + ], + "tag": null, + "to": [ + 39.3503, + 1.1822 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 30384, + 30458, + 0 + ] + }, + "from": [ + 39.3503, + 1.1822 + ], + "tag": null, + "to": [ + 39.9641, + 1.4034 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 30464, + 30516, + 0 + ] + }, + "from": [ + 39.9641, + 1.4034 + ], + "tag": null, + "to": [ + 40.8471, + 2.1031 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 30522, + 30598, + 0 + ] + }, + "from": [ + 40.8471, + 2.1031 + ], + "tag": null, + "to": [ + 40.4342, + 1.6878 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 30604, + 30678, + 0 + ] + }, + "from": [ + 40.4342, + 1.6878 + ], + "tag": null, + "to": [ + 40.9512, + 0.7792 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 30684, + 30759, + 0 + ] + }, + "from": [ + 40.9512, + 0.7792 + ], + "tag": null, + "to": [ + 40.2795, + -0.1813 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 30765, + 30842, + 0 + ] + }, + "from": [ + 40.2795, + -0.1813 + ], + "tag": null, + "to": [ + 40.2898, + -0.5548 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 30848, + 30924, + 0 + ] + }, + "from": [ + 40.2898, + -0.5548 + ], + "tag": null, + "to": [ + 40.3934, + -0.9777 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 30930, + 31005, + 0 + ] + }, + "from": [ + 40.3934, + -0.9777 + ], + "tag": null, + "to": [ + 40.8454, + -1.09 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 31011, + 31086, + 0 + ] + }, + "from": [ + 40.8454, + -1.09 + ], + "tag": null, + "to": [ + 39.9633, + -1.8055 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 31092, + 31144, + 0 + ] + }, + "from": [ + 39.9633, + -1.8055 + ], + "tag": null, + "to": [ + 40.8828, + -1.5364 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 31150, + 31224, + 0 + ] + }, + "from": [ + 40.8828, + -1.5364 + ], + "tag": null, + "to": [ + 41.5927, + -1.4193 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 31230, + 31305, + 0 + ] + }, + "from": [ + 41.5927, + -1.4193 + ], + "tag": null, + "to": [ + 41.214, + -0.7086 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 31311, + 31388, + 0 + ] + }, + "from": [ + 41.214, + -0.7086 + ], + "tag": null, + "to": [ + 40.9167, + -0.7751 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 31394, + 31469, + 0 + ] + }, + "from": [ + 40.9167, + -0.7751 + ], + "tag": null, + "to": [ + 41.1464, + -1.5353 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 31475, + 31550, + 0 + ] + }, + "from": [ + 41.1464, + -1.5353 + ], + "tag": null, + "to": [ + 40.5107, + -1.3407 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 31556, + 31608, + 0 + ] + }, + "from": [ + 40.5107, + -1.3407 + ], + "tag": null, + "to": [ + 41.0828, + -1.0518 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 31614, + 31690, + 0 + ] + }, + "from": [ + 41.0828, + -1.0518 + ], + "tag": null, + "to": [ + 40.1248, + -1.0743 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 31696, + 31770, + 0 + ] + }, + "from": [ + 40.1248, + -1.0743 + ], + "tag": null, + "to": [ + 40.4547, + -1.9097 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 31776, + 31850, + 0 + ] + }, + "from": [ + 40.4547, + -1.9097 + ], + "tag": null, + "to": [ + 41.1982, + -2.7016 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 31856, + 31908, + 0 + ] + }, + "from": [ + 41.1982, + -2.7016 + ], + "tag": null, + "to": [ + 42.1917, + -1.7974 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 31914, + 31988, + 0 + ] + }, + "from": [ + 42.1917, + -1.7974 + ], + "tag": null, + "to": [ + 41.6882, + -1.2823 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 31994, + 32046, + 0 + ] + }, + "from": [ + 41.6882, + -1.2823 + ], + "tag": null, + "to": [ + 42.2408, + -0.521 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 32052, + 32126, + 0 + ] + }, + "from": [ + 42.2408, + -0.521 + ], + "tag": null, + "to": [ + 43.1001, + -0.4369 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 32132, + 32206, + 0 + ] + }, + "from": [ + 43.1001, + -0.4369 + ], + "tag": null, + "to": [ + 42.282, + -1.3404 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 32212, + 32287, + 0 + ] + }, + "from": [ + 42.282, + -1.3404 + ], + "tag": null, + "to": [ + 42.5986, + -1.5823 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 32293, + 32370, + 0 + ] + }, + "from": [ + 42.5986, + -1.5823 + ], + "tag": null, + "to": [ + 42.1547, + -1.8414 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 32376, + 32452, + 0 + ] + }, + "from": [ + 42.1547, + -1.8414 + ], + "tag": null, + "to": [ + 41.4942, + -2.245 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 32458, + 32533, + 0 + ] + }, + "from": [ + 41.4942, + -2.245 + ], + "tag": null, + "to": [ + 40.7771, + -2.0104 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 32539, + 32615, + 0 + ] + }, + "from": [ + 40.7771, + -2.0104 + ], + "tag": null, + "to": [ + 40.5203, + -2.4607 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 32621, + 32695, + 0 + ] + }, + "from": [ + 40.5203, + -2.4607 + ], + "tag": null, + "to": [ + 41.1955, + -3.4317 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 32701, + 32775, + 0 + ] + }, + "from": [ + 41.1955, + -3.4317 + ], + "tag": null, + "to": [ + 40.6265, + -2.8398 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 32781, + 32855, + 0 + ] + }, + "from": [ + 40.6265, + -2.8398 + ], + "tag": null, + "to": [ + 39.7937, + -2.372 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 32861, + 32937, + 0 + ] + }, + "from": [ + 39.7937, + -2.372 + ], + "tag": null, + "to": [ + 38.9826, + -2.7902 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 32943, + 33018, + 0 + ] + }, + "from": [ + 38.9826, + -2.7902 + ], + "tag": null, + "to": [ + 39.0206, + -2.5335 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 33024, + 33099, + 0 + ] + }, + "from": [ + 39.0206, + -2.5335 + ], + "tag": null, + "to": [ + 39.2601, + -2.0966 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 33105, + 33180, + 0 + ] + }, + "from": [ + 39.2601, + -2.0966 + ], + "tag": null, + "to": [ + 39.0973, + -1.2902 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 33186, + 33263, + 0 + ] + }, + "from": [ + 39.0973, + -1.2902 + ], + "tag": null, + "to": [ + 39.0076, + -1.379 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 33269, + 33344, + 0 + ] + }, + "from": [ + 39.0076, + -1.379 + ], + "tag": null, + "to": [ + 39.9279, + -1.5525 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 33350, + 33427, + 0 + ] + }, + "from": [ + 39.9279, + -1.5525 + ], + "tag": null, + "to": [ + 39.9297, + -2.0703 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 33433, + 33507, + 0 + ] + }, + "from": [ + 39.9297, + -2.0703 + ], + "tag": null, + "to": [ + 40.5503, + -2.9437 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 33513, + 33587, + 0 + ] + }, + "from": [ + 40.5503, + -2.9437 + ], + "tag": null, + "to": [ + 39.7727, + -2.1834 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 33593, + 33645, + 0 + ] + }, + "from": [ + 39.7727, + -2.1834 + ], + "tag": null, + "to": [ + 40.3166, + -1.3385 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 33651, + 33728, + 0 + ] + }, + "from": [ + 40.3166, + -1.3385 + ], + "tag": null, + "to": [ + 40.1863, + -1.3264 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 33734, + 33810, + 0 + ] + }, + "from": [ + 40.1863, + -1.3264 + ], + "tag": null, + "to": [ + 40.0206, + -1.5342 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 33816, + 33892, + 0 + ] + }, + "from": [ + 40.0206, + -1.5342 + ], + "tag": null, + "to": [ + 39.9243, + -1.5883 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 33898, + 33949, + 0 + ] + }, + "from": [ + 39.9243, + -1.5883 + ], + "tag": null, + "to": [ + 40.8264, + -1.1924 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 33955, + 34031, + 0 + ] + }, + "from": [ + 40.8264, + -1.1924 + ], + "tag": null, + "to": [ + 41.1064, + -1.3702 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 34037, + 34088, + 0 + ] + }, + "from": [ + 41.1064, + -1.3702 + ], + "tag": null, + "to": [ + 41.63, + -0.6759 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 34094, + 34169, + 0 + ] + }, + "from": [ + 41.63, + -0.6759 + ], + "tag": null, + "to": [ + 42.0214, + -1.4599 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 34175, + 34227, + 0 + ] + }, + "from": [ + 42.0214, + -1.4599 + ], + "tag": null, + "to": [ + 42.8628, + -0.9203 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 34233, + 34307, + 0 + ] + }, + "from": [ + 42.8628, + -0.9203 + ], + "tag": null, + "to": [ + 43.4766, + -0.6991 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 34313, + 34389, + 0 + ] + }, + "from": [ + 43.4766, + -0.6991 + ], + "tag": null, + "to": [ + 43.3808, + -1.4525 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 34395, + 34471, + 0 + ] + }, + "from": [ + 43.3808, + -1.4525 + ], + "tag": null, + "to": [ + 43.2082, + -2.2194 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 34477, + 34529, + 0 + ] + }, + "from": [ + 43.2082, + -2.2194 + ], + "tag": null, + "to": [ + 44.1027, + -1.6101 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 34535, + 34611, + 0 + ] + }, + "from": [ + 44.1027, + -1.6101 + ], + "tag": null, + "to": [ + 43.6898, + -2.0254 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 34617, + 34691, + 0 + ] + }, + "from": [ + 43.6898, + -2.0254 + ], + "tag": null, + "to": [ + 44.2068, + -2.9339 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 34697, + 34771, + 0 + ] + }, + "from": [ + 44.2068, + -2.9339 + ], + "tag": null, + "to": [ + 44.882, + -3.9049 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 34777, + 34851, + 0 + ] + }, + "from": [ + 44.882, + -3.9049 + ], + "tag": null, + "to": [ + 44.313, + -3.313 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 34857, + 34931, + 0 + ] + }, + "from": [ + 44.313, + -3.313 + ], + "tag": null, + "to": [ + 45.2594, + -3.5815 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 34937, + 34989, + 0 + ] + }, + "from": [ + 45.2594, + -3.5815 + ], + "tag": null, + "to": [ + 45.7836, + -2.6803 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 34995, + 35071, + 0 + ] + }, + "from": [ + 45.7836, + -2.6803 + ], + "tag": null, + "to": [ + 45.6411, + -3.1997 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 35077, + 35152, + 0 + ] + }, + "from": [ + 45.6411, + -3.1997 + ], + "tag": null, + "to": [ + 45.2123, + -3.6221 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 35158, + 35234, + 0 + ] + }, + "from": [ + 45.2123, + -3.6221 + ], + "tag": null, + "to": [ + 45.1192, + -4.5284 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 35240, + 35314, + 0 + ] + }, + "from": [ + 45.1192, + -4.5284 + ], + "tag": null, + "to": [ + 44.8424, + -3.8468 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 35320, + 35394, + 0 + ] + }, + "from": [ + 44.8424, + -3.8468 + ], + "tag": null, + "to": [ + 45.8221, + -3.929 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 35400, + 35474, + 0 + ] + }, + "from": [ + 45.8221, + -3.929 + ], + "tag": null, + "to": [ + 44.9554, + -4.23 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 35480, + 35554, + 0 + ] + }, + "from": [ + 44.9554, + -4.23 + ], + "tag": null, + "to": [ + 45.4928, + -4.2098 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 35560, + 35634, + 0 + ] + }, + "from": [ + 45.4928, + -4.2098 + ], + "tag": null, + "to": [ + 46.4261, + -4.8326 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 35640, + 35716, + 0 + ] + }, + "from": [ + 46.4261, + -4.8326 + ], + "tag": null, + "to": [ + 46.6066, + -5.2015 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 35722, + 35774, + 0 + ] + }, + "from": [ + 46.6066, + -5.2015 + ], + "tag": null, + "to": [ + 47.1451, + -4.9638 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 35780, + 35855, + 0 + ] + }, + "from": [ + 47.1451, + -4.9638 + ], + "tag": null, + "to": [ + 47.5355, + -4.821 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 35861, + 35935, + 0 + ] + }, + "from": [ + 47.5355, + -4.821 + ], + "tag": null, + "to": [ + 47.6333, + -3.8303 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 35941, + 36015, + 0 + ] + }, + "from": [ + 47.6333, + -3.8303 + ], + "tag": null, + "to": [ + 48.162, + -4.6227 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 36021, + 36095, + 0 + ] + }, + "from": [ + 48.162, + -4.6227 + ], + "tag": null, + "to": [ + 48.541, + -4.4988 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 36101, + 36175, + 0 + ] + }, + "from": [ + 48.541, + -4.4988 + ], + "tag": null, + "to": [ + 47.5925, + -3.8258 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 36181, + 36256, + 0 + ] + }, + "from": [ + 47.5925, + -3.8258 + ], + "tag": null, + "to": [ + 48.3377, + -4.039 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 36262, + 36337, + 0 + ] + }, + "from": [ + 48.3377, + -4.039 + ], + "tag": null, + "to": [ + 48.525, + -4.1986 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 36343, + 36419, + 0 + ] + }, + "from": [ + 48.525, + -4.1986 + ], + "tag": null, + "to": [ + 48.4677, + -4.7422 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 36425, + 36501, + 0 + ] + }, + "from": [ + 48.4677, + -4.7422 + ], + "tag": null, + "to": [ + 48.3719, + -5.4956 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 36507, + 36583, + 0 + ] + }, + "from": [ + 48.3719, + -5.4956 + ], + "tag": null, + "to": [ + 48.1993, + -6.2625 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 36589, + 36641, + 0 + ] + }, + "from": [ + 48.1993, + -6.2625 + ], + "tag": null, + "to": [ + 49.0938, + -5.6532 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 36647, + 36721, + 0 + ] + }, + "from": [ + 49.0938, + -5.6532 + ], + "tag": null, + "to": [ + 48.4699, + -5.2478 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 36727, + 36802, + 0 + ] + }, + "from": [ + 48.4699, + -5.2478 + ], + "tag": null, + "to": [ + 48.6079, + -5.7266 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 36808, + 36882, + 0 + ] + }, + "from": [ + 48.6079, + -5.7266 + ], + "tag": null, + "to": [ + 47.6562, + -4.8646 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 36888, + 36940, + 0 + ] + }, + "from": [ + 47.6562, + -4.8646 + ], + "tag": null, + "to": [ + 48.5961, + -4.2319 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 36946, + 37022, + 0 + ] + }, + "from": [ + 48.5961, + -4.2319 + ], + "tag": null, + "to": [ + 47.7329, + -4.2158 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 37028, + 37103, + 0 + ] + }, + "from": [ + 47.7329, + -4.2158 + ], + "tag": null, + "to": [ + 47.9246, + -4.7074 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 37109, + 37185, + 0 + ] + }, + "from": [ + 47.9246, + -4.7074 + ], + "tag": null, + "to": [ + 47.0601, + -4.8218 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 37191, + 37268, + 0 + ] + }, + "from": [ + 47.0601, + -4.8218 + ], + "tag": null, + "to": [ + 47.031, + -5.3432 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 37274, + 37348, + 0 + ] + }, + "from": [ + 47.031, + -5.3432 + ], + "tag": null, + "to": [ + 46.1597, + -4.5566 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 37354, + 37406, + 0 + ] + }, + "from": [ + 46.1597, + -4.5566 + ], + "tag": null, + "to": [ + 47.0441, + -4.7391 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 37412, + 37486, + 0 + ] + }, + "from": [ + 47.0441, + -4.7391 + ], + "tag": null, + "to": [ + 46.3462, + -4.695 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 37492, + 37570, + 0 + ] + }, + "from": [ + 46.3462, + -4.695 + ], + "tag": null, + "to": [ + 45.8657, + -4.7236 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 37576, + 37652, + 0 + ] + }, + "from": [ + 45.8657, + -4.7236 + ], + "tag": null, + "to": [ + 46.2785, + -5.173 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 37658, + 37709, + 0 + ] + }, + "from": [ + 46.2785, + -5.173 + ], + "tag": null, + "to": [ + 47.0697, + -4.2795 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 37715, + 37789, + 0 + ] + }, + "from": [ + 47.0697, + -4.2795 + ], + "tag": null, + "to": [ + 47.7204, + -4.9685 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 37795, + 37870, + 0 + ] + }, + "from": [ + 47.7204, + -4.9685 + ], + "tag": null, + "to": [ + 47.8253, + -5.5153 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 37876, + 37951, + 0 + ] + }, + "from": [ + 47.8253, + -5.5153 + ], + "tag": null, + "to": [ + 47.2492, + -5.7793 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 37957, + 38031, + 0 + ] + }, + "from": [ + 47.2492, + -5.7793 + ], + "tag": null, + "to": [ + 47.6475, + -4.9756 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 38037, + 38089, + 0 + ] + }, + "from": [ + 47.6475, + -4.9756 + ], + "tag": null, + "to": [ + 46.9737, + -5.894 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 38095, + 38170, + 0 + ] + }, + "from": [ + 46.9737, + -5.894 + ], + "tag": null, + "to": [ + 46.1137, + -6.844 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 38176, + 38250, + 0 + ] + }, + "from": [ + 46.1137, + -6.844 + ], + "tag": null, + "to": [ + 46.7423, + -7.3626 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 38256, + 38330, + 0 + ] + }, + "from": [ + 46.7423, + -7.3626 + ], + "tag": null, + "to": [ + 47.0645, + -7.1164 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 38336, + 38411, + 0 + ] + }, + "from": [ + 47.0645, + -7.1164 + ], + "tag": null, + "to": [ + 47.262, + -7.8693 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 38417, + 38493, + 0 + ] + }, + "from": [ + 47.262, + -7.8693 + ], + "tag": null, + "to": [ + 46.8302, + -7.6799 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 38499, + 38573, + 0 + ] + }, + "from": [ + 46.8302, + -7.6799 + ], + "tag": null, + "to": [ + 47.7017, + -8.4015 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 38579, + 38654, + 0 + ] + }, + "from": [ + 47.7017, + -8.4015 + ], + "tag": null, + "to": [ + 47.3347, + -8.1895 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 38660, + 38734, + 0 + ] + }, + "from": [ + 47.3347, + -8.1895 + ], + "tag": null, + "to": [ + 46.8639, + -7.6989 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 38740, + 38814, + 0 + ] + }, + "from": [ + 46.8639, + -7.6989 + ], + "tag": null, + "to": [ + 46.0311, + -7.2312 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 38820, + 38896, + 0 + ] + }, + "from": [ + 46.0311, + -7.2312 + ], + "tag": null, + "to": [ + 45.2199, + -7.6493 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 38902, + 38977, + 0 + ] + }, + "from": [ + 45.2199, + -7.6493 + ], + "tag": null, + "to": [ + 45.258, + -7.3927 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 38983, + 39058, + 0 + ] + }, + "from": [ + 45.258, + -7.3927 + ], + "tag": null, + "to": [ + 45.4975, + -6.9558 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 39064, + 39139, + 0 + ] + }, + "from": [ + 45.4975, + -6.9558 + ], + "tag": null, + "to": [ + 45.3347, + -6.1493 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 39145, + 39222, + 0 + ] + }, + "from": [ + 45.3347, + -6.1493 + ], + "tag": null, + "to": [ + 45.245, + -6.2382 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 39228, + 39303, + 0 + ] + }, + "from": [ + 45.245, + -6.2382 + ], + "tag": null, + "to": [ + 46.1653, + -6.4116 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 39309, + 39386, + 0 + ] + }, + "from": [ + 46.1653, + -6.4116 + ], + "tag": null, + "to": [ + 46.1671, + -6.9295 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 39392, + 39466, + 0 + ] + }, + "from": [ + 46.1671, + -6.9295 + ], + "tag": null, + "to": [ + 46.7877, + -7.8028 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 39472, + 39546, + 0 + ] + }, + "from": [ + 46.7877, + -7.8028 + ], + "tag": null, + "to": [ + 46.0101, + -7.0425 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 39552, + 39604, + 0 + ] + }, + "from": [ + 46.0101, + -7.0425 + ], + "tag": null, + "to": [ + 46.554, + -6.1976 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 39610, + 39687, + 0 + ] + }, + "from": [ + 46.554, + -6.1976 + ], + "tag": null, + "to": [ + 46.4236, + -6.1856 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 39693, + 39769, + 0 + ] + }, + "from": [ + 46.4236, + -6.1856 + ], + "tag": null, + "to": [ + 46.258, + -6.3933 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 39775, + 39851, + 0 + ] + }, + "from": [ + 46.258, + -6.3933 + ], + "tag": null, + "to": [ + 46.1617, + -6.4475 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 39857, + 39908, + 0 + ] + }, + "from": [ + 46.1617, + -6.4475 + ], + "tag": null, + "to": [ + 47.0638, + -6.0516 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 39914, + 39990, + 0 + ] + }, + "from": [ + 47.0638, + -6.0516 + ], + "tag": null, + "to": [ + 47.3438, + -6.2294 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 39996, + 40047, + 0 + ] + }, + "from": [ + 47.3438, + -6.2294 + ], + "tag": null, + "to": [ + 47.8674, + -5.5351 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 40053, + 40128, + 0 + ] + }, + "from": [ + 47.8674, + -5.5351 + ], + "tag": null, + "to": [ + 48.2588, + -6.319 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 40134, + 40186, + 0 + ] + }, + "from": [ + 48.2588, + -6.319 + ], + "tag": null, + "to": [ + 49.1002, + -5.7795 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 40192, + 40266, + 0 + ] + }, + "from": [ + 49.1002, + -5.7795 + ], + "tag": null, + "to": [ + 49.714, + -5.5583 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 40272, + 40324, + 0 + ] + }, + "from": [ + 49.714, + -5.5583 + ], + "tag": null, + "to": [ + 50.597, + -4.8586 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 40330, + 40406, + 0 + ] + }, + "from": [ + 50.597, + -4.8586 + ], + "tag": null, + "to": [ + 50.1841, + -5.2739 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 40412, + 40486, + 0 + ] + }, + "from": [ + 50.1841, + -5.2739 + ], + "tag": null, + "to": [ + 50.7011, + -6.1824 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 40492, + 40567, + 0 + ] + }, + "from": [ + 50.7011, + -6.1824 + ], + "tag": null, + "to": [ + 50.0294, + -7.143 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 40573, + 40650, + 0 + ] + }, + "from": [ + 50.0294, + -7.143 + ], + "tag": null, + "to": [ + 50.0397, + -7.5164 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 40656, + 40732, + 0 + ] + }, + "from": [ + 50.0397, + -7.5164 + ], + "tag": null, + "to": [ + 50.1433, + -7.9394 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 40738, + 40813, + 0 + ] + }, + "from": [ + 50.1433, + -7.9394 + ], + "tag": null, + "to": [ + 50.5953, + -8.0517 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 40819, + 40894, + 0 + ] + }, + "from": [ + 50.5953, + -8.0517 + ], + "tag": null, + "to": [ + 49.7132, + -8.7672 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 40900, + 40952, + 0 + ] + }, + "from": [ + 49.7132, + -8.7672 + ], + "tag": null, + "to": [ + 50.6328, + -8.4981 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 40958, + 41032, + 0 + ] + }, + "from": [ + 50.6328, + -8.4981 + ], + "tag": null, + "to": [ + 51.3427, + -8.381 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41038, + 41113, + 0 + ] + }, + "from": [ + 51.3427, + -8.381 + ], + "tag": null, + "to": [ + 50.9639, + -7.6703 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41119, + 41196, + 0 + ] + }, + "from": [ + 50.9639, + -7.6703 + ], + "tag": null, + "to": [ + 50.6666, + -7.7368 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41202, + 41277, + 0 + ] + }, + "from": [ + 50.6666, + -7.7368 + ], + "tag": null, + "to": [ + 50.8963, + -8.497 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41283, + 41358, + 0 + ] + }, + "from": [ + 50.8963, + -8.497 + ], + "tag": null, + "to": [ + 50.2606, + -8.3024 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41364, + 41416, + 0 + ] + }, + "from": [ + 50.2606, + -8.3024 + ], + "tag": null, + "to": [ + 50.8327, + -8.0135 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41422, + 41498, + 0 + ] + }, + "from": [ + 50.8327, + -8.0135 + ], + "tag": null, + "to": [ + 49.8747, + -8.036 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41504, + 41578, + 0 + ] + }, + "from": [ + 49.8747, + -8.036 + ], + "tag": null, + "to": [ + 50.2046, + -8.8713 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41584, + 41658, + 0 + ] + }, + "from": [ + 50.2046, + -8.8713 + ], + "tag": null, + "to": [ + 50.9481, + -9.6633 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41664, + 41716, + 0 + ] + }, + "from": [ + 50.9481, + -9.6633 + ], + "tag": null, + "to": [ + 51.9417, + -8.759 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41722, + 41796, + 0 + ] + }, + "from": [ + 51.9417, + -8.759 + ], + "tag": null, + "to": [ + 51.4381, + -8.2439 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41802, + 41854, + 0 + ] + }, + "from": [ + 51.4381, + -8.2439 + ], + "tag": null, + "to": [ + 51.9907, + -7.4827 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41860, + 41934, + 0 + ] + }, + "from": [ + 51.9907, + -7.4827 + ], + "tag": null, + "to": [ + 52.85, + -7.3985 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 41940, + 42014, + 0 + ] + }, + "from": [ + 52.85, + -7.3985 + ], + "tag": null, + "to": [ + 52.0319, + -8.3021 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 42020, + 42095, + 0 + ] + }, + "from": [ + 52.0319, + -8.3021 + ], + "tag": null, + "to": [ + 52.3485, + -8.544 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 42101, + 42178, + 0 + ] + }, + "from": [ + 52.3485, + -8.544 + ], + "tag": null, + "to": [ + 51.9046, + -8.8031 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 42184, + 42260, + 0 + ] + }, + "from": [ + 51.9046, + -8.8031 + ], + "tag": null, + "to": [ + 51.2441, + -9.2067 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 42266, + 42341, + 0 + ] + }, + "from": [ + 51.2441, + -9.2067 + ], + "tag": null, + "to": [ + 50.527, + -8.9721 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 42347, + 42423, + 0 + ] + }, + "from": [ + 50.527, + -8.9721 + ], + "tag": null, + "to": [ + 50.2702, + -9.4224 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 42429, + 42503, + 0 + ] + }, + "from": [ + 50.2702, + -9.4224 + ], + "tag": null, + "to": [ + 50.9454, + -10.3934 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 42509, + 42583, + 0 + ] + }, + "from": [ + 50.9454, + -10.3934 + ], + "tag": null, + "to": [ + 50.3764, + -9.8015 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 42589, + 42663, + 0 + ] + }, + "from": [ + 50.3764, + -9.8015 + ], + "tag": null, + "to": [ + 49.5436, + -9.3337 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 42669, + 42745, + 0 + ] + }, + "from": [ + 49.5436, + -9.3337 + ], + "tag": null, + "to": [ + 48.7325, + -9.7519 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 42751, + 42826, + 0 + ] + }, + "from": [ + 48.7325, + -9.7519 + ], + "tag": null, + "to": [ + 48.7705, + -9.4952 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 42832, + 42907, + 0 + ] + }, + "from": [ + 48.7705, + -9.4952 + ], + "tag": null, + "to": [ + 49.01, + -9.0583 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 42913, + 42988, + 0 + ] + }, + "from": [ + 49.01, + -9.0583 + ], + "tag": null, + "to": [ + 48.8473, + -8.2518 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 42994, + 43071, + 0 + ] + }, + "from": [ + 48.8473, + -8.2518 + ], + "tag": null, + "to": [ + 48.7575, + -8.3407 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 43077, + 43152, + 0 + ] + }, + "from": [ + 48.7575, + -8.3407 + ], + "tag": null, + "to": [ + 49.6779, + -8.5141 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 43158, + 43235, + 0 + ] + }, + "from": [ + 49.6779, + -8.5141 + ], + "tag": null, + "to": [ + 49.6796, + -9.032 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 43241, + 43315, + 0 + ] + }, + "from": [ + 49.6796, + -9.032 + ], + "tag": null, + "to": [ + 50.3002, + -9.9053 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 43321, + 43395, + 0 + ] + }, + "from": [ + 50.3002, + -9.9053 + ], + "tag": null, + "to": [ + 49.5226, + -9.1451 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 43401, + 43453, + 0 + ] + }, + "from": [ + 49.5226, + -9.1451 + ], + "tag": null, + "to": [ + 50.0665, + -8.3001 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 43459, + 43536, + 0 + ] + }, + "from": [ + 50.0665, + -8.3001 + ], + "tag": null, + "to": [ + 49.9362, + -8.2881 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 43542, + 43618, + 0 + ] + }, + "from": [ + 49.9362, + -8.2881 + ], + "tag": null, + "to": [ + 49.7705, + -8.4958 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 43624, + 43700, + 0 + ] + }, + "from": [ + 49.7705, + -8.4958 + ], + "tag": null, + "to": [ + 49.6743, + -8.55 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 43706, + 43757, + 0 + ] + }, + "from": [ + 49.6743, + -8.55 + ], + "tag": null, + "to": [ + 50.5764, + -8.1541 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 43763, + 43839, + 0 + ] + }, + "from": [ + 50.5764, + -8.1541 + ], + "tag": null, + "to": [ + 50.8563, + -8.3319 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 43845, + 43896, + 0 + ] + }, + "from": [ + 50.8563, + -8.3319 + ], + "tag": null, + "to": [ + 51.3799, + -7.6376 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 43902, + 43977, + 0 + ] + }, + "from": [ + 51.3799, + -7.6376 + ], + "tag": null, + "to": [ + 51.7713, + -8.4216 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 43983, + 44035, + 0 + ] + }, + "from": [ + 51.7713, + -8.4216 + ], + "tag": null, + "to": [ + 52.6128, + -7.882 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 44041, + 44115, + 0 + ] + }, + "from": [ + 52.6128, + -7.882 + ], + "tag": null, + "to": [ + 53.2265, + -7.6608 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 44121, + 44173, + 0 + ] + }, + "from": [ + 53.2265, + -7.6608 + ], + "tag": null, + "to": [ + 54.1096, + -6.9611 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 44179, + 44255, + 0 + ] + }, + "from": [ + 54.1096, + -6.9611 + ], + "tag": null, + "to": [ + 53.6967, + -7.3764 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 44261, + 44335, + 0 + ] + }, + "from": [ + 53.6967, + -7.3764 + ], + "tag": null, + "to": [ + 54.2136, + -8.285 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 44341, + 44415, + 0 + ] + }, + "from": [ + 54.2136, + -8.285 + ], + "tag": null, + "to": [ + 54.8888, + -9.2559 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 44421, + 44495, + 0 + ] + }, + "from": [ + 54.8888, + -9.2559 + ], + "tag": null, + "to": [ + 54.3199, + -8.664 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 44501, + 44575, + 0 + ] + }, + "from": [ + 54.3199, + -8.664 + ], + "tag": null, + "to": [ + 55.2663, + -8.9325 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 44581, + 44633, + 0 + ] + }, + "from": [ + 55.2663, + -8.9325 + ], + "tag": null, + "to": [ + 55.7905, + -8.0314 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 44639, + 44715, + 0 + ] + }, + "from": [ + 55.7905, + -8.0314 + ], + "tag": null, + "to": [ + 55.6479, + -8.5508 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 44721, + 44796, + 0 + ] + }, + "from": [ + 55.6479, + -8.5508 + ], + "tag": null, + "to": [ + 55.2192, + -8.9731 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 44802, + 44878, + 0 + ] + }, + "from": [ + 55.2192, + -8.9731 + ], + "tag": null, + "to": [ + 55.126, + -9.8794 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 44884, + 44958, + 0 + ] + }, + "from": [ + 55.126, + -9.8794 + ], + "tag": null, + "to": [ + 54.8493, + -9.1978 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 44964, + 45038, + 0 + ] + }, + "from": [ + 54.8493, + -9.1978 + ], + "tag": null, + "to": [ + 55.8289, + -9.28 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 45044, + 45118, + 0 + ] + }, + "from": [ + 55.8289, + -9.28 + ], + "tag": null, + "to": [ + 54.9623, + -9.5811 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 45124, + 45198, + 0 + ] + }, + "from": [ + 54.9623, + -9.5811 + ], + "tag": null, + "to": [ + 55.4997, + -9.5608 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 45204, + 45278, + 0 + ] + }, + "from": [ + 55.4997, + -9.5608 + ], + "tag": null, + "to": [ + 56.4329, + -10.1836 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 45284, + 45360, + 0 + ] + }, + "from": [ + 56.4329, + -10.1836 + ], + "tag": null, + "to": [ + 56.6135, + -10.5526 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 45366, + 45418, + 0 + ] + }, + "from": [ + 56.6135, + -10.5526 + ], + "tag": null, + "to": [ + 57.1519, + -10.3148 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 45424, + 45499, + 0 + ] + }, + "from": [ + 57.1519, + -10.3148 + ], + "tag": null, + "to": [ + 57.5423, + -10.1721 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 45505, + 45579, + 0 + ] + }, + "from": [ + 57.5423, + -10.1721 + ], + "tag": null, + "to": [ + 57.6402, + -9.1813 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 45585, + 45659, + 0 + ] + }, + "from": [ + 57.6402, + -9.1813 + ], + "tag": null, + "to": [ + 58.1688, + -9.9738 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 45665, + 45739, + 0 + ] + }, + "from": [ + 58.1688, + -9.9738 + ], + "tag": null, + "to": [ + 58.5478, + -9.8498 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 45745, + 45819, + 0 + ] + }, + "from": [ + 58.5478, + -9.8498 + ], + "tag": null, + "to": [ + 57.5993, + -9.1768 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 45825, + 45900, + 0 + ] + }, + "from": [ + 57.5993, + -9.1768 + ], + "tag": null, + "to": [ + 58.3445, + -9.39 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 45906, + 45981, + 0 + ] + }, + "from": [ + 58.3445, + -9.39 + ], + "tag": null, + "to": [ + 58.5318, + -9.5496 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 45987, + 46063, + 0 + ] + }, + "from": [ + 58.5318, + -9.5496 + ], + "tag": null, + "to": [ + 58.4745, + -10.0933 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 46069, + 46145, + 0 + ] + }, + "from": [ + 58.4745, + -10.0933 + ], + "tag": null, + "to": [ + 58.3787, + -10.8467 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 46151, + 46227, + 0 + ] + }, + "from": [ + 58.3787, + -10.8467 + ], + "tag": null, + "to": [ + 58.2062, + -11.6136 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 46233, + 46285, + 0 + ] + }, + "from": [ + 58.2062, + -11.6136 + ], + "tag": null, + "to": [ + 59.1006, + -11.0042 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 46291, + 46366, + 0 + ] + }, + "from": [ + 59.1006, + -11.0042 + ], + "tag": null, + "to": [ + 58.7336, + -10.7922 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 46372, + 46446, + 0 + ] + }, + "from": [ + 58.7336, + -10.7922 + ], + "tag": null, + "to": [ + 58.2629, + -10.3017 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 46452, + 46526, + 0 + ] + }, + "from": [ + 58.2629, + -10.3017 + ], + "tag": null, + "to": [ + 57.43, + -9.834 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 46532, + 46608, + 0 + ] + }, + "from": [ + 57.43, + -9.834 + ], + "tag": null, + "to": [ + 56.6189, + -10.2521 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 46614, + 46689, + 0 + ] + }, + "from": [ + 56.6189, + -10.2521 + ], + "tag": null, + "to": [ + 56.657, + -9.9955 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 46695, + 46770, + 0 + ] + }, + "from": [ + 56.657, + -9.9955 + ], + "tag": null, + "to": [ + 56.8965, + -9.5585 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 46776, + 46851, + 0 + ] + }, + "from": [ + 56.8965, + -9.5585 + ], + "tag": null, + "to": [ + 56.7337, + -8.7521 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 46857, + 46934, + 0 + ] + }, + "from": [ + 56.7337, + -8.7521 + ], + "tag": null, + "to": [ + 56.644, + -8.841 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 46940, + 47015, + 0 + ] + }, + "from": [ + 56.644, + -8.841 + ], + "tag": null, + "to": [ + 57.5643, + -9.0144 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 47021, + 47098, + 0 + ] + }, + "from": [ + 57.5643, + -9.0144 + ], + "tag": null, + "to": [ + 57.566, + -9.5322 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 47104, + 47178, + 0 + ] + }, + "from": [ + 57.566, + -9.5322 + ], + "tag": null, + "to": [ + 58.1867, + -10.4056 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 47184, + 47258, + 0 + ] + }, + "from": [ + 58.1867, + -10.4056 + ], + "tag": null, + "to": [ + 57.409, + -9.6453 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 47264, + 47316, + 0 + ] + }, + "from": [ + 57.409, + -9.6453 + ], + "tag": null, + "to": [ + 57.953, + -8.8004 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 47322, + 47399, + 0 + ] + }, + "from": [ + 57.953, + -8.8004 + ], + "tag": null, + "to": [ + 57.8226, + -8.7883 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 47405, + 47481, + 0 + ] + }, + "from": [ + 57.8226, + -8.7883 + ], + "tag": null, + "to": [ + 57.657, + -8.9961 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 47487, + 47563, + 0 + ] + }, + "from": [ + 57.657, + -8.9961 + ], + "tag": null, + "to": [ + 57.5607, + -9.0503 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 47569, + 47620, + 0 + ] + }, + "from": [ + 57.5607, + -9.0503 + ], + "tag": null, + "to": [ + 58.4628, + -8.6544 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 47626, + 47702, + 0 + ] + }, + "from": [ + 58.4628, + -8.6544 + ], + "tag": null, + "to": [ + 58.7428, + -8.8321 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 47708, + 47759, + 0 + ] + }, + "from": [ + 58.7428, + -8.8321 + ], + "tag": null, + "to": [ + 59.2664, + -8.1378 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 47765, + 47840, + 0 + ] + }, + "from": [ + 59.2664, + -8.1378 + ], + "tag": null, + "to": [ + 59.6578, + -8.9218 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 47846, + 47898, + 0 + ] + }, + "from": [ + 59.6578, + -8.9218 + ], + "tag": null, + "to": [ + 60.4992, + -8.3822 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 47904, + 47978, + 0 + ] + }, + "from": [ + 60.4992, + -8.3822 + ], + "tag": null, + "to": [ + 61.113, + -8.161 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 47984, + 48036, + 0 + ] + }, + "from": [ + 61.113, + -8.161 + ], + "tag": null, + "to": [ + 61.996, + -7.4614 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 48042, + 48118, + 0 + ] + }, + "from": [ + 61.996, + -7.4614 + ], + "tag": null, + "to": [ + 61.5831, + -7.8766 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 48124, + 48198, + 0 + ] + }, + "from": [ + 61.5831, + -7.8766 + ], + "tag": null, + "to": [ + 62.1, + -8.7852 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 48204, + 48279, + 0 + ] + }, + "from": [ + 62.1, + -8.7852 + ], + "tag": null, + "to": [ + 61.4284, + -9.7458 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 48285, + 48362, + 0 + ] + }, + "from": [ + 61.4284, + -9.7458 + ], + "tag": null, + "to": [ + 61.4387, + -10.1192 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 48368, + 48444, + 0 + ] + }, + "from": [ + 61.4387, + -10.1192 + ], + "tag": null, + "to": [ + 61.5423, + -10.5421 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 48450, + 48525, + 0 + ] + }, + "from": [ + 61.5423, + -10.5421 + ], + "tag": null, + "to": [ + 61.9943, + -10.6545 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 48531, + 48606, + 0 + ] + }, + "from": [ + 61.9943, + -10.6545 + ], + "tag": null, + "to": [ + 61.1122, + -11.37 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 48612, + 48664, + 0 + ] + }, + "from": [ + 61.1122, + -11.37 + ], + "tag": null, + "to": [ + 62.0317, + -11.1008 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 48670, + 48744, + 0 + ] + }, + "from": [ + 62.0317, + -11.1008 + ], + "tag": null, + "to": [ + 62.7416, + -10.9837 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 48750, + 48825, + 0 + ] + }, + "from": [ + 62.7416, + -10.9837 + ], + "tag": null, + "to": [ + 62.3629, + -10.273 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 48831, + 48908, + 0 + ] + }, + "from": [ + 62.3629, + -10.273 + ], + "tag": null, + "to": [ + 62.0656, + -10.3395 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 48914, + 48989, + 0 + ] + }, + "from": [ + 62.0656, + -10.3395 + ], + "tag": null, + "to": [ + 62.2952, + -11.0997 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 48995, + 49070, + 0 + ] + }, + "from": [ + 62.2952, + -11.0997 + ], + "tag": null, + "to": [ + 61.6596, + -10.9051 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 49076, + 49128, + 0 + ] + }, + "from": [ + 61.6596, + -10.9051 + ], + "tag": null, + "to": [ + 62.2317, + -10.6163 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 49134, + 49210, + 0 + ] + }, + "from": [ + 62.2317, + -10.6163 + ], + "tag": null, + "to": [ + 61.2737, + -10.6387 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 49216, + 49290, + 0 + ] + }, + "from": [ + 61.2737, + -10.6387 + ], + "tag": null, + "to": [ + 61.6036, + -11.4741 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 49296, + 49370, + 0 + ] + }, + "from": [ + 61.6036, + -11.4741 + ], + "tag": null, + "to": [ + 62.3471, + -12.2661 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 49376, + 49428, + 0 + ] + }, + "from": [ + 62.3471, + -12.2661 + ], + "tag": null, + "to": [ + 63.3406, + -11.3618 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 49434, + 49508, + 0 + ] + }, + "from": [ + 63.3406, + -11.3618 + ], + "tag": null, + "to": [ + 62.8371, + -10.8467 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 49514, + 49566, + 0 + ] + }, + "from": [ + 62.8371, + -10.8467 + ], + "tag": null, + "to": [ + 63.3897, + -10.0854 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 49572, + 49646, + 0 + ] + }, + "from": [ + 63.3897, + -10.0854 + ], + "tag": null, + "to": [ + 64.249, + -10.0013 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 49652, + 49726, + 0 + ] + }, + "from": [ + 64.249, + -10.0013 + ], + "tag": null, + "to": [ + 63.4309, + -10.9048 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 49732, + 49807, + 0 + ] + }, + "from": [ + 63.4309, + -10.9048 + ], + "tag": null, + "to": [ + 63.7475, + -11.1467 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 49813, + 49890, + 0 + ] + }, + "from": [ + 63.7475, + -11.1467 + ], + "tag": null, + "to": [ + 63.3036, + -11.4059 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 49896, + 49972, + 0 + ] + }, + "from": [ + 63.3036, + -11.4059 + ], + "tag": null, + "to": [ + 62.643, + -11.8094 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 49978, + 50053, + 0 + ] + }, + "from": [ + 62.643, + -11.8094 + ], + "tag": null, + "to": [ + 61.926, + -11.5749 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 50059, + 50135, + 0 + ] + }, + "from": [ + 61.926, + -11.5749 + ], + "tag": null, + "to": [ + 61.6692, + -12.0252 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 50141, + 50215, + 0 + ] + }, + "from": [ + 61.6692, + -12.0252 + ], + "tag": null, + "to": [ + 62.3444, + -12.9961 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 50221, + 50295, + 0 + ] + }, + "from": [ + 62.3444, + -12.9961 + ], + "tag": null, + "to": [ + 61.7754, + -12.4042 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 50301, + 50375, + 0 + ] + }, + "from": [ + 61.7754, + -12.4042 + ], + "tag": null, + "to": [ + 60.9426, + -11.9365 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 50381, + 50457, + 0 + ] + }, + "from": [ + 60.9426, + -11.9365 + ], + "tag": null, + "to": [ + 60.1314, + -12.3546 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 50463, + 50538, + 0 + ] + }, + "from": [ + 60.1314, + -12.3546 + ], + "tag": null, + "to": [ + 60.1695, + -12.098 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 50544, + 50619, + 0 + ] + }, + "from": [ + 60.1695, + -12.098 + ], + "tag": null, + "to": [ + 60.409, + -11.6611 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 50625, + 50700, + 0 + ] + }, + "from": [ + 60.409, + -11.6611 + ], + "tag": null, + "to": [ + 60.2462, + -10.8546 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 50706, + 50783, + 0 + ] + }, + "from": [ + 60.2462, + -10.8546 + ], + "tag": null, + "to": [ + 60.1565, + -10.9435 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 50789, + 50864, + 0 + ] + }, + "from": [ + 60.1565, + -10.9435 + ], + "tag": null, + "to": [ + 61.0768, + -11.1169 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 50870, + 50947, + 0 + ] + }, + "from": [ + 61.0768, + -11.1169 + ], + "tag": null, + "to": [ + 61.0786, + -11.6348 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 50953, + 51027, + 0 + ] + }, + "from": [ + 61.0786, + -11.6348 + ], + "tag": null, + "to": [ + 61.6992, + -12.5081 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 51033, + 51107, + 0 + ] + }, + "from": [ + 61.6992, + -12.5081 + ], + "tag": null, + "to": [ + 60.9216, + -11.7478 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 51113, + 51165, + 0 + ] + }, + "from": [ + 60.9216, + -11.7478 + ], + "tag": null, + "to": [ + 61.4655, + -10.9029 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 51171, + 51248, + 0 + ] + }, + "from": [ + 61.4655, + -10.9029 + ], + "tag": null, + "to": [ + 61.3351, + -10.8909 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 51254, + 51330, + 0 + ] + }, + "from": [ + 61.3351, + -10.8909 + ], + "tag": null, + "to": [ + 61.1695, + -11.0986 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 51336, + 51412, + 0 + ] + }, + "from": [ + 61.1695, + -11.0986 + ], + "tag": null, + "to": [ + 61.0732, + -11.1528 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 51418, + 51469, + 0 + ] + }, + "from": [ + 61.0732, + -11.1528 + ], + "tag": null, + "to": [ + 61.9753, + -10.7569 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 51475, + 51551, + 0 + ] + }, + "from": [ + 61.9753, + -10.7569 + ], + "tag": null, + "to": [ + 62.2553, + -10.9347 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 51557, + 51608, + 0 + ] + }, + "from": [ + 62.2553, + -10.9347 + ], + "tag": null, + "to": [ + 62.7789, + -10.2404 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 51614, + 51689, + 0 + ] + }, + "from": [ + 62.7789, + -10.2404 + ], + "tag": null, + "to": [ + 63.1703, + -11.0243 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 51695, + 51747, + 0 + ] + }, + "from": [ + 63.1703, + -11.0243 + ], + "tag": null, + "to": [ + 64.0117, + -10.4848 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 51753, + 51827, + 0 + ] + }, + "from": [ + 64.0117, + -10.4848 + ], + "tag": null, + "to": [ + 64.6255, + -10.2636 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 51833, + 51885, + 0 + ] + }, + "from": [ + 64.6255, + -10.2636 + ], + "tag": null, + "to": [ + 65.5085, + -9.5639 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 51891, + 51966, + 0 + ] + }, + "from": [ + 65.5085, + -9.5639 + ], + "tag": null, + "to": [ + 65.1415, + -9.3519 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 51972, + 52046, + 0 + ] + }, + "from": [ + 65.1415, + -9.3519 + ], + "tag": null, + "to": [ + 64.6708, + -8.8614 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 52052, + 52126, + 0 + ] + }, + "from": [ + 64.6708, + -8.8614 + ], + "tag": null, + "to": [ + 63.8379, + -8.3936 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 52132, + 52208, + 0 + ] + }, + "from": [ + 63.8379, + -8.3936 + ], + "tag": null, + "to": [ + 63.0268, + -8.8118 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 52214, + 52289, + 0 + ] + }, + "from": [ + 63.0268, + -8.8118 + ], + "tag": null, + "to": [ + 63.0649, + -8.5551 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 52295, + 52370, + 0 + ] + }, + "from": [ + 63.0649, + -8.5551 + ], + "tag": null, + "to": [ + 63.3044, + -8.1182 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 52376, + 52451, + 0 + ] + }, + "from": [ + 63.3044, + -8.1182 + ], + "tag": null, + "to": [ + 63.1416, + -7.3117 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 52457, + 52534, + 0 + ] + }, + "from": [ + 63.1416, + -7.3117 + ], + "tag": null, + "to": [ + 63.0518, + -7.4006 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 52540, + 52615, + 0 + ] + }, + "from": [ + 63.0518, + -7.4006 + ], + "tag": null, + "to": [ + 63.9722, + -7.574 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 52621, + 52698, + 0 + ] + }, + "from": [ + 63.9722, + -7.574 + ], + "tag": null, + "to": [ + 63.9739, + -8.0919 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 52704, + 52778, + 0 + ] + }, + "from": [ + 63.9739, + -8.0919 + ], + "tag": null, + "to": [ + 64.5946, + -8.9652 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 52784, + 52858, + 0 + ] + }, + "from": [ + 64.5946, + -8.9652 + ], + "tag": null, + "to": [ + 63.8169, + -8.205 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 52864, + 52916, + 0 + ] + }, + "from": [ + 63.8169, + -8.205 + ], + "tag": null, + "to": [ + 64.3609, + -7.36 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 52922, + 52999, + 0 + ] + }, + "from": [ + 64.3609, + -7.36 + ], + "tag": null, + "to": [ + 64.2305, + -7.348 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 53005, + 53081, + 0 + ] + }, + "from": [ + 64.2305, + -7.348 + ], + "tag": null, + "to": [ + 64.0648, + -7.5557 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 53087, + 53163, + 0 + ] + }, + "from": [ + 64.0648, + -7.5557 + ], + "tag": null, + "to": [ + 63.9686, + -7.6099 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 53169, + 53220, + 0 + ] + }, + "from": [ + 63.9686, + -7.6099 + ], + "tag": null, + "to": [ + 64.8707, + -7.214 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 53226, + 53302, + 0 + ] + }, + "from": [ + 64.8707, + -7.214 + ], + "tag": null, + "to": [ + 65.1507, + -7.3918 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 53308, + 53359, + 0 + ] + }, + "from": [ + 65.1507, + -7.3918 + ], + "tag": null, + "to": [ + 65.6742, + -6.6975 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 53365, + 53440, + 0 + ] + }, + "from": [ + 65.6742, + -6.6975 + ], + "tag": null, + "to": [ + 66.0657, + -7.4815 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 53446, + 53498, + 0 + ] + }, + "from": [ + 66.0657, + -7.4815 + ], + "tag": null, + "to": [ + 66.9071, + -6.9419 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 53504, + 53578, + 0 + ] + }, + "from": [ + 66.9071, + -6.9419 + ], + "tag": null, + "to": [ + 67.5208, + -6.7207 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 53584, + 53636, + 0 + ] + }, + "from": [ + 67.5208, + -6.7207 + ], + "tag": null, + "to": [ + 68.4039, + -6.021 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 53642, + 53718, + 0 + ] + }, + "from": [ + 68.4039, + -6.021 + ], + "tag": null, + "to": [ + 67.991, + -6.4363 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 53724, + 53798, + 0 + ] + }, + "from": [ + 67.991, + -6.4363 + ], + "tag": null, + "to": [ + 68.5079, + -7.3449 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 53804, + 53879, + 0 + ] + }, + "from": [ + 68.5079, + -7.3449 + ], + "tag": null, + "to": [ + 67.8363, + -8.3054 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 53885, + 53962, + 0 + ] + }, + "from": [ + 67.8363, + -8.3054 + ], + "tag": null, + "to": [ + 67.8466, + -8.6789 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 53968, + 54043, + 0 + ] + }, + "from": [ + 67.8466, + -8.6789 + ], + "tag": null, + "to": [ + 67.4796, + -8.4668 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 54049, + 54123, + 0 + ] + }, + "from": [ + 67.4796, + -8.4668 + ], + "tag": null, + "to": [ + 67.0088, + -7.9763 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 54129, + 54203, + 0 + ] + }, + "from": [ + 67.0088, + -7.9763 + ], + "tag": null, + "to": [ + 66.176, + -7.5086 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 54209, + 54285, + 0 + ] + }, + "from": [ + 66.176, + -7.5086 + ], + "tag": null, + "to": [ + 65.3648, + -7.9267 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 54291, + 54366, + 0 + ] + }, + "from": [ + 65.3648, + -7.9267 + ], + "tag": null, + "to": [ + 65.4029, + -7.6701 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 54372, + 54447, + 0 + ] + }, + "from": [ + 65.4029, + -7.6701 + ], + "tag": null, + "to": [ + 65.6424, + -7.2331 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 54453, + 54528, + 0 + ] + }, + "from": [ + 65.6424, + -7.2331 + ], + "tag": null, + "to": [ + 65.4796, + -6.4267 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 54534, + 54611, + 0 + ] + }, + "from": [ + 65.4796, + -6.4267 + ], + "tag": null, + "to": [ + 65.3899, + -6.5156 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 54617, + 54692, + 0 + ] + }, + "from": [ + 65.3899, + -6.5156 + ], + "tag": null, + "to": [ + 66.3102, + -6.689 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 54698, + 54775, + 0 + ] + }, + "from": [ + 66.3102, + -6.689 + ], + "tag": null, + "to": [ + 66.312, + -7.2068 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 54781, + 54855, + 0 + ] + }, + "from": [ + 66.312, + -7.2068 + ], + "tag": null, + "to": [ + 66.9326, + -8.0802 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 54861, + 54935, + 0 + ] + }, + "from": [ + 66.9326, + -8.0802 + ], + "tag": null, + "to": [ + 66.155, + -7.3199 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 54941, + 54993, + 0 + ] + }, + "from": [ + 66.155, + -7.3199 + ], + "tag": null, + "to": [ + 66.6989, + -6.475 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 54999, + 55076, + 0 + ] + }, + "from": [ + 66.6989, + -6.475 + ], + "tag": null, + "to": [ + 66.5685, + -6.4629 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 55082, + 55158, + 0 + ] + }, + "from": [ + 66.5685, + -6.4629 + ], + "tag": null, + "to": [ + 66.4029, + -6.6707 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 55164, + 55240, + 0 + ] + }, + "from": [ + 66.4029, + -6.6707 + ], + "tag": null, + "to": [ + 66.3066, + -6.7249 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 55246, + 55297, + 0 + ] + }, + "from": [ + 66.3066, + -6.7249 + ], + "tag": null, + "to": [ + 67.2087, + -6.329 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 55303, + 55379, + 0 + ] + }, + "from": [ + 67.2087, + -6.329 + ], + "tag": null, + "to": [ + 67.4887, + -6.5068 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 55385, + 55436, + 0 + ] + }, + "from": [ + 67.4887, + -6.5068 + ], + "tag": null, + "to": [ + 68.0123, + -5.8124 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 55442, + 55517, + 0 + ] + }, + "from": [ + 68.0123, + -5.8124 + ], + "tag": null, + "to": [ + 68.4037, + -6.5964 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 55523, + 55575, + 0 + ] + }, + "from": [ + 68.4037, + -6.5964 + ], + "tag": null, + "to": [ + 69.2451, + -6.0569 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 55581, + 55655, + 0 + ] + }, + "from": [ + 69.2451, + -6.0569 + ], + "tag": null, + "to": [ + 69.8589, + -5.8357 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 55661, + 55713, + 0 + ] + }, + "from": [ + 69.8589, + -5.8357 + ], + "tag": null, + "to": [ + 70.7419, + -5.136 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 55719, + 55795, + 0 + ] + }, + "from": [ + 70.7419, + -5.136 + ], + "tag": null, + "to": [ + 70.329, + -5.5513 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 55801, + 55875, + 0 + ] + }, + "from": [ + 70.329, + -5.5513 + ], + "tag": null, + "to": [ + 70.846, + -6.4598 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 55881, + 55956, + 0 + ] + }, + "from": [ + 70.846, + -6.4598 + ], + "tag": null, + "to": [ + 70.1744, + -7.4204 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 55962, + 56039, + 0 + ] + }, + "from": [ + 70.1744, + -7.4204 + ], + "tag": null, + "to": [ + 70.1846, + -7.7938 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 56045, + 56121, + 0 + ] + }, + "from": [ + 70.1846, + -7.7938 + ], + "tag": null, + "to": [ + 70.2882, + -8.2167 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 56127, + 56202, + 0 + ] + }, + "from": [ + 70.2882, + -8.2167 + ], + "tag": null, + "to": [ + 70.7402, + -8.3291 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 56208, + 56283, + 0 + ] + }, + "from": [ + 70.7402, + -8.3291 + ], + "tag": null, + "to": [ + 69.8581, + -9.0446 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 56289, + 56341, + 0 + ] + }, + "from": [ + 69.8581, + -9.0446 + ], + "tag": null, + "to": [ + 70.7777, + -8.7754 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 56347, + 56421, + 0 + ] + }, + "from": [ + 70.7777, + -8.7754 + ], + "tag": null, + "to": [ + 71.4876, + -8.6583 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 56427, + 56502, + 0 + ] + }, + "from": [ + 71.4876, + -8.6583 + ], + "tag": null, + "to": [ + 71.1088, + -7.9477 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 56508, + 56585, + 0 + ] + }, + "from": [ + 71.1088, + -7.9477 + ], + "tag": null, + "to": [ + 70.8115, + -8.0142 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 56591, + 56666, + 0 + ] + }, + "from": [ + 70.8115, + -8.0142 + ], + "tag": null, + "to": [ + 71.0412, + -8.7743 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 56672, + 56747, + 0 + ] + }, + "from": [ + 71.0412, + -8.7743 + ], + "tag": null, + "to": [ + 70.4055, + -8.5798 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 56753, + 56805, + 0 + ] + }, + "from": [ + 70.4055, + -8.5798 + ], + "tag": null, + "to": [ + 70.9777, + -8.2909 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 56811, + 56887, + 0 + ] + }, + "from": [ + 70.9777, + -8.2909 + ], + "tag": null, + "to": [ + 70.0196, + -8.3133 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 56893, + 56967, + 0 + ] + }, + "from": [ + 70.0196, + -8.3133 + ], + "tag": null, + "to": [ + 70.3495, + -9.1487 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 56973, + 57047, + 0 + ] + }, + "from": [ + 70.3495, + -9.1487 + ], + "tag": null, + "to": [ + 71.093, + -9.9407 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 57053, + 57105, + 0 + ] + }, + "from": [ + 71.093, + -9.9407 + ], + "tag": null, + "to": [ + 72.0866, + -9.0364 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 57111, + 57185, + 0 + ] + }, + "from": [ + 72.0866, + -9.0364 + ], + "tag": null, + "to": [ + 71.583, + -8.5213 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 57191, + 57243, + 0 + ] + }, + "from": [ + 71.583, + -8.5213 + ], + "tag": null, + "to": [ + 72.1356, + -7.7601 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 57249, + 57323, + 0 + ] + }, + "from": [ + 72.1356, + -7.7601 + ], + "tag": null, + "to": [ + 72.9949, + -7.6759 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 57329, + 57403, + 0 + ] + }, + "from": [ + 72.9949, + -7.6759 + ], + "tag": null, + "to": [ + 72.1768, + -8.5795 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 57409, + 57484, + 0 + ] + }, + "from": [ + 72.1768, + -8.5795 + ], + "tag": null, + "to": [ + 72.4934, + -8.8214 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 57490, + 57567, + 0 + ] + }, + "from": [ + 72.4934, + -8.8214 + ], + "tag": null, + "to": [ + 72.0495, + -9.0805 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 57573, + 57649, + 0 + ] + }, + "from": [ + 72.0495, + -9.0805 + ], + "tag": null, + "to": [ + 71.389, + -9.484 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 57655, + 57730, + 0 + ] + }, + "from": [ + 71.389, + -9.484 + ], + "tag": null, + "to": [ + 70.6719, + -9.2495 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 57736, + 57812, + 0 + ] + }, + "from": [ + 70.6719, + -9.2495 + ], + "tag": null, + "to": [ + 70.4151, + -9.6998 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 57818, + 57892, + 0 + ] + }, + "from": [ + 70.4151, + -9.6998 + ], + "tag": null, + "to": [ + 71.0903, + -10.6707 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 57898, + 57972, + 0 + ] + }, + "from": [ + 71.0903, + -10.6707 + ], + "tag": null, + "to": [ + 70.5214, + -10.0788 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 57978, + 58052, + 0 + ] + }, + "from": [ + 70.5214, + -10.0788 + ], + "tag": null, + "to": [ + 69.6885, + -9.6111 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 58058, + 58134, + 0 + ] + }, + "from": [ + 69.6885, + -9.6111 + ], + "tag": null, + "to": [ + 68.8774, + -10.0292 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 58140, + 58215, + 0 + ] + }, + "from": [ + 68.8774, + -10.0292 + ], + "tag": null, + "to": [ + 68.9155, + -9.7726 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 58221, + 58296, + 0 + ] + }, + "from": [ + 68.9155, + -9.7726 + ], + "tag": null, + "to": [ + 69.155, + -9.3357 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 58302, + 58377, + 0 + ] + }, + "from": [ + 69.155, + -9.3357 + ], + "tag": null, + "to": [ + 68.9922, + -8.5292 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 58383, + 58460, + 0 + ] + }, + "from": [ + 68.9922, + -8.5292 + ], + "tag": null, + "to": [ + 68.9024, + -8.6181 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 58466, + 58541, + 0 + ] + }, + "from": [ + 68.9024, + -8.6181 + ], + "tag": null, + "to": [ + 69.8228, + -8.7915 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 58547, + 58624, + 0 + ] + }, + "from": [ + 69.8228, + -8.7915 + ], + "tag": null, + "to": [ + 69.8245, + -9.3094 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 58630, + 58704, + 0 + ] + }, + "from": [ + 69.8245, + -9.3094 + ], + "tag": null, + "to": [ + 70.4451, + -10.1827 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 58710, + 58784, + 0 + ] + }, + "from": [ + 70.4451, + -10.1827 + ], + "tag": null, + "to": [ + 69.6675, + -9.4224 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 58790, + 58842, + 0 + ] + }, + "from": [ + 69.6675, + -9.4224 + ], + "tag": null, + "to": [ + 70.2114, + -8.5775 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 58848, + 58925, + 0 + ] + }, + "from": [ + 70.2114, + -8.5775 + ], + "tag": null, + "to": [ + 70.0811, + -8.5655 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 58931, + 59007, + 0 + ] + }, + "from": [ + 70.0811, + -8.5655 + ], + "tag": null, + "to": [ + 69.9154, + -8.7732 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 59013, + 59089, + 0 + ] + }, + "from": [ + 69.9154, + -8.7732 + ], + "tag": null, + "to": [ + 69.8192, + -8.8274 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 59095, + 59146, + 0 + ] + }, + "from": [ + 69.8192, + -8.8274 + ], + "tag": null, + "to": [ + 70.7213, + -8.4315 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 59152, + 59228, + 0 + ] + }, + "from": [ + 70.7213, + -8.4315 + ], + "tag": null, + "to": [ + 71.0012, + -8.6093 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 59234, + 59285, + 0 + ] + }, + "from": [ + 71.0012, + -8.6093 + ], + "tag": null, + "to": [ + 71.5248, + -7.915 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 59291, + 59366, + 0 + ] + }, + "from": [ + 71.5248, + -7.915 + ], + "tag": null, + "to": [ + 71.9162, + -8.6989 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 59372, + 59424, + 0 + ] + }, + "from": [ + 71.9162, + -8.6989 + ], + "tag": null, + "to": [ + 72.7577, + -8.1594 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 59430, + 59504, + 0 + ] + }, + "from": [ + 72.7577, + -8.1594 + ], + "tag": null, + "to": [ + 73.3714, + -7.9382 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 59510, + 59562, + 0 + ] + }, + "from": [ + 73.3714, + -7.9382 + ], + "tag": null, + "to": [ + 74.2545, + -7.2385 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 59568, + 59644, + 0 + ] + }, + "from": [ + 74.2545, + -7.2385 + ], + "tag": null, + "to": [ + 73.8416, + -7.6538 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 59650, + 59724, + 0 + ] + }, + "from": [ + 73.8416, + -7.6538 + ], + "tag": null, + "to": [ + 74.3585, + -8.5623 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 59730, + 59804, + 0 + ] + }, + "from": [ + 74.3585, + -8.5623 + ], + "tag": null, + "to": [ + 75.0337, + -9.5333 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 59810, + 59884, + 0 + ] + }, + "from": [ + 75.0337, + -9.5333 + ], + "tag": null, + "to": [ + 74.4648, + -8.9414 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 59890, + 59964, + 0 + ] + }, + "from": [ + 74.4648, + -8.9414 + ], + "tag": null, + "to": [ + 75.4112, + -9.2099 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 59970, + 60022, + 0 + ] + }, + "from": [ + 75.4112, + -9.2099 + ], + "tag": null, + "to": [ + 75.9354, + -8.3087 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 60028, + 60104, + 0 + ] + }, + "from": [ + 75.9354, + -8.3087 + ], + "tag": null, + "to": [ + 75.7928, + -8.8282 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 60110, + 60185, + 0 + ] + }, + "from": [ + 75.7928, + -8.8282 + ], + "tag": null, + "to": [ + 75.3641, + -9.2505 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 60191, + 60267, + 0 + ] + }, + "from": [ + 75.3641, + -9.2505 + ], + "tag": null, + "to": [ + 75.2709, + -10.1568 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 60273, + 60347, + 0 + ] + }, + "from": [ + 75.2709, + -10.1568 + ], + "tag": null, + "to": [ + 74.9942, + -9.4752 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 60353, + 60427, + 0 + ] + }, + "from": [ + 74.9942, + -9.4752 + ], + "tag": null, + "to": [ + 75.9738, + -9.5574 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 60433, + 60507, + 0 + ] + }, + "from": [ + 75.9738, + -9.5574 + ], + "tag": null, + "to": [ + 75.1072, + -9.8585 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 60513, + 60587, + 0 + ] + }, + "from": [ + 75.1072, + -9.8585 + ], + "tag": null, + "to": [ + 75.6446, + -9.8382 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 60593, + 60667, + 0 + ] + }, + "from": [ + 75.6446, + -9.8382 + ], + "tag": null, + "to": [ + 76.5779, + -10.461 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 60673, + 60749, + 0 + ] + }, + "from": [ + 76.5779, + -10.461 + ], + "tag": null, + "to": [ + 76.7584, + -10.83 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 60755, + 60807, + 0 + ] + }, + "from": [ + 76.7584, + -10.83 + ], + "tag": null, + "to": [ + 77.2968, + -10.5922 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 60813, + 60888, + 0 + ] + }, + "from": [ + 77.2968, + -10.5922 + ], + "tag": null, + "to": [ + 77.6872, + -10.4495 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 60894, + 60968, + 0 + ] + }, + "from": [ + 77.6872, + -10.4495 + ], + "tag": null, + "to": [ + 77.7851, + -9.4587 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 60974, + 61048, + 0 + ] + }, + "from": [ + 77.7851, + -9.4587 + ], + "tag": null, + "to": [ + 78.3137, + -10.2511 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 61054, + 61128, + 0 + ] + }, + "from": [ + 78.3137, + -10.2511 + ], + "tag": null, + "to": [ + 78.6927, + -10.1272 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 61134, + 61208, + 0 + ] + }, + "from": [ + 78.6927, + -10.1272 + ], + "tag": null, + "to": [ + 77.7442, + -9.4542 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 61214, + 61289, + 0 + ] + }, + "from": [ + 77.7442, + -9.4542 + ], + "tag": null, + "to": [ + 78.4894, + -9.6674 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 61295, + 61370, + 0 + ] + }, + "from": [ + 78.4894, + -9.6674 + ], + "tag": null, + "to": [ + 78.6767, + -9.827 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 61376, + 61452, + 0 + ] + }, + "from": [ + 78.6767, + -9.827 + ], + "tag": null, + "to": [ + 78.6194, + -10.3707 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 61458, + 61534, + 0 + ] + }, + "from": [ + 78.6194, + -10.3707 + ], + "tag": null, + "to": [ + 78.5236, + -11.124 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 61540, + 61616, + 0 + ] + }, + "from": [ + 78.5236, + -11.124 + ], + "tag": null, + "to": [ + 78.3511, + -11.891 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 61622, + 61674, + 0 + ] + }, + "from": [ + 78.3511, + -11.891 + ], + "tag": null, + "to": [ + 79.2456, + -11.2816 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 61680, + 61755, + 0 + ] + }, + "from": [ + 79.2456, + -11.2816 + ], + "tag": null, + "to": [ + 78.8785, + -11.0696 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 61761, + 61835, + 0 + ] + }, + "from": [ + 78.8785, + -11.0696 + ], + "tag": null, + "to": [ + 78.4078, + -10.5791 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 61841, + 61915, + 0 + ] + }, + "from": [ + 78.4078, + -10.5791 + ], + "tag": null, + "to": [ + 77.5749, + -10.1113 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 61921, + 61997, + 0 + ] + }, + "from": [ + 77.5749, + -10.1113 + ], + "tag": null, + "to": [ + 76.7638, + -10.5295 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 62003, + 62078, + 0 + ] + }, + "from": [ + 76.7638, + -10.5295 + ], + "tag": null, + "to": [ + 76.8019, + -10.2728 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 62084, + 62159, + 0 + ] + }, + "from": [ + 76.8019, + -10.2728 + ], + "tag": null, + "to": [ + 77.0414, + -9.8359 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 62165, + 62240, + 0 + ] + }, + "from": [ + 77.0414, + -9.8359 + ], + "tag": null, + "to": [ + 76.8786, + -9.0295 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 62246, + 62323, + 0 + ] + }, + "from": [ + 76.8786, + -9.0295 + ], + "tag": null, + "to": [ + 76.7889, + -9.1183 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 62329, + 62404, + 0 + ] + }, + "from": [ + 76.7889, + -9.1183 + ], + "tag": null, + "to": [ + 77.7092, + -9.2918 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 62410, + 62487, + 0 + ] + }, + "from": [ + 77.7092, + -9.2918 + ], + "tag": null, + "to": [ + 77.711, + -9.8096 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 62493, + 62567, + 0 + ] + }, + "from": [ + 77.711, + -9.8096 + ], + "tag": null, + "to": [ + 78.3316, + -10.683 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 62573, + 62647, + 0 + ] + }, + "from": [ + 78.3316, + -10.683 + ], + "tag": null, + "to": [ + 77.5539, + -9.9227 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 62653, + 62705, + 0 + ] + }, + "from": [ + 77.5539, + -9.9227 + ], + "tag": null, + "to": [ + 78.0979, + -9.0778 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 62711, + 62788, + 0 + ] + }, + "from": [ + 78.0979, + -9.0778 + ], + "tag": null, + "to": [ + 77.9675, + -9.0657 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 62794, + 62870, + 0 + ] + }, + "from": [ + 77.9675, + -9.0657 + ], + "tag": null, + "to": [ + 77.8019, + -9.2735 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 62876, + 62952, + 0 + ] + }, + "from": [ + 77.8019, + -9.2735 + ], + "tag": null, + "to": [ + 77.7056, + -9.3276 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 62958, + 63009, + 0 + ] + }, + "from": [ + 77.7056, + -9.3276 + ], + "tag": null, + "to": [ + 78.6077, + -8.9317 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 63015, + 63091, + 0 + ] + }, + "from": [ + 78.6077, + -8.9317 + ], + "tag": null, + "to": [ + 78.8877, + -9.1095 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 63097, + 63148, + 0 + ] + }, + "from": [ + 78.8877, + -9.1095 + ], + "tag": null, + "to": [ + 79.4113, + -8.4152 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 63154, + 63229, + 0 + ] + }, + "from": [ + 79.4113, + -8.4152 + ], + "tag": null, + "to": [ + 79.8027, + -9.1992 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 63235, + 63287, + 0 + ] + }, + "from": [ + 79.8027, + -9.1992 + ], + "tag": null, + "to": [ + 80.6441, + -8.6596 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 63293, + 63367, + 0 + ] + }, + "from": [ + 80.6441, + -8.6596 + ], + "tag": null, + "to": [ + 81.2579, + -8.4384 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 63373, + 63425, + 0 + ] + }, + "from": [ + 81.2579, + -8.4384 + ], + "tag": null, + "to": [ + 82.1409, + -7.7388 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 63431, + 63507, + 0 + ] + }, + "from": [ + 82.1409, + -7.7388 + ], + "tag": null, + "to": [ + 81.728, + -8.154 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 63513, + 63587, + 0 + ] + }, + "from": [ + 81.728, + -8.154 + ], + "tag": null, + "to": [ + 82.245, + -9.0626 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 63593, + 63668, + 0 + ] + }, + "from": [ + 82.245, + -9.0626 + ], + "tag": null, + "to": [ + 81.5733, + -10.0231 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 63674, + 63751, + 0 + ] + }, + "from": [ + 81.5733, + -10.0231 + ], + "tag": null, + "to": [ + 81.5836, + -10.3966 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 63757, + 63833, + 0 + ] + }, + "from": [ + 81.5836, + -10.3966 + ], + "tag": null, + "to": [ + 81.6872, + -10.8195 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 63839, + 63914, + 0 + ] + }, + "from": [ + 81.6872, + -10.8195 + ], + "tag": null, + "to": [ + 82.1392, + -10.9318 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 63920, + 63995, + 0 + ] + }, + "from": [ + 82.1392, + -10.9318 + ], + "tag": null, + "to": [ + 81.2571, + -11.6474 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 64001, + 64053, + 0 + ] + }, + "from": [ + 81.2571, + -11.6474 + ], + "tag": null, + "to": [ + 82.1766, + -11.3782 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 64059, + 64133, + 0 + ] + }, + "from": [ + 82.1766, + -11.3782 + ], + "tag": null, + "to": [ + 82.8865, + -11.2611 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 64139, + 64214, + 0 + ] + }, + "from": [ + 82.8865, + -11.2611 + ], + "tag": null, + "to": [ + 82.5078, + -10.5504 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 64220, + 64297, + 0 + ] + }, + "from": [ + 82.5078, + -10.5504 + ], + "tag": null, + "to": [ + 82.2105, + -10.6169 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 64303, + 64378, + 0 + ] + }, + "from": [ + 82.2105, + -10.6169 + ], + "tag": null, + "to": [ + 82.4401, + -11.3771 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 64384, + 64459, + 0 + ] + }, + "from": [ + 82.4401, + -11.3771 + ], + "tag": null, + "to": [ + 81.8045, + -11.1825 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 64465, + 64517, + 0 + ] + }, + "from": [ + 81.8045, + -11.1825 + ], + "tag": null, + "to": [ + 82.3766, + -10.8937 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 64523, + 64599, + 0 + ] + }, + "from": [ + 82.3766, + -10.8937 + ], + "tag": null, + "to": [ + 81.4186, + -10.9161 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 64605, + 64679, + 0 + ] + }, + "from": [ + 81.4186, + -10.9161 + ], + "tag": null, + "to": [ + 81.7485, + -11.7515 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 64685, + 64759, + 0 + ] + }, + "from": [ + 81.7485, + -11.7515 + ], + "tag": null, + "to": [ + 82.492, + -12.5434 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 64765, + 64817, + 0 + ] + }, + "from": [ + 82.492, + -12.5434 + ], + "tag": null, + "to": [ + 83.4855, + -11.6392 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 64823, + 64897, + 0 + ] + }, + "from": [ + 83.4855, + -11.6392 + ], + "tag": null, + "to": [ + 82.982, + -11.1241 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 64903, + 64955, + 0 + ] + }, + "from": [ + 82.982, + -11.1241 + ], + "tag": null, + "to": [ + 83.5346, + -10.3628 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 64961, + 65035, + 0 + ] + }, + "from": [ + 83.5346, + -10.3628 + ], + "tag": null, + "to": [ + 84.3939, + -10.2787 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 65041, + 65115, + 0 + ] + }, + "from": [ + 84.3939, + -10.2787 + ], + "tag": null, + "to": [ + 83.5758, + -11.1822 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 65121, + 65196, + 0 + ] + }, + "from": [ + 83.5758, + -11.1822 + ], + "tag": null, + "to": [ + 83.8924, + -11.4241 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 65202, + 65279, + 0 + ] + }, + "from": [ + 83.8924, + -11.4241 + ], + "tag": null, + "to": [ + 83.4485, + -11.6832 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 65285, + 65361, + 0 + ] + }, + "from": [ + 83.4485, + -11.6832 + ], + "tag": null, + "to": [ + 82.788, + -12.0868 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 65367, + 65442, + 0 + ] + }, + "from": [ + 82.788, + -12.0868 + ], + "tag": null, + "to": [ + 82.0709, + -11.8523 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 65448, + 65524, + 0 + ] + }, + "from": [ + 82.0709, + -11.8523 + ], + "tag": null, + "to": [ + 81.8141, + -12.3026 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 65530, + 65604, + 0 + ] + }, + "from": [ + 81.8141, + -12.3026 + ], + "tag": null, + "to": [ + 82.4893, + -13.2735 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 65610, + 65684, + 0 + ] + }, + "from": [ + 82.4893, + -13.2735 + ], + "tag": null, + "to": [ + 81.9203, + -12.6816 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 65690, + 65764, + 0 + ] + }, + "from": [ + 81.9203, + -12.6816 + ], + "tag": null, + "to": [ + 81.0875, + -12.2139 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 65770, + 65846, + 0 + ] + }, + "from": [ + 81.0875, + -12.2139 + ], + "tag": null, + "to": [ + 80.2763, + -12.632 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 65852, + 65927, + 0 + ] + }, + "from": [ + 80.2763, + -12.632 + ], + "tag": null, + "to": [ + 80.3144, + -12.3754 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 65933, + 66008, + 0 + ] + }, + "from": [ + 80.3144, + -12.3754 + ], + "tag": null, + "to": [ + 80.5539, + -11.9384 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 66014, + 66089, + 0 + ] + }, + "from": [ + 80.5539, + -11.9384 + ], + "tag": null, + "to": [ + 80.3911, + -11.132 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 66095, + 66172, + 0 + ] + }, + "from": [ + 80.3911, + -11.132 + ], + "tag": null, + "to": [ + 80.3014, + -11.2209 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 66178, + 66253, + 0 + ] + }, + "from": [ + 80.3014, + -11.2209 + ], + "tag": null, + "to": [ + 81.2217, + -11.3943 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 66259, + 66336, + 0 + ] + }, + "from": [ + 81.2217, + -11.3943 + ], + "tag": null, + "to": [ + 81.2235, + -11.9121 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 66342, + 66416, + 0 + ] + }, + "from": [ + 81.2235, + -11.9121 + ], + "tag": null, + "to": [ + 81.8441, + -12.7855 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 66422, + 66496, + 0 + ] + }, + "from": [ + 81.8441, + -12.7855 + ], + "tag": null, + "to": [ + 81.0665, + -12.0252 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 66502, + 66554, + 0 + ] + }, + "from": [ + 81.0665, + -12.0252 + ], + "tag": null, + "to": [ + 81.6104, + -11.1803 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 66560, + 66637, + 0 + ] + }, + "from": [ + 81.6104, + -11.1803 + ], + "tag": null, + "to": [ + 81.48, + -11.1682 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 66643, + 66719, + 0 + ] + }, + "from": [ + 81.48, + -11.1682 + ], + "tag": null, + "to": [ + 81.3144, + -11.376 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 66725, + 66801, + 0 + ] + }, + "from": [ + 81.3144, + -11.376 + ], + "tag": null, + "to": [ + 81.2181, + -11.4302 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 66807, + 66858, + 0 + ] + }, + "from": [ + 81.2181, + -11.4302 + ], + "tag": null, + "to": [ + 82.1202, + -11.0343 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 66864, + 66940, + 0 + ] + }, + "from": [ + 82.1202, + -11.0343 + ], + "tag": null, + "to": [ + 82.4002, + -11.212 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 66946, + 66997, + 0 + ] + }, + "from": [ + 82.4002, + -11.212 + ], + "tag": null, + "to": [ + 82.9238, + -10.5177 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 67003, + 67078, + 0 + ] + }, + "from": [ + 82.9238, + -10.5177 + ], + "tag": null, + "to": [ + 83.3152, + -11.3017 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 67084, + 67136, + 0 + ] + }, + "from": [ + 83.3152, + -11.3017 + ], + "tag": null, + "to": [ + 84.1566, + -10.7621 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 67142, + 67216, + 0 + ] + }, + "from": [ + 84.1566, + -10.7621 + ], + "tag": null, + "to": [ + 84.7704, + -10.541 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 67222, + 67274, + 0 + ] + }, + "from": [ + 84.7704, + -10.541 + ], + "tag": null, + "to": [ + 85.6534, + -9.8413 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 67280, + 67355, + 0 + ] + }, + "from": [ + 85.6534, + -9.8413 + ], + "tag": null, + "to": [ + 85.2864, + -9.6293 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 67361, + 67435, + 0 + ] + }, + "from": [ + 85.2864, + -9.6293 + ], + "tag": null, + "to": [ + 84.8157, + -9.1387 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 67441, + 67515, + 0 + ] + }, + "from": [ + 84.8157, + -9.1387 + ], + "tag": null, + "to": [ + 83.9828, + -8.671 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 67521, + 67597, + 0 + ] + }, + "from": [ + 83.9828, + -8.671 + ], + "tag": null, + "to": [ + 83.1717, + -9.0891 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 67603, + 67678, + 0 + ] + }, + "from": [ + 83.1717, + -9.0891 + ], + "tag": null, + "to": [ + 83.2098, + -8.8325 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 67684, + 67759, + 0 + ] + }, + "from": [ + 83.2098, + -8.8325 + ], + "tag": null, + "to": [ + 83.4493, + -8.3956 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 67765, + 67840, + 0 + ] + }, + "from": [ + 83.4493, + -8.3956 + ], + "tag": null, + "to": [ + 83.2865, + -7.5891 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 67846, + 67923, + 0 + ] + }, + "from": [ + 83.2865, + -7.5891 + ], + "tag": null, + "to": [ + 83.1967, + -7.678 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 67929, + 68004, + 0 + ] + }, + "from": [ + 83.1967, + -7.678 + ], + "tag": null, + "to": [ + 84.1171, + -7.8514 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 68010, + 68087, + 0 + ] + }, + "from": [ + 84.1171, + -7.8514 + ], + "tag": null, + "to": [ + 84.1188, + -8.3693 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 68093, + 68167, + 0 + ] + }, + "from": [ + 84.1188, + -8.3693 + ], + "tag": null, + "to": [ + 84.7395, + -9.2426 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 68173, + 68247, + 0 + ] + }, + "from": [ + 84.7395, + -9.2426 + ], + "tag": null, + "to": [ + 83.9618, + -8.4823 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 68253, + 68305, + 0 + ] + }, + "from": [ + 83.9618, + -8.4823 + ], + "tag": null, + "to": [ + 84.5058, + -7.6374 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 68311, + 68388, + 0 + ] + }, + "from": [ + 84.5058, + -7.6374 + ], + "tag": null, + "to": [ + 84.3754, + -7.6254 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 68394, + 68470, + 0 + ] + }, + "from": [ + 84.3754, + -7.6254 + ], + "tag": null, + "to": [ + 84.2098, + -7.8331 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 68476, + 68552, + 0 + ] + }, + "from": [ + 84.2098, + -7.8331 + ], + "tag": null, + "to": [ + 84.1135, + -7.8873 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 68558, + 68609, + 0 + ] + }, + "from": [ + 84.1135, + -7.8873 + ], + "tag": null, + "to": [ + 85.0156, + -7.4914 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 68615, + 68691, + 0 + ] + }, + "from": [ + 85.0156, + -7.4914 + ], + "tag": null, + "to": [ + 85.2956, + -7.6692 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 68697, + 68748, + 0 + ] + }, + "from": [ + 85.2956, + -7.6692 + ], + "tag": null, + "to": [ + 85.8192, + -6.9749 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 68754, + 68829, + 0 + ] + }, + "from": [ + 85.8192, + -6.9749 + ], + "tag": null, + "to": [ + 86.2106, + -7.7588 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 68835, + 68887, + 0 + ] + }, + "from": [ + 86.2106, + -7.7588 + ], + "tag": null, + "to": [ + 87.052, + -7.2193 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 68893, + 68967, + 0 + ] + }, + "from": [ + 87.052, + -7.2193 + ], + "tag": null, + "to": [ + 87.6657, + -6.9981 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 68973, + 69025, + 0 + ] + }, + "from": [ + 87.6657, + -6.9981 + ], + "tag": null, + "to": [ + 88.5488, + -6.2984 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 69031, + 69107, + 0 + ] + }, + "from": [ + 88.5488, + -6.2984 + ], + "tag": null, + "to": [ + 88.1359, + -6.7137 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 69113, + 69187, + 0 + ] + }, + "from": [ + 88.1359, + -6.7137 + ], + "tag": null, + "to": [ + 88.6528, + -7.6222 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 69193, + 69268, + 0 + ] + }, + "from": [ + 88.6528, + -7.6222 + ], + "tag": null, + "to": [ + 87.9812, + -8.5828 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 69274, + 69351, + 0 + ] + }, + "from": [ + 87.9812, + -8.5828 + ], + "tag": null, + "to": [ + 87.9915, + -8.9562 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 69357, + 69433, + 0 + ] + }, + "from": [ + 87.9915, + -8.9562 + ], + "tag": null, + "to": [ + 88.0951, + -9.3792 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 69439, + 69514, + 0 + ] + }, + "from": [ + 88.0951, + -9.3792 + ], + "tag": null, + "to": [ + 88.5471, + -9.4915 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 69520, + 69595, + 0 + ] + }, + "from": [ + 88.5471, + -9.4915 + ], + "tag": null, + "to": [ + 87.665, + -10.207 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 69601, + 69653, + 0 + ] + }, + "from": [ + 87.665, + -10.207 + ], + "tag": null, + "to": [ + 88.5845, + -9.9379 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 69659, + 69733, + 0 + ] + }, + "from": [ + 88.5845, + -9.9379 + ], + "tag": null, + "to": [ + 89.2944, + -9.8208 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 69739, + 69814, + 0 + ] + }, + "from": [ + 89.2944, + -9.8208 + ], + "tag": null, + "to": [ + 88.9157, + -9.1101 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 69820, + 69897, + 0 + ] + }, + "from": [ + 88.9157, + -9.1101 + ], + "tag": null, + "to": [ + 88.6184, + -9.1766 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 69903, + 69978, + 0 + ] + }, + "from": [ + 88.6184, + -9.1766 + ], + "tag": null, + "to": [ + 88.848, + -9.9368 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 69984, + 70059, + 0 + ] + }, + "from": [ + 88.848, + -9.9368 + ], + "tag": null, + "to": [ + 88.2124, + -9.7422 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 70065, + 70117, + 0 + ] + }, + "from": [ + 88.2124, + -9.7422 + ], + "tag": null, + "to": [ + 88.7845, + -9.4533 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 70123, + 70199, + 0 + ] + }, + "from": [ + 88.7845, + -9.4533 + ], + "tag": null, + "to": [ + 87.8265, + -9.4758 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 70205, + 70279, + 0 + ] + }, + "from": [ + 87.8265, + -9.4758 + ], + "tag": null, + "to": [ + 88.1564, + -10.3111 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 70285, + 70359, + 0 + ] + }, + "from": [ + 88.1564, + -10.3111 + ], + "tag": null, + "to": [ + 88.8999, + -11.1031 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 70365, + 70417, + 0 + ] + }, + "from": [ + 88.8999, + -11.1031 + ], + "tag": null, + "to": [ + 89.8934, + -10.1988 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 70423, + 70497, + 0 + ] + }, + "from": [ + 89.8934, + -10.1988 + ], + "tag": null, + "to": [ + 89.3898, + -9.6837 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 70503, + 70555, + 0 + ] + }, + "from": [ + 89.3898, + -9.6837 + ], + "tag": null, + "to": [ + 89.9425, + -8.9225 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 70561, + 70635, + 0 + ] + }, + "from": [ + 89.9425, + -8.9225 + ], + "tag": null, + "to": [ + 90.8018, + -8.8383 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 70641, + 70715, + 0 + ] + }, + "from": [ + 90.8018, + -8.8383 + ], + "tag": null, + "to": [ + 89.9837, + -9.7419 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 70721, + 70796, + 0 + ] + }, + "from": [ + 89.9837, + -9.7419 + ], + "tag": null, + "to": [ + 90.3003, + -9.9838 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 70802, + 70879, + 0 + ] + }, + "from": [ + 90.3003, + -9.9838 + ], + "tag": null, + "to": [ + 89.8564, + -10.2429 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 70885, + 70961, + 0 + ] + }, + "from": [ + 89.8564, + -10.2429 + ], + "tag": null, + "to": [ + 89.1958, + -10.6465 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 70967, + 71042, + 0 + ] + }, + "from": [ + 89.1958, + -10.6465 + ], + "tag": null, + "to": [ + 88.4788, + -10.4119 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 71048, + 71124, + 0 + ] + }, + "from": [ + 88.4788, + -10.4119 + ], + "tag": null, + "to": [ + 88.222, + -10.8622 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 71130, + 71204, + 0 + ] + }, + "from": [ + 88.222, + -10.8622 + ], + "tag": null, + "to": [ + 88.8972, + -11.8332 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 71210, + 71284, + 0 + ] + }, + "from": [ + 88.8972, + -11.8332 + ], + "tag": null, + "to": [ + 88.3282, + -11.2413 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 71290, + 71364, + 0 + ] + }, + "from": [ + 88.3282, + -11.2413 + ], + "tag": null, + "to": [ + 87.4954, + -10.7735 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 71370, + 71446, + 0 + ] + }, + "from": [ + 87.4954, + -10.7735 + ], + "tag": null, + "to": [ + 86.6842, + -11.1917 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 71452, + 71527, + 0 + ] + }, + "from": [ + 86.6842, + -11.1917 + ], + "tag": null, + "to": [ + 86.7223, + -10.935 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 71533, + 71608, + 0 + ] + }, + "from": [ + 86.7223, + -10.935 + ], + "tag": null, + "to": [ + 86.9618, + -10.4981 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 71614, + 71689, + 0 + ] + }, + "from": [ + 86.9618, + -10.4981 + ], + "tag": null, + "to": [ + 86.799, + -9.6916 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 71695, + 71772, + 0 + ] + }, + "from": [ + 86.799, + -9.6916 + ], + "tag": null, + "to": [ + 86.7093, + -9.7805 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 71778, + 71853, + 0 + ] + }, + "from": [ + 86.7093, + -9.7805 + ], + "tag": null, + "to": [ + 87.6296, + -9.9539 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 71859, + 71936, + 0 + ] + }, + "from": [ + 87.6296, + -9.9539 + ], + "tag": null, + "to": [ + 87.6314, + -10.4718 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 71942, + 72016, + 0 + ] + }, + "from": [ + 87.6314, + -10.4718 + ], + "tag": null, + "to": [ + 88.252, + -11.3451 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72022, + 72096, + 0 + ] + }, + "from": [ + 88.252, + -11.3451 + ], + "tag": null, + "to": [ + 87.4744, + -10.5849 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72102, + 72154, + 0 + ] + }, + "from": [ + 87.4744, + -10.5849 + ], + "tag": null, + "to": [ + 88.0183, + -9.7399 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72160, + 72237, + 0 + ] + }, + "from": [ + 88.0183, + -9.7399 + ], + "tag": null, + "to": [ + 87.8879, + -9.7279 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72243, + 72319, + 0 + ] + }, + "from": [ + 87.8879, + -9.7279 + ], + "tag": null, + "to": [ + 87.7223, + -9.9356 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72325, + 72401, + 0 + ] + }, + "from": [ + 87.7223, + -9.9356 + ], + "tag": null, + "to": [ + 87.626, + -9.9898 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72407, + 72458, + 0 + ] + }, + "from": [ + 87.626, + -9.9898 + ], + "tag": null, + "to": [ + 88.5281, + -9.5939 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72464, + 72540, + 0 + ] + }, + "from": [ + 88.5281, + -9.5939 + ], + "tag": null, + "to": [ + 88.8081, + -9.7717 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72546, + 72597, + 0 + ] + }, + "from": [ + 88.8081, + -9.7717 + ], + "tag": null, + "to": [ + 89.3317, + -9.0774 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72603, + 72678, + 0 + ] + }, + "from": [ + 89.3317, + -9.0774 + ], + "tag": null, + "to": [ + 89.7231, + -9.8614 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72684, + 72736, + 0 + ] + }, + "from": [ + 89.7231, + -9.8614 + ], + "tag": null, + "to": [ + 90.5645, + -9.3218 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72742, + 72816, + 0 + ] + }, + "from": [ + 90.5645, + -9.3218 + ], + "tag": null, + "to": [ + 91.1783, + -9.1006 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72822, + 72898, + 0 + ] + }, + "from": [ + 91.1783, + -9.1006 + ], + "tag": null, + "to": [ + 91.0825, + -9.854 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72904, + 72980, + 0 + ] + }, + "from": [ + 91.0825, + -9.854 + ], + "tag": null, + "to": [ + 90.9099, + -10.6209 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 72986, + 73038, + 0 + ] + }, + "from": [ + 90.9099, + -10.6209 + ], + "tag": null, + "to": [ + 91.8044, + -10.0116 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 73044, + 73120, + 0 + ] + }, + "from": [ + 91.8044, + -10.0116 + ], + "tag": null, + "to": [ + 91.3915, + -10.4268 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 73126, + 73200, + 0 + ] + }, + "from": [ + 91.3915, + -10.4268 + ], + "tag": null, + "to": [ + 91.9084, + -11.3354 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 73206, + 73280, + 0 + ] + }, + "from": [ + 91.9084, + -11.3354 + ], + "tag": null, + "to": [ + 92.5836, + -12.3063 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 73286, + 73360, + 0 + ] + }, + "from": [ + 92.5836, + -12.3063 + ], + "tag": null, + "to": [ + 92.0147, + -11.7144 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 73366, + 73440, + 0 + ] + }, + "from": [ + 92.0147, + -11.7144 + ], + "tag": null, + "to": [ + 92.9611, + -11.9829 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 73446, + 73498, + 0 + ] + }, + "from": [ + 92.9611, + -11.9829 + ], + "tag": null, + "to": [ + 93.4853, + -11.0818 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 73504, + 73580, + 0 + ] + }, + "from": [ + 93.4853, + -11.0818 + ], + "tag": null, + "to": [ + 93.3427, + -11.6012 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 73586, + 73661, + 0 + ] + }, + "from": [ + 93.3427, + -11.6012 + ], + "tag": null, + "to": [ + 92.914, + -12.0236 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 73667, + 73743, + 0 + ] + }, + "from": [ + 92.914, + -12.0236 + ], + "tag": null, + "to": [ + 92.8209, + -12.9299 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 73749, + 73823, + 0 + ] + }, + "from": [ + 92.8209, + -12.9299 + ], + "tag": null, + "to": [ + 92.5441, + -12.2483 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 73829, + 73903, + 0 + ] + }, + "from": [ + 92.5441, + -12.2483 + ], + "tag": null, + "to": [ + 93.5238, + -12.3305 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 73909, + 73983, + 0 + ] + }, + "from": [ + 93.5238, + -12.3305 + ], + "tag": null, + "to": [ + 92.6571, + -12.6315 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 73989, + 74063, + 0 + ] + }, + "from": [ + 92.6571, + -12.6315 + ], + "tag": null, + "to": [ + 93.1945, + -12.6113 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 74069, + 74143, + 0 + ] + }, + "from": [ + 93.1945, + -12.6113 + ], + "tag": null, + "to": [ + 94.1278, + -13.2341 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 74149, + 74225, + 0 + ] + }, + "from": [ + 94.1278, + -13.2341 + ], + "tag": null, + "to": [ + 94.3083, + -13.603 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 74231, + 74283, + 0 + ] + }, + "from": [ + 94.3083, + -13.603 + ], + "tag": null, + "to": [ + 94.8467, + -13.3653 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 74289, + 74364, + 0 + ] + }, + "from": [ + 94.8467, + -13.3653 + ], + "tag": null, + "to": [ + 95.2372, + -13.2225 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 74370, + 74444, + 0 + ] + }, + "from": [ + 95.2372, + -13.2225 + ], + "tag": null, + "to": [ + 95.335, + -12.2318 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 74450, + 74524, + 0 + ] + }, + "from": [ + 95.335, + -12.2318 + ], + "tag": null, + "to": [ + 95.8637, + -13.0242 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 74530, + 74604, + 0 + ] + }, + "from": [ + 95.8637, + -13.0242 + ], + "tag": null, + "to": [ + 96.2427, + -12.9003 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 74610, + 74684, + 0 + ] + }, + "from": [ + 96.2427, + -12.9003 + ], + "tag": null, + "to": [ + 95.2942, + -12.2273 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 74690, + 74765, + 0 + ] + }, + "from": [ + 95.2942, + -12.2273 + ], + "tag": null, + "to": [ + 96.0393, + -12.4405 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 74771, + 74846, + 0 + ] + }, + "from": [ + 96.0393, + -12.4405 + ], + "tag": null, + "to": [ + 96.2267, + -12.6001 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 74852, + 74928, + 0 + ] + }, + "from": [ + 96.2267, + -12.6001 + ], + "tag": null, + "to": [ + 96.1694, + -13.1437 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 74934, + 75010, + 0 + ] + }, + "from": [ + 96.1694, + -13.1437 + ], + "tag": null, + "to": [ + 96.0735, + -13.8971 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 75016, + 75092, + 0 + ] + }, + "from": [ + 96.0735, + -13.8971 + ], + "tag": null, + "to": [ + 95.901, + -14.664 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 75098, + 75150, + 0 + ] + }, + "from": [ + 95.901, + -14.664 + ], + "tag": null, + "to": [ + 96.7955, + -14.0547 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 75156, + 75230, + 0 + ] + }, + "from": [ + 96.7955, + -14.0547 + ], + "tag": null, + "to": [ + 96.1716, + -13.6493 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 75236, + 75311, + 0 + ] + }, + "from": [ + 96.1716, + -13.6493 + ], + "tag": null, + "to": [ + 96.3096, + -14.128 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 75317, + 75391, + 0 + ] + }, + "from": [ + 96.3096, + -14.128 + ], + "tag": null, + "to": [ + 95.3579, + -13.266 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 75397, + 75449, + 0 + ] + }, + "from": [ + 95.3579, + -13.266 + ], + "tag": null, + "to": [ + 96.2978, + -12.6334 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 75455, + 75531, + 0 + ] + }, + "from": [ + 96.2978, + -12.6334 + ], + "tag": null, + "to": [ + 95.4346, + -12.6173 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 75537, + 75612, + 0 + ] + }, + "from": [ + 95.4346, + -12.6173 + ], + "tag": null, + "to": [ + 95.6262, + -13.1089 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 75618, + 75694, + 0 + ] + }, + "from": [ + 95.6262, + -13.1089 + ], + "tag": null, + "to": [ + 94.7618, + -13.2233 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 75700, + 75777, + 0 + ] + }, + "from": [ + 94.7618, + -13.2233 + ], + "tag": null, + "to": [ + 94.7327, + -13.7447 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 75783, + 75857, + 0 + ] + }, + "from": [ + 94.7327, + -13.7447 + ], + "tag": null, + "to": [ + 93.8614, + -12.958 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 75863, + 75915, + 0 + ] + }, + "from": [ + 93.8614, + -12.958 + ], + "tag": null, + "to": [ + 94.7458, + -13.1406 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 75921, + 75995, + 0 + ] + }, + "from": [ + 94.7458, + -13.1406 + ], + "tag": null, + "to": [ + 94.0479, + -13.0965 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 76001, + 76079, + 0 + ] + }, + "from": [ + 94.0479, + -13.0965 + ], + "tag": null, + "to": [ + 93.5674, + -13.1251 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 76085, + 76161, + 0 + ] + }, + "from": [ + 93.5674, + -13.1251 + ], + "tag": null, + "to": [ + 93.9802, + -13.5744 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 76167, + 76218, + 0 + ] + }, + "from": [ + 93.9802, + -13.5744 + ], + "tag": null, + "to": [ + 94.7713, + -12.681 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 76224, + 76298, + 0 + ] + }, + "from": [ + 94.7713, + -12.681 + ], + "tag": null, + "to": [ + 95.4221, + -13.37 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 76304, + 76379, + 0 + ] + }, + "from": [ + 95.4221, + -13.37 + ], + "tag": null, + "to": [ + 95.527, + -13.9168 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 76385, + 76460, + 0 + ] + }, + "from": [ + 95.527, + -13.9168 + ], + "tag": null, + "to": [ + 94.9509, + -14.1807 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 76466, + 76540, + 0 + ] + }, + "from": [ + 94.9509, + -14.1807 + ], + "tag": null, + "to": [ + 95.3492, + -13.3771 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 76546, + 76598, + 0 + ] + }, + "from": [ + 95.3492, + -13.3771 + ], + "tag": null, + "to": [ + 94.6753, + -14.2955 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 76604, + 76679, + 0 + ] + }, + "from": [ + 94.6753, + -14.2955 + ], + "tag": null, + "to": [ + 93.8154, + -15.2455 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 76685, + 76759, + 0 + ] + }, + "from": [ + 93.8154, + -15.2455 + ], + "tag": null, + "to": [ + 94.4439, + -15.7641 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 76765, + 76839, + 0 + ] + }, + "from": [ + 94.4439, + -15.7641 + ], + "tag": null, + "to": [ + 94.7662, + -15.5179 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 76845, + 76920, + 0 + ] + }, + "from": [ + 94.7662, + -15.5179 + ], + "tag": null, + "to": [ + 94.9637, + -16.2708 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 76926, + 77002, + 0 + ] + }, + "from": [ + 94.9637, + -16.2708 + ], + "tag": null, + "to": [ + 94.5319, + -16.0814 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 77008, + 77082, + 0 + ] + }, + "from": [ + 94.5319, + -16.0814 + ], + "tag": null, + "to": [ + 95.4034, + -16.803 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 77088, + 77096, + 0 + ] + }, + "from": [ + 95.4034, + -16.803 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 35, + 64, + 0 ] } - } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 35, + 64, + 0 + ] + } + ] }, - "snapshots": [], - "parent": null + "height": 5.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 35, + 64, + 0 + ] + } + ] } - ], - "currentEnv": [ - 0, - 0 - ], - "callStack": [] + } } diff --git a/src/wasm-lib/kcl/tests/neg_xz_plane/program_memory.snap b/src/wasm-lib/kcl/tests/neg_xz_plane/program_memory.snap index e4fda29f8..bca1e3b3e 100644 --- a/src/wasm-lib/kcl/tests/neg_xz_plane/program_memory.snap +++ b/src/wasm-lib/kcl/tests/neg_xz_plane/program_memory.snap @@ -1,227 +1,213 @@ --- source: kcl/src/simulation_tests.rs -description: Program memory after executing neg_xz_plane.kcl -snapshot_kind: text +description: Variables in memory after executing neg_xz_plane.kcl --- { - "environments": [ - { - "bindings": { - "HALF_TURN": { - "type": "Number", - "value": 180.0, - "__meta": [] + "HALF_TURN": { + "type": "Number", + "value": 180.0, + "__meta": [] + }, + "QUARTER_TURN": { + "type": "Number", + "value": 90.0, + "__meta": [] + }, + "THREE_QUARTER_TURN": { + "type": "Number", + "value": 270.0, + "__meta": [] + }, + "ZERO": { + "type": "Number", + "value": 0.0, + "__meta": [] + }, + "part001": { + "type": "Solid", + "value": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 67, + 97, + 0 + ], + "tag": null, + "type": "extrudePlane" }, - "QUARTER_TURN": { - "type": "Number", - "value": 90.0, - "__meta": [] + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 103, + 131, + 0 + ], + "tag": null, + "type": "extrudePlane" }, - "THREE_QUARTER_TURN": { - "type": "Number", - "value": 270.0, - "__meta": [] - }, - "ZERO": { - "type": "Number", - "value": 0.0, - "__meta": [] - }, - "part001": { - "type": "Solid", - "value": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 67, - 97, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 103, - 131, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 137, - 145, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 137, + 145, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 67, - 97, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 100.0, - 100.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 103, - 131, - 0 - ] - }, - "from": [ - 100.0, - 100.0 - ], - "tag": null, - "to": [ - 100.0, - 0.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 137, - 145, - 0 - ] - }, - "from": [ - 100.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": -1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 36, - 61, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 36, - 61, - 0 - ] - } + "sourceRange": [ + 67, + 97, + 0 ] }, - "height": 12.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 100.0, + 100.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 103, + 131, + 0 + ] }, - "__meta": [ - { - "sourceRange": [ - 36, - 61, - 0 - ] - } + "from": [ + 100.0, + 100.0 + ], + "tag": null, + "to": [ + 100.0, + 0.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 137, + 145, + 0 + ] + }, + "from": [ + 100.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 36, + 61, + 0 ] } - } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 36, + 61, + 0 + ] + } + ] }, - "snapshots": [], - "parent": null + "height": 12.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 36, + 61, + 0 + ] + } + ] } - ], - "currentEnv": [ - 0, - 0 - ], - "callStack": [] + } } diff --git a/src/wasm-lib/kcl/tests/parametric/program_memory.snap b/src/wasm-lib/kcl/tests/parametric/program_memory.snap index ff539fe79..acbccbe32 100644 --- a/src/wasm-lib/kcl/tests/parametric/program_memory.snap +++ b/src/wasm-lib/kcl/tests/parametric/program_memory.snap @@ -1,424 +1,410 @@ --- source: kcl/src/simulation_tests.rs -description: Program memory after executing parametric.kcl -snapshot_kind: text +description: Variables in memory after executing parametric.kcl --- { - "environments": [ - { - "bindings": { - "FOS": { - "type": "Number", - "value": 2.0, - "__meta": [ - { + "FOS": { + "type": "Number", + "value": 2.0, + "__meta": [ + { + "sourceRange": [ + 105, + 106, + 0 + ] + } + ] + }, + "HALF_TURN": { + "type": "Number", + "value": 180.0, + "__meta": [] + }, + "QUARTER_TURN": { + "type": "Number", + "value": 90.0, + "__meta": [] + }, + "THREE_QUARTER_TURN": { + "type": "Number", + "value": 270.0, + "__meta": [] + }, + "ZERO": { + "type": "Number", + "value": 0.0, + "__meta": [] + }, + "bracket": { + "type": "Solid", + "value": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 284, + 305, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 311, + 332, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 338, + 365, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 371, + 405, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 411, + 445, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 451, + 459, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", "sourceRange": [ - 105, - 106, + 284, + 305, 0 ] - } - ] - }, - "HALF_TURN": { - "type": "Number", - "value": 180.0, - "__meta": [] - }, - "QUARTER_TURN": { - "type": "Number", - "value": 90.0, - "__meta": [] - }, - "THREE_QUARTER_TURN": { - "type": "Number", - "value": 270.0, - "__meta": [] - }, - "ZERO": { - "type": "Number", - "value": 0.0, - "__meta": [] - }, - "bracket": { - "type": "Solid", - "value": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 284, - 305, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 311, - 332, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 338, - 365, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 371, - 405, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 411, - 445, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 451, - 459, - 0 - ], - "tag": null, - "type": "extrudePlane" - } + }, + "from": [ + 0.0, + 0.0 ], - "sketch": { - "type": "Sketch", + "tag": null, + "to": [ + 0.0, + 5.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 284, - 305, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 5.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 311, - 332, - 0 - ] - }, - "from": [ - 0.0, - 5.0 - ], - "tag": null, - "to": [ - 8.0, - 5.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 338, - 365, - 0 - ] - }, - "from": [ - 8.0, - 5.0 - ], - "tag": null, - "to": [ - 8.0, - 4.8148 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 371, - 405, - 0 - ] - }, - "from": [ - 8.0, - 4.8148 - ], - "tag": null, - "to": [ - 0.1852, - 4.8148 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 411, - 445, - 0 - ] - }, - "from": [ - 0.1852, - 4.8148 - ], - "tag": null, - "to": [ - 0.1852, - 0.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 451, - 459, - 0 - ] - }, - "from": [ - 0.1852, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 253, - 278, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 253, - 278, - 0 - ] - } + "sourceRange": [ + 311, + 332, + 0 ] }, - "height": 9.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" + "from": [ + 0.0, + 5.0 + ], + "tag": null, + "to": [ + 8.0, + 5.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 338, + 365, + 0 + ] }, - "__meta": [ - { - "sourceRange": [ - 253, - 278, - 0 - ] - } + "from": [ + 8.0, + 5.0 + ], + "tag": null, + "to": [ + 8.0, + 4.8148 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 371, + 405, + 0 + ] + }, + "from": [ + 8.0, + 4.8148 + ], + "tag": null, + "to": [ + 0.1852, + 4.8148 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 411, + 445, + 0 + ] + }, + "from": [ + 0.1852, + 4.8148 + ], + "tag": null, + "to": [ + 0.1852, + 0.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 451, + 459, + 0 + ] + }, + "from": [ + 0.1852, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 253, + 278, + 0 ] } }, - "distance": { - "type": "Number", - "value": 6.0, - "__meta": [ - { - "sourceRange": [ - 87, - 88, - 0 - ] - } - ] + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" }, - "leg1": { - "type": "Number", - "value": 5.0, - "__meta": [ - { - "sourceRange": [ - 115, - 116, - 0 - ] - } - ] - }, - "leg2": { - "type": "Number", - "value": 8.0, - "__meta": [ - { - "sourceRange": [ - 134, - 135, - 0 - ] - } - ] - }, - "p": { - "type": "Number", - "value": 150.0, - "__meta": [ - { - "sourceRange": [ - 48, - 51, - 0 - ] - } - ] - }, - "sigmaAllow": { - "type": "Number", - "value": 35000.0, - "__meta": [ - { - "sourceRange": [ - 13, - 18, - 0 - ] - } - ] - }, - "thickness": { - "type": "Number", - "value": 0.1851640199545103, - "__meta": [ - { - "sourceRange": [ - 158, - 207, - 0 - ] - } - ] - }, - "width": { - "type": "Number", - "value": 9.0, - "__meta": [ - { - "sourceRange": [ - 34, - 35, - 0 - ] - } + "__meta": [ + { + "sourceRange": [ + 253, + 278, + 0 + ] + } + ] + }, + "height": 9.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 253, + 278, + 0 ] } - }, - "snapshots": [], - "parent": null + ] } - ], - "currentEnv": [ - 0, - 0 - ], - "callStack": [] + }, + "distance": { + "type": "Number", + "value": 6.0, + "__meta": [ + { + "sourceRange": [ + 87, + 88, + 0 + ] + } + ] + }, + "leg1": { + "type": "Number", + "value": 5.0, + "__meta": [ + { + "sourceRange": [ + 115, + 116, + 0 + ] + } + ] + }, + "leg2": { + "type": "Number", + "value": 8.0, + "__meta": [ + { + "sourceRange": [ + 134, + 135, + 0 + ] + } + ] + }, + "p": { + "type": "Number", + "value": 150.0, + "__meta": [ + { + "sourceRange": [ + 48, + 51, + 0 + ] + } + ] + }, + "sigmaAllow": { + "type": "Number", + "value": 35000.0, + "__meta": [ + { + "sourceRange": [ + 13, + 18, + 0 + ] + } + ] + }, + "thickness": { + "type": "Number", + "value": 0.1851640199545103, + "__meta": [ + { + "sourceRange": [ + 158, + 207, + 0 + ] + } + ] + }, + "width": { + "type": "Number", + "value": 9.0, + "__meta": [ + { + "sourceRange": [ + 34, + 35, + 0 + ] + } + ] + } } diff --git a/src/wasm-lib/kcl/tests/parametric_with_tan_arc/program_memory.snap b/src/wasm-lib/kcl/tests/parametric_with_tan_arc/program_memory.snap index ec7d137ea..d0689dc22 100644 --- a/src/wasm-lib/kcl/tests/parametric_with_tan_arc/program_memory.snap +++ b/src/wasm-lib/kcl/tests/parametric_with_tan_arc/program_memory.snap @@ -1,516 +1,502 @@ --- source: kcl/src/simulation_tests.rs -description: Program memory after executing parametric_with_tan_arc.kcl -snapshot_kind: text +description: Variables in memory after executing parametric_with_tan_arc.kcl --- { - "environments": [ - { - "bindings": { - "FOS": { - "type": "Number", - "value": 2.0, - "__meta": [ - { + "FOS": { + "type": "Number", + "value": 2.0, + "__meta": [ + { + "sourceRange": [ + 107, + 108, + 0 + ] + } + ] + }, + "HALF_TURN": { + "type": "Number", + "value": 180.0, + "__meta": [] + }, + "QUARTER_TURN": { + "type": "Number", + "value": 90.0, + "__meta": [] + }, + "THREE_QUARTER_TURN": { + "type": "Number", + "value": 270.0, + "__meta": [] + }, + "ZERO": { + "type": "Number", + "value": 0.0, + "__meta": [] + }, + "bracket": { + "type": "Solid", + "value": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 266, + 293, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 299, + 350, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 356, + 385, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 391, + 418, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 424, + 452, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 458, + 541, + 0 + ], + "tag": null, + "type": "extrudeArc" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 547, + 575, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 581, + 589, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", "sourceRange": [ - 107, - 108, + 266, + 293, 0 ] - } - ] - }, - "HALF_TURN": { - "type": "Number", - "value": 180.0, - "__meta": [] - }, - "QUARTER_TURN": { - "type": "Number", - "value": 90.0, - "__meta": [] - }, - "THREE_QUARTER_TURN": { - "type": "Number", - "value": 270.0, - "__meta": [] - }, - "ZERO": { - "type": "Number", - "value": 0.0, - "__meta": [] - }, - "bracket": { - "type": "Solid", - "value": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 266, - 293, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 299, - 350, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 356, - 385, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 391, - 418, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 424, - 452, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 458, - 541, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 547, - 575, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 581, - 589, - 0 - ], - "tag": null, - "type": "extrudePlane" - } + }, + "from": [ + 0.0, + 0.0 ], - "sketch": { - "type": "Sketch", + "tag": null, + "to": [ + 0.0, + 8.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 266, - 293, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 8.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 299, - 350, - 0 - ] - }, - "ccw": true, - "center": [ - -0.7236272269866327, - 8.0 - ], - "from": [ - 0.0, - 8.0 - ], - "tag": null, - "to": [ - -0.7236, - 8.7236 - ], - "type": "TangentialArc" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 356, - 385, - 0 - ] - }, - "from": [ - -0.7236, - 8.7236 - ], - "tag": null, - "to": [ - -9.7236, - 8.7236 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 391, - 418, - 0 - ] - }, - "from": [ - -9.7236, - 8.7236 - ], - "tag": null, - "to": [ - -9.7236, - 8.3618 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 424, - 452, - 0 - ] - }, - "from": [ - -9.7236, - 8.3618 - ], - "tag": null, - "to": [ - -0.7236, - 8.3618 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 458, - 541, - 0 - ] - }, - "ccw": false, - "center": [ - -0.7236272269866326, - 8.0 - ], - "from": [ - -0.7236, - 8.3618 - ], - "tag": null, - "to": [ - -0.3618, - 8.0 - ], - "type": "TangentialArc" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 547, - 575, - 0 - ] - }, - "from": [ - -0.3618, - 8.0 - ], - "tag": null, - "to": [ - -0.3618, - 0.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 581, - 589, - 0 - ] - }, - "from": [ - -0.3618, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 239, - 260, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 239, - 260, - 0 - ] - } + "sourceRange": [ + 299, + 350, + 0 ] }, - "height": 11.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" + "ccw": true, + "center": [ + -0.7236272269866327, + 8.0 + ], + "from": [ + 0.0, + 8.0 + ], + "tag": null, + "to": [ + -0.7236, + 8.7236 + ], + "type": "TangentialArc" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 356, + 385, + 0 + ] }, - "__meta": [ - { - "sourceRange": [ - 239, - 260, - 0 - ] - } + "from": [ + -0.7236, + 8.7236 + ], + "tag": null, + "to": [ + -9.7236, + 8.7236 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 391, + 418, + 0 + ] + }, + "from": [ + -9.7236, + 8.7236 + ], + "tag": null, + "to": [ + -9.7236, + 8.3618 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 424, + 452, + 0 + ] + }, + "from": [ + -9.7236, + 8.3618 + ], + "tag": null, + "to": [ + -0.7236, + 8.3618 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 458, + 541, + 0 + ] + }, + "ccw": false, + "center": [ + -0.7236272269866326, + 8.0 + ], + "from": [ + -0.7236, + 8.3618 + ], + "tag": null, + "to": [ + -0.3618, + 8.0 + ], + "type": "TangentialArc" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 547, + 575, + 0 + ] + }, + "from": [ + -0.3618, + 8.0 + ], + "tag": null, + "to": [ + -0.3618, + 0.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 581, + 589, + 0 + ] + }, + "from": [ + -0.3618, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 239, + 260, + 0 ] } }, - "distance": { - "type": "Number", - "value": 12.0, - "__meta": [ - { - "sourceRange": [ - 88, - 90, - 0 - ] - } - ] + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" }, - "filletR": { - "type": "Number", - "value": 0.7236272269866327, - "__meta": [ - { - "sourceRange": [ - 121, - 172, - 0 - ] - }, - { - "sourceRange": [ - 195, - 196, - 0 - ] - } - ] - }, - "p": { - "type": "Number", - "value": 150.0, - "__meta": [ - { - "sourceRange": [ - 49, - 52, - 0 - ] - } - ] - }, - "shelfMountL": { - "type": "Number", - "value": 9.0, - "__meta": [ - { - "sourceRange": [ - 211, - 212, - 0 - ] - } - ] - }, - "sigmaAllow": { - "type": "Number", - "value": 15000.0, - "__meta": [ - { - "sourceRange": [ - 13, - 18, - 0 - ] - } - ] - }, - "thickness": { - "type": "Number", - "value": 0.36181361349331637, - "__meta": [ - { - "sourceRange": [ - 121, - 172, - 0 - ] - } - ] - }, - "wallMountL": { - "type": "Number", - "value": 8.0, - "__meta": [ - { - "sourceRange": [ - 226, - 227, - 0 - ] - } - ] - }, - "width": { - "type": "Number", - "value": 11.0, - "__meta": [ - { - "sourceRange": [ - 34, - 36, - 0 - ] - } + "__meta": [ + { + "sourceRange": [ + 239, + 260, + 0 + ] + } + ] + }, + "height": 11.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 239, + 260, + 0 ] } - }, - "snapshots": [], - "parent": null + ] } - ], - "currentEnv": [ - 0, - 0 - ], - "callStack": [] + }, + "distance": { + "type": "Number", + "value": 12.0, + "__meta": [ + { + "sourceRange": [ + 88, + 90, + 0 + ] + } + ] + }, + "filletR": { + "type": "Number", + "value": 0.7236272269866327, + "__meta": [ + { + "sourceRange": [ + 121, + 172, + 0 + ] + }, + { + "sourceRange": [ + 195, + 196, + 0 + ] + } + ] + }, + "p": { + "type": "Number", + "value": 150.0, + "__meta": [ + { + "sourceRange": [ + 49, + 52, + 0 + ] + } + ] + }, + "shelfMountL": { + "type": "Number", + "value": 9.0, + "__meta": [ + { + "sourceRange": [ + 211, + 212, + 0 + ] + } + ] + }, + "sigmaAllow": { + "type": "Number", + "value": 15000.0, + "__meta": [ + { + "sourceRange": [ + 13, + 18, + 0 + ] + } + ] + }, + "thickness": { + "type": "Number", + "value": 0.36181361349331637, + "__meta": [ + { + "sourceRange": [ + 121, + 172, + 0 + ] + } + ] + }, + "wallMountL": { + "type": "Number", + "value": 8.0, + "__meta": [ + { + "sourceRange": [ + 226, + 227, + 0 + ] + } + ] + }, + "width": { + "type": "Number", + "value": 11.0, + "__meta": [ + { + "sourceRange": [ + 34, + 36, + 0 + ] + } + ] + } } diff --git a/src/wasm-lib/kcl/tests/pentagon_fillet_sugar/program_memory.snap b/src/wasm-lib/kcl/tests/pentagon_fillet_sugar/program_memory.snap index ec7fffbb6..628d81ddf 100644 --- a/src/wasm-lib/kcl/tests/pentagon_fillet_sugar/program_memory.snap +++ b/src/wasm-lib/kcl/tests/pentagon_fillet_sugar/program_memory.snap @@ -1,65 +1,358 @@ --- source: kcl/src/simulation_tests.rs -description: Program memory after executing pentagon_fillet_sugar.kcl +description: Variables in memory after executing pentagon_fillet_sugar.kcl --- { - "environments": [ - { - "bindings": { - "HALF_TURN": { - "type": "Number", - "value": 180.0, - "__meta": [] + "HALF_TURN": { + "type": "Number", + "value": 180.0, + "__meta": [] + }, + "QUARTER_TURN": { + "type": "Number", + "value": 90.0, + "__meta": [] + }, + "THREE_QUARTER_TURN": { + "type": "Number", + "value": 270.0, + "__meta": [] + }, + "ZERO": { + "type": "Number", + "value": 0.0, + "__meta": [] + }, + "a": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "a", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 194, + 249, + 0 + ] }, - "QUARTER_TURN": { - "type": "Number", - "value": 90.0, - "__meta": [] + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 248, + "start": 246, + "type": "TagDeclarator", + "value": "a" }, - "THREE_QUARTER_TURN": { - "type": "Number", - "value": 270.0, - "__meta": [] + "to": [ + 250.00000000000006, + 433.0127018922193 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 194, + 249, + 0 + ], + "tag": { + "end": 248, + "start": 246, + "type": "TagDeclarator", + "value": "a" }, - "ZERO": { - "type": "Number", - "value": 0.0, - "__meta": [] + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 246, + 248, + 0 + ] + } + ] + }, + "arc_tag": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "arc_tag", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 531, + 553, + 0 + ] }, - "a": { - "type": "TagIdentifier", - "type": "TagIdentifier", - "value": "a", - "info": { - "type": "TagEngineInfo", + "ccw": true, + "center": [ + 200.0, + 100.0 + ], + "from": [ + 280.0, + 100.0 + ], + "radius": 80.0, + "tag": { + "end": 552, + "start": 544, + "type": "TagDeclarator", + "value": "arc_tag" + }, + "to": [ + 280.0, + 99.99999999999999 + ], + "type": "Arc" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 531, + 553, + 0 + ], + "tag": { + "end": 552, + "start": 544, + "type": "TagDeclarator", + "value": "arc_tag" + }, + "type": "extrudeArc" + } + }, + "__meta": [ + { + "sourceRange": [ + 544, + 552, + 0 + ] + } + ] + }, + "b": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "b", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 255, + 311, + 0 + ] + }, + "from": [ + 250.00000000000006, + 433.0127018922193 + ], + "tag": { + "end": 310, + "start": 308, + "type": "TagDeclarator", + "value": "b" + }, + "to": [ + -249.99999999999994, + 433.01270189221935 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 255, + 311, + 0 + ], + "tag": { + "end": 310, + "start": 308, + "type": "TagDeclarator", + "value": "b" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 308, + 310, + 0 + ] + } + ] + }, + "c": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "c", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 317, + 373, + 0 + ] + }, + "from": [ + -249.99999999999994, + 433.01270189221935 + ], + "tag": { + "end": 372, + "start": 370, + "type": "TagDeclarator", + "value": "c" + }, + "to": [ + 0.00000000000011368683772161603, + 0.00000000000005684341886080802 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 317, + 373, + 0 + ], + "tag": { + "end": 372, + "start": 370, + "type": "TagDeclarator", + "value": "c" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 370, + 372, + 0 + ] + } + ] + }, + "c1": { + "type": "Sketch", + "value": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 194, - 249, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": { - "end": 248, - "start": 246, - "type": "TagDeclarator", - "value": "a" - }, - "to": [ - 250.00000000000006, - 433.0127018922193 - ], - "type": "ToPoint" - }, - "surface": { + "sourceRange": [ + 531, + 553, + 0 + ] + }, + "ccw": true, + "center": [ + -200.0, + 100.0 + ], + "from": [ + -120.0, + 100.0 + ], + "radius": 80.0, + "tag": { + "end": 552, + "start": 544, + "type": "TagDeclarator", + "value": "arc_tag" + }, + "to": [ + -120.0, + 100.0 + ], + "type": "Arc" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 561, + 569, + 0 + ] + }, + "from": [ + -120.0, + 100.0 + ], + "tag": null, + "to": [ + -120.0, + 100.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "c", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ @@ -74,20 +367,999 @@ description: Program memory after executing pentagon_fillet_sugar.kcl "value": "a" }, "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 255, + 311, + 0 + ], + "tag": { + "end": 310, + "start": 308, + "type": "TagDeclarator", + "value": "b" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 317, + 373, + 0 + ], + "tag": { + "end": 372, + "start": 370, + "type": "TagDeclarator", + "value": "c" + }, + "type": "extrudePlane" } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 194, + 249, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 248, + "start": 246, + "type": "TagDeclarator", + "value": "a" + }, + "to": [ + 250.0, + 433.0127 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 255, + 311, + 0 + ] + }, + "from": [ + 250.0, + 433.0127 + ], + "tag": { + "end": 310, + "start": 308, + "type": "TagDeclarator", + "value": "b" + }, + "to": [ + -250.0, + 433.0127 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 317, + 373, + 0 + ] + }, + "from": [ + -250.0, + 433.0127 + ], + "tag": { + "end": 372, + "start": 370, + "type": "TagDeclarator", + "value": "c" + }, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 163, + 188, + 0 + ] + } + }, + "tags": { + "a": { + "type": "TagIdentifier", + "value": "a", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 194, + 249, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 248, + "start": 246, + "type": "TagDeclarator", + "value": "a" + }, + "to": [ + 250.00000000000006, + 433.0127018922193 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 194, + 249, + 0 + ], + "tag": { + "end": 248, + "start": 246, + "type": "TagDeclarator", + "value": "a" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 246, + 248, + 0 + ] + } + ] + }, + "b": { + "type": "TagIdentifier", + "value": "b", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 255, + 311, + 0 + ] + }, + "from": [ + 250.00000000000006, + 433.0127018922193 + ], + "tag": { + "end": 310, + "start": 308, + "type": "TagDeclarator", + "value": "b" + }, + "to": [ + -249.99999999999994, + 433.01270189221935 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 255, + 311, + 0 + ], + "tag": { + "end": 310, + "start": 308, + "type": "TagDeclarator", + "value": "b" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 308, + 310, + 0 + ] + } + ] + }, + "c": { + "type": "TagIdentifier", + "value": "c", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 317, + 373, + 0 + ] + }, + "from": [ + -249.99999999999994, + 433.01270189221935 + ], + "tag": { + "end": 372, + "start": 370, + "type": "TagDeclarator", + "value": "c" + }, + "to": [ + 0.00000000000011368683772161603, + 0.00000000000005684341886080802 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 317, + 373, + 0 + ], + "tag": { + "end": 372, + "start": 370, + "type": "TagDeclarator", + "value": "c" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 370, + 372, + 0 + ] + } + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 163, + 188, + 0 + ] + } + ] + }, + "height": 200.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" }, "__meta": [ { "sourceRange": [ - 246, - 248, + 163, + 188, 0 ] } ] }, + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 442, + 464, + 0 + ] + } + ] + }, + "start": { + "from": [ + -120.0, + 100.0 + ], + "to": [ + -120.0, + 100.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 472, + 523, + 0 + ] + } + }, + "tags": { "arc_tag": { "type": "TagIdentifier", + "value": "arc_tag", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 531, + 553, + 0 + ] + }, + "ccw": true, + "center": [ + -200.0, + 100.0 + ], + "from": [ + -120.0, + 100.0 + ], + "radius": 80.0, + "tag": { + "end": 552, + "start": 544, + "type": "TagDeclarator", + "value": "arc_tag" + }, + "to": [ + -120.0, + 99.99999999999999 + ], + "type": "Arc" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 531, + 553, + 0 + ], + "tag": { + "end": 552, + "start": 544, + "type": "TagDeclarator", + "value": "arc_tag" + }, + "type": "extrudeArc" + } + }, + "__meta": [ + { + "sourceRange": [ + 544, + 552, + 0 + ] + } + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 472, + 523, + 0 + ] + } + ] + } + }, + "c2": { + "type": "Sketch", + "value": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 531, + 553, + 0 + ] + }, + "ccw": true, + "center": [ + 200.0, + 100.0 + ], + "from": [ + 280.0, + 100.0 + ], + "radius": 80.0, + "tag": { + "end": 552, + "start": 544, + "type": "TagDeclarator", + "value": "arc_tag" + }, + "to": [ + 280.0, + 100.0 + ], + "type": "Arc" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 561, + 569, + 0 + ] + }, + "from": [ + 280.0, + 100.0 + ], + "tag": null, + "to": [ + 280.0, + 100.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "a", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 194, + 249, + 0 + ], + "tag": { + "end": 248, + "start": 246, + "type": "TagDeclarator", + "value": "a" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 255, + 311, + 0 + ], + "tag": { + "end": 310, + "start": 308, + "type": "TagDeclarator", + "value": "b" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 317, + 373, + 0 + ], + "tag": { + "end": 372, + "start": 370, + "type": "TagDeclarator", + "value": "c" + }, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 194, + 249, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 248, + "start": 246, + "type": "TagDeclarator", + "value": "a" + }, + "to": [ + 250.0, + 433.0127 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 255, + 311, + 0 + ] + }, + "from": [ + 250.0, + 433.0127 + ], + "tag": { + "end": 310, + "start": 308, + "type": "TagDeclarator", + "value": "b" + }, + "to": [ + -250.0, + 433.0127 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 317, + 373, + 0 + ] + }, + "from": [ + -250.0, + 433.0127 + ], + "tag": { + "end": 372, + "start": 370, + "type": "TagDeclarator", + "value": "c" + }, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 163, + 188, + 0 + ] + } + }, + "tags": { + "a": { + "type": "TagIdentifier", + "value": "a", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 194, + 249, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 248, + "start": 246, + "type": "TagDeclarator", + "value": "a" + }, + "to": [ + 250.00000000000006, + 433.0127018922193 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 194, + 249, + 0 + ], + "tag": { + "end": 248, + "start": 246, + "type": "TagDeclarator", + "value": "a" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 246, + 248, + 0 + ] + } + ] + }, + "b": { + "type": "TagIdentifier", + "value": "b", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 255, + 311, + 0 + ] + }, + "from": [ + 250.00000000000006, + 433.0127018922193 + ], + "tag": { + "end": 310, + "start": 308, + "type": "TagDeclarator", + "value": "b" + }, + "to": [ + -249.99999999999994, + 433.01270189221935 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 255, + 311, + 0 + ], + "tag": { + "end": 310, + "start": 308, + "type": "TagDeclarator", + "value": "b" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 308, + 310, + 0 + ] + } + ] + }, + "c": { + "type": "TagIdentifier", + "value": "c", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 317, + 373, + 0 + ] + }, + "from": [ + -249.99999999999994, + 433.01270189221935 + ], + "tag": { + "end": 372, + "start": 370, + "type": "TagDeclarator", + "value": "c" + }, + "to": [ + 0.00000000000011368683772161603, + 0.00000000000005684341886080802 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 317, + 373, + 0 + ], + "tag": { + "end": 372, + "start": 370, + "type": "TagDeclarator", + "value": "c" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 370, + 372, + 0 + ] + } + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 163, + 188, + 0 + ] + } + ] + }, + "height": 200.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 163, + 188, + 0 + ] + } + ] + }, + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 442, + 464, + 0 + ] + } + ] + }, + "start": { + "from": [ + 280.0, + 100.0 + ], + "to": [ + 280.0, + 100.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 472, + 523, + 0 + ] + } + }, + "tags": { + "arc_tag": { "type": "TagIdentifier", "value": "arc_tag", "info": { @@ -151,1572 +1423,791 @@ description: Program memory after executing pentagon_fillet_sugar.kcl ] } ] - }, - "b": { - "type": "TagIdentifier", - "type": "TagIdentifier", - "value": "b", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 255, - 311, - 0 - ] - }, - "from": [ - 250.00000000000006, - 433.0127018922193 + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 472, + 523, + 0 + ] + } + ] + } + }, + "circ": { + "type": "Object", + "value": { + "angleEnd": { + "type": "Number", + "value": 360.0, + "__meta": [ + { + "sourceRange": [ + 90, + 93, + 0 + ] + } + ] + }, + "angleStart": { + "type": "Number", + "value": 0.0, + "__meta": [ + { + "sourceRange": [ + 74, + 75, + 0 + ] + } + ] + }, + "radius": { + "type": "Number", + "value": 80.0, + "__meta": [ + { + "sourceRange": [ + 47, + 49, + 0 + ] + } + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 57, + 114, + 0 + ] + } + ] + }, + "circl": { + "type": "Function", + "expression": { + "body": { + "body": [ + { + "argument": { + "body": [ + { + "arguments": [ + { + "end": 457, + "name": "p", + "start": 456, + "type": "Identifier", + "type": "Identifier" + }, + { + "end": 463, + "name": "face", + "start": 459, + "type": "Identifier", + "type": "Identifier" + } + ], + "callee": { + "end": 455, + "name": "startSketchOn", + "start": 442, + "type": "Identifier" + }, + "end": 464, + "start": 442, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 498, + "left": { + "end": 489, + "name": "x", + "start": 488, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "+", + "right": { + "end": 498, + "name": "radius", + "start": 492, + "type": "Identifier", + "type": "Identifier" + }, + "start": 488, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + { + "end": 518, + "left": { + "end": 514, + "name": "triangleHeight", + "start": 500, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "/", + "right": { + "end": 518, + "raw": "2", + "start": 517, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "start": 500, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + ], + "end": 519, + "start": 487, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 522, + "start": 521, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 486, + "name": "startProfileAt", + "start": 472, + "type": "Identifier" + }, + "end": 523, + "start": 472, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 539, + "name": "circ", + "start": 535, + "type": "Identifier", + "type": "Identifier" + }, + { + "end": 542, + "start": 541, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + }, + { + "end": 552, + "start": 544, + "type": "TagDeclarator", + "type": "TagDeclarator", + "value": "arc_tag" + } + ], + "callee": { + "end": 534, + "name": "arc", + "start": 531, + "type": "Identifier" + }, + "end": 553, + "start": 531, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 568, + "start": 567, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 566, + "name": "close", + "start": 561, + "type": "Identifier" + }, + "end": 569, + "start": 561, + "type": "CallExpression", + "type": "CallExpression" + } ], - "tag": { - "end": 310, - "start": 308, - "type": "TagDeclarator", - "value": "b" - }, - "to": [ - -249.99999999999994, - 433.01270189221935 - ], - "type": "ToPoint" + "end": 569, + "start": 442, + "type": "PipeExpression", + "type": "PipeExpression" }, - "surface": { - "faceId": "[uuid]", + "end": 569, + "start": 435, + "type": "ReturnStatement", + "type": "ReturnStatement" + } + ], + "end": 571, + "start": 431 + }, + "end": 571, + "params": [ + { + "type": "Parameter", + "identifier": { + "end": 423, + "name": "x", + "start": 422, + "type": "Identifier" + } + }, + { + "type": "Parameter", + "identifier": { + "end": 429, + "name": "face", + "start": 425, + "type": "Identifier" + } + } + ], + "start": 421, + "type": "FunctionExpression" + }, + "memory": [ + 0, + 1 + ], + "__meta": [ + { + "sourceRange": [ + 421, + 571, + 0 + ] + } + ] + }, + "p": { + "type": "Solid", + "value": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 194, + 249, + 0 + ], + "tag": { + "end": 248, + "start": 246, + "type": "TagDeclarator", + "value": "a" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 255, + 311, + 0 + ], + "tag": { + "end": 310, + "start": 308, + "type": "TagDeclarator", + "value": "b" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 317, + 373, + 0 + ], + "tag": { + "end": 372, + "start": 370, + "type": "TagDeclarator", + "value": "c" + }, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 194, + 249, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 248, + "start": 246, + "type": "TagDeclarator", + "value": "a" + }, + "to": [ + 250.0, + 433.0127 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { "id": "[uuid]", "sourceRange": [ 255, 311, 0 - ], - "tag": { - "end": 310, - "start": 308, - "type": "TagDeclarator", - "value": "b" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 308, - 310, - 0 ] - } - ] - }, - "c": { - "type": "TagIdentifier", - "type": "TagIdentifier", - "value": "c", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 317, - 373, - 0 - ] - }, - "from": [ - -249.99999999999994, - 433.01270189221935 - ], - "tag": { - "end": 372, - "start": 370, - "type": "TagDeclarator", - "value": "c" - }, - "to": [ - 0.00000000000011368683772161603, - 0.00000000000005684341886080802 - ], - "type": "ToPoint" }, - "surface": { - "faceId": "[uuid]", + "from": [ + 250.0, + 433.0127 + ], + "tag": { + "end": 310, + "start": 308, + "type": "TagDeclarator", + "value": "b" + }, + "to": [ + -250.0, + 433.0127 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { "id": "[uuid]", "sourceRange": [ 317, 373, 0 - ], - "tag": { - "end": 372, - "start": 370, - "type": "TagDeclarator", - "value": "c" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 370, - 372, - 0 ] - } - ] - }, - "c1": { - "type": "Sketch", - "value": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 531, - 553, - 0 - ] - }, - "ccw": true, - "center": [ - -200.0, - 100.0 - ], - "from": [ - -120.0, - 100.0 - ], - "radius": 80.0, - "tag": { - "end": 552, - "start": 544, - "type": "TagDeclarator", - "value": "arc_tag" - }, - "to": [ - -120.0, - 100.0 - ], - "type": "Arc" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 561, - 569, - 0 - ] - }, - "from": [ - -120.0, - 100.0 - ], - "tag": null, - "to": [ - -120.0, - 100.0 - ], - "type": "ToPoint" - } + }, + "from": [ + -250.0, + 433.0127 ], - "on": { - "type": "face", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "c", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 194, - 249, - 0 - ], - "tag": { - "end": 248, - "start": 246, - "type": "TagDeclarator", - "value": "a" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 255, - 311, - 0 - ], - "tag": { - "end": 310, - "start": 308, - "type": "TagDeclarator", - "value": "b" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 317, - 373, - 0 - ], - "tag": { - "end": 372, - "start": 370, - "type": "TagDeclarator", - "value": "c" - }, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 194, - 249, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": { - "end": 248, - "start": 246, - "type": "TagDeclarator", - "value": "a" - }, - "to": [ - 250.0, - 433.0127 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 255, - 311, - 0 - ] - }, - "from": [ - 250.0, - 433.0127 - ], - "tag": { - "end": 310, - "start": 308, - "type": "TagDeclarator", - "value": "b" - }, - "to": [ - -250.0, - 433.0127 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 317, - 373, - 0 - ] - }, - "from": [ - -250.0, - 433.0127 - ], - "tag": { - "end": 372, - "start": 370, - "type": "TagDeclarator", - "value": "c" - }, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 163, - 188, - 0 - ] - } - }, - "tags": { - "a": { - "type": "TagIdentifier", - "value": "a", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 194, - 249, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": { - "end": 248, - "start": 246, - "type": "TagDeclarator", - "value": "a" - }, - "to": [ - 250.00000000000006, - 433.0127018922193 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 194, - 249, - 0 - ], - "tag": { - "end": 248, - "start": 246, - "type": "TagDeclarator", - "value": "a" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 246, - 248, - 0 - ] - } - ] - }, - "b": { - "type": "TagIdentifier", - "value": "b", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 255, - 311, - 0 - ] - }, - "from": [ - 250.00000000000006, - 433.0127018922193 - ], - "tag": { - "end": 310, - "start": 308, - "type": "TagDeclarator", - "value": "b" - }, - "to": [ - -249.99999999999994, - 433.01270189221935 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 255, - 311, - 0 - ], - "tag": { - "end": 310, - "start": 308, - "type": "TagDeclarator", - "value": "b" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 308, - 310, - 0 - ] - } - ] - }, - "c": { - "type": "TagIdentifier", - "value": "c", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 317, - 373, - 0 - ] - }, - "from": [ - -249.99999999999994, - 433.01270189221935 - ], - "tag": { - "end": 372, - "start": 370, - "type": "TagDeclarator", - "value": "c" - }, - "to": [ - 0.00000000000011368683772161603, - 0.00000000000005684341886080802 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 317, - 373, - 0 - ], - "tag": { - "end": 372, - "start": 370, - "type": "TagDeclarator", - "value": "c" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 370, - 372, - 0 - ] - } - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 163, - 188, - 0 - ] - } - ] - }, - "height": 200.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 163, - 188, - 0 - ] - } - ] - }, - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 442, - 464, - 0 - ] - } - ] + "tag": { + "end": 372, + "start": 370, + "type": "TagDeclarator", + "value": "c" }, - "start": { - "from": [ - -120.0, - 100.0 - ], - "to": [ - -120.0, - 100.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 472, - 523, - 0 - ] - } - }, - "tags": { - "arc_tag": { - "type": "TagIdentifier", - "value": "arc_tag", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 531, - 553, - 0 - ] - }, - "ccw": true, - "center": [ - -200.0, - 100.0 - ], - "from": [ - -120.0, - 100.0 - ], - "radius": 80.0, - "tag": { - "end": 552, - "start": 544, - "type": "TagDeclarator", - "value": "arc_tag" - }, - "to": [ - -120.0, - 99.99999999999999 - ], - "type": "Arc" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 531, - 553, - 0 - ], - "tag": { - "end": 552, - "start": 544, - "type": "TagDeclarator", - "value": "arc_tag" - }, - "type": "extrudeArc" - } - }, - "__meta": [ - { - "sourceRange": [ - 544, - 552, - 0 - ] - } - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 472, - 523, - 0 - ] - } - ] + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" } - }, - "c2": { - "type": "Sketch", - "value": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 531, - 553, - 0 - ] - }, - "ccw": true, - "center": [ - 200.0, - 100.0 - ], - "from": [ - 280.0, - 100.0 - ], - "radius": 80.0, - "tag": { - "end": 552, - "start": 544, - "type": "TagDeclarator", - "value": "arc_tag" - }, - "to": [ - 280.0, - 100.0 - ], - "type": "Arc" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 561, - 569, - 0 - ] - }, - "from": [ - 280.0, - 100.0 - ], - "tag": null, - "to": [ - 280.0, - 100.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "face", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "a", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 194, - 249, - 0 - ], - "tag": { - "end": 248, - "start": 246, - "type": "TagDeclarator", - "value": "a" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 255, - 311, - 0 - ], - "tag": { - "end": 310, - "start": 308, - "type": "TagDeclarator", - "value": "b" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 317, - 373, - 0 - ], - "tag": { - "end": 372, - "start": 370, - "type": "TagDeclarator", - "value": "c" - }, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 194, - 249, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": { - "end": 248, - "start": 246, - "type": "TagDeclarator", - "value": "a" - }, - "to": [ - 250.0, - 433.0127 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 255, - 311, - 0 - ] - }, - "from": [ - 250.0, - 433.0127 - ], - "tag": { - "end": 310, - "start": 308, - "type": "TagDeclarator", - "value": "b" - }, - "to": [ - -250.0, - 433.0127 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 317, - 373, - 0 - ] - }, - "from": [ - -250.0, - 433.0127 - ], - "tag": { - "end": 372, - "start": 370, - "type": "TagDeclarator", - "value": "c" - }, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 163, - 188, - 0 - ] - } - }, - "tags": { - "a": { - "type": "TagIdentifier", - "value": "a", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 194, - 249, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": { - "end": 248, - "start": 246, - "type": "TagDeclarator", - "value": "a" - }, - "to": [ - 250.00000000000006, - 433.0127018922193 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 194, - 249, - 0 - ], - "tag": { - "end": 248, - "start": 246, - "type": "TagDeclarator", - "value": "a" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 246, - 248, - 0 - ] - } - ] - }, - "b": { - "type": "TagIdentifier", - "value": "b", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 255, - 311, - 0 - ] - }, - "from": [ - 250.00000000000006, - 433.0127018922193 - ], - "tag": { - "end": 310, - "start": 308, - "type": "TagDeclarator", - "value": "b" - }, - "to": [ - -249.99999999999994, - 433.01270189221935 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 255, - 311, - 0 - ], - "tag": { - "end": 310, - "start": 308, - "type": "TagDeclarator", - "value": "b" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 308, - 310, - 0 - ] - } - ] - }, - "c": { - "type": "TagIdentifier", - "value": "c", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 317, - 373, - 0 - ] - }, - "from": [ - -249.99999999999994, - 433.01270189221935 - ], - "tag": { - "end": 372, - "start": 370, - "type": "TagDeclarator", - "value": "c" - }, - "to": [ - 0.00000000000011368683772161603, - 0.00000000000005684341886080802 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 317, - 373, - 0 - ], - "tag": { - "end": 372, - "start": 370, - "type": "TagDeclarator", - "value": "c" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 370, - 372, - 0 - ] - } - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 163, - 188, - 0 - ] - } - ] - }, - "height": 200.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 163, - 188, - 0 - ] - } - ] - }, - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 442, - 464, - 0 - ] - } - ] - }, - "start": { - "from": [ - 280.0, - 100.0 - ], - "to": [ - 280.0, - 100.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 472, - 523, - 0 - ] - } - }, - "tags": { - "arc_tag": { - "type": "TagIdentifier", - "value": "arc_tag", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 531, - 553, - 0 - ] - }, - "ccw": true, - "center": [ - 200.0, - 100.0 - ], - "from": [ - 280.0, - 100.0 - ], - "radius": 80.0, - "tag": { - "end": 552, - "start": 544, - "type": "TagDeclarator", - "value": "arc_tag" - }, - "to": [ - 280.0, - 99.99999999999999 - ], - "type": "Arc" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 531, - 553, - 0 - ], - "tag": { - "end": 552, - "start": 544, - "type": "TagDeclarator", - "value": "arc_tag" - }, - "type": "extrudeArc" - } - }, - "__meta": [ - { - "sourceRange": [ - 544, - 552, - 0 - ] - } - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 472, - 523, - 0 - ] - } - ] - } - }, - "circ": { - "type": "Object", - "value": { - "angleEnd": { - "type": "Number", - "value": 360.0, - "__meta": [ - { - "sourceRange": [ - 90, - 93, - 0 - ] - } - ] - }, - "angleStart": { - "type": "Number", - "value": 0.0, - "__meta": [ - { - "sourceRange": [ - 74, - 75, - 0 - ] - } - ] - }, - "radius": { - "type": "Number", - "value": 80.0, - "__meta": [ - { - "sourceRange": [ - 47, - 49, - 0 - ] - } - ] - } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 }, - "__meta": [ - { - "sourceRange": [ - 57, - 114, - 0 - ] - } - ] - }, - "circl": { - "type": "Function", - "expression": { - "body": { - "body": [ - { - "argument": { - "body": [ - { - "arguments": [ - { - "end": 457, - "name": "p", - "start": 456, - "type": "Identifier", - "type": "Identifier" - }, - { - "end": 463, - "name": "face", - "start": 459, - "type": "Identifier", - "type": "Identifier" - } - ], - "callee": { - "end": 455, - "name": "startSketchOn", - "start": 442, - "type": "Identifier" - }, - "end": 464, - "start": 442, - "type": "CallExpression", - "type": "CallExpression" - }, - { - "arguments": [ - { - "elements": [ - { - "end": 498, - "left": { - "end": 489, - "name": "x", - "start": 488, - "type": "Identifier", - "type": "Identifier" - }, - "operator": "+", - "right": { - "end": 498, - "name": "radius", - "start": 492, - "type": "Identifier", - "type": "Identifier" - }, - "start": 488, - "type": "BinaryExpression", - "type": "BinaryExpression" - }, - { - "end": 518, - "left": { - "end": 514, - "name": "triangleHeight", - "start": 500, - "type": "Identifier", - "type": "Identifier" - }, - "operator": "/", - "right": { - "end": 518, - "raw": "2", - "start": 517, - "type": "Literal", - "type": "Literal", - "value": { - "value": 2.0, - "suffix": "None" - } - }, - "start": 500, - "type": "BinaryExpression", - "type": "BinaryExpression" - } - ], - "end": 519, - "start": 487, - "type": "ArrayExpression", - "type": "ArrayExpression" - }, - { - "end": 522, - "start": 521, - "type": "PipeSubstitution", - "type": "PipeSubstitution" - } - ], - "callee": { - "end": 486, - "name": "startProfileAt", - "start": 472, - "type": "Identifier" - }, - "end": 523, - "start": 472, - "type": "CallExpression", - "type": "CallExpression" - }, - { - "arguments": [ - { - "end": 539, - "name": "circ", - "start": 535, - "type": "Identifier", - "type": "Identifier" - }, - { - "end": 542, - "start": 541, - "type": "PipeSubstitution", - "type": "PipeSubstitution" - }, - { - "end": 552, - "start": 544, - "type": "TagDeclarator", - "type": "TagDeclarator", - "value": "arc_tag" - } - ], - "callee": { - "end": 534, - "name": "arc", - "start": 531, - "type": "Identifier" - }, - "end": 553, - "start": 531, - "type": "CallExpression", - "type": "CallExpression" - }, - { - "arguments": [ - { - "end": 568, - "start": 567, - "type": "PipeSubstitution", - "type": "PipeSubstitution" - } - ], - "callee": { - "end": 566, - "name": "close", - "start": 561, - "type": "Identifier" - }, - "end": 569, - "start": 561, - "type": "CallExpression", - "type": "CallExpression" - } - ], - "end": 569, - "start": 442, - "type": "PipeExpression", - "type": "PipeExpression" - }, - "end": 569, - "start": 435, - "type": "ReturnStatement", - "type": "ReturnStatement" - } - ], - "end": 571, - "start": 431 - }, - "end": 571, - "params": [ - { - "type": "Parameter", - "identifier": { - "end": 423, - "name": "x", - "start": 422, - "type": "Identifier" - } - }, - { - "type": "Parameter", - "identifier": { - "end": 429, - "name": "face", - "start": 425, - "type": "Identifier" - } - } - ], - "start": 421, - "type": "FunctionExpression" + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 }, - "memory": [ - 0, - 1 + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 ], - "__meta": [ - { + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 163, + 188, + 0 + ] + } + }, + "tags": { + "a": { + "type": "TagIdentifier", + "value": "a", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 194, + 249, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 248, + "start": 246, + "type": "TagDeclarator", + "value": "a" + }, + "to": [ + 250.00000000000006, + 433.0127018922193 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 194, + 249, + 0 + ], + "tag": { + "end": 248, + "start": 246, + "type": "TagDeclarator", + "value": "a" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 246, + 248, + 0 + ] + } + ] + }, + "b": { + "type": "TagIdentifier", + "value": "b", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 255, + 311, + 0 + ] + }, + "from": [ + 250.00000000000006, + 433.0127018922193 + ], + "tag": { + "end": 310, + "start": 308, + "type": "TagDeclarator", + "value": "b" + }, + "to": [ + -249.99999999999994, + 433.01270189221935 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 255, + 311, + 0 + ], + "tag": { + "end": 310, + "start": 308, + "type": "TagDeclarator", + "value": "b" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 308, + 310, + 0 + ] + } + ] + }, + "c": { + "type": "TagIdentifier", + "value": "c", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 317, + 373, + 0 + ] + }, + "from": [ + -249.99999999999994, + 433.01270189221935 + ], + "tag": { + "end": 372, + "start": 370, + "type": "TagDeclarator", + "value": "c" + }, + "to": [ + 0.00000000000011368683772161603, + 0.00000000000005684341886080802 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 317, + 373, + 0 + ], + "tag": { + "end": 372, + "start": 370, + "type": "TagDeclarator", + "value": "c" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 370, + 372, + 0 + ] + } + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 163, + 188, + 0 + ] + } + ] + }, + "height": 200.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 163, + 188, + 0 + ] + } + ] + } + }, + "plumbus0": { + "type": "Solid", + "value": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 531, + 553, + 0 + ], + "tag": { + "end": 552, + "start": 544, + "type": "TagDeclarator", + "value": "arc_tag" + }, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", "sourceRange": [ - 421, - 571, + 531, + 553, 0 ] - } - ] - }, - "p": { - "type": "Solid", - "value": { + }, + "ccw": true, + "center": [ + 200.0, + 100.0 + ], + "from": [ + 280.0, + 100.0 + ], + "radius": 80.0, + "tag": { + "end": 552, + "start": 544, + "type": "TagDeclarator", + "value": "arc_tag" + }, + "to": [ + 280.0, + 100.0 + ], + "type": "Arc" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 561, + 569, + 0 + ] + }, + "from": [ + 280.0, + 100.0 + ], + "tag": null, + "to": [ + 280.0, + 100.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "a", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { "type": "Solid", "id": "[uuid]", "artifactId": "[uuid]", @@ -2108,16 +2599,79 @@ description: Program memory after executing pentagon_fillet_sugar.kcl ] } ] + }, + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 442, + 464, + 0 + ] + } + ] + }, + "start": { + "from": [ + 280.0, + 100.0 + ], + "to": [ + 280.0, + 100.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 472, + 523, + 0 + ] } }, - "plumbus0": { - "type": "Solid", - "value": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { + "tags": { + "arc_tag": { + "type": "TagIdentifier", + "value": "arc_tag", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 531, + 553, + 0 + ] + }, + "ccw": true, + "center": [ + 200.0, + 100.0 + ], + "from": [ + 280.0, + 100.0 + ], + "radius": 80.0, + "tag": { + "end": 552, + "start": 544, + "type": "TagDeclarator", + "value": "arc_tag" + }, + "to": [ + 280.0, + 99.99999999999999 + ], + "type": "Arc" + }, + "surface": { "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ @@ -2133,1359 +2687,756 @@ description: Program memory after executing pentagon_fillet_sugar.kcl }, "type": "extrudeArc" } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 531, - 553, - 0 - ] - }, - "ccw": true, - "center": [ - 200.0, - 100.0 - ], - "from": [ - 280.0, - 100.0 - ], - "radius": 80.0, - "tag": { - "end": 552, - "start": 544, - "type": "TagDeclarator", - "value": "arc_tag" - }, - "to": [ - 280.0, - 100.0 - ], - "type": "Arc" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 561, - 569, - 0 - ] - }, - "from": [ - 280.0, - 100.0 - ], - "tag": null, - "to": [ - 280.0, - 100.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "face", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "a", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 194, - 249, - 0 - ], - "tag": { - "end": 248, - "start": 246, - "type": "TagDeclarator", - "value": "a" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 255, - 311, - 0 - ], - "tag": { - "end": 310, - "start": 308, - "type": "TagDeclarator", - "value": "b" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 317, - 373, - 0 - ], - "tag": { - "end": 372, - "start": 370, - "type": "TagDeclarator", - "value": "c" - }, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 194, - 249, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": { - "end": 248, - "start": 246, - "type": "TagDeclarator", - "value": "a" - }, - "to": [ - 250.0, - 433.0127 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 255, - 311, - 0 - ] - }, - "from": [ - 250.0, - 433.0127 - ], - "tag": { - "end": 310, - "start": 308, - "type": "TagDeclarator", - "value": "b" - }, - "to": [ - -250.0, - 433.0127 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 317, - 373, - 0 - ] - }, - "from": [ - -250.0, - 433.0127 - ], - "tag": { - "end": 372, - "start": 370, - "type": "TagDeclarator", - "value": "c" - }, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 163, - 188, - 0 - ] - } - }, - "tags": { - "a": { - "type": "TagIdentifier", - "value": "a", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 194, - 249, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": { - "end": 248, - "start": 246, - "type": "TagDeclarator", - "value": "a" - }, - "to": [ - 250.00000000000006, - 433.0127018922193 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 194, - 249, - 0 - ], - "tag": { - "end": 248, - "start": 246, - "type": "TagDeclarator", - "value": "a" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 246, - 248, - 0 - ] - } - ] - }, - "b": { - "type": "TagIdentifier", - "value": "b", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 255, - 311, - 0 - ] - }, - "from": [ - 250.00000000000006, - 433.0127018922193 - ], - "tag": { - "end": 310, - "start": 308, - "type": "TagDeclarator", - "value": "b" - }, - "to": [ - -249.99999999999994, - 433.01270189221935 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 255, - 311, - 0 - ], - "tag": { - "end": 310, - "start": 308, - "type": "TagDeclarator", - "value": "b" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 308, - 310, - 0 - ] - } - ] - }, - "c": { - "type": "TagIdentifier", - "value": "c", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 317, - 373, - 0 - ] - }, - "from": [ - -249.99999999999994, - 433.01270189221935 - ], - "tag": { - "end": 372, - "start": 370, - "type": "TagDeclarator", - "value": "c" - }, - "to": [ - 0.00000000000011368683772161603, - 0.00000000000005684341886080802 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 317, - 373, - 0 - ], - "tag": { - "end": 372, - "start": 370, - "type": "TagDeclarator", - "value": "c" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 370, - 372, - 0 - ] - } - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 163, - 188, - 0 - ] - } - ] - }, - "height": 200.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 163, - 188, - 0 - ] - } - ] - }, - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 442, - 464, - 0 - ] - } - ] - }, - "start": { - "from": [ - 280.0, - 100.0 - ], - "to": [ - 280.0, - 100.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 472, - 523, - 0 - ] - } - }, - "tags": { - "arc_tag": { - "type": "TagIdentifier", - "value": "arc_tag", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 531, - 553, - 0 - ] - }, - "ccw": true, - "center": [ - 200.0, - 100.0 - ], - "from": [ - 280.0, - 100.0 - ], - "radius": 80.0, - "tag": { - "end": 552, - "start": 544, - "type": "TagDeclarator", - "value": "arc_tag" - }, - "to": [ - 280.0, - 99.99999999999999 - ], - "type": "Arc" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 531, - 553, - 0 - ], - "tag": { - "end": 552, - "start": 544, - "type": "TagDeclarator", - "value": "arc_tag" - }, - "type": "extrudeArc" - } - }, - "__meta": [ - { - "sourceRange": [ - 544, - 552, - 0 - ] - } - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 472, - 523, - 0 - ] - } - ] - }, - "height": 100.0, - "startCapId": null, - "endCapId": "[uuid]", - "edgeCuts": [ - { - "type": "fillet", - "id": "[uuid]", - "radius": 5.0, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 5.0, - "edgeId": "[uuid]", - "tag": null - } - ], - "units": { - "type": "Mm" }, "__meta": [ { "sourceRange": [ - 472, - 523, + 544, + 552, 0 ] } ] } }, - "plumbus1": { - "type": "Solid", - "value": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 531, - 553, - 0 - ], - "tag": { - "end": 552, - "start": 544, - "type": "TagDeclarator", - "value": "arc_tag" - }, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 531, - 553, - 0 - ] - }, - "ccw": true, - "center": [ - -200.0, - 100.0 - ], - "from": [ - -120.0, - 100.0 - ], - "radius": 80.0, - "tag": { - "end": 552, - "start": 544, - "type": "TagDeclarator", - "value": "arc_tag" - }, - "to": [ - -120.0, - 100.0 - ], - "type": "Arc" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 561, - 569, - 0 - ] - }, - "from": [ - -120.0, - 100.0 - ], - "tag": null, - "to": [ - -120.0, - 100.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "face", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "c", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 194, - 249, - 0 - ], - "tag": { - "end": 248, - "start": 246, - "type": "TagDeclarator", - "value": "a" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 255, - 311, - 0 - ], - "tag": { - "end": 310, - "start": 308, - "type": "TagDeclarator", - "value": "b" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 317, - 373, - 0 - ], - "tag": { - "end": 372, - "start": 370, - "type": "TagDeclarator", - "value": "c" - }, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 194, - 249, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": { - "end": 248, - "start": 246, - "type": "TagDeclarator", - "value": "a" - }, - "to": [ - 250.0, - 433.0127 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 255, - 311, - 0 - ] - }, - "from": [ - 250.0, - 433.0127 - ], - "tag": { - "end": 310, - "start": 308, - "type": "TagDeclarator", - "value": "b" - }, - "to": [ - -250.0, - 433.0127 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 317, - 373, - 0 - ] - }, - "from": [ - -250.0, - 433.0127 - ], - "tag": { - "end": 372, - "start": 370, - "type": "TagDeclarator", - "value": "c" - }, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 163, - 188, - 0 - ] - } - }, - "tags": { - "a": { - "type": "TagIdentifier", - "value": "a", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 194, - 249, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": { - "end": 248, - "start": 246, - "type": "TagDeclarator", - "value": "a" - }, - "to": [ - 250.00000000000006, - 433.0127018922193 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 194, - 249, - 0 - ], - "tag": { - "end": 248, - "start": 246, - "type": "TagDeclarator", - "value": "a" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 246, - 248, - 0 - ] - } - ] - }, - "b": { - "type": "TagIdentifier", - "value": "b", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 255, - 311, - 0 - ] - }, - "from": [ - 250.00000000000006, - 433.0127018922193 - ], - "tag": { - "end": 310, - "start": 308, - "type": "TagDeclarator", - "value": "b" - }, - "to": [ - -249.99999999999994, - 433.01270189221935 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 255, - 311, - 0 - ], - "tag": { - "end": 310, - "start": 308, - "type": "TagDeclarator", - "value": "b" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 308, - 310, - 0 - ] - } - ] - }, - "c": { - "type": "TagIdentifier", - "value": "c", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 317, - 373, - 0 - ] - }, - "from": [ - -249.99999999999994, - 433.01270189221935 - ], - "tag": { - "end": 372, - "start": 370, - "type": "TagDeclarator", - "value": "c" - }, - "to": [ - 0.00000000000011368683772161603, - 0.00000000000005684341886080802 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 317, - 373, - 0 - ], - "tag": { - "end": 372, - "start": 370, - "type": "TagDeclarator", - "value": "c" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 370, - 372, - 0 - ] - } - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 163, - 188, - 0 - ] - } - ] - }, - "height": 200.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 163, - 188, - 0 - ] - } - ] - }, - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 442, - 464, - 0 - ] - } - ] - }, - "start": { - "from": [ - -120.0, - 100.0 - ], - "to": [ - -120.0, - 100.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 472, - 523, - 0 - ] - } - }, - "tags": { - "arc_tag": { - "type": "TagIdentifier", - "value": "arc_tag", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 531, - 553, - 0 - ] - }, - "ccw": true, - "center": [ - -200.0, - 100.0 - ], - "from": [ - -120.0, - 100.0 - ], - "radius": 80.0, - "tag": { - "end": 552, - "start": 544, - "type": "TagDeclarator", - "value": "arc_tag" - }, - "to": [ - -120.0, - 99.99999999999999 - ], - "type": "Arc" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 531, - 553, - 0 - ], - "tag": { - "end": 552, - "start": 544, - "type": "TagDeclarator", - "value": "arc_tag" - }, - "type": "extrudeArc" - } - }, - "__meta": [ - { - "sourceRange": [ - 544, - 552, - 0 - ] - } - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 472, - 523, - 0 - ] - } - ] - }, - "height": 100.0, - "startCapId": null, - "endCapId": "[uuid]", - "edgeCuts": [ - { - "type": "fillet", - "id": "[uuid]", - "radius": 5.0, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 5.0, - "edgeId": "[uuid]", - "tag": null - } - ], - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 472, - 523, - 0 - ] - } + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 472, + 523, + 0 ] } - }, - "plumbusLen": { - "type": "Number", - "value": 100.0, - "__meta": [ - { - "sourceRange": [ - 34, - 37, - 0 - ] - } - ] - }, - "radius": { - "type": "Number", - "value": 80.0, - "__meta": [ - { - "sourceRange": [ - 47, - 49, - 0 - ] - } - ] - }, - "triangleHeight": { - "type": "Number", - "value": 200.0, - "__meta": [ - { - "sourceRange": [ - 17, - 20, - 0 - ] - } - ] - }, - "triangleLen": { - "type": "Number", - "value": 500.0, - "__meta": [ - { - "sourceRange": [ - 130, - 133, - 0 - ] - } - ] - } + ] }, - "snapshots": [ + "height": 100.0, + "startCapId": null, + "endCapId": "[uuid]", + "edgeCuts": [ { - "parent_snapshot": null, - "data": { - "arc_tag": { - "type": "Tombstone", - "value": null, - "__meta": [] - }, - "c1": { - "type": "Tombstone", - "value": null, - "__meta": [] - }, - "c2": { - "type": "Tombstone", - "value": null, - "__meta": [] - }, - "circl": { - "type": "Tombstone", - "value": null, - "__meta": [] - }, - "plumbus0": { - "type": "Tombstone", - "value": null, - "__meta": [] - }, - "plumbus1": { - "type": "Tombstone", - "value": null, - "__meta": [] - } - } + "type": "fillet", + "id": "[uuid]", + "radius": 5.0, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 5.0, + "edgeId": "[uuid]", + "tag": null } ], - "parent": null + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 472, + 523, + 0 + ] + } + ] } - ], - "currentEnv": [ - 0, - 0 - ], - "callStack": [] + }, + "plumbus1": { + "type": "Solid", + "value": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 531, + 553, + 0 + ], + "tag": { + "end": 552, + "start": 544, + "type": "TagDeclarator", + "value": "arc_tag" + }, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 531, + 553, + 0 + ] + }, + "ccw": true, + "center": [ + -200.0, + 100.0 + ], + "from": [ + -120.0, + 100.0 + ], + "radius": 80.0, + "tag": { + "end": 552, + "start": 544, + "type": "TagDeclarator", + "value": "arc_tag" + }, + "to": [ + -120.0, + 100.0 + ], + "type": "Arc" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 561, + 569, + 0 + ] + }, + "from": [ + -120.0, + 100.0 + ], + "tag": null, + "to": [ + -120.0, + 100.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "c", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 194, + 249, + 0 + ], + "tag": { + "end": 248, + "start": 246, + "type": "TagDeclarator", + "value": "a" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 255, + 311, + 0 + ], + "tag": { + "end": 310, + "start": 308, + "type": "TagDeclarator", + "value": "b" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 317, + 373, + 0 + ], + "tag": { + "end": 372, + "start": 370, + "type": "TagDeclarator", + "value": "c" + }, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 194, + 249, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 248, + "start": 246, + "type": "TagDeclarator", + "value": "a" + }, + "to": [ + 250.0, + 433.0127 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 255, + 311, + 0 + ] + }, + "from": [ + 250.0, + 433.0127 + ], + "tag": { + "end": 310, + "start": 308, + "type": "TagDeclarator", + "value": "b" + }, + "to": [ + -250.0, + 433.0127 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 317, + 373, + 0 + ] + }, + "from": [ + -250.0, + 433.0127 + ], + "tag": { + "end": 372, + "start": 370, + "type": "TagDeclarator", + "value": "c" + }, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 163, + 188, + 0 + ] + } + }, + "tags": { + "a": { + "type": "TagIdentifier", + "value": "a", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 194, + 249, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 248, + "start": 246, + "type": "TagDeclarator", + "value": "a" + }, + "to": [ + 250.00000000000006, + 433.0127018922193 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 194, + 249, + 0 + ], + "tag": { + "end": 248, + "start": 246, + "type": "TagDeclarator", + "value": "a" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 246, + 248, + 0 + ] + } + ] + }, + "b": { + "type": "TagIdentifier", + "value": "b", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 255, + 311, + 0 + ] + }, + "from": [ + 250.00000000000006, + 433.0127018922193 + ], + "tag": { + "end": 310, + "start": 308, + "type": "TagDeclarator", + "value": "b" + }, + "to": [ + -249.99999999999994, + 433.01270189221935 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 255, + 311, + 0 + ], + "tag": { + "end": 310, + "start": 308, + "type": "TagDeclarator", + "value": "b" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 308, + 310, + 0 + ] + } + ] + }, + "c": { + "type": "TagIdentifier", + "value": "c", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 317, + 373, + 0 + ] + }, + "from": [ + -249.99999999999994, + 433.01270189221935 + ], + "tag": { + "end": 372, + "start": 370, + "type": "TagDeclarator", + "value": "c" + }, + "to": [ + 0.00000000000011368683772161603, + 0.00000000000005684341886080802 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 317, + 373, + 0 + ], + "tag": { + "end": 372, + "start": 370, + "type": "TagDeclarator", + "value": "c" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 370, + 372, + 0 + ] + } + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 163, + 188, + 0 + ] + } + ] + }, + "height": 200.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 163, + 188, + 0 + ] + } + ] + }, + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 442, + 464, + 0 + ] + } + ] + }, + "start": { + "from": [ + -120.0, + 100.0 + ], + "to": [ + -120.0, + 100.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 472, + 523, + 0 + ] + } + }, + "tags": { + "arc_tag": { + "type": "TagIdentifier", + "value": "arc_tag", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 531, + 553, + 0 + ] + }, + "ccw": true, + "center": [ + -200.0, + 100.0 + ], + "from": [ + -120.0, + 100.0 + ], + "radius": 80.0, + "tag": { + "end": 552, + "start": 544, + "type": "TagDeclarator", + "value": "arc_tag" + }, + "to": [ + -120.0, + 99.99999999999999 + ], + "type": "Arc" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 531, + 553, + 0 + ], + "tag": { + "end": 552, + "start": 544, + "type": "TagDeclarator", + "value": "arc_tag" + }, + "type": "extrudeArc" + } + }, + "__meta": [ + { + "sourceRange": [ + 544, + 552, + 0 + ] + } + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 472, + 523, + 0 + ] + } + ] + }, + "height": 100.0, + "startCapId": null, + "endCapId": "[uuid]", + "edgeCuts": [ + { + "type": "fillet", + "id": "[uuid]", + "radius": 5.0, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 5.0, + "edgeId": "[uuid]", + "tag": null + } + ], + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 472, + 523, + 0 + ] + } + ] + } + }, + "plumbusLen": { + "type": "Number", + "value": 100.0, + "__meta": [ + { + "sourceRange": [ + 34, + 37, + 0 + ] + } + ] + }, + "radius": { + "type": "Number", + "value": 80.0, + "__meta": [ + { + "sourceRange": [ + 47, + 49, + 0 + ] + } + ] + }, + "triangleHeight": { + "type": "Number", + "value": 200.0, + "__meta": [ + { + "sourceRange": [ + 17, + 20, + 0 + ] + } + ] + }, + "triangleLen": { + "type": "Number", + "value": 500.0, + "__meta": [ + { + "sourceRange": [ + 130, + 133, + 0 + ] + } + ] + } } diff --git a/src/wasm-lib/kcl/tests/pipe_as_arg/program_memory.snap b/src/wasm-lib/kcl/tests/pipe_as_arg/program_memory.snap index 11d69386b..d10ddf0c8 100644 --- a/src/wasm-lib/kcl/tests/pipe_as_arg/program_memory.snap +++ b/src/wasm-lib/kcl/tests/pipe_as_arg/program_memory.snap @@ -1,1118 +1,1069 @@ --- source: kcl/src/simulation_tests.rs -description: Program memory after executing pipe_as_arg.kcl +description: Variables in memory after executing pipe_as_arg.kcl --- { - "environments": [ - { - "bindings": { - "HALF_TURN": { - "type": "Number", - "value": 180.0, - "__meta": [] - }, - "QUARTER_TURN": { - "type": "Number", - "value": 90.0, - "__meta": [] - }, - "THREE_QUARTER_TURN": { - "type": "Number", - "value": 270.0, - "__meta": [] - }, - "ZERO": { - "type": "Number", - "value": 0.0, - "__meta": [] - }, - "cube": { - "type": "Function", - "expression": { - "body": { - "body": [ - { - "declaration": { - "end": 42, - "id": { - "end": 29, - "name": "l", - "start": 28, - "type": "Identifier" - }, - "init": { - "end": 42, - "left": { - "end": 38, - "name": "length", - "start": 32, - "type": "Identifier", - "type": "Identifier" - }, - "operator": "/", - "right": { - "end": 42, - "raw": "2", - "start": 41, - "type": "Literal", - "type": "Literal", - "value": { - "value": 2.0, - "suffix": "None" - } - }, - "start": 32, - "type": "BinaryExpression", - "type": "BinaryExpression" - }, - "start": 28, - "type": "VariableDeclarator" - }, - "end": 42, - "kind": "const", - "start": 28, - "type": "VariableDeclaration", - "type": "VariableDeclaration" - }, - { - "declaration": { - "end": 58, - "id": { - "end": 46, - "name": "x", - "start": 45, - "type": "Identifier" - }, - "init": { - "computed": false, - "end": 58, - "object": { - "end": 55, - "name": "center", - "start": 49, - "type": "Identifier", - "type": "Identifier" - }, - "property": { - "end": 57, - "raw": "0", - "start": 56, - "type": "Literal", - "type": "Literal", - "value": { - "value": 0.0, - "suffix": "None" - } - }, - "start": 49, - "type": "MemberExpression", - "type": "MemberExpression" - }, - "start": 45, - "type": "VariableDeclarator" - }, - "end": 58, - "kind": "const", - "start": 45, - "type": "VariableDeclaration", - "type": "VariableDeclaration" - }, - { - "declaration": { - "end": 74, - "id": { - "end": 62, - "name": "y", - "start": 61, - "type": "Identifier" - }, - "init": { - "computed": false, - "end": 74, - "object": { - "end": 71, - "name": "center", - "start": 65, - "type": "Identifier", - "type": "Identifier" - }, - "property": { - "end": 73, - "raw": "1", - "start": 72, - "type": "Literal", - "type": "Literal", - "value": { - "value": 1.0, - "suffix": "None" - } - }, - "start": 65, - "type": "MemberExpression", - "type": "MemberExpression" - }, - "start": 61, - "type": "VariableDeclarator" - }, - "end": 74, - "kind": "const", - "start": 61, - "type": "VariableDeclaration", - "type": "VariableDeclaration" - }, - { - "declaration": { - "end": 98, - "id": { - "end": 79, - "name": "p0", - "start": 77, - "type": "Identifier" - }, - "init": { - "elements": [ - { - "end": 89, - "left": { - "argument": { - "end": 85, - "name": "l", - "start": 84, - "type": "Identifier", - "type": "Identifier" - }, - "end": 85, - "operator": "-", - "start": 83, - "type": "UnaryExpression", - "type": "UnaryExpression" - }, - "operator": "+", - "right": { - "end": 89, - "name": "x", - "start": 88, - "type": "Identifier", - "type": "Identifier" - }, - "start": 83, - "type": "BinaryExpression", - "type": "BinaryExpression" - }, - { - "end": 97, - "left": { - "argument": { - "end": 93, - "name": "l", - "start": 92, - "type": "Identifier", - "type": "Identifier" - }, - "end": 93, - "operator": "-", - "start": 91, - "type": "UnaryExpression", - "type": "UnaryExpression" - }, - "operator": "+", - "right": { - "end": 97, - "name": "y", - "start": 96, - "type": "Identifier", - "type": "Identifier" - }, - "start": 91, - "type": "BinaryExpression", - "type": "BinaryExpression" - } - ], - "end": 98, - "start": 82, - "type": "ArrayExpression", - "type": "ArrayExpression" - }, - "start": 77, - "type": "VariableDeclarator" - }, - "end": 98, - "kind": "const", - "start": 77, - "type": "VariableDeclaration", - "type": "VariableDeclaration" - }, - { - "declaration": { - "end": 121, - "id": { - "end": 103, - "name": "p1", - "start": 101, - "type": "Identifier" - }, - "init": { - "elements": [ - { - "end": 113, - "left": { - "argument": { - "end": 109, - "name": "l", - "start": 108, - "type": "Identifier", - "type": "Identifier" - }, - "end": 109, - "operator": "-", - "start": 107, - "type": "UnaryExpression", - "type": "UnaryExpression" - }, - "operator": "+", - "right": { - "end": 113, - "name": "x", - "start": 112, - "type": "Identifier", - "type": "Identifier" - }, - "start": 107, - "type": "BinaryExpression", - "type": "BinaryExpression" - }, - { - "end": 120, - "left": { - "end": 116, - "name": "l", - "start": 115, - "type": "Identifier", - "type": "Identifier" - }, - "operator": "+", - "right": { - "end": 120, - "name": "y", - "start": 119, - "type": "Identifier", - "type": "Identifier" - }, - "start": 115, - "type": "BinaryExpression", - "type": "BinaryExpression" - } - ], - "end": 121, - "start": 106, - "type": "ArrayExpression", - "type": "ArrayExpression" - }, - "start": 101, - "type": "VariableDeclarator" - }, - "end": 121, - "kind": "const", - "start": 101, - "type": "VariableDeclaration", - "type": "VariableDeclaration" - }, - { - "declaration": { - "end": 143, - "id": { - "end": 126, - "name": "p2", - "start": 124, - "type": "Identifier" - }, - "init": { - "elements": [ - { - "end": 135, - "left": { - "end": 131, - "name": "l", - "start": 130, - "type": "Identifier", - "type": "Identifier" - }, - "operator": "+", - "right": { - "end": 135, - "name": "x", - "start": 134, - "type": "Identifier", - "type": "Identifier" - }, - "start": 130, - "type": "BinaryExpression", - "type": "BinaryExpression" - }, - { - "end": 142, - "left": { - "end": 138, - "name": "l", - "start": 137, - "type": "Identifier", - "type": "Identifier" - }, - "operator": "+", - "right": { - "end": 142, - "name": "y", - "start": 141, - "type": "Identifier", - "type": "Identifier" - }, - "start": 137, - "type": "BinaryExpression", - "type": "BinaryExpression" - } - ], - "end": 143, - "start": 129, - "type": "ArrayExpression", - "type": "ArrayExpression" - }, - "start": 124, - "type": "VariableDeclarator" - }, - "end": 143, - "kind": "const", - "start": 124, - "type": "VariableDeclaration", - "type": "VariableDeclaration" - }, - { - "declaration": { - "end": 166, - "id": { - "end": 148, - "name": "p3", - "start": 146, - "type": "Identifier" - }, - "init": { - "elements": [ - { - "end": 157, - "left": { - "end": 153, - "name": "l", - "start": 152, - "type": "Identifier", - "type": "Identifier" - }, - "operator": "+", - "right": { - "end": 157, - "name": "x", - "start": 156, - "type": "Identifier", - "type": "Identifier" - }, - "start": 152, - "type": "BinaryExpression", - "type": "BinaryExpression" - }, - { - "end": 165, - "left": { - "argument": { - "end": 161, - "name": "l", - "start": 160, - "type": "Identifier", - "type": "Identifier" - }, - "end": 161, - "operator": "-", - "start": 159, - "type": "UnaryExpression", - "type": "UnaryExpression" - }, - "operator": "+", - "right": { - "end": 165, - "name": "y", - "start": 164, - "type": "Identifier", - "type": "Identifier" - }, - "start": 159, - "type": "BinaryExpression", - "type": "BinaryExpression" - } - ], - "end": 166, - "start": 151, - "type": "ArrayExpression", - "type": "ArrayExpression" - }, - "start": 146, - "type": "VariableDeclarator" - }, - "end": 166, - "kind": "const", - "start": 146, - "type": "VariableDeclaration", - "type": "VariableDeclaration" - }, - { - "argument": { - "body": [ - { - "arguments": [ - { - "end": 193, - "name": "p0", - "start": 191, - "type": "Identifier", - "type": "Identifier" - } - ], - "callee": { - "end": 190, - "name": "startSketchAt", - "start": 177, - "type": "Identifier" - }, - "end": 194, - "start": 177, - "type": "CallExpression", - "type": "CallExpression" - }, - { - "arguments": [ - { - "type": "LabeledArg", - "label": { - "type": "Identifier", - "name": "endAbsolute" - }, - "arg": { - "end": 223, - "name": "p1", - "start": 221, - "type": "Identifier", - "type": "Identifier" - } - } - ], - "callee": { - "end": 206, - "name": "line", - "start": 202, - "type": "Identifier" - }, - "end": 224, - "start": 202, - "type": "CallExpressionKw", - "type": "CallExpressionKw", - "unlabeled": null - }, - { - "arguments": [ - { - "type": "LabeledArg", - "label": { - "type": "Identifier", - "name": "endAbsolute" - }, - "arg": { - "end": 253, - "name": "p2", - "start": 251, - "type": "Identifier", - "type": "Identifier" - } - } - ], - "callee": { - "end": 236, - "name": "line", - "start": 232, - "type": "Identifier" - }, - "end": 254, - "start": 232, - "type": "CallExpressionKw", - "type": "CallExpressionKw", - "unlabeled": null - }, - { - "arguments": [ - { - "type": "LabeledArg", - "label": { - "type": "Identifier", - "name": "endAbsolute" - }, - "arg": { - "end": 283, - "name": "p3", - "start": 281, - "type": "Identifier", - "type": "Identifier" - } - } - ], - "callee": { - "end": 266, - "name": "line", - "start": 262, - "type": "Identifier" - }, - "end": 284, - "start": 262, - "type": "CallExpressionKw", - "type": "CallExpressionKw", - "unlabeled": null - }, - { - "arguments": [ - { - "type": "LabeledArg", - "label": { - "type": "Identifier", - "name": "endAbsolute" - }, - "arg": { - "end": 313, - "name": "p0", - "start": 311, - "type": "Identifier", - "type": "Identifier" - } - } - ], - "callee": { - "end": 296, - "name": "line", - "start": 292, - "type": "Identifier" - }, - "end": 314, - "start": 292, - "type": "CallExpressionKw", - "type": "CallExpressionKw", - "unlabeled": null - }, - { - "arguments": [ - { - "end": 329, - "start": 328, - "type": "PipeSubstitution", - "type": "PipeSubstitution" - } - ], - "callee": { - "end": 327, - "name": "close", - "start": 322, - "type": "Identifier" - }, - "end": 330, - "start": 322, - "type": "CallExpression", - "type": "CallExpression" - }, - { - "arguments": [ - { - "type": "LabeledArg", - "label": { - "type": "Identifier", - "name": "length" - }, - "arg": { - "end": 361, - "name": "length", - "start": 355, - "type": "Identifier", - "type": "Identifier" - } - } - ], - "callee": { - "end": 345, - "name": "extrude", - "start": 338, - "type": "Identifier" - }, - "end": 362, - "start": 338, - "type": "CallExpressionKw", - "type": "CallExpressionKw", - "unlabeled": null - } - ], - "end": 362, - "start": 177, - "type": "PipeExpression", - "type": "PipeExpression" - }, - "end": 362, - "start": 170, - "type": "ReturnStatement", - "type": "ReturnStatement" - } - ], - "end": 364, - "nonCodeMeta": { - "nonCodeNodes": { - "6": [ - { - "end": 170, - "start": 166, - "type": "NonCodeNode", - "value": { - "type": "newLine" - } - } - ] - }, - "startNodes": [] + "HALF_TURN": { + "type": "Number", + "value": 180.0, + "__meta": [] + }, + "QUARTER_TURN": { + "type": "Number", + "value": 90.0, + "__meta": [] + }, + "THREE_QUARTER_TURN": { + "type": "Number", + "value": 270.0, + "__meta": [] + }, + "ZERO": { + "type": "Number", + "value": 0.0, + "__meta": [] + }, + "cube": { + "type": "Function", + "expression": { + "body": { + "body": [ + { + "declaration": { + "end": 42, + "id": { + "end": 29, + "name": "l", + "start": 28, + "type": "Identifier" }, - "start": 24 - }, - "end": 364, - "params": [ - { - "type": "Parameter", - "identifier": { - "end": 14, + "init": { + "end": 42, + "left": { + "end": 38, "name": "length", - "start": 8, + "start": 32, + "type": "Identifier", "type": "Identifier" - } + }, + "operator": "/", + "right": { + "end": 42, + "raw": "2", + "start": 41, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "start": 32, + "type": "BinaryExpression", + "type": "BinaryExpression" }, - { - "type": "Parameter", - "identifier": { - "end": 22, - "name": "center", - "start": 16, - "type": "Identifier" - } - } - ], - "start": 7, - "type": "FunctionExpression" + "start": 28, + "type": "VariableDeclarator" + }, + "end": 42, + "kind": "const", + "start": 28, + "type": "VariableDeclaration", + "type": "VariableDeclaration" }, - "memory": [ - 0, - 1 - ], - "__meta": [ - { - "sourceRange": [ - 7, - 364, - 0 - ] - } - ] - }, - "double": { - "type": "Function", - "expression": { - "body": { - "body": [ - { - "argument": { - "end": 395, + { + "declaration": { + "end": 58, + "id": { + "end": 46, + "name": "x", + "start": 45, + "type": "Identifier" + }, + "init": { + "computed": false, + "end": 58, + "object": { + "end": 55, + "name": "center", + "start": 49, + "type": "Identifier", + "type": "Identifier" + }, + "property": { + "end": 57, + "raw": "0", + "start": 56, + "type": "Literal", + "type": "Literal", + "value": { + "value": 0.0, + "suffix": "None" + } + }, + "start": 49, + "type": "MemberExpression", + "type": "MemberExpression" + }, + "start": 45, + "type": "VariableDeclarator" + }, + "end": 58, + "kind": "const", + "start": 45, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declaration": { + "end": 74, + "id": { + "end": 62, + "name": "y", + "start": 61, + "type": "Identifier" + }, + "init": { + "computed": false, + "end": 74, + "object": { + "end": 71, + "name": "center", + "start": 65, + "type": "Identifier", + "type": "Identifier" + }, + "property": { + "end": 73, + "raw": "1", + "start": 72, + "type": "Literal", + "type": "Literal", + "value": { + "value": 1.0, + "suffix": "None" + } + }, + "start": 65, + "type": "MemberExpression", + "type": "MemberExpression" + }, + "start": 61, + "type": "VariableDeclarator" + }, + "end": 74, + "kind": "const", + "start": 61, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declaration": { + "end": 98, + "id": { + "end": 79, + "name": "p0", + "start": 77, + "type": "Identifier" + }, + "init": { + "elements": [ + { + "end": 89, "left": { - "end": 391, + "argument": { + "end": 85, + "name": "l", + "start": 84, + "type": "Identifier", + "type": "Identifier" + }, + "end": 85, + "operator": "-", + "start": 83, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + "operator": "+", + "right": { + "end": 89, "name": "x", - "start": 390, + "start": 88, "type": "Identifier", "type": "Identifier" }, - "operator": "*", - "right": { - "end": 395, - "raw": "2", - "start": 394, - "type": "Literal", - "type": "Literal", - "value": { - "value": 2.0, - "suffix": "None" - } - }, - "start": 390, + "start": 83, "type": "BinaryExpression", "type": "BinaryExpression" }, - "end": 395, - "start": 383, - "type": "ReturnStatement", - "type": "ReturnStatement" - } - ], - "end": 397, - "start": 379 + { + "end": 97, + "left": { + "argument": { + "end": 93, + "name": "l", + "start": 92, + "type": "Identifier", + "type": "Identifier" + }, + "end": 93, + "operator": "-", + "start": 91, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + "operator": "+", + "right": { + "end": 97, + "name": "y", + "start": 96, + "type": "Identifier", + "type": "Identifier" + }, + "start": 91, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + ], + "end": 98, + "start": 82, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + "start": 77, + "type": "VariableDeclarator" }, - "end": 397, - "params": [ - { - "type": "Parameter", - "identifier": { - "end": 377, - "name": "x", - "start": 376, - "type": "Identifier" - } - } - ], - "start": 375, - "type": "FunctionExpression" + "end": 98, + "kind": "const", + "start": 77, + "type": "VariableDeclaration", + "type": "VariableDeclaration" }, - "memory": [ - 0, - 2 - ], - "__meta": [ - { - "sourceRange": [ - 375, - 397, - 0 - ] - } - ] - }, - "myCube": { - "type": "Solid", - "value": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 202, - 224, - 0 - ], - "tag": null, - "type": "extrudePlane" + { + "declaration": { + "end": 121, + "id": { + "end": 103, + "name": "p1", + "start": 101, + "type": "Identifier" }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 232, - 254, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 262, - 284, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 292, - 314, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 202, - 224, - 0 - ] + "init": { + "elements": [ + { + "end": 113, + "left": { + "argument": { + "end": 109, + "name": "l", + "start": 108, + "type": "Identifier", + "type": "Identifier" + }, + "end": 109, + "operator": "-", + "start": 107, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + "operator": "+", + "right": { + "end": 113, + "name": "x", + "start": 112, + "type": "Identifier", + "type": "Identifier" + }, + "start": 107, + "type": "BinaryExpression", + "type": "BinaryExpression" }, - "from": [ - -200.0, - -200.0 - ], - "tag": null, - "to": [ - -200.0, - 200.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 232, - 254, - 0 - ] - }, - "from": [ - -200.0, - 200.0 - ], - "tag": null, - "to": [ - 200.0, - 200.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 262, - 284, - 0 - ] - }, - "from": [ - 200.0, - 200.0 - ], - "tag": null, - "to": [ - 200.0, - -200.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 292, - 314, - 0 - ] - }, - "from": [ - 200.0, - -200.0 - ], - "tag": null, - "to": [ - -200.0, - -200.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 322, - 330, - 0 - ] - }, - "from": [ - -200.0, - -200.0 - ], - "tag": null, - "to": [ - -200.0, - -200.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - -200.0, - -200.0 + { + "end": 120, + "left": { + "end": 116, + "name": "l", + "start": 115, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "+", + "right": { + "end": 120, + "name": "y", + "start": 119, + "type": "Identifier", + "type": "Identifier" + }, + "start": 115, + "type": "BinaryExpression", + "type": "BinaryExpression" + } ], - "to": [ - -200.0, - -200.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 177, - 194, - 0 - ] - } + "end": 121, + "start": 106, + "type": "ArrayExpression", + "type": "ArrayExpression" }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 177, - 194, - 0 - ] - } - ] + "start": 101, + "type": "VariableDeclarator" }, - "height": 400.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" + "end": 121, + "kind": "const", + "start": 101, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declaration": { + "end": 143, + "id": { + "end": 126, + "name": "p2", + "start": 124, + "type": "Identifier" + }, + "init": { + "elements": [ + { + "end": 135, + "left": { + "end": 131, + "name": "l", + "start": 130, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "+", + "right": { + "end": 135, + "name": "x", + "start": 134, + "type": "Identifier", + "type": "Identifier" + }, + "start": 130, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + { + "end": 142, + "left": { + "end": 138, + "name": "l", + "start": 137, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "+", + "right": { + "end": 142, + "name": "y", + "start": 141, + "type": "Identifier", + "type": "Identifier" + }, + "start": 137, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + ], + "end": 143, + "start": 129, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + "start": 124, + "type": "VariableDeclarator" }, - "__meta": [ - { - "sourceRange": [ - 177, - 194, - 0 - ] - } - ] - } - }, - "width": { - "type": "Function", - "expression": { - "body": { + "end": 143, + "kind": "const", + "start": 124, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "declaration": { + "end": 166, + "id": { + "end": 148, + "name": "p3", + "start": 146, + "type": "Identifier" + }, + "init": { + "elements": [ + { + "end": 157, + "left": { + "end": 153, + "name": "l", + "start": 152, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "+", + "right": { + "end": 157, + "name": "x", + "start": 156, + "type": "Identifier", + "type": "Identifier" + }, + "start": 152, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + { + "end": 165, + "left": { + "argument": { + "end": 161, + "name": "l", + "start": 160, + "type": "Identifier", + "type": "Identifier" + }, + "end": 161, + "operator": "-", + "start": 159, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + "operator": "+", + "right": { + "end": 165, + "name": "y", + "start": 164, + "type": "Identifier", + "type": "Identifier" + }, + "start": 159, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + ], + "end": 166, + "start": 151, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + "start": 146, + "type": "VariableDeclarator" + }, + "end": 166, + "kind": "const", + "start": 146, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "argument": { "body": [ { - "argument": { - "end": 423, - "raw": "200", - "start": 420, - "type": "Literal", - "type": "Literal", - "value": { - "value": 200.0, - "suffix": "None" + "arguments": [ + { + "end": 193, + "name": "p0", + "start": 191, + "type": "Identifier", + "type": "Identifier" } + ], + "callee": { + "end": 190, + "name": "startSketchAt", + "start": 177, + "type": "Identifier" }, - "end": 423, - "start": 413, - "type": "ReturnStatement", - "type": "ReturnStatement" + "end": 194, + "start": 177, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "type": "Identifier", + "name": "endAbsolute" + }, + "arg": { + "end": 223, + "name": "p1", + "start": 221, + "type": "Identifier", + "type": "Identifier" + } + } + ], + "callee": { + "end": 206, + "name": "line", + "start": 202, + "type": "Identifier" + }, + "end": 224, + "start": 202, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "type": "Identifier", + "name": "endAbsolute" + }, + "arg": { + "end": 253, + "name": "p2", + "start": 251, + "type": "Identifier", + "type": "Identifier" + } + } + ], + "callee": { + "end": 236, + "name": "line", + "start": 232, + "type": "Identifier" + }, + "end": 254, + "start": 232, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "type": "Identifier", + "name": "endAbsolute" + }, + "arg": { + "end": 283, + "name": "p3", + "start": 281, + "type": "Identifier", + "type": "Identifier" + } + } + ], + "callee": { + "end": 266, + "name": "line", + "start": 262, + "type": "Identifier" + }, + "end": 284, + "start": 262, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "type": "Identifier", + "name": "endAbsolute" + }, + "arg": { + "end": 313, + "name": "p0", + "start": 311, + "type": "Identifier", + "type": "Identifier" + } + } + ], + "callee": { + "end": 296, + "name": "line", + "start": 292, + "type": "Identifier" + }, + "end": 314, + "start": 292, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "end": 329, + "start": 328, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 327, + "name": "close", + "start": 322, + "type": "Identifier" + }, + "end": 330, + "start": 322, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "type": "Identifier", + "name": "length" + }, + "arg": { + "end": 361, + "name": "length", + "start": 355, + "type": "Identifier", + "type": "Identifier" + } + } + ], + "callee": { + "end": 345, + "name": "extrude", + "start": 338, + "type": "Identifier" + }, + "end": 362, + "start": 338, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null } ], - "end": 425, - "start": 409 + "end": 362, + "start": 177, + "type": "PipeExpression", + "type": "PipeExpression" }, - "end": 425, - "params": [], - "start": 406, - "type": "FunctionExpression" + "end": 362, + "start": 170, + "type": "ReturnStatement", + "type": "ReturnStatement" + } + ], + "end": 364, + "nonCodeMeta": { + "nonCodeNodes": { + "6": [ + { + "end": 170, + "start": 166, + "type": "NonCodeNode", + "value": { + "type": "newLine" + } + } + ] }, - "memory": [ - 0, - 3 - ], - "__meta": [ - { - "sourceRange": [ - 406, - 425, - 0 - ] - } - ] - } + "startNodes": [] + }, + "start": 24 }, - "snapshots": [ + "end": 364, + "params": [ { - "parent_snapshot": null, - "data": { - "cube": { - "type": "Tombstone", - "value": null, - "__meta": [] - } + "type": "Parameter", + "identifier": { + "end": 14, + "name": "length", + "start": 8, + "type": "Identifier" } }, { - "parent_snapshot": null, - "data": { - "double": { - "type": "Tombstone", - "value": null, - "__meta": [] - } - } - }, - { - "parent_snapshot": null, - "data": { - "myCube": { - "type": "Tombstone", - "value": null, - "__meta": [] - }, - "width": { - "type": "Tombstone", - "value": null, - "__meta": [] - } + "type": "Parameter", + "identifier": { + "end": 22, + "name": "center", + "start": 16, + "type": "Identifier" } } ], - "parent": null + "start": 7, + "type": "FunctionExpression" + }, + "memory": [ + 0, + 1 + ], + "__meta": [ + { + "sourceRange": [ + 7, + 364, + 0 + ] + } + ] + }, + "double": { + "type": "Function", + "expression": { + "body": { + "body": [ + { + "argument": { + "end": 395, + "left": { + "end": 391, + "name": "x", + "start": 390, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "*", + "right": { + "end": 395, + "raw": "2", + "start": 394, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "start": 390, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "end": 395, + "start": 383, + "type": "ReturnStatement", + "type": "ReturnStatement" + } + ], + "end": 397, + "start": 379 + }, + "end": 397, + "params": [ + { + "type": "Parameter", + "identifier": { + "end": 377, + "name": "x", + "start": 376, + "type": "Identifier" + } + } + ], + "start": 375, + "type": "FunctionExpression" + }, + "memory": [ + 0, + 2 + ], + "__meta": [ + { + "sourceRange": [ + 375, + 397, + 0 + ] + } + ] + }, + "myCube": { + "type": "Solid", + "value": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 202, + 224, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 232, + 254, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 262, + 284, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 292, + 314, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 202, + 224, + 0 + ] + }, + "from": [ + -200.0, + -200.0 + ], + "tag": null, + "to": [ + -200.0, + 200.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 232, + 254, + 0 + ] + }, + "from": [ + -200.0, + 200.0 + ], + "tag": null, + "to": [ + 200.0, + 200.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 262, + 284, + 0 + ] + }, + "from": [ + 200.0, + 200.0 + ], + "tag": null, + "to": [ + 200.0, + -200.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 292, + 314, + 0 + ] + }, + "from": [ + 200.0, + -200.0 + ], + "tag": null, + "to": [ + -200.0, + -200.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 322, + 330, + 0 + ] + }, + "from": [ + -200.0, + -200.0 + ], + "tag": null, + "to": [ + -200.0, + -200.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + -200.0, + -200.0 + ], + "to": [ + -200.0, + -200.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 177, + 194, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 177, + 194, + 0 + ] + } + ] + }, + "height": 400.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 177, + 194, + 0 + ] + } + ] } - ], - "currentEnv": [ - 0, - 0 - ], - "callStack": [] + }, + "width": { + "type": "Function", + "expression": { + "body": { + "body": [ + { + "argument": { + "end": 423, + "raw": "200", + "start": 420, + "type": "Literal", + "type": "Literal", + "value": { + "value": 200.0, + "suffix": "None" + } + }, + "end": 423, + "start": 413, + "type": "ReturnStatement", + "type": "ReturnStatement" + } + ], + "end": 425, + "start": 409 + }, + "end": 425, + "params": [], + "start": 406, + "type": "FunctionExpression" + }, + "memory": [ + 0, + 3 + ], + "__meta": [ + { + "sourceRange": [ + 406, + 425, + 0 + ] + } + ] + } } diff --git a/src/wasm-lib/kcl/tests/poop_chute/program_memory.snap b/src/wasm-lib/kcl/tests/poop_chute/program_memory.snap index 1a05388dc..f30dcb68f 100644 --- a/src/wasm-lib/kcl/tests/poop_chute/program_memory.snap +++ b/src/wasm-lib/kcl/tests/poop_chute/program_memory.snap @@ -1,167 +1,654 @@ --- source: kcl/src/simulation_tests.rs -description: Program memory after executing poop_chute.kcl +description: Variables in memory after executing poop_chute.kcl --- { - "environments": [ - { - "bindings": { - "Fx": { - "type": "Number", - "value": 0.5, - "__meta": [ - { + "Fx": { + "type": "Number", + "value": 0.5, + "__meta": [ + { + "sourceRange": [ + 156, + 159, + 0 + ] + } + ] + }, + "Fy": { + "type": "Number", + "value": 0.5, + "__meta": [ + { + "sourceRange": [ + 165, + 168, + 0 + ] + } + ] + }, + "HALF_TURN": { + "type": "Number", + "value": 180.0, + "__meta": [] + }, + "QUARTER_TURN": { + "type": "Number", + "value": 90.0, + "__meta": [] + }, + "THREE_QUARTER_TURN": { + "type": "Number", + "value": 270.0, + "__meta": [] + }, + "ZERO": { + "type": "Number", + "value": 0.0, + "__meta": [] + }, + "back_length": { + "type": "Number", + "value": 7.0, + "__meta": [ + { + "sourceRange": [ + 116, + 117, + 0 + ] + } + ] + }, + "back_walls_width": { + "type": "Number", + "value": 2.0, + "__meta": [ + { + "sourceRange": [ + 42, + 43, + 0 + ] + } + ] + }, + "exit_height": { + "type": "Number", + "value": 1.0, + "__meta": [ + { + "sourceRange": [ + 132, + 133, + 0 + ] + } + ] + }, + "filletRadius": { + "type": "Number", + "value": 0.05, + "__meta": [ + { + "sourceRange": [ + 96, + 101, + 0 + ] + } + ] + }, + "front_length": { + "type": "Number", + "value": 6.0, + "__meta": [ + { + "sourceRange": [ + 149, + 150, + 0 + ] + } + ] + }, + "front_walls_width": { + "type": "Number", + "value": 2.5, + "__meta": [ + { + "sourceRange": [ + 64, + 67, + 0 + ] + } + ] + }, + "height": { + "type": "Number", + "value": 5.5, + "__meta": [ + { + "sourceRange": [ + 77, + 80, + 0 + ] + } + ] + }, + "part001": { + "type": "Solid", + "value": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 258, + 286, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 292, + 355, + 0 + ], + "tag": { + "end": 354, + "start": 348, + "type": "TagDeclarator", + "value": "seg01" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 361, + 379, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 385, + 410, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 416, + 442, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 448, + 547, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 553, + 578, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 584, + 662, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 668, + 686, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 692, + 705, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 711, + 737, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 743, + 789, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 795, + 803, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", "sourceRange": [ - 156, - 159, + 258, + 286, 0 ] - } - ] - }, - "Fy": { - "type": "Number", - "value": 0.5, - "__meta": [ - { + }, + "from": [ + 1.0, + 0.0 + ], + "tag": null, + "to": [ + 1.0625, + 0.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", "sourceRange": [ - 165, - 168, + 292, + 355, 0 ] - } - ] - }, - "HALF_TURN": { - "type": "Number", - "value": 180.0, + }, + "from": [ + 1.0625, + 0.0 + ], + "tag": { + "end": 354, + "start": 348, + "type": "TagDeclarator", + "value": "seg01" + }, + "to": [ + 2.0, + 0.9375 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 361, + 379, + 0 + ] + }, + "from": [ + 2.0, + 0.9375 + ], + "tag": null, + "to": [ + 2.0, + 5.5 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 385, + 410, + 0 + ] + }, + "from": [ + 2.0, + 5.5 + ], + "tag": null, + "to": [ + 1.875, + 5.5 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 416, + 442, + 0 + ] + }, + "from": [ + 1.875, + 5.5 + ], + "tag": null, + "to": [ + 1.875, + 0.9375 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 448, + 547, + 0 + ] + }, + "from": [ + 1.875, + 0.9375 + ], + "tag": null, + "to": [ + 1.0625, + 0.125 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 553, + 578, + 0 + ] + }, + "from": [ + 1.0625, + 0.125 + ], + "tag": null, + "to": [ + 0.9375, + 0.125 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 584, + 662, + 0 + ] + }, + "from": [ + 0.9375, + 0.125 + ], + "tag": null, + "to": [ + 0.125, + 0.9375 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 668, + 686, + 0 + ] + }, + "from": [ + 0.125, + 0.9375 + ], + "tag": null, + "to": [ + 0.125, + 5.5 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 692, + 705, + 0 + ] + }, + "from": [ + 0.125, + 5.5 + ], + "tag": null, + "to": [ + 0.0, + 5.5 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 711, + 737, + 0 + ] + }, + "from": [ + 0.0, + 5.5 + ], + "tag": null, + "to": [ + 0.0, + 0.9375 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 743, + 789, + 0 + ] + }, + "from": [ + 0.0, + 0.9375 + ], + "tag": null, + "to": [ + 0.9375, + 0.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 795, + 803, + 0 + ] + }, + "from": [ + 0.9375, + 0.0 + ], + "tag": null, + "to": [ + 1.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "YZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, "__meta": [] }, - "QUARTER_TURN": { - "type": "Number", - "value": 90.0, - "__meta": [] - }, - "THREE_QUARTER_TURN": { - "type": "Number", - "value": 270.0, - "__meta": [] - }, - "ZERO": { - "type": "Number", - "value": 0.0, - "__meta": [] - }, - "back_length": { - "type": "Number", - "value": 7.0, - "__meta": [ - { - "sourceRange": [ - 116, - 117, - 0 - ] - } - ] - }, - "back_walls_width": { - "type": "Number", - "value": 2.0, - "__meta": [ - { - "sourceRange": [ - 42, - 43, - 0 - ] - } - ] - }, - "exit_height": { - "type": "Number", - "value": 1.0, - "__meta": [ - { - "sourceRange": [ - 132, - 133, - 0 - ] - } - ] - }, - "filletRadius": { - "type": "Number", - "value": 0.05, - "__meta": [ - { - "sourceRange": [ - 96, - 101, - 0 - ] - } - ] - }, - "front_length": { - "type": "Number", - "value": 6.0, - "__meta": [ - { - "sourceRange": [ - 149, - 150, - 0 - ] - } - ] - }, - "front_walls_width": { - "type": "Number", - "value": 2.5, - "__meta": [ - { - "sourceRange": [ - 64, - 67, - 0 - ] - } - ] - }, - "height": { - "type": "Number", - "value": 5.5, - "__meta": [ - { - "sourceRange": [ - 77, - 80, - 0 - ] - } - ] - }, - "part001": { - "type": "Solid", - "value": { - "type": "Solid", + "start": { + "from": [ + 1.0, + 0.0 + ], + "to": [ + 1.0, + 0.0 + ], + "tag": null, + "__geoMeta": { "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 258, - 286, - 0 + "sourceRange": [ + 208, + 252, + 0 + ] + } + }, + "tags": { + "seg01": { + "type": "TagIdentifier", + "value": "seg01", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 292, + 355, + 0 + ] + }, + "from": [ + 1.0625, + 0.0 ], - "tag": null, - "type": "extrudePlane" + "tag": { + "end": 354, + "start": 348, + "type": "TagDeclarator", + "value": "seg01" + }, + "to": [ + 2.0, + 0.9374999999999999 + ], + "type": "ToPoint" }, - { + "surface": { "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ @@ -176,543 +663,494 @@ description: Program memory after executing poop_chute.kcl "value": "seg01" }, "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 361, - 379, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 385, - 410, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 416, - 442, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 448, - 547, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 553, - 578, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 584, - 662, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 668, - 686, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 692, - 705, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 711, - 737, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 743, - 789, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 795, - 803, - 0 - ], - "tag": null, - "type": "extrudePlane" } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 258, - 286, - 0 - ] - }, - "from": [ - 1.0, - 0.0 - ], - "tag": null, - "to": [ - 1.0625, - 0.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 292, - 355, - 0 - ] - }, - "from": [ - 1.0625, - 0.0 - ], - "tag": { - "end": 354, - "start": 348, - "type": "TagDeclarator", - "value": "seg01" - }, - "to": [ - 2.0, - 0.9375 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 361, - 379, - 0 - ] - }, - "from": [ - 2.0, - 0.9375 - ], - "tag": null, - "to": [ - 2.0, - 5.5 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 385, - 410, - 0 - ] - }, - "from": [ - 2.0, - 5.5 - ], - "tag": null, - "to": [ - 1.875, - 5.5 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 416, - 442, - 0 - ] - }, - "from": [ - 1.875, - 5.5 - ], - "tag": null, - "to": [ - 1.875, - 0.9375 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 448, - 547, - 0 - ] - }, - "from": [ - 1.875, - 0.9375 - ], - "tag": null, - "to": [ - 1.0625, - 0.125 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 553, - 578, - 0 - ] - }, - "from": [ - 1.0625, - 0.125 - ], - "tag": null, - "to": [ - 0.9375, - 0.125 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 584, - 662, - 0 - ] - }, - "from": [ - 0.9375, - 0.125 - ], - "tag": null, - "to": [ - 0.125, - 0.9375 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 668, - 686, - 0 - ] - }, - "from": [ - 0.125, - 0.9375 - ], - "tag": null, - "to": [ - 0.125, - 5.5 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 692, - 705, - 0 - ] - }, - "from": [ - 0.125, - 5.5 - ], - "tag": null, - "to": [ - 0.0, - 5.5 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 711, - 737, - 0 - ] - }, - "from": [ - 0.0, - 5.5 - ], - "tag": null, - "to": [ - 0.0, - 0.9375 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 743, - 789, - 0 - ] - }, - "from": [ - 0.0, - 0.9375 - ], - "tag": null, - "to": [ - 0.9375, - 0.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 795, - 803, - 0 - ] - }, - "from": [ - 0.9375, - 0.0 - ], - "tag": null, - "to": [ - 1.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "YZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": -1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 1.0, - 0.0 - ], - "to": [ - 1.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 208, - 252, - 0 - ] - } - }, - "tags": { - "seg01": { - "type": "TagIdentifier", - "value": "seg01", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 292, - 355, - 0 - ] - }, - "from": [ - 1.0625, - 0.0 - ], - "tag": { - "end": 354, - "start": 348, - "type": "TagDeclarator", - "value": "seg01" - }, - "to": [ - 2.0, - 0.9374999999999999 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 292, - 355, - 0 - ], - "tag": { - "end": 354, - "start": 348, - "type": "TagDeclarator", - "value": "seg01" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 348, - 354, - 0 - ] - } - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 208, - 252, - 0 - ] - } - ] - }, - "height": 0.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" }, "__meta": [ { "sourceRange": [ - 208, - 252, + 348, + 354, 0 ] } ] } }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 208, + 252, + 0 + ] + } + ] + }, + "height": 0.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 208, + 252, + 0 + ] + } + ] + } + }, + "seg01": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "seg01", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 292, + 355, + 0 + ] + }, + "from": [ + 1.0625, + 0.0 + ], + "tag": { + "end": 354, + "start": 348, + "type": "TagDeclarator", + "value": "seg01" + }, + "to": [ + 2.0, + 0.9374999999999999 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 292, + 355, + 0 + ], + "tag": { + "end": 354, + "start": 348, + "type": "TagDeclarator", + "value": "seg01" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 348, + 354, + 0 + ] + } + ] + }, + "seg02": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "seg02", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1076, + 1139, + 0 + ] + }, + "from": [ + 1.0625, + 0.0 + ], + "tag": { + "end": 1138, + "start": 1132, + "type": "TagDeclarator", + "value": "seg02" + }, + "to": [ + 2.0, + 0.9374999999999999 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1076, + 1139, + 0 + ], + "tag": { + "end": 1138, + "start": 1132, + "type": "TagDeclarator", + "value": "seg02" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 1132, + 1138, + 0 + ] + } + ] + }, + "sketch001": { + "type": "Sketch", + "value": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 258, + 286, + 0 + ] + }, + "from": [ + 1.0, + 0.0 + ], + "tag": null, + "to": [ + 1.0625, + 0.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 292, + 355, + 0 + ] + }, + "from": [ + 1.0625, + 0.0 + ], + "tag": { + "end": 354, + "start": 348, + "type": "TagDeclarator", + "value": "seg01" + }, + "to": [ + 2.0, + 0.9375 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 361, + 379, + 0 + ] + }, + "from": [ + 2.0, + 0.9375 + ], + "tag": null, + "to": [ + 2.0, + 5.5 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 385, + 410, + 0 + ] + }, + "from": [ + 2.0, + 5.5 + ], + "tag": null, + "to": [ + 1.875, + 5.5 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 416, + 442, + 0 + ] + }, + "from": [ + 1.875, + 5.5 + ], + "tag": null, + "to": [ + 1.875, + 0.9375 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 448, + 547, + 0 + ] + }, + "from": [ + 1.875, + 0.9375 + ], + "tag": null, + "to": [ + 1.0625, + 0.125 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 553, + 578, + 0 + ] + }, + "from": [ + 1.0625, + 0.125 + ], + "tag": null, + "to": [ + 0.9375, + 0.125 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 584, + 662, + 0 + ] + }, + "from": [ + 0.9375, + 0.125 + ], + "tag": null, + "to": [ + 0.125, + 0.9375 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 668, + 686, + 0 + ] + }, + "from": [ + 0.125, + 0.9375 + ], + "tag": null, + "to": [ + 0.125, + 5.5 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 692, + 705, + 0 + ] + }, + "from": [ + 0.125, + 5.5 + ], + "tag": null, + "to": [ + 0.0, + 5.5 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 711, + 737, + 0 + ] + }, + "from": [ + 0.0, + 5.5 + ], + "tag": null, + "to": [ + 0.0, + 0.9375 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 743, + 789, + 0 + ] + }, + "from": [ + 0.0, + 0.9375 + ], + "tag": null, + "to": [ + 0.9375, + 0.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 795, + 803, + 0 + ] + }, + "from": [ + 0.9375, + 0.0 + ], + "tag": null, + "to": [ + 1.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "YZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 1.0, + 0.0 + ], + "to": [ + 1.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 208, + 252, + 0 + ] + } + }, + "tags": { "seg01": { - "type": "TagIdentifier", "type": "TagIdentifier", "value": "seg01", "info": { @@ -770,99 +1208,513 @@ description: Program memory after executing poop_chute.kcl ] } ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 208, + 252, + 0 + ] + } + ] + } + }, + "sketch002": { + "type": "Solid", + "value": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1042, + 1070, + 0 + ], + "tag": null, + "type": "extrudePlane" }, - "seg02": { - "type": "TagIdentifier", - "type": "TagIdentifier", - "value": "seg02", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1076, - 1139, - 0 - ] - }, - "from": [ - 1.0625, - 0.0 - ], - "tag": { - "end": 1138, - "start": 1132, - "type": "TagDeclarator", - "value": "seg02" - }, - "to": [ - 2.0, - 0.9374999999999999 - ], - "type": "ToPoint" + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1076, + 1139, + 0 + ], + "tag": { + "end": 1138, + "start": 1132, + "type": "TagDeclarator", + "value": "seg02" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1145, + 1163, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1169, + 1194, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1200, + 1226, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1232, + 1331, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1337, + 1362, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1368, + 1446, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1452, + 1470, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1476, + 1489, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1495, + 1521, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1527, + 1573, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1579, + 1587, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1042, + 1070, + 0 + ] }, - "surface": { - "faceId": "[uuid]", + "from": [ + 1.0, + 0.0 + ], + "tag": null, + "to": [ + 1.0625, + 0.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { "id": "[uuid]", "sourceRange": [ 1076, 1139, 0 - ], - "tag": { - "end": 1138, - "start": 1132, - "type": "TagDeclarator", - "value": "seg02" - }, - "type": "extrudePlane" - } + ] + }, + "from": [ + 1.0625, + 0.0 + ], + "tag": { + "end": 1138, + "start": 1132, + "type": "TagDeclarator", + "value": "seg02" + }, + "to": [ + 2.0, + 0.9375 + ], + "type": "ToPoint" }, - "__meta": [ - { + { + "__geoMeta": { + "id": "[uuid]", "sourceRange": [ - 1132, - 1138, + 1145, + 1163, 0 ] - } - ] + }, + "from": [ + 2.0, + 0.9375 + ], + "tag": null, + "to": [ + 2.0, + 5.5 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1169, + 1194, + 0 + ] + }, + "from": [ + 2.0, + 5.5 + ], + "tag": null, + "to": [ + 1.875, + 5.5 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1200, + 1226, + 0 + ] + }, + "from": [ + 1.875, + 5.5 + ], + "tag": null, + "to": [ + 1.875, + 0.9375 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1232, + 1331, + 0 + ] + }, + "from": [ + 1.875, + 0.9375 + ], + "tag": null, + "to": [ + 1.0625, + 0.125 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1337, + 1362, + 0 + ] + }, + "from": [ + 1.0625, + 0.125 + ], + "tag": null, + "to": [ + 0.9375, + 0.125 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1368, + 1446, + 0 + ] + }, + "from": [ + 0.9375, + 0.125 + ], + "tag": null, + "to": [ + 0.125, + 0.9375 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1452, + 1470, + 0 + ] + }, + "from": [ + 0.125, + 0.9375 + ], + "tag": null, + "to": [ + 0.125, + 5.5 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1476, + 1489, + 0 + ] + }, + "from": [ + 0.125, + 5.5 + ], + "tag": null, + "to": [ + 0.0, + 5.5 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1495, + 1521, + 0 + ] + }, + "from": [ + 0.0, + 5.5 + ], + "tag": null, + "to": [ + 0.0, + 0.9375 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1527, + 1573, + 0 + ] + }, + "from": [ + 0.0, + 0.9375 + ], + "tag": null, + "to": [ + 0.9375, + 0.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1579, + 1587, + 0 + ] + }, + "from": [ + 0.9375, + 0.0 + ], + "tag": null, + "to": [ + 1.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "YZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] }, - "sketch001": { - "type": "Sketch", - "value": { - "type": "Sketch", + "start": { + "from": [ + 1.0, + 0.0 + ], + "to": [ + 1.0, + 0.0 + ], + "tag": null, + "__geoMeta": { "id": "[uuid]", - "paths": [ - { + "sourceRange": [ + 992, + 1036, + 0 + ] + } + }, + "tags": { + "seg02": { + "type": "TagIdentifier", + "value": "seg02", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { "__geoMeta": { "id": "[uuid]", "sourceRange": [ - 258, - 286, - 0 - ] - }, - "from": [ - 1.0, - 0.0 - ], - "tag": null, - "to": [ - 1.0625, - 0.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 292, - 355, + 1076, + 1139, 0 ] }, @@ -871,383 +1723,18 @@ description: Program memory after executing poop_chute.kcl 0.0 ], "tag": { - "end": 354, - "start": 348, + "end": 1138, + "start": 1132, "type": "TagDeclarator", - "value": "seg01" + "value": "seg02" }, "to": [ 2.0, - 0.9375 + 0.9374999999999999 ], "type": "ToPoint" }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 361, - 379, - 0 - ] - }, - "from": [ - 2.0, - 0.9375 - ], - "tag": null, - "to": [ - 2.0, - 5.5 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 385, - 410, - 0 - ] - }, - "from": [ - 2.0, - 5.5 - ], - "tag": null, - "to": [ - 1.875, - 5.5 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 416, - 442, - 0 - ] - }, - "from": [ - 1.875, - 5.5 - ], - "tag": null, - "to": [ - 1.875, - 0.9375 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 448, - 547, - 0 - ] - }, - "from": [ - 1.875, - 0.9375 - ], - "tag": null, - "to": [ - 1.0625, - 0.125 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 553, - 578, - 0 - ] - }, - "from": [ - 1.0625, - 0.125 - ], - "tag": null, - "to": [ - 0.9375, - 0.125 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 584, - 662, - 0 - ] - }, - "from": [ - 0.9375, - 0.125 - ], - "tag": null, - "to": [ - 0.125, - 0.9375 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 668, - 686, - 0 - ] - }, - "from": [ - 0.125, - 0.9375 - ], - "tag": null, - "to": [ - 0.125, - 5.5 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 692, - 705, - 0 - ] - }, - "from": [ - 0.125, - 5.5 - ], - "tag": null, - "to": [ - 0.0, - 5.5 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 711, - 737, - 0 - ] - }, - "from": [ - 0.0, - 5.5 - ], - "tag": null, - "to": [ - 0.0, - 0.9375 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 743, - 789, - 0 - ] - }, - "from": [ - 0.0, - 0.9375 - ], - "tag": null, - "to": [ - 0.9375, - 0.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 795, - 803, - 0 - ] - }, - "from": [ - 0.9375, - 0.0 - ], - "tag": null, - "to": [ - 1.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "YZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": -1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 1.0, - 0.0 - ], - "to": [ - 1.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 208, - 252, - 0 - ] - } - }, - "tags": { - "seg01": { - "type": "TagIdentifier", - "value": "seg01", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 292, - 355, - 0 - ] - }, - "from": [ - 1.0625, - 0.0 - ], - "tag": { - "end": 354, - "start": 348, - "type": "TagDeclarator", - "value": "seg01" - }, - "to": [ - 2.0, - 0.9374999999999999 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 292, - 355, - 0 - ], - "tag": { - "end": 354, - "start": 348, - "type": "TagDeclarator", - "value": "seg01" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 348, - 354, - 0 - ] - } - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 208, - 252, - 0 - ] - } - ] - } - }, - "sketch002": { - "type": "Solid", - "value": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1042, - 1070, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { + "surface": { "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ @@ -1262,562 +1749,62 @@ description: Program memory after executing poop_chute.kcl "value": "seg02" }, "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1145, - 1163, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1169, - 1194, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1200, - 1226, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1232, - 1331, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1337, - 1362, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1368, - 1446, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1452, - 1470, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1476, - 1489, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1495, - 1521, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1527, - 1573, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1579, - 1587, - 0 - ], - "tag": null, - "type": "extrudePlane" } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1042, - 1070, - 0 - ] - }, - "from": [ - 1.0, - 0.0 - ], - "tag": null, - "to": [ - 1.0625, - 0.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1076, - 1139, - 0 - ] - }, - "from": [ - 1.0625, - 0.0 - ], - "tag": { - "end": 1138, - "start": 1132, - "type": "TagDeclarator", - "value": "seg02" - }, - "to": [ - 2.0, - 0.9375 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1145, - 1163, - 0 - ] - }, - "from": [ - 2.0, - 0.9375 - ], - "tag": null, - "to": [ - 2.0, - 5.5 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1169, - 1194, - 0 - ] - }, - "from": [ - 2.0, - 5.5 - ], - "tag": null, - "to": [ - 1.875, - 5.5 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1200, - 1226, - 0 - ] - }, - "from": [ - 1.875, - 5.5 - ], - "tag": null, - "to": [ - 1.875, - 0.9375 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1232, - 1331, - 0 - ] - }, - "from": [ - 1.875, - 0.9375 - ], - "tag": null, - "to": [ - 1.0625, - 0.125 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1337, - 1362, - 0 - ] - }, - "from": [ - 1.0625, - 0.125 - ], - "tag": null, - "to": [ - 0.9375, - 0.125 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1368, - 1446, - 0 - ] - }, - "from": [ - 0.9375, - 0.125 - ], - "tag": null, - "to": [ - 0.125, - 0.9375 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1452, - 1470, - 0 - ] - }, - "from": [ - 0.125, - 0.9375 - ], - "tag": null, - "to": [ - 0.125, - 5.5 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1476, - 1489, - 0 - ] - }, - "from": [ - 0.125, - 5.5 - ], - "tag": null, - "to": [ - 0.0, - 5.5 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1495, - 1521, - 0 - ] - }, - "from": [ - 0.0, - 5.5 - ], - "tag": null, - "to": [ - 0.0, - 0.9375 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1527, - 1573, - 0 - ] - }, - "from": [ - 0.0, - 0.9375 - ], - "tag": null, - "to": [ - 0.9375, - 0.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1579, - 1587, - 0 - ] - }, - "from": [ - 0.9375, - 0.0 - ], - "tag": null, - "to": [ - 1.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "YZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": -1.0, - "y": 0.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 1.0, - 0.0 - ], - "to": [ - 1.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 992, - 1036, - 0 - ] - } - }, - "tags": { - "seg02": { - "type": "TagIdentifier", - "value": "seg02", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1076, - 1139, - 0 - ] - }, - "from": [ - 1.0625, - 0.0 - ], - "tag": { - "end": 1138, - "start": 1132, - "type": "TagDeclarator", - "value": "seg02" - }, - "to": [ - 2.0, - 0.9374999999999999 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1076, - 1139, - 0 - ], - "tag": { - "end": 1138, - "start": 1132, - "type": "TagDeclarator", - "value": "seg02" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 1132, - 1138, - 0 - ] - } - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 992, - 1036, - 0 - ] - } - ] - }, - "height": 1.5, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" }, "__meta": [ { "sourceRange": [ - 992, - 1036, + 1132, + 1138, 0 ] } ] } }, - "wall_thickness": { - "type": "Number", - "value": 0.125, - "__meta": [ - { - "sourceRange": [ - 17, - 22, - 0 - ] - } + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 992, + 1036, + 0 + ] + } + ] + }, + "height": 1.5, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 992, + 1036, + 0 ] } - }, - "snapshots": [], - "parent": null + ] } - ], - "currentEnv": [ - 0, - 0 - ], - "callStack": [] + }, + "wall_thickness": { + "type": "Number", + "value": 0.125, + "__meta": [ + { + "sourceRange": [ + 17, + 22, + 0 + ] + } + ] + } } diff --git a/src/wasm-lib/kcl/tests/property_of_object/program_memory.snap b/src/wasm-lib/kcl/tests/property_of_object/program_memory.snap index 18e271917..d00ad0c21 100644 --- a/src/wasm-lib/kcl/tests/property_of_object/program_memory.snap +++ b/src/wasm-lib/kcl/tests/property_of_object/program_memory.snap @@ -1,198 +1,185 @@ --- source: kcl/src/simulation_tests.rs -description: Program memory after executing property_of_object.kcl +description: Variables in memory after executing property_of_object.kcl --- { - "environments": [ - { - "bindings": { - "HALF_TURN": { - "type": "Number", - "value": 180.0, - "__meta": [] - }, - "QUARTER_TURN": { - "type": "Number", - "value": 90.0, - "__meta": [] - }, - "THREE_QUARTER_TURN": { - "type": "Number", - "value": 270.0, - "__meta": [] - }, - "ZERO": { - "type": "Number", - "value": 0.0, - "__meta": [] - }, - "obj": { - "type": "Object", - "value": { - "bar": { - "type": "Number", - "value": 0.0, - "__meta": [ - { - "sourceRange": [ - 73, - 74, - 0 - ] - } - ] - }, - "foo": { - "type": "Number", - "value": 1.0, - "__meta": [ - { - "sourceRange": [ - 64, - 65, - 0 - ] - } - ] - } - }, - "__meta": [ - { - "sourceRange": [ - 56, - 76, - 0 - ] - } - ] - }, - "obj2": { - "type": "Object", - "value": { - "inner": { - "type": "Object", - "value": { - "bar": { - "type": "Number", - "value": 0.0, - "__meta": [ - { - "sourceRange": [ - 73, - 74, - 0 - ] - } - ] - }, - "foo": { - "type": "Number", - "value": 1.0, - "__meta": [ - { - "sourceRange": [ - 64, - 65, - 0 - ] - } - ] - } - }, - "__meta": [ - { - "sourceRange": [ - 56, - 76, - 0 - ] - } - ] - } - }, - "__meta": [ - { - "sourceRange": [ - 531, - 546, - 0 - ] - } - ] - }, - "one_a": { - "type": "Number", - "value": 1.0, - "__meta": [ - { - "sourceRange": [ - 64, - 65, - 0 - ] - } - ] - }, - "one_b": { - "type": "Number", - "value": 1.0, - "__meta": [ - { - "sourceRange": [ - 64, - 65, - 0 - ] - } - ] - }, - "one_c": { - "type": "Number", - "value": 1.0, - "__meta": [ - { - "sourceRange": [ - 64, - 65, - 0 - ] - } - ] - }, - "one_d": { - "type": "Number", - "value": 1.0, - "__meta": [ - { - "sourceRange": [ - 64, - 65, - 0 - ] - } - ] - }, - "p": { - "type": "String", - "value": "foo", - "__meta": [ - { - "sourceRange": [ - 344, - 349, - 0 - ] - } - ] - } + "HALF_TURN": { + "type": "Number", + "value": 180.0, + "__meta": [] + }, + "QUARTER_TURN": { + "type": "Number", + "value": 90.0, + "__meta": [] + }, + "THREE_QUARTER_TURN": { + "type": "Number", + "value": 270.0, + "__meta": [] + }, + "ZERO": { + "type": "Number", + "value": 0.0, + "__meta": [] + }, + "obj": { + "type": "Object", + "value": { + "bar": { + "type": "Number", + "value": 0.0, + "__meta": [ + { + "sourceRange": [ + 73, + 74, + 0 + ] + } + ] }, - "snapshots": [], - "parent": null - } - ], - "currentEnv": [ - 0, - 0 - ], - "callStack": [] + "foo": { + "type": "Number", + "value": 1.0, + "__meta": [ + { + "sourceRange": [ + 64, + 65, + 0 + ] + } + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 56, + 76, + 0 + ] + } + ] + }, + "obj2": { + "type": "Object", + "value": { + "inner": { + "type": "Object", + "value": { + "bar": { + "type": "Number", + "value": 0.0, + "__meta": [ + { + "sourceRange": [ + 73, + 74, + 0 + ] + } + ] + }, + "foo": { + "type": "Number", + "value": 1.0, + "__meta": [ + { + "sourceRange": [ + 64, + 65, + 0 + ] + } + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 56, + 76, + 0 + ] + } + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 531, + 546, + 0 + ] + } + ] + }, + "one_a": { + "type": "Number", + "value": 1.0, + "__meta": [ + { + "sourceRange": [ + 64, + 65, + 0 + ] + } + ] + }, + "one_b": { + "type": "Number", + "value": 1.0, + "__meta": [ + { + "sourceRange": [ + 64, + 65, + 0 + ] + } + ] + }, + "one_c": { + "type": "Number", + "value": 1.0, + "__meta": [ + { + "sourceRange": [ + 64, + 65, + 0 + ] + } + ] + }, + "one_d": { + "type": "Number", + "value": 1.0, + "__meta": [ + { + "sourceRange": [ + 64, + 65, + 0 + ] + } + ] + }, + "p": { + "type": "String", + "value": "foo", + "__meta": [ + { + "sourceRange": [ + 344, + 349, + 0 + ] + } + ] + } } diff --git a/src/wasm-lib/kcl/tests/riddle_small/program_memory.snap b/src/wasm-lib/kcl/tests/riddle_small/program_memory.snap index 435e0011e..a6bd4710e 100644 --- a/src/wasm-lib/kcl/tests/riddle_small/program_memory.snap +++ b/src/wasm-lib/kcl/tests/riddle_small/program_memory.snap @@ -1,529 +1,480 @@ --- source: kcl/src/simulation_tests.rs -description: Program memory after executing riddle_small.kcl +description: Variables in memory after executing riddle_small.kcl --- { - "environments": [ - { - "bindings": { - "ANSWER": { - "type": "Number", - "value": 41803.0, - "__meta": [ - { - "sourceRange": [ - 9, - 14, - 0 - ] - } - ] + "ANSWER": { + "type": "Number", + "value": 41803.0, + "__meta": [ + { + "sourceRange": [ + 9, + 14, + 0 + ] + } + ] + }, + "HALF_TURN": { + "type": "Number", + "value": 180.0, + "__meta": [] + }, + "QUARTER_TURN": { + "type": "Number", + "value": 90.0, + "__meta": [] + }, + "THREE_QUARTER_TURN": { + "type": "Number", + "value": 270.0, + "__meta": [] + }, + "ZERO": { + "type": "Number", + "value": 0.0, + "__meta": [] + }, + "ox": { + "type": "Number", + "value": -26.0, + "__meta": [ + { + "sourceRange": [ + 96, + 98, + 0 + ] + }, + { + "sourceRange": [ + 9, + 14, + 0 + ] + }, + { + "sourceRange": [ + 73, + 79, + 0 + ] + }, + { + "sourceRange": [ + 49, + 54, + 0 + ] + }, + { + "sourceRange": [ + 58, + 64, + 0 + ] + }, + { + "sourceRange": [ + 110, + 112, + 0 + ] + } + ] + }, + "oy": { + "type": "Number", + "value": 34.0, + "__meta": [ + { + "sourceRange": [ + 119, + 121, + 0 + ] + }, + { + "sourceRange": [ + 9, + 14, + 0 + ] + }, + { + "sourceRange": [ + 85, + 90, + 0 + ] + }, + { + "sourceRange": [ + 49, + 54, + 0 + ] + }, + { + "sourceRange": [ + 58, + 64, + 0 + ] + }, + { + "sourceRange": [ + 133, + 135, + 0 + ] + } + ] + }, + "r": { + "type": "Solid", + "value": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 199, + 217, + 0 + ], + "tag": null, + "type": "extrudePlane" }, - "HALF_TURN": { - "type": "Number", - "value": 180.0, - "__meta": [] + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 223, + 242, + 0 + ], + "tag": null, + "type": "extrudePlane" }, - "QUARTER_TURN": { - "type": "Number", - "value": 90.0, - "__meta": [] + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 248, + 267, + 0 + ], + "tag": null, + "type": "extrudePlane" }, - "THREE_QUARTER_TURN": { - "type": "Number", - "value": 270.0, - "__meta": [] - }, - "ZERO": { - "type": "Number", - "value": 0.0, - "__meta": [] - }, - "ox": { - "type": "Number", - "value": -26.0, - "__meta": [ - { - "sourceRange": [ - 96, - 98, - 0 - ] - }, - { - "sourceRange": [ - 9, - 14, - 0 - ] - }, - { - "sourceRange": [ - 73, - 79, - 0 - ] - }, - { - "sourceRange": [ - 49, - 54, - 0 - ] - }, - { - "sourceRange": [ - 58, - 64, - 0 - ] - }, - { - "sourceRange": [ - 110, - 112, - 0 - ] - } - ] - }, - "oy": { - "type": "Number", - "value": 34.0, - "__meta": [ - { - "sourceRange": [ - 119, - 121, - 0 - ] - }, - { - "sourceRange": [ - 9, - 14, - 0 - ] - }, - { - "sourceRange": [ - 85, - 90, - 0 - ] - }, - { - "sourceRange": [ - 49, - 54, - 0 - ] - }, - { - "sourceRange": [ - 58, - 64, - 0 - ] - }, - { - "sourceRange": [ - 133, - 135, - 0 - ] - } - ] - }, - "r": { - "type": "Solid", - "value": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 199, - 217, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 223, - 242, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 248, - 267, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 273, - 281, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 273, + 281, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 199, - 217, - 0 - ] - }, - "from": [ - -26.0, - 34.0 - ], - "tag": null, - "to": [ - -25.0, - 34.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 223, - 242, - 0 - ] - }, - "from": [ - -25.0, - 34.0 - ], - "tag": null, - "to": [ - -25.0, - 33.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 248, - 267, - 0 - ] - }, - "from": [ - -25.0, - 33.0 - ], - "tag": null, - "to": [ - -26.0, - 33.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 273, - 281, - 0 - ] - }, - "from": [ - -26.0, - 33.0 - ], - "tag": null, - "to": [ - -26.0, - 34.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - -26.0, - 34.0 - ], - "to": [ - -26.0, - 34.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 166, - 193, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 166, - 193, - 0 - ] - } + "sourceRange": [ + 199, + 217, + 0 ] }, - "height": 1.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" + "from": [ + -26.0, + 34.0 + ], + "tag": null, + "to": [ + -25.0, + 34.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 223, + 242, + 0 + ] }, - "__meta": [ - { - "sourceRange": [ - 166, - 193, - 0 - ] - } + "from": [ + -25.0, + 34.0 + ], + "tag": null, + "to": [ + -25.0, + 33.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 248, + 267, + 0 + ] + }, + "from": [ + -25.0, + 33.0 + ], + "tag": null, + "to": [ + -26.0, + 33.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 273, + 281, + 0 + ] + }, + "from": [ + -26.0, + 33.0 + ], + "tag": null, + "to": [ + -26.0, + 34.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + -26.0, + 34.0 + ], + "to": [ + -26.0, + 34.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 166, + 193, + 0 ] } }, - "t": { - "type": "Function", - "expression": { - "body": { - "body": [ - { - "argument": { - "end": 64, - "left": { - "end": 54, - "left": { - "end": 46, - "left": { - "end": 42, - "name": "ANSWER", - "start": 36, - "type": "Identifier", - "type": "Identifier" - }, - "operator": "*", - "right": { - "end": 46, - "name": "s", - "start": 45, - "type": "Identifier", - "type": "Identifier" - }, - "start": 36, - "type": "BinaryExpression", - "type": "BinaryExpression" - }, - "operator": "+", - "right": { - "end": 54, - "raw": "12345", - "start": 49, - "type": "Literal", - "type": "Literal", - "value": { - "value": 12345.0, - "suffix": "None" - } - }, - "start": 36, - "type": "BinaryExpression", - "type": "BinaryExpression" - }, - "operator": "%", - "right": { - "end": 64, - "raw": "214748", - "start": 58, - "type": "Literal", - "type": "Literal", - "value": { - "value": 214748.0, - "suffix": "None" - } - }, - "start": 36, - "type": "BinaryExpression", - "type": "BinaryExpression" - }, - "end": 64, - "start": 28, - "type": "ReturnStatement", - "type": "ReturnStatement" - } - ], - "end": 66, - "start": 24 - }, - "end": 66, - "params": [ - { - "type": "Parameter", - "identifier": { - "end": 22, - "name": "s", - "start": 21, - "type": "Identifier" - } - } - ], - "start": 20, - "type": "FunctionExpression" - }, - "memory": [ - 0, - 1 - ], - "__meta": [ - { - "sourceRange": [ - 20, - 66, - 0 - ] - } - ] + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" }, - "xs": { - "type": "Number", - "value": 205804.0, - "__meta": [ - { - "sourceRange": [ - 73, - 79, - 0 - ] - } - ] - }, - "ys": { - "type": "Number", - "value": 71816.0, - "__meta": [ - { - "sourceRange": [ - 85, - 90, - 0 - ] - } + "__meta": [ + { + "sourceRange": [ + 166, + 193, + 0 + ] + } + ] + }, + "height": 1.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 166, + 193, + 0 ] } + ] + } + }, + "t": { + "type": "Function", + "expression": { + "body": { + "body": [ + { + "argument": { + "end": 64, + "left": { + "end": 54, + "left": { + "end": 46, + "left": { + "end": 42, + "name": "ANSWER", + "start": 36, + "type": "Identifier", + "type": "Identifier" + }, + "operator": "*", + "right": { + "end": 46, + "name": "s", + "start": 45, + "type": "Identifier", + "type": "Identifier" + }, + "start": 36, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "operator": "+", + "right": { + "end": 54, + "raw": "12345", + "start": 49, + "type": "Literal", + "type": "Literal", + "value": { + "value": 12345.0, + "suffix": "None" + } + }, + "start": 36, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "operator": "%", + "right": { + "end": 64, + "raw": "214748", + "start": 58, + "type": "Literal", + "type": "Literal", + "value": { + "value": 214748.0, + "suffix": "None" + } + }, + "start": 36, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "end": 64, + "start": 28, + "type": "ReturnStatement", + "type": "ReturnStatement" + } + ], + "end": 66, + "start": 24 }, - "snapshots": [ + "end": 66, + "params": [ { - "parent_snapshot": null, - "data": { - "ox": { - "type": "Tombstone", - "value": null, - "__meta": [] - }, - "oy": { - "type": "Tombstone", - "value": null, - "__meta": [] - }, - "r": { - "type": "Tombstone", - "value": null, - "__meta": [] - }, - "t": { - "type": "Tombstone", - "value": null, - "__meta": [] - }, - "xs": { - "type": "Tombstone", - "value": null, - "__meta": [] - }, - "ys": { - "type": "Tombstone", - "value": null, - "__meta": [] - } + "type": "Parameter", + "identifier": { + "end": 22, + "name": "s", + "start": 21, + "type": "Identifier" } } ], - "parent": null - } - ], - "currentEnv": [ - 0, - 0 - ], - "callStack": [] + "start": 20, + "type": "FunctionExpression" + }, + "memory": [ + 0, + 1 + ], + "__meta": [ + { + "sourceRange": [ + 20, + 66, + 0 + ] + } + ] + }, + "xs": { + "type": "Number", + "value": 205804.0, + "__meta": [ + { + "sourceRange": [ + 73, + 79, + 0 + ] + } + ] + }, + "ys": { + "type": "Number", + "value": 71816.0, + "__meta": [ + { + "sourceRange": [ + 85, + 90, + 0 + ] + } + ] + } } diff --git a/src/wasm-lib/kcl/tests/sketch-on-chamfer-two-times-different-order/program_memory.snap b/src/wasm-lib/kcl/tests/sketch-on-chamfer-two-times-different-order/program_memory.snap index cd6db3bd7..de46a0c5d 100644 --- a/src/wasm-lib/kcl/tests/sketch-on-chamfer-two-times-different-order/program_memory.snap +++ b/src/wasm-lib/kcl/tests/sketch-on-chamfer-two-times-different-order/program_memory.snap @@ -1,34 +1,818 @@ --- source: kcl/src/simulation_tests.rs -description: Program memory after executing sketch-on-chamfer-two-times-different-order.kcl +description: Variables in memory after executing sketch-on-chamfer-two-times-different-order.kcl --- { - "environments": [ - { - "bindings": { - "HALF_TURN": { - "type": "Number", - "value": 180.0, + "HALF_TURN": { + "type": "Number", + "value": 180.0, + "__meta": [] + }, + "QUARTER_TURN": { + "type": "Number", + "value": 90.0, + "__meta": [] + }, + "THREE_QUARTER_TURN": { + "type": "Number", + "value": 270.0, + "__meta": [] + }, + "ZERO": { + "type": "Number", + "value": 0.0, + "__meta": [] + }, + "extrude001": { + "type": "Solid", + "value": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 105, + 154, + 0 + ], + "tag": { + "end": 153, + "start": 132, + "type": "TagDeclarator", + "value": "rectangleSegmentA001" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 160, + 247, + 0 + ], + "tag": { + "end": 246, + "start": 240, + "type": "TagDeclarator", + "value": "seg01" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 253, + 350, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 356, + 426, + 0 + ], + "tag": { + "end": 425, + "start": 419, + "type": "TagDeclarator", + "value": "seg02" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 540, + 627, + 0 + ], + "tag": { + "end": 626, + "start": 620, + "type": "TagDeclarator", + "value": "seg03" + }, + "type": "chamfer" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 633, + 684, + 0 + ], + "tag": { + "end": 683, + "start": 677, + "type": "TagDeclarator", + "value": "seg04" + }, + "type": "chamfer" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 105, + 154, + 0 + ] + }, + "from": [ + 75.8, + 317.2 + ], + "tag": { + "end": 153, + "start": 132, + "type": "TagDeclarator", + "value": "rectangleSegmentA001" + }, + "to": [ + 344.23, + 317.2 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 160, + 247, + 0 + ] + }, + "from": [ + 344.23, + 317.2 + ], + "tag": { + "end": 246, + "start": 240, + "type": "TagDeclarator", + "value": "seg01" + }, + "to": [ + 344.23, + 99.94 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 253, + 350, + 0 + ] + }, + "from": [ + 344.23, + 99.94 + ], + "tag": null, + "to": [ + 75.8, + 99.94 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 356, + 426, + 0 + ] + }, + "from": [ + 75.8, + 99.94 + ], + "tag": { + "end": 425, + "start": 419, + "type": "TagDeclarator", + "value": "seg02" + }, + "to": [ + 75.8, + 317.2 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 432, + 440, + 0 + ] + }, + "from": [ + 75.8, + 317.2 + ], + "tag": null, + "to": [ + 75.8, + 317.2 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, "__meta": [] }, - "QUARTER_TURN": { - "type": "Number", - "value": 90.0, - "__meta": [] + "start": { + "from": [ + 75.8, + 317.2 + ], + "to": [ + 75.8, + 317.2 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 37, + 69, + 0 + ] + } }, - "THREE_QUARTER_TURN": { - "type": "Number", - "value": 270.0, - "__meta": [] + "tags": { + "rectangleSegmentA001": { + "type": "TagIdentifier", + "value": "rectangleSegmentA001", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 105, + 154, + 0 + ] + }, + "from": [ + 75.8, + 317.2 + ], + "tag": { + "end": 153, + "start": 132, + "type": "TagDeclarator", + "value": "rectangleSegmentA001" + }, + "to": [ + 344.23, + 317.2 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 105, + 154, + 0 + ], + "tag": { + "end": 153, + "start": 132, + "type": "TagDeclarator", + "value": "rectangleSegmentA001" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 132, + 153, + 0 + ] + } + ] + }, + "seg01": { + "type": "TagIdentifier", + "value": "seg01", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 160, + 247, + 0 + ] + }, + "from": [ + 344.23, + 317.2 + ], + "tag": { + "end": 246, + "start": 240, + "type": "TagDeclarator", + "value": "seg01" + }, + "to": [ + 344.23, + 99.94 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 160, + 247, + 0 + ], + "tag": { + "end": 246, + "start": 240, + "type": "TagDeclarator", + "value": "seg01" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 240, + 246, + 0 + ] + } + ] + }, + "seg02": { + "type": "TagIdentifier", + "value": "seg02", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 356, + 426, + 0 + ] + }, + "from": [ + 75.80000000000001, + 99.94 + ], + "tag": { + "end": 425, + "start": 419, + "type": "TagDeclarator", + "value": "seg02" + }, + "to": [ + 75.8, + 317.2 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 356, + 426, + 0 + ], + "tag": { + "end": 425, + "start": 419, + "type": "TagDeclarator", + "value": "seg02" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 419, + 425, + 0 + ] + } + ] + }, + "seg03": { + "type": "TagIdentifier", + "value": "seg03", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": null, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 540, + 627, + 0 + ], + "tag": { + "end": 626, + "start": 620, + "type": "TagDeclarator", + "value": "seg03" + }, + "type": "chamfer" + } + }, + "__meta": [ + { + "sourceRange": [ + 620, + 626, + 0 + ] + } + ] + }, + "seg04": { + "type": "TagIdentifier", + "value": "seg04", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": null, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 633, + 684, + 0 + ], + "tag": { + "end": 683, + "start": 677, + "type": "TagDeclarator", + "value": "seg04" + }, + "type": "chamfer" + } + }, + "__meta": [ + { + "sourceRange": [ + 677, + 683, + 0 + ] + } + ] + } }, - "ZERO": { - "type": "Number", - "value": 0.0, - "__meta": [] + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" }, - "extrude001": { - "type": "Solid", - "value": { + "__meta": [ + { + "sourceRange": [ + 37, + 69, + 0 + ] + } + ] + }, + "height": 100.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "edgeCuts": [ + { + "type": "fillet", + "id": "[uuid]", + "radius": 20.0, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "chamfer", + "id": "[uuid]", + "length": 50.0, + "edgeId": "[uuid]", + "tag": { + "end": 626, + "start": 620, + "type": "TagDeclarator", + "value": "seg03" + } + }, + { + "type": "chamfer", + "id": "[uuid]", + "length": 50.0, + "edgeId": "[uuid]", + "tag": { + "end": 683, + "start": 677, + "type": "TagDeclarator", + "value": "seg04" + } + } + ], + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 37, + 69, + 0 + ] + } + ] + } + }, + "extrude002": { + "type": "Solid", + "value": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1225, + 1273, + 0 + ], + "tag": { + "end": 1272, + "start": 1251, + "type": "TagDeclarator", + "value": "rectangleSegmentA002" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1279, + 1381, + 0 + ], + "tag": { + "end": 1380, + "start": 1359, + "type": "TagDeclarator", + "value": "rectangleSegmentB001" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1387, + 1507, + 0 + ], + "tag": { + "end": 1506, + "start": 1485, + "type": "TagDeclarator", + "value": "rectangleSegmentC001" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1513, + 1569, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1225, + 1273, + 0 + ] + }, + "from": [ + 159.25, + 278.35 + ], + "tag": { + "end": 1272, + "start": 1251, + "type": "TagDeclarator", + "value": "rectangleSegmentA002" + }, + "to": [ + 200.07, + 278.35 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1279, + 1381, + 0 + ] + }, + "from": [ + 200.07, + 278.35 + ], + "tag": { + "end": 1380, + "start": 1359, + "type": "TagDeclarator", + "value": "rectangleSegmentB001" + }, + "to": [ + 200.07, + 146.08 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1387, + 1507, + 0 + ] + }, + "from": [ + 200.07, + 146.08 + ], + "tag": { + "end": 1506, + "start": 1485, + "type": "TagDeclarator", + "value": "rectangleSegmentC001" + }, + "to": [ + 159.25, + 146.08 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1513, + 1569, + 0 + ] + }, + "from": [ + 159.25, + 146.08 + ], + "tag": null, + "to": [ + 159.25, + 278.35 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1575, + 1583, + 0 + ] + }, + "from": [ + 159.25, + 278.35 + ], + "tag": null, + "to": [ + 159.25, + 278.35 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "seg03", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "solid": { "type": "Solid", "id": "[uuid]", "artifactId": "[uuid]", @@ -606,16 +1390,73 @@ description: Program memory after executing sketch-on-chamfer-two-times-differen ] } ] + }, + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 1146, + 1178, + 0 + ] + } + ] + }, + "start": { + "from": [ + 159.25, + 278.35 + ], + "to": [ + 159.25, + 278.35 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1184, + 1219, + 0 + ] } }, - "extrude002": { - "type": "Solid", - "value": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { + "tags": { + "rectangleSegmentA002": { + "type": "TagIdentifier", + "value": "rectangleSegmentA002", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1225, + 1273, + 0 + ] + }, + "from": [ + 159.25, + 278.35 + ], + "tag": { + "end": 1272, + "start": 1251, + "type": "TagDeclarator", + "value": "rectangleSegmentA002" + }, + "to": [ + 200.07, + 278.35 + ], + "type": "ToPoint" + }, + "surface": { "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ @@ -630,8 +1471,51 @@ description: Program memory after executing sketch-on-chamfer-two-times-differen "value": "rectangleSegmentA002" }, "type": "extrudePlane" - }, + } + }, + "__meta": [ { + "sourceRange": [ + 1251, + 1272, + 0 + ] + } + ] + }, + "rectangleSegmentB001": { + "type": "TagIdentifier", + "value": "rectangleSegmentB001", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1279, + 1381, + 0 + ] + }, + "from": [ + 200.07, + 278.35 + ], + "tag": { + "end": 1380, + "start": 1359, + "type": "TagDeclarator", + "value": "rectangleSegmentB001" + }, + "to": [ + 200.07, + 146.08 + ], + "type": "ToPoint" + }, + "surface": { "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ @@ -646,8 +1530,51 @@ description: Program memory after executing sketch-on-chamfer-two-times-differen "value": "rectangleSegmentB001" }, "type": "extrudePlane" - }, + } + }, + "__meta": [ { + "sourceRange": [ + 1359, + 1380, + 0 + ] + } + ] + }, + "rectangleSegmentC001": { + "type": "TagIdentifier", + "value": "rectangleSegmentC001", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1387, + 1507, + 0 + ] + }, + "from": [ + 200.07, + 146.08 + ], + "tag": { + "end": 1506, + "start": 1485, + "type": "TagDeclarator", + "value": "rectangleSegmentC001" + }, + "to": [ + 159.25, + 146.08 + ], + "type": "ToPoint" + }, + "surface": { "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ @@ -662,983 +1589,791 @@ description: Program memory after executing sketch-on-chamfer-two-times-differen "value": "rectangleSegmentC001" }, "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1513, - 1569, - 0 - ], - "tag": null, - "type": "extrudePlane" } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1225, - 1273, - 0 - ] - }, - "from": [ - 159.25, - 278.35 - ], - "tag": { - "end": 1272, - "start": 1251, - "type": "TagDeclarator", - "value": "rectangleSegmentA002" - }, - "to": [ - 200.07, - 278.35 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1279, - 1381, - 0 - ] - }, - "from": [ - 200.07, - 278.35 - ], - "tag": { - "end": 1380, - "start": 1359, - "type": "TagDeclarator", - "value": "rectangleSegmentB001" - }, - "to": [ - 200.07, - 146.08 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1387, - 1507, - 0 - ] - }, - "from": [ - 200.07, - 146.08 - ], - "tag": { - "end": 1506, - "start": 1485, - "type": "TagDeclarator", - "value": "rectangleSegmentC001" - }, - "to": [ - 159.25, - 146.08 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1513, - 1569, - 0 - ] - }, - "from": [ - 159.25, - 146.08 - ], - "tag": null, - "to": [ - 159.25, - 278.35 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1575, - 1583, - 0 - ] - }, - "from": [ - 159.25, - 278.35 - ], - "tag": null, - "to": [ - 159.25, - 278.35 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "face", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "seg03", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 105, - 154, - 0 - ], - "tag": { - "end": 153, - "start": 132, - "type": "TagDeclarator", - "value": "rectangleSegmentA001" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 160, - 247, - 0 - ], - "tag": { - "end": 246, - "start": 240, - "type": "TagDeclarator", - "value": "seg01" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 253, - 350, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 356, - 426, - 0 - ], - "tag": { - "end": 425, - "start": 419, - "type": "TagDeclarator", - "value": "seg02" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 540, - 627, - 0 - ], - "tag": { - "end": 626, - "start": 620, - "type": "TagDeclarator", - "value": "seg03" - }, - "type": "chamfer" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 633, - 684, - 0 - ], - "tag": { - "end": 683, - "start": 677, - "type": "TagDeclarator", - "value": "seg04" - }, - "type": "chamfer" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 105, - 154, - 0 - ] - }, - "from": [ - 75.8, - 317.2 - ], - "tag": { - "end": 153, - "start": 132, - "type": "TagDeclarator", - "value": "rectangleSegmentA001" - }, - "to": [ - 344.23, - 317.2 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 160, - 247, - 0 - ] - }, - "from": [ - 344.23, - 317.2 - ], - "tag": { - "end": 246, - "start": 240, - "type": "TagDeclarator", - "value": "seg01" - }, - "to": [ - 344.23, - 99.94 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 253, - 350, - 0 - ] - }, - "from": [ - 344.23, - 99.94 - ], - "tag": null, - "to": [ - 75.8, - 99.94 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 356, - 426, - 0 - ] - }, - "from": [ - 75.8, - 99.94 - ], - "tag": { - "end": 425, - "start": 419, - "type": "TagDeclarator", - "value": "seg02" - }, - "to": [ - 75.8, - 317.2 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 432, - 440, - 0 - ] - }, - "from": [ - 75.8, - 317.2 - ], - "tag": null, - "to": [ - 75.8, - 317.2 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 75.8, - 317.2 - ], - "to": [ - 75.8, - 317.2 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 37, - 69, - 0 - ] - } - }, - "tags": { - "rectangleSegmentA001": { - "type": "TagIdentifier", - "value": "rectangleSegmentA001", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 105, - 154, - 0 - ] - }, - "from": [ - 75.8, - 317.2 - ], - "tag": { - "end": 153, - "start": 132, - "type": "TagDeclarator", - "value": "rectangleSegmentA001" - }, - "to": [ - 344.23, - 317.2 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 105, - 154, - 0 - ], - "tag": { - "end": 153, - "start": 132, - "type": "TagDeclarator", - "value": "rectangleSegmentA001" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 132, - 153, - 0 - ] - } - ] - }, - "seg01": { - "type": "TagIdentifier", - "value": "seg01", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 160, - 247, - 0 - ] - }, - "from": [ - 344.23, - 317.2 - ], - "tag": { - "end": 246, - "start": 240, - "type": "TagDeclarator", - "value": "seg01" - }, - "to": [ - 344.23, - 99.94 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 160, - 247, - 0 - ], - "tag": { - "end": 246, - "start": 240, - "type": "TagDeclarator", - "value": "seg01" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 240, - 246, - 0 - ] - } - ] - }, - "seg02": { - "type": "TagIdentifier", - "value": "seg02", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 356, - 426, - 0 - ] - }, - "from": [ - 75.80000000000001, - 99.94 - ], - "tag": { - "end": 425, - "start": 419, - "type": "TagDeclarator", - "value": "seg02" - }, - "to": [ - 75.8, - 317.2 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 356, - 426, - 0 - ], - "tag": { - "end": 425, - "start": 419, - "type": "TagDeclarator", - "value": "seg02" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 419, - 425, - 0 - ] - } - ] - }, - "seg03": { - "type": "TagIdentifier", - "value": "seg03", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": null, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 540, - 627, - 0 - ], - "tag": { - "end": 626, - "start": 620, - "type": "TagDeclarator", - "value": "seg03" - }, - "type": "chamfer" - } - }, - "__meta": [ - { - "sourceRange": [ - 620, - 626, - 0 - ] - } - ] - }, - "seg04": { - "type": "TagIdentifier", - "value": "seg04", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": null, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 633, - 684, - 0 - ], - "tag": { - "end": 683, - "start": 677, - "type": "TagDeclarator", - "value": "seg04" - }, - "type": "chamfer" - } - }, - "__meta": [ - { - "sourceRange": [ - 677, - 683, - 0 - ] - } - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 37, - 69, - 0 - ] - } - ] - }, - "height": 100.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "edgeCuts": [ - { - "type": "fillet", - "id": "[uuid]", - "radius": 20.0, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "chamfer", - "id": "[uuid]", - "length": 50.0, - "edgeId": "[uuid]", - "tag": { - "end": 626, - "start": 620, - "type": "TagDeclarator", - "value": "seg03" - } - }, - { - "type": "chamfer", - "id": "[uuid]", - "length": 50.0, - "edgeId": "[uuid]", - "tag": { - "end": 683, - "start": 677, - "type": "TagDeclarator", - "value": "seg04" - } - } - ], - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 37, - 69, - 0 - ] - } - ] - }, - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 1146, - 1178, - 0 - ] - } - ] - }, - "start": { - "from": [ - 159.25, - 278.35 - ], - "to": [ - 159.25, - 278.35 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1184, - 1219, - 0 - ] - } - }, - "tags": { - "rectangleSegmentA002": { - "type": "TagIdentifier", - "value": "rectangleSegmentA002", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1225, - 1273, - 0 - ] - }, - "from": [ - 159.25, - 278.35 - ], - "tag": { - "end": 1272, - "start": 1251, - "type": "TagDeclarator", - "value": "rectangleSegmentA002" - }, - "to": [ - 200.07, - 278.35 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1225, - 1273, - 0 - ], - "tag": { - "end": 1272, - "start": 1251, - "type": "TagDeclarator", - "value": "rectangleSegmentA002" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 1251, - 1272, - 0 - ] - } - ] - }, - "rectangleSegmentB001": { - "type": "TagIdentifier", - "value": "rectangleSegmentB001", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1279, - 1381, - 0 - ] - }, - "from": [ - 200.07, - 278.35 - ], - "tag": { - "end": 1380, - "start": 1359, - "type": "TagDeclarator", - "value": "rectangleSegmentB001" - }, - "to": [ - 200.07, - 146.08 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1279, - 1381, - 0 - ], - "tag": { - "end": 1380, - "start": 1359, - "type": "TagDeclarator", - "value": "rectangleSegmentB001" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 1359, - 1380, - 0 - ] - } - ] - }, - "rectangleSegmentC001": { - "type": "TagIdentifier", - "value": "rectangleSegmentC001", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1387, - 1507, - 0 - ] - }, - "from": [ - 200.07, - 146.08 - ], - "tag": { - "end": 1506, - "start": 1485, - "type": "TagDeclarator", - "value": "rectangleSegmentC001" - }, - "to": [ - 159.25, - 146.08 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1387, - 1507, - 0 - ], - "tag": { - "end": 1506, - "start": 1485, - "type": "TagDeclarator", - "value": "rectangleSegmentC001" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 1485, - 1506, - 0 - ] - } - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 1184, - 1219, - 0 - ] - } - ] - }, - "height": 50.0, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Mm" }, "__meta": [ { "sourceRange": [ - 1184, - 1219, + 1485, + 1506, 0 ] } ] } }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 1184, + 1219, + 0 + ] + } + ] + }, + "height": 50.0, + "startCapId": null, + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 1184, + 1219, + 0 + ] + } + ] + } + }, + "rectangleSegmentA001": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "rectangleSegmentA001", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 105, + 154, + 0 + ] + }, + "from": [ + 75.8, + 317.2 + ], + "tag": { + "end": 153, + "start": 132, + "type": "TagDeclarator", + "value": "rectangleSegmentA001" + }, + "to": [ + 344.23, + 317.2 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 105, + 154, + 0 + ], + "tag": { + "end": 153, + "start": 132, + "type": "TagDeclarator", + "value": "rectangleSegmentA001" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 132, + 153, + 0 + ] + } + ] + }, + "rectangleSegmentA002": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "rectangleSegmentA002", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1225, + 1273, + 0 + ] + }, + "from": [ + 159.25, + 278.35 + ], + "tag": { + "end": 1272, + "start": 1251, + "type": "TagDeclarator", + "value": "rectangleSegmentA002" + }, + "to": [ + 200.07, + 278.35 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1225, + 1273, + 0 + ], + "tag": { + "end": 1272, + "start": 1251, + "type": "TagDeclarator", + "value": "rectangleSegmentA002" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 1251, + 1272, + 0 + ] + } + ] + }, + "rectangleSegmentA003": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "rectangleSegmentA003", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 776, + 824, + 0 + ] + }, + "from": [ + -69.1, + 277.34 + ], + "tag": { + "end": 823, + "start": 802, + "type": "TagDeclarator", + "value": "rectangleSegmentA003" + }, + "to": [ + -27.619999999999997, + 277.34 + ], + "type": "ToPoint" + }, + "surface": null + }, + "__meta": [ + { + "sourceRange": [ + 802, + 823, + 0 + ] + } + ] + }, + "rectangleSegmentB001": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "rectangleSegmentB001", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1279, + 1381, + 0 + ] + }, + "from": [ + 200.07, + 278.35 + ], + "tag": { + "end": 1380, + "start": 1359, + "type": "TagDeclarator", + "value": "rectangleSegmentB001" + }, + "to": [ + 200.07, + 146.08 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1279, + 1381, + 0 + ], + "tag": { + "end": 1380, + "start": 1359, + "type": "TagDeclarator", + "value": "rectangleSegmentB001" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 1359, + 1380, + 0 + ] + } + ] + }, + "rectangleSegmentB002": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "rectangleSegmentB002", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 830, + 931, + 0 + ] + }, + "from": [ + -27.619999999999997, + 277.34 + ], + "tag": { + "end": 930, + "start": 909, + "type": "TagDeclarator", + "value": "rectangleSegmentB002" + }, + "to": [ + -27.61999999999999, + 172.53999999999996 + ], + "type": "ToPoint" + }, + "surface": null + }, + "__meta": [ + { + "sourceRange": [ + 909, + 930, + 0 + ] + } + ] + }, + "rectangleSegmentC001": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "rectangleSegmentC001", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1387, + 1507, + 0 + ] + }, + "from": [ + 200.07, + 146.08 + ], + "tag": { + "end": 1506, + "start": 1485, + "type": "TagDeclarator", + "value": "rectangleSegmentC001" + }, + "to": [ + 159.25, + 146.08 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1387, + 1507, + 0 + ], + "tag": { + "end": 1506, + "start": 1485, + "type": "TagDeclarator", + "value": "rectangleSegmentC001" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 1485, + 1506, + 0 + ] + } + ] + }, + "rectangleSegmentC002": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "rectangleSegmentC002", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 937, + 1057, + 0 + ] + }, + "from": [ + -27.61999999999999, + 172.53999999999996 + ], + "tag": { + "end": 1056, + "start": 1035, + "type": "TagDeclarator", + "value": "rectangleSegmentC002" + }, + "to": [ + -69.1, + 172.53999999999996 + ], + "type": "ToPoint" + }, + "surface": null + }, + "__meta": [ + { + "sourceRange": [ + 1035, + 1056, + 0 + ] + } + ] + }, + "seg01": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "seg01", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 160, + 247, + 0 + ] + }, + "from": [ + 344.23, + 317.2 + ], + "tag": { + "end": 246, + "start": 240, + "type": "TagDeclarator", + "value": "seg01" + }, + "to": [ + 344.23, + 99.94 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 160, + 247, + 0 + ], + "tag": { + "end": 246, + "start": 240, + "type": "TagDeclarator", + "value": "seg01" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 240, + 246, + 0 + ] + } + ] + }, + "seg02": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "seg02", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 356, + 426, + 0 + ] + }, + "from": [ + 75.80000000000001, + 99.94 + ], + "tag": { + "end": 425, + "start": 419, + "type": "TagDeclarator", + "value": "seg02" + }, + "to": [ + 75.8, + 317.2 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 356, + 426, + 0 + ], + "tag": { + "end": 425, + "start": 419, + "type": "TagDeclarator", + "value": "seg02" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 419, + 425, + 0 + ] + } + ] + }, + "seg03": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "seg03", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": null, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 540, + 627, + 0 + ], + "tag": { + "end": 626, + "start": 620, + "type": "TagDeclarator", + "value": "seg03" + }, + "type": "chamfer" + } + }, + "__meta": [ + { + "sourceRange": [ + 620, + 626, + 0 + ] + } + ] + }, + "seg04": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "seg04", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": null, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 633, + 684, + 0 + ], + "tag": { + "end": 683, + "start": 677, + "type": "TagDeclarator", + "value": "seg04" + }, + "type": "chamfer" + } + }, + "__meta": [ + { + "sourceRange": [ + 677, + 683, + 0 + ] + } + ] + }, + "sketch001": { + "type": "Sketch", + "value": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 105, + 154, + 0 + ] + }, + "from": [ + 75.8, + 317.2 + ], + "tag": { + "end": 153, + "start": 132, + "type": "TagDeclarator", + "value": "rectangleSegmentA001" + }, + "to": [ + 344.23, + 317.2 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 160, + 247, + 0 + ] + }, + "from": [ + 344.23, + 317.2 + ], + "tag": { + "end": 246, + "start": 240, + "type": "TagDeclarator", + "value": "seg01" + }, + "to": [ + 344.23, + 99.94 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 253, + 350, + 0 + ] + }, + "from": [ + 344.23, + 99.94 + ], + "tag": null, + "to": [ + 75.8, + 99.94 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 356, + 426, + 0 + ] + }, + "from": [ + 75.8, + 99.94 + ], + "tag": { + "end": 425, + "start": 419, + "type": "TagDeclarator", + "value": "seg02" + }, + "to": [ + 75.8, + 317.2 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 432, + 440, + 0 + ] + }, + "from": [ + 75.8, + 317.2 + ], + "tag": null, + "to": [ + 75.8, + 317.2 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 75.8, + 317.2 + ], + "to": [ + 75.8, + 317.2 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 37, + 69, + 0 + ] + } + }, + "tags": { "rectangleSegmentA001": { - "type": "TagIdentifier", "type": "TagIdentifier", "value": "rectangleSegmentA001", "info": { @@ -1697,323 +2432,7 @@ description: Program memory after executing sketch-on-chamfer-two-times-differen } ] }, - "rectangleSegmentA002": { - "type": "TagIdentifier", - "type": "TagIdentifier", - "value": "rectangleSegmentA002", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1225, - 1273, - 0 - ] - }, - "from": [ - 159.25, - 278.35 - ], - "tag": { - "end": 1272, - "start": 1251, - "type": "TagDeclarator", - "value": "rectangleSegmentA002" - }, - "to": [ - 200.07, - 278.35 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1225, - 1273, - 0 - ], - "tag": { - "end": 1272, - "start": 1251, - "type": "TagDeclarator", - "value": "rectangleSegmentA002" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 1251, - 1272, - 0 - ] - } - ] - }, - "rectangleSegmentA003": { - "type": "TagIdentifier", - "type": "TagIdentifier", - "value": "rectangleSegmentA003", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 776, - 824, - 0 - ] - }, - "from": [ - -69.1, - 277.34 - ], - "tag": { - "end": 823, - "start": 802, - "type": "TagDeclarator", - "value": "rectangleSegmentA003" - }, - "to": [ - -27.619999999999997, - 277.34 - ], - "type": "ToPoint" - }, - "surface": null - }, - "__meta": [ - { - "sourceRange": [ - 802, - 823, - 0 - ] - } - ] - }, - "rectangleSegmentB001": { - "type": "TagIdentifier", - "type": "TagIdentifier", - "value": "rectangleSegmentB001", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1279, - 1381, - 0 - ] - }, - "from": [ - 200.07, - 278.35 - ], - "tag": { - "end": 1380, - "start": 1359, - "type": "TagDeclarator", - "value": "rectangleSegmentB001" - }, - "to": [ - 200.07, - 146.08 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1279, - 1381, - 0 - ], - "tag": { - "end": 1380, - "start": 1359, - "type": "TagDeclarator", - "value": "rectangleSegmentB001" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 1359, - 1380, - 0 - ] - } - ] - }, - "rectangleSegmentB002": { - "type": "TagIdentifier", - "type": "TagIdentifier", - "value": "rectangleSegmentB002", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 830, - 931, - 0 - ] - }, - "from": [ - -27.619999999999997, - 277.34 - ], - "tag": { - "end": 930, - "start": 909, - "type": "TagDeclarator", - "value": "rectangleSegmentB002" - }, - "to": [ - -27.61999999999999, - 172.53999999999996 - ], - "type": "ToPoint" - }, - "surface": null - }, - "__meta": [ - { - "sourceRange": [ - 909, - 930, - 0 - ] - } - ] - }, - "rectangleSegmentC001": { - "type": "TagIdentifier", - "type": "TagIdentifier", - "value": "rectangleSegmentC001", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1387, - 1507, - 0 - ] - }, - "from": [ - 200.07, - 146.08 - ], - "tag": { - "end": 1506, - "start": 1485, - "type": "TagDeclarator", - "value": "rectangleSegmentC001" - }, - "to": [ - 159.25, - 146.08 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1387, - 1507, - 0 - ], - "tag": { - "end": 1506, - "start": 1485, - "type": "TagDeclarator", - "value": "rectangleSegmentC001" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 1485, - 1506, - 0 - ] - } - ] - }, - "rectangleSegmentC002": { - "type": "TagIdentifier", - "type": "TagIdentifier", - "value": "rectangleSegmentC002", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 937, - 1057, - 0 - ] - }, - "from": [ - -27.61999999999999, - 172.53999999999996 - ], - "tag": { - "end": 1056, - "start": 1035, - "type": "TagDeclarator", - "value": "rectangleSegmentC002" - }, - "to": [ - -69.1, - 172.53999999999996 - ], - "type": "ToPoint" - }, - "surface": null - }, - "__meta": [ - { - "sourceRange": [ - 1035, - 1056, - 0 - ] - } - ] - }, "seg01": { - "type": "TagIdentifier", "type": "TagIdentifier", "value": "seg01", "info": { @@ -2073,7 +2492,6 @@ description: Program memory after executing sketch-on-chamfer-two-times-differen ] }, "seg02": { - "type": "TagIdentifier", "type": "TagIdentifier", "value": "seg02", "info": { @@ -2133,7 +2551,6 @@ description: Program memory after executing sketch-on-chamfer-two-times-differen ] }, "seg03": { - "type": "TagIdentifier", "type": "TagIdentifier", "value": "seg03", "info": { @@ -2169,7 +2586,6 @@ description: Program memory after executing sketch-on-chamfer-two-times-differen ] }, "seg04": { - "type": "TagIdentifier", "type": "TagIdentifier", "value": "seg04", "info": { @@ -2203,10 +2619,264 @@ description: Program memory after executing sketch-on-chamfer-two-times-differen ] } ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 37, + 69, + 0 + ] + } + ] + } + }, + "sketch002": { + "type": "Sketch", + "value": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1225, + 1273, + 0 + ] + }, + "from": [ + 159.25, + 278.35 + ], + "tag": { + "end": 1272, + "start": 1251, + "type": "TagDeclarator", + "value": "rectangleSegmentA002" + }, + "to": [ + 200.07, + 278.35 + ], + "type": "ToPoint" }, - "sketch001": { - "type": "Sketch", - "value": { + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1279, + 1381, + 0 + ] + }, + "from": [ + 200.07, + 278.35 + ], + "tag": { + "end": 1380, + "start": 1359, + "type": "TagDeclarator", + "value": "rectangleSegmentB001" + }, + "to": [ + 200.07, + 146.08 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1387, + 1507, + 0 + ] + }, + "from": [ + 200.07, + 146.08 + ], + "tag": { + "end": 1506, + "start": 1485, + "type": "TagDeclarator", + "value": "rectangleSegmentC001" + }, + "to": [ + 159.25, + 146.08 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1513, + 1569, + 0 + ] + }, + "from": [ + 159.25, + 146.08 + ], + "tag": null, + "to": [ + 159.25, + 278.35 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1575, + 1583, + 0 + ] + }, + "from": [ + 159.25, + 278.35 + ], + "tag": null, + "to": [ + 159.25, + 278.35 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "seg03", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 105, + 154, + 0 + ], + "tag": { + "end": 153, + "start": 132, + "type": "TagDeclarator", + "value": "rectangleSegmentA001" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 160, + 247, + 0 + ], + "tag": { + "end": 246, + "start": 240, + "type": "TagDeclarator", + "value": "seg01" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 253, + 350, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 356, + 426, + 0 + ], + "tag": { + "end": 425, + "start": 419, + "type": "TagDeclarator", + "value": "seg02" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 540, + 627, + 0 + ], + "tag": { + "end": 626, + "start": 620, + "type": "TagDeclarator", + "value": "seg03" + }, + "type": "chamfer" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 633, + 684, + 0 + ], + "tag": { + "end": 683, + "start": 677, + "type": "TagDeclarator", + "value": "seg04" + }, + "type": "chamfer" + } + ], + "sketch": { "type": "Sketch", "id": "[uuid]", "paths": [ @@ -2638,1867 +3308,1184 @@ description: Program memory after executing sketch-on-chamfer-two-times-differen ] } ] - } - }, - "sketch002": { - "type": "Sketch", - "value": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1225, - 1273, - 0 - ] - }, - "from": [ - 159.25, - 278.35 - ], - "tag": { - "end": 1272, - "start": 1251, - "type": "TagDeclarator", - "value": "rectangleSegmentA002" - }, - "to": [ - 200.07, - 278.35 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1279, - 1381, - 0 - ] - }, - "from": [ - 200.07, - 278.35 - ], - "tag": { - "end": 1380, - "start": 1359, - "type": "TagDeclarator", - "value": "rectangleSegmentB001" - }, - "to": [ - 200.07, - 146.08 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1387, - 1507, - 0 - ] - }, - "from": [ - 200.07, - 146.08 - ], - "tag": { - "end": 1506, - "start": 1485, - "type": "TagDeclarator", - "value": "rectangleSegmentC001" - }, - "to": [ - 159.25, - 146.08 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1513, - 1569, - 0 - ] - }, - "from": [ - 159.25, - 146.08 - ], - "tag": null, - "to": [ - 159.25, - 278.35 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1575, - 1583, - 0 - ] - }, - "from": [ - 159.25, - 278.35 - ], - "tag": null, - "to": [ - 159.25, - 278.35 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "face", + }, + "height": 100.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "edgeCuts": [ + { + "type": "fillet", "id": "[uuid]", - "artifactId": "[uuid]", - "value": "seg03", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 105, - 154, - 0 - ], - "tag": { - "end": 153, - "start": 132, - "type": "TagDeclarator", - "value": "rectangleSegmentA001" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 160, - 247, - 0 - ], - "tag": { - "end": 246, - "start": 240, - "type": "TagDeclarator", - "value": "seg01" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 253, - 350, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 356, - 426, - 0 - ], - "tag": { - "end": 425, - "start": 419, - "type": "TagDeclarator", - "value": "seg02" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 540, - 627, - 0 - ], - "tag": { - "end": 626, - "start": 620, - "type": "TagDeclarator", - "value": "seg03" - }, - "type": "chamfer" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 633, - 684, - 0 - ], - "tag": { - "end": 683, - "start": 677, - "type": "TagDeclarator", - "value": "seg04" - }, - "type": "chamfer" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 105, - 154, - 0 - ] - }, - "from": [ - 75.8, - 317.2 - ], - "tag": { - "end": 153, - "start": 132, - "type": "TagDeclarator", - "value": "rectangleSegmentA001" - }, - "to": [ - 344.23, - 317.2 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 160, - 247, - 0 - ] - }, - "from": [ - 344.23, - 317.2 - ], - "tag": { - "end": 246, - "start": 240, - "type": "TagDeclarator", - "value": "seg01" - }, - "to": [ - 344.23, - 99.94 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 253, - 350, - 0 - ] - }, - "from": [ - 344.23, - 99.94 - ], - "tag": null, - "to": [ - 75.8, - 99.94 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 356, - 426, - 0 - ] - }, - "from": [ - 75.8, - 99.94 - ], - "tag": { - "end": 425, - "start": 419, - "type": "TagDeclarator", - "value": "seg02" - }, - "to": [ - 75.8, - 317.2 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 432, - 440, - 0 - ] - }, - "from": [ - 75.8, - 317.2 - ], - "tag": null, - "to": [ - 75.8, - 317.2 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 75.8, - 317.2 - ], - "to": [ - 75.8, - 317.2 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 37, - 69, - 0 - ] - } - }, - "tags": { - "rectangleSegmentA001": { - "type": "TagIdentifier", - "value": "rectangleSegmentA001", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 105, - 154, - 0 - ] - }, - "from": [ - 75.8, - 317.2 - ], - "tag": { - "end": 153, - "start": 132, - "type": "TagDeclarator", - "value": "rectangleSegmentA001" - }, - "to": [ - 344.23, - 317.2 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 105, - 154, - 0 - ], - "tag": { - "end": 153, - "start": 132, - "type": "TagDeclarator", - "value": "rectangleSegmentA001" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 132, - 153, - 0 - ] - } - ] - }, - "seg01": { - "type": "TagIdentifier", - "value": "seg01", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 160, - 247, - 0 - ] - }, - "from": [ - 344.23, - 317.2 - ], - "tag": { - "end": 246, - "start": 240, - "type": "TagDeclarator", - "value": "seg01" - }, - "to": [ - 344.23, - 99.94 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 160, - 247, - 0 - ], - "tag": { - "end": 246, - "start": 240, - "type": "TagDeclarator", - "value": "seg01" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 240, - 246, - 0 - ] - } - ] - }, - "seg02": { - "type": "TagIdentifier", - "value": "seg02", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 356, - 426, - 0 - ] - }, - "from": [ - 75.80000000000001, - 99.94 - ], - "tag": { - "end": 425, - "start": 419, - "type": "TagDeclarator", - "value": "seg02" - }, - "to": [ - 75.8, - 317.2 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 356, - 426, - 0 - ], - "tag": { - "end": 425, - "start": 419, - "type": "TagDeclarator", - "value": "seg02" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 419, - 425, - 0 - ] - } - ] - }, - "seg03": { - "type": "TagIdentifier", - "value": "seg03", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": null, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 540, - 627, - 0 - ], - "tag": { - "end": 626, - "start": 620, - "type": "TagDeclarator", - "value": "seg03" - }, - "type": "chamfer" - } - }, - "__meta": [ - { - "sourceRange": [ - 620, - 626, - 0 - ] - } - ] - }, - "seg04": { - "type": "TagIdentifier", - "value": "seg04", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": null, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 633, - 684, - 0 - ], - "tag": { - "end": 683, - "start": 677, - "type": "TagDeclarator", - "value": "seg04" - }, - "type": "chamfer" - } - }, - "__meta": [ - { - "sourceRange": [ - 677, - 683, - 0 - ] - } - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 37, - 69, - 0 - ] - } - ] - }, - "height": 100.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "edgeCuts": [ - { - "type": "fillet", - "id": "[uuid]", - "radius": 20.0, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "chamfer", - "id": "[uuid]", - "length": 50.0, - "edgeId": "[uuid]", - "tag": { - "end": 626, - "start": 620, - "type": "TagDeclarator", - "value": "seg03" - } - }, - { - "type": "chamfer", - "id": "[uuid]", - "length": 50.0, - "edgeId": "[uuid]", - "tag": { - "end": 683, - "start": 677, - "type": "TagDeclarator", - "value": "seg04" - } - } - ], - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 37, - 69, - 0 - ] - } - ] - }, - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 1146, - 1178, - 0 - ] - } + "radius": 20.0, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "chamfer", + "id": "[uuid]", + "length": 50.0, + "edgeId": "[uuid]", + "tag": { + "end": 626, + "start": 620, + "type": "TagDeclarator", + "value": "seg03" + } + }, + { + "type": "chamfer", + "id": "[uuid]", + "length": 50.0, + "edgeId": "[uuid]", + "tag": { + "end": 683, + "start": 677, + "type": "TagDeclarator", + "value": "seg04" + } + } + ], + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 37, + 69, + 0 ] - }, - "start": { - "from": [ - 159.25, - 278.35 - ], - "to": [ - 159.25, - 278.35 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1184, - 1219, - 0 - ] - } - }, - "tags": { - "rectangleSegmentA002": { - "type": "TagIdentifier", - "value": "rectangleSegmentA002", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1225, - 1273, - 0 - ] - }, - "from": [ - 159.25, - 278.35 - ], - "tag": { - "end": 1272, - "start": 1251, - "type": "TagDeclarator", - "value": "rectangleSegmentA002" - }, - "to": [ - 200.07, - 278.35 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1225, - 1273, - 0 - ], - "tag": { - "end": 1272, - "start": 1251, - "type": "TagDeclarator", - "value": "rectangleSegmentA002" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 1251, - 1272, - 0 - ] - } - ] - }, - "rectangleSegmentB001": { - "type": "TagIdentifier", - "value": "rectangleSegmentB001", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1279, - 1381, - 0 - ] - }, - "from": [ - 200.07, - 278.35 - ], - "tag": { - "end": 1380, - "start": 1359, - "type": "TagDeclarator", - "value": "rectangleSegmentB001" - }, - "to": [ - 200.07, - 146.08 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1279, - 1381, - 0 - ], - "tag": { - "end": 1380, - "start": 1359, - "type": "TagDeclarator", - "value": "rectangleSegmentB001" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 1359, - 1380, - 0 - ] - } - ] - }, - "rectangleSegmentC001": { - "type": "TagIdentifier", - "value": "rectangleSegmentC001", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1387, - 1507, - 0 - ] - }, - "from": [ - 200.07, - 146.08 - ], - "tag": { - "end": 1506, - "start": 1485, - "type": "TagDeclarator", - "value": "rectangleSegmentC001" - }, - "to": [ - 159.25, - 146.08 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1387, - 1507, - 0 - ], - "tag": { - "end": 1506, - "start": 1485, - "type": "TagDeclarator", - "value": "rectangleSegmentC001" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 1485, - 1506, - 0 - ] - } - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 1184, - 1219, - 0 - ] - } - ] - } - }, - "sketch003": { - "type": "Sketch", - "value": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 776, - 824, - 0 - ] - }, - "from": [ - -69.1, - 277.34 - ], - "tag": { - "end": 823, - "start": 802, - "type": "TagDeclarator", - "value": "rectangleSegmentA003" - }, - "to": [ - -27.62, - 277.34 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 830, - 931, - 0 - ] - }, - "from": [ - -27.62, - 277.34 - ], - "tag": { - "end": 930, - "start": 909, - "type": "TagDeclarator", - "value": "rectangleSegmentB002" - }, - "to": [ - -27.62, - 172.54 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 937, - 1057, - 0 - ] - }, - "from": [ - -27.62, - 172.54 - ], - "tag": { - "end": 1056, - "start": 1035, - "type": "TagDeclarator", - "value": "rectangleSegmentC002" - }, - "to": [ - -69.1, - 172.54 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1063, - 1119, - 0 - ] - }, - "from": [ - -69.1, - 172.54 - ], - "tag": null, - "to": [ - -69.1, - 277.34 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1125, - 1133, - 0 - ] - }, - "from": [ - -69.1, - 277.34 - ], - "tag": null, - "to": [ - -69.1, - 277.34 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "face", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "seg04", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 105, - 154, - 0 - ], - "tag": { - "end": 153, - "start": 132, - "type": "TagDeclarator", - "value": "rectangleSegmentA001" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 160, - 247, - 0 - ], - "tag": { - "end": 246, - "start": 240, - "type": "TagDeclarator", - "value": "seg01" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 253, - 350, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 356, - 426, - 0 - ], - "tag": { - "end": 425, - "start": 419, - "type": "TagDeclarator", - "value": "seg02" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 540, - 627, - 0 - ], - "tag": { - "end": 626, - "start": 620, - "type": "TagDeclarator", - "value": "seg03" - }, - "type": "chamfer" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 633, - 684, - 0 - ], - "tag": { - "end": 683, - "start": 677, - "type": "TagDeclarator", - "value": "seg04" - }, - "type": "chamfer" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 105, - 154, - 0 - ] - }, - "from": [ - 75.8, - 317.2 - ], - "tag": { - "end": 153, - "start": 132, - "type": "TagDeclarator", - "value": "rectangleSegmentA001" - }, - "to": [ - 344.23, - 317.2 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 160, - 247, - 0 - ] - }, - "from": [ - 344.23, - 317.2 - ], - "tag": { - "end": 246, - "start": 240, - "type": "TagDeclarator", - "value": "seg01" - }, - "to": [ - 344.23, - 99.94 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 253, - 350, - 0 - ] - }, - "from": [ - 344.23, - 99.94 - ], - "tag": null, - "to": [ - 75.8, - 99.94 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 356, - 426, - 0 - ] - }, - "from": [ - 75.8, - 99.94 - ], - "tag": { - "end": 425, - "start": 419, - "type": "TagDeclarator", - "value": "seg02" - }, - "to": [ - 75.8, - 317.2 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 432, - 440, - 0 - ] - }, - "from": [ - 75.8, - 317.2 - ], - "tag": null, - "to": [ - 75.8, - 317.2 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 75.8, - 317.2 - ], - "to": [ - 75.8, - 317.2 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 37, - 69, - 0 - ] - } - }, - "tags": { - "rectangleSegmentA001": { - "type": "TagIdentifier", - "value": "rectangleSegmentA001", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 105, - 154, - 0 - ] - }, - "from": [ - 75.8, - 317.2 - ], - "tag": { - "end": 153, - "start": 132, - "type": "TagDeclarator", - "value": "rectangleSegmentA001" - }, - "to": [ - 344.23, - 317.2 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 105, - 154, - 0 - ], - "tag": { - "end": 153, - "start": 132, - "type": "TagDeclarator", - "value": "rectangleSegmentA001" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 132, - 153, - 0 - ] - } - ] - }, - "seg01": { - "type": "TagIdentifier", - "value": "seg01", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 160, - 247, - 0 - ] - }, - "from": [ - 344.23, - 317.2 - ], - "tag": { - "end": 246, - "start": 240, - "type": "TagDeclarator", - "value": "seg01" - }, - "to": [ - 344.23, - 99.94 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 160, - 247, - 0 - ], - "tag": { - "end": 246, - "start": 240, - "type": "TagDeclarator", - "value": "seg01" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 240, - 246, - 0 - ] - } - ] - }, - "seg02": { - "type": "TagIdentifier", - "value": "seg02", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 356, - 426, - 0 - ] - }, - "from": [ - 75.80000000000001, - 99.94 - ], - "tag": { - "end": 425, - "start": 419, - "type": "TagDeclarator", - "value": "seg02" - }, - "to": [ - 75.8, - 317.2 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 356, - 426, - 0 - ], - "tag": { - "end": 425, - "start": 419, - "type": "TagDeclarator", - "value": "seg02" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 419, - 425, - 0 - ] - } - ] - }, - "seg03": { - "type": "TagIdentifier", - "value": "seg03", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": null, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 540, - 627, - 0 - ], - "tag": { - "end": 626, - "start": 620, - "type": "TagDeclarator", - "value": "seg03" - }, - "type": "chamfer" - } - }, - "__meta": [ - { - "sourceRange": [ - 620, - 626, - 0 - ] - } - ] - }, - "seg04": { - "type": "TagIdentifier", - "value": "seg04", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": null, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 633, - 684, - 0 - ], - "tag": { - "end": 683, - "start": 677, - "type": "TagDeclarator", - "value": "seg04" - }, - "type": "chamfer" - } - }, - "__meta": [ - { - "sourceRange": [ - 677, - 683, - 0 - ] - } - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 37, - 69, - 0 - ] - } - ] - }, - "height": 100.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "edgeCuts": [ - { - "type": "fillet", - "id": "[uuid]", - "radius": 20.0, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "chamfer", - "id": "[uuid]", - "length": 50.0, - "edgeId": "[uuid]", - "tag": { - "end": 626, - "start": 620, - "type": "TagDeclarator", - "value": "seg03" - } - }, - { - "type": "chamfer", - "id": "[uuid]", - "length": 50.0, - "edgeId": "[uuid]", - "tag": { - "end": 683, - "start": 677, - "type": "TagDeclarator", - "value": "seg04" - } - } - ], - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 37, - 69, - 0 - ] - } - ] - }, - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 698, - 730, - 0 - ] - } - ] - }, - "start": { - "from": [ - -69.1, - 277.34 - ], - "to": [ - -69.1, - 277.34 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 736, - 770, - 0 - ] - } - }, - "tags": { - "rectangleSegmentA003": { - "type": "TagIdentifier", - "value": "rectangleSegmentA003", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 776, - 824, - 0 - ] - }, - "from": [ - -69.1, - 277.34 - ], - "tag": { - "end": 823, - "start": 802, - "type": "TagDeclarator", - "value": "rectangleSegmentA003" - }, - "to": [ - -27.619999999999997, - 277.34 - ], - "type": "ToPoint" - }, - "surface": null - }, - "__meta": [ - { - "sourceRange": [ - 802, - 823, - 0 - ] - } - ] - }, - "rectangleSegmentB002": { - "type": "TagIdentifier", - "value": "rectangleSegmentB002", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 830, - 931, - 0 - ] - }, - "from": [ - -27.619999999999997, - 277.34 - ], - "tag": { - "end": 930, - "start": 909, - "type": "TagDeclarator", - "value": "rectangleSegmentB002" - }, - "to": [ - -27.61999999999999, - 172.53999999999996 - ], - "type": "ToPoint" - }, - "surface": null - }, - "__meta": [ - { - "sourceRange": [ - 909, - 930, - 0 - ] - } - ] - }, - "rectangleSegmentC002": { - "type": "TagIdentifier", - "value": "rectangleSegmentC002", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 937, - 1057, - 0 - ] - }, - "from": [ - -27.61999999999999, - 172.53999999999996 - ], - "tag": { - "end": 1056, - "start": 1035, - "type": "TagDeclarator", - "value": "rectangleSegmentC002" - }, - "to": [ - -69.1, - 172.53999999999996 - ], - "type": "ToPoint" - }, - "surface": null - }, - "__meta": [ - { - "sourceRange": [ - 1035, - 1056, - 0 - ] - } - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 736, - 770, - 0 - ] - } + } + ] + }, + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 1146, + 1178, + 0 ] } + ] + }, + "start": { + "from": [ + 159.25, + 278.35 + ], + "to": [ + 159.25, + 278.35 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1184, + 1219, + 0 + ] } }, - "snapshots": [], - "parent": null + "tags": { + "rectangleSegmentA002": { + "type": "TagIdentifier", + "value": "rectangleSegmentA002", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1225, + 1273, + 0 + ] + }, + "from": [ + 159.25, + 278.35 + ], + "tag": { + "end": 1272, + "start": 1251, + "type": "TagDeclarator", + "value": "rectangleSegmentA002" + }, + "to": [ + 200.07, + 278.35 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1225, + 1273, + 0 + ], + "tag": { + "end": 1272, + "start": 1251, + "type": "TagDeclarator", + "value": "rectangleSegmentA002" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 1251, + 1272, + 0 + ] + } + ] + }, + "rectangleSegmentB001": { + "type": "TagIdentifier", + "value": "rectangleSegmentB001", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1279, + 1381, + 0 + ] + }, + "from": [ + 200.07, + 278.35 + ], + "tag": { + "end": 1380, + "start": 1359, + "type": "TagDeclarator", + "value": "rectangleSegmentB001" + }, + "to": [ + 200.07, + 146.08 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1279, + 1381, + 0 + ], + "tag": { + "end": 1380, + "start": 1359, + "type": "TagDeclarator", + "value": "rectangleSegmentB001" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 1359, + 1380, + 0 + ] + } + ] + }, + "rectangleSegmentC001": { + "type": "TagIdentifier", + "value": "rectangleSegmentC001", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1387, + 1507, + 0 + ] + }, + "from": [ + 200.07, + 146.08 + ], + "tag": { + "end": 1506, + "start": 1485, + "type": "TagDeclarator", + "value": "rectangleSegmentC001" + }, + "to": [ + 159.25, + 146.08 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1387, + 1507, + 0 + ], + "tag": { + "end": 1506, + "start": 1485, + "type": "TagDeclarator", + "value": "rectangleSegmentC001" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 1485, + 1506, + 0 + ] + } + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 1184, + 1219, + 0 + ] + } + ] } - ], - "currentEnv": [ - 0, - 0 - ], - "callStack": [] + }, + "sketch003": { + "type": "Sketch", + "value": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 776, + 824, + 0 + ] + }, + "from": [ + -69.1, + 277.34 + ], + "tag": { + "end": 823, + "start": 802, + "type": "TagDeclarator", + "value": "rectangleSegmentA003" + }, + "to": [ + -27.62, + 277.34 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 830, + 931, + 0 + ] + }, + "from": [ + -27.62, + 277.34 + ], + "tag": { + "end": 930, + "start": 909, + "type": "TagDeclarator", + "value": "rectangleSegmentB002" + }, + "to": [ + -27.62, + 172.54 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 937, + 1057, + 0 + ] + }, + "from": [ + -27.62, + 172.54 + ], + "tag": { + "end": 1056, + "start": 1035, + "type": "TagDeclarator", + "value": "rectangleSegmentC002" + }, + "to": [ + -69.1, + 172.54 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1063, + 1119, + 0 + ] + }, + "from": [ + -69.1, + 172.54 + ], + "tag": null, + "to": [ + -69.1, + 277.34 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1125, + 1133, + 0 + ] + }, + "from": [ + -69.1, + 277.34 + ], + "tag": null, + "to": [ + -69.1, + 277.34 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "seg04", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 105, + 154, + 0 + ], + "tag": { + "end": 153, + "start": 132, + "type": "TagDeclarator", + "value": "rectangleSegmentA001" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 160, + 247, + 0 + ], + "tag": { + "end": 246, + "start": 240, + "type": "TagDeclarator", + "value": "seg01" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 253, + 350, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 356, + 426, + 0 + ], + "tag": { + "end": 425, + "start": 419, + "type": "TagDeclarator", + "value": "seg02" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 540, + 627, + 0 + ], + "tag": { + "end": 626, + "start": 620, + "type": "TagDeclarator", + "value": "seg03" + }, + "type": "chamfer" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 633, + 684, + 0 + ], + "tag": { + "end": 683, + "start": 677, + "type": "TagDeclarator", + "value": "seg04" + }, + "type": "chamfer" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 105, + 154, + 0 + ] + }, + "from": [ + 75.8, + 317.2 + ], + "tag": { + "end": 153, + "start": 132, + "type": "TagDeclarator", + "value": "rectangleSegmentA001" + }, + "to": [ + 344.23, + 317.2 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 160, + 247, + 0 + ] + }, + "from": [ + 344.23, + 317.2 + ], + "tag": { + "end": 246, + "start": 240, + "type": "TagDeclarator", + "value": "seg01" + }, + "to": [ + 344.23, + 99.94 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 253, + 350, + 0 + ] + }, + "from": [ + 344.23, + 99.94 + ], + "tag": null, + "to": [ + 75.8, + 99.94 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 356, + 426, + 0 + ] + }, + "from": [ + 75.8, + 99.94 + ], + "tag": { + "end": 425, + "start": 419, + "type": "TagDeclarator", + "value": "seg02" + }, + "to": [ + 75.8, + 317.2 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 432, + 440, + 0 + ] + }, + "from": [ + 75.8, + 317.2 + ], + "tag": null, + "to": [ + 75.8, + 317.2 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 75.8, + 317.2 + ], + "to": [ + 75.8, + 317.2 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 37, + 69, + 0 + ] + } + }, + "tags": { + "rectangleSegmentA001": { + "type": "TagIdentifier", + "value": "rectangleSegmentA001", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 105, + 154, + 0 + ] + }, + "from": [ + 75.8, + 317.2 + ], + "tag": { + "end": 153, + "start": 132, + "type": "TagDeclarator", + "value": "rectangleSegmentA001" + }, + "to": [ + 344.23, + 317.2 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 105, + 154, + 0 + ], + "tag": { + "end": 153, + "start": 132, + "type": "TagDeclarator", + "value": "rectangleSegmentA001" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 132, + 153, + 0 + ] + } + ] + }, + "seg01": { + "type": "TagIdentifier", + "value": "seg01", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 160, + 247, + 0 + ] + }, + "from": [ + 344.23, + 317.2 + ], + "tag": { + "end": 246, + "start": 240, + "type": "TagDeclarator", + "value": "seg01" + }, + "to": [ + 344.23, + 99.94 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 160, + 247, + 0 + ], + "tag": { + "end": 246, + "start": 240, + "type": "TagDeclarator", + "value": "seg01" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 240, + 246, + 0 + ] + } + ] + }, + "seg02": { + "type": "TagIdentifier", + "value": "seg02", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 356, + 426, + 0 + ] + }, + "from": [ + 75.80000000000001, + 99.94 + ], + "tag": { + "end": 425, + "start": 419, + "type": "TagDeclarator", + "value": "seg02" + }, + "to": [ + 75.8, + 317.2 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 356, + 426, + 0 + ], + "tag": { + "end": 425, + "start": 419, + "type": "TagDeclarator", + "value": "seg02" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 419, + 425, + 0 + ] + } + ] + }, + "seg03": { + "type": "TagIdentifier", + "value": "seg03", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": null, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 540, + 627, + 0 + ], + "tag": { + "end": 626, + "start": 620, + "type": "TagDeclarator", + "value": "seg03" + }, + "type": "chamfer" + } + }, + "__meta": [ + { + "sourceRange": [ + 620, + 626, + 0 + ] + } + ] + }, + "seg04": { + "type": "TagIdentifier", + "value": "seg04", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": null, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 633, + 684, + 0 + ], + "tag": { + "end": 683, + "start": 677, + "type": "TagDeclarator", + "value": "seg04" + }, + "type": "chamfer" + } + }, + "__meta": [ + { + "sourceRange": [ + 677, + 683, + 0 + ] + } + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 37, + 69, + 0 + ] + } + ] + }, + "height": 100.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "edgeCuts": [ + { + "type": "fillet", + "id": "[uuid]", + "radius": 20.0, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "chamfer", + "id": "[uuid]", + "length": 50.0, + "edgeId": "[uuid]", + "tag": { + "end": 626, + "start": 620, + "type": "TagDeclarator", + "value": "seg03" + } + }, + { + "type": "chamfer", + "id": "[uuid]", + "length": 50.0, + "edgeId": "[uuid]", + "tag": { + "end": 683, + "start": 677, + "type": "TagDeclarator", + "value": "seg04" + } + } + ], + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 37, + 69, + 0 + ] + } + ] + }, + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 698, + 730, + 0 + ] + } + ] + }, + "start": { + "from": [ + -69.1, + 277.34 + ], + "to": [ + -69.1, + 277.34 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 736, + 770, + 0 + ] + } + }, + "tags": { + "rectangleSegmentA003": { + "type": "TagIdentifier", + "value": "rectangleSegmentA003", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 776, + 824, + 0 + ] + }, + "from": [ + -69.1, + 277.34 + ], + "tag": { + "end": 823, + "start": 802, + "type": "TagDeclarator", + "value": "rectangleSegmentA003" + }, + "to": [ + -27.619999999999997, + 277.34 + ], + "type": "ToPoint" + }, + "surface": null + }, + "__meta": [ + { + "sourceRange": [ + 802, + 823, + 0 + ] + } + ] + }, + "rectangleSegmentB002": { + "type": "TagIdentifier", + "value": "rectangleSegmentB002", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 830, + 931, + 0 + ] + }, + "from": [ + -27.619999999999997, + 277.34 + ], + "tag": { + "end": 930, + "start": 909, + "type": "TagDeclarator", + "value": "rectangleSegmentB002" + }, + "to": [ + -27.61999999999999, + 172.53999999999996 + ], + "type": "ToPoint" + }, + "surface": null + }, + "__meta": [ + { + "sourceRange": [ + 909, + 930, + 0 + ] + } + ] + }, + "rectangleSegmentC002": { + "type": "TagIdentifier", + "value": "rectangleSegmentC002", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 937, + 1057, + 0 + ] + }, + "from": [ + -27.61999999999999, + 172.53999999999996 + ], + "tag": { + "end": 1056, + "start": 1035, + "type": "TagDeclarator", + "value": "rectangleSegmentC002" + }, + "to": [ + -69.1, + 172.53999999999996 + ], + "type": "ToPoint" + }, + "surface": null + }, + "__meta": [ + { + "sourceRange": [ + 1035, + 1056, + 0 + ] + } + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 736, + 770, + 0 + ] + } + ] + } + } } diff --git a/src/wasm-lib/kcl/tests/sketch-on-chamfer-two-times/program_memory.snap b/src/wasm-lib/kcl/tests/sketch-on-chamfer-two-times/program_memory.snap index 0c0c9fe85..2c95878ab 100644 --- a/src/wasm-lib/kcl/tests/sketch-on-chamfer-two-times/program_memory.snap +++ b/src/wasm-lib/kcl/tests/sketch-on-chamfer-two-times/program_memory.snap @@ -1,34 +1,818 @@ --- source: kcl/src/simulation_tests.rs -description: Program memory after executing sketch-on-chamfer-two-times.kcl +description: Variables in memory after executing sketch-on-chamfer-two-times.kcl --- { - "environments": [ - { - "bindings": { - "HALF_TURN": { - "type": "Number", - "value": 180.0, + "HALF_TURN": { + "type": "Number", + "value": 180.0, + "__meta": [] + }, + "QUARTER_TURN": { + "type": "Number", + "value": 90.0, + "__meta": [] + }, + "THREE_QUARTER_TURN": { + "type": "Number", + "value": 270.0, + "__meta": [] + }, + "ZERO": { + "type": "Number", + "value": 0.0, + "__meta": [] + }, + "extrude001": { + "type": "Solid", + "value": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 105, + 154, + 0 + ], + "tag": { + "end": 153, + "start": 132, + "type": "TagDeclarator", + "value": "rectangleSegmentA001" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 160, + 247, + 0 + ], + "tag": { + "end": 246, + "start": 240, + "type": "TagDeclarator", + "value": "seg01" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 253, + 350, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 356, + 426, + 0 + ], + "tag": { + "end": 425, + "start": 419, + "type": "TagDeclarator", + "value": "seg02" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 540, + 591, + 0 + ], + "tag": { + "end": 590, + "start": 584, + "type": "TagDeclarator", + "value": "seg04" + }, + "type": "chamfer" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 597, + 684, + 0 + ], + "tag": { + "end": 683, + "start": 677, + "type": "TagDeclarator", + "value": "seg03" + }, + "type": "chamfer" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 105, + 154, + 0 + ] + }, + "from": [ + 75.8, + 317.2 + ], + "tag": { + "end": 153, + "start": 132, + "type": "TagDeclarator", + "value": "rectangleSegmentA001" + }, + "to": [ + 344.23, + 317.2 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 160, + 247, + 0 + ] + }, + "from": [ + 344.23, + 317.2 + ], + "tag": { + "end": 246, + "start": 240, + "type": "TagDeclarator", + "value": "seg01" + }, + "to": [ + 344.23, + 99.94 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 253, + 350, + 0 + ] + }, + "from": [ + 344.23, + 99.94 + ], + "tag": null, + "to": [ + 75.8, + 99.94 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 356, + 426, + 0 + ] + }, + "from": [ + 75.8, + 99.94 + ], + "tag": { + "end": 425, + "start": 419, + "type": "TagDeclarator", + "value": "seg02" + }, + "to": [ + 75.8, + 317.2 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 432, + 440, + 0 + ] + }, + "from": [ + 75.8, + 317.2 + ], + "tag": null, + "to": [ + 75.8, + 317.2 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, "__meta": [] }, - "QUARTER_TURN": { - "type": "Number", - "value": 90.0, - "__meta": [] + "start": { + "from": [ + 75.8, + 317.2 + ], + "to": [ + 75.8, + 317.2 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 37, + 69, + 0 + ] + } }, - "THREE_QUARTER_TURN": { - "type": "Number", - "value": 270.0, - "__meta": [] + "tags": { + "rectangleSegmentA001": { + "type": "TagIdentifier", + "value": "rectangleSegmentA001", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 105, + 154, + 0 + ] + }, + "from": [ + 75.8, + 317.2 + ], + "tag": { + "end": 153, + "start": 132, + "type": "TagDeclarator", + "value": "rectangleSegmentA001" + }, + "to": [ + 344.23, + 317.2 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 105, + 154, + 0 + ], + "tag": { + "end": 153, + "start": 132, + "type": "TagDeclarator", + "value": "rectangleSegmentA001" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 132, + 153, + 0 + ] + } + ] + }, + "seg01": { + "type": "TagIdentifier", + "value": "seg01", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 160, + 247, + 0 + ] + }, + "from": [ + 344.23, + 317.2 + ], + "tag": { + "end": 246, + "start": 240, + "type": "TagDeclarator", + "value": "seg01" + }, + "to": [ + 344.23, + 99.94 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 160, + 247, + 0 + ], + "tag": { + "end": 246, + "start": 240, + "type": "TagDeclarator", + "value": "seg01" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 240, + 246, + 0 + ] + } + ] + }, + "seg02": { + "type": "TagIdentifier", + "value": "seg02", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 356, + 426, + 0 + ] + }, + "from": [ + 75.80000000000001, + 99.94 + ], + "tag": { + "end": 425, + "start": 419, + "type": "TagDeclarator", + "value": "seg02" + }, + "to": [ + 75.8, + 317.2 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 356, + 426, + 0 + ], + "tag": { + "end": 425, + "start": 419, + "type": "TagDeclarator", + "value": "seg02" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 419, + 425, + 0 + ] + } + ] + }, + "seg03": { + "type": "TagIdentifier", + "value": "seg03", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": null, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 597, + 684, + 0 + ], + "tag": { + "end": 683, + "start": 677, + "type": "TagDeclarator", + "value": "seg03" + }, + "type": "chamfer" + } + }, + "__meta": [ + { + "sourceRange": [ + 677, + 683, + 0 + ] + } + ] + }, + "seg04": { + "type": "TagIdentifier", + "value": "seg04", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": null, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 540, + 591, + 0 + ], + "tag": { + "end": 590, + "start": 584, + "type": "TagDeclarator", + "value": "seg04" + }, + "type": "chamfer" + } + }, + "__meta": [ + { + "sourceRange": [ + 584, + 590, + 0 + ] + } + ] + } }, - "ZERO": { - "type": "Number", - "value": 0.0, - "__meta": [] + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" }, - "extrude001": { - "type": "Solid", - "value": { + "__meta": [ + { + "sourceRange": [ + 37, + 69, + 0 + ] + } + ] + }, + "height": 100.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "edgeCuts": [ + { + "type": "fillet", + "id": "[uuid]", + "radius": 20.0, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "chamfer", + "id": "[uuid]", + "length": 50.0, + "edgeId": "[uuid]", + "tag": { + "end": 590, + "start": 584, + "type": "TagDeclarator", + "value": "seg04" + } + }, + { + "type": "chamfer", + "id": "[uuid]", + "length": 50.0, + "edgeId": "[uuid]", + "tag": { + "end": 683, + "start": 677, + "type": "TagDeclarator", + "value": "seg03" + } + } + ], + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 37, + 69, + 0 + ] + } + ] + } + }, + "extrude002": { + "type": "Solid", + "value": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1225, + 1273, + 0 + ], + "tag": { + "end": 1272, + "start": 1251, + "type": "TagDeclarator", + "value": "rectangleSegmentA002" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1279, + 1381, + 0 + ], + "tag": { + "end": 1380, + "start": 1359, + "type": "TagDeclarator", + "value": "rectangleSegmentB001" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1387, + 1507, + 0 + ], + "tag": { + "end": 1506, + "start": 1485, + "type": "TagDeclarator", + "value": "rectangleSegmentC001" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1513, + 1569, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1225, + 1273, + 0 + ] + }, + "from": [ + 159.25, + 278.35 + ], + "tag": { + "end": 1272, + "start": 1251, + "type": "TagDeclarator", + "value": "rectangleSegmentA002" + }, + "to": [ + 200.07, + 278.35 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1279, + 1381, + 0 + ] + }, + "from": [ + 200.07, + 278.35 + ], + "tag": { + "end": 1380, + "start": 1359, + "type": "TagDeclarator", + "value": "rectangleSegmentB001" + }, + "to": [ + 200.07, + 146.08 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1387, + 1507, + 0 + ] + }, + "from": [ + 200.07, + 146.08 + ], + "tag": { + "end": 1506, + "start": 1485, + "type": "TagDeclarator", + "value": "rectangleSegmentC001" + }, + "to": [ + 159.25, + 146.08 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1513, + 1569, + 0 + ] + }, + "from": [ + 159.25, + 146.08 + ], + "tag": null, + "to": [ + 159.25, + 278.35 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1575, + 1583, + 0 + ] + }, + "from": [ + 159.25, + 278.35 + ], + "tag": null, + "to": [ + 159.25, + 278.35 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "seg03", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "solid": { "type": "Solid", "id": "[uuid]", "artifactId": "[uuid]", @@ -606,16 +1390,73 @@ description: Program memory after executing sketch-on-chamfer-two-times.kcl ] } ] + }, + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 1146, + 1178, + 0 + ] + } + ] + }, + "start": { + "from": [ + 159.25, + 278.35 + ], + "to": [ + 159.25, + 278.35 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1184, + 1219, + 0 + ] } }, - "extrude002": { - "type": "Solid", - "value": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { + "tags": { + "rectangleSegmentA002": { + "type": "TagIdentifier", + "value": "rectangleSegmentA002", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1225, + 1273, + 0 + ] + }, + "from": [ + 159.25, + 278.35 + ], + "tag": { + "end": 1272, + "start": 1251, + "type": "TagDeclarator", + "value": "rectangleSegmentA002" + }, + "to": [ + 200.07, + 278.35 + ], + "type": "ToPoint" + }, + "surface": { "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ @@ -630,8 +1471,51 @@ description: Program memory after executing sketch-on-chamfer-two-times.kcl "value": "rectangleSegmentA002" }, "type": "extrudePlane" - }, + } + }, + "__meta": [ { + "sourceRange": [ + 1251, + 1272, + 0 + ] + } + ] + }, + "rectangleSegmentB001": { + "type": "TagIdentifier", + "value": "rectangleSegmentB001", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1279, + 1381, + 0 + ] + }, + "from": [ + 200.07, + 278.35 + ], + "tag": { + "end": 1380, + "start": 1359, + "type": "TagDeclarator", + "value": "rectangleSegmentB001" + }, + "to": [ + 200.07, + 146.08 + ], + "type": "ToPoint" + }, + "surface": { "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ @@ -646,8 +1530,51 @@ description: Program memory after executing sketch-on-chamfer-two-times.kcl "value": "rectangleSegmentB001" }, "type": "extrudePlane" - }, + } + }, + "__meta": [ { + "sourceRange": [ + 1359, + 1380, + 0 + ] + } + ] + }, + "rectangleSegmentC001": { + "type": "TagIdentifier", + "value": "rectangleSegmentC001", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1387, + 1507, + 0 + ] + }, + "from": [ + 200.07, + 146.08 + ], + "tag": { + "end": 1506, + "start": 1485, + "type": "TagDeclarator", + "value": "rectangleSegmentC001" + }, + "to": [ + 159.25, + 146.08 + ], + "type": "ToPoint" + }, + "surface": { "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ @@ -662,983 +1589,791 @@ description: Program memory after executing sketch-on-chamfer-two-times.kcl "value": "rectangleSegmentC001" }, "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1513, - 1569, - 0 - ], - "tag": null, - "type": "extrudePlane" } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1225, - 1273, - 0 - ] - }, - "from": [ - 159.25, - 278.35 - ], - "tag": { - "end": 1272, - "start": 1251, - "type": "TagDeclarator", - "value": "rectangleSegmentA002" - }, - "to": [ - 200.07, - 278.35 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1279, - 1381, - 0 - ] - }, - "from": [ - 200.07, - 278.35 - ], - "tag": { - "end": 1380, - "start": 1359, - "type": "TagDeclarator", - "value": "rectangleSegmentB001" - }, - "to": [ - 200.07, - 146.08 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1387, - 1507, - 0 - ] - }, - "from": [ - 200.07, - 146.08 - ], - "tag": { - "end": 1506, - "start": 1485, - "type": "TagDeclarator", - "value": "rectangleSegmentC001" - }, - "to": [ - 159.25, - 146.08 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1513, - 1569, - 0 - ] - }, - "from": [ - 159.25, - 146.08 - ], - "tag": null, - "to": [ - 159.25, - 278.35 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1575, - 1583, - 0 - ] - }, - "from": [ - 159.25, - 278.35 - ], - "tag": null, - "to": [ - 159.25, - 278.35 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "face", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "seg03", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 105, - 154, - 0 - ], - "tag": { - "end": 153, - "start": 132, - "type": "TagDeclarator", - "value": "rectangleSegmentA001" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 160, - 247, - 0 - ], - "tag": { - "end": 246, - "start": 240, - "type": "TagDeclarator", - "value": "seg01" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 253, - 350, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 356, - 426, - 0 - ], - "tag": { - "end": 425, - "start": 419, - "type": "TagDeclarator", - "value": "seg02" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 540, - 591, - 0 - ], - "tag": { - "end": 590, - "start": 584, - "type": "TagDeclarator", - "value": "seg04" - }, - "type": "chamfer" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 597, - 684, - 0 - ], - "tag": { - "end": 683, - "start": 677, - "type": "TagDeclarator", - "value": "seg03" - }, - "type": "chamfer" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 105, - 154, - 0 - ] - }, - "from": [ - 75.8, - 317.2 - ], - "tag": { - "end": 153, - "start": 132, - "type": "TagDeclarator", - "value": "rectangleSegmentA001" - }, - "to": [ - 344.23, - 317.2 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 160, - 247, - 0 - ] - }, - "from": [ - 344.23, - 317.2 - ], - "tag": { - "end": 246, - "start": 240, - "type": "TagDeclarator", - "value": "seg01" - }, - "to": [ - 344.23, - 99.94 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 253, - 350, - 0 - ] - }, - "from": [ - 344.23, - 99.94 - ], - "tag": null, - "to": [ - 75.8, - 99.94 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 356, - 426, - 0 - ] - }, - "from": [ - 75.8, - 99.94 - ], - "tag": { - "end": 425, - "start": 419, - "type": "TagDeclarator", - "value": "seg02" - }, - "to": [ - 75.8, - 317.2 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 432, - 440, - 0 - ] - }, - "from": [ - 75.8, - 317.2 - ], - "tag": null, - "to": [ - 75.8, - 317.2 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 75.8, - 317.2 - ], - "to": [ - 75.8, - 317.2 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 37, - 69, - 0 - ] - } - }, - "tags": { - "rectangleSegmentA001": { - "type": "TagIdentifier", - "value": "rectangleSegmentA001", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 105, - 154, - 0 - ] - }, - "from": [ - 75.8, - 317.2 - ], - "tag": { - "end": 153, - "start": 132, - "type": "TagDeclarator", - "value": "rectangleSegmentA001" - }, - "to": [ - 344.23, - 317.2 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 105, - 154, - 0 - ], - "tag": { - "end": 153, - "start": 132, - "type": "TagDeclarator", - "value": "rectangleSegmentA001" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 132, - 153, - 0 - ] - } - ] - }, - "seg01": { - "type": "TagIdentifier", - "value": "seg01", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 160, - 247, - 0 - ] - }, - "from": [ - 344.23, - 317.2 - ], - "tag": { - "end": 246, - "start": 240, - "type": "TagDeclarator", - "value": "seg01" - }, - "to": [ - 344.23, - 99.94 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 160, - 247, - 0 - ], - "tag": { - "end": 246, - "start": 240, - "type": "TagDeclarator", - "value": "seg01" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 240, - 246, - 0 - ] - } - ] - }, - "seg02": { - "type": "TagIdentifier", - "value": "seg02", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 356, - 426, - 0 - ] - }, - "from": [ - 75.80000000000001, - 99.94 - ], - "tag": { - "end": 425, - "start": 419, - "type": "TagDeclarator", - "value": "seg02" - }, - "to": [ - 75.8, - 317.2 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 356, - 426, - 0 - ], - "tag": { - "end": 425, - "start": 419, - "type": "TagDeclarator", - "value": "seg02" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 419, - 425, - 0 - ] - } - ] - }, - "seg03": { - "type": "TagIdentifier", - "value": "seg03", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": null, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 597, - 684, - 0 - ], - "tag": { - "end": 683, - "start": 677, - "type": "TagDeclarator", - "value": "seg03" - }, - "type": "chamfer" - } - }, - "__meta": [ - { - "sourceRange": [ - 677, - 683, - 0 - ] - } - ] - }, - "seg04": { - "type": "TagIdentifier", - "value": "seg04", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": null, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 540, - 591, - 0 - ], - "tag": { - "end": 590, - "start": 584, - "type": "TagDeclarator", - "value": "seg04" - }, - "type": "chamfer" - } - }, - "__meta": [ - { - "sourceRange": [ - 584, - 590, - 0 - ] - } - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 37, - 69, - 0 - ] - } - ] - }, - "height": 100.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "edgeCuts": [ - { - "type": "fillet", - "id": "[uuid]", - "radius": 20.0, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "chamfer", - "id": "[uuid]", - "length": 50.0, - "edgeId": "[uuid]", - "tag": { - "end": 590, - "start": 584, - "type": "TagDeclarator", - "value": "seg04" - } - }, - { - "type": "chamfer", - "id": "[uuid]", - "length": 50.0, - "edgeId": "[uuid]", - "tag": { - "end": 683, - "start": 677, - "type": "TagDeclarator", - "value": "seg03" - } - } - ], - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 37, - 69, - 0 - ] - } - ] - }, - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 1146, - 1178, - 0 - ] - } - ] - }, - "start": { - "from": [ - 159.25, - 278.35 - ], - "to": [ - 159.25, - 278.35 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1184, - 1219, - 0 - ] - } - }, - "tags": { - "rectangleSegmentA002": { - "type": "TagIdentifier", - "value": "rectangleSegmentA002", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1225, - 1273, - 0 - ] - }, - "from": [ - 159.25, - 278.35 - ], - "tag": { - "end": 1272, - "start": 1251, - "type": "TagDeclarator", - "value": "rectangleSegmentA002" - }, - "to": [ - 200.07, - 278.35 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1225, - 1273, - 0 - ], - "tag": { - "end": 1272, - "start": 1251, - "type": "TagDeclarator", - "value": "rectangleSegmentA002" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 1251, - 1272, - 0 - ] - } - ] - }, - "rectangleSegmentB001": { - "type": "TagIdentifier", - "value": "rectangleSegmentB001", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1279, - 1381, - 0 - ] - }, - "from": [ - 200.07, - 278.35 - ], - "tag": { - "end": 1380, - "start": 1359, - "type": "TagDeclarator", - "value": "rectangleSegmentB001" - }, - "to": [ - 200.07, - 146.08 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1279, - 1381, - 0 - ], - "tag": { - "end": 1380, - "start": 1359, - "type": "TagDeclarator", - "value": "rectangleSegmentB001" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 1359, - 1380, - 0 - ] - } - ] - }, - "rectangleSegmentC001": { - "type": "TagIdentifier", - "value": "rectangleSegmentC001", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1387, - 1507, - 0 - ] - }, - "from": [ - 200.07, - 146.08 - ], - "tag": { - "end": 1506, - "start": 1485, - "type": "TagDeclarator", - "value": "rectangleSegmentC001" - }, - "to": [ - 159.25, - 146.08 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1387, - 1507, - 0 - ], - "tag": { - "end": 1506, - "start": 1485, - "type": "TagDeclarator", - "value": "rectangleSegmentC001" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 1485, - 1506, - 0 - ] - } - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 1184, - 1219, - 0 - ] - } - ] - }, - "height": 50.0, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Mm" }, "__meta": [ { "sourceRange": [ - 1184, - 1219, + 1485, + 1506, 0 ] } ] } }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 1184, + 1219, + 0 + ] + } + ] + }, + "height": 50.0, + "startCapId": null, + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 1184, + 1219, + 0 + ] + } + ] + } + }, + "rectangleSegmentA001": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "rectangleSegmentA001", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 105, + 154, + 0 + ] + }, + "from": [ + 75.8, + 317.2 + ], + "tag": { + "end": 153, + "start": 132, + "type": "TagDeclarator", + "value": "rectangleSegmentA001" + }, + "to": [ + 344.23, + 317.2 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 105, + 154, + 0 + ], + "tag": { + "end": 153, + "start": 132, + "type": "TagDeclarator", + "value": "rectangleSegmentA001" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 132, + 153, + 0 + ] + } + ] + }, + "rectangleSegmentA002": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "rectangleSegmentA002", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1225, + 1273, + 0 + ] + }, + "from": [ + 159.25, + 278.35 + ], + "tag": { + "end": 1272, + "start": 1251, + "type": "TagDeclarator", + "value": "rectangleSegmentA002" + }, + "to": [ + 200.07, + 278.35 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1225, + 1273, + 0 + ], + "tag": { + "end": 1272, + "start": 1251, + "type": "TagDeclarator", + "value": "rectangleSegmentA002" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 1251, + 1272, + 0 + ] + } + ] + }, + "rectangleSegmentA003": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "rectangleSegmentA003", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 776, + 824, + 0 + ] + }, + "from": [ + -69.1, + 277.34 + ], + "tag": { + "end": 823, + "start": 802, + "type": "TagDeclarator", + "value": "rectangleSegmentA003" + }, + "to": [ + -27.619999999999997, + 277.34 + ], + "type": "ToPoint" + }, + "surface": null + }, + "__meta": [ + { + "sourceRange": [ + 802, + 823, + 0 + ] + } + ] + }, + "rectangleSegmentB001": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "rectangleSegmentB001", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1279, + 1381, + 0 + ] + }, + "from": [ + 200.07, + 278.35 + ], + "tag": { + "end": 1380, + "start": 1359, + "type": "TagDeclarator", + "value": "rectangleSegmentB001" + }, + "to": [ + 200.07, + 146.08 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1279, + 1381, + 0 + ], + "tag": { + "end": 1380, + "start": 1359, + "type": "TagDeclarator", + "value": "rectangleSegmentB001" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 1359, + 1380, + 0 + ] + } + ] + }, + "rectangleSegmentB002": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "rectangleSegmentB002", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 830, + 931, + 0 + ] + }, + "from": [ + -27.619999999999997, + 277.34 + ], + "tag": { + "end": 930, + "start": 909, + "type": "TagDeclarator", + "value": "rectangleSegmentB002" + }, + "to": [ + -27.61999999999999, + 172.53999999999996 + ], + "type": "ToPoint" + }, + "surface": null + }, + "__meta": [ + { + "sourceRange": [ + 909, + 930, + 0 + ] + } + ] + }, + "rectangleSegmentC001": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "rectangleSegmentC001", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1387, + 1507, + 0 + ] + }, + "from": [ + 200.07, + 146.08 + ], + "tag": { + "end": 1506, + "start": 1485, + "type": "TagDeclarator", + "value": "rectangleSegmentC001" + }, + "to": [ + 159.25, + 146.08 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1387, + 1507, + 0 + ], + "tag": { + "end": 1506, + "start": 1485, + "type": "TagDeclarator", + "value": "rectangleSegmentC001" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 1485, + 1506, + 0 + ] + } + ] + }, + "rectangleSegmentC002": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "rectangleSegmentC002", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 937, + 1057, + 0 + ] + }, + "from": [ + -27.61999999999999, + 172.53999999999996 + ], + "tag": { + "end": 1056, + "start": 1035, + "type": "TagDeclarator", + "value": "rectangleSegmentC002" + }, + "to": [ + -69.1, + 172.53999999999996 + ], + "type": "ToPoint" + }, + "surface": null + }, + "__meta": [ + { + "sourceRange": [ + 1035, + 1056, + 0 + ] + } + ] + }, + "seg01": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "seg01", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 160, + 247, + 0 + ] + }, + "from": [ + 344.23, + 317.2 + ], + "tag": { + "end": 246, + "start": 240, + "type": "TagDeclarator", + "value": "seg01" + }, + "to": [ + 344.23, + 99.94 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 160, + 247, + 0 + ], + "tag": { + "end": 246, + "start": 240, + "type": "TagDeclarator", + "value": "seg01" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 240, + 246, + 0 + ] + } + ] + }, + "seg02": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "seg02", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 356, + 426, + 0 + ] + }, + "from": [ + 75.80000000000001, + 99.94 + ], + "tag": { + "end": 425, + "start": 419, + "type": "TagDeclarator", + "value": "seg02" + }, + "to": [ + 75.8, + 317.2 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 356, + 426, + 0 + ], + "tag": { + "end": 425, + "start": 419, + "type": "TagDeclarator", + "value": "seg02" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 419, + 425, + 0 + ] + } + ] + }, + "seg03": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "seg03", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": null, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 597, + 684, + 0 + ], + "tag": { + "end": 683, + "start": 677, + "type": "TagDeclarator", + "value": "seg03" + }, + "type": "chamfer" + } + }, + "__meta": [ + { + "sourceRange": [ + 677, + 683, + 0 + ] + } + ] + }, + "seg04": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "seg04", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": null, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 540, + 591, + 0 + ], + "tag": { + "end": 590, + "start": 584, + "type": "TagDeclarator", + "value": "seg04" + }, + "type": "chamfer" + } + }, + "__meta": [ + { + "sourceRange": [ + 584, + 590, + 0 + ] + } + ] + }, + "sketch001": { + "type": "Sketch", + "value": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 105, + 154, + 0 + ] + }, + "from": [ + 75.8, + 317.2 + ], + "tag": { + "end": 153, + "start": 132, + "type": "TagDeclarator", + "value": "rectangleSegmentA001" + }, + "to": [ + 344.23, + 317.2 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 160, + 247, + 0 + ] + }, + "from": [ + 344.23, + 317.2 + ], + "tag": { + "end": 246, + "start": 240, + "type": "TagDeclarator", + "value": "seg01" + }, + "to": [ + 344.23, + 99.94 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 253, + 350, + 0 + ] + }, + "from": [ + 344.23, + 99.94 + ], + "tag": null, + "to": [ + 75.8, + 99.94 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 356, + 426, + 0 + ] + }, + "from": [ + 75.8, + 99.94 + ], + "tag": { + "end": 425, + "start": 419, + "type": "TagDeclarator", + "value": "seg02" + }, + "to": [ + 75.8, + 317.2 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 432, + 440, + 0 + ] + }, + "from": [ + 75.8, + 317.2 + ], + "tag": null, + "to": [ + 75.8, + 317.2 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 75.8, + 317.2 + ], + "to": [ + 75.8, + 317.2 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 37, + 69, + 0 + ] + } + }, + "tags": { "rectangleSegmentA001": { - "type": "TagIdentifier", "type": "TagIdentifier", "value": "rectangleSegmentA001", "info": { @@ -1697,323 +2432,7 @@ description: Program memory after executing sketch-on-chamfer-two-times.kcl } ] }, - "rectangleSegmentA002": { - "type": "TagIdentifier", - "type": "TagIdentifier", - "value": "rectangleSegmentA002", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1225, - 1273, - 0 - ] - }, - "from": [ - 159.25, - 278.35 - ], - "tag": { - "end": 1272, - "start": 1251, - "type": "TagDeclarator", - "value": "rectangleSegmentA002" - }, - "to": [ - 200.07, - 278.35 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1225, - 1273, - 0 - ], - "tag": { - "end": 1272, - "start": 1251, - "type": "TagDeclarator", - "value": "rectangleSegmentA002" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 1251, - 1272, - 0 - ] - } - ] - }, - "rectangleSegmentA003": { - "type": "TagIdentifier", - "type": "TagIdentifier", - "value": "rectangleSegmentA003", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 776, - 824, - 0 - ] - }, - "from": [ - -69.1, - 277.34 - ], - "tag": { - "end": 823, - "start": 802, - "type": "TagDeclarator", - "value": "rectangleSegmentA003" - }, - "to": [ - -27.619999999999997, - 277.34 - ], - "type": "ToPoint" - }, - "surface": null - }, - "__meta": [ - { - "sourceRange": [ - 802, - 823, - 0 - ] - } - ] - }, - "rectangleSegmentB001": { - "type": "TagIdentifier", - "type": "TagIdentifier", - "value": "rectangleSegmentB001", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1279, - 1381, - 0 - ] - }, - "from": [ - 200.07, - 278.35 - ], - "tag": { - "end": 1380, - "start": 1359, - "type": "TagDeclarator", - "value": "rectangleSegmentB001" - }, - "to": [ - 200.07, - 146.08 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1279, - 1381, - 0 - ], - "tag": { - "end": 1380, - "start": 1359, - "type": "TagDeclarator", - "value": "rectangleSegmentB001" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 1359, - 1380, - 0 - ] - } - ] - }, - "rectangleSegmentB002": { - "type": "TagIdentifier", - "type": "TagIdentifier", - "value": "rectangleSegmentB002", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 830, - 931, - 0 - ] - }, - "from": [ - -27.619999999999997, - 277.34 - ], - "tag": { - "end": 930, - "start": 909, - "type": "TagDeclarator", - "value": "rectangleSegmentB002" - }, - "to": [ - -27.61999999999999, - 172.53999999999996 - ], - "type": "ToPoint" - }, - "surface": null - }, - "__meta": [ - { - "sourceRange": [ - 909, - 930, - 0 - ] - } - ] - }, - "rectangleSegmentC001": { - "type": "TagIdentifier", - "type": "TagIdentifier", - "value": "rectangleSegmentC001", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1387, - 1507, - 0 - ] - }, - "from": [ - 200.07, - 146.08 - ], - "tag": { - "end": 1506, - "start": 1485, - "type": "TagDeclarator", - "value": "rectangleSegmentC001" - }, - "to": [ - 159.25, - 146.08 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1387, - 1507, - 0 - ], - "tag": { - "end": 1506, - "start": 1485, - "type": "TagDeclarator", - "value": "rectangleSegmentC001" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 1485, - 1506, - 0 - ] - } - ] - }, - "rectangleSegmentC002": { - "type": "TagIdentifier", - "type": "TagIdentifier", - "value": "rectangleSegmentC002", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 937, - 1057, - 0 - ] - }, - "from": [ - -27.61999999999999, - 172.53999999999996 - ], - "tag": { - "end": 1056, - "start": 1035, - "type": "TagDeclarator", - "value": "rectangleSegmentC002" - }, - "to": [ - -69.1, - 172.53999999999996 - ], - "type": "ToPoint" - }, - "surface": null - }, - "__meta": [ - { - "sourceRange": [ - 1035, - 1056, - 0 - ] - } - ] - }, "seg01": { - "type": "TagIdentifier", "type": "TagIdentifier", "value": "seg01", "info": { @@ -2073,7 +2492,6 @@ description: Program memory after executing sketch-on-chamfer-two-times.kcl ] }, "seg02": { - "type": "TagIdentifier", "type": "TagIdentifier", "value": "seg02", "info": { @@ -2133,7 +2551,6 @@ description: Program memory after executing sketch-on-chamfer-two-times.kcl ] }, "seg03": { - "type": "TagIdentifier", "type": "TagIdentifier", "value": "seg03", "info": { @@ -2169,7 +2586,6 @@ description: Program memory after executing sketch-on-chamfer-two-times.kcl ] }, "seg04": { - "type": "TagIdentifier", "type": "TagIdentifier", "value": "seg04", "info": { @@ -2203,10 +2619,264 @@ description: Program memory after executing sketch-on-chamfer-two-times.kcl ] } ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 37, + 69, + 0 + ] + } + ] + } + }, + "sketch002": { + "type": "Sketch", + "value": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1225, + 1273, + 0 + ] + }, + "from": [ + 159.25, + 278.35 + ], + "tag": { + "end": 1272, + "start": 1251, + "type": "TagDeclarator", + "value": "rectangleSegmentA002" + }, + "to": [ + 200.07, + 278.35 + ], + "type": "ToPoint" }, - "sketch001": { - "type": "Sketch", - "value": { + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1279, + 1381, + 0 + ] + }, + "from": [ + 200.07, + 278.35 + ], + "tag": { + "end": 1380, + "start": 1359, + "type": "TagDeclarator", + "value": "rectangleSegmentB001" + }, + "to": [ + 200.07, + 146.08 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1387, + 1507, + 0 + ] + }, + "from": [ + 200.07, + 146.08 + ], + "tag": { + "end": 1506, + "start": 1485, + "type": "TagDeclarator", + "value": "rectangleSegmentC001" + }, + "to": [ + 159.25, + 146.08 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1513, + 1569, + 0 + ] + }, + "from": [ + 159.25, + 146.08 + ], + "tag": null, + "to": [ + 159.25, + 278.35 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1575, + 1583, + 0 + ] + }, + "from": [ + 159.25, + 278.35 + ], + "tag": null, + "to": [ + 159.25, + 278.35 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "seg03", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 105, + 154, + 0 + ], + "tag": { + "end": 153, + "start": 132, + "type": "TagDeclarator", + "value": "rectangleSegmentA001" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 160, + 247, + 0 + ], + "tag": { + "end": 246, + "start": 240, + "type": "TagDeclarator", + "value": "seg01" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 253, + 350, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 356, + 426, + 0 + ], + "tag": { + "end": 425, + "start": 419, + "type": "TagDeclarator", + "value": "seg02" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 540, + 591, + 0 + ], + "tag": { + "end": 590, + "start": 584, + "type": "TagDeclarator", + "value": "seg04" + }, + "type": "chamfer" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 597, + 684, + 0 + ], + "tag": { + "end": 683, + "start": 677, + "type": "TagDeclarator", + "value": "seg03" + }, + "type": "chamfer" + } + ], + "sketch": { "type": "Sketch", "id": "[uuid]", "paths": [ @@ -2638,1867 +3308,1184 @@ description: Program memory after executing sketch-on-chamfer-two-times.kcl ] } ] - } - }, - "sketch002": { - "type": "Sketch", - "value": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1225, - 1273, - 0 - ] - }, - "from": [ - 159.25, - 278.35 - ], - "tag": { - "end": 1272, - "start": 1251, - "type": "TagDeclarator", - "value": "rectangleSegmentA002" - }, - "to": [ - 200.07, - 278.35 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1279, - 1381, - 0 - ] - }, - "from": [ - 200.07, - 278.35 - ], - "tag": { - "end": 1380, - "start": 1359, - "type": "TagDeclarator", - "value": "rectangleSegmentB001" - }, - "to": [ - 200.07, - 146.08 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1387, - 1507, - 0 - ] - }, - "from": [ - 200.07, - 146.08 - ], - "tag": { - "end": 1506, - "start": 1485, - "type": "TagDeclarator", - "value": "rectangleSegmentC001" - }, - "to": [ - 159.25, - 146.08 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1513, - 1569, - 0 - ] - }, - "from": [ - 159.25, - 146.08 - ], - "tag": null, - "to": [ - 159.25, - 278.35 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1575, - 1583, - 0 - ] - }, - "from": [ - 159.25, - 278.35 - ], - "tag": null, - "to": [ - 159.25, - 278.35 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "face", + }, + "height": 100.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "edgeCuts": [ + { + "type": "fillet", "id": "[uuid]", - "artifactId": "[uuid]", - "value": "seg03", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 105, - 154, - 0 - ], - "tag": { - "end": 153, - "start": 132, - "type": "TagDeclarator", - "value": "rectangleSegmentA001" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 160, - 247, - 0 - ], - "tag": { - "end": 246, - "start": 240, - "type": "TagDeclarator", - "value": "seg01" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 253, - 350, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 356, - 426, - 0 - ], - "tag": { - "end": 425, - "start": 419, - "type": "TagDeclarator", - "value": "seg02" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 540, - 591, - 0 - ], - "tag": { - "end": 590, - "start": 584, - "type": "TagDeclarator", - "value": "seg04" - }, - "type": "chamfer" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 597, - 684, - 0 - ], - "tag": { - "end": 683, - "start": 677, - "type": "TagDeclarator", - "value": "seg03" - }, - "type": "chamfer" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 105, - 154, - 0 - ] - }, - "from": [ - 75.8, - 317.2 - ], - "tag": { - "end": 153, - "start": 132, - "type": "TagDeclarator", - "value": "rectangleSegmentA001" - }, - "to": [ - 344.23, - 317.2 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 160, - 247, - 0 - ] - }, - "from": [ - 344.23, - 317.2 - ], - "tag": { - "end": 246, - "start": 240, - "type": "TagDeclarator", - "value": "seg01" - }, - "to": [ - 344.23, - 99.94 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 253, - 350, - 0 - ] - }, - "from": [ - 344.23, - 99.94 - ], - "tag": null, - "to": [ - 75.8, - 99.94 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 356, - 426, - 0 - ] - }, - "from": [ - 75.8, - 99.94 - ], - "tag": { - "end": 425, - "start": 419, - "type": "TagDeclarator", - "value": "seg02" - }, - "to": [ - 75.8, - 317.2 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 432, - 440, - 0 - ] - }, - "from": [ - 75.8, - 317.2 - ], - "tag": null, - "to": [ - 75.8, - 317.2 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 75.8, - 317.2 - ], - "to": [ - 75.8, - 317.2 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 37, - 69, - 0 - ] - } - }, - "tags": { - "rectangleSegmentA001": { - "type": "TagIdentifier", - "value": "rectangleSegmentA001", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 105, - 154, - 0 - ] - }, - "from": [ - 75.8, - 317.2 - ], - "tag": { - "end": 153, - "start": 132, - "type": "TagDeclarator", - "value": "rectangleSegmentA001" - }, - "to": [ - 344.23, - 317.2 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 105, - 154, - 0 - ], - "tag": { - "end": 153, - "start": 132, - "type": "TagDeclarator", - "value": "rectangleSegmentA001" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 132, - 153, - 0 - ] - } - ] - }, - "seg01": { - "type": "TagIdentifier", - "value": "seg01", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 160, - 247, - 0 - ] - }, - "from": [ - 344.23, - 317.2 - ], - "tag": { - "end": 246, - "start": 240, - "type": "TagDeclarator", - "value": "seg01" - }, - "to": [ - 344.23, - 99.94 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 160, - 247, - 0 - ], - "tag": { - "end": 246, - "start": 240, - "type": "TagDeclarator", - "value": "seg01" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 240, - 246, - 0 - ] - } - ] - }, - "seg02": { - "type": "TagIdentifier", - "value": "seg02", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 356, - 426, - 0 - ] - }, - "from": [ - 75.80000000000001, - 99.94 - ], - "tag": { - "end": 425, - "start": 419, - "type": "TagDeclarator", - "value": "seg02" - }, - "to": [ - 75.8, - 317.2 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 356, - 426, - 0 - ], - "tag": { - "end": 425, - "start": 419, - "type": "TagDeclarator", - "value": "seg02" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 419, - 425, - 0 - ] - } - ] - }, - "seg03": { - "type": "TagIdentifier", - "value": "seg03", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": null, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 597, - 684, - 0 - ], - "tag": { - "end": 683, - "start": 677, - "type": "TagDeclarator", - "value": "seg03" - }, - "type": "chamfer" - } - }, - "__meta": [ - { - "sourceRange": [ - 677, - 683, - 0 - ] - } - ] - }, - "seg04": { - "type": "TagIdentifier", - "value": "seg04", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": null, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 540, - 591, - 0 - ], - "tag": { - "end": 590, - "start": 584, - "type": "TagDeclarator", - "value": "seg04" - }, - "type": "chamfer" - } - }, - "__meta": [ - { - "sourceRange": [ - 584, - 590, - 0 - ] - } - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 37, - 69, - 0 - ] - } - ] - }, - "height": 100.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "edgeCuts": [ - { - "type": "fillet", - "id": "[uuid]", - "radius": 20.0, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "chamfer", - "id": "[uuid]", - "length": 50.0, - "edgeId": "[uuid]", - "tag": { - "end": 590, - "start": 584, - "type": "TagDeclarator", - "value": "seg04" - } - }, - { - "type": "chamfer", - "id": "[uuid]", - "length": 50.0, - "edgeId": "[uuid]", - "tag": { - "end": 683, - "start": 677, - "type": "TagDeclarator", - "value": "seg03" - } - } - ], - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 37, - 69, - 0 - ] - } - ] - }, - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 1146, - 1178, - 0 - ] - } + "radius": 20.0, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "chamfer", + "id": "[uuid]", + "length": 50.0, + "edgeId": "[uuid]", + "tag": { + "end": 590, + "start": 584, + "type": "TagDeclarator", + "value": "seg04" + } + }, + { + "type": "chamfer", + "id": "[uuid]", + "length": 50.0, + "edgeId": "[uuid]", + "tag": { + "end": 683, + "start": 677, + "type": "TagDeclarator", + "value": "seg03" + } + } + ], + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 37, + 69, + 0 ] - }, - "start": { - "from": [ - 159.25, - 278.35 - ], - "to": [ - 159.25, - 278.35 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1184, - 1219, - 0 - ] - } - }, - "tags": { - "rectangleSegmentA002": { - "type": "TagIdentifier", - "value": "rectangleSegmentA002", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1225, - 1273, - 0 - ] - }, - "from": [ - 159.25, - 278.35 - ], - "tag": { - "end": 1272, - "start": 1251, - "type": "TagDeclarator", - "value": "rectangleSegmentA002" - }, - "to": [ - 200.07, - 278.35 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1225, - 1273, - 0 - ], - "tag": { - "end": 1272, - "start": 1251, - "type": "TagDeclarator", - "value": "rectangleSegmentA002" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 1251, - 1272, - 0 - ] - } - ] - }, - "rectangleSegmentB001": { - "type": "TagIdentifier", - "value": "rectangleSegmentB001", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1279, - 1381, - 0 - ] - }, - "from": [ - 200.07, - 278.35 - ], - "tag": { - "end": 1380, - "start": 1359, - "type": "TagDeclarator", - "value": "rectangleSegmentB001" - }, - "to": [ - 200.07, - 146.08 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1279, - 1381, - 0 - ], - "tag": { - "end": 1380, - "start": 1359, - "type": "TagDeclarator", - "value": "rectangleSegmentB001" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 1359, - 1380, - 0 - ] - } - ] - }, - "rectangleSegmentC001": { - "type": "TagIdentifier", - "value": "rectangleSegmentC001", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1387, - 1507, - 0 - ] - }, - "from": [ - 200.07, - 146.08 - ], - "tag": { - "end": 1506, - "start": 1485, - "type": "TagDeclarator", - "value": "rectangleSegmentC001" - }, - "to": [ - 159.25, - 146.08 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1387, - 1507, - 0 - ], - "tag": { - "end": 1506, - "start": 1485, - "type": "TagDeclarator", - "value": "rectangleSegmentC001" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 1485, - 1506, - 0 - ] - } - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 1184, - 1219, - 0 - ] - } - ] - } - }, - "sketch003": { - "type": "Sketch", - "value": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 776, - 824, - 0 - ] - }, - "from": [ - -69.1, - 277.34 - ], - "tag": { - "end": 823, - "start": 802, - "type": "TagDeclarator", - "value": "rectangleSegmentA003" - }, - "to": [ - -27.62, - 277.34 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 830, - 931, - 0 - ] - }, - "from": [ - -27.62, - 277.34 - ], - "tag": { - "end": 930, - "start": 909, - "type": "TagDeclarator", - "value": "rectangleSegmentB002" - }, - "to": [ - -27.62, - 172.54 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 937, - 1057, - 0 - ] - }, - "from": [ - -27.62, - 172.54 - ], - "tag": { - "end": 1056, - "start": 1035, - "type": "TagDeclarator", - "value": "rectangleSegmentC002" - }, - "to": [ - -69.1, - 172.54 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1063, - 1119, - 0 - ] - }, - "from": [ - -69.1, - 172.54 - ], - "tag": null, - "to": [ - -69.1, - 277.34 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1125, - 1133, - 0 - ] - }, - "from": [ - -69.1, - 277.34 - ], - "tag": null, - "to": [ - -69.1, - 277.34 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "face", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "seg04", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 105, - 154, - 0 - ], - "tag": { - "end": 153, - "start": 132, - "type": "TagDeclarator", - "value": "rectangleSegmentA001" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 160, - 247, - 0 - ], - "tag": { - "end": 246, - "start": 240, - "type": "TagDeclarator", - "value": "seg01" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 253, - 350, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 356, - 426, - 0 - ], - "tag": { - "end": 425, - "start": 419, - "type": "TagDeclarator", - "value": "seg02" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 540, - 591, - 0 - ], - "tag": { - "end": 590, - "start": 584, - "type": "TagDeclarator", - "value": "seg04" - }, - "type": "chamfer" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 597, - 684, - 0 - ], - "tag": { - "end": 683, - "start": 677, - "type": "TagDeclarator", - "value": "seg03" - }, - "type": "chamfer" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 105, - 154, - 0 - ] - }, - "from": [ - 75.8, - 317.2 - ], - "tag": { - "end": 153, - "start": 132, - "type": "TagDeclarator", - "value": "rectangleSegmentA001" - }, - "to": [ - 344.23, - 317.2 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 160, - 247, - 0 - ] - }, - "from": [ - 344.23, - 317.2 - ], - "tag": { - "end": 246, - "start": 240, - "type": "TagDeclarator", - "value": "seg01" - }, - "to": [ - 344.23, - 99.94 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 253, - 350, - 0 - ] - }, - "from": [ - 344.23, - 99.94 - ], - "tag": null, - "to": [ - 75.8, - 99.94 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 356, - 426, - 0 - ] - }, - "from": [ - 75.8, - 99.94 - ], - "tag": { - "end": 425, - "start": 419, - "type": "TagDeclarator", - "value": "seg02" - }, - "to": [ - 75.8, - 317.2 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 432, - 440, - 0 - ] - }, - "from": [ - 75.8, - 317.2 - ], - "tag": null, - "to": [ - 75.8, - 317.2 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 75.8, - 317.2 - ], - "to": [ - 75.8, - 317.2 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 37, - 69, - 0 - ] - } - }, - "tags": { - "rectangleSegmentA001": { - "type": "TagIdentifier", - "value": "rectangleSegmentA001", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 105, - 154, - 0 - ] - }, - "from": [ - 75.8, - 317.2 - ], - "tag": { - "end": 153, - "start": 132, - "type": "TagDeclarator", - "value": "rectangleSegmentA001" - }, - "to": [ - 344.23, - 317.2 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 105, - 154, - 0 - ], - "tag": { - "end": 153, - "start": 132, - "type": "TagDeclarator", - "value": "rectangleSegmentA001" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 132, - 153, - 0 - ] - } - ] - }, - "seg01": { - "type": "TagIdentifier", - "value": "seg01", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 160, - 247, - 0 - ] - }, - "from": [ - 344.23, - 317.2 - ], - "tag": { - "end": 246, - "start": 240, - "type": "TagDeclarator", - "value": "seg01" - }, - "to": [ - 344.23, - 99.94 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 160, - 247, - 0 - ], - "tag": { - "end": 246, - "start": 240, - "type": "TagDeclarator", - "value": "seg01" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 240, - 246, - 0 - ] - } - ] - }, - "seg02": { - "type": "TagIdentifier", - "value": "seg02", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 356, - 426, - 0 - ] - }, - "from": [ - 75.80000000000001, - 99.94 - ], - "tag": { - "end": 425, - "start": 419, - "type": "TagDeclarator", - "value": "seg02" - }, - "to": [ - 75.8, - 317.2 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 356, - 426, - 0 - ], - "tag": { - "end": 425, - "start": 419, - "type": "TagDeclarator", - "value": "seg02" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 419, - 425, - 0 - ] - } - ] - }, - "seg03": { - "type": "TagIdentifier", - "value": "seg03", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": null, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 597, - 684, - 0 - ], - "tag": { - "end": 683, - "start": 677, - "type": "TagDeclarator", - "value": "seg03" - }, - "type": "chamfer" - } - }, - "__meta": [ - { - "sourceRange": [ - 677, - 683, - 0 - ] - } - ] - }, - "seg04": { - "type": "TagIdentifier", - "value": "seg04", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": null, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 540, - 591, - 0 - ], - "tag": { - "end": 590, - "start": 584, - "type": "TagDeclarator", - "value": "seg04" - }, - "type": "chamfer" - } - }, - "__meta": [ - { - "sourceRange": [ - 584, - 590, - 0 - ] - } - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 37, - 69, - 0 - ] - } - ] - }, - "height": 100.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "edgeCuts": [ - { - "type": "fillet", - "id": "[uuid]", - "radius": 20.0, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "chamfer", - "id": "[uuid]", - "length": 50.0, - "edgeId": "[uuid]", - "tag": { - "end": 590, - "start": 584, - "type": "TagDeclarator", - "value": "seg04" - } - }, - { - "type": "chamfer", - "id": "[uuid]", - "length": 50.0, - "edgeId": "[uuid]", - "tag": { - "end": 683, - "start": 677, - "type": "TagDeclarator", - "value": "seg03" - } - } - ], - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 37, - 69, - 0 - ] - } - ] - }, - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 698, - 730, - 0 - ] - } - ] - }, - "start": { - "from": [ - -69.1, - 277.34 - ], - "to": [ - -69.1, - 277.34 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 736, - 770, - 0 - ] - } - }, - "tags": { - "rectangleSegmentA003": { - "type": "TagIdentifier", - "value": "rectangleSegmentA003", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 776, - 824, - 0 - ] - }, - "from": [ - -69.1, - 277.34 - ], - "tag": { - "end": 823, - "start": 802, - "type": "TagDeclarator", - "value": "rectangleSegmentA003" - }, - "to": [ - -27.619999999999997, - 277.34 - ], - "type": "ToPoint" - }, - "surface": null - }, - "__meta": [ - { - "sourceRange": [ - 802, - 823, - 0 - ] - } - ] - }, - "rectangleSegmentB002": { - "type": "TagIdentifier", - "value": "rectangleSegmentB002", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 830, - 931, - 0 - ] - }, - "from": [ - -27.619999999999997, - 277.34 - ], - "tag": { - "end": 930, - "start": 909, - "type": "TagDeclarator", - "value": "rectangleSegmentB002" - }, - "to": [ - -27.61999999999999, - 172.53999999999996 - ], - "type": "ToPoint" - }, - "surface": null - }, - "__meta": [ - { - "sourceRange": [ - 909, - 930, - 0 - ] - } - ] - }, - "rectangleSegmentC002": { - "type": "TagIdentifier", - "value": "rectangleSegmentC002", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 937, - 1057, - 0 - ] - }, - "from": [ - -27.61999999999999, - 172.53999999999996 - ], - "tag": { - "end": 1056, - "start": 1035, - "type": "TagDeclarator", - "value": "rectangleSegmentC002" - }, - "to": [ - -69.1, - 172.53999999999996 - ], - "type": "ToPoint" - }, - "surface": null - }, - "__meta": [ - { - "sourceRange": [ - 1035, - 1056, - 0 - ] - } - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 736, - 770, - 0 - ] - } + } + ] + }, + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 1146, + 1178, + 0 ] } + ] + }, + "start": { + "from": [ + 159.25, + 278.35 + ], + "to": [ + 159.25, + 278.35 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1184, + 1219, + 0 + ] } }, - "snapshots": [], - "parent": null + "tags": { + "rectangleSegmentA002": { + "type": "TagIdentifier", + "value": "rectangleSegmentA002", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1225, + 1273, + 0 + ] + }, + "from": [ + 159.25, + 278.35 + ], + "tag": { + "end": 1272, + "start": 1251, + "type": "TagDeclarator", + "value": "rectangleSegmentA002" + }, + "to": [ + 200.07, + 278.35 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1225, + 1273, + 0 + ], + "tag": { + "end": 1272, + "start": 1251, + "type": "TagDeclarator", + "value": "rectangleSegmentA002" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 1251, + 1272, + 0 + ] + } + ] + }, + "rectangleSegmentB001": { + "type": "TagIdentifier", + "value": "rectangleSegmentB001", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1279, + 1381, + 0 + ] + }, + "from": [ + 200.07, + 278.35 + ], + "tag": { + "end": 1380, + "start": 1359, + "type": "TagDeclarator", + "value": "rectangleSegmentB001" + }, + "to": [ + 200.07, + 146.08 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1279, + 1381, + 0 + ], + "tag": { + "end": 1380, + "start": 1359, + "type": "TagDeclarator", + "value": "rectangleSegmentB001" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 1359, + 1380, + 0 + ] + } + ] + }, + "rectangleSegmentC001": { + "type": "TagIdentifier", + "value": "rectangleSegmentC001", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1387, + 1507, + 0 + ] + }, + "from": [ + 200.07, + 146.08 + ], + "tag": { + "end": 1506, + "start": 1485, + "type": "TagDeclarator", + "value": "rectangleSegmentC001" + }, + "to": [ + 159.25, + 146.08 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1387, + 1507, + 0 + ], + "tag": { + "end": 1506, + "start": 1485, + "type": "TagDeclarator", + "value": "rectangleSegmentC001" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 1485, + 1506, + 0 + ] + } + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 1184, + 1219, + 0 + ] + } + ] } - ], - "currentEnv": [ - 0, - 0 - ], - "callStack": [] + }, + "sketch003": { + "type": "Sketch", + "value": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 776, + 824, + 0 + ] + }, + "from": [ + -69.1, + 277.34 + ], + "tag": { + "end": 823, + "start": 802, + "type": "TagDeclarator", + "value": "rectangleSegmentA003" + }, + "to": [ + -27.62, + 277.34 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 830, + 931, + 0 + ] + }, + "from": [ + -27.62, + 277.34 + ], + "tag": { + "end": 930, + "start": 909, + "type": "TagDeclarator", + "value": "rectangleSegmentB002" + }, + "to": [ + -27.62, + 172.54 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 937, + 1057, + 0 + ] + }, + "from": [ + -27.62, + 172.54 + ], + "tag": { + "end": 1056, + "start": 1035, + "type": "TagDeclarator", + "value": "rectangleSegmentC002" + }, + "to": [ + -69.1, + 172.54 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1063, + 1119, + 0 + ] + }, + "from": [ + -69.1, + 172.54 + ], + "tag": null, + "to": [ + -69.1, + 277.34 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1125, + 1133, + 0 + ] + }, + "from": [ + -69.1, + 277.34 + ], + "tag": null, + "to": [ + -69.1, + 277.34 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "seg04", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 105, + 154, + 0 + ], + "tag": { + "end": 153, + "start": 132, + "type": "TagDeclarator", + "value": "rectangleSegmentA001" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 160, + 247, + 0 + ], + "tag": { + "end": 246, + "start": 240, + "type": "TagDeclarator", + "value": "seg01" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 253, + 350, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 356, + 426, + 0 + ], + "tag": { + "end": 425, + "start": 419, + "type": "TagDeclarator", + "value": "seg02" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 540, + 591, + 0 + ], + "tag": { + "end": 590, + "start": 584, + "type": "TagDeclarator", + "value": "seg04" + }, + "type": "chamfer" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 597, + 684, + 0 + ], + "tag": { + "end": 683, + "start": 677, + "type": "TagDeclarator", + "value": "seg03" + }, + "type": "chamfer" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 105, + 154, + 0 + ] + }, + "from": [ + 75.8, + 317.2 + ], + "tag": { + "end": 153, + "start": 132, + "type": "TagDeclarator", + "value": "rectangleSegmentA001" + }, + "to": [ + 344.23, + 317.2 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 160, + 247, + 0 + ] + }, + "from": [ + 344.23, + 317.2 + ], + "tag": { + "end": 246, + "start": 240, + "type": "TagDeclarator", + "value": "seg01" + }, + "to": [ + 344.23, + 99.94 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 253, + 350, + 0 + ] + }, + "from": [ + 344.23, + 99.94 + ], + "tag": null, + "to": [ + 75.8, + 99.94 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 356, + 426, + 0 + ] + }, + "from": [ + 75.8, + 99.94 + ], + "tag": { + "end": 425, + "start": 419, + "type": "TagDeclarator", + "value": "seg02" + }, + "to": [ + 75.8, + 317.2 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 432, + 440, + 0 + ] + }, + "from": [ + 75.8, + 317.2 + ], + "tag": null, + "to": [ + 75.8, + 317.2 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 75.8, + 317.2 + ], + "to": [ + 75.8, + 317.2 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 37, + 69, + 0 + ] + } + }, + "tags": { + "rectangleSegmentA001": { + "type": "TagIdentifier", + "value": "rectangleSegmentA001", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 105, + 154, + 0 + ] + }, + "from": [ + 75.8, + 317.2 + ], + "tag": { + "end": 153, + "start": 132, + "type": "TagDeclarator", + "value": "rectangleSegmentA001" + }, + "to": [ + 344.23, + 317.2 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 105, + 154, + 0 + ], + "tag": { + "end": 153, + "start": 132, + "type": "TagDeclarator", + "value": "rectangleSegmentA001" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 132, + 153, + 0 + ] + } + ] + }, + "seg01": { + "type": "TagIdentifier", + "value": "seg01", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 160, + 247, + 0 + ] + }, + "from": [ + 344.23, + 317.2 + ], + "tag": { + "end": 246, + "start": 240, + "type": "TagDeclarator", + "value": "seg01" + }, + "to": [ + 344.23, + 99.94 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 160, + 247, + 0 + ], + "tag": { + "end": 246, + "start": 240, + "type": "TagDeclarator", + "value": "seg01" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 240, + 246, + 0 + ] + } + ] + }, + "seg02": { + "type": "TagIdentifier", + "value": "seg02", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 356, + 426, + 0 + ] + }, + "from": [ + 75.80000000000001, + 99.94 + ], + "tag": { + "end": 425, + "start": 419, + "type": "TagDeclarator", + "value": "seg02" + }, + "to": [ + 75.8, + 317.2 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 356, + 426, + 0 + ], + "tag": { + "end": 425, + "start": 419, + "type": "TagDeclarator", + "value": "seg02" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 419, + 425, + 0 + ] + } + ] + }, + "seg03": { + "type": "TagIdentifier", + "value": "seg03", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": null, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 597, + 684, + 0 + ], + "tag": { + "end": 683, + "start": 677, + "type": "TagDeclarator", + "value": "seg03" + }, + "type": "chamfer" + } + }, + "__meta": [ + { + "sourceRange": [ + 677, + 683, + 0 + ] + } + ] + }, + "seg04": { + "type": "TagIdentifier", + "value": "seg04", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": null, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 540, + 591, + 0 + ], + "tag": { + "end": 590, + "start": 584, + "type": "TagDeclarator", + "value": "seg04" + }, + "type": "chamfer" + } + }, + "__meta": [ + { + "sourceRange": [ + 584, + 590, + 0 + ] + } + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 37, + 69, + 0 + ] + } + ] + }, + "height": 100.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "edgeCuts": [ + { + "type": "fillet", + "id": "[uuid]", + "radius": 20.0, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "chamfer", + "id": "[uuid]", + "length": 50.0, + "edgeId": "[uuid]", + "tag": { + "end": 590, + "start": 584, + "type": "TagDeclarator", + "value": "seg04" + } + }, + { + "type": "chamfer", + "id": "[uuid]", + "length": 50.0, + "edgeId": "[uuid]", + "tag": { + "end": 683, + "start": 677, + "type": "TagDeclarator", + "value": "seg03" + } + } + ], + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 37, + 69, + 0 + ] + } + ] + }, + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 698, + 730, + 0 + ] + } + ] + }, + "start": { + "from": [ + -69.1, + 277.34 + ], + "to": [ + -69.1, + 277.34 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 736, + 770, + 0 + ] + } + }, + "tags": { + "rectangleSegmentA003": { + "type": "TagIdentifier", + "value": "rectangleSegmentA003", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 776, + 824, + 0 + ] + }, + "from": [ + -69.1, + 277.34 + ], + "tag": { + "end": 823, + "start": 802, + "type": "TagDeclarator", + "value": "rectangleSegmentA003" + }, + "to": [ + -27.619999999999997, + 277.34 + ], + "type": "ToPoint" + }, + "surface": null + }, + "__meta": [ + { + "sourceRange": [ + 802, + 823, + 0 + ] + } + ] + }, + "rectangleSegmentB002": { + "type": "TagIdentifier", + "value": "rectangleSegmentB002", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 830, + 931, + 0 + ] + }, + "from": [ + -27.619999999999997, + 277.34 + ], + "tag": { + "end": 930, + "start": 909, + "type": "TagDeclarator", + "value": "rectangleSegmentB002" + }, + "to": [ + -27.61999999999999, + 172.53999999999996 + ], + "type": "ToPoint" + }, + "surface": null + }, + "__meta": [ + { + "sourceRange": [ + 909, + 930, + 0 + ] + } + ] + }, + "rectangleSegmentC002": { + "type": "TagIdentifier", + "value": "rectangleSegmentC002", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 937, + 1057, + 0 + ] + }, + "from": [ + -27.61999999999999, + 172.53999999999996 + ], + "tag": { + "end": 1056, + "start": 1035, + "type": "TagDeclarator", + "value": "rectangleSegmentC002" + }, + "to": [ + -69.1, + 172.53999999999996 + ], + "type": "ToPoint" + }, + "surface": null + }, + "__meta": [ + { + "sourceRange": [ + 1035, + 1056, + 0 + ] + } + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 736, + 770, + 0 + ] + } + ] + } + } } diff --git a/src/wasm-lib/kcl/tests/sketch_in_object/program_memory.snap b/src/wasm-lib/kcl/tests/sketch_in_object/program_memory.snap index 1a9701e4d..58d0f0da2 100644 --- a/src/wasm-lib/kcl/tests/sketch_in_object/program_memory.snap +++ b/src/wasm-lib/kcl/tests/sketch_in_object/program_memory.snap @@ -1,1034 +1,990 @@ --- source: kcl/src/simulation_tests.rs -description: Program memory after executing sketch_in_object.kcl +description: Variables in memory after executing sketch_in_object.kcl --- { - "environments": [ - { - "bindings": { - "HALF_TURN": { - "type": "Number", - "value": 180.0, - "__meta": [] - }, - "QUARTER_TURN": { - "type": "Number", - "value": 90.0, - "__meta": [] - }, - "THREE_QUARTER_TURN": { - "type": "Number", - "value": 270.0, - "__meta": [] - }, - "ZERO": { - "type": "Number", - "value": 0.0, - "__meta": [] - }, - "test": { - "type": "Function", - "expression": { - "body": { + "HALF_TURN": { + "type": "Number", + "value": 180.0, + "__meta": [] + }, + "QUARTER_TURN": { + "type": "Number", + "value": 90.0, + "__meta": [] + }, + "THREE_QUARTER_TURN": { + "type": "Number", + "value": 270.0, + "__meta": [] + }, + "ZERO": { + "type": "Number", + "value": 0.0, + "__meta": [] + }, + "test": { + "type": "Function", + "expression": { + "body": { + "body": [ + { + "argument": { "body": [ { - "argument": { - "body": [ - { - "arguments": [ - { - "end": 39, - "raw": "'XY'", - "start": 35, - "type": "Literal", - "type": "Literal", - "value": "XY" + "arguments": [ + { + "end": 39, + "raw": "'XY'", + "start": 35, + "type": "Literal", + "type": "Literal", + "value": "XY" + } + ], + "callee": { + "end": 34, + "name": "startSketchOn", + "start": 21, + "type": "Identifier" + }, + "end": 40, + "start": 21, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 65, + "raw": "0", + "start": 64, + "type": "Literal", + "type": "Literal", + "value": { + "value": 0.0, + "suffix": "None" } - ], - "callee": { - "end": 34, - "name": "startSketchOn", - "start": 21, - "type": "Identifier" }, - "end": 40, - "start": 21, - "type": "CallExpression", - "type": "CallExpression" + { + "end": 68, + "raw": "0", + "start": 67, + "type": "Literal", + "type": "Literal", + "value": { + "value": 0.0, + "suffix": "None" + } + } + ], + "end": 69, + "start": 63, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 72, + "start": 71, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 62, + "name": "startProfileAt", + "start": 48, + "type": "Identifier" + }, + "end": 73, + "start": 48, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "type": "Identifier", + "name": "end" }, - { - "arguments": [ + "arg": { + "elements": [ { - "elements": [ - { - "end": 65, - "raw": "0", - "start": 64, - "type": "Literal", - "type": "Literal", - "value": { - "value": 0.0, - "suffix": "None" - } - }, - { - "end": 68, - "raw": "0", - "start": 67, - "type": "Literal", - "type": "Literal", - "value": { - "value": 0.0, - "suffix": "None" - } - } - ], - "end": 69, - "start": 63, - "type": "ArrayExpression", - "type": "ArrayExpression" + "end": 94, + "raw": "0", + "start": 93, + "type": "Literal", + "type": "Literal", + "value": { + "value": 0.0, + "suffix": "None" + } }, { - "end": 72, - "start": 71, - "type": "PipeSubstitution", - "type": "PipeSubstitution" - } - ], - "callee": { - "end": 62, - "name": "startProfileAt", - "start": 48, - "type": "Identifier" - }, - "end": 73, - "start": 48, - "type": "CallExpression", - "type": "CallExpression" - }, - { - "arguments": [ - { - "type": "LabeledArg", - "label": { - "type": "Identifier", - "name": "end" - }, - "arg": { - "elements": [ - { - "end": 94, - "raw": "0", - "start": 93, - "type": "Literal", - "type": "Literal", - "value": { - "value": 0.0, - "suffix": "None" - } - }, - { - "end": 97, - "raw": "1", - "start": 96, - "type": "Literal", - "type": "Literal", - "value": { - "value": 1.0, - "suffix": "None" - } - } - ], - "end": 98, - "start": 92, - "type": "ArrayExpression", - "type": "ArrayExpression" + "end": 97, + "raw": "1", + "start": 96, + "type": "Literal", + "type": "Literal", + "value": { + "value": 1.0, + "suffix": "None" } } ], - "callee": { - "end": 85, - "name": "line", - "start": 81, - "type": "Identifier" - }, - "end": 99, - "start": 81, - "type": "CallExpressionKw", - "type": "CallExpressionKw", - "unlabeled": null - }, - { - "arguments": [ - { - "type": "LabeledArg", - "label": { - "type": "Identifier", - "name": "end" - }, - "arg": { - "elements": [ - { - "end": 120, - "raw": "1", - "start": 119, - "type": "Literal", - "type": "Literal", - "value": { - "value": 1.0, - "suffix": "None" - } - }, - { - "end": 123, - "raw": "0", - "start": 122, - "type": "Literal", - "type": "Literal", - "value": { - "value": 0.0, - "suffix": "None" - } - } - ], - "end": 124, - "start": 118, - "type": "ArrayExpression", - "type": "ArrayExpression" - } - } - ], - "callee": { - "end": 111, - "name": "line", - "start": 107, - "type": "Identifier" - }, - "end": 125, - "start": 107, - "type": "CallExpressionKw", - "type": "CallExpressionKw", - "unlabeled": null - }, - { - "arguments": [ - { - "type": "LabeledArg", - "label": { - "type": "Identifier", - "name": "end" - }, - "arg": { - "elements": [ - { - "end": 146, - "raw": "0", - "start": 145, - "type": "Literal", - "type": "Literal", - "value": { - "value": 0.0, - "suffix": "None" - } - }, - { - "argument": { - "end": 150, - "raw": "1", - "start": 149, - "type": "Literal", - "type": "Literal", - "value": { - "value": 1.0, - "suffix": "None" - } - }, - "end": 150, - "operator": "-", - "start": 148, - "type": "UnaryExpression", - "type": "UnaryExpression" - } - ], - "end": 151, - "start": 144, - "type": "ArrayExpression", - "type": "ArrayExpression" - } - } - ], - "callee": { - "end": 137, - "name": "line", - "start": 133, - "type": "Identifier" - }, - "end": 152, - "start": 133, - "type": "CallExpressionKw", - "type": "CallExpressionKw", - "unlabeled": null - }, - { - "arguments": [ - { - "end": 167, - "start": 166, - "type": "PipeSubstitution", - "type": "PipeSubstitution" - } - ], - "callee": { - "end": 165, - "name": "close", - "start": 160, - "type": "Identifier" - }, - "end": 168, - "start": 160, - "type": "CallExpression", - "type": "CallExpression" + "end": 98, + "start": 92, + "type": "ArrayExpression", + "type": "ArrayExpression" } - ], - "end": 168, - "start": 21, - "type": "PipeExpression", - "type": "PipeExpression" + } + ], + "callee": { + "end": 85, + "name": "line", + "start": 81, + "type": "Identifier" + }, + "end": 99, + "start": 81, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "type": "Identifier", + "name": "end" + }, + "arg": { + "elements": [ + { + "end": 120, + "raw": "1", + "start": 119, + "type": "Literal", + "type": "Literal", + "value": { + "value": 1.0, + "suffix": "None" + } + }, + { + "end": 123, + "raw": "0", + "start": 122, + "type": "Literal", + "type": "Literal", + "value": { + "value": 0.0, + "suffix": "None" + } + } + ], + "end": 124, + "start": 118, + "type": "ArrayExpression", + "type": "ArrayExpression" + } + } + ], + "callee": { + "end": 111, + "name": "line", + "start": 107, + "type": "Identifier" + }, + "end": 125, + "start": 107, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "type": "Identifier", + "name": "end" + }, + "arg": { + "elements": [ + { + "end": 146, + "raw": "0", + "start": 145, + "type": "Literal", + "type": "Literal", + "value": { + "value": 0.0, + "suffix": "None" + } + }, + { + "argument": { + "end": 150, + "raw": "1", + "start": 149, + "type": "Literal", + "type": "Literal", + "value": { + "value": 1.0, + "suffix": "None" + } + }, + "end": 150, + "operator": "-", + "start": 148, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 151, + "start": 144, + "type": "ArrayExpression", + "type": "ArrayExpression" + } + } + ], + "callee": { + "end": 137, + "name": "line", + "start": 133, + "type": "Identifier" + }, + "end": 152, + "start": 133, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "end": 167, + "start": 166, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 165, + "name": "close", + "start": 160, + "type": "Identifier" }, "end": 168, - "start": 14, - "type": "ReturnStatement", - "type": "ReturnStatement" + "start": 160, + "type": "CallExpression", + "type": "CallExpression" } ], - "end": 170, - "start": 10 + "end": 168, + "start": 21, + "type": "PipeExpression", + "type": "PipeExpression" }, - "end": 170, - "params": [], - "start": 7, - "type": "FunctionExpression" - }, - "memory": [ - 0, - 1 - ], - "__meta": [ - { - "sourceRange": [ - 7, - 170, - 0 - ] - } - ] - }, - "test2": { - "type": "Function", - "expression": { - "body": { - "body": [ + "end": 168, + "start": 14, + "type": "ReturnStatement", + "type": "ReturnStatement" + } + ], + "end": 170, + "start": 10 + }, + "end": 170, + "params": [], + "start": 7, + "type": "FunctionExpression" + }, + "memory": [ + 0, + 1 + ], + "__meta": [ + { + "sourceRange": [ + 7, + 170, + 0 + ] + } + ] + }, + "test2": { + "type": "Function", + "expression": { + "body": { + "body": [ + { + "argument": { + "end": 403, + "properties": [ { - "argument": { - "end": 403, + "end": 399, + "key": { + "end": 206, + "name": "thing1", + "start": 200, + "type": "Identifier" + }, + "start": 200, + "type": "ObjectProperty", + "value": { + "end": 399, "properties": [ { - "end": 399, + "end": 393, "key": { - "end": 206, - "name": "thing1", - "start": 200, + "end": 223, + "name": "thing2", + "start": 217, "type": "Identifier" }, - "start": 200, + "start": 217, "type": "ObjectProperty", "value": { - "end": 399, - "properties": [ + "body": [ { - "end": 393, - "key": { - "end": 223, - "name": "thing2", - "start": 217, + "arguments": [ + { + "end": 244, + "raw": "'XY'", + "start": 240, + "type": "Literal", + "type": "Literal", + "value": "XY" + } + ], + "callee": { + "end": 239, + "name": "startSketchOn", + "start": 226, "type": "Identifier" }, - "start": 217, - "type": "ObjectProperty", - "value": { - "body": [ - { - "arguments": [ - { - "end": 244, - "raw": "'XY'", - "start": 240, - "type": "Literal", - "type": "Literal", - "value": "XY" + "end": 245, + "start": 226, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "elements": [ + { + "end": 274, + "raw": "0", + "start": 273, + "type": "Literal", + "type": "Literal", + "value": { + "value": 0.0, + "suffix": "None" } - ], - "callee": { - "end": 239, - "name": "startSketchOn", - "start": 226, - "type": "Identifier" }, - "end": 245, - "start": 226, - "type": "CallExpression", - "type": "CallExpression" + { + "end": 277, + "raw": "0", + "start": 276, + "type": "Literal", + "type": "Literal", + "value": { + "value": 0.0, + "suffix": "None" + } + } + ], + "end": 278, + "start": 272, + "type": "ArrayExpression", + "type": "ArrayExpression" + }, + { + "end": 281, + "start": 280, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 271, + "name": "startProfileAt", + "start": 257, + "type": "Identifier" + }, + "end": 282, + "start": 257, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "type": "Identifier", + "name": "end" }, - { - "arguments": [ + "arg": { + "elements": [ { - "elements": [ - { - "end": 274, - "raw": "0", - "start": 273, - "type": "Literal", - "type": "Literal", - "value": { - "value": 0.0, - "suffix": "None" - } - }, - { - "end": 277, - "raw": "0", - "start": 276, - "type": "Literal", - "type": "Literal", - "value": { - "value": 0.0, - "suffix": "None" - } - } - ], - "end": 278, - "start": 272, - "type": "ArrayExpression", - "type": "ArrayExpression" + "end": 307, + "raw": "0", + "start": 306, + "type": "Literal", + "type": "Literal", + "value": { + "value": 0.0, + "suffix": "None" + } }, { - "end": 281, - "start": 280, - "type": "PipeSubstitution", - "type": "PipeSubstitution" - } - ], - "callee": { - "end": 271, - "name": "startProfileAt", - "start": 257, - "type": "Identifier" - }, - "end": 282, - "start": 257, - "type": "CallExpression", - "type": "CallExpression" - }, - { - "arguments": [ - { - "type": "LabeledArg", - "label": { - "type": "Identifier", - "name": "end" - }, - "arg": { - "elements": [ - { - "end": 307, - "raw": "0", - "start": 306, - "type": "Literal", - "type": "Literal", - "value": { - "value": 0.0, - "suffix": "None" - } - }, - { - "end": 310, - "raw": "1", - "start": 309, - "type": "Literal", - "type": "Literal", - "value": { - "value": 1.0, - "suffix": "None" - } - } - ], - "end": 311, - "start": 305, - "type": "ArrayExpression", - "type": "ArrayExpression" + "end": 310, + "raw": "1", + "start": 309, + "type": "Literal", + "type": "Literal", + "value": { + "value": 1.0, + "suffix": "None" } } ], - "callee": { - "end": 298, - "name": "line", - "start": 294, - "type": "Identifier" - }, - "end": 312, - "start": 294, - "type": "CallExpressionKw", - "type": "CallExpressionKw", - "unlabeled": null - }, - { - "arguments": [ - { - "type": "LabeledArg", - "label": { - "type": "Identifier", - "name": "end" - }, - "arg": { - "elements": [ - { - "end": 337, - "raw": "1", - "start": 336, - "type": "Literal", - "type": "Literal", - "value": { - "value": 1.0, - "suffix": "None" - } - }, - { - "end": 340, - "raw": "0", - "start": 339, - "type": "Literal", - "type": "Literal", - "value": { - "value": 0.0, - "suffix": "None" - } - } - ], - "end": 341, - "start": 335, - "type": "ArrayExpression", - "type": "ArrayExpression" - } - } - ], - "callee": { - "end": 328, - "name": "line", - "start": 324, - "type": "Identifier" - }, - "end": 342, - "start": 324, - "type": "CallExpressionKw", - "type": "CallExpressionKw", - "unlabeled": null - }, - { - "arguments": [ - { - "type": "LabeledArg", - "label": { - "type": "Identifier", - "name": "end" - }, - "arg": { - "elements": [ - { - "end": 367, - "raw": "0", - "start": 366, - "type": "Literal", - "type": "Literal", - "value": { - "value": 0.0, - "suffix": "None" - } - }, - { - "argument": { - "end": 371, - "raw": "1", - "start": 370, - "type": "Literal", - "type": "Literal", - "value": { - "value": 1.0, - "suffix": "None" - } - }, - "end": 371, - "operator": "-", - "start": 369, - "type": "UnaryExpression", - "type": "UnaryExpression" - } - ], - "end": 372, - "start": 365, - "type": "ArrayExpression", - "type": "ArrayExpression" - } - } - ], - "callee": { - "end": 358, - "name": "line", - "start": 354, - "type": "Identifier" - }, - "end": 373, - "start": 354, - "type": "CallExpressionKw", - "type": "CallExpressionKw", - "unlabeled": null - }, - { - "arguments": [ - { - "end": 392, - "start": 391, - "type": "PipeSubstitution", - "type": "PipeSubstitution" - } - ], - "callee": { - "end": 390, - "name": "close", - "start": 385, - "type": "Identifier" - }, - "end": 393, - "start": 385, - "type": "CallExpression", - "type": "CallExpression" + "end": 311, + "start": 305, + "type": "ArrayExpression", + "type": "ArrayExpression" } - ], - "end": 393, - "start": 226, - "type": "PipeExpression", - "type": "PipeExpression" - } + } + ], + "callee": { + "end": 298, + "name": "line", + "start": 294, + "type": "Identifier" + }, + "end": 312, + "start": 294, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "type": "Identifier", + "name": "end" + }, + "arg": { + "elements": [ + { + "end": 337, + "raw": "1", + "start": 336, + "type": "Literal", + "type": "Literal", + "value": { + "value": 1.0, + "suffix": "None" + } + }, + { + "end": 340, + "raw": "0", + "start": 339, + "type": "Literal", + "type": "Literal", + "value": { + "value": 0.0, + "suffix": "None" + } + } + ], + "end": 341, + "start": 335, + "type": "ArrayExpression", + "type": "ArrayExpression" + } + } + ], + "callee": { + "end": 328, + "name": "line", + "start": 324, + "type": "Identifier" + }, + "end": 342, + "start": 324, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "type": "Identifier", + "name": "end" + }, + "arg": { + "elements": [ + { + "end": 367, + "raw": "0", + "start": 366, + "type": "Literal", + "type": "Literal", + "value": { + "value": 0.0, + "suffix": "None" + } + }, + { + "argument": { + "end": 371, + "raw": "1", + "start": 370, + "type": "Literal", + "type": "Literal", + "value": { + "value": 1.0, + "suffix": "None" + } + }, + "end": 371, + "operator": "-", + "start": 369, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 372, + "start": 365, + "type": "ArrayExpression", + "type": "ArrayExpression" + } + } + ], + "callee": { + "end": 358, + "name": "line", + "start": 354, + "type": "Identifier" + }, + "end": 373, + "start": 354, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "end": 392, + "start": 391, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 390, + "name": "close", + "start": 385, + "type": "Identifier" + }, + "end": 393, + "start": 385, + "type": "CallExpression", + "type": "CallExpression" } ], - "start": 209, - "type": "ObjectExpression", - "type": "ObjectExpression" + "end": 393, + "start": 226, + "type": "PipeExpression", + "type": "PipeExpression" } } ], - "start": 194, + "start": 209, "type": "ObjectExpression", "type": "ObjectExpression" - }, - "end": 403, - "start": 187, - "type": "ReturnStatement", - "type": "ReturnStatement" - } - ], - "end": 405, - "start": 183 - }, - "end": 405, - "params": [], - "start": 180, - "type": "FunctionExpression" - }, - "memory": [ - 0, - 2 - ], - "__meta": [ - { - "sourceRange": [ - 180, - 405, - 0 - ] - } - ] - }, - "x": { - "type": "Sketch", - "value": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 81, - 99, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 107, - 125, - 0 - ] - }, - "from": [ - 0.0, - 1.0 - ], - "tag": null, - "to": [ - 1.0, - 1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 133, - 152, - 0 - ] - }, - "from": [ - 1.0, - 1.0 - ], - "tag": null, - "to": [ - 1.0, - 0.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 160, - 168, - 0 - ] - }, - "from": [ - 1.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 48, - 73, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 48, - 73, - 0 - ] - } - ] - } - }, - "x2": { - "type": "Object", - "value": { - "thing1": { - "type": "Object", - "value": { - "thing2": { - "type": "Sketch", - "value": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 294, - 312, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 324, - 342, - 0 - ] - }, - "from": [ - 0.0, - 1.0 - ], - "tag": null, - "to": [ - 1.0, - 1.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 354, - 373, - 0 - ] - }, - "from": [ - 1.0, - 1.0 - ], - "tag": null, - "to": [ - 1.0, - 0.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 385, - 393, - 0 - ] - }, - "from": [ - 1.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 257, - 282, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 257, - 282, - 0 - ] - } - ] } } + ], + "start": 194, + "type": "ObjectExpression", + "type": "ObjectExpression" + }, + "end": 403, + "start": 187, + "type": "ReturnStatement", + "type": "ReturnStatement" + } + ], + "end": 405, + "start": 183 + }, + "end": 405, + "params": [], + "start": 180, + "type": "FunctionExpression" + }, + "memory": [ + 0, + 2 + ], + "__meta": [ + { + "sourceRange": [ + 180, + 405, + 0 + ] + } + ] + }, + "x": { + "type": "Sketch", + "value": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 81, + 99, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 107, + 125, + 0 + ] + }, + "from": [ + 0.0, + 1.0 + ], + "tag": null, + "to": [ + 1.0, + 1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 133, + 152, + 0 + ] + }, + "from": [ + 1.0, + 1.0 + ], + "tag": null, + "to": [ + 1.0, + 0.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 160, + 168, + 0 + ] + }, + "from": [ + 1.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 48, + 73, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 48, + 73, + 0 + ] + } + ] + } + }, + "x2": { + "type": "Object", + "value": { + "thing1": { + "type": "Object", + "value": { + "thing2": { + "type": "Sketch", + "value": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 294, + 312, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 324, + 342, + 0 + ] + }, + "from": [ + 0.0, + 1.0 + ], + "tag": null, + "to": [ + 1.0, + 1.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 354, + 373, + 0 + ] + }, + "from": [ + 1.0, + 1.0 + ], + "tag": null, + "to": [ + 1.0, + 0.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 385, + 393, + 0 + ] + }, + "from": [ + 1.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 257, + 282, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" }, "__meta": [ { "sourceRange": [ - 209, - 399, + 257, + 282, 0 ] } ] } - }, - "__meta": [ - { - "sourceRange": [ - 194, - 403, - 0 - ] - } - ] - } - }, - "snapshots": [ - { - "parent_snapshot": null, - "data": { - "test": { - "type": "Tombstone", - "value": null, - "__meta": [] - } } }, - { - "parent_snapshot": null, - "data": { - "test2": { - "type": "Tombstone", - "value": null, - "__meta": [] - }, - "x": { - "type": "Tombstone", - "value": null, - "__meta": [] - }, - "x2": { - "type": "Tombstone", - "value": null, - "__meta": [] - } + "__meta": [ + { + "sourceRange": [ + 209, + 399, + 0 + ] } - } - ], - "parent": null - } - ], - "currentEnv": [ - 0, - 0 - ], - "callStack": [] + ] + } + }, + "__meta": [ + { + "sourceRange": [ + 194, + 403, + 0 + ] + } + ] + } } diff --git a/src/wasm-lib/kcl/tests/sketch_on_face/program_memory.snap b/src/wasm-lib/kcl/tests/sketch_on_face/program_memory.snap index e44338c43..418cae93d 100644 --- a/src/wasm-lib/kcl/tests/sketch_on_face/program_memory.snap +++ b/src/wasm-lib/kcl/tests/sketch_on_face/program_memory.snap @@ -1,94 +1,535 @@ --- source: kcl/src/simulation_tests.rs -description: Program memory after executing sketch_on_face.kcl +description: Variables in memory after executing sketch_on_face.kcl --- { - "environments": [ - { - "bindings": { - "HALF_TURN": { - "type": "Number", - "value": 180.0, - "__meta": [] + "HALF_TURN": { + "type": "Number", + "value": 180.0, + "__meta": [] + }, + "QUARTER_TURN": { + "type": "Number", + "value": 90.0, + "__meta": [] + }, + "THREE_QUARTER_TURN": { + "type": "Number", + "value": 270.0, + "__meta": [] + }, + "ZERO": { + "type": "Number", + "value": 0.0, + "__meta": [] + }, + "here": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "here", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 74, + 114, + 0 + ] }, - "QUARTER_TURN": { - "type": "Number", - "value": 90.0, - "__meta": [] + "from": [ + 11.19, + 28.35 + ], + "tag": { + "end": 113, + "start": 108, + "type": "TagDeclarator", + "value": "here" }, - "THREE_QUARTER_TURN": { - "type": "Number", - "value": 270.0, - "__meta": [] + "to": [ + 39.86, + 15.100000000000001 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 74, + 114, + 0 + ], + "tag": { + "end": 113, + "start": 108, + "type": "TagDeclarator", + "value": "here" }, - "ZERO": { - "type": "Number", - "value": 0.0, - "__meta": [] + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 108, + 113, + 0 + ] + } + ] + }, + "part001": { + "type": "Solid", + "value": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 74, + 114, + 0 + ], + "tag": { + "end": 113, + "start": 108, + "type": "TagDeclarator", + "value": "here" + }, + "type": "extrudePlane" }, - "here": { - "type": "TagIdentifier", - "type": "TagIdentifier", - "value": "here", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 74, - 114, - 0 - ] - }, - "from": [ - 11.19, - 28.35 - ], - "tag": { - "end": 113, - "start": 108, - "type": "TagDeclarator", - "value": "here" - }, - "to": [ - 39.86, - 15.100000000000001 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 120, + 147, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 153, + 180, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 186, + 194, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { "id": "[uuid]", "sourceRange": [ 74, 114, 0 - ], - "tag": { - "end": 113, - "start": 108, - "type": "TagDeclarator", - "value": "here" - }, - "type": "extrudePlane" - } + ] + }, + "from": [ + 11.19, + 28.35 + ], + "tag": { + "end": 113, + "start": 108, + "type": "TagDeclarator", + "value": "here" + }, + "to": [ + 39.86, + 15.1 + ], + "type": "ToPoint" }, - "__meta": [ - { + { + "__geoMeta": { + "id": "[uuid]", "sourceRange": [ - 108, - 113, + 120, + 147, 0 ] - } - ] + }, + "from": [ + 39.86, + 15.1 + ], + "tag": null, + "to": [ + 35.74, + -7.71 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 153, + 180, + 0 + ] + }, + "from": [ + 35.74, + -7.71 + ], + "tag": null, + "to": [ + 2.5, + 6.84 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 186, + 194, + 0 + ] + }, + "from": [ + 2.5, + 6.84 + ], + "tag": null, + "to": [ + 11.19, + 28.35 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] }, - "part001": { - "type": "Solid", - "value": { + "start": { + "from": [ + 11.19, + 28.35 + ], + "to": [ + 11.19, + 28.35 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 35, + 68, + 0 + ] + } + }, + "tags": { + "here": { + "type": "TagIdentifier", + "value": "here", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 74, + 114, + 0 + ] + }, + "from": [ + 11.19, + 28.35 + ], + "tag": { + "end": 113, + "start": 108, + "type": "TagDeclarator", + "value": "here" + }, + "to": [ + 39.86, + 15.100000000000001 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 74, + 114, + 0 + ], + "tag": { + "end": 113, + "start": 108, + "type": "TagDeclarator", + "value": "here" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 108, + 113, + 0 + ] + } + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 35, + 68, + 0 + ] + } + ] + }, + "height": 5.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 35, + 68, + 0 + ] + } + ] + } + }, + "part002": { + "type": "Solid", + "value": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 296, + 315, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 321, + 340, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 346, + 366, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 372, + 380, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 296, + 315, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 10.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 321, + 340, + 0 + ] + }, + "from": [ + 0.0, + 10.0 + ], + "tag": null, + "to": [ + 10.0, + 10.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 346, + 366, + 0 + ] + }, + "from": [ + 10.0, + 10.0 + ], + "tag": null, + "to": [ + 10.0, + 0.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 372, + 380, + 0 + ] + }, + "from": [ + 10.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "here", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { "type": "Solid", "id": "[uuid]", "artifactId": "[uuid]", @@ -373,523 +814,69 @@ description: Program memory after executing sketch_on_face.kcl ] } ] - } - }, - "part002": { - "type": "Solid", - "value": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 296, - 315, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 321, - 340, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 346, - 366, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 372, - 380, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 296, - 315, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 10.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 321, - 340, - 0 - ] - }, - "from": [ - 0.0, - 10.0 - ], - "tag": null, - "to": [ - 10.0, - 10.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 346, - 366, - 0 - ] - }, - "from": [ - 10.0, - 10.0 - ], - "tag": null, - "to": [ - 10.0, - 0.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 372, - 380, - 0 - ] - }, - "from": [ - 10.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "face", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "here", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 74, - 114, - 0 - ], - "tag": { - "end": 113, - "start": 108, - "type": "TagDeclarator", - "value": "here" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 120, - 147, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 153, - 180, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 186, - 194, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 74, - 114, - 0 - ] - }, - "from": [ - 11.19, - 28.35 - ], - "tag": { - "end": 113, - "start": 108, - "type": "TagDeclarator", - "value": "here" - }, - "to": [ - 39.86, - 15.1 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 120, - 147, - 0 - ] - }, - "from": [ - 39.86, - 15.1 - ], - "tag": null, - "to": [ - 35.74, - -7.71 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 153, - 180, - 0 - ] - }, - "from": [ - 35.74, - -7.71 - ], - "tag": null, - "to": [ - 2.5, - 6.84 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 186, - 194, - 0 - ] - }, - "from": [ - 2.5, - 6.84 - ], - "tag": null, - "to": [ - 11.19, - 28.35 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 11.19, - 28.35 - ], - "to": [ - 11.19, - 28.35 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 35, - 68, - 0 - ] - } - }, - "tags": { - "here": { - "type": "TagIdentifier", - "value": "here", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 74, - 114, - 0 - ] - }, - "from": [ - 11.19, - 28.35 - ], - "tag": { - "end": 113, - "start": 108, - "type": "TagDeclarator", - "value": "here" - }, - "to": [ - 39.86, - 15.100000000000001 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 74, - 114, - 0 - ], - "tag": { - "end": 113, - "start": 108, - "type": "TagDeclarator", - "value": "here" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 108, - 113, - 0 - ] - } - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 35, - 68, - 0 - ] - } - ] - }, - "height": 5.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 35, - 68, - 0 - ] - } - ] - }, - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 231, - 259, - 0 - ] - } - ] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 265, - 290, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 265, - 290, - 0 - ] - } + }, + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 231, + 259, + 0 ] - }, - "height": 5.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 265, - 290, - 0 - ] - } + } + ] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 265, + 290, + 0 ] } - } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 265, + 290, + 0 + ] + } + ] }, - "snapshots": [], - "parent": null + "height": 5.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 265, + 290, + 0 + ] + } + ] } - ], - "currentEnv": [ - 0, - 0 - ], - "callStack": [] + } } diff --git a/src/wasm-lib/kcl/tests/sketch_on_face_after_fillets_referencing_face/program_memory.snap b/src/wasm-lib/kcl/tests/sketch_on_face_after_fillets_referencing_face/program_memory.snap index 499e593a7..8c3d79948 100644 --- a/src/wasm-lib/kcl/tests/sketch_on_face_after_fillets_referencing_face/program_memory.snap +++ b/src/wasm-lib/kcl/tests/sketch_on_face_after_fillets_referencing_face/program_memory.snap @@ -1,87 +1,996 @@ --- source: kcl/src/simulation_tests.rs -description: Program memory after executing sketch_on_face_after_fillets_referencing_face.kcl +description: Variables in memory after executing sketch_on_face_after_fillets_referencing_face.kcl --- { - "environments": [ - { - "bindings": { - "FOS": { - "type": "Number", - "value": 2.0, - "__meta": [ - { - "sourceRange": [ - 719, - 720, - 0 - ] - } - ] + "FOS": { + "type": "Number", + "value": 2.0, + "__meta": [ + { + "sourceRange": [ + 719, + 720, + 0 + ] + } + ] + }, + "HALF_TURN": { + "type": "Number", + "value": 180.0, + "__meta": [] + }, + "L": { + "type": "Number", + "value": 12.0, + "__meta": [ + { + "sourceRange": [ + 640, + 642, + 0 + ] + } + ] + }, + "M": { + "type": "Number", + "value": 1800.0, + "__meta": [ + { + "sourceRange": [ + 640, + 642, + 0 + ] + }, + { + "sourceRange": [ + 608, + 611, + 0 + ] + }, + { + "sourceRange": [ + 665, + 666, + 0 + ] + } + ] + }, + "QUARTER_TURN": { + "type": "Number", + "value": 90.0, + "__meta": [] + }, + "THREE_QUARTER_TURN": { + "type": "Number", + "value": 270.0, + "__meta": [] + }, + "ZERO": { + "type": "Number", + "value": 0.0, + "__meta": [] + }, + "bracket": { + "type": "Solid", + "value": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1048, + 1093, + 0 + ], + "tag": { + "end": 1092, + "start": 1082, + "type": "TagDeclarator", + "value": "outerEdge" + }, + "type": "extrudePlane" }, - "HALF_TURN": { - "type": "Number", - "value": 180.0, - "__meta": [] + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1099, + 1142, + 0 + ], + "tag": { + "end": 1141, + "start": 1135, + "type": "TagDeclarator", + "value": "seg01" + }, + "type": "extrudePlane" }, - "L": { - "type": "Number", - "value": 12.0, - "__meta": [ - { - "sourceRange": [ - 640, - 642, - 0 - ] - } - ] + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1148, + 1175, + 0 + ], + "tag": null, + "type": "extrudePlane" }, - "M": { - "type": "Number", - "value": 1800.0, - "__meta": [ - { + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1181, + 1239, + 0 + ], + "tag": { + "end": 1238, + "start": 1228, + "type": "TagDeclarator", + "value": "innerEdge" + }, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1245, + 1285, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1291, + 1299, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", "sourceRange": [ - 640, - 642, + 1048, + 1093, 0 ] }, - { + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 1092, + "start": 1082, + "type": "TagDeclarator", + "value": "outerEdge" + }, + "to": [ + 0.0, + 6.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", "sourceRange": [ - 608, - 611, + 1099, + 1142, 0 ] }, - { + "from": [ + 0.0, + 6.0 + ], + "tag": { + "end": 1141, + "start": 1135, + "type": "TagDeclarator", + "value": "seg01" + }, + "to": [ + -8.0, + 6.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", "sourceRange": [ - 665, - 666, + 1148, + 1175, 0 ] - } + }, + "from": [ + -8.0, + 6.0 + ], + "tag": null, + "to": [ + -8.0, + 5.6793 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1181, + 1239, + 0 + ] + }, + "from": [ + -8.0, + 5.6793 + ], + "tag": { + "end": 1238, + "start": 1228, + "type": "TagDeclarator", + "value": "innerEdge" + }, + "to": [ + -0.3207, + 5.6793 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1245, + 1285, + 0 + ] + }, + "from": [ + -0.3207, + 5.6793 + ], + "tag": null, + "to": [ + -0.3207, + 0.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1291, + 1299, + 0 + ] + }, + "from": [ + -0.3207, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1017, + 1042, + 0 + ] + } + }, + "tags": { + "innerEdge": { + "type": "TagIdentifier", + "value": "innerEdge", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1181, + 1239, + 0 + ] + }, + "from": [ + -8.0, + 5.679286509705091 + ], + "tag": { + "end": 1238, + "start": 1228, + "type": "TagDeclarator", + "value": "innerEdge" + }, + "to": [ + -0.32071349029490914, + 5.679286509705091 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1181, + 1239, + 0 + ], + "tag": { + "end": 1238, + "start": 1228, + "type": "TagDeclarator", + "value": "innerEdge" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 1228, + 1238, + 0 + ] + } + ] + }, + "outerEdge": { + "type": "TagIdentifier", + "value": "outerEdge", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1048, + 1093, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 1092, + "start": 1082, + "type": "TagDeclarator", + "value": "outerEdge" + }, + "to": [ + 0.0, + 6.0 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1048, + 1093, + 0 + ], + "tag": { + "end": 1092, + "start": 1082, + "type": "TagDeclarator", + "value": "outerEdge" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 1082, + 1092, + 0 + ] + } + ] + }, + "seg01": { + "type": "TagIdentifier", + "value": "seg01", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1099, + 1142, + 0 + ] + }, + "from": [ + 0.0, + 6.0 + ], + "tag": { + "end": 1141, + "start": 1135, + "type": "TagDeclarator", + "value": "seg01" + }, + "to": [ + -8.0, + 6.0 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1099, + 1142, + 0 + ], + "tag": { + "end": 1141, + "start": 1135, + "type": "TagDeclarator", + "value": "seg01" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 1135, + 1141, + 0 + ] + } + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 1017, + 1042, + 0 + ] + } + ] + }, + "height": 6.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "edgeCuts": [ + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.25, + "edgeId": "[uuid]", + "tag": null + }, + { + "type": "fillet", + "id": "[uuid]", + "radius": 0.5707134902949093, + "edgeId": "[uuid]", + "tag": null + } + ], + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 1017, + 1042, + 0 + ] + } + ] + } + }, + "filletR": { + "type": "Number", + "value": 0.25, + "__meta": [ + { + "sourceRange": [ + 929, + 933, + 0 + ] + } + ] + }, + "innerEdge": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "innerEdge", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1181, + 1239, + 0 ] }, - "QUARTER_TURN": { - "type": "Number", - "value": 90.0, - "__meta": [] + "from": [ + -8.0, + 5.679286509705091 + ], + "tag": { + "end": 1238, + "start": 1228, + "type": "TagDeclarator", + "value": "innerEdge" }, - "THREE_QUARTER_TURN": { - "type": "Number", - "value": 270.0, - "__meta": [] + "to": [ + -0.32071349029490914, + 5.679286509705091 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1181, + 1239, + 0 + ], + "tag": { + "end": 1238, + "start": 1228, + "type": "TagDeclarator", + "value": "innerEdge" }, - "ZERO": { - "type": "Number", - "value": 0.0, - "__meta": [] + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 1228, + 1238, + 0 + ] + } + ] + }, + "outerEdge": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "outerEdge", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1048, + 1093, + 0 + ] }, - "bracket": { - "type": "Solid", - "value": { + "from": [ + 0.0, + 0.0 + ], + "tag": { + "end": 1092, + "start": 1082, + "type": "TagDeclarator", + "value": "outerEdge" + }, + "to": [ + 0.0, + 6.0 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1048, + 1093, + 0 + ], + "tag": { + "end": 1092, + "start": 1082, + "type": "TagDeclarator", + "value": "outerEdge" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 1082, + 1092, + 0 + ] + } + ] + }, + "p": { + "type": "Number", + "value": 300.0, + "__meta": [ + { + "sourceRange": [ + 608, + 611, + 0 + ] + } + ] + }, + "seg01": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "seg01", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1099, + 1142, + 0 + ] + }, + "from": [ + 0.0, + 6.0 + ], + "tag": { + "end": 1141, + "start": 1135, + "type": "TagDeclarator", + "value": "seg01" + }, + "to": [ + -8.0, + 6.0 + ], + "type": "ToPoint" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1099, + 1142, + 0 + ], + "tag": { + "end": 1141, + "start": 1135, + "type": "TagDeclarator", + "value": "seg01" + }, + "type": "extrudePlane" + } + }, + "__meta": [ + { + "sourceRange": [ + 1135, + 1141, + 0 + ] + } + ] + }, + "shelfMountL": { + "type": "Number", + "value": 8.0, + "__meta": [ + { + "sourceRange": [ + 368, + 369, + 0 + ] + } + ] + }, + "sigmaAllow": { + "type": "Number", + "value": 35000.0, + "__meta": [ + { + "sourceRange": [ + 573, + 578, + 0 + ] + } + ] + }, + "sketch001": { + "type": "Solid", + "value": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1620, + 1645, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1651, + 1676, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1682, + 1707, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 1713, + 1769, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1620, + 1645, + 0 + ] + }, + "from": [ + 4.28, + 3.83 + ], + "tag": null, + "to": [ + 6.45, + 3.8 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1651, + 1676, + 0 + ] + }, + "from": [ + 6.45, + 3.8 + ], + "tag": null, + "to": [ + 6.38, + 2.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1682, + 1707, + 0 + ] + }, + "from": [ + 6.38, + 2.0 + ], + "tag": null, + "to": [ + 4.31, + 2.05 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1713, + 1769, + 0 + ] + }, + "from": [ + 4.31, + 2.05 + ], + "tag": null, + "to": [ + 4.28, + 3.83 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 1775, + 1783, + 0 + ] + }, + "from": [ + 4.28, + 3.83 + ], + "tag": null, + "to": [ + 4.28, + 3.83 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "seg01", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { "type": "Solid", "id": "[uuid]", "artifactId": "[uuid]", @@ -582,1030 +1491,108 @@ description: Program memory after executing sketch_on_face_after_fillets_referen ] } ] - } - }, - "filletR": { - "type": "Number", - "value": 0.25, - "__meta": [ - { - "sourceRange": [ - 929, - 933, - 0 - ] - } - ] - }, - "innerEdge": { - "type": "TagIdentifier", - "type": "TagIdentifier", - "value": "innerEdge", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1181, - 1239, - 0 - ] - }, - "from": [ - -8.0, - 5.679286509705091 - ], - "tag": { - "end": 1238, - "start": 1228, - "type": "TagDeclarator", - "value": "innerEdge" - }, - "to": [ - -0.32071349029490914, - 5.679286509705091 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1181, - 1239, - 0 - ], - "tag": { - "end": 1238, - "start": 1228, - "type": "TagDeclarator", - "value": "innerEdge" - }, - "type": "extrudePlane" - } + }, + "units": { + "type": "Mm" }, "__meta": [ { "sourceRange": [ - 1228, - 1238, + 1548, + 1577, 0 ] } ] }, - "outerEdge": { - "type": "TagIdentifier", - "type": "TagIdentifier", - "value": "outerEdge", - "info": { - "type": "TagEngineInfo", + "start": { + "from": [ + 4.28, + 3.83 + ], + "to": [ + 4.28, + 3.83 + ], + "tag": null, + "__geoMeta": { "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1048, - 1093, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": { - "end": 1092, - "start": 1082, - "type": "TagDeclarator", - "value": "outerEdge" - }, - "to": [ - 0.0, - 6.0 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1048, - 1093, - 0 - ], - "tag": { - "end": 1092, - "start": 1082, - "type": "TagDeclarator", - "value": "outerEdge" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 1082, - 1092, - 0 - ] - } - ] - }, - "p": { - "type": "Number", - "value": 300.0, - "__meta": [ - { - "sourceRange": [ - 608, - 611, - 0 - ] - } - ] - }, - "seg01": { - "type": "TagIdentifier", - "type": "TagIdentifier", - "value": "seg01", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1099, - 1142, - 0 - ] - }, - "from": [ - 0.0, - 6.0 - ], - "tag": { - "end": 1141, - "start": 1135, - "type": "TagDeclarator", - "value": "seg01" - }, - "to": [ - -8.0, - 6.0 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1099, - 1142, - 0 - ], - "tag": { - "end": 1141, - "start": 1135, - "type": "TagDeclarator", - "value": "seg01" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 1135, - 1141, - 0 - ] - } - ] - }, - "shelfMountL": { - "type": "Number", - "value": 8.0, - "__meta": [ - { - "sourceRange": [ - 368, - 369, - 0 - ] - } - ] - }, - "sigmaAllow": { - "type": "Number", - "value": 35000.0, - "__meta": [ - { - "sourceRange": [ - 573, - 578, - 0 - ] - } - ] - }, - "sketch001": { - "type": "Solid", - "value": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1620, - 1645, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1651, - 1676, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1682, - 1707, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1713, - 1769, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1620, - 1645, - 0 - ] - }, - "from": [ - 4.28, - 3.83 - ], - "tag": null, - "to": [ - 6.45, - 3.8 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1651, - 1676, - 0 - ] - }, - "from": [ - 6.45, - 3.8 - ], - "tag": null, - "to": [ - 6.38, - 2.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1682, - 1707, - 0 - ] - }, - "from": [ - 6.38, - 2.0 - ], - "tag": null, - "to": [ - 4.31, - 2.05 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1713, - 1769, - 0 - ] - }, - "from": [ - 4.31, - 2.05 - ], - "tag": null, - "to": [ - 4.28, - 3.83 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1775, - 1783, - 0 - ] - }, - "from": [ - 4.28, - 3.83 - ], - "tag": null, - "to": [ - 4.28, - 3.83 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "face", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "seg01", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1048, - 1093, - 0 - ], - "tag": { - "end": 1092, - "start": 1082, - "type": "TagDeclarator", - "value": "outerEdge" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1099, - 1142, - 0 - ], - "tag": { - "end": 1141, - "start": 1135, - "type": "TagDeclarator", - "value": "seg01" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1148, - 1175, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1181, - 1239, - 0 - ], - "tag": { - "end": 1238, - "start": 1228, - "type": "TagDeclarator", - "value": "innerEdge" - }, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1245, - 1285, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1291, - 1299, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1048, - 1093, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": { - "end": 1092, - "start": 1082, - "type": "TagDeclarator", - "value": "outerEdge" - }, - "to": [ - 0.0, - 6.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1099, - 1142, - 0 - ] - }, - "from": [ - 0.0, - 6.0 - ], - "tag": { - "end": 1141, - "start": 1135, - "type": "TagDeclarator", - "value": "seg01" - }, - "to": [ - -8.0, - 6.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1148, - 1175, - 0 - ] - }, - "from": [ - -8.0, - 6.0 - ], - "tag": null, - "to": [ - -8.0, - 5.6793 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1181, - 1239, - 0 - ] - }, - "from": [ - -8.0, - 5.6793 - ], - "tag": { - "end": 1238, - "start": 1228, - "type": "TagDeclarator", - "value": "innerEdge" - }, - "to": [ - -0.3207, - 5.6793 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1245, - 1285, - 0 - ] - }, - "from": [ - -0.3207, - 5.6793 - ], - "tag": null, - "to": [ - -0.3207, - 0.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1291, - 1299, - 0 - ] - }, - "from": [ - -0.3207, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1017, - 1042, - 0 - ] - } - }, - "tags": { - "innerEdge": { - "type": "TagIdentifier", - "value": "innerEdge", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1181, - 1239, - 0 - ] - }, - "from": [ - -8.0, - 5.679286509705091 - ], - "tag": { - "end": 1238, - "start": 1228, - "type": "TagDeclarator", - "value": "innerEdge" - }, - "to": [ - -0.32071349029490914, - 5.679286509705091 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1181, - 1239, - 0 - ], - "tag": { - "end": 1238, - "start": 1228, - "type": "TagDeclarator", - "value": "innerEdge" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 1228, - 1238, - 0 - ] - } - ] - }, - "outerEdge": { - "type": "TagIdentifier", - "value": "outerEdge", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1048, - 1093, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": { - "end": 1092, - "start": 1082, - "type": "TagDeclarator", - "value": "outerEdge" - }, - "to": [ - 0.0, - 6.0 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1048, - 1093, - 0 - ], - "tag": { - "end": 1092, - "start": 1082, - "type": "TagDeclarator", - "value": "outerEdge" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 1082, - 1092, - 0 - ] - } - ] - }, - "seg01": { - "type": "TagIdentifier", - "value": "seg01", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1099, - 1142, - 0 - ] - }, - "from": [ - 0.0, - 6.0 - ], - "tag": { - "end": 1141, - "start": 1135, - "type": "TagDeclarator", - "value": "seg01" - }, - "to": [ - -8.0, - 6.0 - ], - "type": "ToPoint" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 1099, - 1142, - 0 - ], - "tag": { - "end": 1141, - "start": 1135, - "type": "TagDeclarator", - "value": "seg01" - }, - "type": "extrudePlane" - } - }, - "__meta": [ - { - "sourceRange": [ - 1135, - 1141, - 0 - ] - } - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 1017, - 1042, - 0 - ] - } - ] - }, - "height": 6.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "edgeCuts": [ - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.25, - "edgeId": "[uuid]", - "tag": null - }, - { - "type": "fillet", - "id": "[uuid]", - "radius": 0.5707134902949093, - "edgeId": "[uuid]", - "tag": null - } - ], - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 1017, - 1042, - 0 - ] - } - ] - }, - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 1548, - 1577, - 0 - ] - } - ] - }, - "start": { - "from": [ - 4.28, - 3.83 - ], - "to": [ - 4.28, - 3.83 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 1583, - 1614, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 1583, - 1614, - 0 - ] - } - ] - }, - "height": 10.0, - "startCapId": null, - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 1583, - 1614, - 0 - ] - } + "sourceRange": [ + 1583, + 1614, + 0 ] } }, - "thickness": { - "type": "Number", - "value": 0.32071349029490925, - "__meta": [ - { - "sourceRange": [ - 850, - 890, - 0 - ] - } - ] + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" }, - "wallMountL": { - "type": "Number", - "value": 6.0, - "__meta": [ - { - "sourceRange": [ - 445, - 446, - 0 - ] - } - ] - }, - "width": { - "type": "Number", - "value": 6.0, - "__meta": [ - { - "sourceRange": [ - 594, - 595, - 0 - ] - } + "__meta": [ + { + "sourceRange": [ + 1583, + 1614, + 0 + ] + } + ] + }, + "height": 10.0, + "startCapId": null, + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 1583, + 1614, + 0 ] } - }, - "snapshots": [], - "parent": null + ] } - ], - "currentEnv": [ - 0, - 0 - ], - "callStack": [] + }, + "thickness": { + "type": "Number", + "value": 0.32071349029490925, + "__meta": [ + { + "sourceRange": [ + 850, + 890, + 0 + ] + } + ] + }, + "wallMountL": { + "type": "Number", + "value": 6.0, + "__meta": [ + { + "sourceRange": [ + 445, + 446, + 0 + ] + } + ] + }, + "width": { + "type": "Number", + "value": 6.0, + "__meta": [ + { + "sourceRange": [ + 594, + 595, + 0 + ] + } + ] + } } diff --git a/src/wasm-lib/kcl/tests/sketch_on_face_circle_tagged/program_memory.snap b/src/wasm-lib/kcl/tests/sketch_on_face_circle_tagged/program_memory.snap index 28af07e90..e923b6f7b 100644 --- a/src/wasm-lib/kcl/tests/sketch_on_face_circle_tagged/program_memory.snap +++ b/src/wasm-lib/kcl/tests/sketch_on_face_circle_tagged/program_memory.snap @@ -1,401 +1,694 @@ --- source: kcl/src/simulation_tests.rs -description: Program memory after executing sketch_on_face_circle_tagged.kcl +description: Variables in memory after executing sketch_on_face_circle_tagged.kcl --- { - "environments": [ - { - "bindings": { - "HALF_TURN": { - "type": "Number", - "value": 180.0, - "__meta": [] - }, - "QUARTER_TURN": { - "type": "Number", - "value": 90.0, - "__meta": [] - }, - "THREE_QUARTER_TURN": { - "type": "Number", - "value": 270.0, - "__meta": [] - }, - "ZERO": { - "type": "Number", - "value": 0.0, - "__meta": [] - }, - "cube": { - "type": "Function", - "expression": { - "body": { - "body": [ - { - "declaration": { - "end": 169, - "id": { - "end": 26, - "name": "sg", - "start": 24, + "HALF_TURN": { + "type": "Number", + "value": 180.0, + "__meta": [] + }, + "QUARTER_TURN": { + "type": "Number", + "value": 90.0, + "__meta": [] + }, + "THREE_QUARTER_TURN": { + "type": "Number", + "value": 270.0, + "__meta": [] + }, + "ZERO": { + "type": "Number", + "value": 0.0, + "__meta": [] + }, + "cube": { + "type": "Function", + "expression": { + "body": { + "body": [ + { + "declaration": { + "end": 169, + "id": { + "end": 26, + "name": "sg", + "start": 24, + "type": "Identifier" + }, + "init": { + "body": [ + { + "arguments": [ + { + "end": 47, + "raw": "'XY'", + "start": 43, + "type": "Literal", + "type": "Literal", + "value": "XY" + } + ], + "callee": { + "end": 42, + "name": "startSketchOn", + "start": 29, "type": "Identifier" }, - "init": { - "body": [ - { - "arguments": [ + "end": 48, + "start": 29, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 74, + "name": "pos", + "start": 71, + "type": "Identifier", + "type": "Identifier" + }, + { + "end": 77, + "start": 76, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 70, + "name": "startProfileAt", + "start": 56, + "type": "Identifier" + }, + "end": 78, + "start": 56, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "type": "Identifier", + "name": "end" + }, + "arg": { + "elements": [ { - "end": 47, - "raw": "'XY'", - "start": 43, + "end": 99, + "raw": "0", + "start": 98, "type": "Literal", "type": "Literal", - "value": "XY" + "value": { + "value": 0.0, + "suffix": "None" + } + }, + { + "end": 106, + "name": "scale", + "start": 101, + "type": "Identifier", + "type": "Identifier" } ], - "callee": { - "end": 42, - "name": "startSketchOn", - "start": 29, - "type": "Identifier" - }, - "end": 48, - "start": 29, - "type": "CallExpression", - "type": "CallExpression" + "end": 107, + "start": 97, + "type": "ArrayExpression", + "type": "ArrayExpression" + } + } + ], + "callee": { + "end": 90, + "name": "line", + "start": 86, + "type": "Identifier" + }, + "end": 108, + "start": 86, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "type": "Identifier", + "name": "end" }, - { - "arguments": [ + "arg": { + "elements": [ { - "end": 74, - "name": "pos", - "start": 71, + "end": 133, + "name": "scale", + "start": 128, "type": "Identifier", "type": "Identifier" }, { - "end": 77, - "start": 76, - "type": "PipeSubstitution", - "type": "PipeSubstitution" - } - ], - "callee": { - "end": 70, - "name": "startProfileAt", - "start": 56, - "type": "Identifier" - }, - "end": 78, - "start": 56, - "type": "CallExpression", - "type": "CallExpression" - }, - { - "arguments": [ - { - "type": "LabeledArg", - "label": { - "type": "Identifier", - "name": "end" - }, - "arg": { - "elements": [ - { - "end": 99, - "raw": "0", - "start": 98, - "type": "Literal", - "type": "Literal", - "value": { - "value": 0.0, - "suffix": "None" - } - }, - { - "end": 106, - "name": "scale", - "start": 101, - "type": "Identifier", - "type": "Identifier" - } - ], - "end": 107, - "start": 97, - "type": "ArrayExpression", - "type": "ArrayExpression" + "end": 136, + "raw": "0", + "start": 135, + "type": "Literal", + "type": "Literal", + "value": { + "value": 0.0, + "suffix": "None" } } ], - "callee": { - "end": 90, - "name": "line", - "start": 86, - "type": "Identifier" - }, - "end": 108, - "start": 86, - "type": "CallExpressionKw", - "type": "CallExpressionKw", - "unlabeled": null - }, - { - "arguments": [ - { - "type": "LabeledArg", - "label": { - "type": "Identifier", - "name": "end" - }, - "arg": { - "elements": [ - { - "end": 133, - "name": "scale", - "start": 128, - "type": "Identifier", - "type": "Identifier" - }, - { - "end": 136, - "raw": "0", - "start": 135, - "type": "Literal", - "type": "Literal", - "value": { - "value": 0.0, - "suffix": "None" - } - } - ], - "end": 137, - "start": 127, - "type": "ArrayExpression", - "type": "ArrayExpression" - } - } - ], - "callee": { - "end": 120, - "name": "line", - "start": 116, - "type": "Identifier" - }, - "end": 138, - "start": 116, - "type": "CallExpressionKw", - "type": "CallExpressionKw", - "unlabeled": null - }, - { - "arguments": [ - { - "type": "LabeledArg", - "label": { - "type": "Identifier", - "name": "end" - }, - "arg": { - "elements": [ - { - "end": 159, - "raw": "0", - "start": 158, - "type": "Literal", - "type": "Literal", - "value": { - "value": 0.0, - "suffix": "None" - } - }, - { - "argument": { - "end": 167, - "name": "scale", - "start": 162, - "type": "Identifier", - "type": "Identifier" - }, - "end": 167, - "operator": "-", - "start": 161, - "type": "UnaryExpression", - "type": "UnaryExpression" - } - ], - "end": 168, - "start": 157, - "type": "ArrayExpression", - "type": "ArrayExpression" - } - } - ], - "callee": { - "end": 150, - "name": "line", - "start": 146, - "type": "Identifier" - }, - "end": 169, - "start": 146, - "type": "CallExpressionKw", - "type": "CallExpressionKw", - "unlabeled": null + "end": 137, + "start": 127, + "type": "ArrayExpression", + "type": "ArrayExpression" } - ], - "end": 169, - "start": 29, - "type": "PipeExpression", - "type": "PipeExpression" - }, - "start": 24, - "type": "VariableDeclarator" - }, - "end": 169, - "kind": "const", - "start": 24, - "type": "VariableDeclaration", - "type": "VariableDeclaration" - }, - { - "argument": { - "end": 182, - "name": "sg", - "start": 180, - "type": "Identifier", - "type": "Identifier" - }, - "end": 182, - "start": 173, - "type": "ReturnStatement", - "type": "ReturnStatement" - } - ], - "end": 184, - "nonCodeMeta": { - "nonCodeNodes": { - "0": [ - { - "end": 173, - "start": 169, - "type": "NonCodeNode", - "value": { - "type": "newLine" } - } - ] - }, - "startNodes": [] + ], + "callee": { + "end": 120, + "name": "line", + "start": 116, + "type": "Identifier" + }, + "end": 138, + "start": 116, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "type": "Identifier", + "name": "end" + }, + "arg": { + "elements": [ + { + "end": 159, + "raw": "0", + "start": 158, + "type": "Literal", + "type": "Literal", + "value": { + "value": 0.0, + "suffix": "None" + } + }, + { + "argument": { + "end": 167, + "name": "scale", + "start": 162, + "type": "Identifier", + "type": "Identifier" + }, + "end": 167, + "operator": "-", + "start": 161, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 168, + "start": 157, + "type": "ArrayExpression", + "type": "ArrayExpression" + } + } + ], + "callee": { + "end": 150, + "name": "line", + "start": 146, + "type": "Identifier" + }, + "end": 169, + "start": 146, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + } + ], + "end": 169, + "start": 29, + "type": "PipeExpression", + "type": "PipeExpression" }, - "start": 20 + "start": 24, + "type": "VariableDeclarator" }, - "end": 184, - "params": [ + "end": 169, + "kind": "const", + "start": 24, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "argument": { + "end": 182, + "name": "sg", + "start": 180, + "type": "Identifier", + "type": "Identifier" + }, + "end": 182, + "start": 173, + "type": "ReturnStatement", + "type": "ReturnStatement" + } + ], + "end": 184, + "nonCodeMeta": { + "nonCodeNodes": { + "0": [ { - "type": "Parameter", - "identifier": { - "end": 11, - "name": "pos", - "start": 8, - "type": "Identifier" - } - }, - { - "type": "Parameter", - "identifier": { - "end": 18, - "name": "scale", - "start": 13, - "type": "Identifier" + "end": 173, + "start": 169, + "type": "NonCodeNode", + "value": { + "type": "newLine" } } - ], - "start": 7, - "type": "FunctionExpression" + ] }, - "memory": [ - 0, - 1 - ], - "__meta": [ - { - "sourceRange": [ - 7, - 184, - 0 - ] - } + "startNodes": [] + }, + "start": 20 + }, + "end": 184, + "params": [ + { + "type": "Parameter", + "identifier": { + "end": 11, + "name": "pos", + "start": 8, + "type": "Identifier" + } + }, + { + "type": "Parameter", + "identifier": { + "end": 18, + "name": "scale", + "start": 13, + "type": "Identifier" + } + } + ], + "start": 7, + "type": "FunctionExpression" + }, + "memory": [ + 0, + 1 + ], + "__meta": [ + { + "sourceRange": [ + 7, + 184, + 0 + ] + } + ] + }, + "myCircle": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "myCircle", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 298, + 351, + 0 ] }, - "myCircle": { - "type": "TagIdentifier", - "type": "TagIdentifier", - "value": "myCircle", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 298, - 351, - 0 - ] - }, - "ccw": true, - "center": [ - 0.0, - 0.0 - ], - "from": [ - 5.0, - 0.0 - ], - "radius": 5.0, - "tag": { - "end": 350, - "start": 341, - "type": "TagDeclarator", - "value": "myCircle" - }, - "to": [ - 5.0, - 0.0 - ], - "type": "Circle" + "ccw": true, + "center": [ + 0.0, + 0.0 + ], + "from": [ + 5.0, + 0.0 + ], + "radius": 5.0, + "tag": { + "end": 350, + "start": 341, + "type": "TagDeclarator", + "value": "myCircle" + }, + "to": [ + 5.0, + 0.0 + ], + "type": "Circle" + }, + "surface": { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 298, + 351, + 0 + ], + "tag": { + "end": 350, + "start": 341, + "type": "TagDeclarator", + "value": "myCircle" + }, + "type": "extrudeArc" + } + }, + "__meta": [ + { + "sourceRange": [ + 341, + 350, + 0 + ] + } + ] + }, + "part001": { + "type": "Solid", + "value": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 86, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 116, + 138, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 146, + 169, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 217, + 225, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 86, + 108, + 0 + ] }, - "surface": { - "faceId": "[uuid]", + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 20.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 116, + 138, + 0 + ] + }, + "from": [ + 0.0, + 20.0 + ], + "tag": null, + "to": [ + 20.0, + 20.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 146, + 169, + 0 + ] + }, + "from": [ + 20.0, + 20.0 + ], + "tag": null, + "to": [ + 20.0, + 0.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 217, + 225, + 0 + ] + }, + "from": [ + 20.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 56, + 78, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 56, + 78, + 0 + ] + } + ] + }, + "height": 20.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 56, + 78, + 0 + ] + } + ] + } + }, + "part002": { + "type": "Solid", + "value": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 298, + 351, + 0 + ], + "tag": { + "end": 350, + "start": 341, + "type": "TagDeclarator", + "value": "myCircle" + }, + "type": "extrudeArc" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { "id": "[uuid]", "sourceRange": [ 298, 351, 0 - ], - "tag": { - "end": 350, - "start": 341, - "type": "TagDeclarator", - "value": "myCircle" - }, - "type": "extrudeArc" - } - }, - "__meta": [ - { - "sourceRange": [ - 341, - 350, - 0 ] - } - ] - }, - "part001": { - "type": "Solid", - "value": { + }, + "ccw": true, + "center": [ + 0.0, + 0.0 + ], + "from": [ + 5.0, + 0.0 + ], + "radius": 5.0, + "tag": { + "end": 350, + "start": 341, + "type": "TagDeclarator", + "value": "myCircle" + }, + "to": [ + 5.0, + 0.0 + ], + "type": "Circle" + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "end", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { "type": "Solid", "id": "[uuid]", "artifactId": "[uuid]", @@ -609,16 +902,79 @@ description: Program memory after executing sketch_on_face_circle_tagged.kcl ] } ] + }, + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 263, + 292, + 0 + ] + } + ] + }, + "start": { + "from": [ + 5.0, + 0.0 + ], + "to": [ + 5.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 298, + 351, + 0 + ] } }, - "part002": { - "type": "Solid", - "value": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { + "tags": { + "myCircle": { + "type": "TagIdentifier", + "value": "myCircle", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 298, + 351, + 0 + ] + }, + "ccw": true, + "center": [ + 0.0, + 0.0 + ], + "from": [ + 5.0, + 0.0 + ], + "radius": 5.0, + "tag": { + "end": 350, + "start": 341, + "type": "TagDeclarator", + "value": "myCircle" + }, + "to": [ + 5.0, + 0.0 + ], + "type": "Circle" + }, + "surface": { "faceId": "[uuid]", "id": "[uuid]", "sourceRange": [ @@ -634,443 +990,48 @@ description: Program memory after executing sketch_on_face_circle_tagged.kcl }, "type": "extrudeArc" } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 298, - 351, - 0 - ] - }, - "ccw": true, - "center": [ - 0.0, - 0.0 - ], - "from": [ - 5.0, - 0.0 - ], - "radius": 5.0, - "tag": { - "end": 350, - "start": 341, - "type": "TagDeclarator", - "value": "myCircle" - }, - "to": [ - 5.0, - 0.0 - ], - "type": "Circle" - } - ], - "on": { - "type": "face", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "end", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 86, - 108, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 116, - 138, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 146, - 169, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 217, - 225, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 86, - 108, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 20.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 116, - 138, - 0 - ] - }, - "from": [ - 0.0, - 20.0 - ], - "tag": null, - "to": [ - 20.0, - 20.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 146, - 169, - 0 - ] - }, - "from": [ - 20.0, - 20.0 - ], - "tag": null, - "to": [ - 20.0, - 0.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 217, - 225, - 0 - ] - }, - "from": [ - 20.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 56, - 78, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 56, - 78, - 0 - ] - } - ] - }, - "height": 20.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 56, - 78, - 0 - ] - } - ] - }, - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 263, - 292, - 0 - ] - } - ] - }, - "start": { - "from": [ - 5.0, - 0.0 - ], - "to": [ - 5.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 298, - 351, - 0 - ] - } - }, - "tags": { - "myCircle": { - "type": "TagIdentifier", - "value": "myCircle", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 298, - 351, - 0 - ] - }, - "ccw": true, - "center": [ - 0.0, - 0.0 - ], - "from": [ - 5.0, - 0.0 - ], - "radius": 5.0, - "tag": { - "end": 350, - "start": 341, - "type": "TagDeclarator", - "value": "myCircle" - }, - "to": [ - 5.0, - 0.0 - ], - "type": "Circle" - }, - "surface": { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 298, - 351, - 0 - ], - "tag": { - "end": 350, - "start": 341, - "type": "TagDeclarator", - "value": "myCircle" - }, - "type": "extrudeArc" - } - }, - "__meta": [ - { - "sourceRange": [ - 341, - 350, - 0 - ] - } - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 298, - 351, - 0 - ] - } - ] - }, - "height": 5.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" }, "__meta": [ { "sourceRange": [ - 298, - 351, + 341, + 350, 0 ] } ] } - } - }, - "snapshots": [ - { - "parent_snapshot": null, - "data": { - "cube": { - "type": "Tombstone", - "value": null, - "__meta": [] - }, - "myCircle": { - "type": "Tombstone", - "value": null, - "__meta": [] - }, - "part001": { - "type": "Tombstone", - "value": null, - "__meta": [] - }, - "part002": { - "type": "Tombstone", - "value": null, - "__meta": [] - } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 298, + 351, + 0 + ] } + ] + }, + "height": 5.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 298, + 351, + 0 + ] } - ], - "parent": null + ] } - ], - "currentEnv": [ - 0, - 0 - ], - "callStack": [] + } } diff --git a/src/wasm-lib/kcl/tests/sketch_on_face_end/program_memory.snap b/src/wasm-lib/kcl/tests/sketch_on_face_end/program_memory.snap index 9f98d59c2..d8a03c7de 100644 --- a/src/wasm-lib/kcl/tests/sketch_on_face_end/program_memory.snap +++ b/src/wasm-lib/kcl/tests/sketch_on_face_end/program_memory.snap @@ -1,335 +1,705 @@ --- source: kcl/src/simulation_tests.rs -description: Program memory after executing sketch_on_face_end.kcl +description: Variables in memory after executing sketch_on_face_end.kcl --- { - "environments": [ - { - "bindings": { - "HALF_TURN": { - "type": "Number", - "value": 180.0, - "__meta": [] - }, - "QUARTER_TURN": { - "type": "Number", - "value": 90.0, - "__meta": [] - }, - "THREE_QUARTER_TURN": { - "type": "Number", - "value": 270.0, - "__meta": [] - }, - "ZERO": { - "type": "Number", - "value": 0.0, - "__meta": [] - }, - "cube": { - "type": "Function", - "expression": { - "body": { - "body": [ - { - "declaration": { - "end": 169, - "id": { - "end": 26, - "name": "sg", - "start": 24, + "HALF_TURN": { + "type": "Number", + "value": 180.0, + "__meta": [] + }, + "QUARTER_TURN": { + "type": "Number", + "value": 90.0, + "__meta": [] + }, + "THREE_QUARTER_TURN": { + "type": "Number", + "value": 270.0, + "__meta": [] + }, + "ZERO": { + "type": "Number", + "value": 0.0, + "__meta": [] + }, + "cube": { + "type": "Function", + "expression": { + "body": { + "body": [ + { + "declaration": { + "end": 169, + "id": { + "end": 26, + "name": "sg", + "start": 24, + "type": "Identifier" + }, + "init": { + "body": [ + { + "arguments": [ + { + "end": 47, + "raw": "'XY'", + "start": 43, + "type": "Literal", + "type": "Literal", + "value": "XY" + } + ], + "callee": { + "end": 42, + "name": "startSketchOn", + "start": 29, "type": "Identifier" }, - "init": { - "body": [ - { - "arguments": [ + "end": 48, + "start": 29, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 74, + "name": "pos", + "start": 71, + "type": "Identifier", + "type": "Identifier" + }, + { + "end": 77, + "start": 76, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 70, + "name": "startProfileAt", + "start": 56, + "type": "Identifier" + }, + "end": 78, + "start": 56, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "type": "Identifier", + "name": "end" + }, + "arg": { + "elements": [ { - "end": 47, - "raw": "'XY'", - "start": 43, + "end": 99, + "raw": "0", + "start": 98, "type": "Literal", "type": "Literal", - "value": "XY" + "value": { + "value": 0.0, + "suffix": "None" + } + }, + { + "end": 106, + "name": "scale", + "start": 101, + "type": "Identifier", + "type": "Identifier" } ], - "callee": { - "end": 42, - "name": "startSketchOn", - "start": 29, - "type": "Identifier" - }, - "end": 48, - "start": 29, - "type": "CallExpression", - "type": "CallExpression" + "end": 107, + "start": 97, + "type": "ArrayExpression", + "type": "ArrayExpression" + } + } + ], + "callee": { + "end": 90, + "name": "line", + "start": 86, + "type": "Identifier" + }, + "end": 108, + "start": 86, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "type": "Identifier", + "name": "end" }, - { - "arguments": [ + "arg": { + "elements": [ { - "end": 74, - "name": "pos", - "start": 71, + "end": 133, + "name": "scale", + "start": 128, "type": "Identifier", "type": "Identifier" }, { - "end": 77, - "start": 76, - "type": "PipeSubstitution", - "type": "PipeSubstitution" - } - ], - "callee": { - "end": 70, - "name": "startProfileAt", - "start": 56, - "type": "Identifier" - }, - "end": 78, - "start": 56, - "type": "CallExpression", - "type": "CallExpression" - }, - { - "arguments": [ - { - "type": "LabeledArg", - "label": { - "type": "Identifier", - "name": "end" - }, - "arg": { - "elements": [ - { - "end": 99, - "raw": "0", - "start": 98, - "type": "Literal", - "type": "Literal", - "value": { - "value": 0.0, - "suffix": "None" - } - }, - { - "end": 106, - "name": "scale", - "start": 101, - "type": "Identifier", - "type": "Identifier" - } - ], - "end": 107, - "start": 97, - "type": "ArrayExpression", - "type": "ArrayExpression" + "end": 136, + "raw": "0", + "start": 135, + "type": "Literal", + "type": "Literal", + "value": { + "value": 0.0, + "suffix": "None" } } ], - "callee": { - "end": 90, - "name": "line", - "start": 86, - "type": "Identifier" - }, - "end": 108, - "start": 86, - "type": "CallExpressionKw", - "type": "CallExpressionKw", - "unlabeled": null - }, - { - "arguments": [ - { - "type": "LabeledArg", - "label": { - "type": "Identifier", - "name": "end" - }, - "arg": { - "elements": [ - { - "end": 133, - "name": "scale", - "start": 128, - "type": "Identifier", - "type": "Identifier" - }, - { - "end": 136, - "raw": "0", - "start": 135, - "type": "Literal", - "type": "Literal", - "value": { - "value": 0.0, - "suffix": "None" - } - } - ], - "end": 137, - "start": 127, - "type": "ArrayExpression", - "type": "ArrayExpression" - } - } - ], - "callee": { - "end": 120, - "name": "line", - "start": 116, - "type": "Identifier" - }, - "end": 138, - "start": 116, - "type": "CallExpressionKw", - "type": "CallExpressionKw", - "unlabeled": null - }, - { - "arguments": [ - { - "type": "LabeledArg", - "label": { - "type": "Identifier", - "name": "end" - }, - "arg": { - "elements": [ - { - "end": 159, - "raw": "0", - "start": 158, - "type": "Literal", - "type": "Literal", - "value": { - "value": 0.0, - "suffix": "None" - } - }, - { - "argument": { - "end": 167, - "name": "scale", - "start": 162, - "type": "Identifier", - "type": "Identifier" - }, - "end": 167, - "operator": "-", - "start": 161, - "type": "UnaryExpression", - "type": "UnaryExpression" - } - ], - "end": 168, - "start": 157, - "type": "ArrayExpression", - "type": "ArrayExpression" - } - } - ], - "callee": { - "end": 150, - "name": "line", - "start": 146, - "type": "Identifier" - }, - "end": 169, - "start": 146, - "type": "CallExpressionKw", - "type": "CallExpressionKw", - "unlabeled": null + "end": 137, + "start": 127, + "type": "ArrayExpression", + "type": "ArrayExpression" } - ], - "end": 169, - "start": 29, - "type": "PipeExpression", - "type": "PipeExpression" - }, - "start": 24, - "type": "VariableDeclarator" - }, - "end": 169, - "kind": "const", - "start": 24, - "type": "VariableDeclaration", - "type": "VariableDeclaration" - }, - { - "argument": { - "end": 182, - "name": "sg", - "start": 180, - "type": "Identifier", - "type": "Identifier" - }, - "end": 182, - "start": 173, - "type": "ReturnStatement", - "type": "ReturnStatement" - } - ], - "end": 184, - "nonCodeMeta": { - "nonCodeNodes": { - "0": [ - { - "end": 173, - "start": 169, - "type": "NonCodeNode", - "value": { - "type": "newLine" } - } - ] - }, - "startNodes": [] + ], + "callee": { + "end": 120, + "name": "line", + "start": 116, + "type": "Identifier" + }, + "end": 138, + "start": 116, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "type": "Identifier", + "name": "end" + }, + "arg": { + "elements": [ + { + "end": 159, + "raw": "0", + "start": 158, + "type": "Literal", + "type": "Literal", + "value": { + "value": 0.0, + "suffix": "None" + } + }, + { + "argument": { + "end": 167, + "name": "scale", + "start": 162, + "type": "Identifier", + "type": "Identifier" + }, + "end": 167, + "operator": "-", + "start": 161, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 168, + "start": 157, + "type": "ArrayExpression", + "type": "ArrayExpression" + } + } + ], + "callee": { + "end": 150, + "name": "line", + "start": 146, + "type": "Identifier" + }, + "end": 169, + "start": 146, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + } + ], + "end": 169, + "start": 29, + "type": "PipeExpression", + "type": "PipeExpression" }, - "start": 20 + "start": 24, + "type": "VariableDeclarator" }, - "end": 184, - "params": [ + "end": 169, + "kind": "const", + "start": 24, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "argument": { + "end": 182, + "name": "sg", + "start": 180, + "type": "Identifier", + "type": "Identifier" + }, + "end": 182, + "start": 173, + "type": "ReturnStatement", + "type": "ReturnStatement" + } + ], + "end": 184, + "nonCodeMeta": { + "nonCodeNodes": { + "0": [ { - "type": "Parameter", - "identifier": { - "end": 11, - "name": "pos", - "start": 8, - "type": "Identifier" - } - }, - { - "type": "Parameter", - "identifier": { - "end": 18, - "name": "scale", - "start": 13, - "type": "Identifier" + "end": 173, + "start": 169, + "type": "NonCodeNode", + "value": { + "type": "newLine" } } - ], - "start": 7, - "type": "FunctionExpression" + ] }, - "memory": [ - 0, - 1 + "startNodes": [] + }, + "start": 20 + }, + "end": 184, + "params": [ + { + "type": "Parameter", + "identifier": { + "end": 11, + "name": "pos", + "start": 8, + "type": "Identifier" + } + }, + { + "type": "Parameter", + "identifier": { + "end": 18, + "name": "scale", + "start": 13, + "type": "Identifier" + } + } + ], + "start": 7, + "type": "FunctionExpression" + }, + "memory": [ + 0, + 1 + ], + "__meta": [ + { + "sourceRange": [ + 7, + 184, + 0 + ] + } + ] + }, + "part001": { + "type": "Solid", + "value": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 86, + 108, + 0 ], - "__meta": [ - { + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 116, + 138, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 146, + 169, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 217, + 225, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", "sourceRange": [ - 7, - 184, + 86, + 108, 0 ] - } - ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 20.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 116, + 138, + 0 + ] + }, + "from": [ + 0.0, + 20.0 + ], + "tag": null, + "to": [ + 20.0, + 20.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 146, + 169, + 0 + ] + }, + "from": [ + 20.0, + 20.0 + ], + "tag": null, + "to": [ + 20.0, + 0.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 217, + 225, + 0 + ] + }, + "from": [ + 20.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] }, - "part001": { - "type": "Solid", - "value": { + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 56, + 78, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 56, + 78, + 0 + ] + } + ] + }, + "height": 20.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 56, + 78, + 0 + ] + } + ] + } + }, + "part002": { + "type": "Solid", + "value": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 329, + 348, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 354, + 373, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 379, + 399, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 405, + 413, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 329, + 348, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 10.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 354, + 373, + 0 + ] + }, + "from": [ + 0.0, + 10.0 + ], + "tag": null, + "to": [ + 10.0, + 10.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 379, + 399, + 0 + ] + }, + "from": [ + 10.0, + 10.0 + ], + "tag": null, + "to": [ + 10.0, + 0.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 405, + 413, + 0 + ] + }, + "from": [ + 10.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "end", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { "type": "Solid", "id": "[uuid]", "artifactId": "[uuid]", @@ -543,473 +913,69 @@ description: Program memory after executing sketch_on_face_end.kcl ] } ] - } - }, - "part002": { - "type": "Solid", - "value": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 329, - 348, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 354, - 373, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 379, - 399, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 405, - 413, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 329, - 348, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 10.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 354, - 373, - 0 - ] - }, - "from": [ - 0.0, - 10.0 - ], - "tag": null, - "to": [ - 10.0, - 10.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 379, - 399, - 0 - ] - }, - "from": [ - 10.0, - 10.0 - ], - "tag": null, - "to": [ - 10.0, - 0.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 405, - 413, - 0 - ] - }, - "from": [ - 10.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "face", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "end", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 86, - 108, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 116, - 138, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 146, - 169, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 217, - 225, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 86, - 108, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 20.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 116, - 138, - 0 - ] - }, - "from": [ - 0.0, - 20.0 - ], - "tag": null, - "to": [ - 20.0, - 20.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 146, - 169, - 0 - ] - }, - "from": [ - 20.0, - 20.0 - ], - "tag": null, - "to": [ - 20.0, - 0.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 217, - 225, - 0 - ] - }, - "from": [ - 20.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 56, - 78, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 56, - 78, - 0 - ] - } - ] - }, - "height": 20.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 56, - 78, - 0 - ] - } - ] - }, - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 263, - 292, - 0 - ] - } - ] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 298, - 323, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 298, - 323, - 0 - ] - } + }, + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 263, + 292, + 0 ] - }, - "height": 5.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 298, - 323, - 0 - ] - } + } + ] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 298, + 323, + 0 ] } - } - }, - "snapshots": [ - { - "parent_snapshot": null, - "data": { - "cube": { - "type": "Tombstone", - "value": null, - "__meta": [] - }, - "part001": { - "type": "Tombstone", - "value": null, - "__meta": [] - }, - "part002": { - "type": "Tombstone", - "value": null, - "__meta": [] - } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 298, + 323, + 0 + ] } + ] + }, + "height": 5.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 298, + 323, + 0 + ] } - ], - "parent": null + ] } - ], - "currentEnv": [ - 0, - 0 - ], - "callStack": [] + } } diff --git a/src/wasm-lib/kcl/tests/sketch_on_face_end_negative_extrude/program_memory.snap b/src/wasm-lib/kcl/tests/sketch_on_face_end_negative_extrude/program_memory.snap index c572b804b..24cc67a53 100644 --- a/src/wasm-lib/kcl/tests/sketch_on_face_end_negative_extrude/program_memory.snap +++ b/src/wasm-lib/kcl/tests/sketch_on_face_end_negative_extrude/program_memory.snap @@ -1,335 +1,705 @@ --- source: kcl/src/simulation_tests.rs -description: Program memory after executing sketch_on_face_end_negative_extrude.kcl +description: Variables in memory after executing sketch_on_face_end_negative_extrude.kcl --- { - "environments": [ - { - "bindings": { - "HALF_TURN": { - "type": "Number", - "value": 180.0, - "__meta": [] - }, - "QUARTER_TURN": { - "type": "Number", - "value": 90.0, - "__meta": [] - }, - "THREE_QUARTER_TURN": { - "type": "Number", - "value": 270.0, - "__meta": [] - }, - "ZERO": { - "type": "Number", - "value": 0.0, - "__meta": [] - }, - "cube": { - "type": "Function", - "expression": { - "body": { - "body": [ - { - "declaration": { - "end": 169, - "id": { - "end": 26, - "name": "sg", - "start": 24, + "HALF_TURN": { + "type": "Number", + "value": 180.0, + "__meta": [] + }, + "QUARTER_TURN": { + "type": "Number", + "value": 90.0, + "__meta": [] + }, + "THREE_QUARTER_TURN": { + "type": "Number", + "value": 270.0, + "__meta": [] + }, + "ZERO": { + "type": "Number", + "value": 0.0, + "__meta": [] + }, + "cube": { + "type": "Function", + "expression": { + "body": { + "body": [ + { + "declaration": { + "end": 169, + "id": { + "end": 26, + "name": "sg", + "start": 24, + "type": "Identifier" + }, + "init": { + "body": [ + { + "arguments": [ + { + "end": 47, + "raw": "'XY'", + "start": 43, + "type": "Literal", + "type": "Literal", + "value": "XY" + } + ], + "callee": { + "end": 42, + "name": "startSketchOn", + "start": 29, "type": "Identifier" }, - "init": { - "body": [ - { - "arguments": [ + "end": 48, + "start": 29, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 74, + "name": "pos", + "start": 71, + "type": "Identifier", + "type": "Identifier" + }, + { + "end": 77, + "start": 76, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 70, + "name": "startProfileAt", + "start": 56, + "type": "Identifier" + }, + "end": 78, + "start": 56, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "type": "Identifier", + "name": "end" + }, + "arg": { + "elements": [ { - "end": 47, - "raw": "'XY'", - "start": 43, + "end": 99, + "raw": "0", + "start": 98, "type": "Literal", "type": "Literal", - "value": "XY" + "value": { + "value": 0.0, + "suffix": "None" + } + }, + { + "end": 106, + "name": "scale", + "start": 101, + "type": "Identifier", + "type": "Identifier" } ], - "callee": { - "end": 42, - "name": "startSketchOn", - "start": 29, - "type": "Identifier" - }, - "end": 48, - "start": 29, - "type": "CallExpression", - "type": "CallExpression" + "end": 107, + "start": 97, + "type": "ArrayExpression", + "type": "ArrayExpression" + } + } + ], + "callee": { + "end": 90, + "name": "line", + "start": 86, + "type": "Identifier" + }, + "end": 108, + "start": 86, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "type": "Identifier", + "name": "end" }, - { - "arguments": [ + "arg": { + "elements": [ { - "end": 74, - "name": "pos", - "start": 71, + "end": 133, + "name": "scale", + "start": 128, "type": "Identifier", "type": "Identifier" }, { - "end": 77, - "start": 76, - "type": "PipeSubstitution", - "type": "PipeSubstitution" - } - ], - "callee": { - "end": 70, - "name": "startProfileAt", - "start": 56, - "type": "Identifier" - }, - "end": 78, - "start": 56, - "type": "CallExpression", - "type": "CallExpression" - }, - { - "arguments": [ - { - "type": "LabeledArg", - "label": { - "type": "Identifier", - "name": "end" - }, - "arg": { - "elements": [ - { - "end": 99, - "raw": "0", - "start": 98, - "type": "Literal", - "type": "Literal", - "value": { - "value": 0.0, - "suffix": "None" - } - }, - { - "end": 106, - "name": "scale", - "start": 101, - "type": "Identifier", - "type": "Identifier" - } - ], - "end": 107, - "start": 97, - "type": "ArrayExpression", - "type": "ArrayExpression" + "end": 136, + "raw": "0", + "start": 135, + "type": "Literal", + "type": "Literal", + "value": { + "value": 0.0, + "suffix": "None" } } ], - "callee": { - "end": 90, - "name": "line", - "start": 86, - "type": "Identifier" - }, - "end": 108, - "start": 86, - "type": "CallExpressionKw", - "type": "CallExpressionKw", - "unlabeled": null - }, - { - "arguments": [ - { - "type": "LabeledArg", - "label": { - "type": "Identifier", - "name": "end" - }, - "arg": { - "elements": [ - { - "end": 133, - "name": "scale", - "start": 128, - "type": "Identifier", - "type": "Identifier" - }, - { - "end": 136, - "raw": "0", - "start": 135, - "type": "Literal", - "type": "Literal", - "value": { - "value": 0.0, - "suffix": "None" - } - } - ], - "end": 137, - "start": 127, - "type": "ArrayExpression", - "type": "ArrayExpression" - } - } - ], - "callee": { - "end": 120, - "name": "line", - "start": 116, - "type": "Identifier" - }, - "end": 138, - "start": 116, - "type": "CallExpressionKw", - "type": "CallExpressionKw", - "unlabeled": null - }, - { - "arguments": [ - { - "type": "LabeledArg", - "label": { - "type": "Identifier", - "name": "end" - }, - "arg": { - "elements": [ - { - "end": 159, - "raw": "0", - "start": 158, - "type": "Literal", - "type": "Literal", - "value": { - "value": 0.0, - "suffix": "None" - } - }, - { - "argument": { - "end": 167, - "name": "scale", - "start": 162, - "type": "Identifier", - "type": "Identifier" - }, - "end": 167, - "operator": "-", - "start": 161, - "type": "UnaryExpression", - "type": "UnaryExpression" - } - ], - "end": 168, - "start": 157, - "type": "ArrayExpression", - "type": "ArrayExpression" - } - } - ], - "callee": { - "end": 150, - "name": "line", - "start": 146, - "type": "Identifier" - }, - "end": 169, - "start": 146, - "type": "CallExpressionKw", - "type": "CallExpressionKw", - "unlabeled": null + "end": 137, + "start": 127, + "type": "ArrayExpression", + "type": "ArrayExpression" } - ], - "end": 169, - "start": 29, - "type": "PipeExpression", - "type": "PipeExpression" - }, - "start": 24, - "type": "VariableDeclarator" - }, - "end": 169, - "kind": "const", - "start": 24, - "type": "VariableDeclaration", - "type": "VariableDeclaration" - }, - { - "argument": { - "end": 182, - "name": "sg", - "start": 180, - "type": "Identifier", - "type": "Identifier" - }, - "end": 182, - "start": 173, - "type": "ReturnStatement", - "type": "ReturnStatement" - } - ], - "end": 184, - "nonCodeMeta": { - "nonCodeNodes": { - "0": [ - { - "end": 173, - "start": 169, - "type": "NonCodeNode", - "value": { - "type": "newLine" } - } - ] - }, - "startNodes": [] + ], + "callee": { + "end": 120, + "name": "line", + "start": 116, + "type": "Identifier" + }, + "end": 138, + "start": 116, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "type": "Identifier", + "name": "end" + }, + "arg": { + "elements": [ + { + "end": 159, + "raw": "0", + "start": 158, + "type": "Literal", + "type": "Literal", + "value": { + "value": 0.0, + "suffix": "None" + } + }, + { + "argument": { + "end": 167, + "name": "scale", + "start": 162, + "type": "Identifier", + "type": "Identifier" + }, + "end": 167, + "operator": "-", + "start": 161, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 168, + "start": 157, + "type": "ArrayExpression", + "type": "ArrayExpression" + } + } + ], + "callee": { + "end": 150, + "name": "line", + "start": 146, + "type": "Identifier" + }, + "end": 169, + "start": 146, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + } + ], + "end": 169, + "start": 29, + "type": "PipeExpression", + "type": "PipeExpression" }, - "start": 20 + "start": 24, + "type": "VariableDeclarator" }, - "end": 184, - "params": [ + "end": 169, + "kind": "const", + "start": 24, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "argument": { + "end": 182, + "name": "sg", + "start": 180, + "type": "Identifier", + "type": "Identifier" + }, + "end": 182, + "start": 173, + "type": "ReturnStatement", + "type": "ReturnStatement" + } + ], + "end": 184, + "nonCodeMeta": { + "nonCodeNodes": { + "0": [ { - "type": "Parameter", - "identifier": { - "end": 11, - "name": "pos", - "start": 8, - "type": "Identifier" - } - }, - { - "type": "Parameter", - "identifier": { - "end": 18, - "name": "scale", - "start": 13, - "type": "Identifier" + "end": 173, + "start": 169, + "type": "NonCodeNode", + "value": { + "type": "newLine" } } - ], - "start": 7, - "type": "FunctionExpression" + ] }, - "memory": [ - 0, - 1 + "startNodes": [] + }, + "start": 20 + }, + "end": 184, + "params": [ + { + "type": "Parameter", + "identifier": { + "end": 11, + "name": "pos", + "start": 8, + "type": "Identifier" + } + }, + { + "type": "Parameter", + "identifier": { + "end": 18, + "name": "scale", + "start": 13, + "type": "Identifier" + } + } + ], + "start": 7, + "type": "FunctionExpression" + }, + "memory": [ + 0, + 1 + ], + "__meta": [ + { + "sourceRange": [ + 7, + 184, + 0 + ] + } + ] + }, + "part001": { + "type": "Solid", + "value": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 86, + 108, + 0 ], - "__meta": [ - { + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 116, + 138, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 146, + 169, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 217, + 225, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", "sourceRange": [ - 7, - 184, + 86, + 108, 0 ] - } - ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 20.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 116, + 138, + 0 + ] + }, + "from": [ + 0.0, + 20.0 + ], + "tag": null, + "to": [ + 20.0, + 20.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 146, + 169, + 0 + ] + }, + "from": [ + 20.0, + 20.0 + ], + "tag": null, + "to": [ + 20.0, + 0.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 217, + 225, + 0 + ] + }, + "from": [ + 20.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] }, - "part001": { - "type": "Solid", - "value": { + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 56, + 78, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 56, + 78, + 0 + ] + } + ] + }, + "height": 20.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 56, + 78, + 0 + ] + } + ] + } + }, + "part002": { + "type": "Solid", + "value": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 329, + 348, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 354, + 373, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 379, + 399, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 405, + 413, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 329, + 348, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 10.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 354, + 373, + 0 + ] + }, + "from": [ + 0.0, + 10.0 + ], + "tag": null, + "to": [ + 10.0, + 10.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 379, + 399, + 0 + ] + }, + "from": [ + 10.0, + 10.0 + ], + "tag": null, + "to": [ + 10.0, + 0.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 405, + 413, + 0 + ] + }, + "from": [ + 10.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "end", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { "type": "Solid", "id": "[uuid]", "artifactId": "[uuid]", @@ -543,473 +913,69 @@ description: Program memory after executing sketch_on_face_end_negative_extrude. ] } ] - } - }, - "part002": { - "type": "Solid", - "value": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 329, - 348, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 354, - 373, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 379, - 399, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 405, - 413, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 329, - 348, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 10.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 354, - 373, - 0 - ] - }, - "from": [ - 0.0, - 10.0 - ], - "tag": null, - "to": [ - 10.0, - 10.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 379, - 399, - 0 - ] - }, - "from": [ - 10.0, - 10.0 - ], - "tag": null, - "to": [ - 10.0, - 0.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 405, - 413, - 0 - ] - }, - "from": [ - 10.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "face", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "end", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 86, - 108, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 116, - 138, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 146, - 169, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 217, - 225, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 86, - 108, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 20.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 116, - 138, - 0 - ] - }, - "from": [ - 0.0, - 20.0 - ], - "tag": null, - "to": [ - 20.0, - 20.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 146, - 169, - 0 - ] - }, - "from": [ - 20.0, - 20.0 - ], - "tag": null, - "to": [ - 20.0, - 0.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 217, - 225, - 0 - ] - }, - "from": [ - 20.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 56, - 78, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 56, - 78, - 0 - ] - } - ] - }, - "height": 20.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 56, - 78, - 0 - ] - } - ] - }, - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 263, - 292, - 0 - ] - } - ] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 298, - 323, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 298, - 323, - 0 - ] - } + }, + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 263, + 292, + 0 ] - }, - "height": -5.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 298, - 323, - 0 - ] - } + } + ] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 298, + 323, + 0 ] } - } - }, - "snapshots": [ - { - "parent_snapshot": null, - "data": { - "cube": { - "type": "Tombstone", - "value": null, - "__meta": [] - }, - "part001": { - "type": "Tombstone", - "value": null, - "__meta": [] - }, - "part002": { - "type": "Tombstone", - "value": null, - "__meta": [] - } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 298, + 323, + 0 + ] } + ] + }, + "height": -5.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 298, + 323, + 0 + ] } - ], - "parent": null + ] } - ], - "currentEnv": [ - 0, - 0 - ], - "callStack": [] + } } diff --git a/src/wasm-lib/kcl/tests/sketch_on_face_start/program_memory.snap b/src/wasm-lib/kcl/tests/sketch_on_face_start/program_memory.snap index 4599c7240..d33f7621b 100644 --- a/src/wasm-lib/kcl/tests/sketch_on_face_start/program_memory.snap +++ b/src/wasm-lib/kcl/tests/sketch_on_face_start/program_memory.snap @@ -1,1238 +1,1199 @@ --- source: kcl/src/simulation_tests.rs -description: Program memory after executing sketch_on_face_start.kcl +description: Variables in memory after executing sketch_on_face_start.kcl --- { - "environments": [ - { - "bindings": { - "HALF_TURN": { - "type": "Number", - "value": 180.0, - "__meta": [] - }, - "QUARTER_TURN": { - "type": "Number", - "value": 90.0, - "__meta": [] - }, - "THREE_QUARTER_TURN": { - "type": "Number", - "value": 270.0, - "__meta": [] - }, - "ZERO": { - "type": "Number", - "value": 0.0, - "__meta": [] - }, - "cube": { - "type": "Function", - "expression": { - "body": { - "body": [ - { - "declaration": { - "end": 169, - "id": { - "end": 26, - "name": "sg", - "start": 24, + "HALF_TURN": { + "type": "Number", + "value": 180.0, + "__meta": [] + }, + "QUARTER_TURN": { + "type": "Number", + "value": 90.0, + "__meta": [] + }, + "THREE_QUARTER_TURN": { + "type": "Number", + "value": 270.0, + "__meta": [] + }, + "ZERO": { + "type": "Number", + "value": 0.0, + "__meta": [] + }, + "cube": { + "type": "Function", + "expression": { + "body": { + "body": [ + { + "declaration": { + "end": 169, + "id": { + "end": 26, + "name": "sg", + "start": 24, + "type": "Identifier" + }, + "init": { + "body": [ + { + "arguments": [ + { + "end": 47, + "raw": "'XY'", + "start": 43, + "type": "Literal", + "type": "Literal", + "value": "XY" + } + ], + "callee": { + "end": 42, + "name": "startSketchOn", + "start": 29, "type": "Identifier" }, - "init": { - "body": [ - { - "arguments": [ + "end": 48, + "start": 29, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "end": 74, + "name": "pos", + "start": 71, + "type": "Identifier", + "type": "Identifier" + }, + { + "end": 77, + "start": 76, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + ], + "callee": { + "end": 70, + "name": "startProfileAt", + "start": 56, + "type": "Identifier" + }, + "end": 78, + "start": 56, + "type": "CallExpression", + "type": "CallExpression" + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "type": "Identifier", + "name": "end" + }, + "arg": { + "elements": [ { - "end": 47, - "raw": "'XY'", - "start": 43, + "end": 99, + "raw": "0", + "start": 98, "type": "Literal", "type": "Literal", - "value": "XY" + "value": { + "value": 0.0, + "suffix": "None" + } + }, + { + "end": 106, + "name": "scale", + "start": 101, + "type": "Identifier", + "type": "Identifier" } ], - "callee": { - "end": 42, - "name": "startSketchOn", - "start": 29, - "type": "Identifier" - }, - "end": 48, - "start": 29, - "type": "CallExpression", - "type": "CallExpression" + "end": 107, + "start": 97, + "type": "ArrayExpression", + "type": "ArrayExpression" + } + } + ], + "callee": { + "end": 90, + "name": "line", + "start": 86, + "type": "Identifier" + }, + "end": 108, + "start": 86, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "type": "Identifier", + "name": "end" }, - { - "arguments": [ + "arg": { + "elements": [ { - "end": 74, - "name": "pos", - "start": 71, + "end": 133, + "name": "scale", + "start": 128, "type": "Identifier", "type": "Identifier" }, { - "end": 77, - "start": 76, - "type": "PipeSubstitution", - "type": "PipeSubstitution" - } - ], - "callee": { - "end": 70, - "name": "startProfileAt", - "start": 56, - "type": "Identifier" - }, - "end": 78, - "start": 56, - "type": "CallExpression", - "type": "CallExpression" - }, - { - "arguments": [ - { - "type": "LabeledArg", - "label": { - "type": "Identifier", - "name": "end" - }, - "arg": { - "elements": [ - { - "end": 99, - "raw": "0", - "start": 98, - "type": "Literal", - "type": "Literal", - "value": { - "value": 0.0, - "suffix": "None" - } - }, - { - "end": 106, - "name": "scale", - "start": 101, - "type": "Identifier", - "type": "Identifier" - } - ], - "end": 107, - "start": 97, - "type": "ArrayExpression", - "type": "ArrayExpression" + "end": 136, + "raw": "0", + "start": 135, + "type": "Literal", + "type": "Literal", + "value": { + "value": 0.0, + "suffix": "None" } } ], - "callee": { - "end": 90, - "name": "line", - "start": 86, - "type": "Identifier" - }, - "end": 108, - "start": 86, - "type": "CallExpressionKw", - "type": "CallExpressionKw", - "unlabeled": null - }, - { - "arguments": [ - { - "type": "LabeledArg", - "label": { - "type": "Identifier", - "name": "end" - }, - "arg": { - "elements": [ - { - "end": 133, - "name": "scale", - "start": 128, - "type": "Identifier", - "type": "Identifier" - }, - { - "end": 136, - "raw": "0", - "start": 135, - "type": "Literal", - "type": "Literal", - "value": { - "value": 0.0, - "suffix": "None" - } - } - ], - "end": 137, - "start": 127, - "type": "ArrayExpression", - "type": "ArrayExpression" - } - } - ], - "callee": { - "end": 120, - "name": "line", - "start": 116, - "type": "Identifier" - }, - "end": 138, - "start": 116, - "type": "CallExpressionKw", - "type": "CallExpressionKw", - "unlabeled": null - }, - { - "arguments": [ - { - "type": "LabeledArg", - "label": { - "type": "Identifier", - "name": "end" - }, - "arg": { - "elements": [ - { - "end": 159, - "raw": "0", - "start": 158, - "type": "Literal", - "type": "Literal", - "value": { - "value": 0.0, - "suffix": "None" - } - }, - { - "argument": { - "end": 167, - "name": "scale", - "start": 162, - "type": "Identifier", - "type": "Identifier" - }, - "end": 167, - "operator": "-", - "start": 161, - "type": "UnaryExpression", - "type": "UnaryExpression" - } - ], - "end": 168, - "start": 157, - "type": "ArrayExpression", - "type": "ArrayExpression" - } - } - ], - "callee": { - "end": 150, - "name": "line", - "start": 146, - "type": "Identifier" - }, - "end": 169, - "start": 146, - "type": "CallExpressionKw", - "type": "CallExpressionKw", - "unlabeled": null + "end": 137, + "start": 127, + "type": "ArrayExpression", + "type": "ArrayExpression" } - ], - "end": 169, - "start": 29, - "type": "PipeExpression", - "type": "PipeExpression" - }, - "start": 24, - "type": "VariableDeclarator" - }, - "end": 169, - "kind": "const", - "start": 24, - "type": "VariableDeclaration", - "type": "VariableDeclaration" - }, - { - "argument": { - "end": 182, - "name": "sg", - "start": 180, - "type": "Identifier", - "type": "Identifier" - }, - "end": 182, - "start": 173, - "type": "ReturnStatement", - "type": "ReturnStatement" - } - ], - "end": 184, - "nonCodeMeta": { - "nonCodeNodes": { - "0": [ - { - "end": 173, - "start": 169, - "type": "NonCodeNode", - "value": { - "type": "newLine" } - } - ] - }, - "startNodes": [] + ], + "callee": { + "end": 120, + "name": "line", + "start": 116, + "type": "Identifier" + }, + "end": 138, + "start": 116, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "type": "Identifier", + "name": "end" + }, + "arg": { + "elements": [ + { + "end": 159, + "raw": "0", + "start": 158, + "type": "Literal", + "type": "Literal", + "value": { + "value": 0.0, + "suffix": "None" + } + }, + { + "argument": { + "end": 167, + "name": "scale", + "start": 162, + "type": "Identifier", + "type": "Identifier" + }, + "end": 167, + "operator": "-", + "start": 161, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + ], + "end": 168, + "start": 157, + "type": "ArrayExpression", + "type": "ArrayExpression" + } + } + ], + "callee": { + "end": 150, + "name": "line", + "start": 146, + "type": "Identifier" + }, + "end": 169, + "start": 146, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + } + ], + "end": 169, + "start": 29, + "type": "PipeExpression", + "type": "PipeExpression" }, - "start": 20 + "start": 24, + "type": "VariableDeclarator" }, - "end": 184, - "params": [ + "end": 169, + "kind": "const", + "start": 24, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "argument": { + "end": 182, + "name": "sg", + "start": 180, + "type": "Identifier", + "type": "Identifier" + }, + "end": 182, + "start": 173, + "type": "ReturnStatement", + "type": "ReturnStatement" + } + ], + "end": 184, + "nonCodeMeta": { + "nonCodeNodes": { + "0": [ { - "type": "Parameter", - "identifier": { - "end": 11, - "name": "pos", - "start": 8, - "type": "Identifier" - } - }, - { - "type": "Parameter", - "identifier": { - "end": 18, - "name": "scale", - "start": 13, - "type": "Identifier" + "end": 173, + "start": 169, + "type": "NonCodeNode", + "value": { + "type": "newLine" } } - ], - "start": 7, - "type": "FunctionExpression" + ] }, - "memory": [ - 0, - 1 + "startNodes": [] + }, + "start": 20 + }, + "end": 184, + "params": [ + { + "type": "Parameter", + "identifier": { + "end": 11, + "name": "pos", + "start": 8, + "type": "Identifier" + } + }, + { + "type": "Parameter", + "identifier": { + "end": 18, + "name": "scale", + "start": 13, + "type": "Identifier" + } + } + ], + "start": 7, + "type": "FunctionExpression" + }, + "memory": [ + 0, + 1 + ], + "__meta": [ + { + "sourceRange": [ + 7, + 184, + 0 + ] + } + ] + }, + "foo": { + "type": "Solid", + "value": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 86, + 108, + 0 ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 116, + 138, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 146, + 169, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 217, + 225, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 86, + 108, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 20.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 116, + 138, + 0 + ] + }, + "from": [ + 0.0, + 20.0 + ], + "tag": null, + "to": [ + 20.0, + 20.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 146, + 169, + 0 + ] + }, + "from": [ + 20.0, + 20.0 + ], + "tag": null, + "to": [ + 20.0, + 0.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 217, + 225, + 0 + ] + }, + "from": [ + 20.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 56, + 78, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 56, + 78, + 0 + ] + } + ] + }, + "height": 20.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 56, + 78, + 0 + ] + } + ] + } + }, + "part001": { + "type": "Solid", + "value": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 86, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 116, + 138, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 146, + 169, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 217, + 225, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 86, + 108, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 20.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 116, + 138, + 0 + ] + }, + "from": [ + 0.0, + 20.0 + ], + "tag": null, + "to": [ + 20.0, + 20.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 146, + 169, + 0 + ] + }, + "from": [ + 20.0, + 20.0 + ], + "tag": null, + "to": [ + 20.0, + 0.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 217, + 225, + 0 + ] + }, + "from": [ + 20.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 56, + 78, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 56, + 78, + 0 + ] + } + ] + }, + "height": 20.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 56, + 78, + 0 + ] + } + ] + } + }, + "part002": { + "type": "Solid", + "value": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 334, + 353, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 359, + 378, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 384, + 404, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 410, + 418, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 334, + 353, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 10.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 359, + 378, + 0 + ] + }, + "from": [ + 0.0, + 10.0 + ], + "tag": null, + "to": [ + 10.0, + 10.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 384, + 404, + 0 + ] + }, + "from": [ + 10.0, + 10.0 + ], + "tag": null, + "to": [ + 10.0, + 0.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 410, + 418, + 0 + ] + }, + "from": [ + 10.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "face", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "start", + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "solid": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 86, + 108, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 116, + 138, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 146, + 169, + 0 + ], + "tag": null, + "type": "extrudePlane" + }, + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 217, + 225, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 86, + 108, + 0 + ] + }, + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 20.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 116, + 138, + 0 + ] + }, + "from": [ + 0.0, + 20.0 + ], + "tag": null, + "to": [ + 20.0, + 20.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 146, + 169, + 0 + ] + }, + "from": [ + 20.0, + 20.0 + ], + "tag": null, + "to": [ + 20.0, + 0.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 217, + 225, + 0 + ] + }, + "from": [ + 20.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 56, + 78, + 0 + ] + } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 56, + 78, + 0 + ] + } + ] + }, + "height": 20.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 56, + 78, + 0 + ] + } + ] + }, + "units": { + "type": "Mm" + }, "__meta": [ { "sourceRange": [ - 7, - 184, + 270, + 297, 0 ] } ] }, - "foo": { - "type": "Solid", - "value": { - "type": "Solid", + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 86, - 108, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 116, - 138, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 146, - 169, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 217, - 225, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 86, - 108, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 20.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 116, - 138, - 0 - ] - }, - "from": [ - 0.0, - 20.0 - ], - "tag": null, - "to": [ - 20.0, - 20.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 146, - 169, - 0 - ] - }, - "from": [ - 20.0, - 20.0 - ], - "tag": null, - "to": [ - 20.0, - 0.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 217, - 225, - 0 - ] - }, - "from": [ - 20.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 56, - 78, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 56, - 78, - 0 - ] - } - ] - }, - "height": 20.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 56, - 78, - 0 - ] - } + "sourceRange": [ + 303, + 328, + 0 ] } }, - "part001": { - "type": "Solid", - "value": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 86, - 108, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 116, - 138, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 146, - 169, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 217, - 225, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 86, - 108, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 20.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 116, - 138, - 0 - ] - }, - "from": [ - 0.0, - 20.0 - ], - "tag": null, - "to": [ - 20.0, - 20.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 146, - 169, - 0 - ] - }, - "from": [ - 20.0, - 20.0 - ], - "tag": null, - "to": [ - 20.0, - 0.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 217, - 225, - 0 - ] - }, - "from": [ - 20.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 56, - 78, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 56, - 78, - 0 - ] - } - ] - }, - "height": 20.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 56, - 78, - 0 - ] - } - ] - } + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" }, - "part002": { - "type": "Solid", - "value": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 334, - 353, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 359, - 378, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 384, - 404, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 410, - 418, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 334, - 353, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 10.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 359, - 378, - 0 - ] - }, - "from": [ - 0.0, - 10.0 - ], - "tag": null, - "to": [ - 10.0, - 10.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 384, - 404, - 0 - ] - }, - "from": [ - 10.0, - 10.0 - ], - "tag": null, - "to": [ - 10.0, - 0.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 410, - 418, - 0 - ] - }, - "from": [ - 10.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "face", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "start", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 86, - 108, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 116, - 138, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 146, - 169, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 217, - 225, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 86, - 108, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 20.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 116, - 138, - 0 - ] - }, - "from": [ - 0.0, - 20.0 - ], - "tag": null, - "to": [ - 20.0, - 20.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 146, - 169, - 0 - ] - }, - "from": [ - 20.0, - 20.0 - ], - "tag": null, - "to": [ - 20.0, - 0.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 217, - 225, - 0 - ] - }, - "from": [ - 20.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 56, - 78, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 56, - 78, - 0 - ] - } - ] - }, - "height": 20.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 56, - 78, - 0 - ] - } - ] - }, - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 270, - 297, - 0 - ] - } - ] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 303, - 328, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 303, - 328, - 0 - ] - } - ] - }, - "height": 5.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 303, - 328, - 0 - ] - } + "__meta": [ + { + "sourceRange": [ + 303, + 328, + 0 ] } - } + ] }, - "snapshots": [ + "height": 5.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ { - "parent_snapshot": null, - "data": { - "cube": { - "type": "Tombstone", - "value": null, - "__meta": [] - }, - "foo": { - "type": "Tombstone", - "value": null, - "__meta": [] - }, - "part001": { - "type": "Tombstone", - "value": null, - "__meta": [] - }, - "part002": { - "type": "Tombstone", - "value": null, - "__meta": [] - } - } + "sourceRange": [ + 303, + 328, + 0 + ] } - ], - "parent": null + ] } - ], - "currentEnv": [ - 0, - 0 - ], - "callStack": [] + } } diff --git a/src/wasm-lib/kcl/tests/tan_arc_x_line/program_memory.snap b/src/wasm-lib/kcl/tests/tan_arc_x_line/program_memory.snap index 31efb435a..5ec6e6fe1 100644 --- a/src/wasm-lib/kcl/tests/tan_arc_x_line/program_memory.snap +++ b/src/wasm-lib/kcl/tests/tan_arc_x_line/program_memory.snap @@ -1,254 +1,241 @@ --- source: kcl/src/simulation_tests.rs -description: Program memory after executing tan_arc_x_line.kcl +description: Variables in memory after executing tan_arc_x_line.kcl --- { - "environments": [ - { - "bindings": { - "HALF_TURN": { - "type": "Number", - "value": 180.0, - "__meta": [] - }, - "QUARTER_TURN": { - "type": "Number", - "value": 90.0, - "__meta": [] - }, - "THREE_QUARTER_TURN": { - "type": "Number", - "value": 270.0, - "__meta": [] - }, - "ZERO": { - "type": "Number", - "value": 0.0, - "__meta": [] - }, - "angleOffset": { - "type": "Number", - "value": 135.0, - "__meta": [ - { - "sourceRange": [ - 36, - 39, - 0 - ] - } + "HALF_TURN": { + "type": "Number", + "value": 180.0, + "__meta": [] + }, + "QUARTER_TURN": { + "type": "Number", + "value": 90.0, + "__meta": [] + }, + "THREE_QUARTER_TURN": { + "type": "Number", + "value": 270.0, + "__meta": [] + }, + "ZERO": { + "type": "Number", + "value": 0.0, + "__meta": [] + }, + "angleOffset": { + "type": "Number", + "value": 135.0, + "__meta": [ + { + "sourceRange": [ + 36, + 39, + 0 + ] + } + ] + }, + "angleStart": { + "type": "Number", + "value": 110.0, + "__meta": [ + { + "sourceRange": [ + 59, + 62, + 0 + ] + } + ] + }, + "arc1": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "arc1", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 191, + 252, + 0 ] }, - "angleStart": { - "type": "Number", - "value": 110.0, - "__meta": [ - { - "sourceRange": [ - 59, - 62, - 0 - ] - } - ] + "ccw": true, + "center": [ + -0.9396929628060517, + -0.34201920363304794 + ], + "from": [ + -0.0000003420201433256687, + 0.0000009396926207859084 + ], + "tag": { + "end": 251, + "start": 246, + "type": "TagDeclarator", + "value": "arc1" }, - "arc1": { - "type": "TagIdentifier", - "type": "TagIdentifier", - "value": "arc1", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 191, - 252, - 0 - ] - }, - "ccw": true, - "center": [ - -0.9396929628060517, - -0.34201920363304794 - ], - "from": [ - -0.0000003420201433256687, - 0.0000009396926207859084 - ], - "tag": { - "end": 251, - "start": 246, - "type": "TagDeclarator", - "value": "arc1" - }, - "to": [ - -1.8460007498427018, - 0.08059905810765156 - ], - "type": "TangentialArc" - }, - "surface": null - }, - "__meta": [ - { - "sourceRange": [ - 246, - 251, - 0 - ] - } - ] - }, - "arc2": { - "type": "TagIdentifier", - "type": "TagIdentifier", - "value": "arc2", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 258, - 344, - 0 - ] - }, - "ccw": true, - "center": [ - -1.3928468563243768, - -0.13071007276269808 - ], - "from": [ - -1.8460007498427018, - 0.08059905810765156 - ], - "tag": { - "end": 343, - "start": 338, - "type": "TagDeclarator", - "value": "arc2" - }, - "to": [ - -1.2218367846615423, - -0.6005563831556522 - ], - "type": "TangentialArc" - }, - "surface": null - }, - "__meta": [ - { - "sourceRange": [ - 338, - 343, - 0 - ] - } - ] - }, - "arc3": { - "type": "TagIdentifier", - "type": "TagIdentifier", - "value": "arc3", - "info": { - "type": "TagEngineInfo", - "id": "[uuid]", - "sketch": "[uuid]", - "path": { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 350, - 437, - 0 - ] - }, - "ccw": false, - "center": [ - -1.050826712998708, - -1.0704026935486064 - ], - "from": [ - -1.2218367846615423, - -0.6005563831556522 - ], - "tag": { - "end": 436, - "start": 431, - "type": "TagDeclarator", - "value": "arc3" - }, - "to": [ - -0.5976728194803829, - -1.281711824418956 - ], - "type": "TangentialArc" - }, - "surface": null - }, - "__meta": [ - { - "sourceRange": [ - 431, - 436, - 0 - ] - } - ] - }, - "r": { - "type": "Number", - "value": 1.0, - "__meta": [ - { - "sourceRange": [ - 44, - 45, - 0 - ] - } - ] - }, - "startX": { - "type": "Number", - "value": 0.0, - "__meta": [ - { - "sourceRange": [ - 9, - 10, - 0 - ] - } - ] - }, - "startY": { - "type": "Number", - "value": 0.0, - "__meta": [ - { - "sourceRange": [ - 20, - 21, - 0 - ] - } - ] - } + "to": [ + -1.8460007498427018, + 0.08059905810765156 + ], + "type": "TangentialArc" }, - "snapshots": [], - "parent": null - } - ], - "currentEnv": [ - 0, - 0 - ], - "callStack": [] + "surface": null + }, + "__meta": [ + { + "sourceRange": [ + 246, + 251, + 0 + ] + } + ] + }, + "arc2": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "arc2", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 258, + 344, + 0 + ] + }, + "ccw": true, + "center": [ + -1.3928468563243768, + -0.13071007276269808 + ], + "from": [ + -1.8460007498427018, + 0.08059905810765156 + ], + "tag": { + "end": 343, + "start": 338, + "type": "TagDeclarator", + "value": "arc2" + }, + "to": [ + -1.2218367846615423, + -0.6005563831556522 + ], + "type": "TangentialArc" + }, + "surface": null + }, + "__meta": [ + { + "sourceRange": [ + 338, + 343, + 0 + ] + } + ] + }, + "arc3": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "arc3", + "info": { + "type": "TagEngineInfo", + "id": "[uuid]", + "sketch": "[uuid]", + "path": { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 350, + 437, + 0 + ] + }, + "ccw": false, + "center": [ + -1.050826712998708, + -1.0704026935486064 + ], + "from": [ + -1.2218367846615423, + -0.6005563831556522 + ], + "tag": { + "end": 436, + "start": 431, + "type": "TagDeclarator", + "value": "arc3" + }, + "to": [ + -0.5976728194803829, + -1.281711824418956 + ], + "type": "TangentialArc" + }, + "surface": null + }, + "__meta": [ + { + "sourceRange": [ + 431, + 436, + 0 + ] + } + ] + }, + "r": { + "type": "Number", + "value": 1.0, + "__meta": [ + { + "sourceRange": [ + 44, + 45, + 0 + ] + } + ] + }, + "startX": { + "type": "Number", + "value": 0.0, + "__meta": [ + { + "sourceRange": [ + 9, + 10, + 0 + ] + } + ] + }, + "startY": { + "type": "Number", + "value": 0.0, + "__meta": [ + { + "sourceRange": [ + 20, + 21, + 0 + ] + } + ] + } } diff --git a/src/wasm-lib/kcl/tests/tangential_arc/program_memory.snap b/src/wasm-lib/kcl/tests/tangential_arc/program_memory.snap index 68ad2cb5d..4bcb61be3 100644 --- a/src/wasm-lib/kcl/tests/tangential_arc/program_memory.snap +++ b/src/wasm-lib/kcl/tests/tangential_arc/program_memory.snap @@ -1,232 +1,218 @@ --- source: kcl/src/simulation_tests.rs -description: Program memory after executing tangential_arc.kcl -snapshot_kind: text +description: Variables in memory after executing tangential_arc.kcl --- { - "environments": [ - { - "bindings": { - "HALF_TURN": { - "type": "Number", - "value": 180.0, - "__meta": [] + "HALF_TURN": { + "type": "Number", + "value": 180.0, + "__meta": [] + }, + "QUARTER_TURN": { + "type": "Number", + "value": 90.0, + "__meta": [] + }, + "THREE_QUARTER_TURN": { + "type": "Number", + "value": 270.0, + "__meta": [] + }, + "ZERO": { + "type": "Number", + "value": 0.0, + "__meta": [] + }, + "boxSketch": { + "type": "Solid", + "value": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 39, + 58, + 0 + ], + "tag": null, + "type": "extrudePlane" }, - "QUARTER_TURN": { - "type": "Number", - "value": 90.0, - "__meta": [] + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 64, + 109, + 0 + ], + "tag": null, + "type": "extrudeArc" }, - "THREE_QUARTER_TURN": { - "type": "Number", - "value": 270.0, - "__meta": [] - }, - "ZERO": { - "type": "Number", - "value": 0.0, - "__meta": [] - }, - "boxSketch": { - "type": "Solid", - "value": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 39, - 58, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 64, - 109, - 0 - ], - "tag": null, - "type": "extrudeArc" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 115, - 135, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 115, + 135, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 39, - 58, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 10.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 64, - 109, - 0 - ] - }, - "ccw": true, - "center": [ - -5.0, - 10.0 - ], - "from": [ - 0.0, - 10.0 - ], - "tag": null, - "to": [ - -5.0, - 15.0 - ], - "type": "TangentialArc" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 115, - 135, - 0 - ] - }, - "from": [ - -5.0, - 15.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XY", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "zAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 12, - 33, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 12, - 33, - 0 - ] - } + "sourceRange": [ + 39, + 58, + 0 ] }, - "height": 10.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 10.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 64, + 109, + 0 + ] }, - "__meta": [ - { - "sourceRange": [ - 12, - 33, - 0 - ] - } + "ccw": true, + "center": [ + -5.0, + 10.0 + ], + "from": [ + 0.0, + 10.0 + ], + "tag": null, + "to": [ + -5.0, + 15.0 + ], + "type": "TangentialArc" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 115, + 135, + 0 + ] + }, + "from": [ + -5.0, + 15.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XY", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "zAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 12, + 33, + 0 ] } - } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 12, + 33, + 0 + ] + } + ] }, - "snapshots": [], - "parent": null + "height": 10.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 12, + 33, + 0 + ] + } + ] } - ], - "currentEnv": [ - 0, - 0 - ], - "callStack": [] + } } diff --git a/src/wasm-lib/kcl/tests/xz_plane/program_memory.snap b/src/wasm-lib/kcl/tests/xz_plane/program_memory.snap index 5ae1f4dff..0833df3a1 100644 --- a/src/wasm-lib/kcl/tests/xz_plane/program_memory.snap +++ b/src/wasm-lib/kcl/tests/xz_plane/program_memory.snap @@ -1,227 +1,213 @@ --- source: kcl/src/simulation_tests.rs -description: Program memory after executing xz_plane.kcl -snapshot_kind: text +description: Variables in memory after executing xz_plane.kcl --- { - "environments": [ - { - "bindings": { - "HALF_TURN": { - "type": "Number", - "value": 180.0, - "__meta": [] + "HALF_TURN": { + "type": "Number", + "value": 180.0, + "__meta": [] + }, + "QUARTER_TURN": { + "type": "Number", + "value": 90.0, + "__meta": [] + }, + "THREE_QUARTER_TURN": { + "type": "Number", + "value": 270.0, + "__meta": [] + }, + "ZERO": { + "type": "Number", + "value": 0.0, + "__meta": [] + }, + "part001": { + "type": "Solid", + "value": { + "type": "Solid", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": [ + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 66, + 96, + 0 + ], + "tag": null, + "type": "extrudePlane" }, - "QUARTER_TURN": { - "type": "Number", - "value": 90.0, - "__meta": [] + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 102, + 130, + 0 + ], + "tag": null, + "type": "extrudePlane" }, - "THREE_QUARTER_TURN": { - "type": "Number", - "value": 270.0, - "__meta": [] - }, - "ZERO": { - "type": "Number", - "value": 0.0, - "__meta": [] - }, - "part001": { - "type": "Solid", - "value": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 66, - 96, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 102, - 130, - 0 - ], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [ - 136, - 144, - 0 - ], - "tag": null, - "type": "extrudePlane" - } - ], - "sketch": { - "type": "Sketch", + { + "faceId": "[uuid]", + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ], + "tag": null, + "type": "extrudePlane" + } + ], + "sketch": { + "type": "Sketch", + "id": "[uuid]", + "paths": [ + { + "__geoMeta": { "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 66, - 96, - 0 - ] - }, - "from": [ - 0.0, - 0.0 - ], - "tag": null, - "to": [ - 100.0, - 100.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 102, - 130, - 0 - ] - }, - "from": [ - 100.0, - 100.0 - ], - "tag": null, - "to": [ - 100.0, - 0.0 - ], - "type": "ToPoint" - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 136, - 144, - 0 - ] - }, - "from": [ - 100.0, - 0.0 - ], - "tag": null, - "to": [ - 0.0, - 0.0 - ], - "type": "ToPoint" - } - ], - "on": { - "type": "plane", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "XZ", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "yAxis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "zAxis": { - "x": 0.0, - "y": -1.0, - "z": 0.0 - }, - "units": { - "type": "Mm" - }, - "__meta": [] - }, - "start": { - "from": [ - 0.0, - 0.0 - ], - "to": [ - 0.0, - 0.0 - ], - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [ - 35, - 60, - 0 - ] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Mm" - }, - "__meta": [ - { - "sourceRange": [ - 35, - 60, - 0 - ] - } + "sourceRange": [ + 66, + 96, + 0 ] }, - "height": 12.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Mm" + "from": [ + 0.0, + 0.0 + ], + "tag": null, + "to": [ + 100.0, + 100.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 102, + 130, + 0 + ] }, - "__meta": [ - { - "sourceRange": [ - 35, - 60, - 0 - ] - } + "from": [ + 100.0, + 100.0 + ], + "tag": null, + "to": [ + 100.0, + 0.0 + ], + "type": "ToPoint" + }, + { + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 136, + 144, + 0 + ] + }, + "from": [ + 100.0, + 0.0 + ], + "tag": null, + "to": [ + 0.0, + 0.0 + ], + "type": "ToPoint" + } + ], + "on": { + "type": "plane", + "id": "[uuid]", + "artifactId": "[uuid]", + "value": "XZ", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "xAxis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "yAxis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "zAxis": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "units": { + "type": "Mm" + }, + "__meta": [] + }, + "start": { + "from": [ + 0.0, + 0.0 + ], + "to": [ + 0.0, + 0.0 + ], + "tag": null, + "__geoMeta": { + "id": "[uuid]", + "sourceRange": [ + 35, + 60, + 0 ] } - } + }, + "artifactId": "[uuid]", + "originalId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 35, + 60, + 0 + ] + } + ] }, - "snapshots": [], - "parent": null + "height": 12.0, + "startCapId": "[uuid]", + "endCapId": "[uuid]", + "units": { + "type": "Mm" + }, + "__meta": [ + { + "sourceRange": [ + 35, + 60, + 0 + ] + } + ] } - ], - "currentEnv": [ - 0, - 0 - ], - "callStack": [] + } } diff --git a/src/wasm-lib/src/wasm.rs b/src/wasm-lib/src/wasm.rs index 1a86ecb08..09800f118 100644 --- a/src/wasm-lib/src/wasm.rs +++ b/src/wasm-lib/src/wasm.rs @@ -421,18 +421,6 @@ pub fn get_tangential_arc_to_info( } } -/// Create the default program memory. -#[wasm_bindgen] -pub fn program_memory_init() -> Result { - console_error_panic_hook::set_once(); - - let memory = kcl_lib::exec::ProgramMemory::new(); - - // The serde-wasm-bindgen does not work here because of weird HashMap issues so we use the - // gloo-serialize crate instead. - JsValue::from_serde(&memory).map_err(|e| e.to_string()) -} - /// Get a coredump. #[wasm_bindgen] pub async fn coredump(core_dump_manager: kcl_lib::wasm_engine::CoreDumpManager) -> Result { diff --git a/src/wasm-lib/tests/modify/main.rs b/src/wasm-lib/tests/modify/main.rs index 7763dad9f..bd4797193 100644 --- a/src/wasm-lib/tests/modify/main.rs +++ b/src/wasm-lib/tests/modify/main.rs @@ -12,11 +12,11 @@ async fn setup(code: &str, name: &str) -> Result<(ExecutorContext, Program, Modu let ctx = kcl_lib::ExecutorContext::new_with_default_client(Default::default()).await?; let mut exec_state = ExecState::new(&ctx.settings); ctx.run(&program, &mut exec_state).await?; + let outcome = exec_state.to_wasm_outcome(); // We need to get the sketch ID. - // Get the sketch ID from memory. - let KclValue::Sketch { value: sketch } = exec_state.memory().get(name, SourceRange::default()).unwrap() else { - anyhow::bail!("part001 not found in memory: {:?}", exec_state.memory()); + let KclValue::Sketch { value: sketch } = outcome.variables.get(name).unwrap() else { + anyhow::bail!("part001 not found in: {:?}", outcome.variables); }; let sketch_id = sketch.id;